OSDN Git Service

fd5d5b07a3980bfa1885d29683aeabf1a813f419
[pf3gnuchains/gcc-fork.git] / gcc / ChangeLog
1 2003-07-11  Richard Henderson  <rth@redhat.com>
2
3         * Makefile.in (stage1_build): Force OBJS-onestep=OBJS.
4
5 2003-07-11  Mark Mitchell  <mark@codesourcery.com>
6
7         * varasm.c (make_decl_rtl): Treat decls with a DECL_CONTEXT of
8         TRANSLATION_UNIT_DECL as top_level.
9
10 2003-07-11  Jakub Jelinek  <jakub@redhat.com>
11
12         * optabs.c (prepare_cmp_insn): Try cmpmemM first if it exists,
13         then fall back to cmpstrM.
14         * builtins.c (expand_builtin_memcmp): Likewise.
15         * config/s390/s390-protos.h (s390_expand_cmpstr): Rename to...
16         (s390_expand_cmpmem): ... this.
17         * config/s390/s390.md (cmpmemdi, cmpmemsi, cmpmem_short_64,
18         cmpmem_short_31, cmpmem_long_64, cmpmem_long_31): Renamed
19         from cmpstr* patterns.  Rename call to s390_expand_cmpstr
20         to s390_expand_cmpmem.
21         * config/s390/s390.c (s390_expand_cmpstr): Rename to...
22         (s390_expand_cmpstr): ... this.  Rename cmpstr* instructions
23         to cmpmem*.
24         * config/i370/i370.md (cmpmemsi, cmpmemsi_1): Renamed from
25         cmpstr* patterns.
26         * doc/md.texi (cmpstrM): Describe as String compare insn, not
27         Block compare insn.
28         (cmpmemM): Add.
29
30 2003-07-11  Loren James Rittle  <ljrittle@acm.org>
31
32         * config/i386/freebsd.h (SET_ASM_OP): Remove.
33         (SUBTARGET_OVERRIDE_OPTIONS): Handle TARGET_64BIT case.
34         (ASM_COMMENT_START, ASM_APP_ON, ASM_APP_OFF, DBX_REGISTER_NUMBER
35          MCOUNT_NAME, SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE_SIZE): Whitespace.
36
37 2003-07-11  Richard Henderson  <rth@redhat.com>
38
39         * function.c (assign_parms): Don't recombine complex args if
40         fnargs is unchanged from orig_fnargs.
41         (split_complex_args): Return args without complex before copying.
42         Re-layout the modified parameters.
43
44 2003-07-11  J"orn Rennecke <joern.rennecke@superh.com>
45
46         * regclass.c (choose_hard_reg_mode): Add third argument.
47         Changed all callers.
48         * rtl.h (choose_hard_reg_mode): Update declaration.
49         * dwarf2out.c (expand_builtin_init_dwarf_reg_sizes):
50         Take HARD_REGNO_CALL_PART_CLOBBERED into account.
51
52 2003-07-11  Geoffrey Keating  <geoffk@apple.com>
53
54         * c-decl.c (finish_decl): Handle 'used' here...
55         * cgraphunit.c (cgraph_finalize_function): ... and here ...
56         * c-common.c: (handle_used_attribute): ... not here.
57         
58         * configure.in (onstep): Support --enable-intermodule.
59         * Makefile.in (OBJS-common): New.
60         (OBJS-md): New.
61         (OBJS-archive): New.
62         (OBJS): Build from OBJS-common, OBJS-md, OBJS-archive.
63         (OBJS-onestep): New.
64         (libbackend.a): Support @onestep@.
65         (libbackend.o): New.
66         * configure: Regenerate.
67         
68         * c-common.h (c_reset_state): New prototype.
69         (c_parse_file): New prototype.
70         (finish_file): Move prototype from c-tree.h.
71         * c-decl.c: Include <hashtab.h>.
72         (builtin_decls): New.
73         (current_file_decl): New.
74         (duplicate_decls): Add extra parameter. Change all callers.  Don't
75         output duplicate common symbols.
76         (link_hash_hash): New.
77         (link_hash_eq): New.
78         (poplevel): Handle popping of the top level.
79         (warn_if_shadowing): Handle TRANSLATION_UNIT_DECL.
80         (pushdecl): Set DECL_CONTEXT to TRANSLATION_UNIT_DECL if appropriate.
81         (pushdecl_top_level): Likewise.
82         (redeclaration_error_message): Handle TRANSLATION_UNIT_DECL.
83         (c_init_decl_processing): Create TRANSLATION_UNIT_DECL.
84         (finish_decl): Handle TRANSLATION_UNIT_DECL.
85         (merge_translation_unit_decls): New.
86         (c_write_global_declarations): New.
87         (c_reset_state): New.
88         (implicitly_declare): Handle TRANSLATION_UNIT_DECL.
89         * c-lang.c (LANG_HOOKS_WRITE_GLOBALS): New.
90         * c-objc-common.c (c_cannot_inline_tree_fn): Handle
91         TRANSLATION_UNIT_DECL.
92         (c_objc_common_finish_file): Call merge_translation_unit_decls.
93         * c-opts.c (in_fnames): Rename from in_fname.
94         (c_common_decode_option): Handle multiple input filenames.
95         (c_common_post_options): Likewise.
96         (c_common_parse_file): Likewise; also, call c_parse_file rather than
97         yyparse.
98         * c-parse.in: Move cleanup code to c_parse_file.
99         (free_parser_stacks): Move contents to c_parse_file.
100         (c_parse_file): New.
101         * c-tree.h (union lang_tree_node): Chain along TYPE_NEXT_VARIANT
102         for integer types.
103         (C_DECL_FILE_SCOPE): New.
104         (finish_file): Move prototype to c-common.h.
105         (merge_translation_unit_decls): New prototype.
106         (comptypes): Add extra parameter to prototype.
107         (c_write_global_declarations): New prototype.
108         * c-typeck.c (tagged_types_tu_compatible_p): New.
109         (function_types_compatible_p): Add extra parameter, change all callers.
110         (type_lists_compatible_p): Likewise.
111         (comptypes): Likewise.
112         (struct tagged_tu_seen): New.
113         (tagged_tu_seen_base): New.
114         (build_unary_op): Handle TRANSLATION_UNIT_DECL.
115         (c_mark_addressable): Remove #if 0 code.
116         * calls.c (special_function_p): Handle TRANSLATION_UNIT_DECL, add
117         comment explaining why it shouldn't have to.
118         * cgraph.h (struct cgraph_node): Add chain_next and chain_prev GTY
119         options.
120         * cppinit.c (cpp_read_next_file): New.
121         (cpp_read_main_file): Use it.
122         * cpplib.c (undefine_macros): New.
123         (cpp_undef_all): New.
124         * cpplib.h (cpp_read_next_file): Prototype.
125         (cpp_undef_all): Prototype.
126         * langhooks-def.h (write_global_declarations): Remove prototype.
127         * toplev.h (write_global_declarations): Add prototype.
128         * tree.c (decl_type_context): Use switch statement, handle
129         TRANSLATION_UNIT_DECL.
130         * tree.def: Update documentation for TRANSLATION_UNIT_DECL.
131         (TRANSLATION_UNIT_DECL): New kind of tree.
132         * tree.h: Update documentation for TRANSLATION_UNIT_DECL.
133         * Makefile.in (c-decl.o): Add $(HASHTAB_H) to dependencies.
134         * doc/invoke.texi: Make attempt to document new functionality.
135
136         2003-05-19  Per Bothner <bothner@apple.com>
137
138         * gcc.c (combine_inputs): New.
139         (process_command): Set combine_inputs.
140         (do_spec_1): Handle combine_inputs.
141         (main): Likewise.
142
143 2003-07-10  James E Wilson  <wilson@tuliptree.org>
144
145         PR optimization/9745
146         * loop.c (loop_iv_add_mult_emit_before): Call loop_regs_update before
147         loop_insn_emit_before.
148         (loop_iv_add_mult_sink, loop_iv_add_mult_hoist): Likewise.
149         
150 2003-07-10  Zack Weinberg  <zack@codesourcery.com>
151
152         * cppcharset.c: Fix comment.
153         (iconv_close [!HAVE_ICONV]): #define to (void)0 to prevent warning.
154         (EILSEQ): #define to EINVAL if not already defined.
155         (convert_using_iconv): #if out when !HAVE_ICONV.
156         (init_iconv_desc): Handle !HAVE_ICONV here...
157         (cpp_init_iconv): ...not here.
158
159 2003-07-11  Neil Booth  <neil@daikokuya.co.uk>
160
161         * common.opt: More --help messages.
162         * opts.c (print_help): Use puts().
163         * toplev.c (f_options): Remove help text.
164         (display_help): Don't dump f_options.
165
166 2003-07-11  Nathanael Nerode  <neroden@gcc.gnu.org>
167
168         * fixinc/mkfixinc.sh: Drop reference to unsupported alpha-*-interix*.
169         Move i?86-*-interix* to the don't-fix list.
170         * fixinc/fixinc.interix: Delete with extreme prejudice.
171
172 2003-07-10  Dara Hazeghi  <dhazeghi@yahoo.com>
173
174         PR bootstrap/10758
175         * doc/install.texi: Document requirements for ia64-*-hpux* target.
176
177 2003-07-10  Roger Sayle  <roger@eyesopen.com>
178
179         * config/ia64/hpux.h (TARGET_C99_FUNCTIONS): Define.
180
181 2003-07-10  Zack Weinberg  <zack@codesourcery.com>
182
183         * cppcharset.c (one_utf8_to_cppchar, one_cppchar_to_utf8,
184         one_utf8_to_utf32, one_utf32_to_utf8, one_utf8_to_utf16,
185         one_utf16_to_utf8, conversion_loop, convert_utf8_utf16,
186         convert_utf8_utf32, convert_utf16_utf8, convert_utf32_utf8,
187         convert_no_conversion, convert_using_iconv): New functions.
188         (APPLY_CONVERSION): New macro.
189         (struct conversion, conversion_tab): New data structure.
190         (init_iconv_desc): Check conversion_tab for a custom conversion
191         primitive before trying to use iconv.
192         (convert_cset): Deleted.
193         (cpp_init_iconv): Use UTF- terminology, not UCS-.
194         (_cpp_destroy_iconv): Update to match.
195         (_cpp_valid_ucn): We don't need iconv to implement UCNs.
196         (convert_ucn): Use one_cppchar_to_utf8 and APPLY_CONVERSION.
197         (convert_escape, cpp_interpret_string): Use APPLY_CONVERSION.
198         (_cpp_interpret_string_notranslate): New function, moved here
199         from cpplib.c.
200
201         * cpphash.h (convert_f, struct cset_converter): New types.
202         (struct cpp_reader): narrow_cset_desc and wide_cset_desc
203         are now struct cset_converter, not bare iconv_t.
204         Update prototypes.
205         * cpplib.c (interpret_string_notranslate): Moved to cppcharset.c;
206         all callers changed.
207
208 2003-07-10  Kelley Cook  <kelleycook@wideopenwest.com>
209
210         * Makefile.in (options.h): Depend on Makefile.  Add move-if-change
211         to opts.sh command line.
212         * opts.sh: Write to temporary files with a move-if-change at the end.
213
214 2003-06-30  Denis Chertykov  <denisc@overta.ru>
215             Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
216
217         * combine.c (gen_binary): Handle the CLOBBER rtx and
218         don't build a binary operation with it.
219
220 2003-07-10  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
221
222         * gcse.c (load_kills_store, find_loads, store_killed_in_insn,
223         store_killed_after, store_killed_before): Keep track of the correct
224         dependency function to use.
225
226 2003-07-10  Steven Bosscher  <steven@gcc.gnu.org>
227         * toplev.c (do_compile): Don't try to open dump files before
228         lang_dependent_init initializes dump_base_name.
229
230 2003-07-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
231
232         * config/arm/arm.c (arm_init_iwmmxt_builtins, arm_expand_builtin):
233         Use ARRAY_SIZE.
234         * config/frv/frv.c (frv_expand_builtin): Likewise.
235         * config/sh/sh.c (sh_media_init_builtins): Likewise.
236
237 2003-07-09  Mark Mitchell  <mark@codesourcery.com>
238
239         PR c++/10032
240         * doc/invoke.texi (C++ Dialect Options): Change documentation of
241         -fpermissive.
242
243 2003-07-10  J"orn Rennecke <joern.rennecke@superh.com>
244
245         * tm.texi (RETURN_ADDR_OFFSET): Document.
246
247 2003-07-10  Nathan Sidwell  <nathan@codesourcery.com>
248
249         * gcov-io.h: Update documentation.
250         (GCOV_UNSIGNED2STRING): New.
251         (GCOV_TAG_FUNCTION_LENGTH, GCOV_TAG_BLOCKS_LENGTH,
252         GCOV_TAG_ARCS_LENGTH, GCOV_TAG_COUNTER_LENGTH,
253         GCOV_TAG_SUMMARY_LENGTH): Adjust.
254         (GCOV_TAG_BLOCKS_NUM, GCOV_TAG_ARCS_NUM,
255         GCOV_TAG_COUNTER_NUM): New.
256         (GCOV_BLOCK_SIZE): Number of words.
257         (gcov_var): Adjust buffer type.
258         * gcov-io.c (gcov_write_bytes, gcov_read_bytes): Rename to ...
259         (gcov_write_words, gcov_read_words): ... here. Take a 4-byte word
260         count, not byte count.
261         (gcov_open): Adjust overread init.
262         (gcov_allocate, gcov_write_unsigned, gcov_write_counter,
263         gcov_write_string, gcov_write_tag, gcov_write_length,
264         gcov_write_tag_length): Adjust.
265         (gcov_read_unsigned, gcov_read_counter, gcov_read_string): Adjust.
266         (gcov_sync, gcov_seek): Adjust.
267         * gcov-dump.c (print_usage): Show gcc version only.
268         (dump_file): Use GCOV_UNSIGNED2STRING.
269         (tag_blocks, tag_arcs, tag_counters): Use GCOV_TAG_*_NUM macros.
270         * gcov.c (print_version): Show gcc version only.
271         (read_graph_file): Use GCOV_UNSIGNED2STRING. Use
272         GCOV_TAG_*_NUM macros.
273         (read_count_file): Use GCOV_UNSIGNED2STRING. Use
274         GCOV_TAG_COUNTER_LENGTH.
275         * coverage.c (read_counts_file): Use GCOV_UNSIGNED2STRING.
276         Use GCOV_TAG_COUNTER_NUM.
277         * libgcov.c (gcov_version): Use GCOV_UNSIGNED2STRING.
278         (__gcov_merge_single, __gcov_merge_delta): Use GCOV_CHECK.
279
280 2003-07-10  Andreas Schwab  <schwab@suse.de>
281
282         * gcov-dump.c (dump_file): Fix missing address operator.
283
284 2003-07-10  Kazu Hirata  <kazu@cs.umass.edu>
285
286         PR c/11449
287         * fold-const.c (sign_bit_p): Return EXP if VAL is the sign bit
288         of HOST_WIDE_INT.
289         (fold_single_bit_test): If sign_bit_p() fails, assume that the
290         bit being tested is not a sign bit.
291
292 2003-07-10  Kazu Hirata  <kazu@cs.umass.edu>
293
294         * config/h8300/h8300.md (a peephole2): New.
295
296 2003-07-10  Alexandre Oliva  <aoliva@redhat.com>
297
298         2001-12-13  Alexandre Oliva  <aoliva@redhat.com>
299         * config/mn10300/linux.h (LINK_SPEC): Rename the dynamic linker
300         from ld-linux.so.2 to ld.so.1.
301         2001-11-18  Alexandre Oliva  <aoliva@redhat.com>
302         * config/mn10300/linux.h (LINK_SPEC): -lpthread, not -lthread.
303         * config/mn10300/linux.h (LINK_SPEC): Don't handle -Wl,-rpath
304         nor -Wl,-rpath-link.
305         (LIB_SPEC): Add -rpath-link if !static.
306         2001-08-22  Alexandre Oliva  <aoliva@redhat.com>
307         * config/mn10300/mn10300.c (mn10300_protect_label): New
308         variable.
309         * config/mn10300/linux.h (PRINT_OPERAND,
310         PRINT_OPERAND_ADDRESS): Set it during their execution.
311         (ASM_OUTPUT_LABELREF): Output `+' before symbol name if
312         mn10300_protect_label is set.
313         * config/mn10300/linux.h (LINK_SPEC): Recognize -Wl,-rpath and
314         -Wl,-rpath-link.
315         (LIB_SPEC, STARTFILE_SPEC): Define.
316         2001-05-11  Alexandre Oliva  <aoliva@redhat.com>
317         * config/mn10300/t-linux (dp-bit.c, fp-bit.c): Don't define
318         FLOAT_BIT_ORDER_MISMATCH.
319         2001-05-09  Alexandre Oliva  <aoliva@redhat.com>
320         * config.gcc (am33_2.0-*-linux*): Added.
321         * config/mn10300/linux.h: New.
322         * config/mn10300/t-linux: New.
323
324 2003-07-10  Andreas Jaeger  <aj@suse.de>
325
326         * fold-const.c: Properly wrap prototypes.
327
328 2003-07-09  Alexandre Oliva  <aoliva@redhat.com>
329
330         2003-06-16  Alexandre Oliva  <aoliva@redhat.com>
331         * config/mn10300/mn10300.c (mn10300_unspec_int_label_counter):
332         Moved from...
333         * config/mn10300/mn10300.md (GOTaddr2picreg): ... here.
334         * config/mn10300/mn10300.h: GTY-declare it.
335         2003-06-11  Alexandre Oliva  <aoliva@redhat.com>
336         * config/mn10300/mn10300.c (mn10300_encode_section_info): Fix
337         prototype.  Use incoming RTL argument.
338         2002-12-12  Alexandre Oliva  <aoliva@redhat.com>
339         * config/mn10300/mn10300.md (int_label): Move C statements...
340         (GOTaddr2picreg): ... here.
341         2002-08-15  Alexandre Oliva  <aoliva@redhat.com>
342         * config/mn10300/mn10300.h (ENCODE_SECTION_INFO): Move...
343         * config/mn10300/mn10300.c (mn10300_encode_section_info):
344         ... here.  New function.
345         (TARGET_ENCODE_SECTION_INFO): Define to it.
346         2001-11-04  Alexandre Oliva  <aoliva@redhat.com>
347         * config/mn10300/mn10300.md (builtin_setjmp_receiver): Fix typo in
348         pattern name.
349         (mn10300_loadPC): Define as insn splittable after reload.
350         2001-05-13  Alexandre Oliva  <aoliva@redhat.com>
351         * config/sh/mn10300.h (JUMP_TABLES_IN_TEXT_SECTION): Let them
352         be defined in .rodata even in PIC, now that the assembler
353         supports that.
354         2001-05-09  Alexandre Oliva  <aoliva@redhat.com>
355         * config/mn10300/mn10300.h (GOT_SYMBOL_NAME): Don't let the
356         symbol take an underscore prefix.
357         2001-04-14  Alexandre Oliva  <aoliva@redhat.com>
358         * config/mn10300/mn10300-protos.h (legitimate_pic_operand_p,
359         legitimize_pic_address): Declare.
360         * config/mn10300/mn10300.h (CONDITIONAL_REGISTER_USAGE): Mark
361         the PIC register as fixed.
362         (EXTRA_CONSTRAINT): Match UNSPEC_PLT and UNSPEC_PIC for 'S'.
363         (GO_IF_LEGITIMATE_ADDRESS): Require legitimate_pic_operand for
364         PIC.
365         (LEGITIMATE_PIC_OPERAND_P): Define.
366         (PIC_OFFSET_TABLE_REGNUM): Define.
367         (GOT_SYMBOL_NAME): Define.
368         (SYMBOLIC_CONST_P): Define.
369         (ENCODE_SECTION_INFO): Use SYMBOL_REF_FLAG to mark local
370         symbols.
371         (MN10300_GLOBAL_P): Test it.
372         (OUTPUT_ADDR_CONST_EXTRA): Handle PIC-related unspecs.
373         (JUMP_TABLES_IN_TEXT_SECTION): Enable for PIC.
374         * config/mn10300/mn10300.c (print_operand): Handle unspec.
375         (expand_prologue): Set PIC register.
376         (call_address_operand): Don't match SYMBOL_REFs in PIC.
377         (legitimize_address): Call legitimize_pic_address.
378         (legitimize_pic_address): New fn.
379         (legitimate_pic_operand_p): New fn.
380         * config/mn10300/mn10300.md (PIC_REG, SP_REG): New constants.
381         (UNSPEC_INT_LABEL, UNSPEC_PIC, UNSPEC_GOT, UNSPEC_GOTOFF,
382         UNSPEC_PLT): New constants.
383         (pop_pic_reg): New insn.
384         (movsi): Adjust non-PIC addresses.
385         (builtin_setjmp_receiver): Restore the PIC register.
386         (casesi): New insn.
387         (call): Adjust non-PIC addresses.
388         (int_label, GOTaddr2picreg): New expands.
389         (am33_loadPC): New insn.
390         (mn10300_loadPC): New expand.
391         (call_next_insn): New insn.
392         (add_GOT_to_pic_reg): New expand.
393         (symGOT2reg, symGOT2reg_i): New expands.
394         (symGOTOFF2reg, symGOTOFF2reg_i): New expands.
395         (sym2PIC, sym2PLT): New expands.
396
397 2003-07-09  Alexandre Oliva  <aoliva@redhat.com>
398
399         * config/mn10300/mn10300.h (PREDICATE_CODES): Define.
400         2001-05-01  Alexandre Oliva  <aoliva@redhat.com>
401         * config/mn10300/mn10300.md (sqrtsf2): flag_fast_math was renamed
402         to flag_unsafe_math_optimizations.
403         2001-04-14  Alexandre Oliva  <aoliva@redhat.com>
404         * config/mn10300/mn10300.c (expand_prologue): Mark
405         FP-register-saving insns as frame-related.
406         2001-02-13  Alexandre Oliva  <aoliva@redhat.com>
407         * config/mn10300/mn10300.c
408         (mn10300_get_live_callee_saved_regs): Don't search past
409         LAST_EXTENDED_REGNUM.
410         (mn10300_gen_multiple_store, store_multiple_operation): Likewise.
411         * config/mn10300/mn10300.md: Remove excessive line breaks from
412         `@' output patterns that were accounted as additional
413         alternatives.
414         * config/mn10300/mn10300.md, config/mn10300/mn10300.c:
415         Re-introduce changes accidentally removed in Richard Sandiford's
416         2000-12-05's patch.
417         * config/mn10300/t-mn10300 (MULTILIB_OPTIONS, MULTILIB_DIRNAMES):
418         Re-instate am33-2 lost in merge from net GCC.
419         2000-08-26  Alexandre Oliva  <aoliva@redhat.com>
420         * config/mn10300/mn10300.h (DBX_REGISTER_NUMBER): Added
421         floating-point registers.
422         2000-08-07  Alexandre Oliva  <aoliva@redhat.com>
423         * config/mn10300/mn10300.md (movdf): Revert some am33-specific
424         pessimizations that had gone in on 2000-05-08.
425         2000-06-28  Graham Stott  <grahams@cygnus.co.uk>
426         * config/mn10300/mn10300.h (REG_CLASS_CONTENTS): Fix typo.
427         2000-06-22  Graham Stott  <grahams@cygnus.co.uk>
428         * config/mn10300/mn10300.md (movqi): Use nonimmediate_operand for
429         operand 0.
430         * (movhi): Likewise.
431         * (movsi): Likewise.
432         * (movsf): Likewise.
433         * (movdi): Likewise.
434         * (movdf): Likewise.
435         Wed May 24 13:16:09 2000  Alexandre Oliva  <aoliva@cygnus.com>
436         * config/mn10300/mn10300.c (fp_regs_to_save): New function.
437         (can_use_return_insn, initial_offset): Add fp_regs_to_save.
438         (expand_prologue, expand_epilogue): Save and restore FP regs.
439         2000-05-20  Alexandre Oliva  <aoliva@cygnus.com>
440         * config/mn10300/mn10300.md (movdi, movdf): 64-bit clean-up.
441         2000-05-13  Alexandre Oliva  <aoliva@cygnus.com>
442         * config/mn10300/mn10300.md (abssf2, negsf2, rsqrtsf2, addsf3,
443         subsf3, mulsf3, divsf3, fmaddsf4, fmsubsf4, fnmaddsf4, fnmsubsf4):
444         Do not clobber cc0.
445         2000-05-12  Alexandre Oliva  <aoliva@cygnus.com>
446         * config/mn10300/mn10300.md (abssf2, negsf2, rsqrtsf2):
447         Discourage the two-argument, longer opcodes.
448         (addsf3, subsf3, mulsf3, divsf3): Likewise for three-argument
449         ones.
450         * config/mn10300/mn10300.h (struct mn10300_cc_status_mdep): New.
451         (CC_STATUS_MDEP, CC_STATUS_MDEP_INIT): Define.
452         * config/mn10300/mn10300.md (cmpsf): New pattern.
453         (branch): Test mdep.fpCC and output fbCC.
454         * config/mn10300/mn10300.c (print_operand): Output conditions.
455         (notice_cc_update): Recognize fcmp and set mdep.fpCC.
456         2000-05-10  Alexandre Oliva  <aoliva@cygnus.com>
457         * config/mn10300/mn10300.md (movsf, movdf, addsf3, subsf3,
458         mulsf3, divsf3): Use the `F' constraint for FP values.
459         * config/mn10300/mn10300.c (const_1f_operand): New function.
460         * config/mn10300/mn10300-protos.h (const_1f_operand): Declare.
461         * config/mn10300/mn10300.md (sqrtsf2): New expand.
462         (rsqrtsf2): New insn.
463         2000-05-09  Alexandre Oliva  <aoliva@cygnus.com>
464         * config/mn10300/mn10300.md (movdf): Oops, I missed it in my
465         previous check-in.
466         2000-05-08  Alexandre Oliva  <aoliva@cygnus.com>
467         * config/mn10300/mn10300.md (abssf2, negdf2): On
468         TARGET_AM33_2, expand to...
469         (abssf2_am33_2, negdf2_am33_2): New insns.
470         (addsf3, subsf3, mulsf3, divsf3): Likewise.
471         (fmaddsf4, fmsubsf4, fnmaddsf4, fnmsubsf4): Likewise.
472         * config/mn10300/mn10300.md (movqi, movhi, movsi, movsf,
473         movdi, movdf): Added FP regs.
474         * invoke.texi (-mam33-2, -mno-am33-2): Document.
475         2000-04-29  Alexandre Oliva  <aoliva@cygnus.com>
476         * config/mn10300/mn10300.h (FIRST_FP_REGNUM, LAST_FP_REGNUM):
477         New macros.
478         (REGNO_AM33_2_FP_P): Renamed to...
479         (REGNO_FP_P): Redefine in terms of FIRST_* and LAST_*.
480         (CONDITIONAL_REGISTER_USAGE, REGNO_REG_CLASS): Likewise.
481         2000-04-27  Alexandre Oliva  <aoliva@cygnus.com>
482         * config/mn10300/mn10300.h (REG_CLASS_CONTENTS): Remove FP
483         regs from GENERAL_REGS.
484         2000-04-27  Alexandre Oliva  <aoliva@cygnus.com>
485         * config/mn10300/mn10300.h (REGNO_AM33_2_FP_P): New macro.
486         * config/mn10300/mn10300.c (mn10300_address_cost): Added FP_REGS.
487         * config/mn10300/mn10300.h (REGISTER_MOVE_COST): Added FP_REGS.
488         2000-04-23  Alexandre Oliva  <aoliva@cygnus.com>
489         * config/mn10300/mn10300.h (CLASS_CANNOT_CHANGE_SIZE): Defined
490         as FP_REGS.
491         2000-04-21  Alexandre Oliva  <aoliva@cygnus.com>
492         * config/mn10300/mn10300.h (OK_FOR_Q): New macro.
493         (EXTRA_CONSTRAINT): Added OK_FOR_Q.
494         * config/mn10300/mn10300.c (secondary_reload_class): Adjust.
495         * config/mn10300/mn10300.c (print_operand): Support `D' for doubles.
496         * config/mn10300/mn10300.h (FIRST_PSEUDO_REGISTER): Adjust.
497         (FIXED_REGISTERS, CALL_USED_REGISTERS, REG_ALLOC_ORDER): Added
498         AM33/2.0 floating-point registers.
499         (CONDITIONAL_REGISTER_USAGE): Adjust.
500         (enum reg_class, REG_CLASS_NAMES): Added FP_REGS and FP_ACC_REGS.
501         (REG_CLASS_CONTENTS, REGNO_REG_CLASS): Adjust.
502         (REG_CLASS_FROM_LETTER): Added `f' and `A'.
503         (REGISTER_NAMES, ADDITIONAL_REGISTER_NAMES): Adjust.
504         * config/mn10300/t-mn10300 (MULTILIB_OPTIONS): Added am33-2.
505         (MULTILIB_DIRNAMES): Likewise.
506         * config/mn10300/mn10300.h (CPP_SPEC): Define `__AM33__=2' and
507         `__AM33_2__' when `-mam33-2' is given.
508         (TARGET_AM33_2): Define.
509         (TARGET_SWITCHES): Adjust.
510         * config/mn10300/mn10300.c (asm_file_start): Print `.am33_2'
511         when appropriate.
512
513 2003-07-09  Matt Kraai  <kraai@alumni.cmu.edu>
514
515         * doc/install.texi: Add missing @.
516
517 2003-07-09  Bob Wilson  <bob.wilson@acm.org>
518
519         * config/xtensa/xtensa.h (CRT_CALL_STATIC_FUNCTION): Define.
520
521 2003-07-09  Aldy Hernandez  <aldyh@redhat.com>
522
523         PR/11144
524         * config/i386/i386.c (ix86_function_arg_boundary): Remove abort.
525
526 2003-07-09  Nathanael Nerode  <neroden@gcc.gnu.org>
527
528         PR bootstrap/11043
529         * config/arc/t-arc: Replace bogus references to "x-crtinit.o",
530         "x-crtfini.o" with "crtinit.o", "crtfini.o".
531
532         * fixinc/inclhack.def (limits_ifndefs): Add select test.
533         * fixinc/fixincl.x: Rebuild.
534
535         * fixinc/inclhack.def (math_exception):  Improve bypass and comment.
536         * fixinc/fixincl.x: Rebuild.
537
538 2003-07-09  Hans-Peter Nilsson  <hp@bitrange.com>
539
540         * doc/install.texi (Configuration): Document the valgrind option
541         to --enable-checking.
542
543 Wed Jul  9 16:16:30 CEST 2003  Jan Hubicka  <jh@suse.cz>
544
545         * objc-lang.c (LANG_HOOKS_TREE_INLINING_ESTIMATE_NUM_INSNS): New.
546
547 2003-07-09  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
548
549         * c-lex.c (cb_ident): Cast cstr.text to const char *.
550
551 2003-07-09  Nathan Sidwell  <nathan@codesourcery.com>
552
553         * gcov-io.h: Update documentation.
554         (GCOV_GRAPH_SUFFIX, GCOV_GRAPH_MAGIC): Rename to GCOV_NOTE_SUFFIX,
555         GCOV_NOTE_MAGIC.
556         (GCOV_DATA_SUFFIX, GCOV_NOTE_SUFFIX): Update.
557         (GCOV_DATA_MAGIC, GCOV_NOTE_MAGIC): Make non-palindromic.
558         (struct gcov_var): Change buffer's type. Add endian flag.
559         (gcov_open): Remove mode in libgcov.
560         (gcov_magic): Prototype.
561         * gcov-io.c (from_file): New.
562         (gcov_open): Clear endian flag.
563         (gcov_magic): New.
564         (gcov_write_bytes, gcov_read_bytes): Return gcov_unsigned_t
565         pointers.
566         (gcov_write_unsigned, gcov_write_counter, gcov_write_string,
567         gcov_write_tag, gcov_write_length, gcov_write_tag_length): Update.
568         (gcov_read_unsigned, gcov_read_counter, gcov_read_string): Update.
569         * gcov-iov.c (main): Correct cast.
570         * coverage.c (read_counts_file): Use gcov_magic. Remove endianness
571         conversion.
572         (gcov_begin_output): Use GCOV_NOTE_MAGIC.
573         (coverage_init): Use GCOV_NOTE_SUFFIX.
574         * libgcov.c (gcov_version_mismatch): Remove endianness conversion.
575         Rename to gcov_version, and return flag.
576         (gcov_exit): Use gcov_version.
577         (__gcov_init): Use gcov_version.
578         * Makefile.in (coverageexts): Update.
579         * gcov.c (print_version): Remove endianness conversion.
580         (create_file_names): Use GCOV_NOTE_SUFFIX.
581         (read_graph_file): Use gcov_magic.
582         (read_count_file): Likewise.
583         * gcov-dump.c (dump_file): Remove endianness conversion, use
584         gcov_magic.
585
586 2003-07-09  Nathan Sidwell  <nathan@codesourcery.com>
587
588         * configure.in (BUILD_PREFIX, BUILD_PREFIX_1): Set if enable
589         coverage is on.
590         * configure: Regenerated.
591         * Makefile.in (ALL_CFLAGS): Correct its comment.
592
593 2003-07-08  Mark Mitchell  <mark@codesourcery.com>
594
595         * fold-const.c (make_range): Do not access operand 1 for a
596         zero-operand operator.
597
598 2003-07-09  Neil Booth  <neil@daikokuya.co.uk>
599
600         * toplev.c (warn_dummy, W_options): Die.
601         (display_help): Don't print W_options.
602         * common.opt: Add W_options help from toplev.c.
603
604 2003-07-09  Andreas Jaeger  <aj@suse.de>
605
606         * opts.c (wrap_help): Only pass int arguments as arguments to
607         printf's '*' modifier.  Change argument of function.
608
609 2003-07-08  Matt Kraai  <kraai@alumni.cmu.edu>
610
611         * doc/invoke.texi: Fix misspelling of "@item".
612
613 2003-07-08  Kazu Hirata  <kazu@cs.umass.edu>
614
615         * config/i386/i386.md: Remove an old comment about
616         NOTICE_UPDATE_CC.
617
618 Wed Jul  9 03:00:10 CEST 2003  Jan Hubicka  <jh@suse.cz>
619
620         * cgraph.c (cgraph_node_name): New function.
621         (dump_cgraph): Use it.
622         * cgraph.h (cgraph_dump_file): Declare.
623         (cgraph_node_name): Declare.
624         * cgraphunit.c: Include timevar.h
625         (cgraph_finalize_compilation_unit): Use timevar; reorganize dumps.
626         (cgraph_optimize_function): Use TV_INTEGRATION.
627         (cgraph_mark_local_functions): reorganize dumps.
628         (cgraph_mark_functions_to_inline_once): Likewise.
629         (cgraph_optimize): Likewise; use timevar.
630         * timevar.def (TV_CGRAPH, TV_CGRAPHOPT): New.
631         * toplev.c (dump_file_index): Add DFI_cgraph.
632         (dump_file_info): Likewise.
633         (cgraph_dump_file): New global variable.
634         (do_compile): Open and close cgraph dump.
635         * invoke.texi (-d): Document new flag; renumber.
636
637 2003-07-08  Roger Sayle  <roger@eyesopen.com>
638
639         PR c/11370
640         * calls.c (emit_call_1): Don't bother popping the arguments off of
641         the stack after a noreturn function call;  The adjustment is dead.
642         (expand_call): Likewise.
643
644 2003-07-08  Geoffrey Keating  <geoffk@apple.com>
645
646         * expr.c (MOVE_MAX_PIECES): Move from here...
647         * defaults.h (MOVE_MAX_PIECES): ... to here.
648
649 2003-07-08  Matt Kraai  <kraai@alumni.cmu.edu>
650
651         * Makefile.in (stage1-start): Handle an empty SUBDIRS.
652
653 2003-07-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
654
655         * genattr.c (internal_dfa_insn_code): Don't prototype.
656         * genattrtab.c (attr_desc): Add `static_p' field.
657         (expand_units): Make blockage range and ready cost functions
658         static.
659         (write_attr_get): Don't add extern prototypes in C file.  Mark
660         static functions as appropriate.
661         (find_attr, make_internal_attr): Initialize static_p.
662         * genattrtab.h (ATTR_STATIC): New macro.
663         * genautomata.c (output_internal_reset_func): Mark output function
664         as inline.
665         (make_internal_dfa_insn_code_attr): Mark output function as static.
666
667 2003-07-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
668
669         * genattrtab.h: Add new macros for attr `special' flags.
670         * genattrtab.c (attr_desc): Reorder/resize fields better.
671         Use attr `special' macros in all calls to make_internal_attr.
672         * genautomata.c: Likewise.
673
674 Wed Jul  9 02:25:39 CEST 2003  Jan Hubicka  <jh@suse.cz>
675
676         * c-common.c (c_estimate_num_insns_1): New static function.
677         (c_estimate_num_insns): New global function.
678         * c-common.h (DECL_NUM_STMTS): Rename to...
679         (DECL_ESTIMATED_INSNS): ... this.
680         (c_estimate_num_insns): Declare.
681         * c-decl.c (duplicate_decls): Use DECL_ESTIMATED_INSNS.
682         * c-lang.c (LANG_HOOKS_TREE_INLINING_ESTIMATE_NUM_INSNS): New.
683         * c-semantics.c (add_stmt): Do not account statements.
684         * langhooks-def.h (LANG_HOOKS_TREE_INLINING_ESTIMATE_NUM_INSNS):
685         New.
686         * langhooks.h (lang_hooks_for_tree_inlining): Add
687         estimate_num_insns
688         * params.def (max-inline-insns-auto, max-inline-insns-auto): set
689         to 100.
690         (max-inline-insns): set to 300.
691         (min-inline-insns): set to 10.
692         * tree-inline.c (struct inline_data): Rename inlined_stmts to
693         inlined-insns.
694         (INSNS_PER_STMT): Kill.
695         (inlinable_function_p): Compute and store body size.
696         (expand_call_inline): Likewise.
697         (optimize_inline_calls): Likewise.
698
699 2003-07-08  James E Wilson  <wilson@tuliptree.org>
700
701         PR target/10021
702         * emit-rtl.c (set_mem_attribute_minus_bitpos): When handle ARRAY_REF,
703         loop over new variable t2 instead of t.
704
705 2003-07-08  Danny Smith  <dannysmith@users.sourceforge.net>
706
707         PR bootstrap/11455
708         * config/i386/winnt.c: Replace use of error(), warning() with
709         error_with_decl(), warning_with_decl(),  throughout.
710
711 2003-07-08  Neil Booth  <neil@daikokuya.co.uk>
712
713         * opts.c (wrap_help): Use unsigned int, not size_t.
714
715 2003-07-08  Stephane Carrez  <stcarrez@nerim.fr>
716
717         * config/m68hc11/m68hc11.h (HAVE_AS_DWARF2_DEBUG_LINE): Don't define
718         as .file/.loc directives are incompatible with linker relaxation.
719
720 2003-07-08  Zack Weinberg  <zack@codesourcery.com>
721
722         * Makefile.in (fixinc.sh): Remove gnu-regex.[ch] from dependencies.
723         * fixinc/Makefile.in: Remove all references to gnu-regex.[och].
724         * fixinc/fixfixes.c, fixinc/fixincl.c, fixinc/fixlib.c
725         * fixinc/fixtests.c: Use xregexec not regexec, xregcomp not regcomp.
726         * fixinc/fixlib.h: Include xregex.h not gnu-regex.h.
727         * fixinc/inclhack.def (hpux10_cpp_pow_inline, hpux11_cpp_pow_inline):
728         Escape { and } characters which are not part of range expressions.
729         * fixinc/fixincl.x: Regenerate.
730         * fixinc/gnu-regex.c, fixinc/gnu-regex.h: Delete file.
731
732 2003-07-08  Steven Bosscher  <steven@gcc.gnu.org>
733
734         PR c/1687
735         * tree-inline.c (find_alloca_call): Use
736         walk_tree_without_duplicates, instead of walk_tree.
737         (find_builtin_longjmp_call): Likewise.
738         * c-objc-common.c (c_cannot_inline_fn): Likewise.
739         * c-semantics.c (find_reachable_label): Likewise.
740
741 2003-07-08  Jakub Jelinek  <jakub@redhat.com>
742
743         PR c/11420
744         * config/i386/i386.c (ix86_check_movabs): New function.
745         * config/i386/i386-protos.h (ix86_check_movabs): New prototype.
746         * config/i386/i386.md (movabs[shqd]i_1_rex64): Kill broken alternative.
747         (movabs[shqd]i_[12]_rex64): Add ix86_check_movabs check to conditions.
748
749 2003-07-08  Chris Demetriou  <cgd@broadcom.com>
750
751         * Makefile.in (install-po): Cope with empty CATALOGS.
752
753 2003-07-08  Richard Sandiford  <rsandifo@redhat.com>
754
755         * config/mips/elf64.h (TARGET_ASM_UNIQUE_SECTION): Delete.
756         (EXTRA_SECTIONS, EXTRA_SECTION_FUNCTIONS): Delete.
757         (SECTION_FUNCTION_TEMPLATE): Delete.
758         * config/mips/elf.h: As for elf64.h.
759         (ASM_OUTPUT_ALIGNED_BSS): Use named_section rather than sbss_section.
760         * config/mips/linux.h: As for elf.h
761         * config/mips/iris6gld.h (TARGET_ASM_UNIQUE_SECTION): Delete.
762         * config/mips/iris6.h (EXTRA_SECTIONS): Delete.
763         (EXTRA_SECTION_FUNCTIONS): Remove sdata_section.  Remove the handling
764         of in_sdata from current_section_name and current_section_flags.
765         * config/mips/iris6gld.h (TARGET_ASM_UNIQUE_SECTION): Delete.
766         * config/mips/mips.h (sdata_section, sbss_section): Remove prototypes.
767         (MASK_GP_OPT, TARGET_GP_OPT): Delete.
768         (MASK_NO_FUSED_MADD): Use MASK_GP_OPT's old value.
769         (TARGET_SWITCHES): Neuter gpOPT, gpopt, no-gpOPT and no-gpopt.
770         (SMALL_DATA_SECTION, EXTRA_SECTIONS, EXTRA_SECTION_FUNCTIONS): Remove.
771         * config/mips/mips.c (TARGET_IN_SMALL_DATA_P): Override.
772         (TARGET_SECTION_TYPE_FLAGS): Override if TARGET_IRIX6.
773         (mips_classify_symbol): Use SYMBOL_REF_SMALL_P.
774         (override_options): Remove setting of MASK_GPOPT.
775         (mips_output_external): Use mips_in_small_data_p to check whether a
776         symbol needs an .extern directive.  Don't emit such directives for
777         TARGET_EXPLICIT_RELOCS.
778         (mips_declare_object): Update accordingly.
779         (mips_select_rtx_section): Call named_section rather than
780         SMALL_DATA_SECTION.
781         (mips_select_section): Use default_elf_section_section for everything
782         except .text string constants.
783         (mips_in_small_data_p): New function.
784         (mips_encode_section_info): Remove small data handling.
785         (mips_unique_section): Delete.
786         (iris6_section_type_flags): New function.
787         * doc/tm.texi: Remove documentation of -mgpopt and -mhalf-pic.
788
789 2003-07-08  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
790
791         PR Target/11453
792         * pa.md: Disparage all mtsar constraints.
793         (extzv, extv, insv): Don't fail on length of {32|64}.
794
795 2003-07-08  Zack Weinberg  <zack@codesourcery.com>
796
797         * system.h: Poison MAP_CHARACTER.
798         * config/i370/i370-protos.h (mvs_map_char): Delete.
799         * config/i370/i370.c (ascebc, ebcasc, mvs_map_char): Delete.
800         * config/i370/i370.h (MAP_CHARACTER): Delete definition.
801         (ASM_OUTPUT_ASCII): Don't use MAP_CHARACTER.
802
803 2003-07-08  Danny Smith  <dannysmith@users.sourceforge.net>
804
805         * toplev.c (randomize): Correct call to time().
806
807 2003-07-08  Jakub Jelinek  <jakub@redhat.com>
808
809         * unroll.c (reg_dead_after_loop): Check for reg in REG_EQUAL and
810         REG_EQUIV notes as well.
811
812 2003-07-08  Kazu Hirata  <kazu@cs.umass.edu>
813
814         * doc/md.texi: Fix the description of addmodecc.
815
816 2003-07-07  Zack Weinberg  <zack@codesourcery.com>
817
818         * Makefile.in (top_builddir): Set to "..", not ".".
819         (INTLLIBS, INTLDEPS): Delete.
820         (LIBINTL, LIBINTL_DEP, LIBICONV_DEP): New variables to be substituted.
821         (LIBDEPS): Add $(LIBICONV_DEP).
822         (LIBS): Take out $(INTLLIBS), add $(LIBINTL) and $(LIBICONV).
823         (INCLUDES): Replace -I../intl with @INCINTL@.
824         ($(top_builddir)/intl/libintl.a): Delete rule.
825         (stage2-start, stage3-start, stage4-start, stageprofile-start,
826         stagefeedback-start): Use $$ for variable to be evaluated by
827         shell, not make.
828         * acconfig.h (ENABLE_NLS, HAVE_CATGETS, HAVE_GETTEXT,
829         HAVE_LC_MESSAGES, HAVE_STPCPY): Delete.
830         * aclocal.m4: sinclude ../config/progtest.m4.  Add
831         contents of lcmessage.m4 from gettext distro.
832         * configure.in: Check for wchar.h and setlocale.  Set
833         LIBICONV_DEP to the empty string and substitute it.
834         Call AM_LC_MESSAGES.  Delete AC_ARG_ENABLE for --enable-nls;
835         this is handled elsewhere.  Use ZW_GNU_GETTEXT_SISTER_DIR,
836         not CY_GNU_GETTEXT.  Clear $LIBICONV if its text is included
837         in $LIBINTL, to avoid linking it twice.
838         * configure, config.in: Regenerate.
839
840 2003-07-08  Nathanael Nerode  <neroden@gcc.gnu.org>
841
842         * fixinc/mkfixinc.sh: Remove winnt support.
843         * fixinc/fixinc.winnt: Delete with extreme prejudice.
844
845 2003-07-08  Neil Booth  <neil@daikokuya.co.uk>
846
847         * Makefile.in: Update.
848         * c-opts.c (c_common_handle_option): opt_text now contains the '-'.
849         * c.opt: Update documentation.
850         * common.opt: Add some help text.
851         * opts.c: Include intl.h.
852         (wrap_help, print_help): New.
853         (find_opt, handle_option, common_handle_option): opt_text now
854         contains the '-'.  Use print_help to output help.
855         * opts.h (struct cl_option): New member "help".
856         * opts.sh: Update to handle help text output and to prepend
857         options with '-'.
858         * toplev.c (display_help): Remove some help text.
859
860 2003-07-07  David Edelsohn  <edelsohn@gnu.org>
861             Fariborz Jahanian  <fjahanian@apple.com>
862
863         * configure.in: Test for PowerPC mfcr field support in assembler.
864         * config.in, configure: Regenderated.
865
866         * config/rs6000/power4.md: Add mfcrf reservation.
867         * config/rs6000/rs6000-protos.h (mfcr_operation): Declare.
868         * config/rs6000/rs6000.c (mfcr_operation): Define.
869         (print_operand): Add 'Q' case for mfcrf.
870         * config/rs6000/rs6000.h (TARGET_MFCRF): New.
871         * config/rs6000/rs6000.md (attribute "type"): Add mfcrf.
872         (movcc_internal1): Emit optional field operand for mfcr and set
873         "type" attribute appropriately.
874         (mfcr SCC): Likewise.
875         (movesi_from_cr_one): New.
876
877 2003-07-07  Roger Sayle  <roger@eyesopen.com>
878
879         * config/i386/i386.md: Correct check-in of incorrect version.
880
881 2003-07-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
882
883         * bitmap.c (debug_bitmap_file): Merge uses of HOST_PTR_PRINTF with
884         adjacent stdio calls.
885         * c-decl.c (c_print_identifier): Likewise.
886         * mips-tfile.c (write_varray, write_object, allocate_cluster): Likewise.
887         * print-rtl.c (print_rtx): Likewise.
888         * print-tree.c (print_node_brief, print_node): Likewise.
889         * system.h (HOST_PTR_PRINTF): Ensure we have a literal string.
890
891         * configure.in (AC_COMPILE_CHECK_SIZEOF): Check for `void *'.
892         * config.in, configure: Regenerated.
893
894 2003-07-07  Roger Sayle  <roger@eyesopen.com>
895
896         PR target/10979
897         * config/i386/i386.md (atan2df3, atan2sf3, atan2xf3, atan2tf3):
898         Changed to define_expand patterns that copy operand[1] to prevent
899         it from being clobbered before emitting an atan2?f3_1 insn.
900         (atan2df3_1, atan2sf3_1, atan2xf_1, atan2tf3_1): New define_insn
901         patterns that actually specify the behaviour of x87's FPATAN.
902
903 2003-07-07  Jakub Jelinek  <jakub@redhat.com>
904
905         * config/rs6000/rs6000.c (rs6000_output_mi_thunk): Remove bogus
906         clearing of SYMBOL_FLAG_LOCAL bit.
907         If vcall_offset fits into signed 16-bit immediate, use
908         one instruction for both addition and load.
909
910 2003-07-07  Neil Booth  <neil@daikokuya.co.uk>
911
912         * opts.c (common_handle_option): Correct handling of the
913         -falign- switches that do and don't take an argument.
914
915 2003-07-07  Kazu Hirata  <kazu@cs.umass.edu>
916
917         * config/h8300/h8300.md (pushqi1_h8300hs): Revert my patch
918         today.
919         (pushhi1_h8300hs): Likewise.
920
921 2003-07-07  Andreas Jaeger  <aj@suse.de>
922
923         * genextract.c: Convert remaining prototypes to ISO C90.
924
925         * cpplex.c (_cpp_free_buff): Convert prototype to ISO C90.
926         * fold-const.c (fold_single_bit_test): Likewise.
927         * diagnostic.c (default_diagnostic_finalizer): Likewise.
928         * cfgrtl.c (rtl_redirect_edge_and_branch): Likewise.
929
930         * gengtype.c (write_array): Generate ISO C90 prototypes.
931
932         * genflags.c (gen_proto): Generate ISO C90 prototypes.
933
934 2003-07-07  Roger Sayle  <roger@eyesopen.com>
935
936         PR optimization/11059
937         * expr.c (can_store_by_pieces): Return true if length is zero.
938         (store_by_pieces): If length is zero and endp is two, abort,
939         othwerise, if length is zero and endp is not two, return "to".
940         (clear_by_pieces): Do nothing if length is zero.
941         (clear_storage): Do nothing if length is zero.
942         (store_constructor): Simplify code when size is zero, or the
943         target has already been cleared.  This avoids emitting a
944         blockage instruction when initializing empty structures.
945
946 2003-07-07  Andreas Jaeger  <aj@suse.de>
947
948         * mips-tfile.c: Convert prototypes to ISO C90.
949         * mips-tdump.c: Convert prototypes to ISO C90.
950
951 2003-07-07  Nathan Sidwell  <nathan@codesourcery.com>
952
953         * rtl.h (emit_line_note): Take a location_t.
954         (emit_line_note_force): Remove.
955         (set_file_and_line_for_statement): Take a location_t.
956         * tree.g (emit_line_note): Take a location_t.
957         * emit-rtl.c (emit_line_note): Take a location_t.
958         (emit_line_note_force): Remove.
959         * function.c (init_function_start): Adjust emit_line_note call.
960         (expand_function_end): Use force_next_line_note, not
961         emit_line_note_force.
962         * c-parse.in (maybe_type_qual): Adjust emit_line_note calls.
963         * c-semantics.c (genrtl_do_pushlevel, genrtl_goto_stmt,
964         genrtl_expr_stmt_value, genrtl_decl_stmt, genrtl_if_stmt,
965         genrtl_while_stmt, genrtl_do_stmt_1, genrtl_return_stmt,
966         genrtl_for_stmt, genrtl_break_stmt, genrtl_continue_stmt,
967         genrtl_continue_stmt, genrtl_switch_stmt,
968         genrtl_asm_stmt): Likewise.
969         * expr.c (expand_expr): Likewise.
970         * integrate.c (expand_inline_function): Likewise.
971         * stmt.c (set_file_and_line_for_stmt): Take a location_t.
972         (expand_decl_init): Adjust emit_line_note call.
973
974 2003-07-07  Dale Johannesen  <dalej@apple.com>
975
976         * config/rs6000/darwin-tramp.asm:  Fix trampolines.  PR 10900.
977
978 2003-07-07  Andreas Jaeger  <aj@suse.de>
979
980         * config/i386/i386-protos.h: Convert prototypes to ISO C90.
981         * config/i386/i386.c: Likewise.
982
983 2003-07-07  Kazu Hirata  <kazu@cs.umass.edu>
984
985         * config/h8300/h8300.md: Use gen_int_mode instead of
986         GEN_INT (trunc_int_for_mode (...)).
987
988 2003-07-07  Kazu Hirata  <kazu@cs.umass.edu>
989
990         * config/h8300/h8300.md (pushqi1_h8300hs): Optimize by pushing
991         2 bytes and then subtract 2 from the stack pointer.
992         (pushhi1_h8300hs): Likewise.
993
994 2003-07-07  Nathan Sidwell  <nathan@codesourcery.com>
995
996         * configure.in (enable_coverage): Remove -DSELF_COVERAGE, add
997         -frandom-seed.
998         * configure: Regenerated.
999         * Makefile.in: Remove extraneous comment.
1000         * toplev.c (randomize): Protect against potential multiple calls.
1001         * doc/invoke.texi (-frandom-seed): Document use for in coverage
1002         files.
1003
1004 2003-07-07  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1005             Eric Botcazou  <ebotcazou@libertysurf.fr>
1006
1007         PR optimization/11198
1008         * alias.c (objects_must_conflict_p): Return 1 if the types have
1009         the same alias set, not if the alias sets only conflict.
1010
1011 2003-07-07  Andrew Pinski  <pinskia@physics.uc.edu>
1012
1013         * cppcharset.c (ICONV_CONST): Define iff !HAVE_ICONV.
1014         (convert_cset): Change inbuf to type ICONV_CONST char.
1015         * Makefile.in (LIBS): Add LIBICONV.
1016
1017         * doc/invoke.texi (-falign-functions): Document that
1018         when n is zero then a machine-dependent default is used.
1019         (-falign-labels): Document that when n is zero then a
1020         machine-dependent default is used and that -falign-labels =1
1021         is equivalent to -fno-align-labels.
1022         (-falign-loops): Likewise.
1023         (-falign-jumps): Likewise.
1024
1025 2003-07-06  Art Haas  <ahaas@airmail.net>
1026
1027         * f/global.c (ffeglobal_type_string_): Fix obsolete GCC array
1028         initializer syntax.
1029
1030 2003-07-06  James E Wilson  <wilson@tuliptree.org>
1031
1032         PR optimization/9812
1033         * rtl.h (mem_for_const_double): Delete prototype.
1034         * varasm.c (mem_for_const_double): Delete function.
1035         * config/m68k/hp320.h, config/m68k/linux.h, config/m68k/m68kelf.h,
1036         config/m68k/m68kv4.h, config/m68k/netbsd-elf.h
1037         (LEGITIMATE_PIC_OPERAND_P): Delete duplicate definitions.
1038         * config/m68k/m68k.h (LEGITIMATE_CONSTANT_P): Disallow XFmode.
1039         (LEGITIMATE_PIC_OPERAND_P): Delete CONST_DOUBLE tests.
1040         * config/m68k/m68k.md (movxf): Add reload_in_progress guard.  Add
1041         comment about confused support for XFmode constants.
1042
1043 Mon Jul  7 02:03:56 CEST 2003  Jan Hubicka  <jh@suse.cz>
1044
1045         * cfglayout.c (fixup_reorder_chain): Call delete_dead_jumptables.
1046
1047 2003-07-06  Kazu Hirata  <kazu@cs.umass.edu>
1048
1049         * config/h8300/h8300.c: Fix comment typos.
1050         * config/h8300/h8300.md: Likewise.
1051         * config/i386/athlon.md: Likewise.
1052         * config/i386/i386.c: Likewise.
1053         * config/i386/pentium.md: Likewise.
1054         * config/ia64/ia64.c: Likewise.
1055         * config/ia64/itanium1.md: Likewise.
1056         * config/ia64/itanium2.md: Likewise.
1057         * config/m32r/m32r.md: Likewise.
1058         * config/m68hc11/m68hc11.c: Likewise.
1059         * config/mcore/mcore.c: Likewise.
1060         * config/mips/sr71k.md: Likewise.
1061         * config/mips/t-iris5-as: Likewise.
1062         * config/mmix/mmix.h: Likewise.
1063         * config/ns32k/ns32k.h: Likewise.
1064         * config/ns32k/NOTES: Fix a typo.
1065
1066 2003-07-06  Andreas Jaeger  <aj@suse.de>
1067
1068         * stmt.c: Convert remaining prototypes to ISO C90.
1069         * cfglayout.c: Likewise.
1070         * dbxout.c: Likewise.
1071         * gcc.c: Likewise.
1072         * genemit.c: Likewise.
1073
1074         * basic-block.h: Convert prototypes to ISO C90.
1075         * c-parse.in: Likewise.
1076         * c-pragma.h: Likewise.
1077         * c-typeck.c: Likewise.
1078         * cfghooks.h: Likewise.
1079         * cfgloopanal.c: Likewise.
1080         * dbxout.h: Likewise.
1081         * debug.h: Likewise.
1082         * dwarf2asm.h: Likewise.
1083         * gcov.c: Likewise.
1084         * gengtype-lex.l: Likewise.
1085         * sched-int.h: Likewise.
1086         * timevar.c: Likewise.
1087
1088 2003-07-06  Neil Booth  <neil@daikokuya.co.uk>
1089
1090         * c-common.h (c_comon_handle_filename,
1091         c_common_missing_arguement): New.
1092         * c-lang.c (LANG_HOOKS_HANDLE_FILENAME,
1093         LANG_HOOKS_MISSING_ARGUMENT): New.
1094         * c-opts.c (missing_arg): Rename c_common_missing_argument,
1095         update to be an appropriate langhook.
1096         (c_common_handle_option): Don't handle filenames.
1097         (c_common_handle_filename): New.
1098         * hooks.c (hook_void_constcharptr,
1099         hook_bool_constcharptr_size_t_false): New.
1100         * hooks.h (hook_void_constcharptr,
1101         hook_bool_constcharptr_size_t_false): New.
1102         * langhooks-def.h (LANG_HOOKS_HANDLE_FILENAME,
1103         LANG_HOOKS_MISSING_ARGUMENT): New.
1104         (LANG_HOOKS_INITIALIZER): Update.
1105         * langhooks.h (struct lang_hooks): Add handle_filename and
1106         missing_argument.
1107         * opts.c (handle_option): Don't handle filenames here, but ...
1108         (handle_options): ... here.
1109         (common_handle_option): Don't handle missing arguments here.
1110         * objc/objc-lang.c (LANG_HOOKS_HANDLE_FILENAME,
1111         LANG_HOOKS_MISSING_ARGUMENT): New.
1112
1113 2003-07-06  Neil Booth  <neil@daikokuya.co.uk>
1114
1115         * Makfile.in: Remove traces of mbchar.
1116         * c-parse.in (MULTIBYTE_CHARS): Remove.
1117         * config.in (MULTIBYTE_CHARS): Remove.
1118         * configure: Remove --enable-mbchar.
1119         * configure.in: Remove --enable-mbchar.
1120         * mbchar.c, mbchar.h: Remove.
1121         * system.h: Poison MULTIBYTE_CHARS.
1122         * config/linux-aout.h (MULTIBYTE_CHARS): Remove.
1123         * config/linux.h (MULTIBYTE_CHARS): Remove.
1124         * config/svr4.h (MULTIBYTE_CHARS): Remove.
1125         * config/sparc/linux.h (MULTIBYTE_CHARS): Remove.
1126
1127 2003-07-06  Andreas Jaeger  <aj@suse.de>
1128
1129         * varray.c (varray_check_failed): Fix typo.
1130
1131         * unroll.c: Convert prototypes to ISO C90.
1132         * varasm.c: Likewise.
1133         * varray.c: Likewise.
1134         * varray.h: Likewise.
1135         * vmsdbgout.c: Likewise.
1136         * xcoffout.c: Likewise.
1137         * xcoffout.h: Likewise.
1138
1139 2003-07-06  Nathan Sidwell  <nathan@codesourcery.com>
1140
1141         * gcov-io.h: Add a local time stamp.
1142         (struct gcov_info): Add stamp field.
1143         (gcov_truncate): New.
1144         * coverage.c (read_counts_file): Skip the stamp.
1145         (coverage_begin_output): Write the stamp.
1146         (build_gcov_info): Declare and init the stamp.
1147         (coverage_finish): Only unlink data file, if stamp is zero.
1148         * gcov-dump.c (dump_file): Dump the stamp.
1149         * gcov.c (bbg_stamp): New.
1150         (release_structures): Clear bbg_stamp.
1151         (read_graph_file): Read stamp.
1152         (read_count_file): Check stamp.
1153         * libgcov.c (gcov_exit): Check stamp and truncate if needed.
1154
1155 2003-07-06  Nathan Sidwell  <nathan@codesourcery.com>
1156
1157         * tree.h (default_flag_random_seed): Remove.
1158         * toplev.h (local_tick): Declare.
1159         * tree.c (flag_random_seed, default_flag_random_seed): Move to
1160         toplev.c.
1161         (append_random_chars): Don't call default_flag_random_seed.
1162         * toplev.c (flag_random_seed): Define here. Set local_tick.
1163         (local_tick): Define.
1164         (randomize): New, moved from tree.c.
1165         (print_switch_values): Adjust.
1166         (toplev_main): Call randomize.
1167
1168 2003-07-06  Nathan Sidwell  <nathan@codesourcery.com>
1169
1170         * tree.h (crc32_string): Declare.
1171         * tree.c (append_random_chars): Remove.
1172         (crc32_string): New.
1173         (get_file_function_name_long): Use crc32_string here.
1174
1175 2003-07-06  Andreas Jaeger  <aj@suse.de>
1176
1177         * gcc.c: Convert prototypes to ISO C90.
1178         * gcc.h: Likewise.
1179         * gcov-dump.c: Likewise.
1180         * gcov-iov.c: Likewise.
1181         * gcse.c: Likewise.
1182         * genattrtab.h: Likewise.
1183         * ggc.h: Likewise.
1184         * global.c: Likewise.
1185         * graph.c: Likewise.
1186         * graph.h: Likewise.
1187         * hosthooks.h: Likewise.
1188         * hooks.h: Likewise.
1189         * hooks.c: Likewise.
1190         * hashtable.h: Likewise.
1191         * hashtable.c: Likewise.
1192         * haifa-sched.c: Likewise.
1193         * integrate.h: Likewise.
1194         * integrate.c: Likewise.
1195         * input.h: Likewise.
1196         * ifcvt.c: Likewise.
1197         * jump.c: Likewise.
1198         * langhooks-def.h: Likewise.  Add extern to prototypes.
1199         * langhooks.c: Likewise.
1200         * langhooks.h: Likewise.
1201         * lcm.c: Likewise.
1202         * local-alloc.c: Likewise.
1203         * loop-init.c: Likewise.
1204         * loop-unroll.c: Likewise.
1205         * loop-unswitch.c: Likewise.
1206         * loop.c: Likewise.
1207         * loop.h: Likewise. Add extern to prototypes.
1208         * machmode.h: Likewise.
1209         * main.c: Likewise.
1210         * mbchar.c: Likewise.
1211         * mbchar.h: Likewise.
1212         * mkdeps.c: Likewise.
1213         * mkdeps.h: Likewise.
1214         * optabs.c: Likewise.
1215         * optabs.h: Likewise.
1216         * output.h: Likewise.
1217         * gccspec.c: Likwise.
1218         * postreload.c: Likewise.
1219         * prefix.c: Likewise.
1220         * prefix.h: Likewise.
1221         * print-rtl.c: Likewise.
1222         * print-tree.c: Likewise.
1223         * profile.c: Likewise.
1224         * read-rtl.c: Likewise.
1225         * real.c: Likewise.
1226         * real.h: Likewise.
1227         * recog.c: Likewise.
1228         * recog.h: Likewise.
1229         * reg-stack.c: Likewise.
1230         * regclass.c: Likewise.
1231         * regmove.c: Likewise.
1232         * regrename.c: Likewise.
1233         * regs.h: Likewise.
1234         * reload.c: Likewise.
1235         * reload.h: Likewise.
1236         * reload1.c: Likewise.
1237         * reorg.c: Likewise.
1238         * resource.c: Likewise.
1239         * resource.h: Likewise.
1240         * rtl-error.c: Likewise.
1241         * rtl.c: Likewise.
1242         * rtl.h: Likewise.
1243         * rtlanal.c: Likewise.
1244         * sbitmap.c: Likewise.
1245         * sbitmap.h: Likewise.
1246         * scan-decls.c: Likewise.
1247         * scan.c: Likewise.
1248         * sched-deps.c: Likewise.
1249         * sched-ebb.c: Likewise.
1250         * sched-int.h: Likewise.
1251         * sched-rgn.c: Likewise.
1252         * sched-vis.c: Likewise.
1253         * sibcall.c: Likewise.
1254         * simplify-rtx.c: Likewise.
1255         * sreal.c: Likewise.
1256         * sreal.h: Likewise.
1257         * ssa-ccp.c: Likewise.
1258         * ssa-dce.c: Likewise.
1259         * ssa.c: Likewise.
1260         * ssa.h: Likewise.
1261         * stack.h: Likewise.
1262         * stmt.c: Likewise.
1263         * stor-layout.c: Likewise.
1264         * stringpool.c: Likewise.
1265         * target.h: Likewise.
1266         * timevar.c: Likewise.
1267         * timevar.h: Likewise.
1268         * tlink.c: Likewise.
1269         * tracer.c: Likewise.
1270         * tree-inline.c: Likewise.
1271         * tree-inline.h: Likewise.
1272         * tree.c: Likewise.
1273         * tree.h: Likewise.
1274
1275 2003-07-05  Kazu Hirata  <kazu@cs.umass.edu>
1276
1277         * combine.c (nonzero_bits1): Fix a warning.
1278
1279 2003-07-05  Kazu Hirata  <kazu@cs.umass.edu>
1280
1281         * config/h8300/h8300.c (compute_mov_length): Correct the
1282         length of loading CONST0_RTX (SFmode).
1283
1284 2003-07-05  Nathan Sidwell  <nathan@codesourcery.com>
1285
1286         * toplev.c (output_clean_symbol_name): Remove.
1287         * toplev.h (output_clean_symbol_name): Remove.
1288         * config/alpha/alpha.c (unicosmk_output_module_name): Use
1289         lbasename & clean_symbol_name.
1290
1291 2003-07-05  Kazu Hirata  <kazu@cs.umass.edu>
1292
1293         * ggc.h: Follow spelling conventions.
1294         * config/i386/i386.c: Likewise.
1295         * config/i386/winnt.c: Likewise.
1296         * config/rs6000/rs6000.c: Likewise.
1297
1298 2003-07-05  Kazu Hirata  <kazu@cs.umass.edu>
1299
1300         * bt-load.c: Fix comment typos.
1301         * c-incpath.c: Likewise.
1302         * cfg.c: Likewise.
1303         * cfgcleanup.c: Likewise.
1304         * cfgloop.h: Likewise.
1305         * cfgloopmanip.c: Likewise.
1306         * cfgrtl.c: Likewise.
1307         * diagnostic.h: Likewise.
1308         * dwarfout.c: Likewise.
1309         * emit-rtl.c: Likewise.
1310         * et-forest.c: Likewise.
1311         * et-forest.h: Likewise.
1312         * expr.c: Likewise.
1313         * gcse.c: Likewise.
1314         * genattr.c: Likewise.
1315         * jump.c: Likewise.
1316         * langhooks.h: Likewise.
1317         * local-alloc.c: Likewise.
1318         * loop-unroll.c: Likewise.
1319         * loop-unswitch.c: Likewise.
1320         * ra-build.c: Likewise.
1321         * regclass.c: Likewise.
1322         * regmove.c: Likewise.
1323         * rtl.def: Likewise.
1324         * rtlanal.c: Likewise.
1325         * sched-ebb.c: Likewise.
1326         * sched-rgn.c: Likewise.
1327         * simplify-rtx.c: Likewise.
1328         * ssa.c: Likewise.
1329         * tracer.c: Likewise.
1330         * tree.c: Likewise.
1331
1332 2003-07-05  Zack Weinberg  <zack@codesourcery.com>
1333
1334         * cppcharset.c: Use the correct return type for the fallback iconv
1335         macro.
1336
1337 Sat Jul  5 16:18:53 CEST 2003  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
1338
1339         Blame to Jan Hubicka  <jh@suse.cz>
1340         * cfglayout.c (record_effective_endpoints): Split insns before
1341         first basic block correctly.
1342
1343 2003-07-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1344
1345         * expr.c (expand_expr, case COMPONENT_REF): When seeing if should use
1346         bitfield operations, use STRICT_ALIGNMENT, not SLOW_UNALIGNED_ACCESS
1347         if EXPAND_CONST_ADDRESS or EXPAND_INITIALIZER.
1348
1349 2003-07-05  Andreas Jaeger  <aj@suse.de>
1350
1351         * genattrtab.c (write_attr_get): Revert part of last patch to
1352         always write out a prototype.
1353
1354         * genemit.c (gen_split): Readd lost unused attributes in last
1355         patch.
1356
1357 2003-07-05  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
1358
1359         * cfgloopmanip.c (force_single_succ_latches): Force latch to be
1360         different from header.
1361
1362 2003-07-05  Andreas Schwab  <schwab@suse.de>
1363
1364         * config/m68k/m68k.c: Remove code protected by CRDS.
1365         * config/m68k/m68k.md: Likewise.
1366
1367 2003-07-05  Neil Booth  <neil@daikokuya.co.uk>
1368
1369         PR driver/11417
1370         * c-opts.c (permit_fortran_options): New.
1371         (c_common_init_options): Accept fortran front end options if
1372         it looks like we might be preprocessing Fortran.
1373         (c_common_handle_option): Don't reject switch if permit_fotran_options.
1374
1375 2003-07-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1376
1377         * genattr.c (internal_dfa_insn_code): Output prototype.
1378         * genattrtab.c: Don't output unnecessary decls, output in ISO C.
1379         * genautomata.c: Likewise.
1380         * genconditions.c: Likewise.
1381         * genemit.c: Likewise.
1382         * genextract.c: Likewise.
1383         * gengenrtl.c: Likewise.
1384         * gengtype.c: Likewise.
1385         * genopinit.c: Likewise.
1386         * genoutput.c: Likewise.
1387         * genpeep.c: Likewise.
1388         * genrecog.c: Likewise.
1389
1390 2003-07-04  Zack Weinberg  <zack@codesourcery.com>
1391
1392         * cpplib.h (CPP_AT_NAME, CPP_OBJC_STRING): New token types.
1393         (struct cpp_options): Add narrow_charset, wide_charset,
1394         bytes_big_endian fields.  Remove EBCDIC field.
1395         (cpp_init_iconv, cpp_interpret_string): New external interfaces.
1396
1397         * cpphash.h: Include <iconv.h> if we have it, otherwise
1398         provide a dummy definition of iconv_t.
1399         (struct cpp_reader): Add narrow_cset_desc and wide_cset_desc fields.
1400         (_cpp_valid_ucn): Update prototype.
1401         (_cpp_destroy_iconv): New prototype.
1402
1403         * doc/cpp.texi: Document character set handling.
1404         * doc/cppopts.texi: Document -fexec-charset= and -fexec-wide-charset=.
1405         * doc/extend.texi: Delete entire section on multiline strings.
1406         Rewrite section on __FUNCTION__ etc now that these are
1407         variables in C.
1408
1409         * cppucnid.tab, cppucnid.pl: New files.
1410         * cppucnid.h: New generated file.
1411         * cppcharset.c: Include cppucnid.h.  Lots of commentary added.
1412         (iconv_open, iconv, iconv_close): Provide dummy definitions
1413         if !HAVE_ICONV.
1414         (SOURCE_CHARSET, struct strbuf, init_iconv_desc, cpp_init_iconv,
1415         _cpp_destroy_iconv, convert_cset, width_to_mask, convert_ucn,
1416         emit_numeric_escape, convert_hex, convert_oct, convert_escape,
1417         cpp_interpret_string, narrow_str_to_charconst,
1418         wide_str_to_charconst): New.
1419         (ucn_valid_in_identifier): Use a binary search through the
1420         ucnranges table defined in cppucnid.h, not a long chain of if
1421         statements.
1422         (_cpp_valid_ucn): Add a limit pointer.  Downgrade "universal
1423         character names are only valid in C++ and C99" to a warning.
1424         Issue the "meaning of \[uU] is different in traditional C"
1425         warning here.  Take care not to let iconv see an invalid UCS
1426         value if we get a malformed UCN.  Issue an error if we don't
1427         have iconv.
1428         (cpp_interpret_charconst): Moved here from cpplex.c.  Use
1429         cpp_interpret_string to do the heavy lifting.
1430
1431         * cppinit.c (cpp_create_reader): Initialize bytes_big_endian,
1432         narrow_charset, wide_charset fields of options structure.
1433         (cpp_destroy): Call _cpp_destroy_iconv.
1434         * cpplex.c (forms_identifier_p): Adjust call to _cpp_valid_ucn.
1435         (maybe_read_ucn, hex_digit_value, cpp_parse_escape): Delete.
1436         (cpp_interpret_charconst): Moved to cppcharset.c.
1437         * cpplib.c (dequote_string): Delete.
1438         (interpret_string_notranslate): New.
1439         (do_line, do_linemarker): Use interpret_string_notranslate.
1440
1441         * Makefile.in (cppcharset.o): Depend on cppucnid.h.
1442
1443         * c-common.c (fname_string, combine_strings): Delete.
1444         * c-common.h (fname_string, combine_strings): Delete prototypes.
1445         * c-lex.c (ignore_escape_flag): Delete.
1446         (cb_ident): Use cpp_interpret_string, not lex_string.
1447         (get_nonpadding_token): New function.
1448         (c_lex): Handle Objective-C @-prefixed identifiers and strings here.
1449         Adjust calls to lex_string.  Don't write *value twice.
1450         (lex_string): Now handles string constant concatenation.
1451         Most of the work handed off to cpp_interpret_string.
1452         Call fix_string_type here.
1453         * c-parse.in (STRING_FUNC_NAME, VAR_FUNC_NAME): Replace with
1454         FUNC_NAME, throughout.
1455         (OBJC_STRING): New token type.
1456         (primary:STRING): No need to call fix_string_type here.
1457         (primary:objc_string): Make that OBJC_STRING.
1458         (objc_string nonterminal): Delete.
1459         (yylexname): Delete code to handle fake string constants.
1460         (yylexstring): Delete entirely.
1461         (_yylex): Handle CPP_AT_NAME and CPP_OBJC_STRING.  No need
1462         to handle CPP_ATSIGN.
1463
1464         * c.opt (-fexec-charset=, -fwide-exec-charset=): New options.
1465         * c-opts.c (missing_arg, c_common_handle_option): Handle
1466         OPT_fexec_charset_ and OPT_fwide_exec_charset_.
1467         (c_common_init): Set cpp_opts->bytes_big_endian, not
1468         cpp_opts->EBCDIC.  Call cpp_init_iconv.
1469         (print_help): Document -fexec-charset= and -fexec-wide-charset=.
1470         (TARGET_EBCDIC): Delete default definition.
1471
1472         * objc/objc-act.c (build_objc_string_object): No need to
1473         handle string constant concatenation.
1474
1475 2003-07-04  Kazu Hirata  <kazu@cs.umass.edu>
1476
1477         * doc/install.texi: Fix typos.
1478         * doc/invoke.texi: Likewise.
1479         * doc/tm.texi: Likewise.
1480
1481 2003-07-04  Kazu Hirata  <kazu@cs.umass.edu>
1482
1483         * config/pa/fptr.c: Fix comment typos.
1484         * config/pa/pa-64.h: Likewise.
1485         * config/pa/pa.c: Likewise.
1486         * config/pa/pa.h: Likewise.
1487         * config/rs6000/603.md: Likewise.
1488         * config/rs6000/7xx.md: Likewise.
1489         * config/rs6000/darwin.h: Likewise.
1490         * config/rs6000/freebsd.h: Likewise.
1491         * config/rs6000/rs6000.c: Likewise.
1492         * config/rs6000/rs6000.md: Likewise.
1493         * config/rs6000/spe.h: Likewise.
1494
1495 2003-07-04  Ulrich Weigand  <uweigand@de.ibm.com>
1496
1497         * config/s390/2064.md: Change GNU CC to GCC.
1498         * config/s390/2084.md: Likewise.
1499         * config/s390/fixdfdi.h: Likewise.
1500         * config/s390/linux.h: Likewise.
1501         * config/s390/s390-modes.def: Likewise.
1502         * config/s390/s390-protos.h: Likewise.
1503         * config/s390/s390.c: Likewise.
1504         * config/s390/s390.h: Likewise.
1505         * config/s390/s390.md: Likewise.
1506         * config/s390/s390x.h: Likewise.
1507
1508 2003-07-04  Jeff Law  <law@redhat.com>
1509
1510         PR c/11428
1511         * expr.c (do_store_flag): Pass in the correct result type
1512         when calling fold_single_bit_test.
1513         * fold-const.c (fold_single_bit_test): Use result_type for the
1514         result when folding a sign bit test.
1515
1516 2003-07-04  Neil Booth  <neil@daikokuya.co.uk>
1517
1518         * opts.c (common_handle_options): Negate sense of -falign- switches.
1519
1520 2003-07-04  H.J. Lu <hongjiu.lu@intel.com>
1521
1522         * Makefile.in: Replace PWD with PWD_COMMAND.
1523
1524 2003-07-04  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
1525
1526         * cfgloopanal.c (count_strange_loop_iterations): New static function.
1527         (constant_iterations, count_loop_iterations, simple_loop_exit_p):
1528         Handle strange loops.
1529
1530 2003-07-04  Toon Moene  <toon@moene.indiv.nluug.nl>
1531
1532         * install.texi: Even the g77 manpage is derived from
1533         the full g77 manual.
1534
1535 2003-07-04  Zack Weinberg  <zack@codesourcery.com>
1536
1537         * ABOUT-NLS: Delete.
1538         * intl: Delete entire directory.
1539         * aclocal.m4: Include ../config/gettext.m4.  Delete
1540         AC_ISC_POSIX, AM_LANGINFO_CODESET, jm_GLIBC21, AM_LC_MESSAGES,
1541         AM_PATH_PROG_WITH_TEST, AM_WITH_NLS, and AM_GNU_GETTEXT.
1542         * configure.in: Use CY_GNU_GETTEXT, not AM_GNU_GETTEXT.
1543         Remove intl/Makefile from all_outputs.
1544         * configure, config.in: Regenerate.
1545         * Makefile.in: Expunge all references to intl subdirectory.
1546         Add -I../intl to INCLUDES.
1547         * intl.h: Include libintl.h if and only if ENABLE_NLS is defined.
1548
1549 2003-07-04  Roger Sayle  <roger@eyesopen.com>
1550
1551         * config/rs6000/aix51.h (TARGET_C99_FUNCTIONS): Define.
1552         * config/rs6000/aix52.h (TARGET_C99_FUNCTIONS): Likewise.
1553
1554 2003-07-04  Danny Smith  <dannysmith@users.sourceforge.net>
1555
1556         PR c++/5287, PR c++/7910, PR c++/11021
1557         * config/i386/winnt.c (ix86_handle_dll_attribute): Don't add
1558         dllimport attribute if function is defined at declaration, but
1559         report error instead. Likewise for dllimport'd variable
1560         definitions.  Set implicit TREE_PUBLIC for dllimport'd variables
1561         declared within functions, Report error if dllimport or dllexport
1562         symbol is not global.
1563         (i386_pe_dllimport_p): Ignore dllimport attribute of functions
1564         if defined after declaration or if inlined. Don't allow definition
1565         of static data members of C++ classes. Don't dllimport virtual
1566         methods.
1567         (i386_pe_mark_dllexport): Warn about inconsistent dll attributes.
1568         (i386_pe_mark_dllimport): Remove unnecessary checks.
1569         (i386_pe_encode_section_info): Warn if the dllimport attribute
1570         and symbol prefix have been instantiated and then overridden.
1571
1572         * doc/extend.texi: Document dllimport and dllexport attributes.
1573
1574         * config/i386/winnt.c (i386_pe_output_labelref): Fix indents.
1575
1576 2003-07-03 Uwe Stieber <uwe@kaos-group.de>
1577
1578         * config/kaos.h (CPP_PREDEFINES): Delete.
1579         (TARGET_OS_CPP_BUILTINS): New.
1580
1581 2003-07-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1582
1583         * c-aux-info.c: Include toplev.h after c-tree.h.
1584         * c-common.c: Likewise.
1585         (GCC_DIAG_STYLE): Undef.
1586         * c-semantics.c (GCC_DIAG_STYLE): Define.
1587         * c-tree.h (GCC_DIAG_STYLE): Likewise.
1588         * diagnostic.h (inform): Move prototype to toplev.h.
1589         * jump.c: Include diagnostic.h before toplev.h.
1590         * toplev.h (GCC_DIAG_STYLE, ATTRIBUTE_GCC_DIAG): Define.
1591         (warning, error, fatal_error, pedwarn, sorry, inform,
1592         error_for_asm, warning_for_asm): Mark with ATTRIBUTE_GCC_CXXDIAG.
1593
1594 2003-07-03  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
1595
1596         * cfglayout.c (cfg_layout_duplicate_bb): Do not update frequencies
1597         at all if edge is not specified.
1598         (can_copy_bbs_p, copy_bbs): New.
1599         * cfglayout.h (can_copy_bbs_p, copy_bbs): Declare.
1600         * cfgloop.c (get_loop_body): Comment more precisely.
1601         * cfgloopmanip.c (copy_bbs, record_exit_edges): Removed.
1602         (scale_bbs_frequencies): Fix comment typo.
1603         (can_duplicate_loop_p): Use can_copy_bbs_p.
1604         (duplicate_loop_to_header_edge): Simplify by using copy_bbs.
1605
1606 2003-07-03  Devang Patel <dpatel@apple.com>
1607
1608         * c-opts.c (c_common_parse_file): Remove extra
1609         debug_hooks->start_source_file call.
1610
1611 2003-07-03  Roger Sayle  <roger@eyesopen.com>
1612
1613         * real.c (real_trunc, real_floor, real_ceil): New functions
1614         to implement trunc, floor and ceil respectively.
1615         * real.h (real_trunc, real_floor, real_ceil): Prototype here.
1616         * builtins.c (integer_valued_real_p): New function to test if
1617         a floating point expression has an integer valued result.
1618         (fold_trunc_transparent_mathfn): Optimize foo(foo(x)) as
1619         foo(x) where foo is an integer rounding function.  Similarly,
1620         optimize foo(bar(x)) as bar(x), and foo((double)(int)x) as
1621         (double)(int)x when both foo and bar are integer rounding
1622         functions and we don't need to honor errno.
1623         (fold_builtin_trunc, fold_builtin_floor, fold_builtin_ceil):
1624         New functions to fold trunc, floor and ceil.
1625         (fold_builtin): Use fold_builtin_trunc to fold BUILT_IN_TRUNC*,
1626         fold_builtin_floor to fold BUILT_IN_FLOOR* and fold_builtin_ceil
1627         to fold BUILT_IN_CEIL*.
1628         * fold-const.c (tree_expr_nonnegative_p): Handle FLOAT_EXPR and
1629         the remaining integer rounding functions.
1630
1631 2003-07-03  Eric Botcazou  <ebotcazou@libertysurf.fr>
1632
1633         * config/sparc/sparc.c (function_arg_partial_nregs): Use
1634         SPARC_INT_ARG_MAX to determine where to split unnamed
1635         complex FP arguments.
1636
1637 Thu Jul  3 20:36:47 CEST 2003  Jan Hubicka  <jh@suse.cz>
1638
1639         * basic-block.h (create_basic_block, merge_blocks_nomove): Kill.
1640         * cfgcleanup.c (merge_blocks): Rename to merge_blocks_move.
1641         (merge_blocks_move_predecessor_nojumps,
1642          merge_blocks_move_successor_nojumps): Use merge_blocks.
1643         (try_optimize_cfg): Use merge_blocks_move.
1644         * cfgrtl.c (create_basic_block): Rename to rtl_create_basic_block.
1645         (merge_blocks_nomove): Rename to rtl_merge_blocks.
1646         (cfg_layout_create_basic_block): New.
1647         (rtl_can_merge_blocks): New.
1648         (cfg_layout_split_block): Do not alloc aux by hand.
1649         * cfghooks.h (cfg_hooks): Add create_basic_block, can_merge_blocks_p,
1650         merge_blocks.
1651         (create_basic_block, can_merge_blocks_p, merge_blocks): New macros.
1652         * cfglayout.c (cfg_layout_duplicate_bb): Do not allocate aux by hand.
1653         * cfgloopmanip.c (loop_split_edge_with): Likewise.
1654         * ifcvt.c (merge_if_block): Use merge_blocks_nomove.
1655
1656         * basic-block.h (basic_block_def): Add field 'rbi'.
1657         * bb-reorder.c (find_traces, rotate_loop, mark_bb_visited,
1658         find_traces_1_round, copy_bb, connect_traces): Update use of rbi.
1659         * cfg.c (entry_exit_blocks): Add new field.
1660         * cfglayout.c: Include alloc-pool.h;
1661         (cfg_layout_pool): New.
1662         (record_effective_endpoints, fixup_reorder_chain,
1663         fixup_fallthru_exit_predecessor, cfg_layout_duplicate_bb): Update use
1664         of rbi.
1665         (cfg_layout_initialize_rbi): New function.
1666         (cfg_layout_initialize): Use it.
1667         (cfg_layout_finalize): Clear rbi fields.
1668         * cfglayout.h (RBI): Kill.
1669         (cfg_layout_initialize_rbi): Declare.
1670         * cfgloopmanip.c (copy_bbs): Use rbi.
1671         (record_exit_edges): Likewise.
1672         (duplicate_loop_to_header_edge): Likewise.
1673         * cfgrtl.c (cfg_layout_create_basic_block): Use
1674         cfg_layout_initialize_rbi.
1675         (cfg_layout_split_block): Use rbi.
1676         (cfg_layout_delete_block): Likewise.
1677         * loop-init.c (loop_optimizer_finalize): Likewise.
1678         * loop-unswitch.c (unswitch_loop): Likewise.
1679         * tracer.c (seen, tail_duplicate, layout_superblocks): Likewise.
1680
1681         * cfgrtl.c: Update comments.
1682         (try_redirect_by_replacing_jump): New argument.
1683         (redirect_branch_edge): Break out from ...
1684         (rtl_redirect_edge_and_branch): ... this one.
1685         (update_cfg_after_block_merging): Break out from ...
1686         (rtl_merge_blocks): ... this one.
1687         (cfg_layout_split_edge): New.
1688         (cfg_layout_merge_blocks): New.
1689         (cfg_layout_can_merge_blocks_p): New.
1690         (cfg_layout_redirect_edge_and_branch): Reorganize.
1691         (cfg_layout_rtl_cfg_hooks): Fill in.
1692         (cfg_layout_delete_block): Kill barriers.
1693         * cfganal.c (can_fallthru): Deal with exit blocks
1694         * cfglayout.c (cfg_layout_function_header): New function
1695         (record_effective_endpoints): Record function header.
1696         (fixup_reorder_chain): Fixup dead jumptables; place header
1697
1698         * basic-block.h (CLEANUP_CFGLAYOUT): New flag.
1699         * bb-reorder.c (cfg_layout_initialize): Update call.
1700         * cfgcleanup.c (try_optimize_cfg): Supress optimizations of fallthru
1701         edges in cfglayout mode.
1702         * cfglayout.c (cleanup_unconditional_jumps): Kill.
1703         (cfg_layout_initialize): Kill agrument loops; use cfgcleanup.
1704         * cfglayout.h (cfg_layout_initialize): Update prototype.
1705         * cfgloop.h (CP_INSIDE_CFGLAYOUT): Kill.
1706         * cfgloopmanip.c (loop_split_edge_with): Use split_edge.
1707         * flow.c (propagate_block): Do not crash when basic block ends
1708         by first insn in the chain.
1709         * loop-init.c (loop_optimizer_init):  First enter cfglayout mode; later
1710         do loop discovery.
1711         * tracer.c (tracer): Update call of cfg_layout_initialize.
1712
1713 2003-07-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1714
1715         * Makefile.in: Use dependency variables in lieu of explicit
1716         files throughout.
1717
1718 2003-07-03  Steven Bosscher  <steven@gcc.gnu.org>
1719
1720         * rtl.h (ECF_*, flags_from_decl_or_type): Move from here...
1721         * tree.h: ...to here.
1722
1723 2003-07-03  Kazu Hirata  <kazu@cs.umass.edu>
1724
1725         * config/s390/2064.md: Fix comment typos.
1726         * config/s390/2084.md: Likewise.
1727         * config/s390/s390.c: Likewise.
1728         * config/s390/s390.md: Likewise.
1729         * config/sh/sh.c: Likewise.
1730         * config/sh/sh.h: Likewise.
1731         * config/sh/sh.md: Likewise.
1732         * config/sparc/sparc.c: Likewise.
1733         * config/sparc/sparc.h: Likewise.
1734         * config/sparc/sparc.md: Likewise.
1735         * config/stormy16/stormy16.c: Likewise.
1736         * config/stormy16/stormy16.h: Likewise.
1737         * config/stormy16/stormy-abi: Fix a typo.
1738
1739 2003-07-03  Kelley Cook  <kelleycook@wideopenwest.org>
1740
1741         * Makefile.in (ifcvt.o): Depend on OPTABS_H.
1742
1743 2003-07-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1744
1745         * config/mips/mips.h (save_argv): Delete.
1746
1747 2003-07-03  Roger Sayle  <roger@eyesopen.com>
1748
1749         PR target/10700
1750         * fold-const.c (extract_muldiv_1): There's nothing that can be done
1751         if the expression is a SAVE_EXPR.
1752
1753 2003-07-03  Kazu Hirata  <kazu@cs.umass.edu>
1754
1755         * config/m32r/m32r.c: Fix comment typos.
1756         * config/m68hc11/m68hc11.c: Likewise.
1757         * config/m68hc11/m68hc11.h: Likewise.
1758         * config/m68k/m68k.c: Likewise.
1759         * config/mcore/mcore.c: Likewise.
1760         * config/mcore/mcore.h: Likewise.
1761         * config/mcore/mcore.md: Likewise.
1762         * config/mips/mips.c: Likewise.
1763         * config/mips/mips.h: Likewise.
1764         * config/mips/mips.md: Likewise.
1765         * config/mips/netbsd.h: Likewise.
1766         * config/mn10300/mn10300.c: Likewise.
1767
1768 2003-07-03  Andreas Schwab  <schwab@suse.de>
1769
1770         * dbxout.c (pending_bincls): Move decl down inside
1771         DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO section.
1772
1773 2003-07-02  Nathan Sidwell  <nathan@codesourcery.com>
1774
1775         * rtl.h (NOTE_DATA): Refer to whole union.
1776         * emit-rtl.c (emit_note): Use memset to clear NOTE_DATA.
1777
1778 2003-07-03  Eric Botcazou  <ebotcazou@libertysurf.fr>
1779
1780         PR optimization/11381
1781         * simplify-rtx.c (simplify_relational_operation): Check that
1782         two equal operands have no side-effects before simplifying
1783         the comparison.
1784
1785 2003-07-02  Jeff Law  <law@redhat.com>
1786
1787         * expr.c (do_store_flag): Remove special case folding for
1788         single bit tests.  Instead call back into the commonized folder
1789         routine.
1790         * fold-const.c (fold_single_bit_test): New function, mostly
1791         extracted from do_store_flag, with an additional case extracted
1792         from fold.
1793         (fold): Call fold_single_bit_test appropriately.
1794         * tree.h (fold_single_bit_test): Prototype.
1795
1796 2003-07-02  Zack Weinberg  <zack@codesourcery.com>
1797
1798         * system.h: Include filenames.h.
1799         (IS_DIR_SEPARATOR, IS_ABSOLUTE_PATHNAME): Don't define.
1800         (DIR_SEPARATOR, DIR_SEPARATOR_2): If not already defined,
1801         define based on HAVE_DOS_BASED_FILE_SYSTEM.
1802         * config/i386/xm-cygwin.h, config/i386/xm-djgpp.h
1803         * config/i386/xm-mingw32.h: Don't define
1804         HAVE_DOS_BASED_FILE_SYSTEM,
1805         DIR_SEPARATOR, or DIR_SEPARATOR_2.
1806         * doc/hostconfig.texi: Update to match.
1807
1808         * cppfiles.c, gcc.c, gensupport.c, protoize.c,
1809         config/i386/cygwin.h:
1810         Use IS_ABSOLUTE_PATH throughout.
1811         * gcc.c (DIR_UP): Delete, unused.
1812         * protoize.c (IS_SAME_PATH): Define in terms of
1813         FILENAME_CMP.
1814         (is_abspath): Delete.
1815
1816 2003-07-02  Kazu Hirata  <kazu@cs.umass.edu>
1817
1818         * config/i386/emmintrin.h: Fix comment typos.
1819         * config/i386/i386.c: Likewise.
1820         * config/i386/i386.h: Likewise.
1821         * config/i386/sco5.h: Likewise.
1822         * config/ia64/ia64.c: Likewise.
1823         * config/ia64/itanium2.md: Likewise.
1824
1825 2003-07-02  H.J. Lu  <hongjiu.lu@intel.com>
1826
1827         * dbxout.c (pending_bincls): Replace DBX_USE_BINCLS with
1828         DBX_USE_BINCL.
1829         (emit_bincl_stab): Same.
1830         (emit_pending_bincls): Same.
1831
1832 2003-07-02  Kazu Hirata  <kazu@cs.umass.edu>
1833
1834         * config/h8300/h8300.c (compute_mov_length): Fix the length of
1835         loading CONST0_RTX (SFmode).
1836         * config/h8300/h8300.h (CONST_DOUBLE_OK_FOR_LETTER_P): Change
1837         'G' to CONST0_RTX (SFmode).
1838         * config/h8300/h8300.md (movsf_h8300): Change the first
1839         constraint to 'G'.
1840         (movsf_h8300h): Likewise.
1841
1842 2003-07-02  Neil Booth  <neil@daikokuya.co.uk>
1843
1844         * c-common.h (c_common_init_options): New prototype.
1845         * c-opts.c (deferred_size): Remove.
1846         (defer_opt): Array is now pre-allocated.
1847         (c_common_init_options): Pre-allocate deferred_opts.  Make
1848         lang_flags unsigned.
1849         (push_command_line_options): Free deferred_opts.
1850         * hooks.c (hook_uint_uint_constcharptrptr_0): New.
1851         * hooks.h (hook_uint_uint_constcharptrptr_0): New.
1852         * langhooks-def.h (LANG_HOOKS_INIT_OPTIONS): Update.
1853         * langhooks.h (struct lang_hooks): New prototype for init_options.
1854         * main.c (main): Cast argv.
1855         * opts.c (handle_option, handle_options): Update prototypes.
1856         (decode_options): save_argc, save_argv are not global.  Constify.
1857         * opts.h (decode_options): New prototype.
1858         * toplev.c (general_init): New protoype.
1859         (save_argv): Make static.
1860         (save_argc): Remove.
1861         (print_switch_values, general_init): Constify.
1862         (toplev_main): Save argv.
1863         * toplev.h (toplev_main): Update prototype.
1864         (save_argc, save_argv): Remove.
1865
1866 2003-07-02  David Edelsohn  <edelsohn@gnu.org>
1867
1868         * dbxout.c (pending_bincls): Guard with DBX_USE_BINCLS.
1869         (emit_bincl_stab): Same.
1870         (emit_pending_bincls): Same.
1871
1872 2003-07-02  Nathan Sidwell  <nathan@codesourcery.com>
1873
1874         PR c++/11072
1875         * ginclude/stddef.h (offsetof): Remove cast to 'char &'. Explain why.
1876
1877 2003-07-02  Andreas Schwab  <schwab@suse.de>
1878
1879         * dbxout.c (pending_bincls): Only define if DBX_DEBUGGING_INFO.
1880
1881 2003-07-02  Eric Botcazou  <ebotcazou@libertysurf.fr>
1882
1883         PR optimization/11210
1884         * expr.c (handled_component_p) [NOP_EXPR]: Add ??? note
1885         about the behaviour with regard to bitfields.
1886         * fold-const (decode_field_reference): Record outermost type in
1887         case the expression is a NOP. Strip all NOPs. Set the signedness
1888         to that of the outermost type (if any) when the bitsize is equal
1889         to the size of the type.
1890
1891 2003-07-02  Richard Sandiford  <rsandifo@redhat.com>
1892
1893         * config/mips/mips.md (addsi3): Remove workaround for adds of -32768.
1894         (addsi3_internal, adddi3, adddi3_internal_2): Likewise.
1895         (adddi3_internal_3, addsi3_internal_2): Likewise.
1896
1897 2003-07-02  Richard Sandiford  <rsandifo@redhat.com>
1898
1899         * config/mips/mips.c (machine_function): Add new fields:
1900         ignore_hazard_length_p and all_noreorder_p.
1901         (mips_flag_delayed_branch): New variable.
1902         (override_options): Treat '/' as an operand punctuation character.
1903         Set up mips_flag_delayed_branch.
1904         (print_operand): Handle '/'.
1905         (mips_output_function_prologue): Put the whole function in
1906         .set noreorder and .set nomacro if all_noreorder_p is true.
1907         (mips_output_function_epilogue): End the noreorder/nomacro sequence.
1908         (mips16_optimize_gp): Remove "first insn" parameter.
1909         (mips16_lay_out_constants): New function, split out from mips_reorg.
1910         (mips_avoid_hazard, mips_avoid_hazards): New functions.
1911         (mips_reorg): For mips16 code, call mips16_lay_out_constant
1912         and (optionally) mips16_optimize.  If TARGET_EXPLICIT_RELOCS,
1913         do delayed-branch scheduling followed by hazard detection.
1914         (mips_adjust_insn_length): Only account for hazards if
1915         !ignore_hazard_length_p.
1916         (mips_output_load_label): Add a nop to the o32 sequence if
1917         the target suffers from load delays.
1918         (mips_output_conditional_branch): Add %/ to the end of branches.
1919         (mips_output_division): Fill the branch delay slot with %#.
1920         * config/mips/mips.md: Remove redundant '%*' from mips16 branch
1921         instructions.  End all other %* branches with %/.
1922         (ffssi2, ffsdi2): Fix lengths.
1923         (truncdisi2, truncdihi2, truncdiqi2): Add store attributes.
1924         (fix_truncdfsi2_macro): Turn off .set nomacro if appropriate.
1925         (fix_truncsfsi2_macro): Likewise.
1926         (mov_lwl): Set hazard to "none".
1927         (ashldi3_internal): Fill the branch delay slot with %#.
1928         (ashrdi3_internal, lshrdi3_internal): Likewise.
1929         (exception_receiver): Explicitly set $28.
1930         (hazard_nop): New pattern.
1931
1932 Wed Jul  2 08:12:36 CEST 2003  Jan Hubicka  <jh@suse.cz>
1933
1934         * cgraphunit.c (cgraph_finalize_unit): Set current_function_decl
1935         before calling tree_inlinable_function_p.
1936
1937 2003-07-02  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1938
1939         * fixinc/inclhack.def (irix_stdio_va_list): Apply to IRIX 6.5
1940         <internal/stdio_core.h> too.
1941         (stdio_va_list): Apply to IRIX 6.5 <internal/stdio_core.h> and
1942         <internal/wchar_core.h> too.
1943         Substitute va_list uses in inline definition.
1944         * fixinc/fixincl.x: Regenerate.
1945
1946 2003-07-02  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1947
1948         * config/mips/iris5.h (SET_FILE_NUMBER): Moved here from iris3.h.
1949         Undef before redefinition.
1950         (LABEL_AFTER_LOC): Likewise.
1951         (DEFAULT_SIGNED_CHAR): Likewise.
1952         (ASM_OUTPUT_ASCII): Moved here from iris4.h.
1953         Fix IRIX spelling.
1954
1955         * config/mips/iris3.h: Remove, unused.
1956         * config/mips/iris4.h: Likewise.
1957
1958         * config/mips/mips.h (STACK_ARGS_ADJUST): Remove, unused.
1959
1960         * config/mips/iris5.h (TARGET_DEFAULT): Move ...
1961         * config.gcc (mips-sgi-irix6*o32, mips-sgi-irix5*): ... here to
1962         target_cpu_default.
1963
1964         * config/mips/iris5.h: Move explicit includes ...
1965         * config.gcc (mips-sgi-irix6*o32, mips-sgi-irix5*): ... here.
1966
1967         * config/mips/iris6.h (MIPS_ISA_DEFAULT, MIPS_ABI_DEFAULT): Move ...
1968         * config.gcc (mips-sgi-irix6*, mips-sgi-irix5cross64): ... here to
1969         tm_defines.
1970
1971         * config/mips/iris6.h (TARGET_DEFAULT): Move ...
1972         * config.gcc (mips-sgi-irix6*, mips-sgi-irix5cross64): ... here to
1973         target_cpu_default.
1974
1975         * config/mips/iris6.h: Fix IRIX spelling.
1976         (MULTILIB_DEFAULTS): Undef before redefinition.
1977
1978         * config/mips/iris6.h: Move explicit includes ...
1979         * config.gcc (mips-sgi-irix6*, mips-sgi-irix5cross64): ... here.
1980
1981 Wed Jul  2 02:16:48 CEST 2003  Jan Hubicka  <jh@suse.cz>
1982
1983         * cgraph.c (cgraph_mark_needed_node, cgraph_varpool_mark_needed_node,
1984         cgraph_varpool_finalize_decl, cgraph_varpool_assemble_pending_decls):
1985         Use next_needed field instead of aux to maintain the queue.
1986         * cgraph.h (cgraph_node): Add next_needed.
1987         (cgraph_varpool_node): Add next_needed; remove aux.
1988         * cgraphunit.c (cgraph_finalize_compilation_unit): Use next_needed.
1989
1990 Wed Jul  2 02:12:51 CEST 2003  Jan Hubicka  <jh@suse.cz>
1991
1992         * cgraphunit.c (cgraph_finalize_function): Set finalized.
1993         (cgraph_finalize_function): Do not examine inlinablility.
1994         (cgraph_finalize_compilation_unit): Do it here.
1995         * cgraph.h (cgraph_local_info): Add finalized field.
1996
1997 2003-07-02  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1998
1999         * ggc-common.c (gt_pch_save): Cast MAP_FAILED to void *.
2000         (gt_pch_restore): Likewise.
2001
2002 2003-07-01  Kazu Hirata  <kazu@cs.umass.edu>
2003
2004         * config/alpha/alpha.c: Fix comment typos.
2005         * config/alpha/elf.h: Likewise.
2006         * config/arm/arm.c: Likewise.
2007         * config/arm/arm.h: Likewise.
2008         * config/arm/arm.md: Likewise.
2009         * config/arm/t-arm-coff: Likewise.
2010         * config/arm/t-strongarm-pe: Likewise.
2011         * config/arm/xscale-elf.h: Likewise.
2012         * config/avr/avr.h: Likewise.
2013
2014 2003-07-01  Jeff Law  <law@redhat.com>
2015
2016         * stmt.c (any_pending_cleanups): Remove another redundant test.
2017
2018 2003-07-01  David Edelsohn  <edelsohn@gnu.org>
2019             J"orn Rennecke <joern.rennecke@superh.com>
2020
2021         * config/rs6000/rs6000.md (ctr{s,d}i_internal?): Add earlyclobber
2022         for MEM case.
2023
2024 2003-07-01  Devang Patel  <dpatel@apple.com>
2025
2026         * dbxout.c (DBXOUT_DECR_NESTING): Emit pending bincls, if required.
2027         (binclstatus): New.
2028         (struct dbx_file): New members - bincl_status, pending_bincl_name and
2029         prev.
2030         (pending_bincls): New.
2031         (dbxout_init): Initialize new dbx_file members.
2032         (dbxout_start_source_file): Same.
2033         (emit_bincl_stab): New function.
2034         (emit_pending_bincls): Same.
2035         (emit_pending_bincls_if_required): Same.
2036         (dbxout_end_source_file): Emit EINCL stab only if BINCL is  already
2037         processed.
2038         (dbxout_begin_block): Emit pending BINCL stabs.
2039         (dbxout_end_block): Same.
2040         (dbxout_function_decl): Same.
2041         (dbxout_continue): Same.
2042         (dbxout_type): Same.
2043         (dbxout_class_name_qualifiers): Same.
2044         (dbxout_symbol): Same.
2045         (dbxout_symbol_location): Same.
2046         (dbxout_parms): Same.
2047
2048 2003-07-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2049
2050         * c-semantics.c (genrtl_case_label): Fix format specifier bug.
2051         * cfgrtl.c (rtl_verify_flow_info_1): Likewise.
2052
2053 2003-07-01  Andreas Jaeger  <aj@suse.de>
2054
2055         * fold-const.c: Convert prototypes to ISO C90.
2056         * function.c: Likewise.
2057         * function.h: Likewise.
2058
2059 2003-07-01  Kazu Hirata  <kazu@cs.umass.edu>
2060
2061         * doc/contrib.texi: Fix typos.
2062         * doc/invoke.texi: Likewise.
2063         * doc/passes.texi: Likewise.
2064         * doc/sourcebuild.texi: Likewise.
2065         * doc/tm.texi: Likewise.
2066
2067 2003-07-01  Kazu Hirata  <kazu@cs.umass.edu>
2068
2069         * basic-block.h: Fix comment typos.
2070         * bb-reorder.c: Likewise.
2071         * c-format.c: Likewise.
2072         * cfgcleanup.c: Likewise.
2073         * cfghooks.h: Likewise.
2074         * cfgloop.c: Likewise.
2075         * cfgloopmanip.c: Likewise.
2076         * cfgrtl.c: Likewise.
2077         * cgraph.h: Likewise.
2078         * cgraphunit.c: Likewise.
2079         * combine.c: Likewise.
2080         * convert.c: Likewise.
2081         * dbxout.c: Likewise.
2082         * df.c: Likewise.
2083         * df.h: Likewise.
2084         * diagnostic.c: Likewise.
2085         * dwarf2out.c: Likewise.
2086         * et-forest.h: Likewise.
2087         * flow.c: Likewise.
2088         * fold-const.c: Likewise.
2089         * function.h: Likewise.
2090         * gcov-io.h: Likewise.
2091         * gcov.c: Likewise.
2092         * gcse.c: Likewise.
2093         * genautomata.c: Likewise.
2094         * ggc-common.c: Likewise.
2095         * ggc-page.c: Likewise.
2096         * loop-unroll.c: Likewise.
2097         * loop-unswitch.c: Likewise.
2098         * loop.c: Likewise.
2099         * mips-tfile.c: Likewise.
2100         * optabs.c: Likewise.
2101         * ra-build.c: Likewise.
2102         * ra-colorize.c: Likewise.
2103         * ra-rewrite.c: Likewise.
2104         * ra.h: Likewise.
2105         * regmove.c: Likewise.
2106         * reload.c: Likewise.
2107         * rtlanal.c: Likewise.
2108         * sched-ebb.c: Likewise.
2109         * sched-int.h: Likewise.
2110         * sched-vis.c: Likewise.
2111         * sreal.c: Likewise.
2112         * ssa-ccp.c: Likewise.
2113         * ssa.c: Likewise.
2114         * toplev.c: Likewise.
2115         * tree-inline.c: Likewise.
2116         * value-prof.c: Likewise.
2117         * value-prof.h: Likewise.
2118
2119 2003-07-01  Nathan Sidwell  <nathan@codesourcery.com>
2120
2121         * rtl.h (emit_line_note_after): Remove.
2122         (emit_note_copy_after, emit_note_copy): New.
2123         * emit-rtl.c (reorder_insns_with_line_notes): Replace
2124         emit_line_note_after with emit_note_copy_after.
2125         (emit_insn_after_with_line_notes): Likewise.
2126         (emit_line_note_after): Kill.
2127         (emit_note_copy_after): New.
2128         (emit_note_copy): New.
2129         * function.c (emit_return_into_block): Use emit_note_copy_after.
2130         (thread_prologue_and_epilogue_insns): Likewise.
2131         * integrate.c (expand_inline_function): Use emit_note_copy.
2132         (copy_insn_list): Likewise.
2133         * unroll.c (copy_loop_body): Likewise.
2134         * cfglayout.c (duplicate_insn_chain): Likewise.
2135
2136 2003-07-01  Nathan Sidwell  <nathan@codesourcery.com>
2137
2138         * c-tree.h (define_label): Replace filename and lineno arguments
2139         with a location_t.
2140         * c-decl.c (poplevel): Adjust define_label call.
2141         (pop_label_level): Likewise.
2142         (define_label): Replace filename and lineno arguments with a
2143         location_t.
2144         (store_parm_decls): Use DECL_SOURCE_LOCATION.
2145         * c-parse.in (label): Adjust define_label call.
2146
2147 2003-07-01  Neil Booth  <neil@daikokuya.co.uk>
2148
2149         * config/sol2.h, config/alpha/alpha.h, config/alpha/linux.h,
2150         config/i386/i386-interix.h, config/ia64/hpux.h, config/mips/iris6.h,
2151         config/mips/linux.h, config/mips/mips.h, config/pa/pa-hpux.h,
2152         config/pa/pa-hpux10.h, config/pa/pa-hpux11.h, config/pa/pa-pro-end.h,
2153         config/pa/pa.h, config/pa/rtems.h: Use c_dialect_ macros.
2154
2155 2003-07-01  Andreas Jaeger  <aj@suse.de>
2156
2157         * final.c: Convert prototypes to ISO C90.
2158         * flow.c: Likewise.
2159         * flags.h: Likewise.
2160         * gcov-io.c: Likewise.
2161         * gcov-io.h: Likewise.
2162
2163 2003-06-30  Bruno Haible  <bruno@clisp.org>
2164
2165         PR middle-end/6578
2166         * libgcc2.c (__subvsi3): Remove simplification that would not work
2167         when subtracting -0x80000000.
2168         (__subvdi3): Remove simplification that would return a wrong result.
2169         (__mulvsi3): Fix overflow check.
2170         (__absvdi2): Fix simplification that would return a wrong result.
2171         (__mulvdi3): Fix overflow check.
2172
2173 2003-06-30  Jeff Law  <law@redhat.com>
2174
2175         * stmt.c (any_pending_cleanups): Lose argument THIS_CONTOUR, it
2176         was always passed in the value '1'.  Simplify body appropriately.
2177         * tree.h (any_pending_cleanups): Corresponding changes.
2178         * calls.c: (expand_call): Corresponding changes.
2179
2180 2003-06-30  Kazu Hirata  <kazu@cs.umass.edu>
2181
2182         * combine.c (distribute_notes): Don't bother REG_WAS_0.
2183         * cse.c (cse_insn): Likewise.
2184         * final.c (final_scan_insn): Likewise.
2185         * jump.c (duplicate_loop_exit_test): Likewise.
2186         * rtl.c (reg_note_name): Remove REG_WAS_0.
2187         * rtl.h (REG_WAS_0): Remove.
2188         * unroll.c (final_reg_note_copy): Don't bother REG_WAS_0.
2189         * config/avr/avr.c (output_movqi): Don't use reg_was_0.
2190         (output_movhi): Likewise.
2191         (output_movsisf): Likewise.
2192         (reg_was_0): Remove.
2193         * config/m68hc11/m68hc11.c (m68hc11_gen_movhi): Don't use
2194         REG_WAS_0.
2195         (m68hc11_gen_movqi): Likewise.
2196         * config/vax/vax-protos.h: Remove the prototype for
2197         reg_was_0_p.
2198         * config/vax/vax.c (follows_p): Remove.
2199         (reg_was_0_p): Likewise.
2200         * config/vax/vax.md (movsi): Don't use reg_was_0_p.
2201         (movhi): Likewise.
2202         (movqi): Likewise.
2203         * doc/rtl.texi (REG_WAS_0): Remove.
2204
2205 2003-06-30  Mark Mitchell  <mark@codesourcery.com>
2206
2207         * config/rs6000/spe.h (__ev_set_spefscr_frmc): Set the flag.
2208
2209 2003-06-30  Bob Wilson  <bob.wilson@acm.org>
2210
2211         * config/xtensa/lib1funcs.asm: Use "xtensa-config.h" from
2212         top-level include directory.
2213         * config/xtensa/lib2funcs.S: Likewise.
2214         * config/xtensa/xtensa.h: Likewise.
2215         * config/xtensa/xtensa-config.h: Remove.
2216         * doc/install.texi: Update location of "xtensa-config.h" header.
2217
2218 2003-06-30  Ulrich Weigand  <uweigand@de.ibm.com>
2219
2220         * config/s390/s390.c (s390_extra_constraint): New function.
2221         * config/s390/s390-protos.h (s390_extra_constraint): Declare it.
2222         * config/s390/s390.h (EXTRA_CONSTRAINT): Use it.
2223         * config/s390/s390.c (q_constraint): Remove.
2224         * config/s390/s390-protos.h (q_constraint): Likewise.
2225         * config/s390/s390.h (EXTRA_MEMORY_CONSTRAINT): Add 'R', 'S', 'T'.
2226         (EXTRA_ADDRESS_CONSTRAINT): Define.
2227
2228         * config/s390/s390.c (larl_operand): Refuse out-of-range operands.
2229         (DISP_IN_RANGE, s390_short_displacement): New.
2230         (legitimate_reload_operand_p): Support long displacements.
2231         (s390_decompose_address): Likewise.
2232         (legitimize_pic_address): Likewise.
2233         (legitimize_address): Likewise.
2234         (s390_fixup_clobbered_return_reg): Likewise.
2235         (s390_emit_prologue, s390_emit_epilogue): Likewise.
2236         (s390_output_mi_thunk): Likewise.
2237
2238         * config/s390/s390.md (attr "op_type"): Add "RXY", "RSY", "SIY".
2239         (attr "atype", attr "length"): Add defaults for new op_types.
2240         (all insns): Change op_type attribute where appropriate.
2241
2242         ("*movdi_lay", "*movsi_lay", "*extendqidi2", "*extendqisi2"): New insns.
2243         ("*tmqi_ext", "*tmdi_mem", "*tmsi_mem", "*tmhi_mem", *tmqi_mem",
2244         "*tstsi", "*tstsi_cconly", "*tsthiCCT", "*tsthiCCT_cconly",
2245         "*tsthi", "*tsthi_cconly", "*tstqiCCT", "*tstqiCCT_cconly",
2246         "*tstqi", "*tstqi_cconly", "*cmpsi_ccs_sign", "*cmpsi_ccs",
2247         "*cmpsi_ccu", "*cmphi_ccu", "*cmpqi_ccu", "*cli",
2248         "movti", "*movdi_64", "*movdi_31", "*movsi", "movhi", "movqi_64",
2249         "movqi", "*movstrictqi", "*movstricthi", "movstrictsi",
2250         "*movdf_64", "*movdf_31", "*movsf",
2251         "*load_multiple_si", "*store_multiple_di",
2252         "*sethighqisi", "*sethighhisi", "*sethighqidi_31", "*extendhisi2",
2253         "*la_64", "*la_31", "*la_31_and", "force_la_31",
2254         "*addsi3_carry1_cc", *addsi3_carry1_cconly",
2255         "*addsi3_carry2_cc", *addsi3_carry2_cconly",
2256         "*addsi3_cc", "*addsi3_cconly", "*addsi3_cconly2",
2257         "*addsi3_sign", "*addsi3_sub", "addsi3",
2258         "*subsi3_borrow_cc", "*subsi3_borrow_cconly", "*subsi3_cc",
2259         "*subsi3_cconly", "*subsi3_sign", "*subsi3_sub", "subsi3",
2260         "mulsi3"
2261         "*andsi3_cc", "*andsi3_cconly", "andsi3",
2262         "*andqi3_ss", "*andqi3_ss_inv",
2263         "*iorsi3_cc", "*iorsi3_cconly", "iorsi3",
2264         "*iorqi3_ss", "*iorqi3_ss_inv",
2265         "*xorsi3_cc", "*xorsi3_cconly", "xorsi3",
2266         "*xorqi3_ss", "*xorqi3_ss_inv",
2267         "*tls_load_31"): Add alternatives for long-displacement instructions.
2268
2269         ("*cmpdf_ccs", "*cmpdf_ccs_ibm", "*cmpsf_ccs", "*cmpsf_ccs_ibm",
2270         "*load_multiple_di", "*store_multiple_di",
2271         "*sethighqidi_64", "*zero_extendhisi2_31",
2272         "truncdfsf2_ibm", "extendsfdf2_ieee", "extendsfdf2_ibm",
2273         "adddf3", "*adddf3", "*adddf3_ibm",
2274         "addsf3", "*addsf3", "*addsf3_ibm",
2275         "subdf3", "*subdf3", "*subdf3_ibm",
2276         "subsf3", "*subsf3", "*subsf3_ibm",
2277         "mulsi_6432", "divmoddisi3",
2278         "muldf3", "*muldf3", "*muldf3_ibm",
2279         "mulsf3", "*mulsf3", "*mulsf3_ibm",
2280         "divdf3", "*divdf3", "*divdf3_ibm",
2281         "divsf3", "div*sf3", "*divsf3_ibm",
2282         "sqrtdf2", "sqrtsf2",
2283         "*cjump_long", "*icjump_long", "indirect_jump", "casesi_jump",
2284         "*doloop_si_long", "*doloop_di_long", "bas_64", "bas_31",
2285         "bas_r_64", "bas_r_31", "bas_tls_31", "bas_tls_64"): Adapt memory
2286         and address constraints for instructions that do not accept long
2287         displacements.
2288
2289 2003-06-30  Hartmut Penner  <hpenner@de.ibm.com>
2290             Ulrich Weigand  <uweigand@de.ibm.com>
2291
2292         * config/s390/2084.md: New file.
2293         * config/s390/s390.md: Include it.
2294         * config/s390/s390.c (s390_adjust_priority): New function.
2295         (TARGET_SCHED_ADJUST_PRIORITY): Define.
2296         (s390_first_cycle_multipass_dfa_lookahead): New function.
2297         (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD): Define.
2298         (s390_sched_reorder2): New function.
2299         (TARGET_SCHED_REORDER2): Define.
2300         (s390_adjust_cost): Support PROCESSOR_2084_Z990 cpu type.
2301         (s390_issue_rate): Likewise.
2302
2303 Mon Jun 30 23:47:33 CEST 2003  Jan Hubicka  <jh@suse.cz>
2304
2305         * Makefile.in (GTFILES): Add cgraph.h.
2306         * cgraph.c (known_decls): Remove.
2307         (cgraph_hash, cgraph_nodes, cgraph_nodes_queue,
2308         cgraph_varpool_hash, cgraph_varpool_nodes_queue): GTYize.
2309         (cgraph_node): Do not allocate known_decls; use polutate hashtable.
2310         (cgraph_varpool_node): Likewise; add next pointer.
2311         (cgraph_varpool_nodes): New static variable.
2312         * cgraph.h (cgraph_local_info, cgraph_global_info, cgraph_rtl_info,
2313         cgraph_node, cgraph_edge, cgraph_varpool_node, cgraph_nodes, cgraph_n_nodes,
2314         cgraph_varpool_n_nodes, cgraph_varpool_nodes_queue): GTYize.
2315         * gengtype.c (open_base_files): Include cgraph.h
2316
2317 2003-06-30  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2318
2319         * Changelog: Remove ">>>>>>>" from previous change.
2320
2321 2003-06-30  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2322
2323         * config/cris/cris.c: Fix spelling for "testcase".
2324         * config/cris/cris.h: Likewise.
2325         * config/cris/cris.md: Likewise.
2326         * config/mmix/crti.asm: Likewise.
2327         * config/mmix/mmix.h: Likewise.
2328         * config/mmix/mmix.md: Likewise.
2329
2330 2003-06-30  Kazu Hirata  <kazu@cs.umass.edu>
2331
2332         * config/h8300/h8300.h (LEGITIMATE_CONSTANT_P): Make it always
2333         1.
2334
2335 2003-06-30  Ulrich Weigand  <uweigand@de.ibm.com>
2336
2337         * config.gcc [s390*-*-*]: Support --with-arch, --with-tune, and
2338         --with-mode configure options.
2339         * config/s390/s390.h (OPTION_DEFAULT_SPECS): Define.
2340         (DRIVER_SELF_SPECS): Define.
2341         * config/s390/linux.h (ASM_SPEC): Pass architecture mode and cpu
2342         architecture to assembler.
2343         (LINK_SPEC): Merge 31-bit and 64-bit variants.
2344         (LINK_ARCH31_SPEC, LINK_ARCH64_SPEC, EXTRA_SPECS): Remove.
2345         * config/s390/s390.c (override_options): New default rules for
2346         architecture mode and cpu architecture selection.
2347         * doc/invoke.texi (-mesa, -mzarch, -march, -mtune): Document
2348         new default rules.
2349
2350         * config/s390/s390.h (enum processor_type): Add PROCESSOR_2084_Z990.
2351         * config/s390/s390.md (attr "cpu"): Add "z990" processor type.
2352         * config/s390/s390.c (override_options): Add "z990" to
2353         processor_alias_table.
2354         * doc/invoke.texi (-march): Document "z990" processor type.
2355
2356         * config/s390/s390.c (s390_tune_flags, s390_arch_flags): New variables.
2357         * config/s390/s390.h (s390_tune_flags, s390_arch_flags): Declare.
2358         (enum processor_flags, TARGET_CPU_IEEE_FLOAT, TARGET_CPU_ZARCH,
2359         TARGET_CPU_LONG_DISPLACEMENT, TARGET_LONG_DISPLACEMENT): New.
2360         * config/s390/s390.c (override_options): Replace enum pta_flags by
2361         enum processor_flags.  Fill in s390_tune_flags and s390_arch_flags.
2362
2363         * config/s390/s390.c (s390_cpu): Rename to ...
2364         (s390_tune): ... this.
2365         * config/s390/s390.h (s390_cpu, s390_tune): Likewise.
2366         * config/s390/s390.c (s390_issue_rate, override_options): Likewise.
2367         * config/s390/s390.md (attr "cpu"): Likewise.
2368
2369 2003-06-30  Neil Booth  <neil@daikokuya.co.uk>
2370
2371         * c-common.c (enum c_language_kind, flag_objc): Remove.
2372         (fix_string_type, check_case_value, c_common_nodes_and_builtins,
2373         c_add_case_label, finish_label_addr_expr, boolean_increment):
2374         Use c_dialect_ macros.
2375         * c-common.h (enum c_language_kind): Extend.
2376         (c_dialect_cxx, c_dialect_objc): New.
2377         (flag_objc): Remove.
2378         (c_common_init_options): Update prototype.
2379         * c-cppbuiltin.c (define__GNUC__, c_cpp_builtins): Use c_dialect_
2380         macros.
2381         * c-decl.c (finsih_decl, grokfield, finish_struct): Use c_dialect_
2382         macros.
2383         * c-format.c (C_STD_VER, C_STD_NAME): Similarly.
2384         * c-lang.c (c_init_options): Remove.
2385         (c_language): Define.
2386         (LANG_HOOKS_INIT_OPTIONS): Use common hook.
2387         * c-lex.c (lex_charconst): Use c_dialect_ macros.
2388         * c-opts.c (lang_flags): Make function-local.
2389         (c_common_init_options): Use c_dialect_ macros.  Handle
2390         C++ diagnostic requirements.
2391         (c_common_handle_option, c_common_post_options): Use flag_cxx.
2392         * c-parse.in (init_reswords): Use c_dialect_objc ().
2393         * c-pch.c (get_ident): Use c_language.
2394         * c-pretty-print.c (pp_c_bool_literal): Use c_dialect_ macros.
2395         * c-typeck.c (comptypes, build_c_cast): Similarly.
2396         * objc/objc-lang.c (c_language): Define.
2397         (LANG_HOOKS_INIT_OPTIONS): Use common hook.
2398         (objc_init_options): Remove.
2399
2400 2003-06-30  Kazu Hirata  <kazu@cs.umass.edu>
2401
2402         * config/alpha/alpha.h (FUNCTION_ARG_PADDING): Remove.
2403         * config/alpha/unicosmk.h: Don't #undef FUNCTION_ARG_PADDING.
2404
2405 2003-06-30  Wolfgang Bangerth  <bangerth@dealii.org>
2406
2407         * doc/sourcebuild.texi: Don't reference gnats.html any more.
2408
2409 2003-06-30  Kazu Hirata  <kazu@cs.umass.edu>
2410
2411         * config/h8300/h8300.c (compute_mov_length): Fix length of
2412         mov:SF on H8/300.
2413
2414 2003-06-30  Nick Clifton  <nickc@redhat.com>
2415
2416         * config/arm/arm.h (BIGGEST_FIELD_ALIGNMENT): Make defintion
2417         constant.
2418
2419 Mon Jun 30 15:36:29 CEST 2003  Jan Hubicka  <jh@suse.cz>
2420
2421         (fyl2x_sfxf3, fyl2x_dfxf3, fscale_sfxf3, fscale_dfxf3): Fix condition.
2422
2423 2003-06-30 Hartmut Penner  <hpenner@de.ibm.com>
2424
2425         * config/rs6000/rs6000.c (rs6000_split_altivec_in_gprs): New function.
2426         (altivec_in_gprs_p): New function.
2427
2428         * config/rs6000/rs6000-protos (rs6000_split_altivec_in_gprs): New
2429         prototype.
2430         (altivec_in_gprs_p): New prototype.
2431
2432         * config/rs6000/altivec.md (*movv4si_internal): Change
2433         multi-assembler alternative to '#'. Add postreload splitter to
2434         handle this cases.
2435         (*movv4hi_internal): Likewise.
2436         (*movv4qi_internal): Likewise.
2437         (*movv4sf_internal): Likewise.
2438
2439 2003-06-30  Jason Merrill  <jason@redhat.com>
2440
2441         * defaults.h (PUSH_ARGS_REVERSED): Define default here.
2442         * calls.c: Not here.
2443
2444 2003-06-30  Ben Elliston  <bje@wasabisystems.com>
2445
2446         * config/arm/arm.c (arm_rtx_costs): Remove #if 0 block.
2447         (bad_signed_byte_operand): Likewise.
2448         (arm_output_epilogue): Likewise.
2449         (arm_final_prescan_insn): Likewise.
2450
2451 2003-06-30  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
2452
2453         * cfgrtl.c (mark_killed_regs): Cast HARD_REGNO_NREGS to int.
2454
2455 2003-06-30  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
2456
2457         * c-pch.c (c_common_write_pch): Flush asm_out_file to allow for
2458         subsequent writes.
2459
2460 Mon Jun 30 10:03:02 CEST 2003  Jan Hubicka  <jh@suse.cz>
2461
2462         * cfgrtl.c (verify_flow_info): Accept degenerated condjumps
2463         in cfglayout mode.
2464
2465 Mon Jun 30 09:52:39 CEST 2003  Jan Hubicka  <jh@suse.cz>
2466
2467         * i386.c (standard_80387_constant_p): Accept TFmode constants too.
2468         (init_ext_80387_constants): Likewise.
2469         (standard_80387_constant_rtx): Likewise.
2470         * i386.md (atanxf): Disable for TARGET_128BIT_LONG_LONG
2471         (atantf): Disable for !TARGET_128BIT_LONG_LONG
2472         (fyl2x_sfxf3, fyl2x_dfxf3): Accept TFmode operands.
2473         (fyl2x_xfxf3, fyl2x_tfxf3): Enable/disable as needed.
2474         (fscale_sfxf3, fscale_dfxf3): Accept TFmode operands.
2475         (fscale_xfxf3, fscale_tfxf3): Enable/disable as needed.
2476         (frndinttf2): New.
2477         (f2xm1tf2): New.
2478         (exp?f2): Use expsf2_tf when needed.
2479         (exp?f2_tf): New.
2480         (exptf): New.
2481
2482 2003-06-29 Uwe Stieber <uwe@kaos-group.de>
2483
2484         * config.gcc (sh*-*-kaos*): Put tm_file setting in separate case
2485         statement from tmake_file set.
2486
2487 2003-06-29  James E Wilson  <wilson@tuliptree.org>
2488
2489         * reload.c (find_reloads): Change push_reloads to push_reload in
2490         comment.
2491         * reload1.c (eliminate_regs): Likewise.
2492         (dump_needs): Delete prototype for deleted function.
2493
2494 2003-06-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2495
2496         * builtin-attrs.def (gcc_diag, gcc_cdiag, gcc_cxxdiag): New
2497         format attributes.
2498         * c-format.c (enum format_type): Add gcc_diag_format_type,
2499         gcc_cdiag_format_type, and gcc_cxxdiag_format_type.
2500         (gcc_diag_length_specs, gcc_cdiag_length_specs,
2501         gcc_cxxdiag_length_specs, gcc_diag_flag_pairs,
2502         gcc_cdiag_flag_pairs, gcc_cxxdiag_flag_pairs, gcc_diag_flag_specs,
2503         gcc_cdiag_flag_specs, gcc_cxxdiag_flag_specs, gcc_diag_char_table,
2504         gcc_cdiag_char_table, gcc_cxxdiag_char_table): New.
2505         (format_types_orig): Add new data.
2506         (find_char_info_specifier_index, init_dynamic_diag_info): New
2507         functions.
2508         (handle_format_attribute): Update to handle new format attributes.
2509
2510 2003-06-29  Aaron W. LaFramboise  <awlaframboise@aol.com>
2511
2512         * config/i386/gthr-win32.h (__GTHREAD_HIDE_WIN32API): Define to 1.
2513
2514 2003-06-29  Dara Hazeghi  <dhazeghi@yahoo.com>
2515
2516         * doc/install.texi: Remove install documentation for obsoleted targets
2517         i?86-*-sco, i?86-*-sco3.2v4, powerpcle-*-pe, powerpcle-*-winnt,
2518         arm-*-aof.
2519         Update information about IA64 toolchain, AIX make requirements,
2520         and binutils for m68k-*-hpux and *-*-linuxaout targets.
2521
2522 Mon Jun 30 00:50:43 CEST 2003  Jan Hubicka  <jh@suse.cz>
2523
2524         * regmove.c (regmove_optimize): Don't try to make src and dst match
2525         when they are in different modes.
2526
2527 Sun Jun 29 23:06:32 CEST 2003  Jan Hubicka  <jh@suse.cz>
2528
2529         * builtins.c (expand_builtin_mathfn, expand_builtin_mathfn_2): Avoid
2530         busy work when builtin is not supported by the backend.
2531
2532 2003-06-29  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
2533
2534         * loop.c (count_one_set): Fix detection of registers set in more
2535         than one basic block.
2536
2537 2003-06-29  Andreas Jaeger  <aj@suse.de>
2538
2539         * target-def.h: Remove usage of OBJECT_FORMAT_ROSE.
2540         * system.h: Poison OBJ_FORMAT_ROSE.
2541         * doc/tm.texi (Macros for Initialization): Remove documentatin of
2542         OBJECT_FORMAT_ROSE.
2543         * config/rs6000/lynx.h: Remove undef of OBJECT_FORMAT_ROSE.
2544         * collect2.c: Remove usage of OBJECT_FORMAT_ROSE.
2545
2546 2003-06-29  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
2547
2548         * pa.c (update_total_code_bytes): New function.
2549         (last_address): Number of bytes output for a function and its
2550         associated thunks.
2551         (compute_frame_size): Use BITS_PER_UNIT.
2552         (pa_output_function_epilogue): Compute last_address.  Use
2553         update_total_code_bytes.
2554         (output_lbranch): Handle long branch on portable runtime.
2555         (attr_length_millicode_call, attr_length_call,
2556         attr_length_indirect_call): Only use total_code_bytes for calls in
2557         the text section.
2558         (output_call): Only use an indirect call sequence when the target is
2559         not local.
2560         (pa_asm_output_mi_thunk): Handle updating of total_code_bytes.  Improve
2561         test to determine when an IA-relative branch can be used.  Add various
2562         long branch sequences.  Avoid using an indirect branch on all ports
2563         except SOM.
2564
2565 2003-06-29  Ulrich Weigand  <uweigand@de.ibm.com>
2566
2567         * expr.c (clear_by_pieces): Fix prototype.
2568
2569 2003-06-29  Andreas Jaeger  <aj@suse.de>
2570
2571         * cse.c: Convert prototypes to ISO C90.
2572         * cselib.c: Likewise.
2573         * cselib.h: Likewise.
2574         * dbxout.c: Likewise.
2575         * debug.c: Likewise.
2576         * df.c: Likewise.
2577         * df.h: Likewise.
2578         * dojump.c: Likewise.
2579         * doloop.c: Likewise.
2580         * dominance.c: Likewise.
2581         * dwarf2asm.c: Likewise.
2582         * dwarf2out.c: Likewise.
2583         * dwarf2out.h: Likewise.
2584         * dwarfout.c: Likewise.
2585         * except.c: Likewise.
2586         * except.h: Likewise.
2587         * emit-rtl.c: Likewise.
2588         * et-forest.c: Likewise.
2589         * et-forest.h: Likewise.
2590         * except.c: Likewise.
2591         * explow.c: Likewise.
2592         * expmed.c: Likewise.
2593         * expr.c: Likewise.
2594         * expr.h: Likewise.
2595
2596 2003-06-29  Kazu Hirata  <kazu@cs.umass.edu>
2597
2598         * alloc-pool.c: Fix comment formatting.
2599         * bitmap.c: Likewise.
2600         * bitmap.h: Likewise.
2601         * bt-load.c: Likewise.
2602         * builtins.c: Likewise.
2603         * caller-save.c: Likewise.
2604         * cfganal.c: Likewise.
2605         * cfgrtl.c: Likewise.
2606         * collect2.c: Likewise.
2607         * cse.c: Likewise.
2608         * df.c: Likewise.
2609         * diagnostic.c: Likewise.
2610         * dwarf2out.c: Likewise.
2611         * dwarfout.c: Likewise.
2612         * expmed.c: Likewise.
2613         * final.c: Likewise.
2614         * flags.h: Likewise.
2615         * fold-const.c: Likewise.
2616         * gcc.c: Likewise.
2617         * gcov-io.h: Likewise.
2618         * gcov.c: Likewise.
2619         * genattrtab.c: Likewise.
2620         * genautomata.c: Likewise.
2621         * libgcov.c: Likewise.
2622         * mips-tfile.c: Likewise.
2623         * optabs.c: Likewise.
2624         * prefix.c: Likewise.
2625         * rtlanal.c: Likewise.
2626         * stmt.c: Likewise.
2627         * stor-layout.c: Likewise.
2628         * toplev.c: Likewise.
2629         * varasm.c: Likewise.
2630         * vmsdbgout.c: Likewise.
2631
2632 2003-06-29  Kazu Hirata  <kazu@cs.umass.edu>
2633
2634         * expr.c (emit_single_push_insn): If padding is needed
2635         downward, adjust the stack pointer first, and then store the
2636         data into the stack location using an offset.
2637
2638 2003-06-29  Andreas Jaeger  <aj@suse.de>
2639
2640         * collect2.h: Convert prototypes to ISO C90.
2641         * collect2.c: Likewise.
2642         * conflict.c: Likewise.
2643         * coverage.c: Likewise.
2644         * convert.h: Likewise.
2645         * convert.c: Likewise.
2646
2647 2003-06-29  Nathan Sidwell  <nathan@codesourcery.com>
2648
2649         * c-decl.c (c_init_decl_processing): Use a location_t. Set input
2650         filename to <internal>.
2651         * tree.c (make_node): Just copy the current location.
2652
2653 2003-06-29  Eric Botcazou  <ebotcazou@libertysurf.fr>
2654
2655         PR optimization/11210
2656         * fold-const (decode_field_reference): Revert 2003-06-26 patch.
2657
2658 2003-06-29  Neil Booth  <neil@daikokuya.co.uk>
2659
2660         * toplev.c (flag_dummy): Remove.
2661         (f_options): Restore flag pointers.
2662
2663 2003-06-29  David Edelsohn  <edelsohn@gnu.org>
2664
2665         * config/rs6000/rs6000.c (processor_target_table): Add 970.
2666         * config.gcc: Add 970.
2667
2668 2003-06-29  Kazu Hirata  <kazu@cs.umass.edu>
2669
2670         * dwarf2out.c (add_AT_string): Replace ggc_alloc_string (X,
2671         -1) with ggc_strdup.
2672         * stmt.c (expand_asm_operands): Likewise.
2673         * config/rs6000/rs6000.md (builtin_setjmp_receiver): Likewise.
2674
2675 2003-06-28  Kazu Hirata  <kazu@cs.umass.edu>
2676
2677         * config/ip2k/ip2k.c (ip2k_reorg): Use INSN_P instead of its
2678         definition.
2679
2680 2003-06-29  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
2681
2682         * opts.c: Include insn-attr.h.
2683         * Makefile.in (opts.o): Depend on INSN_ATTR_H.
2684
2685 2003-06-27  J"orn Rennecke <joern.rennecke@superh.com>
2686
2687         * flow.c (propagate_one_insn): Use proper test for a register
2688         being part of the return value.
2689
2690 2003-06-28  Kazu Hirata  <kazu@cs.umass.edu>
2691
2692         * config/avr/avr.c: Fix a comment typo.
2693
2694 2003-06-28  Kazu Hirata  <kazu@cs.umass.edu>
2695
2696         * config/avr/avr-protos.h: Replace avr_simplify_comparision_p
2697         with avr_simplify_comparison_p.
2698         * config/avr/avr.c: Likewise.
2699
2700 2003-06-28  Kazu Hirata  <kazu@cs.umass.edu>
2701
2702         * builtins.c: Follow spelling conventions.
2703         * cgraph.c: Likewise.
2704         * cpplex.c: Likewise.
2705         * config/arm/arm.c: Likewise.
2706         * config/arm/iwmmxt.md: Likewise.
2707         * config/c4x/c4x-modes.def: Likewise.
2708         * config/c4x/c4x.c: Likewise.
2709         * config/c4x/c4x.h: Likewise.
2710         * config/c4x/c4x.md: Likewise.
2711         * config/i386/i386-interix.h: Likewise.
2712         * config/mips/mips.h: Likewise.
2713
2714 2003-06-28  Neil Booth  <neil@daikokuya.co.uk>
2715
2716         * config/m68k/m68k.h (TARGET_CPU_CPP_BUILTINS): Predicate
2717         __mc68020__ on TARGET_68020.
2718
2719 2003-06-28  Kazu Hirata  <kazu@cs.umass.edu>
2720
2721         * config/h8300/h8300.c: Fix a comment typo.
2722
2723 2003-06-28  Nathan Sidwell  <nathan@codesourcery.com>
2724
2725         * c-parse.in (yylexstring): Use a location_t.
2726
2727         * diagnostic.h (diagnostic_set_info): Replace file and lineno
2728         parameters with a location_t.
2729         * diagnostic.c (diagnostic_set_info): Replace file and lineno
2730         parameters with a location_t.
2731         (inform, warning, pedwarn, error, sorry, fatal_error,
2732         internal_error, warning_with_decl, pedwarn_with_decl,
2733         error_with_decl): Adjust.
2734         * c-error.c (pedwarn_c99): Adjust.
2735         * c-format.c (status_warning): Adjust.
2736         * rtl-error.c (file_and_line_for_asm): Rename to ...
2737         (location_for_asm): Return a location_t.
2738         (diagnostic_for_asm): Adjust.
2739
2740 2003-06-28  Neil Booth  <neil@daikokuya.co.uk>
2741
2742         * cpptrad.c (skip_macro_block_comment): New.
2743         (copy_comment): Use it if appropriate.
2744
2745 2003-06-28  Kazu Hirata  <kazu@cs.umass.edu>
2746
2747         * gcse.c (compute_ld_motion_mems): Use INSN_P instead of its
2748         definition.
2749         (store_killed_in_insn): Likewise.
2750         * print-rtl.c (print_rtx): Likewise.
2751         * config/frv/frv.c (frv_final_prescan_insn): Likewise.
2752         * config/m68hc11/m68hc11.c (dead_register_here): Likewise.
2753         (m68hc11_reassign_regs): Likewise.
2754         (m68hc11_reorg): Likewise.
2755
2756 2003-06-28  Gabriel Dos Reis <gdr@integrable-solutions.net>
2757
2758         * diagnostic.c (output_integer_with_precision): New macro.
2759         (output_format): Use it.  Handle more format specifiers.
2760         (output_long_decimal): Remove.
2761         (output_unsigned_decimal): Likewise.
2762         (output_long_unsigned_decimal): Likewise.
2763         (output_octal): Likewise.
2764         (output_long_octal): Likewise.
2765         (output_hexadecimal): Likewise.
2766         (output_long_hexadecimal): Likewise.
2767         (output_long_long_decimal): Likewise.
2768
2769 2003-06-28  Andreas Schwab  <schwab@suse.de>
2770
2771         * config/ia64/ia64.md: Follow recent emit_note API change.
2772
2773 2003-06-28  Nathan Sidwell  <nathan@codesourcery.com>
2774
2775         * c-parse.in (%union): Replace filename & lineno with location.
2776         (save_filename, save_lineno): Remove.
2777         (save_location): New.
2778         (fndef, old_style_parm_decls_1, lineno_datadecl, lineno_decl,
2779         nested_function, notype_nested_function, if_prefix, lineno_stmt,
2780         lineno_label, label): Adjust.
2781
2782 2003-06-28  Jakub Jelinek  <jakub@redhat.com>
2783
2784         * builtins.c (c_strlen): Add only_value argument.
2785         Handle COND_EXPR and COMPOUND_EXPR.
2786         (expand_builtin_strlen): Optimize also strlen (i++ ? "foo" : "bar").
2787         Adjust c_strlen callers.
2788         (expand_builtin_strcpy, expand_builtin_strncpy,
2789         expand_builtin_strcmp, expand_builtin_strncmp,
2790         expand_builtin_fputs, expand_builtin_sprintf,
2791         fold_builtin): Adjust c_strlen callers.
2792
2793 2003-06-28  Josef Zlomek  <zlomekj@suse.cz>
2794
2795         * bb-reorder.c (find_traces_1_round): Do not send basic block
2796         to next round when we are in the last round.
2797
2798 2003-06-28  Neil Booth  <neil@daikokuya.co.uk>
2799
2800         * Makefile.in: Update.
2801         * opts.c: Include tm_p.h.
2802         (handle_options): Make static.
2803         (decode_options): Copied from toplev.c.
2804         * opts.h (decode_options): New.
2805         * toplev.c (parse_options_and_default_flags): Move most to opts.c,
2806         some to...
2807         (general_init): ...here.
2808         (toplev_main): Use decode_options instead.
2809         * toplev.h (save_argc, save_argv): New.
2810
2811 2003-06-28  Kazu Hirata  <kazu@cs.umass.edu>
2812
2813         * explow.c (find_next_ref): Remove.
2814         * rtl.h: Remove the prototype for find_next_ref.
2815
2816 2003-06-27  Roger Sayle  <roger@eyesopen.com>
2817
2818         * config/alpha/alpha.md (anonymous define_split): Adjust emit_note
2819         call to match recent API change.
2820
2821 2003-06-27  Zack Weinberg  <zack@codesourcery.com>
2822
2823         * dbxout.c (flag_debug_only_used_symbols): Delete redundant
2824         declaration.
2825
2826         * c-format.c (check_format_string, get_constant)
2827         * cfgrtl.c (rtl_split_edge):
2828         Mark the definition static, matching the forward declaration.
2829
2830 2003-06-27  Gunther Nikl <gni@gecko.de>
2831
2832         * unwind-c.c (PERSONALITY_FUNCTION): Delete duplicate define.
2833
2834         PR target/11014
2835         * config/m68k/m68k.c (m68k_output_mi_thunk): Use correct assembly
2836         syntax for MIT / MOTOROLA.
2837
2838         PR other/10240
2839         * configure.in: Removed $(XCFLAGS) from BUILD_CFLAGS for build != host.
2840         * configure: Rebuilt.
2841
2842 2003-06-27  Chris Demetriou  <cgd@broadcom.com>
2843
2844         * config/mips/mips.c (mips_build_va_list): Make padding in
2845         va_list structure explicit to avoid -Wpadded warnings.
2846
2847 2003-06-27  Ulrich Weigand  <uweigand@de.ibm.com>
2848
2849         * config/s390/s390.h (SECONDARY_OUTPUT_RELOAD_CLASS): Define.
2850         * config/s390/s390.c (s390_secondary_output_reload_class): New function.
2851         * config/s390/s390-protos.h (s390_secondary_output_reload_class):
2852         Declare it.
2853         * config/s390/s390.md ("reload_outti", "reload_outdi",
2854         "reload_outdf"): New expanders.
2855
2856         * config/s390/s390.md ("movti" + splitters): Handle non-offsettable
2857         memory operands as source.
2858         ("movdi" + splitters): Likewise.
2859         ("movdf" + splitters): Likewise.
2860         * config/s390/s390.c (s390_split_ok_p): New function.
2861         * config/s390/s390-protos.h (s390_split_ok_p): Declare it.
2862
2863 2003-06-27  Kazu Hirata  <kazu@cs.umass.edu>
2864
2865         * combine.c (force_to_mode): Replace the equality comparison
2866         of INTVALs with a pointer equality comparison.
2867         (simplify_comparison): Likewise.
2868
2869 2003-06-27  Kazu Hirata  <kazu@cs.umass.edu>
2870
2871         * jump.c (rtx_renumbered_equal_p): Replace an expression that
2872         is known to be 0 with 0.
2873
2874 2003-06-27  Kazu Hirata  <kazu@cs.umass.edu>
2875
2876         * gcse.c (expr_equiv_p): Replace expressions that are known to
2877         be 0 with 0.
2878
2879 2003-06-27  Kazu Hirata  <kazu@cs.umass.edu>
2880
2881         * cse.c (fold_rtx): Replace the equality comparison of INTVALs
2882         with a pointer equality comparison.
2883
2884 2003-06-27  Kazu Hirata  <kazu@cs.umass.edu>
2885
2886         * rtlanal.c (reg_mentioned_p): Return 0 earlier if REG and IN
2887         are known to be not equivalent.
2888
2889 2003-06-27  Richard Henderson  <rth@redhat.com>
2890
2891         * config/alpha/alpha.c (function_arg): Don't pass small aggregates
2892         in floating point registers.  Validate that we don't receive complex
2893         values here.  Use #elif.
2894         (return_in_memory, function_value): New.
2895         (alpha_va_arg): Handle complex values as two arguments.
2896         * config/alpha/alpha.h (RETURN_IN_MEMORY): Use return_in_memory.
2897         (FUNCTION_VALUE, LIBCALL_VALUE): Use function_value.
2898         (SPLIT_COMPLEX_ARGS): New.
2899         * config/alpha/alpha-protos.h: Update.
2900
2901 2003-06-27  Ulrich Weigand  <uweigand@de.ibm.com>
2902
2903         * ggc-page.c (inverse_table): Change type of mult to size_t.
2904         (compute_inverse): Compute inverse using size_t, not unsigned int.
2905         Compute inverse also for sizes larger than half a machine page.
2906
2907 Fri Jun 27 18:36:12 CEST 2003  Jan Hubicka  <jh@suse.cz>
2908
2909         * toplev.c (rest_of_decl_compilation):  Only varpoolize argument
2910         when called before cgraph_optimize.
2911
2912 2003-06-27  Zack Weinberg  <zack@codesourcery.com>
2913
2914         * config/darwin.h, config/elfos.h, config/i960/i960-coff.h
2915         * config/m68k/coff.h: ASM_FILE_START_FILE_DIRECTIVE should
2916         be TARGET_ASM_FILE_START_FILE_DIRECTIVE.
2917
2918 Fri Jun 27 17:41:16 CEST 2003  Jan Hubicka  <jh@suse.cz>
2919
2920         * cgraph.c (cgraph_node, cgraph_varpool_node): Avoid re-initializing
2921         of known_decls.
2922
2923 2003-06-27  Hans-Peter Nilsson  <hp@axis.com>
2924
2925         * defaults.h (REGISTER_MOVE_COST): Define default here.
2926         * regclass.c: Don't define default REGISTER_MOVE_COST here.
2927         * reload.c, reload1.c: Ditto.
2928
2929 2003-06-27  Richard Earnshaw <rearnsha@arm.com>
2930
2931         * flags.h: Really install previous change.
2932
2933 2003-06-27  Nathan Sidwell  <nathan@codesourcery.com>
2934
2935         * rtl.h (emit_note): Remove FILE parameter.
2936         * emit-rtl.c (emit_line_note): Adjust emit_note call.
2937         (emit_note): Remove FILE parameter. Adjust.
2938         * builtins.c (expand_builtin_expect): Adjust emit_note call.
2939         * c-semantics.c (genrtl_scope_stmt): Likewise.
2940         (expand_stmt): Likewise.
2941         * cfglayout.c (reemit_insn_block_notes): Likewise.
2942         (duplicate_insn_chain): Likewise.
2943         * except.c (expand_eh_region_start, expand_eh_region_end,
2944         sjlj_emit_function_enter): Likewise.
2945         * explow.c (probe_stack_range): Likewise.
2946         * expr.c (emit_block_move_via_loop): Likewise.
2947         * function.c (init_function_start, expand_function_start,
2948         expand_function_end, thread_prologue_and_epilogue_insns): Likewise.
2949         * integrate.c (expand_inline_function, copy_insn_list): Likewise.
2950         * reg-stack.c (compensate_edge): Likewise.
2951         * reload1.c (reload): Likewise.
2952         * rtlanal.c (hoist_insn_to_edge): Likewise.
2953         * stmt.c (expand_fixup, expand_start_loop, expand_start_null_loop,
2954         expand_loop_continue_here, expand_end_loop, expand_continue_loop,
2955         expand_exit_loop_top_cond, expand_value_return,
2956         expand_start_bindings_and_block, expand_end_bindings,
2957         expand_decl_cleanup, expand_start_case): Likewise.
2958         * unroll.c (copy_loop_body
2959         * config/alpha/alpha.c (alpha_output_mi_thunk_osf): Likewise.
2960         * config/ia64/ia64.c (ia64_output_mi_thunk): Likewise.
2961         * config/rs6000/rs6000.c (rs6000_emit_eh_toc_restore,
2962         rs6000_emit_allocate_stack, rs6000_output_function_prologue,
2963         rs6000_output_function_epilogue, rs6000_output_mi_thunk): Likewise.
2964         * config/sh/sh.c (sh_output_mi_thunk): Likewise.
2965         * config/sparc/sparc.c (sparc_output_mi_thunk): Likewise.
2966
2967 2003-06-27  Nathan Sidwell  <nathan@codesourcery.com>
2968
2969         * c-tree.h (grokfield): Remove unused filename and line parameters.
2970         * c-decl.c (grokfield): Remove unused filename and line parameters.
2971         * c-parse.in (component_decl): Adjust field grokking rules, adjust
2972         grokfield calls.
2973         (component_declarator): Likewise.
2974         (component_notype_declarator): Likewise.
2975         * objc/objc-act.c (build_module_descriptor): Adjust grokfield
2976         calls.
2977         (build_protocol_template, build_method_prototype_list_template,
2978         build_method_prototype_template, build_category_template,
2979         build_selector_template, build_class_template,
2980         build_super_template, build_ivar_template,
2981         build_ivar_list_template, build_method_list_template,
2982         build_method_template, add_instance_variable): Likewise.
2983
2984 2003-06-27  Kazu Hirata  <kazu@cs.umass.edu>
2985
2986         * stmt.c (do_jump_if_equal): Return 0 earlier if OP1 and
2987         OP2 are known to be not equivalent.
2988
2989 2003-06-26  Devang Patel <dpatel@apple.com>
2990
2991         * final.c (debug_flush_symbol_queue): New function.
2992         (debug_queue_symbol): New function.
2993         (debug_free_queue): New function.
2994         (debug_nesting): New variable.
2995         (symbol_queue): New variable.
2996         (symbol_queue_index): Same.
2997         (symbol_queue_size): Same.
2998         * debug.h (debug_flush_symbol_queue): New.
2999         (debug_queue_symbol): New.
3000         (debug_free_queue): New.
3001         (debug_nesting): New.
3002         (symbol_queue_index): New.
3003         * dbxout.c (DBXOUT_DECR_NESTING): New macro.
3004         (DBXOUT_DECR_NESTING_AND_RETURN): New macro.
3005         (dbxout_init): Delay symbol output.
3006         (dbxout_global_decl): Save, set and reset TREE_USED bit around
3007         dbxout_symbol() call.
3008         (dbxout_begin_function): Same.
3009         (dbxout_finish): Free symbol queue.
3010         (dbxout_type): Put appropriate symbols in queue.
3011         (dbxout_symbol): Put info for symbol's type in queue.
3012         Decrement/Increment nesting counts flush symbol queue appropriately.
3013         (dbxout_parms): Increment dbxout nesting.
3014         (dbxout_reg_parms): Same.
3015         * flags.h (flag_debug_only_used_symbols): New.
3016         * toplev.c (flag_debug_only_used_symbols): New variable.
3017         (lang_independent_options): Add entries for new option
3018         -feliminate-unused-debug-symbols.
3019         * common.opt: Add entry for -feliminate-unused-debug-symbols.
3020         * opts.c (common_handle_options): Same.
3021         * config/rs6000/darwin.h (CC1_SPEC): Interpret -gused as
3022         -feliminate-unused-debug-symbols.
3023         * doc/invoke.texi (Debugging Options): Document
3024         -feliminate-unused-debug-symbols.
3025
3026 2003-06-26  Roger Sayle  <roger@eyesopen.com>
3027             Jakub Jelinek  <jakub@redhat.com>
3028
3029         * builtins.c (expand_builtin_sprintf): Use c_getstr and strlen to
3030         obtain the format string instead of using TREE_STRING_POINTER and
3031         TREE_STRING_LENGTH.  Only optimize sprintf(dst,"%s",src) when the
3032         return value is unused or the length of src is a known constant.
3033
3034 2003-06-26  Richard Henderson  <rth@redhat.com>
3035
3036         * config/ia64/ia64.h (REGISTER_NAMES): R0 is really AP.
3037
3038 2003-06-26  Richard Henderson  <rth@redhat.com>
3039
3040         * config/ia64/ia64.c (ia64_expand_call): Don't add ar.pfs for sibcalls.
3041         (ia64_split_call): Only load descriptor for GP register inputs.
3042         (ia64_expand_epilogue): Check current_frame_info.mask not
3043         current_function_is_leaf to restore ar.pfs.
3044
3045 2003-06-26  Richard Henderson  <rth@redhat.com>
3046
3047         * emit-rtl.c (try_split): Append to new CALL_INSN_FUNCTION_USAGE
3048         instead of replacing it.
3049
3050 2003-06-26  Richard Henderson  <rth@redhat.com>
3051
3052         * flow.c (propagate_one_insn): Kill function return value
3053         registers across tail calls.
3054
3055         * flow.c (propagate_one_insn): Preserve live-at-end registers
3056         across tail calls.
3057
3058 2003-06-26  J"orn Rennecke <joern.rennecke@superh.com>
3059
3060         * reload.c (can_reload_into): New function.
3061         (push_reload): Use it.
3062
3063 2003-06-26  Kazu Hirata  <kazu@cs.umass.edu>
3064
3065         * config/h8300/h8300.c (compute_a_rotate_length): Fix the
3066         references to the amount of a rotation.
3067
3068 2003-06-26  Nathanael Nerode  <neroden@gcc.gnu.org>
3069
3070         * config/sh/coff.h: Don't include dbxcoff.h.
3071         * config.gcc: List it here.
3072
3073 2003-06-26  Kazu Hirata  <kazu@cs.umass.edu>
3074
3075         * postreload.c (reload_cse_simplify_set): Call cselib_lookup
3076         earlier.  Don't check if SRC is a constant.
3077
3078 2003-06-26  Kazu Hirata  <kazu@cs.umass.edu>
3079
3080         * Makefile.in (OBJS): Add postreload.o.
3081         Remove cselib.h from the dependency list for reload1.o.
3082         Add a dependency list for postreload.o.
3083         * reload.h: Change the comment for the prototype of
3084         reload_cse_regs.
3085         * reload1.c: Don't include cselib.h.
3086         (reload_cse_regs): Move to postreload.c
3087         (reload_cse_regs_1): Likewise.
3088         (reload_cse_noop_set_p): Likewise.
3089         (reload_cse_simplify_set): Likewise.
3090         (reload_cse_simplify_operands): Likewise.
3091         (RELOAD_COMBINE_MAX_USES): Likewise.
3092         (reload_combine_ruid): Likewise.
3093         (LABEL_LIVE): Likewise.
3094         (reload_combine): Likewise.
3095         (reload_combine_note_use): Likewise.
3096         (reload_combine_note_store): Likewise.
3097         (reg_set_luid): Likewise.
3098         (reg_offset): Likewise.
3099         (reg_base_reg): Likewise.
3100         (reg_mode): Likewise.
3101         (move2add_luid): Likewise.
3102         (move2add_last_label_luid): Likewise.
3103         (MODES_OK_FOR_MOVE2ADD): Likewise.
3104         (reload_cse_move2add): Likewise.
3105         (move2add_note_store): Likewise.
3106         (reload_cse_simplify): Likewise.
3107         * postreload.c: New.
3108
3109 2003-06-26  Kazu Hirata  <kazu@cs.umass.edu>
3110
3111         * config/avr/avr.c (final_prescan_insn): Remove support for
3112         -mrtl.
3113         * config/avr/avr.h (MASK_RTL_DUMP): Remove.
3114         (TARGET_RTL_DUMP): Likewise.
3115         (TARGET_SWITCHES): Remove -mrtl.
3116
3117 2003-06-26  Kazu Hirata  <kazu@cs.umass.edu>
3118
3119         * config/h8300/h8300-protos.h: Change emit_a_rotate to
3120         output_a_rotate.  Add a prototype for compute_a_rotate_length.
3121         * config/h8300/h8300.c (emit_a_rotate): Change to
3122         output_a_rotate.
3123         (compute_a_rotate_length): New.
3124         (h8300_adjust_insn_length): Remove.
3125         * config/h8300/h8300.h (ADJUST_INSN_LENGTH): Remove.
3126         * config/h8300/h8300.md (adjust_length): Remove.
3127         (*rotlqi3_1): Use output_a_rotate and compute_a_rotate_length.
3128         (*rotlhi3_1): Likewise.
3129         (*rotlsi3_1): Likewise.
3130
3131 2003-06-26  Roger Sayle  <roger@eyesopen.com>
3132             Richard Henderson  <rth@redhat.com>
3133
3134         * builtins.c (expand_builtin_mathfn): Always stabilize the argument
3135         list against re-evaluation.  If expand_unop fails, call expand_call
3136         with the stabilized argument list rather than return NULL_RTX.
3137         (expand_builtin_mathfn2): Likewise, always stabilize the argument
3138         list, and call expand_call ourselves if expand_binop fails.
3139
3140 2003-06-26  Eric Botcazou  <ebotcazou@libertysurf.fr>
3141
3142         PR optimization/11210
3143         * fold-const (decode_field_reference): Strip only NOPs that
3144         don't affect the sign.
3145
3146 2003-06-26  Dhananjay Deshpande  <dhananjayd@kpitcummins.com>
3147
3148         * gcc/config/sh/sh.md (push_fpscr): Enable for TARGET_SH2E.
3149         (pop_fpscr, fpu_switch): Likewise.
3150
3151 2003-06-26  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
3152
3153         * value-prof.c: New.
3154         * value-prof.h: New.
3155         * Makefile.in (value-prof.o): New.
3156         (LIBGCOV): Add _gcov_merge_single and _gcov_merge_delta
3157         (profile.o): Add value-prof.h and tree.h dependency.
3158         * flags.h (flag_profile_values): Declare.
3159         * gcov-io.h (GCOV_COUNTERS, GCOV_COUNTER_NAMES, GCOV_MERGE_FUNCTIONS):
3160         Add new counters.
3161         (GCOV_COUNTER_V_INTERVAL, GCOV_COUNTER_V_POW2, GCOV_COUNTER_V_SINGLE,
3162         GCOV_COUNTER_V_DELTA): New counter sections.
3163         (__gcov_merge_single, __gcov_merge_delta): Declare.
3164         * flow.c (mark_used_regs): Set subregs_of_mode only when the
3165         structure is initialized.
3166         * libgcov.c (__gcov_merge_single, __gcov_merge_delta): New functions.
3167         * profile.c: Include value-prof.h and tree.h.
3168         (gen_interval_profiler, gen_pow2_profiler, gen_one_value_profiler,
3169         gen_const_delta_profiler, instrument_values): New static functions.
3170         (get_exec_counts): Fix comment.
3171         (branch_prob): Invoke instrument_values.
3172         * toplev.c (flag_profile_values): New flag.
3173         * doc/invoke.texi (-fprofile-values): Document.
3174
3175 2003-06-26  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
3176
3177         * Makefile.in (cfgrtl.o): Add expr.h dependency.
3178         * cfgrtl.c: Include expr.h.
3179         (mark_killed_regs, safe_insert_insn_on_edge): New
3180         functions.
3181         * config/i386/i386.h (AVOID_CCMODE_COPIES): Define.
3182         * basic-block.h (safe_insert_insn_on_edge): Declare.
3183
3184 2003-06-26  Neil Booth  <neil@daikokuya.co.uk>
3185
3186         * c-opts.c (missing_arg): Make non-static.
3187         (c_common_handle_option): Don't check for missing arguments.
3188         * opts.c (handle_option): Check for missing arguments.
3189
3190 2003-06-26  David Edelsohn  <edelsohn@gnu.org>
3191
3192         * config/rs6000/power4.md (power4-veccomplex): Correct latency.
3193
3194 2003-06-25  Loren James Rittle  <ljrittle@acm.org>
3195
3196         * configure.in (ld_vers): Portability [sed].
3197         * configure: Regenerate with autoconf213.
3198
3199 2003-06-25  H.J. Lu <hongjiu.lu@intel.com>
3200
3201         * doc/extend.texi: Document new builtin functions for Intel
3202         Prescott New Intrunctions.
3203
3204         * doc/invoke.texi: Document new command-line options, -mpni and
3205         -mno-pni, for Intel Prescott New Intrunctions.
3206
3207         * config.gcc (extra_headers): Add pmmintrin.h for i[34567]86-*-*.
3208
3209         * config/i386/i386.c (override_options): Turn on MASK_SSE2
3210         for -mpni. Turn on MASK_SSE for -msse2.
3211         (bdesc_2arg): Add PNI builtins with 2 args.
3212         (bdesc_1arg): Add PNI builtins with 1 arg.
3213         (ix86_init_mmx_sse_builtins): Handle PNI builtins.
3214         (ix86_expand_builtin): Likewise.
3215
3216         * config/i386/i386.h (MASK_3DNOW, MASK_3DNOW_A,
3217         MASK_128BIT_LONG_DOUBLE, MASK_64BIT, MASK_MS_BITFIELD_LAYOUT,
3218         MASK_TLS_DIRECT_SEG_REFS): Renumbered.
3219         (TARGET_PNI): New.
3220         (TARGET_SWITCHES): Don't enable MASK_SSE for -msse2 here. Add
3221         -mpni and -mno-pni.
3222         (TARGET_CPU_CPP_BUILTINS): Defined __PNI__ for PNI.
3223         (ix86_builtins): Add PNI builtins.
3224         (config/i386/i386.md): Add PNI patterns.
3225
3226         * config/i386/pmmintrin.h: New file.
3227
3228 2003-06-25  Kazu Hirata  <kazu@cs.umass.edu>
3229
3230         * config/h8300/h8300.md (call): Fix the insn lengths.
3231         (call_value): Likewise.
3232
3233 Thu Jun 26 00:13:35 CEST 2003  Jan Hubicka  <jh@suse.cz>
3234
3235         * c-common.c (handle_used_attribute): Use mark_referenced.
3236         * varasm.c (mark_referenced): Break out from ...
3237         (assemble_name): ... here.
3238         * tree.h (mark_referenced): Declare.
3239
3240 2003-06-25  Wolfgang Bangerth  <bangerth@dealii.org>
3241
3242         * gccbug.in: Add PCH to list of categories.
3243
3244 2003-06-25 Martin Schaffner <schaffner@gmx.li>
3245
3246         * cppfiles.c: Clarify comments.
3247         * cpphash.h: Likewise.
3248         * cpplib.h: Likewise.
3249         * cppmacro.c: Likewise.
3250         * mkdeps.h: Likewise.
3251
3252 2003-06-25  Neil Booth  <neil@daikokuya.co.uk>
3253
3254         * c-opts.c (complain_wrong_lang, write_langs): Remove.
3255         (c_common_handle_option): Complaints about wrong language are
3256         handled in opts.c now.
3257         * opts.c (complain_wrong_lang, write_langs, handle_options): New.
3258         (find_opt): Fix thinko.
3259         (handle_option): Update prototype.  Complain about switches for
3260         a different front end.
3261         * opts.h (lang_names, handle_options): New.
3262         (handle_option): Remove.
3263         * opts.sh: Write out language names array.
3264         * toplev.c (parse_options_and_default_flags): Use handle_options.
3265
3266 2003-06-25  H.J. Lu <hongjiu.lu@intel.com>
3267
3268         * config/i386/i386.c (MASK_SSE1): Removed.
3269         (MASK_SSE164): Removed.
3270         (MASK_SSE264): Removed.
3271         (bdesc_2arg): Replace MASK_SSE1 with MASK_SSE. Replace
3272         MASK_SSE164 with MASK_SSE | MASK_64BIT. Replace MASK_SSE264
3273         with MASK_SSE2 | MASK_64BIT.
3274         (bdesc_1arg): Likewise.
3275         (ix86_init_mmx_sse_builtins): Likewise.
3276
3277         * config/i386/i386.h (TARGET_SSE): Remove MASK_SSE2.
3278         (TARGET_SWITCHES): Enable both MASK_SSE and MASK_SSE2 for
3279         -msse2.
3280
3281 2003-06-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3282
3283         * hwint.h (HOST_WIDE_INT_PRINT, HOST_WIDE_INT_PRINT_C): New macros.
3284         (HOST_WIDE_INT_PRINT_DEC_SPACE,
3285         HOST_WIDE_INT_PRINT_UNSIGNED_SPACE,
3286         HOST_WIDEST_INT_PRINT_DEC_SPACE,
3287         HOST_WIDEST_INT_PRINT_UNSIGNED_SPACE): Delete.
3288         (HOST_WIDE_INT_PRINT_DEC, HOST_WIDE_INT_PRINT_DEC_C,
3289         HOST_WIDE_INT_PRINT_UNSIGNED, HOST_WIDE_INT_PRINT_HEX): Define in
3290         terms of HOST_WIDE_INT_PRINT and possibly HOST_WIDE_INT_PRINT_C.
3291
3292         * final.c (asm_fprintf): Use HOST_WIDE_INT_PRINT.
3293         * ra-debug.c (dump_static_insn_cost): Likewise.
3294
3295 2003-06-26  Nick Clifton  <nickc@redhat.com>
3296
3297         * config/arm/arm.h (BIGGEST_FIELD_ALIGNMENT): Define instead
3298         of ADJUST_FIELD_ALIGN if IN_TARGET_LIBS.
3299         Replace occurances of '???' with 'XXX' incase they are
3300         mistaken for trigraphs.
3301         (THUMB_PRINT_OPERAND_ADDRESS): abort if a compound address
3302         does not have a register for the first operand.
3303
3304 2003-06-25      Dhananjay Deshpande <dhananjayd@kpitcummins.com>
3305
3306         * config/sh/sh.c (sh_register_move_cost):
3307         Add case for moving between MAC_REGS.
3308
3309 2003-06-25  Zack Weinberg  <zack@codesourcery.com>
3310
3311         PR 10178
3312         * langhooks.h (struct lang_hooks): Add no_body_blocks bool.
3313         * langhooks-def.h (LANG_HOOKS_NO_BODY_BLOCKS): New; default false.
3314         * c-lang.c, objc/objc-lang.c: Override LANG_HOOKS_NO_BODY_BLOCKS
3315         to true.
3316         * stmt.c (is_body_block): If lang_hooks.no_body_blocks, always
3317         return 0.
3318
3319 2003-06-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3320
3321         * Makefile.in (bt-load.o): Depend on $(TM_P_H).
3322         * bt-load.c: Include "tm_p.h".
3323
3324 2003-06-25  Kazu Hirata  <kazu@cs.umass.edu>
3325
3326         * config/h8300/h8300.c (compute_mov_length): Adjust for the
3327         new optimization.
3328         * config/h8300/h8300.md (*movsi_h8300): Optimize the load of
3329         an SImode constant whose upper and lower are the same.
3330
3331 Wed Jun 25 11:31:59 CEST 2003  Jan Hubicka  <jh@suse.cz>
3332
3333         * varasm.c (assemble_name): Mark needed variables even when
3334         global info is ready.
3335
3336 2003-06-24  Jerry Quinn  <jlquinn@optonline.net>
3337
3338         PR other/11280
3339         * gcc/doc/invoke.texi (Optimization Options): Remove -Os from
3340         -freorder-functions description.
3341
3342 2003-06-25  Josef Zlomek  <zlomekj@suse.cz>
3343
3344         * dwarf2out.c (gen_field_die): Return if type of decl is error mark.
3345
3346 2003-06-25  Neil Booth  <neil@daikokuya.co.uk>
3347
3348         * opts.c (common_handle_option): Add missing break;s.
3349
3350 2003-06-24  Kazu Hirata  <kazu@cs.umass.edu>
3351
3352         * config/h8300/h8300-protos.h: Add a prototype for
3353         compute_mov_length.
3354         * config/h8300/h8300.c (compute_mov_length): New.
3355         * config/h8300/h8300.md (*movqi_h8300): Use it.
3356         (*movqi_h8300hs): Likewise.
3357         (movstrictqi): Likewise.
3358         (*movhi_h8300): Likewise.
3359         (*movhi_h8300hs): Likewise.
3360         (movstricthi): Likewise.
3361         (*movsi_h8300): Likewise.
3362         (*movsf_h8300): Likewise.
3363         (*movsi_h8300hs): Likewise.
3364         (*movsf_h8300hs): Likewise.
3365
3366 2003-06-24  Kazu Hirata  <kazu@cs.umass.edu>
3367
3368         * jump.c (next_nondeleted_insn): Remove.
3369         * rtl.h: Remove the prototype for next_nondeleted_insn.
3370
3371 2003-06-24  Roger Sayle  <roger@eyesopen.com>
3372
3373         PR optimization/11311
3374         * builtins.c (powi_cost): Fix typo.  The number of multiplications
3375         required is the number to reduce the argument, result, plus the
3376         cost of calculating the residual, val [not n, the original value].
3377
3378 2003-06-24  Roger Sayle  <roger@eyesopen.com>
3379
3380         * config/alpha/osf5.h (TARGET_C99_FUNCTIONS): Define.
3381
3382 2003-06-24  Richard Henderson  <rth@redhat.com>
3383             (blame to: Loren James Rittle  <ljrittle@acm.org>)
3384
3385         * real.h (ieee_extended_intel_96_round_53_format): New.
3386         * real.c (ieee_extended_intel_96_round_53_format): New.
3387         * config/i386/freebsd.h (SUBTARGET_OVERRIDE_OPTIONS): Use it
3388         for XFmode and TFmode.
3389
3390 2003-06-24  Kazu Hirata  <kazu@cs.umass.edu>
3391
3392         * config/h8300/h8300.md (4 anonymous patterns): Give internal
3393         names.
3394         (movsi_h8300): Change the name to *movsi_h8300.
3395         (movsi_h8300hs): Change the name to *movsi_h8300hs.
3396         (movsf_h8300): Change the name to *movsf_h8300.
3397         (movsf_h8300hs): Change the name to *movsf_h8300hs.
3398
3399 2003-06-24  Jakub Jelinek  <jakub@redhat.com>
3400
3401         * builtins.c (expand_builtin_strcpy): Don't evaluate side-effects in
3402         src twice.
3403
3404 2003-06-24  J"orn Rennecke <joern.rennecke@superh.com>
3405
3406         Back out these patches:
3407          2003-06-02  J"orn Rennecke <joern.rennecke@superh.com>
3408           * sh.h (OLD_ARG_MODE): New macro.
3409           (FUNCTION_ARG_ADVANCE, FUNCTION_ARG_PASS_BY_REFERENCE): Use it.
3410           (FUNCTION_ARG_1): Break out of:
3411           (FUNCTION_ARG).  Use OLD_ARG_MODE.
3412          2003-06-06  J"orn Rennecke <joern.rennecke@superh.com>
3413           * sh.h (FUNCTION_ARG_1): Consistently use NEW_MODE for the mode
3414           of the generated register.
3415
3416         * sh.h (FUNCTION_ARG_SCmode_WART): Define.
3417         (FUNCTION_ARG): Unless FUNCTION_ARG_SCmode_WART is defined and
3418         an even number of floating point regs are in use, use the same
3419         sequence of argument passing registers for SCmode as would be
3420         used for two SFmode values.
3421         * sh.c (sh_va_arg): If FUNCTION_ARG_SCmode_WART is defined,
3422         swap real / imaginary parts in incoming SCmode values passed
3423         in registers.
3424
3425 2003-06-24  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
3426
3427         PR target/11260
3428         * config/alpha/alpha.md (sqrtdf2): Fix operand substitution.
3429
3430 Tue Jun 24 18:49:33 CEST 2003  Jan Hubicka  <jh@suse.cz>
3431
3432         * Makefile.in (cgraph.o): Depend on output.h, not depend on
3433         tree-inline.h
3434         * cgraph.c: Do not include tree-inline.h; include output.h
3435         (known_fns): Rename to ...
3436         (known_decls): ... this one; update all uses.
3437         (cgraph_varpool_hash): New static variable.
3438         (cgraph_varpool_n_nodes, cgraph_varpool_nodes_queue): New global
3439         variables.
3440         (cgraph_varpool_hash_node, eq_cgraph_varpool_node, cgraph_varpool_node,
3441         cgraph_varpool_node_for_identifier, cgraph_varpool_mark_needed_node,
3442         cgraph_varpool_finalize_decl, cgraph_varpool_assemble_pending_decls):
3443         New functions.
3444         * cgraph.h (cgraph_varpool_node): New structure.
3445         (cgraph_varpool_n_nodes, cgraph_varpool_nodes_queue): Declare.
3446         (cgraph_varpool_node, cgraph_varpool_node_for_identifier,
3447         cgraph_varpool_finalize_decl, cgraph_varpool_mark_needed_node,
3448         cgraph_varpool_asemble_pending_decls): Declare.
3449         * cgraphunit.c (record_call_1): Notice variable references.
3450         (cgraph_finalize_compilation_unit): Assemble pending variables.
3451         * toplev.c (wrapup_global_declarations): Use varpool.
3452         (compile_file): Assemble pending declarations.
3453         (rest_of_decl_compilation): Use varpool in unit-at-a-time mode.
3454         * varasm.c (assemble_name): Notice varpool references.
3455
3456 Tue Jun 24 13:52:11 CEST 2003  Jan Hubicka  <jh@suse.cz>
3457
3458         * langhooks-def.h (LANG_HOOKS_PREPARE_ASSEMBLE_VARIABLE): New macro.
3459         * langhooks.h (lang_hooks_for_decls): Add prepare_assemble_variable.
3460         * varasm.c (assemble_variable): Call prepare_assemble_variable.
3461
3462 2003-06-23  Roger Sayle  <roger@eyesopen.com>
3463
3464         * builtins.c (expand_builtin): Use expand_builtin_pow to expand
3465         calls for pow, powf, powl and their __builtin_ variants.
3466         (expand_builtin_pow): If the second argument is a constant
3467         integer and compiling with -ffast-math, use expand_powi to
3468         generate RTL if powi_cost is less than POWI_MAX_MULTS.
3469         (powi_cost): New function to return the number of multiplications
3470         necessary to evaluate an Nth power, for integer constant N.
3471         (expand_powi): New function to expand the RTL for evaluating
3472         the Nth power of a floating point value, for integer constant N.
3473
3474         * doc/tm.texi (POWI_MAX_MULTS): Document new target macro.
3475
3476 Mon Jun 23 23:07:35 CEST 2003  Jan Hubicka  <jh@suse.cz>
3477
3478         * cgraph.c (cgraph_nodes_queue): Declare.
3479         (eq_node): Take identifier as p2.
3480         (cgraph_node): Update htab_find_slot_with_hash call.
3481         (cgraph_node_for_identifier): New.
3482         (cgraph_mark_needed_node): Move here from cgraphunit.c.
3483         * cgraph.h (cgraph_nodes_queue): Declare.
3484         (cgraph_node_for_identifier): Declare.
3485         * cgraphunit.c (cgraph_finalize_function): Collect entry points here
3486         instead of in cgraph_finalize_compilation_unit; constructors and
3487         destructors are entry points.
3488         (cgraph_finalize_compilation_unit): Reorganize debug outout;
3489         examine nested functions after lowerng; call collect_functions hook.
3490         (cgraph_mark_local_functions): DECL_COMDAT functions are not local.
3491         (cgraph_finalize_compilation_unit): Do not collect entry points.
3492         * varasm.c: Include cgraph.h
3493         (assemble_name): Mark referenced identifier as needed.
3494
3495         * cgraphunit.c (record_call_1): Use get_callee_fndecl.
3496
3497 2003-06-23  Jakub Jelinek  <jakub@redhat.com>
3498
3499         * config/i386/i386.c (x86_output_mi_thunk): Don't pass MEM to %P0,
3500         just SYMBOL_REF.
3501         * config/s390/s390.c (s390_output_mi_thunk): Avoid .plt in -m31
3502         mode, as it requires pic register loaded.
3503
3504         * varasm.c (resolve_unique_section): Remove prototype.  No longer
3505         static.
3506         * tree.h (resolve_unique_section): New prototype.
3507
3508 2003-06-23  Andreas Schwab  <schwab@suse.de>
3509
3510         PR debug/9905
3511         * dwarf2out.c (loc_descriptor_from_tree): Handle MODIFY_EXPR by
3512         recursing through first argument.
3513
3514 2003-06-23  Kazu Hirata  <kazu@cs.umass.edu>
3515
3516         * ChangeLog.1: Fix a typo.
3517         * cfgrtl.c: Fix comment typos.
3518         * dwarf2out.c: Likewise.
3519         * expmed.c: Likewise.
3520         * genrecog.c: Likewise.
3521         * jump.c: Likewise.
3522         * rtlanal.c: Likewise.
3523         * ssa-dce.c: Likewise.
3524         * toplev.c: Likewise.
3525
3526 2003-06-23  Kazu Hirata  <kazu@cs.umass.edu>
3527
3528         * doc/extend.texi: Fix typos.
3529         * doc/md.texi: Likewise.
3530         * doc/tm.texi: Likewise.
3531
3532 2003-06-23  Kazu Hirata  <kazu@cs.umass.edu>
3533
3534         * basic-block.h: Fix comment formatting.
3535         * bt-load.c: Likewise.
3536         * builtins.c: Likewise.
3537         * c-common.c: Likewise.
3538         * c-common.h: Likewise.
3539         * c-format.c: Likewise.
3540         * coverage.c: Likewise.
3541         * cpplib.h: Likewise.
3542         * cpppch.c: Likewise.
3543         * dbxout.c: Likewise.
3544         * diagnostic.c: Likewise.
3545         * dwarf2out.c: Likewise.
3546         * expr.c: Likewise.
3547         * fold-const.c: Likewise.
3548         * function.c: Likewise.
3549         * gcc.c: Likewise.
3550         * gcov-io.c: Likewise.
3551         * gcov-io.h: Likewise.
3552         * gcov.c: Likewise.
3553         * profile.c: Likewise.
3554         * real.h: Likewise.
3555         * sched-deps.c: Likewise.
3556
3557 2003-06-23  Roger Sayle  <roger@eyesopen.com>
3558             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
3559
3560         * doc/contrib.texi (Contributors): Add a note on testing and
3561         remove duplicates from testers list.
3562
3563 2003-06-23  Nick Clifton  <nickc@redhat.com>
3564
3565         * read-rtl.c (read_braced_string): Check for EOF.  If
3566         encountered issue an error message.
3567
3568 2003-06-23  Kazu Hirata  <kazu@cs.umass.edu>
3569
3570         * doc/invoke.texi: Document dump options, dT and dW.
3571
3572 2003-06-23  Kazu Hirata  <kazu@cs.umass.edu>
3573
3574         * genrecog.c (pred_table): Remove the entry for
3575         mode_independent_operand.
3576         * recog.c (next_insns_test_no_inequality): Remove.
3577         (mode_independent_operand): Likewise.
3578         * recog.h: Remove the prototype for mode_independent_operand.
3579
3580 2003-06-22  Kazu Hirata  <kazu@cs.umass.edu>
3581
3582         * config/h8300/h8300.c (output_simode_bld): Use rotxl.l to
3583         store into bit 0.
3584         * config/h8300/h8300.md (*extzv_1_r_h8300hs): Change cc of the
3585         second alternative to set_znv.
3586         (*extzv_1_r_inv_h8300hs): Likewise.
3587
3588 2003-06-23  Hans-Peter Nilsson  <hp@bitrange.com>
3589
3590         * configure.in (in_tree_gas): Find out here whether GAS is ELF,
3591         set in_tree_gas_is_elf accordingly.
3592         (in_tree_ld): Find out whether LD emulation is ELF, set
3593         in_tree_ld_is_elf accordingly.
3594         (gcc_cv_as_subsections, gcc_cv_as_hidden, gcc_cv_as_leb128)
3595         (gcc_cv_as_eh_frame, gcc_cv_as_shf_merge)
3596         (gcc_cv_as_dwarf2_debug_line, gcc_cv_as_gdwarf2_flag)
3597         (gcc_cv_as_gstabs_flag): Use $in_tree_gas_is_elf instead of
3598         grepping gas/Makefile.
3599         (gcc_cv_ld_ro_rw_mix, gcc_cv_ld_eh_frame_hdr, gcc_cv_ld_pie): Use
3600         $in_tree_ld_is_elf instead of grepping ld/Makefile.
3601         * configure: Regenerate.
3602
3603 2003-06-22  Roger Sayle  <roger@eyesopen.com>
3604
3605         * builtins.c (expand_builtin_mathfn_2): Use tree_cons to build
3606         up the stabilized argument list, not build_tree_list.
3607         (expand_builtin_strcpy): Construct new argument list manually
3608         instead of using chainon to modify the original argument list.
3609         (expand_builtin_stpcpy): Construct new argument list manually
3610         instead of using copy_list and chainon.
3611         (expand_builtin_sprintf): New function.  Optimize calls to
3612         sprintf when the format is "%s" or doesn't contain a '%'.
3613         (expand_builtin): Expand BUILT_IN_SPRINTF using the new function
3614         expand_builtin_sprintf.
3615
3616 2003-06-22  Andreas Schwab  <schwab@suse.de>
3617
3618         * function.c (set_insn_locators): Mark as unused.
3619
3620 2003-06-22  Neil Booth  <neil@daikokuya.co.uk>
3621
3622         * common.opt: Add -finline-limit.
3623         * opts.c (common_handle_options): Handle it.
3624         * opts.sh: Temporary kludge for -finline-limit.
3625         * toplev.c (decode_f_option, independent_decode_option): Die.
3626         (parse_options_and_default_flags): No independent_decode_option.
3627
3628 2003-06-22  Andreas Jaeger  <aj@suse.de>
3629
3630         * calls.c (emit_call_1): Readd lost ATTRIBUTE_UNUSED.
3631
3632 2003-06-22  Kazu Hirata  <kazu@cs.umass.edu>
3633
3634         * doc/invoke.texi: Document dumps, .btl, .cfg, and .bypass.
3635
3636 2003-06-22  Andreas Schwab  <schwab@suse.de>
3637
3638         * doc/invoke.texi: Remove leading `-' from options in index.
3639
3640 2003-06-22  Kazu Hirata  <kazu@cs.umass.edu>
3641
3642         * bt-load.c: Follow spelling conventions.
3643
3644 2003-06-22  Kazu Hirata  <kazu@cs.umass.edu>
3645
3646         * expr.c (emit_move_insn_1): Fix a comment typo.
3647
3648 2003-06-22  Kazu Hirata  <kazu@cs.umass.edu>
3649
3650         * doc/invoke.texi: Alphabetize dump options.
3651
3652 2003-06-22  Kazu Hirata  <kazu@cs.umass.edu>
3653
3654         * doc/invoke.texi: Remove a duplicate -dk.
3655
3656 2003-06-22  Kazu Hirata  <kazu@cs.umass.edu>
3657
3658         * doc/invoke.texi: Update dump file names.
3659
3660 2003-06-22  Zack Weinberg  <zack@codesourcery.com>
3661
3662         * config/i370/i370.c, config/i370/i370.h: Use HOST_CHARSET_ASCII
3663         and HOST_CHARSET_EBCDIC, not HC_ASCII and HC_EBCDIC.
3664
3665 2003-06-22  Kazu Hirata  <kazu@cs.umass.edu>
3666
3667         * doc/rtl.texi: Fix the @findex for pre_modify.
3668
3669 2003-06-22  Andreas Jaeger  <aj@suse.de>
3670
3671         * caller-save.c: Convert to ISO C90.
3672         * calls.c: Likewise.
3673         * cfg.c: Likewise.
3674         * cfganal.c: Likewise.
3675         * cfgbuild.c: Likewise.
3676         * cfgcleanup.c: Likewise.
3677         * cfghooks.c: Likewise.
3678         * cfglayout.c: Likewise.
3679         * cfglayout.h: Likewise.
3680         * cfgloop.c: Likewise.
3681         * cfgloop.h: Likewise.
3682         * cfgloopanal.c: Likewise.
3683         * cfgloopmainip.c: Likewise.
3684         * cfgrtl.c: Likewise.
3685
3686 2003-06-22  Richard Earnshaw  <rearnsha@arm.com>
3687
3688         * arm.h (BIGGEST_ALIGNMENT): Use TARGET_REALLY_IWMMXT for selecting
3689         64-bit alignment.
3690
3691 2003-06-22  Richard Earnshaw  <rearnsha@arm.com>
3692
3693         * arm.md (all call_value patterns): Remove register constraints on
3694         value operand.
3695
3696 2003-06-22  Neil Booth  <neil@daikokuya.co.uk>
3697
3698         * common.opt: More -f switches.
3699         * opts.c (common_handle_options): Handle them.
3700         * toplev.c (time_report): Make extern.
3701         (f_options): USe flag_dummy.
3702         (decode_f_option): No need to use f_options now.
3703         * toplev.h (flag_cprop_registers, flag_ssa, flag_ssa_ccp,
3704         flag_ssa_dce, time_report, flag_new_regalloc): Make extern.
3705
3706 2003-06-22  Andreas Jaeger  <aj@suse.de>
3707
3708         * c-lex.c: Convert to ISO C90.
3709         * c-objc-common.c: Likewise.
3710         * c-opts.c: Likewise.
3711         * c-pch.c: Likewise.
3712         * c-ppoutput.c: Likewise.
3713         * c-pragma.h: Likewise.
3714         * c-pretty-print.c: Likewise.
3715         * c-pretty-print.h: Likewise.
3716         * c-semantics.c: Likewise.
3717         * c-tree.h: Likewise.
3718         * c-typeck.c: Likewise.
3719
3720         * c-lang.c: Convert to ISO C90.
3721
3722 2003-06-22  Neil Booth  <neil@daikokuya.co.uk>
3723
3724         * opts.c (find_opt): Fix to always guarantee a find of a
3725         switch with joined parameter.
3726         * opts.h (struct cl_option): New member back_chain.
3727         * opts.sh: Update to calculate and add back_chain member.
3728
3729 2003-06-22  Gabriel Dos Reis <gdr@integrable-solutions.net>
3730
3731         * diagnostic.h (output_host_wide_integer): Declare.
3732         * diagnostic.c (output_long_long_decicaml): New function.
3733         (output_host_wide_integer): Likewise.
3734         (output_format): Use them.  Handle "%ll" and "%w".
3735
3736 2003-06-21  Jason Thorpe  <thorpej@wasabisystems.com>
3737
3738         * config.gcc (*-*-netbsd*): Add t-libgcc-pic to tmake_file.
3739
3740 2003-06-21  Zack Weinberg  <zack@codesourcery.com>
3741
3742         * aclocal.m4 (gcc_AC_C_CHARSET): Delete.
3743         * configure.in: Don't use gcc_AC_C_CHARSET.
3744         * configure, config.in: Regenerate.
3745         * config/i370/i370.c, config/i370/i370.h: Use
3746         (HOST_CHARSET == HC_EBCDIC) or (HOST_CHARSET == HC_ASCII)
3747         instead of HOST_EBCDIC or !HOST_EBCDIC.  Clarify comments a tad.
3748
3749 2003-06-21  Neil Booth  <neil@daikokuya.co.uk>
3750
3751         * Makefile.in: Update.
3752         * common.opt: New switches.
3753         * opts.c: Include diagnostic.h.
3754         (common_handle_option): Handle new switches.
3755         * toplev.c (flag_loop_optimize, flag_crossjumping, flag_if_conversion,
3756         flag_if_conversion2, flag_delete_null_pointer_checks,
3757         flag_rerun_cse_after_loop): Make extern.
3758         (flag_dummy): New.
3759         (f_options): Update to use flag_dummy for moved options.
3760         (decode_f_option): Some switches moved to opts.c.
3761         * toplev.h (flag_loop_optimize, flag_crossjumping, flag_if_conversion,
3762         flag_if_conversion2, flag_delete_null_pointer_checks,
3763         flag_rerun_cse_after_loop, flag_keep_static_consts, flag_peel_loops,
3764         flag_tracer, flag_thread_jumps, flag_unroll_loops,
3765         flag_unroll_all_loops, flag_unswitch_loops): New.
3766
3767 Sat Jun 21 13:41:00 CEST 2003  Jan Hubicka  <jh@suse.cz>
3768
3769         * i386.c (ix86_va_arg): Fix allocation of temporary slot.
3770
3771 2003-06-20  Kazu Hirata  <kazu@cs.umass.edu>
3772
3773         * config/h8300/h8300-protos.h: Add a prototype for
3774         same_cmp_preceding_p.
3775         * config/h8300/h8300.c (same_cmp_preceding): New.
3776         * config/h8300/h8300.md: Extend peephole2's that transform
3777         compare:SI into shorter sequences so that they can deal with
3778         signed comparisons.
3779
3780 2003-06-21  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
3781
3782         * doc/contrib.texi (Contributors): Use Windows instead of Win32.
3783
3784         Update Andreas Jaeger's entry.
3785
3786         Merge the two entries of Kaveh Ghazi, David Edelsohn, and
3787         Loren J. Rittle.
3788
3789 2003-06-21  Nathanael Nerode  <neroden@gcc.gnu.org>
3790
3791         * mkconfig.sh: Add multiple inclusion guards to generated headers.
3792
3793 2003-06-20  Neil Booth  <neil@daikokuya.co.uk>
3794
3795         * c-decl.c (store_parm_decls): Make saved_warn_shadow boolean.
3796         * common.opt: Add remaining -W options and -g.
3797         * diagnostic.c (warnings_are_errors): Remove.
3798         * flags.h: Make most warning flags boolean.
3799         * opts.c (common_handle_option): Handle remaining -W options, and -g.
3800         Move many warning flags from toplev.c, making them boolean.
3801         * toplev.c: Remove many warning flags.
3802         (decode_W_option): Remove.
3803         (decode_g_option): Make extern.  Error on unknown switch.
3804         (lang_independent_W_options): Use warn_dummy.
3805         (independent_decode_option): Just handle -f switches now.
3806         * toplev.h (decode_g_option): New.
3807
3808 2003-06-20  Aldy Hernandez  <aldyh@redhat.com>
3809
3810         PR/11092
3811         * config/rs6000/rs6000.h (LEGITIMATE_CONSTANT_P): Adjust for
3812         vectors.
3813
3814 2003-06-20  Kelley Cook  <kelleycook@wideopenwest.com>
3815
3816         * opts.sh: Tweak awk script for portability.
3817
3818 2003-06-20  Mark Mitchell  <mark@codesourcery.com>
3819
3820         PR c++/10888
3821         * tree-inline.c (expand_call_inline): Do not warn about failing to
3822         inline functions declared in system headers.
3823         * doc/invoke.texi (-Winline): Expand on documentation.
3824
3825 2003-06-20  Richard Henderson  <rth@redhat.com>
3826
3827         * config/alpha/alpha.c (alpha_file_start): Disable
3828         file_start_file_directive for ELF and not MDEBUG.
3829
3830 2003-06-20  J"orn Rennecke <joern.rennecke@superh.com>
3831
3832         * sh.h (ROUND_TYPE_ALIGN): Remove.
3833
3834 2003-06-20  Richard Henderson  <rth@redhat.com>
3835
3836         * hooks.c (hook_int_void_no_regs): Rename from
3837         hook_reg_class_void_no_regs; change return type.
3838         * hooks.h: Update.
3839         * target-def.h (TARGET_BRANCH_TARGET_REGISTER_CLASS): Update.
3840         * target.h (branch_target_register_class): Change return type to int.
3841         Add documentation.
3842         * config/sh/sh.c (sh_target_reg_class): Change return type.
3843         * doc/tm.texi (TARGET_BRANCH_TARGET_REGISTER_CLASS): Likewise.
3844
3845 2003-06-20  Andreas Tobler <toa@pop.agri.ch>
3846
3847         * c-format.c: Change _Bool to bool reverting part of the last
3848         patch.
3849
3850 2003-06-20  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
3851
3852         * som.h (ASM_OUTPUT_SOURCE_LINE): Use targetm.strip_name_encoding to
3853         strip name encoding.
3854
3855 2003-06-20  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
3856
3857         * configure.in (gcc_cv_as_gstabs_flag): Disable if assembler warns.
3858         * configure: Regenerate.
3859         Fixes PR driver/9362.
3860
3861 2003-06-20  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3862
3863         * config/alpha/alpha.c (alpha_file_start): Fix typo.
3864
3865 2003-06-20  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
3866
3867         * config/mips/mips.h (PUT_SDB_FUNCTION_END): Pass 0 as third arg
3868         to ASM_OUTPUT_SOURCE_LINE.
3869
3870 2003-06-20  Daniel Egger  <degger@fhm.edu>
3871             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
3872
3873         * doc/install.texi (Building): Correct and improve statement
3874         about parallel builds.
3875
3876 2003-06-20  Andreas Jaeger  <aj@suse.de>
3877
3878         * c-common.c: Change _Bool to bool reverting part of the last
3879         patch.
3880
3881 2003-06-20  Nathan Sidwell  <nathan@codesourcery.com>
3882
3883         * tree.h (expand_function_end): Remove all parameters.
3884         * function.c (expand_function_end): Remove all parameters.
3885         Use input_location. Never expand_end_bindings.
3886         * c-decl.c (c_expand_body_1): Adjust expand_function_end call.
3887         * coverage.c (create_coverage): Likewise.
3888
3889 2003-06-20  Nick Clifton  <nickc@redhat.com>
3890
3891         * doc/extend.texi (ARM Built-in Functions): New node.  Document
3892         ARM builtin functions for iWMMXt support.
3893
3894 2003-06-20  Eric Botcazou  <ebotcazou@libertysurf.fr>
3895
3896         * doc/install.texi (--with-gnu-as): Mention SPARC/Solaris and
3897         SPARC64/Solaris as platforms where --with-gnu-as makes a difference.
3898         (--with-as): Add @anchor.
3899         (--with-gnu-ld): Fix typo.
3900         (--with-ld): Add @uref to --with-as.
3901
3902 2003-06-19  Zack Weinberg  <zack@codesourcery.com>
3903
3904         * doc/tm.texi: Uniformly use @defmac for macros, rather than
3905         @table items.  Minor formatting and editorial corrections.
3906
3907 2003-06-20  Neil Booth  <neil@daikokuya.co.uk>
3908
3909         * line-map.c, line-map.h: Convert to ISO prototypes.
3910
3911 2003-06-20  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
3912
3913         * gcse.c (store_killed_in_insn): Fix.
3914
3915 2003-06-19  Zack Weinberg  <zack@codesourcery.com>
3916
3917         * target.h (asm_out.file_start, file_start_app_off,
3918         file_start_file_directive): New hooks.
3919         * target-def.h (TARGET_ASM_FILE_START_FILE_DIRECTIVE,
3920         TARGET_ASM_FILE_START_APP_OFF, TARGET_ASM_FILE_START):
3921         New hook-definition macros.
3922         * doc/tm.texi: Document new hooks; remove docs of ASM_FILE_START.
3923         * varasm.c (default_file_start): New.
3924         * output.h: Prototype it.
3925         * toplev.c (init_asm_output): Use targetm.asm_out.file_start.
3926         * system.h: Poison ASM_FILE_START.
3927
3928         * config/alpha/alpha.c (alpha_write_verstamp): Delete.
3929         (alpha_file_start): New, define if !TARGET_ABI_UNICOSMK.
3930         (unicosmk_asm_file_start): Rename unicosmk_file_start,
3931         make static, take no arguments.
3932         (TARGET_ASM_FILE_START, TARGET_ASM_FILE_END,
3933         TARGET_ASM_FILE_START_FILE_DIRECTIVE): Set as appropriate.
3934         * config/alpha/unicosmk.h: Don't define ASM_FILE_START nor
3935         TARGET_ASM_FILE_END.  Remove reference to ASM_FILE_START in
3936         comment.
3937         * config/arc/arc.c (arc_asm_file_start): Rename
3938         arc_file_start, take no arguments, make static.
3939         (TARGET_ASM_FILE_START): Set it.
3940         * config/arm/arm.c (aof_file_start): New static function.
3941         (TARGET_ASM_FILE_START): Set it, when appropriate.
3942         * config/arm/coff.h, config/arm/elf.h:
3943         Set TARGET_ASM_FILE_START_APP_OFF to true.
3944         * config/avr/avr.c (asm_file_start): Rename avr_file_start,
3945         take no arguments, make static.
3946         (TARGET_ASM_FILE_START, TARGET_ASM_FILE_START_FILE_DIRECTIVE):
3947         Set them.
3948         * config/c4x/c4x.c (c4x_file_start): New static function.
3949         (TARGET_ASM_FILE_START, TARGET_ASM_FILE_START_FILE_DIRECTIVE):
3950         Set them.
3951         * config/cris/cris.c (cris_file_start): New static function.
3952         (TARGET_ASM_FILE_START): Set it.
3953         * config/dsp16xx/dsp16xx.c (coff_dsp16xx_file_start): Rename
3954         dsp16xx_file_start, make static.
3955         (luxworks_dsp16xx_file_start): Delete.
3956         (TARGET_ASM_FILE_START): Set it.
3957         * config/h8300/h8300.c (asm_file_start): Rename
3958         h8300_file_start, make static, take no arguments.
3959         (TARGET_ASM_FILE_START): Set it.
3960         * config/i370/i370.c (i370_file_start): New static function.
3961         (TARGET_ASM_FILE_START): Set it.
3962         * config/i386/i386.c (x86_file_start): New static function.
3963         (TARGET_ASM_FILE_START): Set it.
3964         * config/i386/i386.h (X86_FILE_START_VERSION_DIRECTIVE,
3965         X86_FILE_START_FLTUSED): New macros, default to false.
3966         * config/i386/i386-interix.h: Override X86_FILE_START_FLTUSED to 1.
3967         * config/i386/sysv4.h, config/i386/sco5.h: Override
3968         X86_FILE_START_VERSION_DIRECTIVE to true.
3969         * config/ia64/ia64.c (ia64_file_start): New static function.
3970         (TARGET_ASM_FILE_START): Set it.
3971         (emit_safe_across_calls): Take no arguments.
3972         * config/ia64/ia64.md: Update to match.
3973         * config/m32r/m32r.c (m32r_asm_file_start): Rename
3974         m32r_file_start, make static, take no arguments.
3975         (TARGET_ASM_FILE_START): Set it.
3976         * config/m68hc11/m68hc11.c (m68hc11_asm_file_start): Rename
3977         m68hc11_file_start, make static, take no arguments.
3978         (TARGET_ASM_FILE_START, TARGET_ASM_FILE_START_FILE_DIRECTIVE): Set.
3979         (print_options): Delete.
3980         * config/m68k/m68k.c (m68k_hp320_file_start): New static function.
3981         (TARGET_ASM_FILE_START_APP_OFF): Set.
3982         * config/m68k/hp320.h: Set TARGET_ASM_FILE_START to
3983         m68k_hp320_file_start.
3984         * config/mips/mips.c (iris6_asm_file_start, mips_asm_file_start):
3985         Make static, take no arguments.
3986         (TARGET_ASM_FILE_START, TARGET_ASM_FILE_START_FILE_DIRECTIVE): Set.
3987         * config/mmix/mmix.c (mmix_asm_file_start): Rename
3988         mmix_file_start, make static, take no arguments.
3989         (TARGET_ASM_FILE_START, TARGET_ASM_FILE_START_FILE_DIRECTIVE): Set.
3990         * config/mn10300/mn10300.c (asm_file_start): Rename
3991         mn10300_file_start, make static, take no arguments.
3992         (TARGET_ASM_FILE_START, TARGET_ASM_FILE_START_FILE_DIRECTIVE): Set.
3993         * config/ns32k/ns32k.c (TARGET_ASM_FILE_START_APP_OFF): Set.
3994         * config/pa/pa.c (pa_file_start_level, pa_file_start_space,
3995         pa_file_start_file, pa_file_start_mcount, pa_elf_file_start,
3996         pa_som_file_start, pa_linux_file_start, pa_hpux64_gas_file_start,
3997         pa_hpux64_hpas_file_start): New static functions.
3998         * config/pa/elf.h: Set TARGET_ASM_FILE_START to pa_elf_file_start.
3999         * config/pa/pa-linux.h: Set TARGET_ASM_FILE_START to
4000         pa_linux_file_start.
4001         * config/pa/pa64-hpux.h: Set TARGET_ASM_FILE_START to
4002         pa_hpux64_gas_file_start or pa_hpux64_hpas_file_start, as
4003         appropriate.
4004         * config/pa/som.h: Set TARGET_ASM_FILE_START to pa_som_file_start.
4005         * config/rs6000/rs6000.c: Include xcoffout.h when TARGET_XCOFF.
4006         (rs6000_file_start): Make static, take no arguments.  Reset
4007         default_cpu under certain conditions.
4008         (rs6000_xcoff_file_start): New function.
4009         * config/rs6000/rs6000.h (TARGET_ASM_FILE_START): Set.
4010         * config/rs6000/xcoff.h (TARGET_ASM_FILE_START,
4011         TARGET_ASM_FILE_START_FILE_DIRECTIVE): Override.
4012         * config/sh/sh.c (output_file_start): Rename
4013         sh_file_start, make static, take no arguments.  Merge in old
4014         code from sh/elf.h's ASM_FILE_START, conditioned on TARGET_ELF.
4015         (TARGET_ASM_FILE_START, TARGET_ASM_FILE_START_FILE_DIRECTIVE): Set.
4016         * config/sh/sh.c (TARGET_ELF): Define to 0.
4017         * config/sh/elf.h (TARGET_ELF): Redefine to 1.
4018         * config/v850/v850.c (asm_file_start): Delete.
4019         (TARGET_ASM_FILE_START_FILE_DIRECTIVE): Set.
4020         * config/vax/vax.c (vax_file_start): New static function.
4021         (TARGET_ASM_FILE_START, TARGET_ASM_FILE_START_APP_OFF): Set.
4022
4023         * config/darwin.h: Override ASM_FILE_START_FILE_DIRECTIVE to false.
4024         * config/elfos.h, config/svr3.h, config/arm/elf.h, config/arm/pe.h
4025         * config/i386/att.h, config/i386/gas.h, config/i386/linux.h
4026         * config/i386/sysv4.h, config/i386/sco5.h, config/i960/i960-coff.h
4027         * config/m68k/coff.h, config/m68k/hp320.h, config/mcore/mcore-pe.h
4028         * config/vax/vaxv.h: Set ASM_FILE_START_FILE_DIRECTIVE to true.
4029
4030         * config/darwin.h, config/elfos.h, config/alpha/elf.h
4031         * config/alpha/openbsd.h, config/alpha/osf.h, config/alpha/vms.h
4032         * config/arc/arc.h, config/arm/aof.h, config/arm/aout.h
4033         * config/arm/coff.h, config/arm/elf.h, config/arm/pe.h
4034         * config/avr/avr.h, config/c4x/c4x.h, config/cris/cris.h
4035         * config/dsp16xx/dsp16xx.h, config/h8300/elf.h, config/h8300/h8300.h
4036         * config/i370/i370.h, config/i386/att.h, config/i386/gas.h
4037         * config/i386/i386-interix.h, config/i386/linux.h, config/i386/sysv4.h
4038         * config/i386/sco5.h, config/i960/i960-coff.h, config/i960/i960.h
4039         * config/ia64/ia64.h, config/ia64/sysv4.h, config/m32r/m32r.h
4040         * config/m68hc11/m68hc11.h, config/m68k/coff.h, config/m68k/m68k.h
4041         * config/mcore/mcore-pe.h, config/mips/iris6.h, config/mips/mips.h
4042         * config/mmix/mmix.h, config/mn10300/mn10300.h, config/ns32k/ns32k.h
4043         * config/pa/elf.h, config/pa/pa-linux.h, config/pa/pa64-hpux.h
4044         * config/pa/som.h, config/pdp11/pdp11.h, config/rs6000/linux64.h
4045         * config/rs6000/lynx.h, config/rs6000/xcoff.h, config/sh/elf.h
4046         * config/sh/sh.h, config/sparc/sparc.h, config/v850/v850.h
4047         * config/vax/vax.h, config/vax/vaxv.h: Don't (re)define ASM_FILE_START.
4048
4049         * config/alpha/alpha-protos.h, config/arc/arc-protos.h
4050         * config/avr/avr-protos.h, config/dsp16xx/dsp16xx-protos.h
4051         * config/h8300/h8300-protos.h, config/ia64/ia64-protos.h
4052         * config/m32r/m32r-protos.h, config/m68hc11/m68hc11-protos.h
4053         * config/mips/mips-protos.h, config/mmix/mmix-protos.h
4054         * config/mn10300/mn10300-protos.h, config/rs6000/rs6000-protos.h
4055         * config/sh/sh-protos.h, config/v850/v850-protos.h: Update.
4056
4057         * xcoffout.h, config/rs6000/aix.h, config/rs6000/xcoff.h:
4058         Remove reference to ASM_FILE_START in comment.
4059         * config/arm/aof.h, config/arm/aout.h, config/arm/freebsd.h
4060         * config/arm/linux-gas.h, config/arm/netbsd-elf.h
4061         * config/arm/netbsd.h: Delete definition of ARM_OS_NAME.
4062
4063 2003-06-19  Graeme Peterson <gp@qnx.com>
4064
4065         * gcc.c (target_sysroot_suffix, target_sysroot_hdrs_suffix,
4066         SYSROOT_SUFFIX_SPEC, SYSROOT_HEADERS_SUFFIX_SPEC, sysroot_suffix_spec,
4067         sysroot_hdrs_suffix_spec): New.
4068         (static_specs): Initialize new variables.
4069         (add_sysroot_suffix_prefix, do_spec_1, main): Use new variables.
4070         * doc/tm.texi (SYSROOT_SUFFIX_SPEC, SYSROOT_HEADERS_SUFFIX_SPEC):
4071         New macros.
4072
4073 2003-06-19  Andreas Jaeger  <aj@suse.de>
4074
4075         * c-aux-info.c: Convert to ISO C90.
4076         * c-pragma.c: Likewise.
4077         * c-common.c: Likewise.
4078         * c-common.h: Likewise.
4079         * c-convert.c: Likewise.
4080         * c-cppbuiltin.c: Likewise.
4081         * c-dump.c: Likewise.
4082         * c-decl.c: Likewise
4083         * c-format.c: Likewise.
4084         * c-incpath.c: Likewise.
4085         * c-incpath.h: Likewise.
4086
4087 2003-06-19  Roger Sayle  <roger@eyesopen.com>
4088
4089         * builtins.c (expand_errno_check): Assume that flag_errno_math
4090         and HONOR_NANS have been tested before calling here.  Only try
4091         to set errno ourselves if the decl can't throw an exception.
4092         (expand_builtin_mathfn): Move the code to stabilize the arg
4093         after the main switch, so that that its only done when needed.
4094         BUILT_IN_SQRT{,F,L} doesn't set errno if its arg is nonnegative.
4095         Don't modify the original expr when stabilizing the argument.
4096         (expand_builtin_mathfn_2): Likewise, move the code to stabilize
4097         the args after the main switch, and don't modify the orginal exp.
4098
4099 2003-06-19  Aldy Hernandez  <aldyh@redhat.com>
4100
4101         * expr.c (const_vector_from_tree): Initialize remaining elements
4102         to 0.
4103
4104 2003-06-19  Aldy Hernandez  <aldyh@redhat.com>
4105
4106         * config/rs6000/spe.md ("spe_evfscfsi"): Change operand types.
4107         Change "fix" to "float".
4108
4109 2003-06-19  Andreas Jaeger  <aj@suse.de>
4110
4111         * c-tree.h: Remove declaration of poplevel.
4112
4113         * tree.h: Remove declaration of approx_sqrt.
4114
4115         * c-lex.c: Remove redundant declaration of asm_out_file.
4116
4117         * flags.h: Remove declaration of warn_unknown_pragma and
4118         main_input_filename.
4119
4120         * rtl.h: Remove functions from fold-const.c since they're already
4121         declared in tree.h.
4122
4123         * regs.h: Remove redundant declaration of reg_names.
4124
4125         * bt-load.c (migrate_btr_defs): Correct printf arguments.
4126
4127         * protoize.c: Fix breakage from last patch.
4128
4129 2003-06-19  J"orn Rennecke <joern.rennecke@superh.com>
4130
4131         * hooks.h (hook_reg_class_void_no_regs): Only declare if tm.h
4132         has been included.
4133
4134 2003-06-18  James A Morrison <ja2morri@student.math.uwaterloo.ca>
4135
4136         * config/sparc/sparc.c: Update copyright year.
4137
4138 2003-06-19  David Edelsohn  <edelsohn@gnu.org>
4139
4140         * config/rs6000/rs6000.c (init_cumulative_args): Limit CALL_LIBCALL
4141         to ABI_V4.
4142
4143 2003-06-18  Joseph S. Myers  <jsm@polyomino.org.uk>
4144
4145         PR bootstrap/4068
4146         * config/i386/liunx.h: Don't include sys/ucontext.h for glibc 2.0.
4147
4148 2003-06-19  Kazu Hirata  <kazu@cs.umass.edu>
4149
4150         * config/h8300/h8300.c (TARGET_INITIALIZER and friends): Move
4151         to the end of the file.  Remove unnecessary prototypes.
4152
4153 2003-06-19  Hans-Peter Nilsson  <hp@axis.com>
4154
4155         * bt-load.c (migrate_btr_def) [INSN_SCHEDULING]: Conditionalize
4156         calls to insn_default_latency and result_ready_cost.  Initialize
4157         def_latency to 1.
4158
4159 2003-06-18  Richard Henderson  <rth@redhat.com>
4160
4161         * config/ia64/unwind-ia64.c (_Unwind_GetCFA): New.
4162         (_Unwind_FindEnclosingFunction): Implement.
4163
4164 2003-06-18  Kazu Hirata  <kazu@cs.umass.edu>
4165
4166         * toplev.c (rest_of_handle_sched): Hide the entire function if
4167         INSN_SCHEDULING is not defined.
4168         (rest_of_compilation): Call rest_of_handle_sched() only when
4169         INSN_SCHEDULING is defined.
4170
4171 2003-06-18  Stephen Clarke <stephen.clarke@superh.com>
4172             J"orn Rennecke <joern.rennecke@superh.com>
4173
4174         * bt-load.c: New file.
4175         * Makefile.in (OBJS): Include bt-load.o
4176         (bt-load.o): Add dependencies.
4177         * flags.h (flag_branch_target_load_optimize): Declare.
4178         (flag_branch_target_load_optimize2): Likewise.
4179         * hooks.c (hook_reg_class_void_no_regs): New function.
4180         (hook_bool_bool_false): Likewise.
4181         * hooks.h (hook_reg_class_void_no_regs, hook_bool_bool_false): Declare.
4182         * rtl.h (branch_target_load_optimize): Declare.
4183         * target-def.h (TARGET_BRANCH_TARGET_REGISTER_CLASS): Define.
4184         (TARGET_BRANCH_TARGET_REGISTER_CALLEE_SAVED): Likewise.
4185         (TARGET_INITIALIZER): Include these.
4186         * target.h (struct gcc_target): Add branch_target_register_class
4187         and branch_target_register_callee_saved members.
4188         * toplev.c (enum dump_file_index): Add DFI_branch_target_load
4189         (dump_file) Add "tars" entry.
4190         (flag_branch_target_load_optimize): New variable.
4191         (flag_branch_target_load_optimize2): Likewise.
4192         (lang_independent_options): Add entries for new options.
4193         (rest_of_compilation): Call branch_target_load_optimize.
4194         * doc/tm.texi (TARGET_BRANCH_TARGET_REGISTER_CLASS): Document.
4195         (TARGET_BRANCH_TARGET_REGISTER_CALLEE_SAVED): Likewise.
4196         * doc/invoke.texi: Document -fbranch-target-load-optimize and
4197         -fbranch-target-load-optimize2.
4198         * rtl.h (epilogue_completed): Declare.
4199         * recog.c (epilogue_completed): New variable.
4200         * toplev.c (rest_of_compilation): Set it.
4201         * flow.c (mark_regs_live_at_end): Use it.
4202         * config/ia64/ia64.c (ia64_output_mi_thunk): Set it.
4203         * config/rs6000/rs6000.c (rs6000_output_mi_thunk): Likewise.
4204         * config/sh/sh.c (sh_output_mi_thunk): Likewise.
4205         * config/sparc/sparc.c (sparc_output_mi_thunk): Likewise.
4206
4207         * sh.c (shmedia_space_reserved_for_target_registers): New variable.
4208         (sh_target_reg_class): New function.
4209         (sh_optimize_target_register_callee_saved): Likwise.
4210         (shmedia_target_regs_stack_space): Likewise.
4211         (shmedia_reserve_space_for_target_registers_p): Likewise.
4212         (shmedia_target_regs_stack_adjust): Likewise.
4213         (TARGET_BRANCH_TARGET_REGISTER_CLASS): Override.
4214         (TARGET_BRANCH_TARGET_REGISTER_CALLEE_SAVED): Likewise.
4215         (calc_live_regs): If flag_branch_target_load_optimize2 and
4216         TARGET_SAVE_ALL_TARGET_REGS is enabled, and we have space reserved
4217         for target registers, make sure that we save all target registers.
4218         (sh_expand_prologue, sh_expand_epilogue): Take target register
4219         optimizations into account.  Collapse stack adjustments if that
4220         is beneficial.
4221         (initial_elimination_offset): Reserve space for target registers
4222         if necessary.
4223         * sh.h (SAVE_ALL_TR_BIT, TARGET_SAVE_ALL_TARGET_REGS): Define.
4224         (OPTIMIZATION_OPTIONS): Enable flag_branch_target_load_optimize.
4225
4226 2003-06-18  Nick Clifton  <nickc@redhat.com>
4227
4228         * config.gcc: Add an extra_header for ARM targets.
4229         Support configuring with --with-cpu=iwmmxt.
4230         * doc/invoke.texi: Document new value for -mcpu= ARM switch.
4231         * config/arm/aof.h (REGISTER_NAMES): Add iwmmxt register
4232         names.  Fix formatting.
4233         * config/arm/aout.h (REGISTER_NAMES): Add iwmmxt register
4234         names.
4235         * config/arm/arm-protos.h (arm_emit_vector_const): New
4236         prototype.
4237         (arm_output_load_gr): New prototype.
4238         * config/arm/arm.c (extra_reg_names1): Delete.
4239         (TARGET_INIT_BUILTINS, TARGET_EXPAND_BUILTIN, FL_IWMMXT,
4240         * arch_is_iwmmxt): Define.
4241         (all_cores, all_architecture): Add entry for iwmmxt.
4242         (arm_override_options): Add support for iwmmxt.
4243         (use_return_insn, arm_function_arg, arm_legitimate_index_p,
4244         arm_print_value, arm_rtx_costs_1, output_move_double,
4245         arm_compute_save_reg_mask, arm_output_epilogue,
4246         arm_get_frame_size, arm_expand_prologue, arm_print_operand,
4247         arm_assemble_integer, arm_hard_regno_ok, arm_regno_class):
4248         Likewise.
4249         (arm_init_cumulative_args): Count iwmmxt registers.
4250         (arm_function_ok_for_sibcall): Return false of sibcall_blocked
4251         has been set.
4252         (struct minipool_node): Add fix_size field.
4253         (add_minipool_forward_ref): Add support for 8-byte aligning of
4254         the pool.
4255         (add_minipool_backward_ref, add_minipool_offsets,
4256         dump_minipool, push_minipool_fix): Likewise.
4257         (struct builtin_description): New struct.
4258         (builtin_description): New array of iwmmxt builtin functions.
4259         (arm_init_iwmmxt_builtins): New function.
4260         (arm_init_builtins): New function.
4261         (safe_vector_operand): New function.
4262         (arm_expand_binop_builtin): New function.
4263         (arm_expand_unop_builtin): New function.
4264         (arm_expand_builtin): New function.
4265         (arm_emit_vector_const): New function.
4266         (arm_output_load_gr): New function.
4267         * config/arm/arm.h (TARGET_CPU_iwmmxt, TARGET_IWMMXT,
4268         TARGET_REALLY_IWMMXT, arm_arch_iwmmxt, IWMMXT_ALIGNMENT,
4269         TYPE_NEEDS_IWMMXT_ALIGNMENT, ADJUST_FIELD_ALIGN,
4270         DATA_ALIGNMENT, LOCAL_ALIGNMENT, VECTOR_MODE_SUPPORTED_P): Define.
4271         (BIGGEST_ALIGNMENT): Set to 64 if ATPCS support is enabled.
4272         (CPP_CPU_ARCH_SPEC): Add entries for iwmmxt.
4273         (FIXED_REGISTERS, CALL_USED_REGISTERS, REG_ALLOC_ORDER,
4274         reg_class, REG_CLASS_NAMES, REG_CLASS_CONTENTS,
4275         REG_CLASS_FOR_LETTER): Add iwmmxt registers.
4276         (SUBTARGET_CONDITIONAL_REGISTER_USAGE): Disable iwmmxt
4277         registers unless the iwmmxt target is selected.
4278         (FIRST_IWMMXT_GR_REGNUM, LAST_IWMMXT_GR_REGNUM,
4279         FIRST_IWMMXT_REGNUM, LAST_IWMMXT_REGNUM, IS_IWMMXT_REGNUM,
4280         IS_IWMMXT_GR_REGNUM): Define.
4281         (FIRST_PSEUDO_REGISTER): Bump to 63.
4282         (struct machine_function): Add sibcall_blocked field.
4283         (Struct CUMULATIVE_ARGS): Add iwmmxt_nregs, named_count and
4284         nargs fields.
4285         (enum arm_builtins): New enum list.
4286         * config/arm/arm.md (UNSPEC_WSHUFH, UNSPEC_WACC,
4287         UNSPEC_TMOVMSK, UNSPEC_WSAD, UNSPEC_WSADZ, UNSPEC_WMACS,
4288         UNSPEC_WMACU, UNSPEC_WMACSZ, UNSPEC_WMACUZ, UNSPEC_CLRDI,
4289         UNSPEC_WMADDS, UNSPEC_WMADDU): New unspecs.
4290         (VUNSPEC_TMRC, VUNSPEC_TMCR, VUNSPEC_ALIGN8, VUNSPEC_WCMP_EQ,
4291         VUNSPEC_WCMP_GTU, VUNSPEC_WCMP_GT): New vunspecs.
4292         (movv2si, movv4hi, movv8qi): New expands for vector moves.
4293         Include iwmmxt.md.
4294         * config/arm/t-xscale-elf (MULTILIB_OPITONS): Add iwmmxt
4295         multilib.
4296         (MULTILIB_DIRNAMES, MULTILIB_REDUNDANT_DIRS): Likewise.
4297         * config/arm/mmintrin.h: New ARM specific header file.
4298         * config/arm/iwmmx.md: New iWMMXt specific machine patterns.
4299
4300 2003-06-18  J"orn Rennecke <joern.rennecke@superh.com>
4301
4302         * toplev.c (Remaining -d letters summary): Update.
4303
4304 2003-06-18  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
4305
4306         * config/rs6000/rs6000.c (init_cumulative_args): Add and handle LIBCALL
4307         argument.
4308         (function_arg): Handle CALL_LIBCALL flag.
4309         * config/rs6000/rs6000-protos.h (init_cumulative_args): Update
4310         prototype.
4311         * config/rs6000/rs6000.h (CALL_LIBCALL): New macro.
4312         (INIT_CUMULATIVE_LIBCALL_ARGS): New macro.
4313         (INIT_CUMULATIVE_ARGS): Add LIBCALL argument.
4314         (INIT_CUMULATIVE_INCOMING_ARGS): Likewise.
4315
4316 2003-06-18  Neil Booth  <neil@daikokuya.co.uk>
4317
4318         * Makefile.in: Update.
4319         * common.opt: New options.
4320         * opts.c (maybe_warn_unused_parameter, set_Wextra, handle_param,
4321         set_Wunused): New.
4322         (common_handle_option): Handle new options.
4323         * toplev.c (set_target_switch): Export.
4324         (set_Wextra, set_Wunused, maybe_warn_unused_parameter): Move to opts.c.
4325         (decode_W_option): -Wunused and -Wextra handled in opts.c now.
4326         (independent_decode_option): More options handled in opts.c now.
4327         Change prototype.
4328         * toplev.h (set_target_switch): New.
4329
4330 2003-06-17  Robert Abeles  <rabeles@archaelogic.com>
4331
4332         PR debug/4252
4333         * c-opts.c (c_common_handle_option): Pass -fdump argument suffix
4334         to dump_switch_p().
4335         * tree-dump.c (dump_switch_p): Remove redundant 'dump-' prefix
4336         from static strings in dump_files.
4337
4338 2003-06-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4339
4340         * system.h (ANSI_PROTOTYPES, PTR_CONST, LONG_DOUBLE, VPARAMS,
4341         VA_OPEN, VA_FIXEDARG, VA_CLOSE, VA_START): undef and poison these
4342         libiberty macros.
4343
4344 2003-06-17  Jason Merrill  <jason@redhat.com>
4345
4346         PR c++/10929
4347         * tree-inline.c (expand_call_inline): Don't warn about failing to
4348         inline a function which was made inline by -finline-functions.
4349
4350 2003-06-17  Kazu Hirata  <kazu@cs.umass.edu>
4351
4352         * config/h8300/h8300-protos.h: Update to ISO C.
4353         * config/h8300/h8300.c: Likewise.
4354         * config/h8300/h8300.h: Likewise.
4355         * config/h8300/h8300.md: Likewise.
4356
4357 2003-06-16  Nathanael Nerode  <neroden@gcc.gnu.org>
4358
4359         * configure.in: Replace BUILD_CC references with CC_FOR_BUILD.
4360         * configure: Regenerate.
4361         * Makefile.in: Replace BUILD_CC references with CC_FOR_BUILD.
4362
4363 2003-06-17  Ranjit Mathew  <rmathew@hotmail.com>
4364
4365         * install.texi (Testing): Add information on how to run Java
4366         runtime tests separately.
4367
4368 2003-06-17  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
4369
4370         * config/mips/mips.md (trap): Use break 0 when !TARGET_GAS.
4371
4372         * config/mips/iris6-o32.h (MIPS_ISA_DEFAULT): Remove.
4373         (MIPS_CPU_STRING_DEFAULT): Redefine to mips2.
4374
4375 2003-06-17  Christopher Faylor  <cgf@redhat.com>
4376
4377         * doc/install.texi: Add msvc rebuild caveat.
4378
4379 2003-06-17  Kazu Hirata  <kazu@cs.umass.edu>
4380
4381         * config/sh/coff.h: Replace Hitachi with Renesas.
4382         * config/sh/elf.h: Likewise.
4383         * config/sh/embed-elf.h: Likewise.
4384         * config/sh/lib1funcs.asm: Likewise.
4385         * config/sh/sh-protos.h: Likewise.
4386         * config/sh/sh.c: Likewise.
4387         * config/sh/sh.h: Likewise.
4388         * config/sh/sh.md: Likewise.
4389
4390 2003-06-17  Kazu Hirata  <kazu@cs.umass.edu>
4391
4392         * ChangeLog.3: Fix comment typos.
4393         * ChangeLog.6: Likewise.
4394         * config/d30v/d30v.c: Likewise.
4395         * config/h8300/h8300.md: Likewise.
4396         * config/m32r/m32r.md: Likewise.
4397         * config/mips/mips.c: Likewise.
4398         * config/mips/mips.md: Likewise.
4399         * config/ns32k/NOTES: Likewise.
4400
4401 2003-06-17  Ranjit Mathew  <rmathew@hotmail.com>
4402             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
4403
4404         * doc/sourcebuild.texi (libgcj Tests): Simplify instructions on how
4405         to run Java runtime tests separately.
4406
4407 2003-06-17  Kazu Hirata  <kazu@cs.umass.edu>
4408
4409         * config/h8300/h8300-protos.h: Update a comment.
4410
4411 2003-06-17  J"orn Rennecke <joern.rennecke@superh.com>
4412
4413         * sh.h (ROUND_TYPE_ALIGN, LOCAL_ALIGNMENT): Complex modes
4414         are aligned like integral modes.
4415         (SH5_WOULD_BE_PARTIAL_NREGS): Also test for CDImode and DCmode.
4416
4417         * sh.h (EXTRA_CONSTRAINT_Csy): Allow PIC_DIRECT_ADDR_P.
4418         (LEGITIMATE_PIC_OPERAND_P): Allow LABEL_REF.
4419         * sh.md (*pt): Remove.
4420
4421         * sh.h (REG_ALLOC_ORDER): Avoid squandering call-saved registers.
4422
4423         * sh.md (return_media_rte): New pattern.
4424         (return_media): Use it.
4425
4426 2003-06-17  Kazu Hirata  <kazu@cs.umass.edu>
4427
4428         * doc/contrib.texi: Replace Hitachi with Renesas.
4429         * doc/install.texi: Likewise.
4430         * doc/invoke.texi: Likewise.
4431
4432 2003-06-17  J"orn Rennecke <joern.rennecke@superh.com>
4433
4434         * sh.h (CONST_OK_FOR_J16): Fix HOST_BITS_PER_WIDE_INT >= 64
4435         behaviour.
4436
4437 2003-06-17  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
4438
4439         * doc/tm.texi (MD_FALLBACK_FRAME_STATE_FOR): Mention MAKE_THROW_FRAME.
4440
4441         * config/rs6000/linux.h (MD_FALLBACK_FRAME_STATE_FOR): Partly revert
4442         2003-01-23 patch. Corrected to handle kernels with changed ucontext.
4443
4444         * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Error on invalid
4445         -msdata=eabi usages.
4446
4447         * gcc/config/rs6000/sysv4.h (USE_LIBC_1): Delete all uses.
4448
4449 2003-06-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4450
4451         * alloc-pool.c: Don't check HAVE_LONG_DOUBLE.
4452         * fixinc/gnu-regex.c: Don't define `volatile'.
4453         * ggc-page.c: Don't check HAVE_LONG_DOUBLE.
4454         * ggc-simple.c: Likewise.
4455         * system.h: Don't define `volatile'.
4456
4457         * aclocal.m4 (gcc_AC_C_VOLATILE, gcc_AC_C_LONG_DOUBLE): Delete.
4458         * configure.in (gcc_AC_C_VOLATILE, gcc_AC_C_LONG_DOUBLE): Don't
4459         call these macros.
4460         * config.in, configure: Regenerated.
4461
4462 2003-06-17  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4463
4464         * config/ia64/ia64.c (ia64_expand_builtin, case IA64_BUILTIN_BSP):
4465         Handle POINTERS_EXTEND_UNSIGNED.
4466
4467 2003-06-17  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
4468
4469         * config/mips/mips.c (TARGET_ASM_UNALIGNED_DI_OP) [TARGET_IRIX5 &&
4470         !TARGET_IRIX6]: Define as NULL.
4471
4472 2003-06-17  Eric Botcazou  <ebotcazou@libertysurf.fr>
4473
4474         * config/sparc/sparc.c (sparc_va_arg): Don't align 16-byte+ structures.
4475
4476 2003-06-17  Eric Botcazou  <ebotcazou@libertysurf.fr>
4477
4478         * dbxout.c (dbxout_source_line_counter): New global variable.
4479         Mark it with GTY(()).
4480         (dbxout_source_line): Increment dbxout_source_line_counter
4481         and pass it to ASM_OUTPUT_SOURCE_LINE.
4482         * sdbout.c (sdbout_source_line_counter): New global variable.
4483         Mark it with GTY(()).
4484         (unnamed_struct_number): Mark it with GTY(()).
4485         (sdbout_source_line): Increment sdbout_source_line_counter
4486         and pass it to ASM_OUTPUT_SOURCE_LINE.
4487         * xcoffout.c (ASM_OUTPUT_SOURCE_LINE): Add third parameter
4488         (xcoffout_source_line): Pass 0 as third argument to
4489         ASM_OUTPUT_SOURCE_LINE.
4490         (xcoffout_begin_prologue): Likewise.
4491         * config/dbxout.h (ASM_OUTPUT_SOURCE_LINE): Add third parameter.
4492         Use it instead of 'sym_lineno' but without incrementing it.
4493         * config/dbxelf.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
4494         * config/lynx.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
4495         * config/ptx4.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
4496         * config/alpha/alpha.c (alpha_start_function): Pass 0 as third
4497         argument to ASM_OUTPUT_SOURCE_LINE.
4498         * config/alpha/alpha.h (ASM_OUTPUT_SOURCE_LINE): Add third parameter.
4499         * config/arm/aout.h: Remove useless comment.
4500         * config/avr/avr.h (ASM_OUTPUT_SOURCE_LINE): Add third parameter.
4501         * config/i960/i960.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
4502         * config/m32r/m32r.h (ASM_OUTPUT_SOURCE_LINE): Add third parameter.
4503         Use it instead of 'sym_lineno' but without incrementing it.
4504         * config/m68k/hp320.h (ASM_OUTPUT_SOURCE_LINE): Add third parameter.
4505         * config/mcore/mcore-pe.h (ASM_OUTPUT_SOURCE_LINE): Add third
4506         parameter. Use it instead of 'sym_lineno' but without incrementing it.
4507         * config/mips/mips.c (mips_output_function_prologue): Pass 0 as third
4508         argument to ASM_OUTPUT_SOURCE_LINE.
4509         * config/mips/mips.h (ASM_OUTPUT_SOURCE_LINE): Add third parameter.
4510         * config/mmix/mmix.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
4511         * config/pa/som.h (ASM_OUTPUT_SOURCE_LINE): Add third parameter.
4512         Use it instead of 'sym_lineno' but without incrementing it.
4513         * config/rs6000/linux64.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
4514         * config/sh/elf.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
4515         * config/sparc/aout.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
4516         * config/sparc/pbd.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
4517         * doc/tm.texi (ASM_OUTPUT_SOURCE_LINE): Document third parameter.
4518
4519 2003-06-17  Richard Sandiford  <rsandifo@redhat.com>
4520
4521         * config/mips/mips-protos.h (mips_expand_block_move): Declare.
4522         (expand_block_move, output_block_move): Remove.
4523         * config/mips/mips.h (enum block_move_type): Remove.
4524         * config/mips/mips.c (block_move_call, output_block_move): Remove.
4525         (mips_block_move_straight, mips_adjust_block_mem): New function.
4526         (mips_block_move_loop): Renamed and reworked from block_move_loop.
4527         (mips_expand_block_move): Likewise expand_block_move.  Return false
4528         to fall back on the target-independent code.
4529         * config/mips/mips.md (movstrsi): Use mips_expand_block_move.
4530         (movstrsi_internal*): Remove.
4531
4532 2003-06-16  Zack Weinberg  <zack@codesourcery.com>
4533
4534         * cpplib.h, cpphash.h, cppcharset.c, cpperror.c, cppexp.c
4535         * cppfiles.c, cpphash.c, cppinit.c, cpplex.c, cpplib.c
4536         * cppmacro.c, cpppch.c, cpptrad.c, cppspec.c: Convert to
4537         ISO C: new-style function declarations, no need for PARAMS,
4538         no special punctuation on indirect function calls, use string
4539         constant concatenation where convenient.
4540
4541 2003-06-17  Andreas Jaeger  <aj@suse.de>
4542
4543         * rtl.h: Remove declarations from coverage.h.
4544         * toplev.c: Include coverage.h.
4545         * Makefile.in (toplev.o): Depend on coverage.h.
4546
4547         * toplev.h: Remove extra declaration of print_time.
4548
4549         * gengtype.c (close_output_files): Remove duplicated declaration.
4550
4551 2003-06-16  Nathanael Nerode  <neroden@gcc.gnu.org>
4552
4553         * config/sparc/sysv4.h: Remove target-independent comment;
4554         replace "GNU CC" with "GCC".
4555         * config/vxworks.h: Replace "GNU compiler" with "GCC".
4556         * config/sparc/aout.h, config/sparc/biarch64.h, config/sparc/elf.h,
4557         config/sparc/freebsd.h, config/sparc/linux.h, config/sparc/linux64.h,
4558         config/sparc/lite.h, config/sparc/litecoff.h, config/sparc/liteelf.h,
4559         config/sparc/netbsd-elf.h, config/sparc/openbsd.h,
4560         config/sparc/rtemself.h, config/sparc/sol2-64.h,
4561         config/sparc/sol2-bi.h, config/sparc/sol2-gas-bi.h,
4562         config/sparc/sol2-gld-bi.h, config/sparc/sol2-gld.h,
4563         config/sparc/sol2.h, config/sparc/sp64-aout.h,
4564         config/sparc/sp64-elf.h, config/sparc/sp86x-elf.h,
4565         config/sparc/sparc-protos.h, config/sparc/sysv4-only.h: Replace
4566         "GNU compiler", "GNU CC" with "GCC".
4567         * config/sparc/cypress.md, config/sparc/hypersparc.md,
4568         config/sparc/sparc-modes.def, config/sparc/sparc.c,
4569         config/sparc/sparc.md, config/sparc/sparclet.md,
4570         config/sparc/supersparc.md, config/sparc/ultra1_2.md,
4571         config/sparc/ultra3.md: Replace "GNU CC", "GNU Compiler", and
4572         "GNU C Compiler" with "GCC".
4573         * config/ip2k/ip2k.h: Replace "GNU CC" and "GNU compiler" with "GCC".
4574
4575 2003-06-16  Aldy Hernandez  <aldyh@redhat.com>
4576
4577         * simplify-rtx.c (simplify_subreg): Do not over-extend vector
4578         constants.
4579
4580         * testsuite/gcc.c-torture/execute/simd-4.c: New.
4581
4582 2003-06-16  Nathanael Nerode  <neroden@gcc.gnu.org>
4583
4584         * config/ip2k/ip2k.h: Remove target-independent comments.
4585
4586         * config.gcc: Explicitly mention elfos.h in ip2k entry.
4587         * config/ip2k/ip2k.h: Don't #include it here.
4588
4589 2003-06-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4590
4591         * bitmap.c, builtins.c, c-incpath.c, cgraph.c, config/frv/frv.c,
4592         config/mips/mips.c, cppfiles.c, cpphash.c, cppinit.c, cpplib.c,
4593         dwarf2out.c, dwarfout.c, except.c, expr.c, expr.h, fold-const.c,
4594         function.c, gcc.c, genoutput.c, gensupport.c, global.c,
4595         haifa-sched.c, hashtable.c, ifcvt.c, integrate.c, local-alloc.c,
4596         loop.c, mips-tdump.c, mips-tfile.c, mkdeps.c, protoize.c,
4597         read-rtl.c, recog.h, reload1.c, sbitmap.c, ssa-dce.c,
4598         stringpool.c, tlink.c, tree.c, varasm.c, varray.c: Don't use
4599         the PTR macro.
4600
4601         * gengtype.c: Don't use UNION_INIT_ZERO.
4602         * system.h (UNION_INIT_ZERO): Delete.
4603
4604 2003-06-16  Richard Henderson  <rth@redhat.com>
4605
4606         * simplify-rtx.c (simplify_subreg): Use GET_MODE_SIZE instead of
4607         GET_MODE_UNIT_SIZE when simplifying constant vectors.
4608
4609 2003-06-16  Andreas Jaeger  <aj@suse.de>
4610
4611         * timevar.c (get_run_time): Remove function provided also by
4612         libiberty.
4613         * timevar.h: Remove get_run_time declaration.
4614
4615 2003-06-16  Kazu Hirata  <kazu@cs.umass.edu>
4616
4617         * config/m68hc11/m68hc11.c (m68hc11_rtx_costs): Remove
4618         unreachable code.
4619
4620 2003-06-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4621
4622         * builtin-attrs.def, builtin-attrs.def, builtins.c, cpplex.c,
4623         cpplib.c, gencheck.c, gengenrtl.c, machmode.def, protoize.c: Don't
4624         use macros from "symcat.h", instead rely on ISO C.
4625
4626         * system.h: Don't include "symcat.h".
4627         * configure.in (AC_C_STRINGIZE): Delete.
4628         * config.in, configure: Regenerate.
4629
4630 2003-06-16  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4631
4632         * Makefile.in (install-mkheaders): Use INSTALL_SCRIPT for scripts.
4633
4634         * tree.h (STMT_CHECK): New macro.
4635         Also upper-case argument names on all checking macros and
4636         fix some whitespace problems; assume CODE argument does not
4637         have side-effects.
4638
4639 2003-06-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4640
4641         * scan.h: Convert to ISO C.
4642         * system.h: Likewise.
4643
4644         * c-format.c (dynamic_format_types): New pointer for dynamic data.
4645         (find_length_info_modifier_index, init_dynamic_asm_fprintf_info):
4646         New functions split out of...
4647         (handle_format_attribute): ...here.
4648
4649 2003-06-16  J"orn Rennecke <joern.rennecke@superh.com>
4650
4651         * sh.h (REG_CLASS_FROM_LETTER): Change to:
4652         (REG_CLASS_FROM_CONSTRAINT).
4653         (CONST_OK_FOR_I): Rename to:
4654         (CONST_OK_FOR_I08).  Changed all users.
4655         (CONST_OK_FOR_J): Rename to:
4656         (CONST_OK_FOR_I16).  Changed all users.
4657         (CONST_OK_FOR_K): Rename to:
4658         (CONST_OK_FOR_P27).  Changed all users.
4659         (CONST_OK_FOR_L): Rename to:
4660         (CONST_OK_FOR_K08).  Changed all users.
4661         (CONST_OK_FOR_O): Rename to:
4662         (CONST_OK_FOR_I06).  Changed all users.
4663         (CONST_OK_FOR_P): Rename to:
4664         (CONST_OK_FOR_I10).  Changed all users.
4665         (CONSTRAINT_LEN, CONST_OK_FOR_I, CONST_OK_FOR_J16): Define.
4666         (CONST_OK_FOR_J, CONST_OK_FOR_K, CONST_OK_FOR_P): Likewise.
4667         (EXTRA_CONSTRAINT_A, EXTRA_CONSTRAINT_Bsc): Likewise.
4668         (EXTRA_CONSTRAINT_B, PIC_OFFSET_P, PIC_DIRECT_ADDR_P): Likewise.
4669         (EXTRA_CONSTRAINT_Cpg, EXTRA_CONSTRAINT_C): Likewise.
4670         (EXTRA_MEMORY_CONSTRAINT,(EXTRA_CONSTRAINT_Sr0): Likewise.
4671         (CONST_OK_FOR_LETTER_P): Replace with
4672         (CONST_OK_FOR_CONSTRAINT_P).
4673         (EXTRA_CONSTRAINT_S): Rename to:
4674         (EXTRA_CONSTRAINT_C16).  Changed all users.
4675         (MOVI_SHORI_BASE_OPERAND_P): Don't allow direct addresses.
4676         (EXTRA_CONSTRAINT_T): Rename to:
4677         (EXTRA_CONSTRAINT_Csy).  Changed all users.
4678         (EXTRA_CONSTRAINT_Z): Remove.
4679         (EXTRA_CONSTRAINT): Replace with:
4680         (EXTRA_CONSTRAINT_STR).
4681         (EXTRA_CONSTRAINT_U): Rename to:
4682          (EXTRA_CONSTRAINT_Z).  Changed all users.
4683         * sh.c (and_operand): Use CONST_OK_FOR_J16.
4684         * sh.md (cmpeqsi_t-1, cmpeqsi_t, adddi3_media): Use new constraints.
4685         (addsi3_media, addsi3_compact, andsi3_compact, anddi3): Likewise.
4686         (iorsi3, iordi3, xorsi3, xordi3, ashlsi3_std, ashlhi3_k): Likewise.
4687         (lshrsi3_k, movsi_i, movsi_ie, movsi_i_lowpart, movsi_media): Likewise.
4688         (movsi_media_nofpu, movqi_media, movhi_i, movhi_media): Likewise.
4689         (*movdi_i, movdi_media, movdi_media_nofpu, shori_media): Likewise.
4690         (movdf_media, movdf_media_nofpu, movv2sf_i, movv4sf_i): Likewise.
4691         (movsf_media, movsf_media_nofpu, movsi_y, beq_media): Likewise.
4692         (beq_media_i, bne_media, pt, ptb, movv8qi_i, movv2hi_i): Likewise.
4693         (movv4hi_i, movv2si_i, negcmpeqv8qi, negcmpeqv2si): Likewise.
4694         (negcmpeqv4hi, negcmpgtuv8qi, negcmpgtv2si, negcmpgtv4hi): Likewise.
4695         (mcmv, mcnvs_lw, mcnvs_wb, mcnvs_wub, mextr_rl, mextr_lr): Likewise.
4696         (mextr1, mextr2, mextr3, mextr4, mextr5, mextr6, mextr7): Likewise.
4697         (mperm_w, mperm_w_little, mperm_w_big, msad_ubq_i): Likewise.
4698         (mshards_q, mshfhi_b, mshflo_b, mshf4_b, mshf0_b, mshfhi_l): Likewise.
4699         (mshflo_l, mshf4_l, mshf0_l, mshfhi_w, mshflo_w, mshf4_w): Likewise.
4700         (mshf0_w, mshflo_w_x, mshfhi_l_di, mshfhi_l_di_rev): Likewise.
4701         (mshflo_l_di_rev, mshflo_l_di_x, concat_v2sf): Likewise.
4702         (mshflo_l_di_x_rev, subv2si3, subv4hi3, sssubv2si3): Likewise.
4703         (sssubv4hi3): Likewise.
4704         (movsf_i): Change I[08]/r to G/r.
4705         (movsf_ie): Change f/{G,H}/c/X to f/{G,H}/c/Bsc.
4706
4707         * sh.c (sh_output_mi_thunk): Use CONST_OK_FOR_ADD.
4708
4709 2003-06-16  Vladimir Makarov  <vmakarov@redhat.com>
4710
4711         * config/i386/i386.c (ix86_memory_move_cost): Fix typo.
4712
4713 2003-06-16  Andreas Jaeger  <aj@suse.de>
4714
4715         * basic-block.h: Remove duplicate prototype of
4716         note_prediction_to_br_prob.
4717
4718         * tree.h: Remove duplicate prototype of strip_float_extensions.
4719
4720 2003-06-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4721
4722         * config/c4x/c4x.c: Don't include "c-tree.h".
4723         * config/pa/pa.c: Likewise.
4724         * langhooks.c: Likewise.
4725         * tree.h (poplevel): Declare.
4726
4727 2003-06-16  Kazu Hirata  <kazu@cs.umass.edu>
4728
4729         * config/h8300/h8300.c (const_costs): Move this to ...
4730         (h8300_rtx_costs): ... here.
4731
4732 2003-06-16  Roger Sayle  <roger@eyesopen.com>
4733
4734         * optabs.h (enum optab_index): Add new OTI_tan and OTI_atan.
4735         (tan_optab, atan_optab): Define corresponding macros.
4736         * optabs.c (init_optabs): Initialize tan_optab and atan_optab.
4737         * genopinit.c (optabs): Implement tan_optab and atan_optab
4738         using tan?f2 and atan?f2 patterns.
4739         * builtins.c (expand_builtin_mathfn): Handle BUILT_IN_TAN{,F,L}
4740         using tan_optab, and BUILT_IN_ATAN{,F,L} using atan_optab.
4741         Change the default value of errno_set to false.
4742         (expand_builtin): Expand BUILT_IN_TAN{,F,L} and BUILT_IN_ATAN{,F,L}
4743         using expand_builtin_mathfn.
4744
4745         * config/i386/i386.md (atansf2, atandf2, atanxf2, atantf2): New
4746         expander patterns implemented using existing atan2?f3 patterns.
4747
4748 2003-06-16  Roger Sayle  <roger@eyesopen.com>
4749
4750         * expr.c (expand_expr <PLUS_EXPR>): If operand_equal_p considers
4751         both operands of the addition equal, reuse the expanded RTL.
4752         (expand_expr <MULT_EXPR>): Likewise for multiplication.
4753
4754 2003-06-16  Roger Sayle  <roger@eyesopen.com>
4755             Jeff Law  <law@redhat.com>
4756
4757         * fold-const.c (operand_equal_p): Consider two calls to "const"
4758         functions with identical non-volatile arguments to be equal.
4759         Consider the FUNCTION_DECL for the "__builtin_foo" form of a
4760         built-in function to be equal to the "foo" form.
4761
4762 2003-06-16  Nathanael Nerode  <neroden@gcc.gnu.org>
4763
4764         * config/rs6000/sysv4le.h: Remove target-independent comment.
4765         Replace "GNU compiler" with "GCC" in comment.
4766
4767 2003-06-16  Andreas Jaeger  <aj@suse.de>
4768
4769         * tracer.c: Remove duplicate declaration.
4770
4771         * toplev.c: Remove extra declaration of decode_d_option.
4772
4773         * ssa.c: Remove duplicate declaration.
4774
4775         * sreal.c: Remove extra declaration of dump_sreal.
4776
4777         * reload1.c: Remove duplicate declarations.
4778
4779         * integrate.c: Remove extra declaration of
4780         set_decl_abstract_flags.
4781
4782         * flow.c: Remove extra declaration of dump_flow_info.
4783
4784         * alias.c: Remove extra declaration of get_addr.
4785
4786 2003-06-16  Nathanael Nerode  <neroden@gcc.gnu.org>
4787
4788         * config/rtems.h, config/sol2.h, config/svr4.h, config/usegas.h,
4789         config/vxworks.h: GNU CC -> GCC.
4790
4791         * convert.c, dwarf2out.c, dwarfout.c, emit-rtl.c, function.c,
4792         lists.c, print-rtl.c, print-tree.c, read-rtl.c, rtl-error.c,
4793         stmt.c, toplev.c, integrate.h, loop.h, machmode.h, rtl.h,
4794         ssa.h, tree.def: Replace overly specific references to "GNU C"
4795         and "GNU C Compiler" with references to "GCC".
4796
4797 2003-06-16  J"orn Rennecke <joern.rennecke@superh.com>
4798
4799         * sh.c (prepare_move_operand): Check if operand 0 is an invalid
4800         memory reference.  Fix test that checks if operand 1 is using r0.
4801         * sh.md (movhi_i): Don't allow st.w r0,@(rX,rY) .
4802
4803         * defaults.h (REG_CLASS_FROM_CONSTRAINT): Only define if not already
4804         defined.
4805
4806 2003-06-15  Nathan Sidwell  <nathan@codesourcery.com>
4807
4808         * function.h (struct emit_status): Remove x_last_linenum,
4809         x_last_filename. Add x_last_location.
4810         * rtl.h: #include "input.h".
4811         (NOTE_DATA): New.
4812         * cfglayout.c (duplicate_insn_chain): Use emit_line_note for line
4813         number notes.
4814         * emit-rtl.c (last_linenum, last_filename): Remove.
4815         (last_location): New.
4816         (emit_line_note_after): LINE must always be >= 0.
4817         (emit_line_note): Likewise. Check not duplicate here...
4818         (emit_note): ... rather than here.
4819         (emit_line_note_force, force_next_line_note, init_emit): Adjust.
4820         * integrate.c (expand_inline_function): Use emit_line_note for
4821         line number notes.
4822         (copy_insn_list): Likewise.
4823         * unroll.c (copy_loop_body): Likewise.
4824         * Makefile.in (RTL_H): Add input.h.
4825
4826 2003-06-16  Richard Sandiford  <rsandifo@redhat.com>
4827
4828         * optabs.c (emit_libcall_block): Don't hoist insns past a label.
4829
4830 2003-06-16  Richard Henderson  <rth@redhat.com>
4831
4832         * config/alpha/alpha-protos.h, config/alpha/elf.h,
4833         config/alpha/osf.h, config/alpha/unicosmk.h, config/alpha/vms.h,
4834         config/alpha/vms-cc.c, config/alpha/vms-ld.c: Update to ISO C.
4835         * config/alpha/alpha.c: Likewise.  Move targetm init to end of file.
4836         Remove unneeded static function decls.
4837
4838 2003-06-16  Neil Booth  <neil@daikokuya.co.uk>
4839
4840         * c-opts.c (c_common_handle_option): s/on/value/.
4841         (OPT_fabi_version_, OPT_ftabstop_, OPT_ftemplate_depth_): Use value
4842         directly rather than converting the argument.
4843         * c.opt: Update docs.  Use UInteger where appropriate.
4844         * common.opt: Use UInteger where appropriate.
4845         * opts.c (integral_argument): New.
4846         (handle_argument): Handle integral arguments, and optional
4847         joined arguments.
4848         (common_handle_option): Update.
4849         * opts.h (CL_MISSING_OK, CL_UINTEGER): New.
4850         * opts.sh: Handle JoinedOrMissing and UInteger flags.
4851
4852 2003-06-16  Neil Booth  <neil@daikokuya.co.uk>
4853
4854         * config/rs6000/sysv4.h (ASM_OUTPUT_ALIGNED_LOCAL): Remove
4855         unnecessary extern declaration.
4856
4857 2003-06-15  Nathanael Nerode  <neroden@gcc.gnu.org>
4858
4859         * config/gofast.h, config/interix.h, config/interix3.h,
4860         config/libgloss.h, config/linux-aout.h, config/linux.h,
4861         config/lynx-ng.h, config/lynx.h: GNU CC -> GCC.
4862         * config/kaos.h: "GNU compiler" -> GCC.
4863         * config/linux-aout.h, config/lynx.h: Clarify comment describing file.
4864
4865         * config/ip2k/crt0.S, config/ip2k/ip2k-protos.h,
4866         config/ip2k/ip2k.c, config/ip2k/ip2k.md, config/ip2k/libgcc.S:
4867         GNU CC -> GCC.
4868
4869         * config/svr3.h: Remove #if 0 code, misleading comments.
4870         GNU CC -> GCC.
4871
4872 2003-06-15  Zack Weinberg  <zack@codesourcery.com>
4873
4874         * vmsdbgout.c (vmsdbgout_finish): Rename parameter to
4875         main_input_filename to avoid conflict with input_filename macro.
4876
4877 2003-06-15  Neil Booth  <neil@daikokuya.co.uk>
4878
4879         * config/mips/mips.h (asm_file_name, g_switch_set,
4880         g_switch_value): Remove.
4881         * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Remove
4882         unnecessary extern declarations.
4883
4884 2003-06-15  Neil Booth  <neil@daikokuya.co.uk>
4885
4886         * config/frv/frv.h: Remove declaration of g_switch_value.
4887         * config/m32r/m32r.h: Remove declaration of g_switch_value.
4888         * config/m68hc11/m68hc11.c: Remove declaration of asm_file_name.
4889
4890 2003-06-15  Neil Booth  <neil@daikokuya.co.uk>
4891
4892         * opts.sh: Quote '+' in regex.
4893
4894 2003-06-15  Andrew Pinski <pinskia@physics.uc.edu>
4895
4896         * config/rs6000/t-rs6000: Add dependence of cfglayout.h to rs6000.o.
4897         * config/rs6000/rs6000.c: Include cfglayout.h.
4898         * config/alpha/alpha.c: Likewise.
4899         * config/ia64/ia64.c: Likewise.
4900         * config/sparc/sparc.c: Likewise.
4901         * config/sh/sh.c: Likewise.
4902
4903 2003-06-15  Neil Booth  <neil@daikokuya.co.uk>
4904
4905         * opts.sh: Quote '+' in regex.
4906
4907 2003-06-15  Neil Booth  <neil@daikokuya.co.uk>
4908
4909         * c-opts.c (lang_flags): Update for new spelling of flags.
4910         (write_langs): Similarly.
4911         * c.opt: Specify languages.
4912         * opts.h: Remove languages.
4913         * opts.sh: Recognise front-end defined languages.
4914         * doc/sourcebuild.texi: Update.
4915
4916 2003-06-15  Andreas Jaeger  <aj@suse.de>
4917
4918         * alloc-pool.c: Convert to ISO C90 prototypes.
4919         * alloc-pool.h: Likewise.
4920         * alias.c: Likewise.
4921         * attribs.c: Likewise.
4922         * bb-reorder.c: Likewise.
4923         * bitmap.h: Likewise.
4924         * bitmap.c: Likewise.
4925         * builtins.c: Likewise.
4926
4927         * tree.h: Convert prototypes of attribs.c to ISO C90.
4928         * basic-block.h: Convert prototypes of bb-reorder.c to ISO C90.
4929         * rtl.h: Convert prototypes of alias.c and builtins.c to ISO C90.
4930         * expr.h: Convert prototypes of builtins.c to ISO C90.
4931
4932 2003-06-15  Roger Sayle  <roger@eyesopen.com>
4933
4934         * config/i386/i386.md (expsf2, expdf2, expxf2): New patterns to
4935         implement exp, expf and expl built-ins as inline x87 intrinsics.
4936         (UNSPEC_FSCALE, UNSPEC_FRNDINT, UNSPEC_F2XM1): New unspecs to
4937         represent x87's fscale, frndint and f2xm1 insns respectively.
4938         (*fscale_sfxf3, *fscale_dfxf3, *fscale_xf3): New insn patterns
4939         to encode x87's "fscale" instruction followed by a pop.
4940         (*frndintxf2): New insn pattern for "frndint".
4941         (*f2xm1xf2): New insn pattern for "f2xm1".
4942
4943         * reg-stack.c (subst_stack_regs_pat): Handle UNSPEC_FRNDINT and
4944         UNSPEC_F2XM1 like UNSPEC_{SIN,COS} and handle UNSPEC_FSCALE like
4945         UNSPEC_FPATAN.
4946
4947 2003-06-15  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4948
4949         * gencheck.c (main): Avoid generating duplicate macros.
4950
4951         * Makefile.in (stagefeedback-start): Use $(SUBDIRS) instead of
4952         knowing names of language subdirectories.
4953
4954 2003-06-15  Neil Booth  <neil@daikokuya.co.uk>
4955
4956         * c-pch.c (asm_file_name): Remove.
4957         * common.opt: Add more switches.
4958         * flags.h (g_switch_set): Boolify.
4959         * opts.c (g_switch_value, g_switch_set, exit_after_options,
4960         version_flag): Move from toplev.c.
4961         (common_handle_option): Handle more switches from toplev.c.
4962         * toplev.c (display_help, display_target_options, decode_d_option,
4963         print_version): Make non-static, remove prototypes.
4964         (aux_base_name, asm_file_name, aux_info_file_name): Constify.
4965         (version_flag, g_switch_value, g_switch_set, exit_after_options):
4966         Remove.
4967         (independent_decode_option): Move some handlers to opts.c.
4968         * toplev.h (aux_info_file_name, aux_base_name, asm_file_name,
4969         exit_after_options, version_flag, display_help, display_target_options,
4970         print_version, decode_d_option): New.
4971
4972 2003-06-15  Kazu Hirata  <kazu@cs.umass.edu>
4973
4974         * config/alpha/alpha.md: Follow spelling conventions.
4975         * config/arm/arm.c: Likewise.
4976         * config/arm/arm.h: Likewise.
4977         * config/arm/arm.md: Likewise.
4978         * config/arm/crtn.asm: Likewise.
4979         * config/m32r/m32r.c: Likewise.
4980         * config/m32r/m32r.md: Likewise.
4981         * config/rs6000/rs6000.c: Likewise.
4982
4983 2003-06-15  Richard Henderson  <rth@redhat.com>
4984
4985         * config/alpha/alpha.c (alpha_output_mi_thunk_osf): Call
4986         insn_locators_initialize.
4987         * config/ia64/ia64.c (ia64_output_mi_thunk): Likewise.
4988         * config/rs6000/rs6000.c (rs6000_output_mi_thunk): Likewise.
4989         * config/sparc/sparc.c (sparc_output_mi_thunk): Likewise.
4990         * config/sh/sh.c (sh_output_mi_thunk): Do it later.
4991
4992 2003-06-15  Kazu Hirata  <kazu@cs.umass.edu>
4993
4994         * builtins.c (expand_builtin_expect_jump): Remove redundant
4995         tests that are also in any_condjump_p().
4996
4997 2003-06-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4998
4999         * libgcc2.c: Delete sysV68 L_trampoline section.
5000         * config/m68k/mot3300-crt0.S: Delete file.
5001         * config/m68k/mot3300Mcrt0.S: Likewise.
5002
5003 2003-06-15  Nathanael Nerode  <neroden@gcc.gnu.org>
5004
5005         * config/aoutos.h: Remove.
5006         * config.gcc: Remove reference to aoutos.h.
5007         * config/m68k/m68k-aout.h: Remove reference to aoutos.h.
5008
5009 2003-06-14  Kazu Hirata  <kazu@cs.umass.edu>
5010
5011         * doc/install.texi: Follow spelling conventions.
5012         * doc/tm.texi: Likewise.
5013         * config/fp-bit.c: Likewise.
5014         * config/arm/arm.c: Likewise.
5015         * config/frv/frv.c: Likewise.
5016         * config/ns32k/NOTES: Likewise.
5017         * config/ns32k/STATUS: Likewise.
5018
5019 2003-06-14  Roger Sayle  <roger@eyesopen.com>
5020             Zack Weinberg  <zack@codesourcery.com>
5021
5022         * rtl.h (STORE_FLAG_VALUE): Remove default definition from here.
5023         * defaults.h (STORE_FLAG_VALUE): Move default definition to here.
5024         * doc/tm.texi (STORE_FLAG_VALUE): Document the default value.
5025
5026         * config/alpha/alpha.h (STORE_FLAG_VALUE): Remove definition.
5027         * config/arc/arc.h (STORE_FLAG_VALUE): Likewise.
5028         * config/arm/arm.h (STORE_FLAG_VALUE): Likewise.
5029         * config/cris/cris.h (STORE_FLAG_VALUE): Likewise.
5030         * config/i370/i370.h (STORE_FLAG_VALUE): Likewise.
5031         * config/i386/i386.h (STORE_FLAG_VALUE): Likewise.
5032         * config/i960/i960.h (STORE_FLAG_VALUE): Likewise.
5033         * config/ia64/ia64.h (STORE_FLAG_VALUE): Likewise.
5034         * config/ip2k/ip2k.h (STORE_FLAG_VALUE): Likewise.
5035         * config/m32r/m32r.h (STORE_FLAG_VALUE): Likewise.
5036         * config/mcore/mcore.h (STORE_FLAG_VALUE): Likewise.
5037         * config/mips/mips.h (STORE_FLAG_VALUE): Likewise.
5038         * config/mmix/mmix.h (STORE_FLAG_VALUE): Likewise.
5039         * config/ns32k/ns32k.h (STORE_FLAG_VALUE): Likewise.
5040         * config/pa/pa.h (STORE_FLAG_VALUE): Likewise.
5041         * config/pdp11/pdp11.h (STORE_FLAG_VALUE): Likewise.
5042         * config/sh/sh.h (STORE_FLAG_VALUE): Likewise.
5043         * config/sparc/sparc.h (STORE_FLAG_VALUE): Likewise.
5044         * config/v850/v850.h (STORE_FLAG_VALUE): Likewise.
5045         * config/xtensa/xtensa.h (STORE_FLAG_VALUE): Likewise.
5046
5047 2003-06-14  Nathan Sidwell  <nathan@codesourcery.com>
5048
5049         * opts.sh (POSIXLY_CORRECT): Unset it.
5050
5051         * tree.h (init_function_start): Remove filename and line paramters.
5052         * function.c (init_function_start): Remove filename and line
5053         parameters. Use DECL_SOURCE_LOCATION.
5054         * c-decl.c (store_parm_decls): Adjust init_function_start call.
5055         (c_expand_body_1): Likewise.
5056         * coverage.c (create_coverage): Likewise.
5057         * objc/objc-act.c (build_tmp_function_decl): Set line number to
5058         zero.
5059         (hack_method_prototype): Adjust init_function_start call.
5060
5061 2003-06-14  Richard Earnshaw  <rearnsha@arm.com>
5062
5063         PR target/3724
5064         * arm/linux-elf.h (PROFILE_HOOK): Define.
5065
5066 2003-06-14  Richard Earnshaw  <rearnsha@arm.com>
5067
5068         PR target/11183
5069         * arm.h (CANNOT_CHANGE_MODE_CLASS): Define.
5070
5071 2003-06-14  Roger Sayle  <roger@eyesopen.com>
5072
5073         * opts.sh: Work around a mysterious feature in cygwin's gawk
5074         where specifying the input files explicitly has a different
5075         behavior to piping them via stdin.
5076
5077 2003-06-14  Neil Booth  <neil@daikokuya.co.uk>
5078
5079         * doc/sourcebuild.texi: Update.
5080
5081 2003-06-14  Richard Earnshaw  <rearnsha@arm.com>
5082
5083         PR target/11183
5084         * arm.c (output_move_double): Pass SImode to adjust_address.
5085
5086 2003-06-14  Neil Booth  <neil@daikokuya.co.uk>
5087
5088         * Makefile.in: Update to use common.opt and lang_opt_files.
5089         (c-options.c, c-options.h): Remove.
5090         (options.c, options.h): Add.
5091         * c-opts.c: Include options.h not c-options.h.
5092         * common.opt: New file.
5093         * configure, configure.in: Add lang_opt_files.
5094         * opts.c: Include flags.h and diagnostic.h.
5095         (common_handle_option): New.
5096         (handle_option): Update to recognize common options and all
5097         language-dependent options.
5098         * opts.h (CL_F77, CL_JAVA, CL_ADA, CL_COMMON, CL_TREELANG): New.
5099         (struct cl_option): Make flags of type int.
5100         * opts.h: Flag option with front ends to which it applies.
5101         Handle duplicate options.
5102         * toplev.c (filename): Remove.
5103         (independent_decode_option): Don't handle filenames and -quiet.
5104         (process_options, do_compile): Update.
5105
5106 2003-06-14  Nick Clifton  <nickc@redhat.com>
5107
5108         * doc/install.texi (Specific): Add description of different
5109         ARM supported file format targets.
5110
5111 Sat Jun 14 11:12:04 CEST 2003  Jan Hubicka  <jh@suse.cz>
5112
5113         * reorg.c (emit_delay_sequence, dbr_schedule): Clear insn locators
5114         inside delay slots.
5115
5116 2003-06-13  Matt Kraai  <kraai@alumni.cmu.edu>
5117
5118         * unwind-c.c: Define NO_SIZE_OF_ENCODED_VALUE.
5119         * unwind-pe.h (size_of_encoded_value): Do not define if
5120         NO_SIZE_OF_ENCODED_VALUE is defined.
5121
5122 2003-06-13  Roger Sayle  <roger@eyesopen.com>
5123
5124         * expr.c (expand_expr <COMPLEX_CST>): Handle the case of
5125         expanding a complex constant into a CONCAT target.
5126
5127 2003-06-13  Zack Weinberg  <zack@codesourcery.com>
5128
5129         * config/svr3.h (ASM_FILE_START): Don't use ASM_FILE_START_1.
5130         (ASM_FILE_START_1): Delete.
5131         * config/i386/att.h, config/i386/sco5.h,
5132         config/i386/sysv3.h
5133         (ASM_FILE_START_1): Delete.
5134
5135 2003-06-13  Kelley Cook  <kelleycook@wideopenwest.com>
5136
5137         * config/i386/bsd.h: Remove ASM_FILE_START.
5138         * config/i386/djgpp.h: Likewise.
5139         * config/i386/gas.h (ASM_FILE_START): Output .file before .intel_syntax.
5140
5141         * config/i386/djgpp.h: Move included unix.h, bsd.h, gas.h to ...
5142         * config.gcc (i[34567]86-pc-msdosdjgpp): ... here.
5143
5144 2003-06-13  Vladimir Makarov  <vmakarov@redhat.com>
5145
5146         PR bootstrap/10835
5147         * haifa-sched.c (max_lookahead_tries,
5148         cached_first_cycle_multipass_dfa_lookahead,
5149         cached_issue_rate): New variables.
5150         (max_issue): Check the number of tries.
5151         (choose_ready): Calculate max_lookahead_tries.
5152         (sched_init): Check cached_issue_rate.
5153
5154 2003-06-13  Richard Henderson  <rth@redhat.com>
5155
5156         * cfgbuild.c (make_edges): Set ABNORMAL with SIBCALL.
5157         * cfgrtl.c (purge_dead_edges): Expect it too.
5158
5159 2003-06-13  Jim Wilson  <wilson@tuliptree.org>
5160             Eric Botcazou  <ebotcazou@libertysurf.fr>
5161
5162         PR bootstrap/10983
5163         * combine.c (make_extraction): Use gen_lowpart_for_combine
5164         when extracting from a REG and not in the destination of a SET.
5165
5166 2003-06-13  Doug Evans  <dje@sebabeach.org>
5167
5168         * tsystem.h (abort): Declare in inhibit_libc case to remove build
5169         warnings for addvsi3, et.al.
5170
5171 2003-06-13  Aldy Hernandez  <aldyh@redhat.com>
5172
5173         * c-common.c (handle_mode_attribute): Use VECTOR_MODE_P macro.
5174
5175         * simplify-rtx.c (simplify_subreg): Same.
5176
5177         * emit-rtl.c (gen_lowpart_common): Same.
5178
5179 2003-06-13  Kazu Hirata  <kazu@cs.umass.edu>
5180
5181         * builtins.c: Fix comment typos.
5182         * fold-const.c: Likewise.
5183
5184 2003-06-13  Doug Evans  <dje@sebabeach.org>
5185             Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
5186
5187         * config/m32r/m32r-protos.h (m32r_pass_by_reference): Declare.
5188         * config/m32r/m32r.c (m32r_pass_by_reference): New fn.
5189         (m32r_va_arg): Use it.
5190         * config/m32r/m32r.h (FUNCTION_ARG_PASS_BY_REFERENCE): Ditto.
5191         (RETURN_IN_MEMORY): Ditto.
5192
5193 2003-06-13  Nathanael Nerode  <neroden@gcc.gnu.org>
5194
5195         * c-typeck.c: Remove #if 0 clauses.
5196
5197         PR other/1494
5198         * config/alpha/openbsd.h, config/i386/openbsd.h,
5199         config/m68k/openbsd.h, config/sparc/openbsd.h: Remove
5200         residual reference to EGCS.
5201
5202 2003-06-13  Richard Earnshaw  <rearnsha@arm.com>
5203
5204         * arm.c (output_call_mem): If the address references the link-register
5205         use an instruction sequence that avoids early-clobbering IP.
5206         (eliminate_lr2ip): Delete.
5207
5208 2003-06-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5209
5210         * c-format.c (format_types_orig): Disallow '*' width/precision in
5211         asm_fprintf format checks.
5212
5213 2003-06-13  Ulrich Weigand  <uweigand@de.ibm.com>
5214
5215         * config/s390/s390.c (s390_va_arg): Fix alignment when retrieving
5216         non-integral types from integer register save area slots.
5217
5218 2003-06-13  Nathanael Nerode  <neroden@gcc.gnu.org>
5219
5220         * config/i386/svr3dbx.h: GNU CC -> GCC; Intel 385 -> Intel 386.
5221
5222 2003-06-13  Florian Weimer  <fw@deneb.enyo.de>
5223
5224         * doc/invoke.texi (SPARC Options): Document ``-mimpure-text''.
5225
5226 2003-06-13  Kaz Kojima  <kkojima@gcc.gnu.org>
5227
5228         * config/sh/linux.h (TARGET_ASM_FILE_END): Set TARGET_ASM_FILE_END
5229         to file_end_indicate_exec_stack.
5230
5231 2003-06-12  Richard Henderson  <rth@redhat.com>
5232
5233         PR target/11089
5234         * config/i386/i386.md (sse_movaps): Use an expander to force
5235         one operand to be a register.
5236         (sse_movups): Likewise.
5237
5238 2003-06-13  Doug Evans  <dje@sebabeach.org>
5239
5240         Remove some build warnings.
5241         * config/m32r/initfini.c (__CTOR_LIST__,__DTOR_LIST__): Attribute used.
5242         (__do_global_ctors,__do_global_dtors): Ditto.
5243
5244 2003-06-12  Richard Henderson  <rth@redhat.com>
5245
5246         PR middle-end/10557
5247         * rtlanal.c (subreg_offset_representable_p): Relax subreg check.
5248
5249 2003-06-13  Kazu Hirata  <kazu@cs.umass.edu>
5250
5251         * config/m32r/m32r.md: Fix a comment typo.
5252
5253 2003-06-13  Eric Botcazou  <ebotcazou@libertysurf.fr>
5254             Christian Ehrhardt <ehrhardt@mathematik.uni-ulm.de>
5255
5256         PR target/10142
5257         * config/sparc/sparc.c (function_arg_record_value_parms): Add
5258         new 'stack' field.
5259         (function_arg_record_value_1): Set 'stack' to 1 if we run out of
5260         integer slots for an integer field.
5261         (function_arg_record_value_3): Shift vector index.
5262         (function_arg_record_value_2): Likewise.
5263         (function_arg_record_value): Initialize 'stack' to 0.
5264         Set 'stack' to 1 if we run out of integer slots for an integer field.
5265         Generate (parallel [(expr_list (nil) ...) ...]) if 'stack' is set to 1.
5266
5267 2003-06-13  Eric Botcazou  <ebotcazou@libertysurf.fr>
5268
5269         PR optimization/10955
5270         * unroll.c (unroll_loop): Fix off-by-one bug.
5271
5272 2003-06-12  Aldy Hernandez  <aldyh@redhat.com>
5273
5274         * config/rs6000/rs6000.c (function_arg): Remove typo.
5275
5276 2003-06-12  Richard Henderson  <rth@redhat.com>
5277
5278         * config/i386/i386.c (legitimate_constant_p): Handle UNSPEC_NTPOFF
5279         and UNSPEC_DTPOFF.
5280
5281 2003-06-12  Richard Henderson  <rth@redhat.com>
5282
5283         PR middle-end/10475
5284         * expmed.c (emit_store_flag): Use simplify_gen_subreg directly
5285         for extracting sub-words.
5286
5287 2003-06-12  Richard Henderson  <rth@redhat.com>
5288
5289         PR target/7594
5290         * config/m68k/m68k.md (zero_extendhisi2): Use gen_lowpart_SUBREG.
5291         (zero_extendqihi2, zero_extendqisi2): Likewise.
5292
5293 2003-06-12  Aldy Hernandez  <aldyh@redhat.com>
5294
5295         * config/rs6000/rs6000.c (function_arg): Always split vectors for
5296         e500 if it's a stdarg function.
5297         (function_arg_advance): Advance 2 registers for vectors in a
5298         stdarg function.
5299         (init_cumulative_args): Initialize stdarg.
5300         (rs6000_spe_function_arg): New.
5301
5302         * config/rs6000/rs6000.h (rs6000_args): Add stdarg.
5303
5304 2003-06-12  Aldy Hernandez  <aldyh@redhat.com>
5305
5306         * config/rs6000/rs6000.h (MODES_TIEABLE_P): Add SPE vectors.
5307
5308 2003-06-12  Roger Sayle  <roger@eyesopen.com>
5309
5310         PR middle-end/168
5311         * fold-const.c (tree_expr_nonnegative_p):  Handle addition
5312         and multiplication of zero extensions, floating point division,
5313         and integer<->fp, fp<->fp and zero extension conversions.
5314         The built-in ceil and floor functions preserve signedness.
5315
5316 2003-06-12  Kazu Hirata  <kazu@cs.umass.edu>
5317
5318         * ChangeLog: Follow spelling conventions.
5319         * ChangeLog.2: Likewise.
5320         * c-decl.c: Likewise.
5321         * cfgloop.h: Likewise.
5322         * cgraph.c: Likewise.
5323         * coverage.c: Likewise.
5324         * cppcharset.c: Likewise.
5325         * cpphash.h: Likewise.
5326         * cpplex.c: Likewise.
5327         * cpplib.c: Likewise.
5328         * dbxout.c: Likewise.
5329         * df.c: Likewise.
5330         * dwarf2out.c: Likewise.
5331         * dwarfout.c: Likewise.
5332         * emit-rtl.c: Likewise.
5333         * explow.c: Likewise.
5334         * gcov-io.c: Likewise.
5335         * gcov-io.h: Likewise.
5336         * gcov.c: Likewise.
5337         * gengtype.c: Likewise.
5338         * ggc.h: Likewise.
5339         * opts.c: Likewise.
5340         * real.c: Likewise.
5341         * reload.c: Likewise.
5342         * stmt.c: Likewise.
5343
5344 2003-06-12  Janis Johnson  <janis187@us.ibm.com>
5345
5346         * doc/install.texi (m32r-*-elf): Change company to Renesas.
5347
5348 Thu Jun 12 20:00:55 CEST 2003  Jan Hubicka  <jh@suse.cz>
5349
5350         * basic-block.h (flow_delete_block_noexpunge): Kill.
5351         * cfgrtl.c (flow_delete_block_noexpunge): Merge to
5352         rtl_delete_block.
5353
5354 2003-06-10  Richard Henderson  <rth@redhat.com>
5355
5356         PR inline-asm/4823
5357         * reg-stack.c (any_malformed_asm): New.
5358         (check_asm_stack_operands): Set it.
5359         (convert_regs_1): Check it before aborting.
5360
5361 2003-06-12  Aldy Hernandez  <aldyh@redhat.com>
5362
5363         * config/rs6000/spe.md: Change all clobbers of the accumulator to sets.
5364
5365 2003-06-12  Jakub Jelinek  <jakub@redhat.com>
5366
5367         * c-opts.c (complain_wrong_lang): Add on argument.
5368         Print no- switch if on is false.
5369         (c_common_decode_option): Adjust caller.
5370
5371 2003-06-12  Ulrich Weigand  <uweigand@de.ibm.com>
5372
5373         * config/s390/s390.c (s390_emit_prologue): Use LA instead of AR
5374         to initialize GOT register.
5375
5376 2003-06-12  Roger Sayle  <roger@eyesopen.com>
5377
5378         * fold-const.c (tree_expr_nonnegative_p): Add support for
5379         floating point constants, addition and multiplication.
5380
5381 2003-06-12  J"orn Rennecke <joern.rennecke@superh.com>
5382
5383         * sh.md (adddi3_compact, subdi3_compact): Add earlyclobber
5384         constraint modifier for operand 0.
5385
5386 2003-06-12  Hans-Peter Nilsson  <hp@axis.com>
5387
5388         Don't warn on dollars in builtin macro definitions,
5389         e.g. __REGISTER_PREFIX__.
5390         * cpphash.h (struct cpp_reader): Move member warn_dollars...
5391         * cpplib.h (struct cpp_options): ...to here.  Change type to
5392         unsigned char.
5393         * cppinit.c (cpp_create_reader): Set it to 1 here.
5394         (post_options): Don't set it here.
5395         * c-opts.c (c_common_init_options): Reset it to 0 here.
5396         (finish_options): Set it here.
5397         * cpplex.c (forms_identifier_p): Tweak for new location of
5398         warn_dollars.
5399
5400         * configure.in (assembler dwarf2 debug_line support): Define insn
5401         for cris-*-* and mmix-*-*.
5402         * configure: Regenerate.
5403
5404 2003-06-11  Uwe Stieber  <uwe@kaos-group.de>
5405
5406         * config.gcc (arm*-*-kaos*, i[34567]86-*-kaos*, powerpc-*-kaos*,
5407         powerpcle-*-kaos*, strongarm-*-kaos*): New targets.
5408         (sh-*-elf*): Add sh*-*-kaos* support.
5409         * config/kaos.h, config/arm/kaos-strongarm.h, config/arm/kaos-arm.h,
5410         config/i386/kaos-i386.h, config/rs6000/kaos-ppc.h,
5411         config/sh/kaos-sh.h: New files.
5412
5413 2003-06-12  Kazu Hirata  <kazu@cs.umass.edu>
5414
5415         * gcse.c (fis_get_condition): Make it a global function.
5416         * reload1.c (reload_cse_move2add): Detect implicit sets.
5417         * rtl.h: Add a prototype for fis_get_condition.
5418
5419 2003-06-11  Richard Henderson  <rth@redhat.com>
5420
5421         * stmt.c (expand_asm_operands): Don't warn for memories with
5422         queued addresses.
5423
5424 2003-06-11  Kaz Kojima  <kkojima@gcc.gnu.org>
5425
5426         * config/sh/sh.h (SUBTARGET_ASM_RELAX_SPEC): Rewrite without
5427         brackets.
5428
5429 2003-06-11  Neil Booth  <neil@daikokuya.co.uk>
5430
5431         * hooks.c (hook_int_size_t_constcharptr_int_0): New.
5432         * hooks.h (hook_int_size_t_constcharptr_int_0): New.
5433         * langhooks-def.h (lhd_decode_option, LANG_HOOKS_DECODE_OPTION): Die.
5434         (LANG_HOOKS_HANDLE_OPTION, LANG_HOOKS_INITIALIZER): Update.
5435         * langhooks.c (lhd_decode_option): Remove.
5436         * langhooks.h (struct lang_hooks): Remove decode_option.
5437         * opts.c (handle_option): No longer use decode_option.
5438
5439 2003-06-11  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
5440
5441         * cfgloopanal.c (variable_initial_value): Update the set of altered
5442         registers correctly.
5443
5444 2003-06-11  Roger Sayle  <roger@eyesopen.com>
5445             Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5446
5447         * config/d30v/d30v.h: Delete reference to ASM_FINAL_SPEC.
5448         * config/i386/netbsd-elf.h: Likewise.
5449         * config/m32r/m32r.h: Likewise.
5450         * config/mn10300/mn10300.h: Likewise.
5451         * config/stormy16/stormy16.h: Likewise.
5452         * config/v850/v850.h: Likewise.
5453         * config/vax/netbsd-elf.h: Likewise.
5454         * config/xtensa/elf.h: Likewise.
5455         * config/xtensa/linux.h: Likewise.
5456
5457 2003-06-11  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
5458
5459         * config/mips/iris5gas.h (MDEBUG_ASM_SPEC): Override to match
5460         DWARF 2 default.
5461
5462         * config/mips/dbxmdebug.h: New file.
5463         * config.gcc (mips-sgi-irix6*o32, mips-sgi-irix5*): Use it with
5464         gas and --with-stabs.
5465
5466 2003-06-11  Ulrich Weigand  <uweigand@de.ibm.com>
5467
5468         * expr.c (can_move_by_pieces): align argument may be unused.
5469
5470 2003-06-11  J"orn Rennecke <joern.rennecke@superh.com>
5471
5472         * expr.c (convert_move): Handle moves between two CONCATs.
5473
5474 2003-06-11  Kazu Hirata  <kazu@cs.umass.edu>
5475
5476         * config/h8300/h8300.h (RETURN_IN_MEMORY): Accept DImode if
5477         !TARGET_H8300.
5478
5479 2003-06-11  Kazu Hirata  <kazu@cs.umass.edu>
5480
5481         * config/h8300/h8300.c (final_prescan_insn): Don't dump rtl.
5482         * config/h8300/h8300.h (MASK_RTL_DUMP): Remove.
5483         (TARGET_RTL_DUMP): Likewise.
5484         (TARGET_SWITHCES): Remove -mrtl-dump.
5485
5486 2003-06-10  Richard Henderson  <rth@redhat.com>
5487
5488         * optabs.c (gen_cond_trap): Fix prepare_operand typo.
5489
5490 2003-06-10  Richard Henderson  <rth@redhat.com>
5491
5492         * config/ia64/ia64.md (call_gp): Fix memory mode.
5493
5494 2003-06-10  James E Wilson  <wilson@tuliptree.org>
5495
5496         PR target/8812
5497         * reload1.c (choose_reload_regs): For equiv reg, add loop over all
5498         hard regs for reload_reg_used_at_all and reg_class_contents checks.
5499
5500 2003-06-10  Kazu Hirata  <kazu@cs.umass.edu>
5501
5502         * config/h8300/h8300.c (print_operand): Remove support for
5503         operand character 'b'.
5504         Add the AND case to operand character 'c'.
5505         * config/h8300/h8300.md (two anonymous patterns): Replace
5506         operand character 'b' with 'c'.
5507
5508 2003-06-10  Kazu Hirata  <kazu@cs.umass.edu>
5509
5510         * config/h8300/h8300.c (print_operand): Remove support for
5511         operand character 'u'.
5512
5513 2003-06-10  Nathanael Nerode  <neroden@gcc.gnu.org>
5514
5515         * configure.in: Fix typo.
5516         * configure: Regenerate.
5517
5518 2003-06-10  Loren James Rittle  <ljrittle@acm.org>
5519
5520         * config/alpha/alpha.c (unicosmk_file_end): Add conditional
5521         compilation guard.
5522
5523 2003-06-10  J"orn Rennecke <joern.rennecke@superh.com>
5524
5525         * sh-protos.h (function_symbol): Declare.
5526         * sh.c (expand_block_move, expand_ashiftrt): Use it.
5527         (sh_expand_prologue, sh_expand_epilogue): Likewise.
5528         (sh_initialize_trampoline): Likewise.
5529         (function_symbol): New function.
5530         * sh.md (udivsi3, divsi3, mulsi3, ic_invalidate_line): Use it.
5531         (initialize_trampoline, call, call_pop, call_value, sibcall): Likewise.
5532         (call_value_pop, shcompact_return_tramp): Likewise.
5533
5534         * sh.h (OVERRIDE_OPTIONS): Don't suppress --profile-arc-flag.
5535
5536         * sh.md (GOTaddr2picreg): Use gen_lowpart to get lowpart of
5537         target register.
5538
5539 2003-06-10  DJ Delorie  <dj@redhat.com>
5540
5541         * doc/md.texi (Machine Constraints): Document stormy's Z
5542         constraint.
5543
5544 2003-06-10  Geoffrey Keating  <geoffk@apple.com>
5545
5546         * except.c (call_site_base): Mark with GTY.
5547
5548 2003-06-10  Richard Earnshaw  <rearnsha@arm.com>
5549
5550         * arm-proto.h: Convert to ISO C90 prototypes.
5551         * arm.c: Likewise.
5552
5553 2003-06-10  J"orn Rennecke <joern.rennecke@superh.com>
5554
5555         * sh.c (sh_output_mi_thunk): Call insn_locators_initialize.
5556
5557 2003-06-10  Steve Ellcey  <sje@cup.hp.com>
5558
5559         * calls.c (expand_call): Convert structure_value_addr to Pmode if
5560         necessary.
5561
5562 2003-06-10  Andrew Haley  <aph@redhat.com>
5563
5564         * langhooks-def.h (LANG_HOOKS_DECL_OK_FOR_SIBCALL): New.
5565         (LANG_HOOKS_DECLS): Add LANG_HOOKS_DECL_OK_FOR_SIBCALL.
5566         (lhd_decl_ok_for_sibcall): New.
5567         * langhooks.c (lhd_decl_ok_for_sibcall): New.
5568         * langhooks.h (lang_hooks_for_decls.ok_for_sibcall): New field.
5569         * calls.c (expand_call): Check lang_hook before generating a
5570         sibcall.
5571
5572 2003-06-10  DJ Delorie  <dj@redhat.com>
5573
5574         * config/stormy16/stormy16.c (xstormy16_extra_constraint_p): Add Z,
5575         which matches (const_int 0) for addhi3.
5576         * config/stormy16/stormy16.md: Document known constraints.
5577         (addhi3): Handle adding zero.
5578
5579 2003-06-10  Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
5580
5581         * config/m32r/m32r.h (HARD_REGNO_RENAME_OK): New.
5582         * config/m32r/m32r.c (m32r_hard_regno_rename_ok): New.
5583         * config/m32r/m32r-protos.h: Prototype it.
5584
5585 2003-06-10  Janis Johnson  <janis187@us.ibm.com>
5586
5587         * config/rs6000/eabi.h (TARGET_OS_CPP_BUILTINS): Define builtins
5588         common to rs6000 sysv targets.
5589         * config/rs6000/eabisim.h (TARGET_OS_CPP_BUILTINS): Ditto.
5590         * config/rs6000/rtems.h (TARGET_OS_CPP_BUILTINS): Ditto.
5591
5592 2003-06-10  Nick Clifton  <nickc@redhat.com>
5593
5594         * config.gcc: Add arm-wince-pe target.
5595         * config/arm/pe.h (MULTILIB_DEFAULTS): Define.
5596         Add comment about default apcs26 support.
5597         * config/arm/t-pe (MULTILIB_OPTIONS): Add an -mapcs-32
5598         multilib.
5599         (MULTILIB_DIRNAMES): Add 'apcs32'.
5600         * config/arm/t-wince-pe: New makefile fragment.
5601         * config/arm/wince-pe.h: New file.  Overrides a few definitions
5602         in arm/pe.h
5603
5604 2003-06-10  Roger Sayle  <roger@eyesopen.com>
5605
5606         * builtins.c (fold_builtin): Optimize cos(-x) as cos(x).
5607         * fold-const.c (fold <NEGATE_EXPR>): Convert -f(x) into f(-x)
5608         when x is easily negated and f is sin, tan or atan.
5609         (fold <MULT_EXPR>): Optimize tan(x)*cos(x) and cos(x)*tan(x) as
5610         sin(x) with flag_unsafe_math_optimizations.
5611         (fold <RDIV_EXPR>): With flag_unsafe_math_optimizations fold
5612         sin(x)/cos(x) as tan(x) and cos(x)/sin(x) as 1.0/tan(x).
5613
5614 2003-06-10  Roger Sayle  <roger@eyesopen.com>
5615
5616         * fold-const.c (fold <EQ_EXPR>):  Don't fold x == x only if x
5617         is a floating point type *and* we currently honor NaNs.
5618         (fold <NE_EXPR>): Likewise.
5619
5620 2003-06-10  Mark Mitchell  <mark@codesourcery.com>
5621
5622         PR c++/11131
5623         * tree-inline.c (inlinable_function_p): Call the language-specific
5624         hook early.
5625
5626 2003-06-09  David Taylor  <dtaylor@emc.com>
5627
5628         * config/rs6000/rs6000.c (rs6000_va_start, rs6000_va_arg):  Skip over
5629         the f_res field.
5630
5631 2003-06-09  Nathanael Nerode  <neroden@gcc.gnu.org>
5632
5633         * configure.in: Remove references to host_truncate_target.
5634         * configure: Regenerate.
5635         * config.gcc: Remove references to truncate_target,
5636         host_truncate_target.
5637
5638         * Makefile.in, configure.in, config/m68hc11/t-m68hc11-gas:
5639         Replace "build_canonical" with build, "host_canonical" with host.
5640         * configure.in: Use GCC_TOPLEV_SUBDIRS.
5641         * aclocal.m4: Include ../config/acx.m4.
5642         * configure: Regenerate.
5643
5644 2003-06-09  David Taylor  <dtaylor@emc.com>
5645
5646         * config/rs6000/rs6000.c (rs6000_build_va_list): Give the two
5647         bytes of padding in the __va_list_tag structure a name (reserved).
5648
5649 2003-06-09  Jason Merrill  <jason@redhat.com>
5650
5651         * fold-const.c (operand_equal_p): Handle ADDR_EXPR and TRUTH_NOT_EXPR.
5652
5653 2003-06-09  Osku Salerma  <osku@iki.fi>
5654
5655         * c-format.c (check_format_string, get_constant): New.
5656         (handle_format_attribute, handle_format_arg_attribute,
5657         decode_format_attr): Change to use above functions.
5658
5659 2003-06-09  Richard Henderson  <rth@redhat.com>
5660
5661         * stmt.c (expand_asm_operands): Re-word warning.
5662
5663 2003-06-08  Andrew Pinski  <pinskia@physics.uc.edu>
5664
5665         PR target/8787
5666         * config/i386/djgpp.h (ASM_FILE_START): emit `.intel_syntax'
5667         if -masm=intel.
5668
5669 2003-06-09  James E Wilson  <wilson@tuliptree.org>
5670
5671         * config/frv/cmovc.c, config/frv/cmovh.c, config/frv/cmovw.c,
5672         config/frv/frvbegin.c, config/frv/frvend.c, config/frv/lib1funcs.asm:
5673         Add libgcc exception.
5674
5675 2003-06-09  David Edelsohn  <edelsohn@gnu.org>
5676             Ayal Zaks  <gcchaifa@us.ibm.com>
5677
5678         * config/rs6000/rs6000.md (define_attr "type"): Add insert_word.
5679         (insvsi*): Add insert_word attribute.
5680         * config/rs6000/rs6000.c (rs6000_variable_issue): Add TYPE_INSERT_WORD.
5681         * config/rs6000/{40x.md,603.md,6xx.md,7450.md,7xx.md,mpc.md,
5682         power4.md,rios1.md,rios2.md,rs64.md}: Add insert_word.
5683
5684 2003-06-09  Kazu Hirata  <kazu@cs.umass.edu>
5685
5686         * fold-const.c (fold): Fix a comment typo.
5687
5688 2003-06-09  Nathan Sidwell  <nathan@codesourcery.com>
5689
5690         * tree-inline.c (expand_call_inline): DECL_SOURCE_LINE_FIRST is
5691         removed.
5692
5693 2003-06-09  J"orn Rennecke <joern.rennecke@superh.com>
5694
5695         * sh.c (gen_block_redirect): Use locators.
5696
5697 2003-06-09  Richard Earnshaw  <rearnsha@arm.com>
5698
5699         * arm.h (THUMB_PRINT_OPERAND_ADDRESS): Use %wd in format and remove
5700         cast to int.
5701
5702 2003-06-09  Richard Sandiford  <rsandifo@redhat.com>
5703
5704         * configure.in: Assume gas 2.14 and above can handle MIPS relocation
5705         operators.
5706         * configure: Regenerated.
5707
5708 2003-06-09  Richard Sandiford  <rsandifo@redhat.com>
5709             Alexandre Oliva  <aoliva@redhat.com>
5710
5711         * config/mips/mips.h (GLOBAL_POINTER_REGNUM): New macro.
5712         (PIC_OFFSET_TABLE_REGNUM): Look at pic_offset_table_rtx after reload.
5713         (STARTING_FRAME_OFFSET): Don't allocate a cprestore slot for
5714         n32/64 PIC.
5715         (MUST_SAVE_REGISTERS): Delete.
5716         * config/mips/mips.c (mips_frame_info): Remove extra_size field.
5717         (machine_function): Add global_pointer field.
5718         (mips_classify_constant): Check for (const $gp) using pointer equality
5719         with pic_offset_table_rtx.
5720         (mips_classify_constant): Handle RELOC_LOADGP_HI and RELOC_LOADGP_LO.
5721         (mips_restore_gp): Use current_function_outgoing_args_size.
5722         (print_operand): Use PIC_OFFSET_TABLE_REGNUM instead of
5723         GP_REG_FIRST + 28.  Handle relocation strings that have
5724         more than one '('.
5725         (mips_reloc_string): Handle RELOC_LOADGP_HI and RELOC_LOADGP_LO.
5726         (mips_global_pointer): New function.
5727         (mips_save_reg_p): New function, mostly split out from...
5728         (compute_frame_size): ...here.  Remove handling of extra_size.
5729         Reclaim args_size if no variables depend on it.  Don't treat gp
5730         as a special case: handle it in the main GPR loop.
5731         (mips_initial_elimination_offset): Fix comment.
5732         (save_restore_insns): Save every register in the GPR mask,
5733         removing distinction between mask and real_mask.
5734         (mips_output_function_prologue): Update .frame psuedo-op after
5735         the removal of extra_size.  Move the SVR4 PIC stack allocation
5736         and cprestore instructions to mips_expand_prologue.
5737         (mips_gp_insn): New function.
5738         (mips_expand_prologue): Set REGNO (pic_offset_table_rtx) to
5739         the chosen global pointer.  Handle SVR4 PIC stack allocation
5740         in the same way as other ABIs.  Adjust varargs code accordingly.
5741         Emit a cprestore insn after allocating the stack.  Use mips_gp_insn
5742         to emit the loadgp sequence.  Follow it with a loadgp_blockage
5743         if not using explicit relocs.
5744         (mips_output_function_epilogue): Reinstate the default gp register.
5745         (mips16_gp_pseudo_reg): Use pic_offset_table_rtx.
5746         (mips16_optimize_gp): Likewise.
5747         * config/mips/mips.md (UNSPEC_LOADGP): Remove.
5748         (UNSPEC_SETJMP, UNSPEC_LONGJMP): Remove.
5749         (UNSPEC_CPRESTORE, RELOC_LOADGP_HI, RELOC_LOADGP_LO): New.
5750         (loadgp): Remove.
5751         (loadgp_blockage, cprestore): New instructions.
5752         (builtin_setjmp_setup): Implement using emit_move_insn.  Use
5753         pic_offset_table_rtx.
5754         (builtin_setjmp_setup_32, builtin_setjmp_setup_64): Remove.
5755         (builtin_longjmp): Use gen_raw_REG to force use of $28.
5756
5757 2003-06-09  Richard Sandiford  <rsandifo@redhat.com>
5758
5759         * config/mips/mips-protos.h (mips_output_division): Declare.
5760         * config/mips/mips.h (MASK_CHECK_RANGE_DIV): Remove.
5761         (MASK_BRANCHLIKELY): Use MASK_CHECK_RANGE_DIV's old number.
5762         (TARGET_NO_CHECK_ZERO_DIV, TARGET_CHECK_RANGE_DIV): Remove.
5763         (TARGET_CHECK_ZERO_DIV): New macro.
5764         (TARGET_SWITCHES): Remove -mcheck-range-div & -mno-check-range-div.
5765         * config/mips/mips.c (mips_output_division): New function.
5766         * config/mips/mips.md (length): Take TARGET_CHECK_ZERO_DIV into
5767         account when calculating the default length of a division.
5768         (divmodsi4, divmoddi4, udivmodsi4, udivmoddi4): Turn into define_insns.
5769         Enable regardless of optimization level.  Use mips_output_division.
5770         (divmodsi4_internal, divmoddi4_internal, udivmodsi4_internal,
5771         udivmoddi4_internal, div_trap, div_trap_normal, div_trap_mips16,
5772         divsi3, divsi3_internal, divdi3, divdi3_internal, modsi3,
5773         modsi3_internal, moddi3, moddi3_internal, udivsi3, udivsi3_internal,
5774         udivdi3, udivdi3_internal, umodsi3, umodsi3_internal, umoddi3,
5775         umoddi3_internal): Remove.
5776
5777 2003-06-09  Richard Sandiford  <rsandifo@redhat.com>
5778
5779         * config/mips/mips.c (mips_reg_names): Change hilo entry to "".
5780         (mips_sw_reg_names): Likewise.
5781         (mips_regno_to_class): Change hilo entry to NO_REGS.
5782         (hilo_operand): Use MD_REG_P.
5783         (extend_operator): New predicate.
5784         (override_options): Remove 'a' constraint.
5785         (mips_secondary_reload_class): Remove hilo handling.  Also remove
5786         handling of (plus sp reg) reloads for mips16.
5787         (mips_register_move_cost): Remove hilo handling.
5788         * config/mips/mips.h (FIXED_REGISTERS): Make hilo entry fixed.
5789         (MD_REG_LAST): Remove hilo from range.
5790         (HILO_REGNUM): Delete.
5791         (reg_class): Remove HILO_REG and HILO_AND_GR_REGS.
5792         (REG_CLASS_NAMES, REG_CLASS_CONTENTS): Update accordingly.
5793         (PREDICATE_CODES): Add entry for extend_operator.
5794         (DEBUG_REGISTER_NAMES): Change hilo entry to "".
5795         * config/mips/mips.md: Remove hilo clobbers wherever they occur.
5796         Remove constraints from multiplication define_expands.  Remove
5797         clobbers from "decorative" define_expand patterns.
5798         (UNSPEC_HILO_DELAY): Delete.
5799         (*mul_acc_si, *mul_sub_si): Add early-clobber to operand 6.
5800         (mulsidi3, umulsidi3): Change pattern to match the TARGET_64BIT case.
5801         Adjust C code to just emit insns for !TARGET_64BIT.
5802         (mulsidi3_internal): Rename to mulsidi3_32bit.
5803         (mulsidi3_64bit): Use a "d" constraint for the destination.
5804         Use extend_operator so that the pattern can handle umulsidi3 as well.
5805         Split the instruction after reload.
5806         (*mulsidi3_64bit_parts): New pattern, generated by mulsidi3_64bit.
5807         (umulsidi3_internal): Rename to umulsidi3_32bit.
5808         (umulsidi3_64bit): Remove.
5809         (*smsac_di, *umsac_di): Line-wrap fixes.
5810         (udivsi3_internal): Don't allow operand 2 to be constant.
5811         (udivdi3_internal, umodsi3_internal, umoddi3_internal): Likewise.
5812         (movdi_internal2, movsi_internal): Remove hilo alternatives.
5813         (reload_in[sd]i, reload_out[sd]i, hilo_delay): Remove.
5814
5815 2003-06-09  Richard Sandiford  <rsandifo@redhat.com>
5816
5817         PR target/10913
5818         * config/mips/mips.h (TARGET_FILE_SWITCHING, NO_DBX_FUNCTION_END,
5819         PUT_SDB_SCL, PUT_SDB_INT_VAL, PUT_SDB_VAL, PUT_SDB_ENDEF,
5820         PUT_SDB_TYPE, PUT_SDB_SIZE, PUT_SDB_DIM, PUT_SDB_START_DIM,
5821         PUT_SDB_NEXT_DIM, PUT_SDB_LAST_DIM, PUT_SDB_TAG, PUT_SDB_SRC_FILE,
5822         SDB_GENERATE_FAKE, TEXT_SECTION): Delete.
5823         (PUT_SDB_DEF, PUT_SDB_PLAIN_DEF, PUT_SDB_BLOCK_START,
5824         PUT_SDB_BLOCK_END, PUT_SDB_FUNCTION_END): Replace use of
5825         asm_out_text_file with asm_out_file.
5826         * config/mips/iris5gas.h (PUT_SDB_SIZE, PUT_SDB_TYPE): Likewise.
5827         * config/mips/elf.h (TEXT_SECTION): Undefine.
5828         * config/mips/elf64.h (TEXT_SECION): Undefine.
5829         * config/mips/openbsd.h (TEXT_SECION): Undefine.
5830         * config/mips/mips.c (asm_out_text_file, asm_out_data_file): Delete.
5831         (override_options): Disable small-data optimizations unless using
5832         gas or explicit relocations.
5833         (mips_asm_file_start, mips_asm_file_end, mips_output_function_epilogue,
5834         iris6_asm_named_section, iris6_asm_file_start): Remove code for
5835         handling TARGET_FILE_SWITCHING.
5836         (copy_file_data): Move into TARGET_IRIX6 block.
5837
5838 2003-06-08  Richard Henderson  <rth@redhat.com>
5839
5840         * expr.h (EXPAND_MEMORY): New.
5841         * expr.c (expand_expr): Check it.
5842         * stmt.c (expand_asm_operands): Provide it when the constraint
5843         requires a memory.  Warn for memory input constraints without
5844         a memory operand.
5845
5846 2003-06-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5847
5848         * varasm.c: Don't include c-tree.h.
5849
5850 2003-06-08  Andreas Jaeger  <aj@suse.de>
5851
5852         * predict.h: Convert to ISO C90 prototypes.
5853         * predict.c: Likewise.
5854         * tree-dump.h: Likewise.
5855         * tree-dump.c: Likewise.
5856         * diagnostic.h: Likewise.
5857         * diagnostic.c: Likewise.
5858         * combine.c: Likewise.
5859
5860         * rtl.h: Convert prototypes of combine.c to ISO C90.
5861
5862 Sun Jun  8 21:27:41 CEST 2003  Jan Hubicka  <jh@suse.cz>
5863
5864         * cfglayout.c (insn_scope): New static function
5865         (block_locators_*, line_locators*, file_locators*): New static varrays.
5866         (scope_to_insns_initialize): Use them.
5867         (insn_line, insn_file): New functions.
5868         (scope_to_insns_finalize): Use insn_scope.
5869         (prologue_locator, epilogue_locator): New global variables.
5870         * emit-rt.c (try_split, make_insn_raw, make_jump_insn_raw,
5871         make_call_insn_raw, emit_copy_of_insn_after): Use locators.
5872         (emit_insn_after_scope, emit_insn_before_scope
5873         emit_jump_insn_after_scope, emit_jump_insn_before_scope
5874         emit_call_insn_after_scope, emit_call_insn_before_scope): Rename to...
5875         (emit_insn_after_setloc, emit_insn_before_setloc
5876         emit_jump_insn_after_setloc, emit_jump_insn_before_setloc
5877         emit_call_insn_after_setloc, emit_call_insn_before_setloc): ... these;
5878         use locators.
5879         * final.c (notice_source_line): Use locators.
5880         (final_start_function): Set initial source file and line.
5881         (final_scan_insn): Use locators.
5882         * ifcvt.c (noce_try_store_flag, noce_try_store_flag_constants,
5883         noce_try_addcc, noce_try_store_flag_mask, noce_try_cmove,
5884         noce_try_cmove_arith, noce_try_minmax, noce_try_abs,
5885         noce_process_if_block, find_cond_trap): Likewise.
5886         * integrate.c (copy_insn_list): Likewise.
5887         * jump.c (duplicate_loop_exit_test): LIkewise.
5888         * print-rtl.c (print_rtx): Print locators.
5889         * recog.c (peephole2_optimize): Likewise.
5890         * rtl.h (INSN_SCOPE): Remove.
5891         (emit_insn_after_scope, emit_insn_before_scope
5892         emit_jump_insn_after_scope, emit_jump_insn_before_scope
5893         emit_call_insn_after_scope, emit_call_insn_before_scope): Rename to...
5894         (emit_insn_after_setloc, emit_insn_before_setloc
5895         emit_jump_insn_after_setloc, emit_jump_insn_before_setloc
5896         emit_call_insn_after_setloc, emit_call_insn_before_setloc): ... these;
5897         (insn_file, insn_line, prologue_locator, epilogue_locator): Declare.
5898         * unroll.c (copy_loop_body): Use locators.
5899         * function.c (set_insn_locators): New function.
5900         (thread_prologue_and_epilogue_insns): Set the locators accordingly.
5901
5902 2003-06-08  Kazu Hirata  <kazu@cs.umass.edu>
5903
5904         * config/h8300/h8300.h (LONG_LONG_TYPE_SIZE): Set to 64.
5905         * config/h8300/t-h8300 (LIB1ASMFUNCS): Remove _floatdisf
5906         _fixsfdi _fixunssfdi.
5907         (LIB2FUNCS_EXTRA): Add entries for clzhi2, ctzhi2, parityhi2,
5908         popcounthi2.
5909         (TARGET_LIBGCC2_CFLAGS): Remove -DDI=SI.
5910         * config/h8300/clzhi2.c: New.
5911         * config/h8300/ctzhi2.c: Likewise.
5912         * config/h8300/parityhi2.c: Likewise.
5913         * config/h8300/popcounthi2.c: Likewise.
5914
5915 Sun Jun  8 15:52:17 CEST 2003  Jan Hubicka  <jh@suse.cz>
5916
5917         * i386.md (subsi_3_zext, sse2_nandv2di3): Fix predicates.
5918         * i386.c (k8_avoid_jump_misspredicts): Fix debug output.
5919
5920         * cfg.c (verify_flow_info): Move IL independent checks from cfgrtl here.
5921         (dump_bb): New based on old dump_bb in cfgrtl.c
5922         (debug_bb, debug_bb_n): Move the functions from cfgrtl.c here.
5923         * cfghooks.h (cfgh_verify_flow_info): Return status.
5924         * cfglayout.c (cfg_layout_finalize): Verify CFG correctness.
5925         * cfgrtl.c (debug_bb, debug_bb_n): Move to cfg.c
5926         (dump_bb): Remove generic parts.
5927         (rtl_verify_flow_info_1): Break out from rtl_verify_flow_info.
5928         (rtl_verify_flow_info): Only check things dependeing on linearized RTL.
5929
5930 2003-06-08  Neil Booth  <neil@daikokuya.co.uk>
5931
5932         * Makefile.in: Rename options.c and options.h to c-options.c and
5933         c-options.h.
5934         (OBJS): Remove options.o.
5935         * c-opts.c: Don'tInclude c-options.h instead of options.h.
5936         * opts.c: Don't include options.h.
5937         (find_opt): Can't use enum opt_code or N_OPTS.
5938         * opts.h (struct cl_option, cl_options, cl_options_count): Move from...
5939         * opts.sh: ... here.
5940
5941 2003-06-07  Eric Botcazou  <ebotcazou@libertysurf.fr>
5942             Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
5943
5944         PR pch/9830
5945         * ggc-common.c (HAVE_MMAP_FILE): Include sys/types.h
5946         if HAVE_MINCORE is defined.
5947         (MAP_FAILED): Define if not defined.
5948         (gt_pch_save): Test against MAP_FAILED.
5949         (gt_pch_restore): If HAVE_MINCORE, use MAP_FIXED to force
5950         the mapping address to the preferred base after checking it
5951         is possible to do so. Test against MAP_FAILED.
5952         * configure.in: Test for the presence of mincore in libc.
5953         * config.in: Regenerate.
5954         * configure: Regenerate.
5955
5956 2003-06-07  Richard Henderson  <rth@redhat.com>
5957
5958         * config/alpha/alpha.c (alpha_setup_incoming_varargs): Fix
5959         conditional compilation guard.
5960
5961 2003-06-08  Kazu Hirata  <kazu@cs.umass.edu>
5962
5963         * optabs.c (expand_abs): Set result_unsignedp to 1 if
5964         flag_trav is zero.
5965
5966 2003-06-07  Richard Henderson  <rth@redhat.com>
5967
5968         * c-cppbuiltin.c (c_cpp_builtins): Define __EXCEPTIONS for C also.
5969
5970 2003-06-07  Richard Henderson  <rth@redhat.com>
5971
5972         * basic-block.h (EDGE_SIBCALL): New.
5973         (EDGE_ALL_FLAGS): Update.
5974         * cfg.c (dump_edge_info): Add sibcall name.
5975         * cfgbuild.c (make_edges): Use EDGE_SIBCALL.
5976         * cfgrtl.c (purge_dead_edges): Handle sibcalls.
5977
5978 2003-06-07  Andreas Jaeger  <aj@suse.de>
5979
5980         * mklibgcc.in (lib2funcs): Remove _exit.
5981         * libgcc2.c: Remove L_exit.
5982         * gbl-ctors.h: Remove declarations dependend on NEED_ATEXIT.
5983
5984         * system.h: Poison NEED_ATEXIT, ON_EXIT, EXIT_BODY.
5985
5986         * doc/tm.texi (Misc): Remove NEED_ATEXIT, ON_EXIT, EXIT_BODY.
5987
5988         * ggc.h: Convert to ISO C90 prototypes.
5989         * ggc-none.c: Likewise.
5990         * ggc-common.c: Likewise.
5991         * ggc-page.c: Likewise.
5992         * ggc-simple.c: Likewise.
5993
5994         * crtstuff.c: Remove undefined usage of INIT_SECTION_PREAMBLE.
5995
5996         * system.h: Poison INIT_SECTION_PREAMBLE.
5997
5998 2003-06-07  Zack Weinberg  <zack@codesourcery.com>
5999
6000         * config.gcc (with_cpu handling): Translate sparc64 in
6001         $machine to --with-cpu=v9.
6002         * config/alpha/alpha.c
6003         (TARGET_ASM_GLOBALIZE_LABEL [TARGET_ABI_UNICOSMK]): Correct definition.
6004         (alpha_setup_incoming_varargs): #ifdef out when TARGET_ABI_UNICOSMK.
6005
6006         * target.h: New hook asm_out.file_end.
6007         * target.h: Update to match.  New hook macro TARGET_ASM_FILE_END.
6008         * toplev.c (compile_file): Use targetm.asm_out.file_end.
6009         * system.h: Poison ASM_FILE_END.
6010         * varasm.c (file_end_indicate_exec_stack): New.
6011         * output.h: Prototype it.
6012         * doc/tm.texi: Document TARGET_ASM_FILE_END and
6013         file_end_indicate_exec_stack.  Delete references to attasm.h.
6014
6015         * config/darwin.h (TARGET_ASM_FILE_END): Reset to darwin_file_end.
6016         (ASM_FILE_END): Delete; move code...
6017         * config/darwin.c (darwin_file_end): Here; new function.
6018         * config/darwin-protos.h: Prototype it.
6019         * config/alpha/alpha.c (unicosmk_asm_file_end): Make static,
6020         rename unicosmk_file_end.
6021         * config/arm/aof.h (ASM_FILE_END): Delete; move code...
6022         * config/arm/arm.c (aof_file_end): ... here; new static function.
6023         Set TARGET_ASM_FILE_END to aof_file_end if AOF_ASSEMBLER.
6024         Make aof_dump_imports and aof_dump_pic_table static.
6025         * config/avr/avr.c (asm_file_end): Rename avr_file_end, make static.
6026         Set TARGET_ASM_FILE_END to avr_file_end.
6027         * config/c4x/c4x.c (c4x_file_end): Make static.  Take no arguments.
6028         Set TARGET_ASM_FILE_END to c4x_file_end.
6029         * config/h8300/h8300.c (asm_file_end): Rename h8300_file_end,
6030         make static. Take no arguments.  Set TARGET_ASM_FILE_END to
6031         h8300_file_end.
6032         * config/i370/i370.h (ASM_FILE_END): Delete; move code...
6033         * config/i370/i370.c (i370_file_end): ... here; new static function.
6034         Set TARGET_ASM_FILE_END to i370_file_end.
6035          * config/i386/i386.c (ix86_asm_file_end): Rename ix86_file_end.
6036          Take no arguments.  Call file_end_indicate_exec_stack if
6037          NEED_INDICATE_EXEC_STACK; don't use SUBTARGET_FILE_END.
6038         * config/i386/i386.h: Set TARGET_ASM_FILE_END, not ASM_FILE_END.
6039         Define NEED_INDICATE_EXEC_STACK to 0.
6040         * config/i386/linux.h, config/i386/linux64.h: Redefine
6041         NEED_INDICATE_EXEC_STACK to 1 instead of setting SUBTARGET_FILE_END.
6042         * config/i386/winnt.c (i386_pe_asm_file_end): Rename to
6043         i386_pe_file_end.  Take no arguments.  Use ix86_file_end.
6044         * config/ia64/ia64.c (ia64_hpux_asm_file_end): Rename to
6045         ia64_hpux_file_end, make static.  Take no arguments.
6046         * config/ip2k/ip2k.c (asm_file_start, asm_file_end,
6047         commands_in_prologues, commands_in_epilogues): Delete.
6048         (function_epilogue): Update to match.
6049         * config/mips/mips.c (mips_asm_file_end): Rename mips_file_end,
6050         make static.  Take no arguments.
6051         (iris6_asm_file_end): Rename iris6_file_end, make static, use
6052         mips_file_end, take no arguments.
6053         Set TARGET_ASM_FILE_END to iris6_file_end or mips_file_end as
6054         appropriate.
6055         * config/mmix/mmix.c (mmix_asm_file_end): Rename mmix_file_end,
6056         make static, take no arguments. Set TARGET_ASM_FILE_END to
6057         mmix_file_end.
6058         * config/pa/pa.c (output_deferred_plabels): Make static, take
6059         no arguments.  Set TARGET_ASM_FILE_END to output_deferred_plabels.
6060         * config/rs6000/xcoff.h (TARGET_ASM_FILE_END): Set it.
6061         (ASM_FILE_END): Delete; move code...
6062         * config/rs6000/rs6000.c (rs6000_xcoff_file_end): ... here;
6063         new static function.
6064
6065         * config/avr/avr.h, config/cris/cris.h, config/h8300/h8300.h
6066         * config/mmix/mmix.h, config/mips/iris6.h, config/mips/mips.h:
6067         Don't set ASM_FILE_END.
6068         * config/alpha/linux-elf.h, config/m68k/linux.h, config/rs6000/linux.h
6069         * config/rs6000/linux64.h, config/s390/linux.h, config/sparc/linux.h
6070         * config/sparc/linux64.h: Set TARGET_ASM_FILE_END to
6071         file_end_indicate_exec_stack; don't set ASM_FILE_END.
6072         * config/alpha/unicosmk.h, config/i386/cygming.h
6073         * config/ia64/hpux.h: Set TARGET_ASM_FILE_END, not ASM_FILE_END.
6074         * config/arm/arm-protos.h, config/alpha/alpha-protos.h
6075         * config/avr/avr-protos.h, config/c4x/c4x-protos.h
6076         * config/h8300/h8300-protos.h, config/ia64/ia64-protos.h
6077         * config/ip2k/ip2k-protos.h, config/mips/mips-protos.h
6078         * config/mmix/mmix-protos.h, config/pa/pa-protos.h: Update.
6079
6080 Sat Jun  7 18:32:13 CEST 2003  Jan Hubicka  <jh@suse.cz>
6081
6082         * i386.h (OPTION_DEFAULT_SPECS): Avoid -mcpu default when -march is
6083         specified.
6084
6085 Sat Jun  7 15:20:01 CEST 2003  Jan Hubicka  <jh@suse.cz>
6086
6087         * Makefile.in (stageprofile_build): Kill redundant target.
6088         * i386.c (mdep_reorg): Don't pad jumps for Athlon.
6089
6090 2003-06-07  Andreas Jaeger  <aj@suse.de>
6091
6092         * doc/tm.texi (Costs): Remove DONT_REDUCE_ADDR documentation.
6093
6094         * config/avr/avr.h: Remove comment regarding DONT_REDUCE_ADDR.
6095         * config/dsp16xx/dsp16xx.h: Likewise.
6096         * config/i386/i386.h: Likewise.
6097         * config/ip2k/ip2k.h: Likewise.
6098
6099 2003-06-07  Neil Booth  <neil@daikokuya.co.uk>
6100
6101         * Makefile.in (OJBS, c-opts.o): Update.
6102         (c-options.c, c-options.h): Rename options.h and options.c.
6103         (options.h): Rename options_.h.
6104         (opts.o): New.
6105         * c-common.h (c_common_handle_option): Replace c_common_decode_option.
6106         (c_common_init_options): Update prototype.
6107         * c-lang.c (c_init_options): Update prototype.
6108         (LANG_HOOKS_HANDLE_OPTION): Override.
6109         (LANG_HOOKS_DECODE_OPTION): Drop.
6110         * c-opts.c: Include opts.h and options.h instead of c-options.h
6111         and c-options.c.
6112         (lang_flags): Move to file scope.
6113         (find_opt, c_common_decode_option): Remove.
6114         (CL_C, CL_OBJC, CL_CXX, CL_OBJCXX, CL_JOINED, CL_SEPARATE,
6115         CL_REJECT_NEGATIVE): Move to opts.h.
6116         (missing_arg): Update prototype.
6117         (c_common_init_options): Update for new prototype.
6118         (c_common_handle_options): Filenames are passed as N_OPTS.
6119         * hooks.c (hook_int_void_0): New.
6120         * hooks.h (hook_int_void_0): New.
6121         * langhooks-def.h (LANG_HOOKS_INIT_OPTIONS): New default.
6122         (LANG_HOOKS_HANDLE_OPTION): Default to NULL for now.
6123         (LANG_HOOKS_INITIALIZER): Update.
6124         * langhooks.h (init_options): Update.
6125         (handle_option): New.
6126         * opts.c, opts.h: New files.
6127         * opts.sh: Update c file to include opts.h and options.h.
6128         * toplev.c: Include opts.h; change options.h to options_.h.
6129         (parse_options_and_default_flags): Get lang_mask, use
6130         handle_option for language-specific handling.
6131         * objc/objc-lang.c (LANG_HOOKS_DECODE_OPTON): Drop.
6132         (LANG_HOOKS_HANDLE_OPTION): Override.
6133         (objc_init_options): Update.
6134
6135 2003-06-07  Magnus Kreth <magnus.kreth@gmx.de>
6136             Thibaud Gaillard <thibaud.gaillard@nto.atmel.com>
6137
6138         PR other/7031
6139         * Makefile.in (install-common): Remove GCOV_INSTALL_NAME instead of
6140         gcov.
6141
6142 2003-06-07  Kelley Cook  <kelleycook@wideopenwest.com>
6143
6144         * configure.in (HAVE_LD_RO_RW_SECTION_MIXING): Remove quotes in
6145         section names.
6146         * configure: Regenerate.
6147
6148 2003-06-07  Alan Modra  <amodra@bigpond.net.au>
6149
6150         * config/rs6000/linux64.h (CRT_CALL_STATIC_FUNCTION): Define.
6151
6152 2003-06-06  James E Wilson  <wilson@tuliptree.org>
6153
6154         PR inline-asm/10890
6155         * reload1.c (merge_assigned_reloads): Abort only if two reloads have
6156         different in fields.
6157
6158 2003-06-06  Nathanael Nerode  <neroden@gcc.gnu.org>
6159
6160         * configure.in: Make $(target_subdir) correspond with top level usage.
6161         * Makefile.in: Likewise.
6162         * configure: Regenerate.
6163
6164 2003-06-06  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
6165
6166         * pa.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_ALIGNED_COMMON,
6167         ASM_OUTPUT_ALIGNED_LOCAL): Cast `SIZE' and `ALIGNED' parameters to
6168         unsigned HOST_WIDE_INT.
6169         * pa-pro-end.h (ASM_OUTPUT_ALIGNED_COMMOM, ASM_OUTPUT_ALIGNED_LOCAL):
6170         Likewise.
6171         * pa64-hpux.h (ASM_OUTPUT_ALIGNED_COMMON, ASM_OUTPUT_ALIGNED_LOCAL):
6172         Likewise.
6173
6174 2003-06-06  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6175
6176         * doc/install.texi (Prerequisites): New section documenting
6177         tools and packages necessary prior to building and/or
6178         modifying GCC.
6179         * doc/install.texi2html: Also generate prerequisites.html.
6180
6181 2003-06-06  Richard Earnshaw  <rearnsha@arm.com>
6182
6183         PR target/11052
6184         * ifcvt.c (noce_process_if_block): Fail if the destination has
6185         side-effects.
6186
6187 2003-06-06  Jason Merrill  <jason@redhat.com>
6188
6189         * stmt.c (resolve_asm_operand_names): Rename from
6190         resolve_operand_names.  No longer static.  Avoid needless copying.
6191         Don't build array of constraints.
6192         (expand_asm_operands): Build it here.
6193         * tree.h: Declare resolve_asm_operand_names.
6194
6195         * stmt.c (expand_decl): Put artificial vars into registers even
6196         when not optimizing, and don't mark the regs as user vars.
6197
6198 2003-06-06  J"orn Rennecke <joern.rennecke@superh.com>
6199
6200         * sh.h (FUNCTION_ARG_1): Consistently use NEW_MODE for the mode
6201         of the generated register.
6202
6203 2003-06-06  Daniel Jacobowitz  <drow@mvista.com>
6204
6205         * config.gcc: Add a missing sparc64 case.
6206
6207 2003-06-06  Jakub Jelinek  <jakub@redhat.com>
6208
6209         * mklibgcc.in: Propagate .note.GNU-stack section if needed into
6210         the .hidden assembly stubs.
6211
6212 2003-06-06  H.J. Lu <hongjiu.lu@intel.com>
6213
6214         * config.gcc (extra_headers): Add emmintrin.h for i[34567]86-*-*
6215         and x86_64-*-*.
6216
6217         * config/i386/mmintrin.h: Update version and add alternate
6218         intrinsic names.
6219         * config/i386/xmmintrin.h: Likewise.
6220
6221         * config/i386/xmmintrin.h: Include <emmintrin.h>. Move SSE2
6222         intrinsics to ...
6223         * config/i386/emmintrin.h: Here. New file.
6224
6225 2003-06-06  Roger Sayle  <roger@eyesopen.com>
6226
6227         * fold-const.c (fold <ABS_EXPR>):  Re-fold the result of folding
6228         fabs(-x) into fabs(x).  Use tree_expr_nonnegative_p to determine
6229         when the ABS_EXPR (fabs or abs) is not required.
6230         (tree_expr_nonnegative_p): Move the logic that sqrt and exp are
6231         always nonnegative from fold to here.  Additionally, cabs and fabs
6232         are always non-negative, and pow and atan are non-negative if
6233         their first argument is non-negative.
6234
6235         * builtins.c (fold_builtin_cabs): New function to fold cabs{,f,l}.
6236         Evaluate cabs of a constant at compile-time.  Convert cabs of a
6237         non-complex argument into fabs.  Convert cabs(z) into
6238         sqrt(z.r*z.r + z.i*z.i) at the tree-level with -ffast-math or
6239         -funsafe-math-optimizations or -ffast-math.
6240         (fold_builtin): Convert BUILT_IN_FABS{,F,L} into an ABS_EXPR.
6241         Fold BUILT_IN_CABS{,F,L} using fold_builtin_cabs.
6242
6243 Thu Jun  5 20:51:09 CEST 2003  Jan Hubicka  <jh@suse.cz>
6244
6245         * sourcebuild.texi (Front End Directory): Document new hooks.
6246
6247 Fri Jun  6 11:02:35 CEST 2003  Jan Hubicka  <jh@suse.cz>
6248
6249         * function.c (FLOOR_ROUND, CEIL_ROUND): Fix.
6250         * i386.md (gen_pro_epilogue_adjust_stack): Deal with gigantic
6251         stack frames.
6252         (pro_epilogue_adjust_stack_rex64_2): New pattern
6253
6254 Fri Jun  6 11:03:14 CEST 2003  Jan Hubicka  <jh@suse.cz>
6255                                Pop Sebastian
6256                                Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
6257
6258         * cfghooks.h, cfghooks.c: New files.
6259         * Makefile.in (BASIC_BLOCK_H): Depends on cfghooks.h.
6260         (OBJS): Add cfghooks.o.
6261         (cfghooks.o): New rule.
6262         * basic-block.h (split_edge): Rename to rtl_split_edge.
6263         (verify_flow_info): Rename to rtl_verify_flow_info.
6264         (cfghooks.h): Included here.
6265         * cfgrtl.c (split_edge): Renamed rtl_split_edge.
6266         (verify_flow_info): Renamed rtl_verify_flow_info.
6267         * toplev.c (rest_of_compilation): Call rtl_register_cfg_hooks.
6268
6269         * basic-block.h (split_block, split_edge, flow_delete_block,
6270         redirect_edge_and_branch, redirect_edge_and_branch_force): Delete.
6271         (flow_delete_block_noexpunge):  Return void.
6272         * cfg.c (verify_flow_info): New function.
6273         * cfgcleanup.c (try_simplify_condjump, outgoing_edges_match,
6274         try_crossjump_to_edge, try_optimize_cfg, delete_unreachable_blocks):
6275         Use delete_block.
6276         * cfglayout.c (function_footer): Rename to...
6277         (cfg_layout_function_footer): ... this variable
6278         (unlink_insn_chain): Make global.
6279         (fixup_reorder_chain, record_effective_endpoints): Update.
6280         (cleanup_unconditional_jumps): Use delete_block.
6281         (cfg_layout_redirect_edge, cfg_layout_split_block): Move to cfgrtl.c
6282         (cfg_layout_duplicate_bb): Use redirect_edge_and_branch_force.
6283         (cfg_layout_initialize, cfg_layout_finalize): Update hooks.
6284         * cfglayout.h (cfg_layout_redirect_edge, cfg_layout_split_block):  Delete.
6285         (cfg_layout_function_footer): Declare.
6286         * cfgloopmanip (split_loop_bb): Do not update RBI.
6287         (remove_bbs): Use delete_block.
6288         (loop_reidrect_edge, loop_delete_branch_edge): Use
6289         redirect_edge_and_branch.
6290         (create_preheader): Use split_block and redirect_edge_and_branch_force.
6291         (split_edge_with): Likewise.
6292         * cfgrtl.c: Include cfglayout.h
6293         (split_edge): Rename to ...
6294         (rtl_split_edge) ... this one; make local.
6295         (redirect_edge_and_branch): Rename to ...
6296         (rtl_redirect_edge_and_branch) ... this one; make local.
6297         (redirect_edge_and_branch_force): Rename to ...
6298         (rtl_redirect_edge_and_branch_force) ... this one; make local.
6299         (cfg_layout_delete_block, cfg_layout_delete_edge_and_branch_force): New.
6300         (cfg_layout_redirect_edge_and_branch, cfg_layout_split_block): Move here from
6301         cfglayout.c; update to directly call RTL counterparts.
6302         (rtl_cfg_hooks, cfg_layout_rtl_cfg_hooks): New functions.
6303         * ifcvt.c (find_cond_trap): Use delete_block.
6304         (find_if_case_1): Use delete_block.
6305         (find_if_case_2): Use delete_block.
6306         * rtl.h (unlink_insn_chain): Declare.
6307         * toplev.c (rtl_reigster_cfg_hooks): New.
6308
6309 2003-06-05  Richard Henderson  <rth@redhat.com>
6310
6311         * recog.c (peephole2_optimize): Revert last change.
6312
6313 2003-06-05  Richard Henderson  <rth@redhat.com>
6314
6315         * recog.c (peephole2_optimize): Don't split block unless
6316         can_throw_internal.
6317
6318 2003-06-06  Kazu Hirata  <kazu@cs.umass.edu>
6319
6320         * config/h8300/h8300.c (get_shift_alg): Correct the syntax of rotxl.
6321         * config/h8300/h8300.md (*addsi3_lshiftrt_16_zexthi): Likewise.
6322
6323 2003-06-05  Kelley Cook  <kelleycook@wideopenwest.com>
6324
6325         PR optimization/4490
6326         * config/i386/i386.md: Don't use XFMode if TARGET_128BIT_LONG_DOUBLE.
6327         * doc/invoke.texi (m96bit-long-double, m128bit-long-double):  Reword
6328         documentation to accurately reflect what these options do.
6329
6330 2003-06-06  Kaz Kojima  <kkojima@gcc.gnu.org>
6331
6332         * config/sh/linux.h (STARTFILE_SPEC): Handle -pie.  Simplify.
6333         (ENDFILE_SPEC): Redefine to handle -pie.
6334
6335 2003-06-05  Phil Edwards <phil@jaj.com>
6336
6337         * Makefile.in (qmtest-g++): Use target_alias, not target.
6338
6339 2003-06-05  Per Bothner  <pbothner@apple.com>
6340
6341         * toplev.c (push_srcloc):  Simplify behavior to save current location
6342         and set current location to parameters.
6343         (pop_srcloc):  Simplify semantics.
6344         (lang_dependent_init):  Remove now-useless initial push_srcloc.
6345
6346 2003-05-06  Richard Henderson  <rth@redhat.com>
6347
6348         * dwarf2out.c (loc_descriptor_from_tree): Return 0 for
6349         language-specific tree codes.
6350
6351 2003-06-05  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
6352
6353         PR middle-end/9986
6354         * pa.c (pa_init_builtins): Also set implicit_built_in_decls for
6355         BUILT_IN_FPUTC_UNLOCKED to NULL_TREE.
6356
6357 Thu Jun  5 18:32:46 CEST 2003  Jan Hubicka  <jh@suse.cz>
6358
6359         * install.tex: Document profiledbootstrap.
6360
6361         * configure.in:  Add support for lang.stageprofile and
6362         lang.stagefeedback
6363         * Makefile.in (clean, distclean): Kill new stages
6364         (POSTSTAGE1_FLAGS_TO_PASS): Break from ...
6365         (STAGE2_FLAGS_TO_PASS): ... this one.
6366         (STAGEPROFILE_FLAGS_TO_PASS, STAGEFEEDBACK_FLAGS_TO_PASS): New.
6367         (stage[2-4]_build): Add POSTSTAGE1_FLAGS_TO_PASS.
6368         (stageprofile_build, stageprofile_copy, stagefeedback_build,
6369         stagefeedback_copy): New.
6370         (restageprofile, restagefeedback, stageprofile-start,
6371         stageprofile, stagefeedback-start): Likewise.
6372
6373 2003-06-05  David Miller  <davem@redhat.com>
6374             Richard Henderson  <rth@redhat.com>
6375
6376         * optabs.c (HAVE_conditional_trap): Provide default.
6377         (gen_conditional_trap): Likewise.
6378         (init_optabs): Merge init_traps.
6379         (gen_cond_trap): Use prepare_operand.  Restructure and avoid ifdef.
6380
6381 Thu Jun  5 14:59:44 CEST 2003  Jan Hubicka  <jh@suse.cz>
6382
6383         * combine.c (simplify_if_then_else): (IF_THEN_ELSE (NE REG 0) (0) (8))
6384         is REG for nonzero_bits (REG) == 8.
6385
6386 Thu Jun  5 13:23:51 CEST 2003  Jan Hubicka  <jh@suse.cz>
6387
6388         * i386.md (align): Fix warning; clarify what to do when no p2align
6389         is available.
6390
6391 2003-06-05  Nick Clifton  <nickc@redhat.com>
6392
6393         * config.gcc (m32r-elf): Revert previous delta.
6394         * config/m32r/t-m32r (crtinit.o): Fix rule to work with
6395         multilibs.  Remove m32rx specific version.
6396         (crtfini.o): Likewise.
6397         (EXTRA_MULTILIB_PARTS): Define.
6398
6399 2003-06-05  Eric Botcazou  <ebotcazou@libertysurf.fr>
6400
6401         * doc/md.texi (Machine Constraints): Correct the meaning of
6402         constraints related to floating-point registers on SPARC.
6403
6404 2003-06-05  Eric Botcazou  <ebotcazou@libertysurf.fr>
6405             Paolo Bonzini  <bonzini@gnu.org>
6406
6407         PR target/10663
6408         * configure.in (HAVE_LD_RO_RW_SECTION_MIXING): Redirect
6409         assembler and linker output to /dev/null.
6410         Use a 'sed' construct instead of 'grep -A1'.
6411         * configure: Regenerate.
6412
6413 2003-06-04  Richard Henderson  <rth@redhat.com>
6414
6415         * config/i386/i386.c (struct ix86_address): Add seg.
6416         (no_seg_address_operand): New.
6417         (ix86_decompose_address): Restructure PLUS loop.  Accept one
6418         UNSPEC_TP if TARGET_TLS_DIRECT_SEG_REFS.  Adjust ESP swap test
6419         to test for a regnum, not stack_pointer_rtx.
6420         (ix86_address_cost): Reduce cost if non-default segment.
6421         (legitimate_address_p): Remove UNSPEC_TP check.
6422         (get_thread_pointer): Add to_reg argument.  Don't represent
6423         the thread pointer as a memory load.
6424         (legitimize_tls_address): Split out of ...
6425         (legitimize_address): ... here.
6426         (print_operand_address): Handle parts.seg.
6427         (ix86_expand_move): Use legitimize_tls_address.
6428         (ix86_rtx_costs): Handle UNSPEC_TP.
6429         * config/i386/i386.h (MASK_TLS_DIRECT_SEG_REFS): New.
6430         (TARGET_TLS_DIRECT_SEG_REFS): New.
6431         (TARGET_SWITCHES): Add tls-direct-seg-refs.
6432         (TARGET_TLS_DIRECT_SEG_REFS_DEFAULT): Default.
6433         (PREDICATE_CODES): Add no_seg_address_operand.
6434         * config/i386/i386.md (lea_1): Use it.
6435         (lea_1_rex64, lea_1_zext, lea_2_rex64): Likewise.
6436         (load_tp_si, add_tp_si, load_tp_di, add_tp_di): New.
6437         * config/i386/linux.h (TARGET_TLS_DIRECT_SEG_REFS_DEFAULT): New.
6438         * config/i386/linux64.h (TARGET_TLS_DIRECT_SEG_REFS_DEFAULT): New.
6439         * doc/invoke.texi: Add -mtls-direct-seg-refs.
6440
6441 2003-06-04  Mark Mitchell  <mark@codesourcery.com>
6442
6443         * Makefile.in (QMTESTRUNFLAGS): Set for DejaGNU emulation.
6444         (QMTEST_GPP_TESTS): Use "g++" by default.
6445         (stamp-qmtest): Tweak database creation.
6446         (QMTEST_DIR/context): Update context file format.
6447         (qmtest-g++): Tweak command-line.
6448
6449 2003-06-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6450
6451         * Makefile.in (varasm.o): Don't set -Wno-error.
6452         * rs6000/t-rs6000 (varasm.o, out_object_file): Don't clear.
6453
6454 2003-06-04  Zack Weinberg  <zack@codesourcery.com>
6455
6456         PR bootstrap/3163
6457         * aclocal.m4 (AC_FUNC_MMAP_ANYWHERE, AC_FUNC_MMAP_FILE): Delete.
6458         (gcc_AC_FUNC_MMAP_BLACKLIST): New.
6459         * configure.in: Check for sys/mman.h and mmap in AC_CHECK_HEADERS
6460         and AC_CHECK_FUNCS lists, respectively.  Use
6461         gcc_AC_FUNC_MMAP_BLACKLIST, not AC_FUNC_MMAP_ANYWHERE nor
6462         AC_FUNC_MMAP_FILE.
6463         * configure, config.in: Regenerate.
6464
6465 2003-06-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6466
6467         * arm/aout.h (ASM_OUTPUT_SKIP): Fix cast for format specifier warning.
6468         * arm.c (arm_output_function_prologue): Fix format specifiers.
6469         * arm.h (ARM_PRINT_OPERAND_ADDRESS): Likewise.
6470         * m68k.c (m68k_output_mi_thunk): Use more readable %wd instead of
6471         HOST_WIDE_INT_PRINT_DEC.
6472         * vax.c (vax_output_function_prologue): Fix format specifiers.
6473
6474 2003-06-04  Richard Henderson  <rth@redhat.com>
6475
6476         * cse.c (find_best_addr): Consider binary operators even if second
6477         argument is not CONST_INT.
6478
6479 2003-06-04  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
6480
6481         * doc/invoke.texi (max-cse-path-length): Document.
6482
6483 2003-06-04  Richard Henderson  <rth@redhat.com>
6484
6485         * config/i386/i386.md (align): Use ASM_OUTPUT_*ALIGN macros.
6486
6487 2003-06-04  Andrew Pinski <pinskia@physics.uc.edu>
6488
6489         * config/rs6000/darwin.h (RS6000_OUTPUT_BASENAME):
6490         Remove semi-colon at the end of the expression.
6491
6492 2003-06-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6493
6494         * i370.c (mvs_function_name_length): Fix signed/unsigned warnings.
6495         * i370.h (mvs_function_name_length): Likewise.
6496         * i960.h (CONSTANT_ALIGNMENT): Likewise.
6497         * mips/linux.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
6498         * pa/pa-pro-end.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
6499         * pa.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
6500         * rs6000/xcoff.h (ASM_DECLARE_FUNCTION_NAME): Delete unused
6501         variable.
6502
6503 2003-06-04  Daniel Jacobowitz  <drow@mvista.com>
6504
6505         * config.gcc: Reorganize --with-cpu logic.  Set
6506         configure_default_options according to the default CPU, --with-cpu,
6507         --with-arch, --with-tune, --with-schedule, --with-abi, and
6508         --with-float.  Check for legal values of various options.
6509         * configure.in: Define configure_default_options in configargs.h.
6510         * configure: Regenerated.
6511         * config/mips/mips.h (TARGET_DEFAULT_ARCH_P)
6512         (TARGET_DEFAULT_FLOAT_P): New macros.
6513         * gcc.c (do_option_spec): New function.
6514         (struct default_spec, option_default_specs): New.
6515         (main): Call do_option_spec.
6516         * config/alpha/alpha.h, config/arm/arm.h, config/i386/i386.h,
6517         config/mips/mips.h, config/pa/pa.h, config/rs6000/rs6000.h,
6518         config/sparc/sparc.h (OPTION_DEFAULT_SPECS): Define.
6519
6520         * doc/install.texi: Update --with-cpu documentation.  Mention
6521         --with-arch, --with-schedule, --with-tune, --with-abi, and
6522         --with-float.
6523         * doc/tm.texi (Driver): Document OPTION_DEFAULT_SPECS.
6524
6525 2003-06-04  Daniel Jacobowitz  <drow@mvista.com>
6526
6527         * config.gcc: Only process --with-cpu logic in the third pass.
6528
6529 2003-06-04  Daniel Jacobowitz  <drow@mvista.com>
6530
6531         * config.gcc: Reorganize --with-cpu section.  Remove an
6532         obsolete comment about the default CPU for x86-64.  Fix
6533         a typo for the ep9312.  Update the list of supported PowerPC
6534         CPUs.  Support a limited set of new --with-cpu options
6535         for i386.
6536
6537 2003-06-04  Aldy Hernandez  <aldyh@redhat.com>
6538
6539         * config/rs6000/rs6000.c (rs6000_complex_function_value): Unpack
6540         complex numbers <= 32 bits into two registers.
6541
6542 2003-06-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6543
6544         * alpha.c (print_operand_address): Fix format specifier warnings.
6545         * alpha/elf.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
6546         * alpha/vms.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
6547         * arm/aof.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL): Likewise.
6548         * arm/pe.h (ASM_OUTPUT_COMMON): Likewise.
6549         * avr.h (ASM_OUTPUT_COMMON, ASM_GENERATE_INTERNAL_LABEL,
6550         ASM_OUTPUT_SKIP): Likewise.
6551         * c4x.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
6552         * dsp16xx.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
6553         * h8300.h (ASM_GENERATE_INTERNAL_LABEL, ASM_OUTPUT_COMMON):
6554         Likewise.
6555         * i370.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
6556         * i386/cygming.h (ASM_OUTPUT_COMMON): Likewise.
6557         * i386/darwin.h (ASM_OUTPUT_COMMON): Likewise.
6558         * i960.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
6559         * m68k/hp320.h (PRINT_OPERAND_ADDRESS): Likewise.
6560         * mcore.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
6561         * pdp11.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
6562         * ptx4.h (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
6563         * sparc/freebsd.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
6564         * svr3.h (ASM_OUTPUT_COMMON): Likewise.
6565
6566 2003-06-04  J"orn Rennecke <joern.rennecke@superh.com>
6567
6568         * c-decl.c (c_init_decl_processing): Clear input_file_name
6569         while building common nodes.
6570         * dwarf2out.c (gen_compile_unit_die, dwarf2out_finish):
6571         Don't add working directory for strings like <built-in> .
6572
6573 2003-06-04  David Edelsohn  <edelsohn@gnu.org>
6574
6575         * doc/install.texi (*-ibm-aix*): Native as and ld required
6576         to bootstrap on AIX 5L.
6577
6578 2003-06-04  Richard Henderson  <rth@redhat.com>
6579
6580         * c-common.c (handle_cleanup_attribute): New.
6581         (c_common_attributes): Add it.
6582         * c-decl.c (finish_decl): Honor the cleanup attribute.
6583         * doc/extend.texi (Variable Attributes): Document it.
6584
6585         * unwind-c.c: New file.
6586         * Makefile.in (LIB2ADDEH): Add it.
6587         * config/t-darwin, config/t-linux, config/t-linux-gnulibc1,
6588         config/ia64/t-ia64: Likewise.
6589
6590 2003-06-04  Jakub Jelinek  <jakub@redhat.com>
6591
6592         * function.c (trampolines_created): New variable.
6593         (expand_function_end): Set it when doing INITIALIZE_TRAMPOLINE.
6594         * function.h (trampolines_created): Add.
6595         * config/s390/linux.h (ASM_FILE_END): Define.
6596         * config/alpha/linux-elf.h (ASM_FILE_END): Define.
6597         * config/m68k/linux.h (ASM_FILE_END): Define.
6598         * config/rs6000/linux.h (ASM_FILE_END): Define.
6599         * config/rs6000/linux64.h (ASM_FILE_END): Define.
6600         * config/rs6000/ppc-asm.h: Add .note.GNU-stack on powerpc-linux.
6601         * config/sparc/linux.h (ASM_FILE_END): Define.
6602         * config/sparc/linux64.h (ASM_FILE_END): Define.
6603         * config/i386/i386.c (ix86_asm_file_end): Use SUBTARGET_FILE_END.
6604         * config/i386/linux.h (SUBTARGET_FILE_END): Define.
6605         * config/i386/linux64.h (SUBTARGET_FILE_END): Define.
6606
6607 Wed Jun  4 18:39:33 CEST 2003  Jan Hubicka  <jh@suse.cz>
6608
6609         * i386.c (min_insn_size, k8_avoid_jump_misspredicts): New functions
6610         (ix86_reorg): Use it.
6611         * i386.md (align): New insn pattern.
6612
6613 2003-06-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6614
6615         * toplev.c (rest_of_type_compilation): Fix typo.
6616
6617 2003-06-04  Jakub Jelinek  <jakub@redhat.com>
6618             Alan Modra  <amodra@bigpond.net.au>
6619
6620         * config/i386/linux.h (NO_PROFILE_COUNTERS): Define to 1.
6621         * config/i386/freebsd.h (NO_PROFILE_COUNTERS): Likewise.
6622         * config/i386/netbsd-elf.h (NO_PROFILE_COUNTERS): Likewise.
6623         * config/xtensa/xtensa.h (NO_PROFILE_COUTNERS): Likewise.
6624         * config/darwin.h (NO_PROFILE_COUNTERS): Likewise.
6625         * final.c (NO_PROFILE_COUNTERS): Define to 0 if not defined.
6626         (profile_function): Allow NO_PROFILE_COUNTERS to be non-constant.
6627         * config/rs6000/rs6000.c (output_profile_hook): Likewise.
6628
6629         * configure.in (powerpc*-*, s390*-*): Set tls_as_opt.
6630         Pass it to $gcc_cv_as.
6631         * configure: Rebuilt.
6632
6633         * config/rs6000/rs6000.c (rs6000_abi_name): Remove initializer.
6634         (print_operand): Allow TARGET_AIX to be non-constant.
6635         (rs6000_aix_emit_builtin_unwind_init, rs6000_emit_eh_toc_restore):
6636         Define unconditionally.
6637         (rs6000_elf_declare_function_name): New function.
6638         * config/rs6000/rs6000.md (eh_return): Allow TARGET_AIX to be
6639         non-constant.
6640         * config/rs6000/linux64.h [!RS6000_BI_ARCH] (TARGET_64BIT): Define
6641         to 1.
6642         (DEFAULT_ARCH64_P, RS6000_BI_ARCH_P): Define.
6643         [IN_LIBGCC2] (TARGET_64BIT): Define based on whether __powerpc64__
6644         is defined.
6645         (TARGET_AIX): Define to 1 if TARGET_64BIT.
6646         (PROCESSOR_DEFAULT): Remove.
6647         (TARGET_RELOCATABLE, RS6000_ABI_NAME, INVALID_64BIT,
6648         INVALID_32BIT, SUBSUBTARGET_OVERRIDE_OPTIONS): Define.
6649         [RS6000_BI_ARCH] (OVERRIDE_OPTIONS, ASM_FILE_START): Define.
6650         (ASM_DEFAULT_SPEC, ASM_SPEC, LINK_OS_LINUX_SPEC): Define for both
6651         -m32 and -m64.
6652         (MULTILIB_DEFAULTS): Define.
6653         (SUBSUBTARGET_EXTRA_SPECS): Define.
6654         (ASM_SPEC32, ASM_SPEC64, ASM_SPEC_COMMON): Define.
6655         (TARGET_TOC): Define only if !RS6000_BI_ARCH.
6656         (TARGET_NO_TOC): Remove.
6657         [!RS6000_BI_ARCH] (TARGET_RELOCATABLE, TARGET_EABI,
6658         TARGET_PROTOTYPE): Define to 0.
6659         (NO_PROFILE_COUNTERS): Define to TARGET_64BIT.
6660         (PROFILE_HOOK): Only call output_profile_hook if TARGET_64BIT.
6661         (ADJUST_FIELD_ALIGN, ROUND_TYPE_ALIGN): Adjust to work properly
6662         if !TARGET_64BIT.
6663         (USER_LABEL_PREFIX): Remove.
6664         (JUMP_TABLES_IN_TEXT_SECTION): Define to TARGET_64BIT.
6665         (SETUP_FRAME_ADDRESSES): Only call rs6000_aix_emit_builtin_unwind_init
6666         if TARGET_64BIT.
6667         (TARGET_OS_CPP_BUILTINS): Handle both -m32 and -m64.
6668         (LINK_OS_LINUX_SPEC32, LINK_OS_LINUX_SPEC64): Define.
6669         (STARTFILE_LINUX_SPEC, ENDFILE_LINUX_SPEC): Remove.
6670         (TOC_SECTION_ASM_OP): Define depending on TARGET_64BIT.
6671         (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
6672         (SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE): Define depending on
6673         TARGET_64BIT.
6674         (RS6000_CALL_GLUE): Likewise.
6675         (SAVE_FP_PREFIX, SAVE_FP_SUFFIX, RESTORE_FP_PREFIX,
6676         RESTORE_FP_SUFFIX): Likewise.
6677         (ASM_DECLARE_FUNCTION_NAME): Remove.
6678         (ASM_DECLARE_FUNCTION_SIZE, ASM_OUTPUT_SOURCE_LINE,
6679         DBX_OUTPUT_BRAC, DBX_OUTPUT_NFUN): Only output dot before function
6680         name if TARGET_64BIT.
6681         (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Handle both TARGET_64BIT and
6682         !TARGET_64BIT.
6683         (ASM_OUTPUT_REG_PUSH, ASM_OUTPUT_REG_POP): Remove undefs.
6684         (ASM_PREFERRED_EH_DATA_FORMAT): Take TARGET_64BIT into account.
6685         (DRAFT_V4_STRUCT_RET): Define.
6686         (SIGNAL_FRAMESIZE): New enum value.
6687         (MD_FALLBACK_FRAME_STATE_FOR): Define.
6688         * config/rs6000/default64.h: New file.
6689         * config/rs6000/sysv4.h (SUBTARGET_SWITCHES): Add -m32 and -m64
6690         options.
6691         (SUBTARGET_OVERRIDE_OPTIONS): If rs6000_abi_name is NULL, set it
6692         to RS6000_ABI_NAME.  Only disallow mixing of -fPIC with -mcall-aixdesc
6693         if !TARGET_64BIT.
6694         [!RS6000_BI_ARCH] (SUBSUBTARGET_OVERRIDE_OPTIONS): Define.
6695         (ASM_DECLARE_FUNCTION_NAME): Use rs6000_elf_declare_function_name
6696         function.
6697         (TARGET_OS_SYSV_CPP_BUILTINS): Define.
6698         (TARGET_OS_CPP_BUILTINS): Use it.
6699         (CPP_SYSV_SPEC): Remove.
6700         (CPP_SPEC): Remove cpp_sysv.
6701         (SUBTARGET_EXTRA_SPECS): Remove cpp_sysv.
6702         Add SUBSUBTARGET_EXTRA_SPECS.
6703         (SUBSUBTARGET_EXTRA_SPECS): Define.
6704         * config/rs6000/biarch64.h: New file.
6705         * config/rs6000/rs6000-protos.h (rs6000_elf_declare_function_name):
6706         New prototype.
6707         * config/rs6000/x-linux64: New file.
6708         * config/rs6000/t-linux64: Build -m64, -m32 and -m32 -msoft-float
6709         multilibs.
6710         * config/rs6000/eabi-ci.asm: Protect with #ifndef __powerpc64__.
6711         * config/rs6000/eabi-cn.asm: Likewise.
6712         * config/rs6000/tramp.asm: Likewise.
6713         * config/rs6000/sol-ci.asm: Likewise.
6714         * config/rs6000/sol-cn.asm: Likewise.
6715         * config/rs6000/linux.h (TARGET_64BIT): Define to 0.
6716         (TARGET_OS_CPP_BUILTINS): Use TARGET_OS_SYSV_CPP_BUILTINS.
6717         * config/rs6000/ppc-asm.h: Move __powerpc64__ section before
6718         _CALL_AIXDESC section.
6719         * config.gcc (powerpc64-*-linux*): Configure a bi-arch compiler,
6720         defaulting to -m64 unless --with-cpu= is one of the 32-bit CPUs
6721         or default32.
6722
6723 2003-06-04  Daniel Jacobowitz  <drow@mvista.com>
6724
6725         * config.gcc: Revert accidentally committed ARM changes.
6726
6727 2003-06-04  Roger Sayle  <roger@eyesopen.com>
6728
6729         * builtins.c (dconstpi, dconste): New mathematical constants.
6730         (init_builtin_dconsts): New function to initialize dconstpi
6731         and dconste.
6732         (fold_builtin): Optimize exp(1.0) = e.  Evaluate exp(x) at
6733         compile time with -ffast-math when x is an integer constant.
6734         Optimize tan(0.0) = 0.0.  Optimize atan(0.0) = 0.0,
6735         atan(1.0) = pi/4 and tan(atan(x)) = x with -ffast-math.
6736
6737 2003-06-04  Roger Sayle  <roger@eyesopen.com>
6738
6739         * calls.c (expand_call): Avoid calling pure or const functions
6740         when the result is ignored (or void) and none of the arguments
6741         are volatile.  Move warning diagnostic earlier in function.
6742
6743 2003-06-04  Andreas Jaeger  <aj@suse.de>
6744
6745         * system.h: Do not poison TDESC_SECTION_ASM_OP,
6746         RDATA_SECTION_ASM_OP and SUBTARGET_PROLOGUE.
6747
6748 2003-06-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6749
6750         * final.c (asm_fprintf): Update comments, accept "-+ #0" flags,
6751         optimize '%' case, handle %c, don't accept %p, %e, %f or %g,
6752         handle %ll, optimize regular character case.
6753
6754 2003-06-04  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
6755
6756         * Makefile.in (cse.o): Add params.h dependency.
6757         * cse.c: Include params.h.
6758         (PATHLENGTH): Removed.
6759         (struct cse_basic_block_data): Make path array dynamic.
6760         (cse_end_of_basic_block): Use PARAM_MAX_CSE_PATH_LENGTH instead
6761         of PATHLENGTH.
6762         (cse_main, cse_basic_block): Allocate path array.
6763         * params.def (PARAM_MAX_CSE_PATH_LENGTH): New.
6764
6765 Wed Jun  4 09:49:21 CEST 2003  Jan Hubicka  <jh@suse.cz>
6766
6767         * i386.c (ix86_reorg): Replace the jump instead of adding nop.
6768         * i386.md (UNSPEC_REP): New constant.
6769         (return_internal_long): New pattern.
6770
6771 2003-06-04  Eric Botcazou  <ebotcazou@libertysurf.fr>
6772
6773         PR optimization/11018
6774         * config/sparc/sparc.c (sparc_v8plus_shift): Use which_alternative
6775         consistently to decide whether the scratch register is really
6776         required.
6777
6778 2003-06-04  Eric Botcazou  <ebotcazou@libertysurf.fr>
6779
6780         PR optimization/10876
6781         * config/sparc/sparc.h (CONST_OK_FOR_LETTER): Add
6782         new 'O' constraint for constant 4096.
6783         (CONST_DOUBLE_OK_FOR_LETTER_P): Likewise.
6784         * config/sparc/sparc.md (adddi3 expander): Canonicalize pattern.
6785         Do not transform into MINUS insn for constant 4096.
6786         (*adddi3_sp64 insn): Canonicalize pattern. Add new alternative
6787         for constant 4096 as third operand.
6788         (addsi3 expander): Remove.
6789         (*addsi3 insn): Rename into 'addsi3'. Canonicalize pattern. Add
6790         new alternative for constant 4096 as third operand.
6791         (subdi3 expander): Do not transform into PLUS insn for constant 4096.
6792         (*subdi3_sp64 insn): Add new alternative for constant 4096 as third
6793         operand.
6794         (subsi3 expander): Remove.
6795         (*subsi3 insn): Rename into 'subsi3'. Add new alternative for
6796         constant 4096 as third operand.
6797         * doc/md.texi (Machine Constraints): Document new 'O' constraint for
6798         the SPARC port.
6799
6800 2003-06-03  Chris Demetriou  <cgd@broadcom.com>
6801
6802         * config/mips/t-linux64 (CRTSTUFF_T_CFLAGS_S): Define.
6803
6804 2003-06-04  Andreas Jaeger  <aj@suse.de>
6805
6806         * config/i386/uwin.h: Remove SUBTARGET_PROLOGUE.
6807
6808         * config/i386/i386.c (ix86_expand_prologue): Do not use
6809         SUBTARGET_PROLOGUE.
6810
6811         * system.h: Poision SUBTARGET_PROLOGUE.
6812
6813         * config/arm/arm-protos.h: Remove unused rdate_section prototype.
6814
6815         * output.h: Remove TDESC_SECTION_ASM_OP and RDATA_SECTION_ASM_OP
6816         dependend code.
6817
6818         * system.h: Poison TDESC_SECTION_ASM_OP and RDATA_SECTION_ASM_OP.
6819
6820         * system.h: Poison INSN_CACHE_DEPTH, INSN_CACHE_SIZE and
6821         INSN_CACHE_LINE_WIDTH.
6822
6823         * libgcc2.c (INSN_CACHE_PLANE_SIZE): Removed.
6824         (__clear_cache): Remove code dependend on INSN_CACHE_DEPTH,
6825         INSN_CACHE_SIZE and INSN_CACHE_LINE_WIDTH.
6826
6827         * doc/tm.texi (Trampolines): Remove INSN_CACHE_DEPTH,
6828         INSN_CACHE_SIZE and INSN_CACHE_LINE_WIDTH.
6829
6830         * dbxout.c (dbxout_type): Remove usage of DBX_OUTPUT_ENUM.
6831         (dbxout_symbol): Remove usage of DBX_OUTPUT_CONSTANT_SYMBOL.
6832         (dbxout_block): Remove usage of DBX_OUTPUT_CATCH.
6833         (dbxout_block): Remove usage of DBX_LBRAC_FIRST.
6834         (dbxout_source_file): Remove usage of DBX_OUTPUT_SOURCE_FILENAME.
6835         (dbxout_init): Remove test for DBX_WORKING_DIRECTORY.
6836
6837         * doc/tm.texi (DBX Options): Do not document DBX_LBRAC_FIRST,
6838         DBX_OUTPUT_SOURCE_FILENAME and DBX_OUTPUT_ENUM and
6839         DBX_WORKING_DIRECTORY.
6840
6841         * system.h: Poison DBX_LBRAC_FIRST, DBX_OUTPUT_ENUM,
6842         DBX_OUTPUT_SOURCE_FILENAME and DBX_WORKING_DIRECTORY.
6843
6844         * config/frv/frv-protos.h: Remove unused const_section
6845         declaration.
6846         * config/vax/vax-protos.h: Likewise.
6847
6848         * output.h: Remove CONST_SECTION_ASM_OP usage.
6849
6850         * system.h: Poison CONST_SECTION_ASM_OP.
6851
6852         * crtstuff.c (__do_global_dtors_aux): Remove usage of
6853         CRT_GET_RFIB_TEXT.
6854         (frame_dummy): Likewise.
6855         * unwind-dw2-fde-glibc.c (_Unwind_IteratePhdrCallback): Likewise.
6856         * system.h: Poison CRT_GET_RFIB_TEXT.
6857
6858         * collect2.c (is_ctor_dtor): Remove CFRONT_LOSSAGE dependend code.
6859
6860         * fix-header.c: Remove ADD_MISSING_EXTERN_C dependend variables.
6861         (write_lbrac): Remove ADD_MISSING_EXTERN_C dependend code.
6862         (recognized_function): Likewise.
6863         (read_scan_file): Likewise.
6864
6865 2003-06-03  Roger Sayle  <roger@eyesopen.com>
6866
6867         * optabs.c (expand_binop): Optimize complex multiplication for
6868         the case of squaring a complex argument.
6869
6870 2003-06-03  Roger Sayle  <roger@eyesopen.com>
6871
6872         * optabs.c (expand_binop): Attempt to reuse pseudos for duplicate
6873         non-volatile operands of binary operations.
6874         (prepare_cmp_insn): Likewise.
6875
6876 2003-06-03  Roger Sayle  <roger@eyesopen.com>
6877
6878         * varasm.c (force_const_mem): Handle alignment of constants not
6879         representable as a type in the front-end language.
6880
6881 2003-06-03  Kazu Hirata  <kazu@cs.umass.edu>
6882
6883         * flow.c (initialize_uninitialized_subregs): Use
6884         emit_move_insn instead of emitting a hardcoded move.
6885
6886 2003-06-03  Richard Henderson  <rth@redhat.com>
6887
6888         * optabs.c (expand_abs_nojump): Split out from ...
6889         (expand_abs): ... here.
6890         * optabs.h (expand_abs_nojump): Declare.
6891         * ifcvt.c: (noce_try_abs): Use expand_abs_nojump.
6892         * Makefile.in (ifcvt.o): Depend on optabs.h.
6893
6894 2003-06-03  Alan Modra  <amodra@bigpond.net.au>
6895
6896         * dwarf2out.c (DEBUG_STR_SECTION_FLAGS): Heed flag_merge_constants.
6897
6898 2003-06-03  Jason Thorpe  <thorpej@wasabisystems.com>
6899
6900         * config.gcc (default_use_cxa_atexit): New variable, defaults to no.
6901         (*-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*): Set default_use_cxa_atexit
6902         to yes.
6903         * configure.in: Allow default_use_cxa_atexit to determine the
6904         value of DEFAULT_USE_CXA_ATEXIT if not explicitly enabled or
6905         disabled.
6906         * configure: Regenerate.
6907
6908 2003-06-03  Douglas B Rupp  <rupp@gnat.com>
6909
6910         * Makefile.in (TEXI_GCC_FILES): Remove vms.texi entry.
6911         * doc/gcc.texi: Remove vms.texi section.
6912         * doc/vms.texi: Remove obsolete file.
6913
6914 2003-05-23  J"orn Rennecke <joern.rennecke@superh.com>
6915
6916         * configure.in (inhibit_libc): Don't define when configuring
6917         with --with-newlib --with-headers.
6918         * configure: Regenerate.
6919
6920         * t-sh: Remove LIB2FUNCS_EXTRA and embed-bb.c rules.
6921
6922 2003-06-03  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
6923
6924         * configure.in (gcc_cv_as_hidden): Disable .hidden completely on
6925         IRIX 6 without GNU ld.
6926         * configure: Regenerate.
6927
6928 2003-06-03  Roger Sayle  <roger@eyesopen.com>
6929
6930         * expr.c (emit_move_insn_1): Use emit_move_insn to move the parts
6931         of a complex number rather than invoke mov_optab directly.
6932
6933 2003-06-03  Kazu Hirata  <kazu@cs.umass.edu>
6934
6935         * combine.c (simplify_set): Don't move a subreg in SET_SRC to
6936         SET_DEST if WORD_REGISTER_OPERATIONS is not defined.
6937
6938 2003-06-03  Nathanael Nerode  <neroden@gcc.gnu.org>
6939
6940         * config/i386/x86-64.h: Remove two target-independent comments;
6941          replace "GNU CC" with "GCC".
6942
6943 2003-06-03  Anthony Green  <green@redhat.com>
6944
6945         * config/frv/t-frv (EXTRA_HEADERS): Remove media.h
6946
6947 2003-06-03  Roger Sayle  <roger@eyesopen.com>
6948
6949         * builtins.def (BUILT_IN_CABS, BUILT_IN_CABSF, BUILT_IN_CABSL):
6950         New builtins representing ISO C99's cabs, cabsf and cabsl.
6951         * builtins.c (expand_builtin_fabs): New function.
6952         (expand_builtin_cabs): New function.
6953         (expand_builtin): Expand BUILT_IN_FABS{,F,L} and BUILT_IN_CABS{,F,L}
6954         using expand_builtin_fabs and expand_builtin_cabs respectively.
6955
6956         * doc/extend.texi: Document new cabs, cabsf and cabsl builtins.
6957
6958 2003-06-03  Aldy Hernandez  <aldyh@redhat.com>
6959
6960         * function.c (assign_parms): Split complex arguments.
6961
6962         * doc/tm.texi (SPLIT_COMPLEX_ARGS): Document.
6963
6964         * expr.h (SPLIT_COMPLEX_ARGS): Define.
6965         (split_complex_types): Protoize.
6966         (split_complex_values): Protoize.
6967
6968         * calls.c (expand_call): Split complex arguments on architectures
6969         that require it.
6970         (split_complex_values): New.
6971         (split_complex_types): New.
6972
6973         * config/rs6000/rs6000.c (rs6000_libcall_value): New.
6974         (rs6000_function_value): Handle complex values on AIX.
6975         (rs6000_complex_function_value): New.
6976
6977         * config/rs6000/rs6000-protos.h (rs6000_libcall_value): Protoize.
6978
6979         * config/rs6000/rs6000.h (LIBCALL_VALUE): Call function.
6980         (SPLIT_COMPLEX_ARGS): New.
6981
6982 2003-06-03  Jakub Jelinek  <jakub@redhat.com>
6983
6984         * configure.in (HAVE_LD_PIE): Check for ld -pie.
6985         * config.in: Rebuilt.
6986         * configure: Rebuilt.
6987         * toplev.c (flag_pie, flag_shlib): New variables.
6988         (f_options): Add -fpie and -fPIE.
6989         (parse_options_and_default_flags): Set flag_pic if -fpie/-fPIE.
6990         Set flag_shlib if flag_pic and not -fpie/-fPIE.
6991         * flags.h (flag_pic, flag_shlib): Add.
6992         * varasm.c (default_binds_local_p): Use flag_shlib instead of
6993         flag_pic.
6994         * gcc.c (LINK_PIE_SPEC): Define.
6995         (LINK_COMMAND_SPEC): Use LINK_PIE_SPEC.
6996         (option_map): Add --pie -> -pie mapping.
6997         * config/sol2.h (ASM_SPEC): Handle -fpie the same way as -fpic
6998         and -fPIE the same way as -fPIC.
6999         * config/openbsd.h (ASM_SPEC): Likewise.
7000         * config/frv/frv.h (ASM_SPEC): Likewise.
7001         * config/arm/linux-gas.h (SUBTARGET_CPP_SPEC): Likewise.
7002         * config/arm/semi.h (ASM_SPEC): Likewise.
7003         * config/arm/netbsd-elf.h (SUBTARGET_EXTRA_ASM_SPEC): Likewise.
7004         * config/freebsd-spec.h (FBSD_CPP_SPEC): Likewise.
7005         * config/i386/beos-elf.h (CC1_SPEC): Likewise.
7006         * config/i386/freebsd-aout.h (ASM_SPEC): Likewise.
7007         * config/m68k/linux.h (CPP_SPEC): Likewise.
7008         * config/m68k/netbsd.h (ASM_SPEC): Likewise.
7009         * config/m68k/openbsd.h (ASM_SPEC): Likewise.
7010         * config/m68k/netbsd-elf.h (ASM_SPEC): Likewise.
7011         * config/mips/linux.h (SUBTARGET_CPP_SPEC): Likewise.
7012         * config/mips/openbsd.h (SUBTARGET_ASM_SPEC): Likewise.
7013         * config/pa/pa-linux.h (CPP_SPEC): Likewise.
7014         * config/netbsd-aout.h (ASM_SPEC): Likewise.
7015         * config/rs6000/sysv4.h (ASM_SPEC, CPP_SYSV_SPEC): Likewise.
7016         * config/rs6000/vxworks.h (CPP_SPEC): Likewise.
7017         * config/sparc/linux.h (CPP_SUBTARGET_SPEC, ASM_SPEC): Likewise.
7018         * config/sparc/linux64.h (CPP_SUBTARGET_SPEC, ASM_SPEC): Likewise.
7019         * config/sparc/sparc.h (ASM_SPEC): Likewise.
7020         * config/sparc/sp64-elf.h (ASM_SPEC): Likewise.
7021         * config/sparc/sysv4.h (ASM_SPEC): Likewise.
7022         * config/sparc/netbsd-elf.h (ASM_SPEC): Likewise.
7023         * config/sparc/openbsd64.h (ASM_SPEC): Likewise.
7024         * config/cris/linux.h (CRIS_ASM_SUBTARGET_SPEC): Likewise.
7025         * config/linux.h (STARTFILE_SPEC, ENDFILE_SPEC): Handle -pie.
7026         Simplify.
7027         * config/alpha/elf.h (STARTFILE_SPEC, ENDFILE_SPEC): Likewise.
7028         * config/i386/linux64.h (STARTFILE_SPEC, ENDFILE_SPEC): Likewise.
7029         * config/ia64/linux.h (STARTFILE_SPEC, ENDFILE_SPEC): Likewise.
7030         * config/rs6000/sysv4.h (STARTFILE_SPEC, ENDFILE_SPEC): Likewise.
7031         * config/rs6000/linux64.h (STARTFILE_SPEC, ENDFILE_SPEC): Likewise.
7032         * config/sparc/linux.h (STARTFILE_SPEC, ENDFILE_SPEC): Likewise.
7033         * config/sparc/linux64.h (STARTFILE_SPEC, ENDFILE_SPEC): Likewise.
7034         * doc/invoke.texi: Document -pie, -fpie and -fPIE options.
7035
7036 2003-06-03  Jakub Jelinek  <jakub@redhat.com>
7037
7038         * builtins.c (expand_builtin_memcpy): Remove endp argument and endp
7039         != 0 handling.  Pass 0 to store_by_pieces.
7040         (expand_builtin_mempcpy): Add endp argument.  Don't call
7041         expand_builtin_memcpy, call store_by_pieces resp. move_by_pieces
7042         directly.  If ignoring result, only do expand_call.
7043         (expand_builtin_stpcpy): Likewise.  Call expand_builtin_mempcpy
7044         otherwise.
7045         (expand_builtin_strncpy, expand_builtin_memset): Adjust
7046         store_by_pices callers.
7047         (expand_builtin): Adjust expand_builtin_memcpy and
7048         expand_builtin_mempcpy callers.
7049         * expr.c (can_move_by_pieces): New function.
7050         (move_by_pieces): Add endp argument, return to resp. memory at end
7051         or one byte earlier depending on endp.
7052         (store_by_pieces): Likewise.
7053         (emit_block_move): Adjust call to move_by_pieces.
7054         (emit_push_insn): Adjust move_by_pieces caller.
7055         * expr.h (can_move_by_pieces): New prototype.
7056         (store_by_pieces): Adjust prototypes.
7057         * rtl.h (move_by_pieces): Adjust prototype.
7058         * config/mips/mips.c (expand_block_move): Adjust move_by_pieces
7059         caller.
7060
7061 2003-06-03  Ben Elliston  <bje@wasabisystems.com>
7062
7063         * doc/md.texi (Processor pipeline description): Improve wording.
7064
7065 2003-06-03  Neil Booth  <neil@daikokuya.co.uk>
7066
7067         * c-opts.c (c_common_handle_option): New, pulled out of
7068         c_common_decode_option.  Substitute uses of argv.
7069         (c_common_decode_option): Broken into two.
7070
7071 2003-06-02  Roger Sayle  <roger@eyesopen.com>
7072             Zack Weinberg  <zack@codesourcery.com>
7073
7074         * emit-rtl.c (gen_complex_constant_part):  Remove unnecessary
7075         test of TREE_CONSTANT_POOL_ADDRESS_P.
7076
7077 2003-06-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7078
7079         * mips.c: Don't include output.h twice.
7080         * stormy16.c: Likewise.
7081         * xtensa.c: Likewise.
7082         * output.h: Protect against multiple inclusion.
7083
7084 2003-06-02  J"orn Rennecke <joern.rennecke@superh.com>
7085
7086         * sh.h (OLD_ARG_MODE): New macro.
7087         (FUNCTION_ARG_ADVANCE, FUNCTION_ARG_PASS_BY_REFERENCE): Use it.
7088         (FUNCTION_ARG_1): Break out of:
7089         (FUNCTION_ARG).  Use OLD_ARG_MODE.
7090
7091 2003-06-02  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
7092
7093         * gcc/config.gcc Add support multilib parts for m32rx processor.
7094
7095 2003-06-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7096
7097         * Makefile.in (c-options.c): Pass in $(AWK) to opts.sh.
7098         (mostlyclean): Delete c-options.c and c-options.h.
7099
7100 2003-06-02  Neil Booth  <neil@daikokuya.co.uk>
7101
7102         * c-opts.c (CL_REJECT_NEGATIVE): New.
7103         (c_common_decode_option): Update to use it.
7104         * c.opt: Update documentation; use RejectNegative.
7105         * opts.sh: Handle RejectNegative.
7106
7107 2003-06-01  Zack Weinberg  <zack@codesourcery.com>
7108
7109         * ggc-page.c (init_ggc): Give better diagnostics on failure to
7110         open /dev/zero.
7111         * toplev.c (crash_signal): Reset handling for received signal
7112         to SIG_DFL.
7113
7114 2003-06-02  Ben Elliston  <bje@wasabisystems.com>
7115
7116         * config/arm/arm.c (arm_use_dfa_pipeline_interface): Declare.
7117         (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define if not already.
7118         (arm_use_dfa_pipeline_interface): Implement.
7119         * config/arm/arm.md (arm): New automaton.
7120         (write_buf): Remove function units; new cpu unit.
7121         (write_blockage): Remove function units; new cpu unit.
7122         (core): Remove function units; new cpu unit.
7123         (r_mem_f_wbuf): New instruction reservation.
7124         (store1_wbuf, store2_wbuf, store3_wbuf, store4_wbuf): Likewise.
7125         (store1_ldsched, store2, store3, store4): Likewise.
7126         (load_ldsched, load_ldsched_xscale, load_or_store): Likewise.
7127         (mult, mult_ldsched, mult_ldsched_strongarm): Likewise.
7128         (multi_cycle, single_cycle): Likewise.
7129         * config/arm/fpa.md (armfp): New automaton.
7130         (fpa): Remove function units; new cpu unit.
7131         (fpa_mem): Remove function unit; new cpu unit.
7132         (fdivx, fdivd, fdivs, fmul, ffmul, farith, ffarith): New reservations.
7133         (r_2_f, f_2_r, f_load, f_store, r_mem_f, f_mem_r): Likewise.
7134
7135 2003-06-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7136
7137         * builtin-attrs.def (ATTR_ASM_FPRINTF): New.
7138         * c-format.c (enum format_type): Add asm_fprintf_format_type.
7139         (NOARGUMENTS, asm_fprintf_length_specs, asm_fprintf_flag_specs,
7140         asm_fprintf_flag_pairs, asm_fprintf_char_table): New.
7141         (format_types_orig): Renamed from format_types.  Add new data.
7142         (format_types): Declare as pointer.
7143         (handle_format_attribute): Move later in file so we have all
7144         necessary declarations.  Add section to capture HOST_WIDE_INT.
7145         * output.h (ATTRIBUTE_ASM_FPRINTF, __gcc_host_wide_int__): New.
7146         (asm_fprintf): Mark with ATTRIBUTE_ASM_FPRINTF.
7147
7148 2003-06-01  Andreas Jaeger  <aj@suse.de>
7149
7150         * doc/tm.texi (Storage Layout): Remove ROUND_TYPE_SIZE and
7151         ROUND_TYPE_SIZE_UNIT.
7152
7153         * stor-layout.c (finalize_record_size): Remove usages of
7154         ROUND_TYPE_SIZE and ROUND_TYPE_SIZE_UNIT.
7155         (finalize_type_size): Likewise.
7156         (layout_type): Likewise.
7157
7158         * system.h: Poison ROUND_TYPE_SIZE and ROUND_TYPE_SIZE_UNIT.
7159
7160         * loop.c (check_insn_for_givs): Remove DONT_REDUCE_ADDR macro.
7161
7162         * config/d30v/d30v.h: Remove text copied from the manual.
7163
7164 2003-06-01  Roger Sayle  <roger@eyesopen.com>
7165             John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
7166             Geoffrey Keating  <geoffk@apple.com>
7167
7168         * emit-rtl.c (gen_lowpart_common): Handle interpreting integer
7169         constants as condition code values.
7170
7171 2003-06-01  DJ Delorie  <dj@redhat.com>
7172
7173         * cppmacro.c (warn_of_redefinition): Handle cases where the two
7174         definitions have different numbers of tokens.
7175
7176 2003-06-01  Andreas Jaeger  <aj@suse.de>
7177
7178         * gen-protos.c (main): Readd unused attribute for argc.
7179
7180 2003-06-01  Neil Booth  <neil@daikokuya.co.uk>
7181
7182         * Makefile.in (c-options.c, c-options.h): Parallel make safe.
7183         * c.opt: End in blank line.
7184         * opts.sh: Take AWK from environment if available; use C locale.
7185
7186 2003-06-01  Andreas Schwab  <schwab@suse.de>
7187
7188         * config/m68k/linux.h: Remove code protected by USE_GNULIBC_1.
7189
7190 2003-06-01  Andreas Jaeger  <aj@suse.de>
7191
7192         * gen-protos.c (main): Revert patch to check for argument.
7193
7194 2003-06-01  Eric Botcazou  <ebotcazou@libertysurf.fr>
7195
7196         PR target/11044
7197         * config/i386/i386.md (length attribute): Set length to 4
7198         for instructions of type "fcmp".
7199
7200 2003-06-01  Andreas Jaeger  <aj@suse.de>
7201
7202         * toplev.c: Use ISO C90 prototypes.
7203
7204         * toplev.h: Use ISO C90 prototypes.
7205
7206         * genrecog.c: Use ISO C90 prototypes.
7207         (nodes_identical): Correct declaration to match prototype.
7208         (maybe_both_true): Likewise.
7209         (merge_trees): Likewise.
7210
7211         * genpeep.c (gen_peephole): Remove #if 0 code.
7212         Use ISO C90 prototypes.
7213
7214         * genattrtab.c (copy_rtx_unchanging): Remove #if 0'ed code.
7215         Remove #if 0'ed function simplify_by_alternatives.
7216         (optimize_attrs): Remove #if 0'ed code.
7217         Remove ^L.
7218         Use ISO C90 prototypes.
7219         (make_canonical): Remove #if 0'ed code.
7220         (convert_const_symbol_ref): Remove #if 0'ed function.
7221
7222         * gen-protos.c (main): Check for argument.
7223
7224         * rtl.h: Use ISO C90 prototypes for functions from lists.c.
7225
7226         * params.h: Use ISO C90 prototypes.
7227         * params.c: Likewise.
7228         * intl.c: Likewise.
7229         * intl.h: Likewise.
7230         * lists.c: Likewise.
7231         * errors.c: Likewise.
7232         * errors.h: Likewise.
7233         * gencodes.c: Likewise.
7234         * genpreds.c: Likewise.
7235         * genattr.c: Likewise.
7236         * gen-protos.c: Likewise.
7237         * genflags.c: Likewise
7238         * genconditions.c: Likewise.
7239         * genautomata.c: Likewise.
7240         * gencheck.c: Likewise.
7241         * genconfig.c: Likewise.
7242         * genconstants.c: Likewise.
7243         * genemit.c: Likewise.
7244         * genextract.c: Likewise.
7245         * gengenrtl.c: Likewise.
7246         * gengtype.c: Likewise.
7247         * gengtype.h: Likewise.
7248         * genopinit.c: Likewise.
7249         * genoutput.c: Likewise.
7250         * gensupport.c: Likewise.
7251         * gensupport.h: Likewise.
7252
7253         * sdbout.h: Use ISO C90 prototypes.
7254
7255         * sdbout.c (CONTIN): Removed empty macro.
7256         (sdbout_one_type): Remove CONTIN usages.
7257         Remove ^Ls.
7258         (tag_of_ru_type): Remove #if 0'ed function.
7259         (sdbout_symbol): Remove #if 0'ed code.
7260         (sdbout_one_type): Remove a #if 1.
7261         (sdbout_one_type): Remove #if 0'ed code.
7262         (sdbout_init): Remove RMS_QUICK_HACK_1 code.
7263         Remove PARAMS, use ISO C90 prototypes for all functions.
7264
7265 2003-06-01  Josef Zlomek  <zlomekj@suse.cz>
7266
7267         * rtl.def (CONST_DOUBLE): Update comment.
7268
7269 2003-06-01  Neil Booth  <neil@daikokuya.co.uk>
7270
7271         * opts.sh: Remove path from sort.
7272
7273 2003-06-01  Aldy Hernandez  <aldyh@redhat.com>
7274
7275         PR/9680
7276         * config/rs6000/rs6000.h (CANNOT_CHANGE_MODE_CLASS): Require
7277         TARGET_SPE for SPE_VECTOR_MODE.
7278
7279 2003-05-31  Aldy Hernandez  <aldyh@redhat.com>
7280
7281         * toplev.c (botch): Remove.
7282         (do_abort): Remove.
7283         (set_Wunused): Comment.
7284         (set_Wextra): Comment.
7285         Remove ^L's.
7286         (rest_of_compilation): Factor out common code into functions.
7287         (rest_of_handle_inlining): New.
7288         (rest_of_handle_ssa): New.
7289         (rest_of_handle_cse): New.
7290         (rest_of_handle_gcse): New.
7291         (rest_of_handle_loop_optimize): New.
7292         (rest_of_handle_jump_bypass): New.
7293         (rest_of_handle_sibling_calls): New.
7294         (rest_of_handle_null_pointer): New.
7295         (rest_of_handle_addresof): New.
7296         (rest_of_handle_flow): New.
7297         (rest_of_handle_branch_prob): New.
7298         (rest_of_handle_if_conversion): New.
7299         (rest_of_handle_tracer): New.
7300         (rest_of_handle_loop2): New.
7301         (rest_of_handle_cse2): New.
7302         (rest_of_handle_life): New.
7303         (rest_of_handle_combine): New.
7304         (rest_of_handle_if_after_combine): New.
7305         (rest_of_handle_regmove): New.
7306         (rest_of_handle_sched): New.
7307         (rest_of_handle_old_regalloc): New.
7308         (rest_of_handle_new_regalloc): New.
7309         (rest_of_handle_regrename): New.
7310         (rest_of_handle_reorder_blocks): New.
7311         (rest_of_handle_sched2): New.
7312         (rest_of_handle_new_regalloc): New.
7313         (rest_of_handle_old_regalloc): New.
7314         (rest_of_handle_regrename): New.
7315         (rest_of_handle_reorder_blocks): New.
7316         (rest_of_handle_stack_regs): New.
7317         (rest_of_handle_machine_reorg): New.
7318         (rest_of_handle_delay_slots): New.
7319         (rest_of_handle_final): New.
7320
7321         * toplev.h (botch): Remove prototype.
7322         (do_abort): Same.
7323
7324 2003-05-31  Neil Booth  <neil@daikokuya.co.uk>
7325
7326         * Makefile.in (c-opts.o, c-options.h): Update dependencies.
7327         * c-opts.c: Include c-options.h and c-options.c.
7328         (CL_C_ONLY, CL_OBJC_ONLY, CL_CXX_ONLY, CL_OBJCXX_ONLY):
7329         Rename CL_C, CL_OBJC, CL_CXX, CL_OBJCXX.
7330         (CL_ARG, CL_ALL, COMMAND_LINE_OPTIONS, struct cl_option,
7331         OPT, opt_comp): Remove.
7332         (missing_arg, c_common_init_options, c_common_decode_option,
7333         write_langs): Update for macro redefinitions and enumeration
7334         name changes.
7335         * c.opt, opts.sh: New files.
7336         * doc/passes.texi: Update.
7337
7338 2003-05-31  Andreas Jaeger  <aj@suse.de>
7339
7340         * function.c (trampoline_address): Remove ALLOCATE_TRAMPOLINE
7341         usage.
7342
7343         * doc/tm.texi (Trampolines): Remove ALLOCATE_TRAMPOLINE.
7344
7345         * config/d30v/d30v.h: Remove traces of ALLOCATE_TRAMPOLINE.
7346
7347         * system.h: Poison ALLOCATE_TRAMPOLINE.
7348
7349         * doc/tm.texi (Misc): Remove HANDLE_PRAGMA.
7350         * system.h: Poison HANDLE_PRAGMA.
7351
7352 2003-05-31  Kazu Hirata  <kazu@cs.umass.edu>
7353
7354         * doc/invoke.texi: Update dump file names.
7355
7356 2003-05-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7357
7358         * c-format.c (format_length_info, format_char_info,
7359         format_flag_spec, format_flag_pair, format_kind_info):
7360         De-const-ify structure members.
7361
7362 2003-05-31  Roger Sayle  <roger@eyesopen.com>
7363
7364         * flags.h (flag_wrapv): New flag controlling overflow semantics.
7365         * toplev.c (flag_wrapv): Declare the variable with default false.
7366         (lang_independent_options): New option "-fwrapv" to set the above.
7367
7368         * fold-const.c (extract_muldiv_1): Disable optimization of (2*x)/2
7369         as x, when signed arithmetic overflow wraps around.
7370         (fold): Optimize "-A - B" as "-B - A" if overflow wraps around.
7371         * loop.c (basic_induction_var): Ignore BIVs that rely on undefined
7372         overflow when flag_wrapv is true.
7373
7374         * doc/invoke.texi: Document new -fwrapv command line option.
7375         * doc/c-tree.texi: Mention that the overflow semantics of
7376         NEGATE_EXPR, PLUS_EXPR, MINUS_EXPR and MULT_EXPR is dependent
7377         upon both flag_wrapv and flag_trapv.
7378
7379 2003-05-31  Eric Botcazou  <ebotcazou@libertysurf.fr>
7380
7381         * doc/install.texi (mips-sgi-irix5): Add missing
7382         HTML <hr> marker.
7383
7384 2003-05-31  Eric Botcazou  <ebotcazou@libertysurf.fr>
7385
7386         * doc/md.texi (Machine Constraints): Document
7387         missing SPARC constraints.
7388
7389 2003-05-31  Eric Botcazou  <ebotcazou@libertysurf.fr>
7390
7391         * doc/md.texi (Automaton pipeline description): Use
7392         "type" instead of "cpu" as the attribute in the examples.
7393
7394 2003-05-30  Stan Shebs  <shebs@apple.com>
7395
7396         * system.h: Poison OBJC_PROLOGUE.
7397
7398 2003-05-30  Roger Sayle  <roger@eyesopen.com>
7399
7400         * emit-rtl.c (gen_complex_constant_part): New function for getting
7401         the constant real or imaginary part of a complex constant.
7402         (gen_realpart): Use it.
7403         (gen_imagpart): Likewise.
7404
7405 2003-05-30  Kazu Hirata  <kazu@cs.umass.edu>
7406
7407         * doc/invoke.texi: Fix typos.
7408         * doc/rtl.texi: Likewise.
7409
7410 2003-05-30  Dhananjay Deshpande  <dhananjayd@kpitcummins.com>
7411
7412         * config/h8300/crti.asm: Use .h8300hn and .h8300sn for normal
7413         mode.
7414         * config/h8300/crtn.asm: Likewise.
7415         * config/h8300/lib1funcs.asm: Likewise.
7416         * config/h8300/h8300.c (asm_file_start): Likewise.
7417         * config/h8300/elf.h (LINK_SPEC): Use h8300hnelf and
7418         h8300snelf emulations for normal mode.
7419         * config/h8300/h8300.h (LINK_SPEC): Use h8300hn and h8300sn
7420         emulations for normal mode.
7421
7422 2003-05-30  Dhananjay Deshpande  <dhananjayd@kpitcummins.com>
7423
7424         * config/h8300/h8300.c (h8300_tiny_constant_address_p): Return
7425         true if TARGET_NORMAL_MODE.
7426
7427 2003-05-30  Roger Sayle  <roger@eyesopen.com>
7428
7429         * cse.c (cse_insn): Simplify REG_EQUAL note on libcalls when
7430         making a substitution.
7431         (dead_libcall_p): If directly replacing a libcall with a
7432         constant value produces an invalid instruction, also try forcing
7433         the constant into the constant pool.
7434         * expr.c (emit_move_insn): Add a REG_EQUAL note when it is not
7435         obvious that the source is a constant.
7436         (compress_float_constant): Use set_unique_reg_note to place
7437         REG_EQUAL notes on instructions.
7438
7439 2003-05-30  Eric Christopher  <echristo@redhat.com>
7440
7441         * config/mips/mips.c (extern_list): Add GTY marker.
7442         (extern_head): Separate out definition. Add marker.
7443         (mips_output_external): Use ggc_alloc for extern_list
7444         allocation.
7445         (mips_output_external_libcall): Ditto.
7446
7447 2003-05-30  Florian Weimer  <fw@deneb.enyo.de>
7448
7449         * doc/install.texi: Ada-enabled bootstrap requires GNAT 3.14 or
7450         later.
7451
7452 2003-05-30  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7453
7454         * vax.h (ASM_GENERATE_INTERNAL_LABEL): Fix format specifier
7455         warnings.
7456         (PRINT_OPERAND): Likewise.
7457
7458 2003-05-30  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
7459
7460         * config/mips/mips.h (SUBTARGET_ASM_DEBUGGING_SPEC): Move
7461         -mdebug/-no-mdebug switches ...
7462         (MDEBUG_ASM_SPEC): ... here.
7463         Use only with gas.
7464         (EXTRA_SPECS): Initialize mdebug_asm_spec.
7465
7466 2003-05-29  Matt Kraai  <kraai@alumni.cmu.edu>
7467
7468         * gthr-gnat.c: Remove #undef UNUSED.
7469         (__gnat_default_lock, __gnat_default_unlock): Prototype.
7470         (__gnat_task_lock, __gnat_task_unlock): Make declarations
7471         prototypes.
7472         (__gnat_install_locks): Convert declaration to ISO C90, make
7473         parameter declarations prototypes, and remove blank line.
7474         * gthr-gnat.h (__gnat_install_locks): Make parameter
7475         declarations prototypes.
7476
7477 2003-05-29  Jason Merrill  <jason@redhat.com>
7478
7479         * Makefile.in (unstrap): Remove stage_last after make unstage1.
7480
7481 2003-05-29  Roger Sayle  <roger@eyesopen.com>
7482
7483         * mips-tfile.c (PAGE_SIZE): Increase page size to 32K.
7484
7485 2003-05-29  Roger Sayle  <roger@eyesopen.com>
7486             Kaveh Ghazi  <ghazi@caip.rutgers.edu>
7487
7488         PR bootstrap/10169
7489         * mips-tfile.c (main): Use getopt_long instead of getopt.
7490         Add new command line option --version to display version.
7491         Treat --verbose like -v to report a single line version.
7492         (options): New global variable for getopt_long.
7493         * mips-tdump.c (main): Use getopt_long instead of getopt.
7494         New command line options -v, --version and -verbose to display
7495         the program version number (to match mips-tfile's behavior).
7496         (options): New global variable for getopt_long.
7497
7498         * gcov.c (options): Zero-terminate getopt_long array.
7499         * gcov-dump.c (options): Likewise.
7500
7501         * Makefile.in (mips-tdump.o): Add dependency on version.h.
7502
7503 2003-05-29  Stan Shebs  <shebs@apple.com>
7504
7505         Remove OBJC_PROLOGUE everywhere.
7506         * objc/objc-act.c (finish_objc): Remove use of OBJC_PROLOGUE.
7507         * config/avr/avr.h: Remove no-op ref to OBJC_PROLOGUE.
7508         * config/d30v/d30v.h: Similarly.
7509         * config/ip2k/ip2k.h: Similarly.
7510         * doc/tm.texi: Remove doc of OBJC_PROLOGUE.
7511
7512 2003-05-29  Roger Sayle  <roger@eyesopen.com>
7513
7514         * c-semantics.c (genrtl_do_stmt_1): New function split out from...
7515         (gen_rtl_do_stmt): ... here.  Call genrtl_do_stmt_1.
7516         (expand_unreachable_stmt): Expand unreachable while statements
7517         using genrtl_do_stmt_1.
7518
7519 2003-05-29  Richard Sandiford  <rsandifo@redhat.com>
7520
7521         * config/mips/mips-protos.h (mips_output_load_label): Declare.
7522         * config/mips/mips.c (mips_output_load_label): New function.
7523         (mips_output_conditional_branch): Use it.
7524         * config/mips/mips.md (jump): And here.
7525
7526 2003-05-28  Bob Wilson  <bob.wilson@acm.org>
7527
7528         * config/xtensa/xtensa-protos.h (smalloffset_double_mem_p): Delete.
7529         (xtensa_split_operand_pair): New proto.
7530         * config/xtensa/xtensa.c (move_operand): Handle DFmode and DImode.
7531         (smalloffset_double_mem_p): Delete.
7532         (gen_float_relational, printx, print_operand, xtensa_va_arg):
7533         Fix whitespace.
7534         (xtensa_split_operand_pair): New.
7535         (xtensa_dbx_register_number): Fix formatting.
7536         * config/xtensa/xtensa.h (EXTRA_CONSTRAINT): Remove 'S' constraint.
7537         * config/xtensa/xtensa.md (movdi, movdf): Force constants to memory
7538         instead of splitting them into single-word moves.  Remove unnecessary
7539         checks for reload_in_progress and reload_completed.
7540         (movdi_internal, movdf_internal): Change to post-reload split patterns.
7541         Add constraints to allow constant operands.
7542         (movsf_internal): Allow CONST_INT operands.
7543
7544 2003-05-27  Danny Smith   <dannysmith@users.sourceforge.net>
7545
7546         * config.gcc (i[34567]86-*-mingw32*): Add host makefile
7547         fragment i386/x-mingw32.
7548         * config/i386/x-mingw32: New file. Make local_includedir
7549         relative to EXEC_PREFIX.
7550
7551 2003-05-27  Aaron W. LaFramboise  <awlaframboise@aol.com>
7552
7553         * config/i386/mingw32.h (STANDARD_INCLUDE_DIR): Update.
7554         (MD_STARTFILE_PREFIX): Define.
7555
7556 2003-05-27  Denis Chertykov  <denisc@overta.ru>
7557
7558         * cselib.c (cselib_invalidate_regno): Abort if hardreg have a
7559         VOIDmode.
7560         * cselib.c (cselib_process_insn): Pass reg_raw_mode for hardreg in
7561         call of cselib_invalidate_regno.
7562
7563 2003-05-28  Daniel Jacobowitz  <drow@mvista.com>
7564
7565         * config/mips/linux.h (LIB_SPEC): Add missing -lc and correct
7566         -lthread to -lpthread.
7567
7568 2003-05-28  Eric Botcazou  <ebotcazou@libertysurf.fr>
7569             Bruce Korb  <bkorb@gnu.org>
7570             Arno Klaassen  <arno@heho.snv.jussieu.fr>
7571
7572         * fixinc/inclhack.def: Add missing declaration of getpagesize()
7573         to unistd.h on Solaris 2.5.1.
7574         Fix prototype of recv() and send() in sys/socket.h on
7575         Solaris 2.5.1 and 2.6.
7576         * fixinc/tests/base/unistd.h: Add solaris_unistd fix test.
7577         * fixinc/tests/base/sys/socket.h: Add solaris_socket test.
7578         * fixinc/check.tpl: Use 'diff -c', not 'diff -u'.
7579         * fixinc/fixincl.x: Regenerate.
7580
7581 2003-05-27  Jason Merrill  <jason@redhat.com>
7582
7583         * tree.c (expr_first, expr_length): New fns.
7584         * tree.h: Declare them.
7585
7586         * tree.c (iterative_hash_expr): Hash commutative expressions
7587         consistently.
7588
7589 2003-05-27  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7590
7591         * tree.h (contains_placeholder_p): Now returns bool.
7592         (CONTAINS_PLACEHOLDER_P): New macro.
7593         (type_contains_placeholder_p): New function.
7594         * tree.c (save_expr): Remove code avoiding folding COMPONENT_REF.
7595         (contains_placeholder_p): Now returns bool.
7596         Rework to use CONTAINS_PLACEHOLDER_P macro.
7597         (type_contains_placeholder_p): New function.
7598         * fold-const.c (fold, case COMPONENT_REF): Don't fold if
7599         type_contains_placeholder_p.
7600         (fold_range_test, fold_mathfn_compare, fold_inf_compare, fold):
7601         Use CONTAINS_PLACEHOLDER_P macro.
7602         * builtins.c (fold_builtin): Likewise.
7603         * calls.c (initialize_argument_information): Likewise.
7604         * emit-rtl.c (set_mem_attributes_minus_bitpos): Likewise.
7605         * explow.c (expr_size): Likewise.
7606         * expr.c (store_constructor, get_inner_reference): Likewise.
7607         * function.c (assign_parms): Likewise.
7608         * stor-layout.c (variable_size): Likewise.
7609
7610 2003-05-25  Gabriel Dos Reis <gdr@integrable-solutions.net>
7611
7612         * diagnostic.h (output_verbatim, verbatim):  Remove  printf
7613         attribute.
7614
7615 2003-05-25  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
7616
7617         * doc/contrib.texi (Contributors): Update Kean Johnston.
7618
7619 2003-05-24  David Edelsohn  <edelsohn@gnu.org>
7620
7621         * config/rs6000/rs6000.md (save_fpregs_{si,di}): Add length attribute.
7622
7623 2003-05-24  Nathanael Nerode  <neroden@gcc.gnu.org>
7624
7625         * config/rs6000/440.md, config/stormy16/stormy16protos.h,
7626         config/stormy16/stormy16.c, config/stormy16/stormy16.md:
7627         Replace "GNU CC" with "GCC".
7628
7629 2003-05-24  Matt Kraai  <kraai@alumni.cmu.edu>
7630
7631         * builtins.c (expand_builtin_memcpy): Use mode of dest_addr for
7632         intermediate computation.
7633
7634 2003-05-23  Eric Christopher  <echristo@redhat.com>
7635
7636         * config/mips/mips.md (clzsi, clzdi): New patterns.
7637
7638 2003-05-23  Geoffrey Keating  <geoffk@apple.com>
7639
7640         * gcc.c (default_compilers): Use -o to specify preprocessor's output
7641         file.  Make -no-integrated-cpp work when building PCH files.
7642         * objc/lang-specs.h: Likewise.
7643
7644 2003-05-23  Nathanael Nerode  <neroden@gcc.gnu.org>
7645
7646         * fixinc/Makefile.in: Correct description.
7647         * fixinc/Makefile.in, fixinc/fixfixes.c, fixinc/fixincl.c,
7648         fixinc/fixlib.c, fixinc/fixlib.h, fixinc/fixtests.c,
7649         fixinc/genfixes: Replace "GNU CC" with "GCC".
7650
7651 2003-05-23  Roger Sayle  <roger@eyesopen.com>
7652
7653         * builtins.def: Define atan, atanf, atanl, tan, tanf and tanl
7654         builtin functions (and their __builtin_* variants).
7655         * builtins.c (mathfn_built_in): Handle tan{,f,l} and atan{,f,l}.
7656         (expand_builtin): Don't expand tan{,f,l} or atan{,f,l} when not
7657         optimizing.
7658
7659         * doc/extend.texi: Document new tan and atan builtins, and
7660         their float and long double variants.
7661
7662 2003-05-23  Jason Thorpe  <thorpej@wasabisystems.com>
7663
7664         * config/sparc/netbsd-elf.h (TARGET_OS_CPP_BUILTINS): Define
7665         __sparcv9 in the TARGET_ARCH64 case.
7666
7667 Fri May 23 22:17:32 CEST 2003  Jan Hubicka  <jh@suse.cz>
7668
7669         * i386.c (ix86_reorg): Calls are also jumps.
7670
7671 2003-05-23  J"orn Rennecke <joern.rennecke@superh.com>
7672
7673         * cse.c (count_reg_usage): When processing an INSNs REG_EQUAL
7674         note containing an EXPR_LIST, process all the arguments.
7675
7676 Fri May 23 21:19:31 CEST 2003  Jan Hubicka  <jh@suse.cz>
7677                                Andreas Jaeger  <aj@suse.de>
7678
7679         * i386.h (TARGET_CPU_CPP_BUILTINS): Define __amd64 and __amd64__;
7680         do not use assertion.
7681
7682 2003-05-23  Mike Stump  <mrs@apple.com>
7683
7684         * tlink.c (scan_linker_output): Add support for darwin linker, as it
7685         emits unresolved symbols one per line, consuming the entire line.
7686
7687 2003-05-23  Larin Hennessy <larin@science.oregonstate.edu>
7688             Zack Weinberg <zack@codesourcery.com>
7689
7690         * explow.c (allocate_dynamic_stack_space): Remove call to gen_probe.
7691         * config/m68k/m68k.c (m68k_output_function_prologue):
7692         Remove code under #if NEED_PROBE.
7693         * config/m68k/m68k.h: Don't define NEED_PROBE.
7694         * config/m68k/m68k.md: Remove "probe" insn.
7695         * doc/md.texi: Remove documentation of "probe" pattern.
7696
7697 2003-05-23  Dorit Naishlos  <gcchaifa@il.ibm.com>
7698
7699         * config/rs6000/rs6000.md (save_fpregs_{si,di}): Add branch attribute.
7700
7701 2003-05-23  Eric Botcazou  <ebotcazou@libertysurf.fr>
7702
7703         * doc/install.texi: Remove sparc64-*-*. Add sparc64-*-solaris2*.
7704         Document sparcv9-*-solaris2* as a synonym for sparc64-*-solaris2*.
7705
7706 2003-05-22  Roger Sayle  <roger@eyesopen.com>
7707
7708         * real.c (real_maxval): New function to return the largest finite
7709         value representable in a given mode (i.e. FLT_MAX and DBL_MAX).
7710         * real.h (real_maxval): Prototype here.
7711         * fold-const.c (fold_inf_compare): Transform comparisons against
7712         +-Infinity into comparisons against DBL_MAX (or equivalent).
7713
7714 2003-05-22  Mike Stump  <mrs@apple.com>
7715
7716         * config.gcc (*-*-darwin*): Remove use_collect2=no, as it is the
7717         default.
7718
7719 2003-05-22  DJ Delorie  <dj@redhat.com>
7720
7721         * calls.c (expand_call): If the arg block is going to grow
7722         downward, we need argblock to point to the top of the block,
7723         not the bottom.
7724
7725 2003-05-22  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7726
7727         * c-decl.c (duplicate_decls): Test DECL for ERROR_MARK.
7728
7729         * expr.c (expand_expr, case CONSTRUCTOR): Put into memory if
7730         constant and EXPAND_CONST_ADDRESS, not just EXPAND_INITIALIZER.
7731
7732 2003-05-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7733
7734         * m68hc11.c: Don't use the `0' flag for asm_fprintf specifiers.
7735         * m68k.c: Likewise.
7736         * m68k.h: Likewise.
7737
7738 2003-05-22  Zack Weinberg  <zack@codesourcery.com>
7739
7740         PR other/2873
7741         * fixinc/inclhack.def (avoid_wchar_t_type): Add bypass
7742         expressions to prevent triggering on recent curses.h,
7743         linux/nls.h, or X11/Xlib.h.
7744         (stdio_va_list): Add _G_va_list to bypass pattern.
7745         (strict_ansi_not): Add bypass pattern for __SCO_VERSION__.
7746         * fixinc/fixincl.x: Regenerate.
7747
7748 2003-05-22 Rekha Bhintade <rekhad@kpitcummins.com>
7749
7750         * gcc/config/sh/sh.h (TARGET_SWITCHES): Display all the target
7751         switches when --target-help option is specified.
7752
7753 2003-05-22  Eric Botcazou  <ebotcazou@libertysurf.fr>
7754
7755         PR bootstrap/10805
7756         * doc/install.texi (sparc-sun-solaris2.7): Document bootstrap
7757         failure with Sun assembler 5.0 Alpha 03/27/98.
7758
7759 2003-05-21  Loren James Rittle  <ljrittle@acm.org>
7760
7761         * config/sparc/freebsd.h (CPP_CPU64_DEFAULT_SPEC): Add -D__sparcv9
7762         to match system compiler convention.
7763
7764 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
7765
7766         * gthr-win32.h (__GTHREAD_HIDE_WIN32API): Test for nonzero
7767         value, not just if defined.
7768         Update copyright year.
7769
7770 2003-05-21  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
7771
7772         PR target/6428
7773         * pa-hpux10.h (LINK_SPEC, LIB_SPEC): Move -L options for profiling
7774         directories from LIB_SPEC to LINK_SPEC.  Emit warning if `-p' or `-pg'
7775         option is used without `-static'.
7776         * pa-hpux11.h (LINK_SPEC, LIB_SPEC): Likewise.
7777         * pa64-hpux.h (LINK_SPEC, LIB_SPEC): Likewise.
7778
7779 2003-05-21  Bob Wilson  <bob.wilson@acm.org>
7780
7781         * config/xtensa/xtensa.h (MASK_SERIALIZE_VOLATILE,
7782         TARGET_SERIALIZE_VOLATILE): Delete.
7783         (MASK_CONST16, MASK_ABS, MASK_ADDX): Renumber flag bits.
7784         (TARGET_DEFAULT): Remove MASK_SERIALIZE_VOLATILE.
7785         (TARGET_SWITCHES): Remove "-mserialize-volatile" and
7786         "-mno-serialize-volatile".
7787         * config/xtensa/xtensa.c (print_operand): Remove checks of
7788         TARGET_SERIALIZE_VOLATILE.
7789         * config/xtensa/xtensa.md (*lsiu, *ssiu): Likewise.
7790         * doc/invoke.texi (Option Summary, Xtensa Options): Remove
7791         "-mserialize-volatile" and "-mno-serialize-volatile" options.
7792
7793 2003-05-21  Nathan Sidwell  <nathan@codesourcery.com>
7794
7795         * c-parse.in (fndef): Set DECL_SOURCE_LINE and FILE earlier.
7796         (nested_function): Likewise.
7797         (notype_nested_function): Likewise.
7798
7799 2003-05-21  Nick Clifton  <nickc@redhat.com>
7800
7801         * config/stormy16/stormy-abi: Update overflow type for
7802         R_XSTORMY16_16 reloc.
7803
7804 2003-05-21  Nathan Sidwell  <nathan@codesourcery.com>
7805
7806         * c-common.h (enum rid): Remove RID_BOUNDED, RID_UNBOUNDED.
7807         * c-parse.in (reswords): Remove __bounded__ and __unbounded__.
7808         (rid_to_yy): Remove RID_BOUNDED, RID_UNBOUNDED slots.
7809         * print-tree.c (print_node): Remove ambient-boundedness.
7810         * tree.h (tree_common): Remove bounded_flag.
7811         (BOUNDED_INDIRECT_YPE_P, BOUNDED_POINTER_TYPE_P,
7812         BOUNDED_REFERENCE_TYPE_P, MAYBE_BOUNDED_INDIRECT_TYPE_P,
7813         MAYBE_BOUNDED_POINTER_TYPE_P, MAYBE_BOUNDED_REFERENCE_TYPE_P,
7814         TREE_BOUNDED, TYPE_MAIN_VARIANTS_PHYSICALLY_EQUAL_P,
7815         TYPE_MAIN_PHYSICAL_VARIANT, TYPE_BOUNDED, TYPE_QUAL_BOUNDED):
7816         Remove.
7817         (TYPE_QUALS): Remove BOUNDED.
7818         (TREE_EXPR_QUALS, TREE_FUNC_QUALS): Remove.
7819         (TYPE_BOUNDED_VALUE, TYPE_BOUNDED_BASE, TYPE_BOUNDED_EXTENT,
7820         TYPE_BOUNDED_SUBTYPE, TYPE_UNBOUNDED_VARIANT, TYPE_POINTER_DEPTH,
7821         TYPE_AMBIENT_BOUNDEDNESS, MAX_POINTER_DEPT,
7822         VA_LIST_POINTER_DEPTH): Remove.
7823         (struct tree_type): Remove pointer_depth.
7824
7825 2003-05-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7826
7827         * c-pretty-print.c (pp_c_integer_literal): Use
7828         HOST_WIDE_INT_PRINT_DOUBLE_HEX.
7829
7830 2003-05-20  Roger Sayle  <roger@eyesopen.com>
7831             Kazu Hirata  <kazu@cs.umass.edu>
7832             Joern Rennecke  <joern.rennecke@superh.com>
7833
7834         * gcse.c (cprop_jump):  Make use of REG_EQUAL notes on both
7835         setcc and jump, if they exist.  If substituted instruction
7836         fails to validate, store current effort in a REG_EQUAL note.
7837         (cprop_insn): Don't attempt further substitutions if the
7838         current instruction has been deleted.
7839         (local_cprop_pass): Likewise.
7840
7841         * jump.c (redirect_jump):  Also update REG_EQUAL note, if
7842         one is attached to the jump instruction.
7843         (invert_jump): Delete REG_EQUAL note on jump, if one exists.
7844
7845 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
7846
7847         PR c++/9738
7848         * config/i386/winnt.c (i386_pe_encode_section_info): Enable
7849         even if not first.
7850
7851 2003-05-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7852
7853         * genautomata.c (output_description, output_automaton_units,
7854         output_state_arcs): Add missing specifiers.
7855
7856 2003-05-20  Bob Wilson  <bob.wilson@acm.org>
7857
7858         * config/xtensa/lib1funcs.asm: Avoid use of .Lfe* in .size directives.
7859         (do_abs, do_addx2, do_addx4, do_addx8): New assembler macros.
7860         (__mulsi3): Use do_addx* instead of ADDX* instructions.  Formatting.
7861         (nsau): Rename to do_nsau.  Provide alternate version for use when
7862         the NSAU instruction is available.
7863         (__udivsi3, __divsi3, __umodsi3, __modsi3): Use do_nsau macro.
7864         (__divsi3, __modsi3): Use do_abs macro instead of ABS instruction.
7865         * config/xtensa/xtensa-config.h: Update comments to match binutils.
7866         (XCHAL_HAVE_ABS, XCHAL_HAVE_ADDX): Define.
7867         * config/xtensa/xtensa.h (MASK_ABS, MASK_ADDX): Define.
7868         (TARGET_ABS, TARGET_ADDX): Define.
7869         (TARGET_DEFAULT): Conditionally add MASK_ABS and MASK_ADDX.
7870         (TARGET_SWITCHES): Add "abs", "no-abs", "addx", and "no-addx".
7871         * config/xtensa/xtensa.md (*addx2, *addx4, *addx8, *subx2, *subx4,
7872         *subx8): Set predicate condition to TARGET_ADDX.
7873         (abssi2): Set predicate condition to TARGET_ABS.
7874         * doc/invoke.texi (Option Summary): Document new "-mabs", "-mno-abs",
7875         "-maddx", and "-mno-addx" options.
7876         (Xtensa Options): Likewise.  Also tag some opcode names with @code.
7877
7878 2003-05-20  Kevin Ryde <user42@zip.com.au>
7879             Wolfgang Bangerth <bangerth@dealii.org>
7880
7881         PR/10355
7882         * doc/extend.texi: Put a warning into the documentation
7883         of attribute regparm.
7884
7885 2003-05-20  Jason Merrill  <jason@redhat.com>
7886
7887         * tree.c (expr_last): New fn.
7888         * tree.h: Declare it.
7889         * objc/objc-act (expr_last): Rename to objc_expr_last.
7890
7891 2003-05-20  J"orn Rennecke <joern.rennecke@superh.com>
7892
7893         * sh.c (sh_register_move_cost): Add clase for moving between
7894         FP registers and MAC registers.
7895
7896 2003-05-19  John David Anglin  <dave.anglin@nrc-gnrc.gc.ca>
7897
7898         * pa/milli64.S ($$mulI): Fix typo.
7899
7900 2003-05-19  Matt Kraai  <kraai@alumni.cmu.edu>
7901
7902         * alias.c (nonlocal_mentioned_p, nonlocal_referenced_p)
7903         (nonlocal_set_p): Remove initial blank line.
7904         * dwarf2out.c (simple_type_size_in_bits): Likewise.
7905         * et-forest.c (et_forest_create): Likewise.
7906         * explow.c (stabilize): Likewise.
7907         * fix-header.c (write_lbrac): Likewise.
7908         * graph.c (start_fct, node_data): Likewise.
7909         * jump.c (only_sets_cc0_p, sets_cc0_p): Likewise.
7910         * rtlanal.c (global_reg_mentioned_p): Likewise.
7911         * tree.c (bit_position): Likewise.
7912
7913 2003-05-19  Alexandre Oliva  <aoliva@redhat.com>
7914
7915         * config/mips/linux64.h (LIB_SPEC): Add missing -lc and correct
7916         -lthread to -lpthread.
7917
7918 2003-05-19  Neil Booth  <neil@daikokuya.co.uk>
7919
7920         * c-opts.c (c_common_decode_option): Don't accept dollars
7921         as identifier characters in assembly.
7922         * doc/cpp.texi: Document this.
7923
7924 2003-05-19  Seth Arnold  <sarnold@wirex.com>
7925             Aldy Hernandez  <aldyh@redhat.com>
7926
7927         * config/rs6000/rs6000.c (rs6000_stack_info): Do not add
7928         vrsave_size twice.
7929
7930 2003-05-19  Aldy Hernandez  <aldyh@redhat.com>
7931
7932         * doc/tm.texi (function_arg): Fix typo.
7933
7934 2003-05-19  Matt Austern  <austern@apple.com>
7935
7936         * c-opts.c (COMMAND_LINE_OPTIONS): Add -Winvalid-offsetof option.
7937         * c-common.h (warn_invalid_offsetof): Declare.
7938         * c-common.c (warn_invalid_offsetof): Define.
7939         * doc/invoke.texi: Document -Winvalid-offsetof.
7940         * testsuite/g++.dg/other/offsetof3.C: New.
7941         * testsuite/g++.dg/other/offsetof4.C: New.
7942
7943 2003-05-19  Kevin B. Hendricks  <kevin.hendricks@sympatico.ca>
7944             David Edelsohn  <edelsohn@gnu.org>
7945
7946         * config/rs6000/rs6000.c (rs6000_alignment_string,
7947         rs6000_alignment_flags): New variables.
7948         (rs6000_parse_alignment_option): New function.
7949         (rs6000_override_options): Call it.
7950         * config/rs6000/rs6000.h (TARGET_OPTIONS): Add -malign-XXX option.
7951         (MASK_ALIGN_POWER, MASK_ALIGN_NATURAL, TARGET_ALIGN_NATURAL): New
7952         macros.
7953         * config/rs6000/aix.h (ADJUST_FIELD_ALIGN): Always use COMPUTED
7954         natural alignment if TARGET_NATURAL_ALIGNMENT
7955         (ROUND_TYPE_ALIGN): Always use default record alignment if
7956         TAGET_NATURAL_ALIGNMENT.
7957         * config/rs6000/darwin.h (ADJUST_FIELD_ALIGN): Same
7958         (ROUND_TYPE_ALIGN): Same.
7959         * config/rs6000/linux64.h (ADJUST_FIELD_ALIGN): Same
7960         (ROUND_TYPE_ALIGN): Same.
7961         * doc/invoke.texi (Option Summary, PowerPC Options): Document
7962         new options.
7963
7964 2003-05-19  J"orn Rennecke <joern.rennecke@superh.com>
7965
7966         * c-decl.c (finish_decl): When setting the DECL_ASSEMBLER_NAME
7967         of a function using ASMSPEC, prepend a star.
7968
7969 2003-05-19  Jason Merrill  <jason@redhat.com>
7970
7971         * tree-inline.c (copy_body_r): Avoid generating &* during inline
7972         substitution.
7973
7974 2003-05-19  Andrew Macleod  <amacleod@redhat.com>
7975
7976         * config/stormy16/stormy16.c (xstormy16_expand_prologue): Do
7977         not mark assignments to the hard frame pointer as being stack
7978         frame related.
7979         (xstormy16_expand_epilogue): Mark adjustments to the stack
7980         pointer as being stack frame related.
7981
7982 2003-05-19  Richard Sandiford  <rsandifo@redhat.com>
7983
7984         * config/mips/mips.h (ISA_HAS_LOAD_DELAY, ISA_HAS_XFER_DELAY,
7985         ISA_HAS_FCMP_DELAY, ISA_HAS_HILO_INTERLOCKS): New macros.
7986         (PREDICATE_CODES): Add hilo_operand.
7987         * config/mips/mips.c (hilo_operand): New predicate.
7988         (mips_adjust_insn_length): Account for the number nops that might
7989         be needed to avoid hardware hazards.
7990         * config/mips/mips.md (dslot): Remove attribute.
7991         (hazard): New attribute.
7992         (can_delay): Use it.  Check for calls, branches & jumps.
7993         (muldi3): Use the standard dmult pattern for mips16 code.
7994         (muldi3_internal, muldi3_internal2): Adjust conditions accordingly.
7995
7996 2003-05-19  Richard Sandiford  <rsandifo@redhat.com>
7997
7998         * config/mips/mips-protos.h (final_prescan_insn,
7999         mips_count_memory_refs, mips_fill_delay_slot): Remove.
8000         * config/mips/mips.h (delay_type, dslots_load_total,
8001         dslots_load_filled, dslots_jump_total, dslots_jump_filled,
8002         dslots_number_nops, num_refs, mips_load_reg, mips_load_reg2,
8003         mips_load_reg3, mips_load_reg4): Remove.
8004         (MASK_STATS): Remove.
8005         (MASK_EXPLICIT_RELOCS): Reuse its value.
8006         (TARGET_STATS): Remove.
8007         (TARGET_SWITCHES): Turn -mstats and -mno-stats into no-ops.
8008         Warn that -mstats is now ignored.
8009         (FINAL_PRESCAN_INSN): Undefine.
8010         (DBR_OUTPUT_SEQEND): Remove handling of dslot statistics.
8011         (ASM_OUTPUT_REG_POP): Likewise.
8012         * config/mips/mips.c (dslots_load_total, dslots_load_filled,
8013         dslots_jump_total, dslots_jump_filled, dslots_number_nops, num_refs,
8014         mips_load_reg, mips_load_reg2, mips_load_reg3, mips_load_reg4,
8015         mips_fill_delay_slot, mips_count_memory_refs,
8016         final_prescan_insn): Remove.
8017         (output_block_move): Remove calls to mips_count_memory_refs.
8018         (print_operand): Remove printing of #nop for TARGET_STATS.
8019         (mips_output_function_epilogue): Remove TARGET_STATS code.
8020         Reorganize setting of fnnmae.
8021         * config/mips/mips.md: Remove handling of dslot statistics
8022         throughout file.  Change all fcmp patterns into normal asm
8023         templates, removing calls to mips_fill_delay_slot.
8024         * doc/invoke.texi: Remove documentation of -mstats.
8025
8026 2003-05-19  Richard Sandiford  <rsandifo@redhat.com>
8027
8028         * config/mips/mips.c (mips_class_max_nregs): Return the number of
8029         words in the mode.
8030
8031 2003-05-19  Richard Sandiford  <rsandifo@redhat.com>
8032
8033         * config/mips/mips.c (override_options): Disable explicit
8034         relocs for old ABIs unless using gas.
8035
8036 2003-05-18  Eric Christopher  <echristo@redhat.com>
8037
8038         * config/mips/mips.h: Remove definition of g_switch_value.
8039
8040 2003-05-18  Matt Kraai  <kraai@alumni.cmu.edu>
8041
8042         * flags.h (g_switch_value): Change to an unsigned
8043         HOST_WIDE_INT.
8044         * toplev.c (g_switch_value): Likewise.
8045
8046         * config/alpha/alpha.c (small_symbolic_operand): Remove
8047         g_switch_value cast.
8048         (alpha_in_small_data_p): Cast size to an unsigned
8049         HOST_WIDE_INT.
8050
8051         * config/frv/frv.c (frv_in_small_data_p): Cast size to an
8052         unsigned HOST_WIDE_INT.
8053         * config/frv/frv.h (g_switch_value, g_switch_set): Remove.
8054         (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Declare g_switch_set.
8055
8056         * config/m32r/m32r.c (m32r_in_small_data_p): Cast size to an
8057         unsigned HOST_WIDE_INT.
8058         (m32r_asm_file_start): Use HOST_WIDE_INT_PRINT_UNSIGNED.
8059         * config/m32r/m32r.h (g_switch_value, g_switch_set): Remove.
8060         (ASM_OUTPUT_ALIGNED_COMMON): Declare g_switch_value.
8061
8062         * config/rs6000/rs6000.c (rs6000_file_start): Use
8063         HOST_WIDE_INT_PRINT_UNSIGNED.
8064         (small_data_operand): Cast summand to unsigned HOST_WIDE_INT.
8065         (rs6000_elf_in_small_data_p): Cast size to unsigned
8066         HOST_WIDE_INT.
8067         * config/rs6000/sysv4.h (g_switch_value, g_switch_set):
8068         Remove.
8069         (SUBTARGET_OVERRIDE_OPTIONS): Declare g_switch_value and
8070         g_switch_set.
8071         (ASM_OUTPUT_ALIGNED_LOCAL): Declare g_switch_value and remove
8072         g_switch_value cast.
8073
8074 2003-05-18  Roger Sayle  <roger@eyesopen.com>
8075             Zack Weinberg  <zack@codesourcery.com>
8076
8077         PR middle-end/10472
8078         * builtins.c (expand_builtin_memcpy):  Call force_operand on
8079         expressions and use simplify_gen_binary to create the addition.
8080
8081 2003-05-18  Andreas Schwab  <schwab@suse.de>
8082
8083         * config/m68k/m68k.md: Use define_constants for unspec numbers.
8084
8085 2003-05-18  Neil Booth  <neil@daikokuya.co.uk>
8086
8087         * config/sparc/sparc.h: Define sparc for now.
8088
8089 2003-05-18  Nathanael Nerode  <neroden@gcc.gnu.org>
8090
8091         * config.gcc: Clear xm_file, md_file at the beginning of each pass.
8092
8093         * config/stormy16/stormy16.h: Remove about 3000 lines of
8094         target-independent comments.  Update copyright notice.
8095
8096         * doc/collect2.texi: GNU CC -> GCC.
8097         * doc/headerdirs.texi: GNU CC -> GCC.
8098
8099 2003-05-18  Gabriel Dos Reis <gdr@integrable-solutions.net>
8100
8101         * hashtable.h (struct ht_identifier): Add data member "hash_value".
8102         * hashtable.c (ht_lookup): Use it when searching, remember.
8103         (ht_expand): Do not recompute.
8104         * tree.h (IDENTIFIER_HASH_VALUE): New macro.
8105
8106 2003-05-18  Nathan Sidwell  <nathan@codesourcery.com>
8107
8108         * gcov-io.c (gcov_read_bytes): Fix fread thinko.
8109
8110 2003-05-18  Neil Booth  <neil@daikokuya.co.uk>
8111
8112         * c-cppbuiltin.c (TARGET_OS_CPP_BUILTINS, TARGET_OBJFMT_CPP_BUILTINS):
8113         Default here.
8114         (c_cpp_builtins): Invoke TARGET_OBJFMT_CPP_BUILTINS().
8115         * defaults.h: Don't default TARGET_OS_CPP_BUILTINS here.
8116         * config/elfos.h (TARGET_OBJFMT_CPP_BUILTINS): Define __ELF__.
8117         * config/freebsd-spec.h, config/netbsd-elf.h, config/alpha/gnu.h,
8118         config/arm/linux-elf.h, config/arm/rtems-elf.h,
8119         config/arm/unknown-elf.h, config/cris/cris.h, config/cris/linux.h,
8120         config/h8300/elf.h, config/i370/linux.h, config/i386/beos-elf.h,
8121         config/i386/gnu.h, config/i386/linux.h, config/i386/linux64.h,
8122         config/i386/moss.h, config/i386/rtemself.h, config/ia64/ia64.h,
8123         config/m68k/rtemself.h, config/mcore/mcore-elf.h, config/mips/linux.h,
8124         config/pa/pa-linux.h, config/rs6000/linux.h, config/rs6000/linux64.h,
8125         config/rs6000/sysv4.h, config/rs6000/vxworks.h, config/s390/linux.h,
8126         config/sh/coff.h, config/sh/elf.h, config/sh/rtemself.h,
8127         config/sh/sh.h, config/sparc/linux.h, config/sparc/linux64.h,
8128         config/sparc/openbsd64.h, config/sparc/sp64-elf.h,
8129         config/sparc/sp86x-elf.h, config/xtensa/elf.h, config/xtensa/linux.h:
8130         Don't define __ELF__.
8131         * config/alpha.h, config/m68k/linux.h (TARGET_OBJFMT_CPP_BUILTINS):
8132         Define __ELF__.
8133         * doc/cpp.texi: Document __ELF__.
8134         * doc/tm.texi: Document TARGET_OBJFMT_CPP_BUILTINS.     *
8135
8136 2003-05-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8137
8138         * builtins.c (validate_arglist): Eliminate libiberty VA_ macros,
8139         always use stdarg.
8140         * c-errors.c (pedwarn_c99): Likewise.
8141         * c-format.c (status_warning): Likewise.
8142         * c-semantics.c (build_stmt): Likewise.
8143         * calls.c (emit_library_call, emit_library_call_value): Likewise.
8144         * collect2.c (notice, fatal_perror, fatal, error): Likewise.
8145         * cpperror.c (cpp_error, cpp_error_with_line): Likewise.
8146         * diagnostic.c (build_message_string, output_printf,
8147         output_verbatim, verbatim, inform, warning, pedwarn, error, sorry,
8148         fatal_error, internal_error, warning_with_decl, pedwarn_with_decl,
8149         error_with_decl, fnotice): Likewise.
8150         * dwarf2asm.c (dw2_asm_output_data, dw2_asm_output_delta,
8151         dw2_asm_output_offset, dw2_asm_output_pcrel, dw2_asm_output_addr,
8152         dw2_asm_output_addr_rtx, dw2_asm_output_nstring,
8153         dw2_asm_output_data_uleb128, dw2_asm_output_data_sleb128,
8154         dw2_asm_output_delta_uleb128, dw2_asm_output_delta_sleb128,
8155         dw2_asm_output_encoded_addr_rtx): Likewise.
8156         * emit-rtl.c (gen_rtx, gen_rtvec): Likewise.
8157         * errors.c (warning, error, fatal, internal_error): Likewise.
8158         * final.c (output_operand_lossage, asm_fprintf): Likewise.
8159         * fix-header.c (fatal): Likewise.
8160         * gcc.c (fatal, error, notice): Likewise.
8161         * gcov.c (fnotice): Likewise.
8162         * genattrtab.c (attr_rtx, attr_printf): Likewise.
8163         * gengtype.c (error_at_line, xasprintf, oprintf): Likewise.
8164         * gensupport.c (message_with_line): Likewise.
8165         * mips-tfile.c (fatal, error): Likewise.
8166         * protoize.c (notice): Likewise.
8167         * ra-debug.c (ra_debug_msg): Likewise.
8168         * read-rtl.c (fatal_with_file_and_line): Likewise.
8169         * rtl-error.c (error_for_asm, warning_for_asm): Likewise.
8170         * tree.c (build, build_nt, build_function_type_list): Likewise.
8171
8172 2003-05-17  Neil Booth  <neil@daikokuya.co.uk>
8173
8174         * defaults.h (TARGET_CPU_CPP_BUILTINS, CPP_PREDEFINES): Remove.
8175         * gcc.c (cpp_predefines): Remove.
8176         (cpp_unique_options, do_spec_1): Remove handling of CPP_PREDEFINES.
8177         (static_specs): Remove predefines.
8178         * system.h: Poison CPP_PREDEFINES.
8179         * config/freebsd.h, config/openbsd.h, config/ptx4.h, config/svr3.h,
8180         config/svr4.h, doc/tm.texi: Remove references to CPP_PREDEFINES.
8181
8182 2003-05-17  Neil Booth  <neil@daikokuya.co.uk>
8183
8184         * config/m68k/hp320.h, config/m68k/linux.h, config/m68k/m68k-none.h,
8185         config/m68k/m68k.h, config/m68k/m68kemb.h, config/m68k/m68kv4.h,
8186         config/m68k/openbsd.h, config/m68k/rtemself.h: Remove CPP_PREDEFINES,
8187         use TARGET_OS_CPP_BUILTINS and TARGET_CPU_CPP_BUILTINS instead.
8188
8189 2003-05-17  Neil Booth  <neil@daikokuya.co.uk>
8190
8191         PR c/9209
8192         * c-common.c, c-common.h (dollars_in_ident): Remove.
8193         * c-opts.c (DOLLARS_IN_IDENTIFIERS): Default to true.
8194         (c_common_init_options, c_common_decode_option): Set dollars_in_ident.
8195         * cpphash.h (warned_dollar): Rename warn_dollars.
8196         * cppinit.c (struct lang_flags, lang_defaults, cpp_set_lang)
8197         Permit dollars regardless of -std=.
8198         (post_options): Set warn_dollars.
8199         * cpplex.c (forms_identifier_p): Use warn_dollars.
8200         * config/darwin.h, config/alpha/vms.h, config/m68hc11/m68hc11.h:
8201         Remove redundant definitions of DOLLARS_IN_IDENTIFIERS.
8202         * doc/cpp.texi, doc/cppopts.texi, doc/invoke.texi, doc/tm.texi:
8203         Update documentation.
8204
8205 2003-05-17  Andreas Schwab  <schwab@suse.de>
8206
8207         * config/m68k/m68k.c (m68k_output_function_prologue): Use
8208         HOST_WIDE_INT_PRINT_DEC for fprintf and %wd for asm_fprintf when
8209         formatting a HOST_WIDE_INT.
8210         (m68k_output_function_epilogue): Likewise.
8211
8212 2003-05-17  Zack Weinberg  <zack@codesourcery.com>
8213
8214         * doc/install.texi: Remove information about desupported targets.
8215
8216 2003-05-17  Andreas Schwab  <schwab@suse.de>
8217
8218         * config/m68k/coff.h: Remove support for Sun FPA and Sun SKY board.
8219         * config/m68k/linux.h: Likewise.
8220         * config/m68k/m68k-none.h: Likewise.
8221         * config/m68k/netbsd-elf.h: Likewise.
8222         * config/m68k/sgs.h: Likewise.
8223         * config/m68k/m68k.h: Likewise.
8224         * config/m68k/m68k.md: Likewise.
8225         * config/m68k/m68k.c: Likewise.
8226         * doc/md.texi (Machine Constraints): Remove Sun FPA specific
8227         constraints.
8228         * doc/invoke.texi (Option Summary): Remove -mfpa.
8229         (M680x0 Options): Likewise.
8230
8231 2003-05-17  David Edelsohn  <edelsohn@gnu.org>
8232
8233         * rs6000.c (rs6000_function_value): Simplify REAL_TYPE logic.
8234
8235 2003-05-17  Neil Booth  <neil@daikokuya.co.uk>
8236
8237         * config/sol2.h: Add TARGET_SUB_OS_CPP_BUILTINS.
8238         * config/sparc/liteelf.h, config/sparc/openbsd64.h,
8239         config/sparc/rtemself.h, config/sparc/sol2-64.h,
8240         config/sparc/sp64-elf.h, config/sparc/sp86x-elf.h:
8241         Update for use of TARGET_SUB_OS_CPP_BUILTINS.
8242
8243 2003-05-17  Neil Booth  <neil@daikokuya.co.uk>
8244
8245         * i960/i960.h, i960/rtems.h: Use TARGET_OS_CPP_BUILTINS and
8246         TARGET_CPU_CPP_BUILTINS in preference to CPP_PREDEFINES.
8247
8248 2003-05-17  Neil Booth  <neil@daikokuya.co.uk>
8249
8250         * config.gcc (sparc-*-sysv4*): Add sparc/sysv4-only.h.
8251         * sparc/aout.h, sparc/elf.h, sparc/freebsd.h, sparc/linux.h,
8252         sparc/linux64.h, sparc/lite.h, sparc/litecoff.h, sparc/liteelf.h,
8253         sparc/netbsd-elf.h, sparc/openbsd.h, sparc/openbsd64.h,
8254         sparc/pbd.h, sparc/rtemself.h, sparc/sol2-64.h, sparc/sol2-bi.h,
8255         sparc/sol2.h, sparc/sp64-elf.h, sparc/sp86-elf.h, sparc/sparc.h,
8256         sparc/sysv4.h,
8257         * sparc/sysv4-only.h: New.
8258
8259 2003-05-17  Alan Modra  <amodra@bigpond.net.au>
8260
8261         * function.c (assign_parms): Check for zero size args.
8262
8263 2003-05-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8264
8265         * cfgloopanal.c (test_for_iteration): Use string concatentation on
8266         HOST_WIDE_INT_PRINT_* format specifier to collapse multiple
8267         function calls into one.
8268         * dbxout.c (dbxout_symbol): Likewise.
8269         * defaults.h (ASM_OUTPUT_SIZE_DIRECTIVE): Likewise.
8270         * dwarf2asm.c (dw2_asm_output_data_uleb128,
8271         dw2_asm_output_data_sleb128): Likewise.
8272         * genrecog.c (debug_decision_2): Likewise.
8273         * loop.c (emit_prefetch_instructions): Likewise.
8274         * print-rtl.c (print_rtx): Likewise.
8275         * print-tree.c (print_node_brief, print_node): Likewise.
8276         * ra-debug.c (dump_igraph, dump_graph_cost,
8277         dump_static_insn_cost): Likewise.
8278         * ra-rewrite.c (dump_cost): Likewise.
8279         * sdbout.c (PUT_SDB_INT_VAL, PUT_SDB_SIZE): Likewise.
8280         * sreal.c (dump_sreal): Likewise.
8281         * unroll.c (unroll_loop, precondition_loop_p): Likewise.
8282         * varasm.c (assemble_vtable_entry): Likewise.
8283
8284         * avr.c (avr_output_function_prologue,
8285         avr_output_function_epilogue, print_operand): Fix format specifier
8286         warnings.
8287         (init_cumulative_args): Mark parameter with ATTRIBUTE_UNUSED.
8288         * avr.h (FUNCTION_VALUE_REGNO_P): Fix signed/unsigned warnings.
8289
8290 2003-05-16  Geoffrey Keating  <geoffk@apple.com>
8291
8292         * config/rs6000/rs6000.c (expand_block_move): Unify the TARGET_STRING
8293         and ! TARGET_STRING cases.
8294
8295         * doc/cppopts.texi (-undef): Fix texinfo warning.
8296
8297         * doc/cppopts.texi (-H): Document that -H works for PCH files too.
8298         * cppfiles.c (validate_pch): When -H is used, print some information
8299         about PCH files found.
8300
8301 2003-05-16  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8302
8303         * config/mips/t-elf: Remove obsolete rules adding dependencies on tm.h.
8304         * config/mips/t-isa3264, config/mips/t-r3900: Likewise.
8305         * config/mips/t-sr71k: Likewise.
8306
8307 2003-05-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8308
8309         * arc.c (arc_output_function_prologue,
8310         arc_output_function_epilogue): Fix format specifier warnings.
8311         * arc.h (LARGE_INT): Fix signed/unsigned warnings.
8312
8313         * v850.c (print_operand): Fix format specifier warnings.
8314
8315         * ns32k.c (ADJSP, ns32k_output_function_prologue): Fix format
8316         specifier warnings.
8317
8318         * mcore.c (mcore_print_operand_address, mcore_print_operand): Fix
8319         format specifier warnings.
8320
8321         * ip2k.c (function_prologue, function_epilogue, print_operand):
8322         Fix format specifier warnings.
8323         * ip2k.md: Likewise.
8324
8325         * i960.c (i960_output_function_prologue, i960_print_operand,
8326         i960_print_operand_addr): Fix format specifier warnings.
8327
8328         * i370.c (ascebc, ebcasc): Wrap in macros controlling usage.
8329         (i370_output_function_prologue): Fix format specifier warnings.
8330         * i370.h (PRINT_OPERAND): Likewise.
8331
8332         * fr30.c (fr30_print_operand): Fix format specifier warnings.
8333
8334         * dsp16xx.c (print_operand_address): Fix format specifier warning.
8335         * dsp16xx.h (INCLUDE_DEFAULTS): Add missing initializers.
8336
8337         * c4x.c (c4x_print_operand, c4x_print_operand_address): Fix format
8338         specifier warnings.
8339
8340         * alpha.c (print_operand_address, alpha_start_function,
8341         unicosmk_output_ssib): Use string concatentation on
8342         HOST_WIDE_INT_PRINT_* format specifier to collapse multiple
8343         function calls into one.
8344         * arm.c (arm_print_operand): Likewise.
8345         * cris.c (cris_asm_output_mi_thunk): Likewise.
8346         * frv.c (frv_asm_output_mi_thunk): Likewise.
8347         * ia64.c (ia64_print_operand, process_set): Likewise.
8348         * m68k.c (m68k_output_function_epilogue, m68k_output_mi_thunk):
8349         Likewise.
8350         * mips/iris5gas.h (PUT_SDB_SIZE): Likewise.
8351         * mips.h (PUT_SDB_INT_VAL, PUT_SDB_SIZE): Likewise.
8352         * pa.c (output_div_insn, pa_asm_output_mi_thunk): Likewise.
8353         * pa.h (PRINT_OPERAND_ADDRESS): Likewise.
8354         * rs6000.c (rs6000_va_start, print_operand_address): Likewise.
8355         * s390.c (s390_assemble_integer): Likewise.
8356         * sparc.c (sparc_flat_function_prologue,
8357         sparc_flat_function_epilogue): Likewise.
8358         * stormy16.c (xstormy16_print_operand_address, xstormy16_print_operand): Likewise.
8359         * vax.c (vax_output_mi_thunk): Likewise.
8360
8361         * frv.c (frv_print_operand_memory_reference): Fix format specifier
8362         warning.
8363         (frv_rtx_costs): Mark parameter with ATTRIBUTE_UNUSED.
8364
8365         * m68k.c (m68k_output_function_epilogue): Fix format specifier
8366         warnings.
8367
8368         * stormy16-protos.h (xs_hi_general_operand,
8369         xs_hi_nonmemory_operand): Prototype.
8370         * stormy16.c (xstormy16_output_shift): Fix format specifier
8371         warnings.
8372
8373         * cris.c: Fix format specifier warnings.
8374
8375 2003-05-16  Nick Clifton  <nickc@redhat.com>
8376
8377         * config/arm/lib1funcs.asm: Fix typo: LSM instead of LSYM.
8378
8379 2003-05-16  Wolfgang Bangerth <bangerth@dealii.org>
8380
8381         * doc/bugreport.texi: Remove most of the of the preface of the
8382         bugs section.
8383
8384 2003-05-16  Jakub Jelinek  <jakub@redhat.com>
8385
8386         * config/ia64/unwind-ia64.c (uw_update_reg_address): Handle
8387         .save XX, r0.
8388
8389 2003-05-15  Roger Sayle  <roger@eyesopen.com>
8390
8391         * config/alpha/alpha.h (ASM_OUTPUT_SKIP): Fix typo.
8392
8393 2003-05-15  Eric Christopher  <echristo@redhat.com>
8394
8395         * cfgcleanup.c (merge_blocks): Fix return value.
8396
8397 2003-05-15 Eric Christopher <echristo@redhat.com>
8398
8399         * combine.c (expand_compound_operation): Make sure
8400         that zero_extend operation is profitable.
8401
8402 2003-05-15  Richard Henderson  <rth@redhat.com>
8403
8404         * config/alpha/linux.h, config/alpha/linux-elf.h: Remove
8405         code protected by USE_GNULIBC_1.
8406
8407 2003-05-15  Zack Weinberg  <zack@codesourcery.com>
8408
8409         * config.gcc: Purge all targets obsoleted in GCC 3.3.  Also
8410         remove hppa*-*-mpeix* which could not be built, and prune
8411         files from tmake_file= or tm_file= lists that don't exist.
8412
8413         * config/alpha/alpha-interix.h, config/alpha/alpha32.h
8414         * config/alpha/t-interix, config/arm/conix-elf.h
8415         * config/arm/t-arm-aout, config/arm/t-strongarm-coff
8416         * config/arm/unknown-elf-oabi.h, config/i386/win32.h
8417         * config/m68k/3b1.h, config/m68k/3b1g.h, config/m68k/amix.h
8418         * config/m68k/atari.h, config/m68k/ccur-GAS.h, config/m68k/crds.h
8419         * config/m68k/hp2bsd.h, config/m68k/hp3bsd.h
8420         * config/m68k/hp3bsd44.h, config/m68k/linux-aout.h
8421         * config/m68k/m68k-psos.h, config/m68k/mot3300.h
8422         * config/m68k/pbb.h, config/m68k/plexus.h, config/m68k/sun2.h
8423         * config/m68k/sun2o4.h, config/m68k/sun3.h, config/m68k/sun3mach.h
8424         * config/m68k/sun3n.h, config/m68k/sun3n3.h, config/m68k/sun3o3.h
8425         * config/m68k/t-mot3300, config/m68k/t-mot3300-gald
8426         * config/m68k/t-mot3300-gas, config/m68k/t-mot3300-gld
8427         * config/m68k/tower-as.h, config/m68k/tower.h
8428         * config/m88k/aout-dbx.h, config/m88k/m88k-aout.h
8429         * config/m88k/m88k-modes.def, config/m88k/m88k-move.sh
8430         * config/m88k/m88k-protos.h, config/m88k/m88k.c
8431         * config/m88k/m88k.h, config/m88k/m88k.md, config/m88k/openbsd.h
8432         * config/m88k/sysv4.h, config/m88k/t-luna, config/m88k/t-luna-gas
8433         * config/m88k/t-m88k, config/m88k/t-sysv4, config/mcore/gfloat.h
8434         * config/mips/rtems64.h, config/mips/sni-gas.h
8435         * config/mips/sni-svr4.h, config/mips/t-ecoff
8436         * config/mn10200/lib1funcs.asm, config/mn10200/mn10200-protos.h
8437         * config/mn10200/mn10200.c, config/mn10200/mn10200.h
8438         * config/mn10200/mn10200.md, config/mn10200/t-mn10200
8439         * config/pa/pa-hiux.h, config/pa/pa-hpux7.h, config/pa/pa-hpux9.h
8440         * config/pa/pa-oldas.h, config/pa/t-mpeix, config/psos.h
8441         * config/romp/romp-protos.h, config/romp/romp.c
8442         * config/romp/romp.h, config/romp/romp.md, config/rs6000/aix31.h
8443         * config/rs6000/aix3newas.h, config/rs6000/mach.h
8444         * config/sparc/bsd.h, config/sparc/hal.h
8445         * config/sparc/linux-aout.h, config/sparc/lynx-ng.h
8446         * config/sparc/lynx.h, config/sparc/netbsd.h
8447         * config/sparc/sp86x-aout.h, config/sparc/splet.h
8448         * config/sparc/sun4gas.h, config/sparc/sun4o3.h
8449         * config/sparc/sunos4.h, config/sparc/t-chorus-elf
8450         * config/sparc/t-halos, config/sparc/t-sparcbare
8451         * config/sparc/t-splet, config/sparc/t-sunos41
8452         * config/v850/rtems.h: Delete file.
8453
8454 2003-05-15  Aldy Hernandez  <aldyh@redhat.com>
8455
8456         * config/rs6000/rs6000-protos.h (function_value): Protoize.
8457
8458         * config/rs6000/rs6000.h (FUNCTION_VALUE): Call function.
8459
8460         * config/rs6000/rs6000.c (rs6000_function_value): New.
8461
8462 2003-05-15  Philip Blundell  <philb@gnu.org>
8463
8464         * config/arm/arm.c (arm_is_xscale): Rename to arm_arch_xscale.
8465         All uses updated.
8466         (arm_tune_xscale): New variable.
8467         (arm_override_options): Set it.
8468         (arm_adjust_cost): Use it in place of arm_arch_xscale.
8469         (arm_gen_load_multiple): Likewise.
8470         (arm_gen_store_multiple): Likewise.
8471         * config/arm/arm.md (is_xscale): Likewise.
8472         * config/arm/arm.h (arm_tune_xscale): Declare.
8473
8474 2003-05-15  Philip Blundell  <philb@gnu.org>
8475
8476         PR target/10730
8477         * config/arm/arm.c (adjacent_mem_locations): Reject offsets
8478         involving invalid constants.
8479
8480 2003-05-15  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
8481
8482         * pa.c (hppa_expand_prologue): Remove blockage.
8483
8484 2003-05-15  Wolfgang Bangerth <bangerth@dealii.org>
8485
8486         * doc/bugreport.texi: Remove most of the bug reporting
8487         instructions and merge them into bugs.html.
8488
8489 2003-05-14  Matt Kraai  <kraai@alumni.cmu.edu>
8490
8491         * config/rs6000/sysv4.h (ASM_OUTPUT_ALIGNED_LOCAL): Cast
8492         g_switch_value to unsigned HOST_WIDE_INT.
8493
8494 2003-05-14  Eric Christopher  <echristo@redhat.com>
8495
8496         * combine.c: Fix header comments.
8497         (distribute_notes): Remove usage of elim_i1, elim_i2. Propagate
8498         to all calls and prototype.
8499
8500 2003-05-14  Roger Sayle  <roger@eyesopen.com>
8501
8502         PR optimization/10764
8503         * config/i386/i386.md (atan2df3, atan2sf3, atan2xf3, atan2tf3):
8504         Add an explicit clobber to show that UNSPEC_FPATAN clobbers st(1).
8505         (*fyl2x_sfxf3, *fyl2x_dfxf3, *fyl2x_xf3, *fyl2x_tfxf3):  Likewise,
8506         add an explicit clobber to show that UNSPEC_FYL2X clobbers st(1).
8507         (logsf2, logdf2, logxf2, logtf2): Update expander patterns to match
8508         the corresponding *fyl2x_?fxf3 instructions.
8509
8510 2003-05-14  Bob Wilson  <bob.wilson@acm.org>
8511
8512         * config/xtensa/lib2funcs.S (TRAMPOLINE_SIZE): Change from 49 to 59.
8513         * config/xtensa/xtensa-config.h (XCHAL_HAVE_CONST16,
8514         XCHAL_HAVE_L32R): New.
8515         * config/xtensa/xtensa-protos.h (non_const_move_operand,
8516         xtensa_load_constant, xtensa_function_prologue,
8517         xtensa_function_epilogue): Delete prototypes.
8518         (xtensa_expand_prologue): New.
8519         * config/xtensa/xtensa.c (frame_size_const,
8520         TARGET_ASM_FUNCTION_PROLOGUE, TARGET_MACHINE_DEPENDENT_REORG,
8521         non_const_move_operand, xtensa_load_constant, xtensa_reorg,
8522         xtensa_function_prologue): Delete.
8523         (add_operand, xtensa_mem_offset): Formatting.
8524         (move_operand): If the const16 option is available, allow any SFmode
8525         and SImode constants.
8526         (xtensa_emit_move_sequence): Inline the former contents of
8527         xtensa_load_constant with modifications to handle the const16 option.
8528         (override_options): Add xtensa_char_to_class['W'] and set it to
8529         the general register class only if the const16 option is enabled.
8530         Fix formatting.  Disallow PIC when using the const16 option.
8531         (print_operand): Reorganize to switch on "letter" instead of the
8532         RTL code.  Add output_operand_lossage calls for invalid cases.
8533         Add support for 't' and 'b' letters.
8534         (xtensa_expand_prologue): New function to replace
8535         xtensa_function_prologue and xtensa_reorg.
8536         (xtensa_function_epilogue): Declare this as static.  Delete code
8537         to print the retw.n or retw instruction.
8538         (xtensa_return_addr): Use A0_REG instead of 0.
8539         (xtensa_rtx_costs): Add costs for using the const16 option.
8540         * config/xtensa/xtensa.h (MASK_CONST16, TARGET_CONST16): New.
8541         (TARGET_DEFAULT): Add CONST16 if L32R instructions not available.
8542         (TARGET_SWITCHES): Add "const16" and "no-const16".
8543         (REG_CLASS_FROM_LETTER): Add comment about new 'W' letter.
8544         (EXTRA_CONSTRAINT): Change 'T' constraint to only apply when not
8545         using the const16 option.
8546         (TRAMPOLINE_TEMPLATE): Rewrite to avoid hardwired use of l32r insn.
8547         (TRAMPOLINE_SIZE): Change from 49 to 59.
8548         (INITIALIZE_TRAMPOLINE): Adjust offsets to match new trampoline.
8549         (GO_IF_LEGITIMATE_ADDRESS): Do not allow constant pool addresses
8550         when using the const16 option.
8551         (PREDICATE_CODES): Delete non_const_move_operand.
8552         * config/xtensa/xtensa.md (define_constants): Add A1_REG, A8_REG, and
8553         UNSPECV_ENTRY.
8554         (movdi, movdf): If the source is a constant, always expand to a
8555         sequence of movsi insns.
8556         (movdi_internal, movdf_internal): Remove alternative using l32r insns.
8557         (movsi_internal, movsf_internal): Add alternative using const16 insns.
8558         (movsf): Add const16 support.
8559         (entry, prologue, epilogue): New.
8560         (set_frame_ptr): Add missing mode for unspec_volatile operation.
8561         Likewise for subsequent split pattern.
8562         * doc/invoke.texi (Option Summary, Xtensa Options): Document new
8563         "-mconst16" and "-mno-const16" options.
8564
8565 2003-05-14  Richard Henderson  <rth@redhat.com>
8566
8567         * config/ia64/ia64.c (ia64_expand_load_address): Force destination
8568         to be DImode register.  Merge load_symptr.
8569         * config/ia64/ia64.md (load_symptr): Remove.
8570
8571 2003-05-14  Richard Henderson  <rth@redhat.com>
8572
8573         * rtl.h (TREE_CONSTANT_POOL_ADDRESS_P): Rename from
8574         DEFERRED_CONSTANT_P.
8575         * integrate.c (copy_rtx_and_substitute): Update use.
8576         * varasm.c (build_constant_desc): Set SYMBOL_REF_DECL
8577         to the copy generated.
8578         (maybe_output_constant_def_contents): Examine TREE_ASM_WRITTEN
8579         of the constant to see if we should emit.
8580         (mark_constant): Similarly.
8581         (output_constant_def_contents): Set TREE_ASM_WRITTEN.
8582
8583 2003-05-14  David Edelsohn  <edelsohn@gnu.org>
8584
8585         * config/rs6000/rs6000.md (movsi_internal2): Use compare for self
8586         move record condition.
8587         (movdi_internal2): Same.
8588
8589 2003-05-14  Nathan Sidwell  <nathan@codesourcery.com>
8590
8591         * gcov-io.h (gcov_write_bytes, gcov_read_bytes): Remove here.
8592         (GCOV_TAG_*) Force type to gcov_unsigned_t.
8593         (GCOV_CHECK, GCOV_CHECK_READING, GCOV_CHECK_WRITING): New.
8594         (struct gcov_var): Remove modified. Add start, length, offset,
8595         overread. Have buffer array for libgcov.
8596         (gcov_sync, gcov_seek): Definitions moved to gcov-io.c.
8597         (gcov_position, gcov_rewrite, gcov_is_eof): Adjust.
8598         * gcov-io.c (gcov_open): Set mode, do not read anything.
8599         (gcov_close): Write final block.
8600          (gcov_write_block, gcov_allocate): New.
8601         (gcov_write_bytes): Make static. Write or allocate buffer.
8602         (gcov_write_unsigned, gcov_write_counter): Buffer can never be
8603         null.
8604         (gcov_write_string): Adjust.
8605         (gcov_write_tag)
8606         (gcov_write_length): Adjust. Flush the block.
8607         (gcov_write_tag_length): Buffer can never be null.
8608         (gcov_read_bytes): Make static. Read in block.
8609         (gcov_sync): Moved here. Adjust.
8610         (gcov_seek): Moved here. Adjust.
8611         * coverage.c (read_counts_file): Adjust.
8612         * gcov-dump.c (print_prefix): Add position parameter.
8613         (flag_dump_positions): New flag.
8614         (options, main, print_usage): Add it.
8615         (dump_file, tag_blocks, tag_arcs, tag_lines, tag_counters,
8616         tag_summary): Adjust.
8617         * gcov.c (read_graph_file, read_count_file): Adjust.
8618         * libgcov.c (gcov_exit): Adjust.
8619
8620         * Makefile.in (LIBGCC_DEPS): Use $(srcdir) on gcov files
8621         (libgcov.a): Depend on libgcc.a.
8622         (gcov.o, gcov-dump.o): Add gcov-io.c.
8623         * mklibgcc.in (libgcov_c_dep): Use $(srcdir).
8624
8625         * loop.c (check_dbra_loop): Factor common test.
8626
8627 2003-05-14  Ben Elliston  <bje@wasabisystems.com>
8628
8629         * doc/md.texi (Automaton pipeline description): Grammar fixes.
8630
8631 2003-05-14  Richard Sandiford  <rsandifo@redhat.com>
8632
8633         * target-def.h (TARGET_MACHINE_DEPENDENT_REORG): Define.
8634         (TARGET_INITIALIZER): Include it.
8635         * target.h (struct gcc_target): Add machine_dependent_reorg field.
8636         * toplev.c (rest_of_compilation): Use targetm.machine_dependent_reorg.
8637         * system.h: Poison MACHINE_DEPENDENT_REORG.
8638
8639         * config/alpha/alpha-protos.h (alpha_reorg): Remove declaration.
8640         * config/alpha/alpha.h (MACHINE_DEPENDENT_REORG): Remove.
8641         * config/alpha/alpha.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
8642         (alpha_handle_trap_shadows): Remove "first insn" parameter.
8643         (alpha_align_insns): Likewise.
8644         (alpha_reorg): Likewise.  Make static.  Update calls to above
8645         functions.
8646
8647         * config/arm/arm-protos.h (arm_reorg): Remove declaration.
8648         * config/arm/arm.h (MACHINE_DEPENDENT_REORG): Remove.
8649         * config/arm/arm.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
8650         (arm_reorg): Remove parameter.  Make static.
8651
8652         * config/avr/avr-protos.h (machine_dependent_reorg): Remove.
8653         * config/avr/avr.h (MACHINE_DEPENDENT_REORG): Remove.
8654         * config/avr/avr.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
8655         (avr_reorg): Renamed from machine_dependent_reorg.  Make static.
8656         Remove parameter.
8657
8658         * config/c4x/c4x-protos.h (c4x_process_after_reload): Remove.
8659         * config/c4x/c4x.h (MACHINE_DEPENDENT_REORG): Remove.
8660         * config/c4x/c4x.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
8661         (c4x_reorg): Renamed from c4x_process_after_reload.  Make static.
8662         Remove parameter.
8663
8664         * config/d30v/d30v-protos.h (d30v_machine_dependent_reorg): Remove.
8665         * config/d30v/d30v.h (MACHINE_DEPENDENT_REORG): Remove.
8666         * config/d30v/d30v.c (d30v_machine_dependent_reorg): Remove.
8667
8668         * config/frv/frv-protos.h (frv_machine_dependent_reorg): Remove.
8669         * config/frv/frv.c: Remove orphaned comment.
8670
8671         * config/i386/i386-protos.h (x86_machine_dependent_reorg): Remove.
8672         * config/i386/i386.h (MACHINE_DEPENDENT_REORG): Remove.
8673         * config/i386/i386.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
8674         (ix86_reorg): Renamed from x86_machine_dependent_reorg.  Make static.
8675         Remove parameter.
8676
8677         * config/ia64/ia64-protos.h (ia64_reorg): Remove declaration.
8678         * config/ia64/ia64.h (MACHINE_DEPENDENT_REORG): Remove.
8679         * config/ia64/ia64.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
8680         (emit_insn_group_barriers): Remove "first insn" parameter.
8681         (emit_all_insn_group_barriers): Likewise.
8682         (ia64_reorg): Likewise.  Make static.  Update calls to above functions.
8683         (ia64_output_mi_thunk): Update call to emit_all_insn_group_barriers.
8684
8685         * config/ip2k/ip2k-protos.h (machine_dependent_reorg): Remove.
8686         * config/ip2k/ip2k.h (MACHINE_DEPENDENT_REORG): Remove.
8687         * config/ip2k/ip2k.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
8688         (ip2k_reorg): Renamed from machine_dependent_reorg.  Make static.
8689         Remove parameter.
8690
8691         * config/m68hc11/m68hc11-protos.h (m68hc11_reorg): Remove declaration.
8692         * config/m68hc11/m68hc11.h (MACHINE_DEPENDENT_REORG): Remove.
8693         * config/m68hc11/m68hc11.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
8694         (m68hc11_reorg): Make static.  Remove parameter.
8695
8696         * config/mcore/mcore-protos.h (mcore_dependent_reorg): Remove.
8697         * config/mcore/mcore.h (MACHINE_DEPENDENT_REORG): Remove.
8698         * config/mcore/mcore.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
8699         (conditionalize_optimization): Remove parameter.
8700         (mcore_reorg): Renamed from mcore_dependent_reorg.  Remove parameter.
8701         Make static.  Update call to conditionalize_optimization.
8702
8703         * config/mips/mips-protos.h (machine_dependent_reorg): Remove.
8704         * config/mips/mips.h (MACHINE_DEPENDENT_REORG): Remove.
8705         * config/mips/mips.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
8706         (mips_reorg): Renamed from machine_dependent_reorg.  Remove parameter.
8707         Make static.
8708
8709         * config/mmix/mmix-protos.h (mmix_machine_dependent_reorg): Remove.
8710         * config/mmix/mmix.h (MACHINE_DEPENDENT_REORG): Remove.
8711         * config/mmix/mmix.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
8712         (mmix_reorg): Renamed from mmix_machine_dependent_reorg.  Make static.
8713         Remove parameter.
8714
8715         * config/pa/pa-protos.h (pa_reorg): Remove declaration.
8716         * config/pa/pa.h (MACHINE_DEPENDENT_REORG): Remove.
8717         * config/pa/pa.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
8718         (pa_combine_instructions): Remove "first insn" parameter.
8719         (remove_useless_addtr_insns): Likewise.
8720         (pa_reorg): Likewise.  Make static.  Update calls to above functions.
8721
8722         * config/rs6000/rs6000.h (MACHINE_DEPENDENT_REORG): Remove
8723         commented-out definition.
8724
8725         * config/s390/s390-protos.h (s390_machine_dependent_reorg): Remove.
8726         * config/s390/s390.h (MACHINE_DEPENDENT_REORG): Remove.
8727         * config/s390/s390.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
8728         (s390_reorg): Renamed from s390_machine_dependent_reorg.  Make static.
8729         Remove parameter.
8730
8731         * config/sh/sh-protos.h (machine_dependent_reorg): Remove.
8732         * config/sh/sh.h (MACHINE_DEPENDENT_REORG): Remove.
8733         * config/sh/sh.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
8734         (sh_reorg): Renamed from machine_dependent_reorg.  Make static.
8735         Remove parameter.
8736         (sh_output_mi_thunk): Call sh_reorg directly.
8737         * config/sh/sh.md: Update comment.
8738
8739         * config/stormy16/stormy16.h (MACHINE_DEPENDENT_REORG): Remove
8740         commented-out definition.
8741
8742         * config/v850/v850-protos.h (v850_reorg): Remove declaration.
8743         * config/v850/v850.h (MACHINE_DEPENDENT_REORG): Remove.
8744         * config/v850/v850.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
8745         (v850_reorg): Make static.  Remove parameter.
8746
8747         * config/xtensa/xtensa-protos.h (xtensa_reorg): Remove declaration.
8748         * config/xtensa/xtensa.h (MACHINE_DEPENDENT_REORG): Remove.
8749         * config/xtensa/xtensa.c (TARGET_MACHINE_DEPENDENT_REORG): Define.
8750         (xtensa_reorg): Make static.  Remove parameter.
8751
8752         * doc/tm.texi (MACHINE_DEPENDENT_REORG): Remove.
8753         (TARGET_MACHINE_DEPENDENT_REORG): Document.
8754
8755 2003-05-13  Richard Henderson  <rth@redhat.com>
8756
8757         * c-decl.c (duplicate_decls): Re-invoke make_decl_rtl if
8758         the old decl had instantiated DECL_RTL.
8759
8760 2003-05-13  Mike Stump  <mrs@apple.com>
8761
8762         * doc/invoke.texi (Option Summary): Kill off documentation for -$.
8763
8764 2003-05-13  Janis Johnson  <janis187@us.ibm.com>
8765
8766         * config/rs6000/sysv4.h (OUTPUT_ASM_ALIGNED_LOCAL): Expect
8767         HOST_WIDE_INT argument.
8768
8769 2003-05-13  Jason Merrill  <jason@redhat.com>
8770
8771         * tree.h (STRIP_MAIN_TYPE_NOPS): New macro.
8772
8773         * tree.c (iterative_hash_expr): New fn.
8774
8775         * c-semantics.c (emit_local_var): Don't mess with temp slots if
8776         there's no initializer.
8777
8778 2003-05-13  Richard Sandiford  <rsandifo@redhat.com>
8779
8780         * final.c (final_scan_insn): Apply the effects of frame-related
8781         delay slot insns before emitting a delayed branch.
8782
8783 2003-05-13  Nick Clifton  <nickc@redhat.com>
8784
8785         * config/mcore/mcore.md (jump): Use emit_jump_insn.
8786
8787 2003-05-13  Ulrich Weigand  <uweigand@de.ibm.com>
8788
8789         * config/s390/s390.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY): Second
8790         parameter of ASM_OUTPUT_SKIP must have type unsigned HOST_WIDE_INT.
8791
8792 2003-05-12  DJ Delorie  <dj@redhat.com>
8793
8794         * expr.c (move_by_pieces): Honor the alignment of TO and FROM.
8795         (emit_push_insn): Don't use push when the source alignment is less
8796         than the stack's push rounding.
8797
8798 2003-05-13  Zack Weinberg  <zack@codesourcery.com>
8799
8800         * diagnostic.c (output_format): Add support for %m.
8801         (output_printf, output_verbatim, diagnostic_set_info,
8802         verbatim): Set err_no field of the text_info structure being
8803         initialized.
8804         (fatal_io_error): Delete function.
8805         * diagnostic.h (text_info): Add err_no field.
8806         * toplev.h (fatal_io_error): Delete prototype.
8807
8808         * c-opts.c, c-pch.c, dwarfout.c, ggc-common.c, ggc-page.c, graph.c
8809         * toplev.c, config/mips/mips.c, config/rs6000/host-darwin.c
8810         * objc/objc-act.c: Replace all calls to fatal_io_error with
8811         calls to fatal_error; add ": %m" to the end of all the affected
8812         error messages.
8813
8814 2003-05-13  Zack Weinberg  <zack@codesourcery.com>
8815
8816         * varasm.c (notice_rtl_inlining_of_deferred_constant): New function.
8817         * rtl.h: Prototype it.
8818         * integrate.c (copy_rtx_and_substitute <SYMBOL_REF>): Call it
8819         when appropriate.
8820
8821 2003-05-13  Ulrich Weigand  <uweigand@de.ibm.com>
8822
8823         * config/s390/s390.md ("*iordi3_oi"): Do not mark commutative.
8824         ("*iorsi3_oi"): Likewise.
8825
8826 2003-05-13  Richard Earnshaw  <rearnsha@arm.com>
8827
8828         * arm.md (compare_scc): Use shorter sequence for EQ case.
8829         (ior_scc_scc_cmp, and_scc_scc_cmp): New insn-and-split patterns.
8830         (and_scc_scc): Ensure split only applies when there is a dominance
8831         of the comparisons.
8832         (and_scc_scc_nodom): New insn-and-split pattern.
8833
8834 2003-05-13  Richard Sandiford  <rsandifo@redhat.com>
8835
8836         * unwind-dw2.c (uw_init_context_1): Don't pass &outer_cfa directly
8837         to _Unwind_SetGRPtr().
8838
8839 2003-05-13  Michael Eager <eager@mvista.com>
8840
8841         * Makefile.in: Initialize program_transform_cross_name from
8842         @program_transform_name@ instead of target_alias.
8843
8844 2003-05-12  Janis Johnson  <janis187@us.ibm.com>
8845             Alan Modra  <amodra@bigpond.net.au>
8846             Jakub Jelinek  <jakub@redhat.com>
8847
8848         * configure.in (HAVE_AS_TLS): Add powerpc and powerpc64 tests.
8849         * configure: Rebuild.
8850         * config/rs6000/rs6000-protos.h: Update.
8851         * config/rs6000/rs6000.c (rs6000_tls_size): New.
8852         (rs6000_tls_size_string): New.
8853         (rs6000_parse_tls_size_option): New.
8854         (rs6000_legitimize_tls_address): New.
8855         (rs6000_tls_get_addr): New.
8856         (rs6000_got_sym): New.
8857         (rs6000_tls_symbol_ref): New.
8858         (rs6000_tls_symbol_ref_1): New.
8859         (rs6000_get_some_local_dynamic_name): New.
8860         (rs6000_get_some_local_dynamic_name_1): New.
8861         (TARGET_HAVE_TLS): New.
8862         (TARGET_CANNOT_FORCE_CONST_MEM): New.
8863         (rs6000_override_options): Handle -mtls-size option.
8864         (constant_pool_expr_1): Handle TLS symbols.
8865         (rs6000_legitimize_address): Handle TLS symbols.
8866         (rs6000_tls_referenced_p): New.
8867         (rs6000_legitimate_address): Handle TLS symbols.
8868         (rs6000_emit_move): Handle TLS symbols.
8869         (print_operand): Handle TLS symbols.
8870         (uses_TOC): Handle TLS symbols.
8871         (rs6000_emit_prologue): Use symbol for unspec constant.
8872         * config/rs6000/rs6000.h (HAVE_AS_TLS): New.
8873         (some_ld_name): New.
8874         (LEGITIMATE_CONSTANT_P): Handle TLS symbols.
8875         (PRINT_OPERAND_PUNCT_VALID_P): Handle TLS symbols.
8876         (PREDICATE_CODES): Add rs6000_tls_symbol_ref.
8877         * config/rs6000/rs6000.md (load_toc_v4_PIC_1, load_toc_v4_PIC_1b):
8878         Support TLS.
8879         (tls_gd_32, tls_gd_64, tls_ld_32, tls_ld_64, tls_dtprel_32,
8880         tls_dtprel_64, tls_dtprel_ha_32, tls_dtprel_ha_64, tls_dtprel_lo_32,
8881         tls_dtprel_lo_64, tls_got_dtprel_32, tls_got_dtprel_64, tls_tprel_32,
8882         tls_tprel_64, tls_tprel_ha_32, tls_tprel_ha_64, tls_tprel_lo_32,
8883         tls_tprel_lo_64, tls_got_tprel_32, tls_got_tprel_64, tls_tls_32,
8884         tls_tls_64): New.
8885         * config/rs6000/sysv4.h (SUBTARGET_OPTIONS): Add tls_size.
8886
8887 2003-05-12  Neil Booth  <neil@cat.daikokuya.co.uk>
8888
8889         * Makefile.in (stage2_build, stage3_build, stage4_build):
8890         Set BUILD_CC to the same as CC.
8891
8892 2003-05-12  Neil Booth  <neil@daikokuya.co.uk>
8893
8894         * alloc-pool.c (last_id): Put in ENABLE_CHECKING guards.
8895
8896 2003-05-12  Andreas Schwab  <schwab@suse.de>
8897
8898         * config/ia64/ia64.c (ia64_function_ok_for_sibcall): Mark 'exp'
8899         as unused.
8900         (bundling): Initialize 'pos'.
8901         (ia64_expand_builtin): Initialize 'rmode'.
8902
8903 2003-05-12  David Edelsohn  <edelsohn@gnu.org>
8904
8905         * config/rs6000/xcoff.h (ASM_OUTPUT_SKIP): Accept HOST_WIDE_INT.
8906         (ASM_OUTPUT_ALIGNED_COMMON): Same.
8907         (ASM_OUTPUT_LOCAL): Same.
8908
8909 Mon May 12 21:53:29 CEST 2003  Jan Hubicka  <jh@suse.cz>
8910
8911         * varasm.c (output_constant):  Fix underflow.
8912
8913 2003-05-12  Mark Mitchell  <mark@codesourcery.com>
8914
8915         PR other/10745
8916         * configure.in: Correct detection of GNU ld version number.
8917         * configure: Regenerated.
8918
8919 2003-05-12  Zack Weinberg  <zack@codesourcery.com>
8920
8921         * diagnostic.c (diagnostic_for_decl): Take a
8922         diagnostic_context argument.  Restructure to be consistent
8923         with diagnostic_report_diagnostic.
8924         (diagnostic_count_diagnostic): Now static.  Take a
8925         diagnostic_info argument, not just a diagnostic_t.  Some code
8926         moved here from internal_error.  Move a case label for
8927         clarity.
8928         (diagnostic_action_after_output): New function.  Code moved
8929         here from internal_error and fatal_error.
8930         (bug_report_request): New #define so that this text appears in
8931         only one place.
8932         (diagnostic_report_diagnostic): Update to match changes to
8933         diagnostic_count_diagnostic.  Call diagnostic_action_after_output.
8934         (diagnostic_set_info): Call gettext here.
8935
8936         (pedwarn): Update comment.  Don't call gettext here.
8937         (sorry): Use report_diagnostic.  Don't call gettext here.
8938         (fatal_error): Remove final fnotice and exit, but call
8939         real_abort to prevent warnings about noreturn function returning.
8940         (internal_error): Likewise.  Don't do ICE suppression here nor
8941         call context->internal_error.
8942         (warning_with_decl): Suppress for decls in system headers.
8943         Adjust call to diagnostic_for_decl.
8944         (pedwarn_with_decl): Likewise.
8945         (error_with_decl): Adjust call to diagnostic_for_decl.
8946         (error_recursion): Use bug_report_request.
8947
8948         * diagnostic.h: Remove prototype of diagnostic_count_diagnostic.
8949         * objc/objc-act.c (error_with_ivar, warn_with_method): Don't call
8950         diagnostic_count_diagnostic.
8951
8952 2003-05-12  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
8953
8954         * pa64-hpux.h (ASM_OUTPUT_ALIGNED_COMMON): Correct last patch.
8955
8956 Mon May 12 15:57:54 CEST 2003  Jan Hubicka  <jh@suse.cz>
8957
8958         * rs6000/darwin.h (ASM_OUTPUT_COMMON): Accept HOST_WIDE_INT
8959         * mips/elf.h (ASM_OUTPUT_ALIGNED_BSS): Fix warning.
8960         * mips/mips.h (ASM_OUTPUT_SKIP):  Fix typo in the previous patch.
8961
8962 2003-05-12  Roger Sayle  <roger@eyesopen.com>
8963
8964         * doc/rtl.texi: Document zero_extract as a valid destination
8965         of a set insn.
8966
8967 2003-05-12  Richard Earnshaw  <rearnsha@arm.com>
8968
8969         * arm/lib1funcs.asm (LSYM): Define -- on ELF prefix a local symbol with
8970         '.'.  Change all local symbol definitions and references to use LSYM.
8971
8972 Mon May 12 11:32:53 CEST 2003  Jan Hubicka  <jh@suse.cz>
8973
8974         * expr.h (assemble_static_space): Update prototype.
8975         * output.h (assemble_zeros, output_constant): Likewise.
8976         * elfos.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_COMMON): Make it 64bit clean
8977         * alpha.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_COMMON, ASK_OUTPUT_LOCAL): Make
8978         it 64bit clean.
8979         * elf.h (ASM_OTUPUT_SKIP): Likewise.
8980         * unicosmk.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_COMM): Likewise.
8981         * arm.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL, ASM_OUTPUT_SKIP):
8982         Expect HOST_WIDE_INT operand.
8983         * aout.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL, ASM_OUTPUT_SKIP):
8984         Expect HOST_WIDE_INT operand.
8985         * unknown-elf.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL, ASM_OUTPUT_SKIP):
8986         Expect HOST_WIDE_INT operand.
8987         * avr.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_SKIP): Expect
8988         HOST_WIDE_INT operand.
8989         * c4x.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL, ASM_OUTPUT_SKIP,
8990         ASM_OUTPUT_BSS): Expect HOST_WIDE_INT operand.
8991         * aout.h (ASM_OTUPUT_SKIP): Likewise.
8992         * cris.h (ASM_OTUPUT_SKIP, ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL): Likewise.
8993         * darwin.h (ASM_OTUPUT_SKIP, ASM_OUTPUT_COMMON): Likewise.
8994         * dsp16xx.h (ASM_OTUPUT_SKIP): Likewise.
8995         * frv.h (ASM_OTUPUT_SKIP): Likewise.
8996         * h8300.h (ASM_OTUPUT_SKIP, ASM_OUTPUT_LOCAL): Likewise.
8997         * 370.h (ASM_OTUPUT_SKIP, ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL):
8998         Make it 64bit
8999         clean.
9000         * att.h (ASM_OUTPUT_SKIP): Expect HOST_WIDE_INT operand.
9001         * bsd.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL):
9002         Make it 64bit clean.
9003         * darwin.h (ASM_OUTPUT_SKIP): Make it 64bit clean..
9004         * sco5.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL): Expect
9005         HOST_WIDE_INT operand
9006         * svr3gas.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL):
9007         Expect HOST_WIDE_INT operand
9008         * sysv3.h (ASM_OUTPUT_SKIP): Expect HOST_WIDE_INT operand
9009         * i960.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_COMMON,
9010         ASM_OUTPUT_ALIGNED_LOCAL): Expect HOST_WIDE_INT operand
9011         * ip2k.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL, ASM_OUTPUT_SKIP):
9012         Likewise.
9013         * m32r.h (ASM_OUTPUT_COMMON): Likewise.
9014         * 3b1.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL, ASM_OUTPUT_SKIP):
9015         Likewise.
9016         * amix.h (ASM_OUTPUT_ALIGNED_LOCAL): Likewise.
9017         * crds.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_ALIGNED_LOCAL): Likewise.
9018         * hp320.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL,
9019         ASM_OUTPUT_SKIP): Likewise.
9020         * m68k.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL, ASM_OUTPUT_SKIP):
9021         Likewise.
9022         * m68kelf.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL,
9023         ASM_OUTPUT_SKIP): Likewise.
9024         * m68kv4.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL,
9025         ASM_OUTPUT_SKIP): Likewise.
9026         * mot3300.h (ASM_OUTPUT_LOCAL, ASM_OUTPUT_SKIP): Likewise.
9027         * netbsd-elf.h (ASM_OUTPUT_LOCAL, ASM_OUTPUT_COMMON,
9028         ASM_OUTPUT_SKIP): Likewise.
9029         * sgs.h (ASM_OUTPUT_SKIP): Likewise.
9030         * tower-as.h (ASM_OUTPUT_LOCAL, ASM_OUTPUT_COMMON,
9031         ASM_OUTPUT_SKIP): Likewise.
9032         * m88k.h (ASM_OUTPUT_LOCAL, ASM_OUTPUT_COMMON, ASM_OUTPUT_SKIP):
9033         Likewise.
9034         * mcore.h (ASM_OUTPUT_LOCAL, ASM_OUTPUT_BSS, ASM_OUTPUT_SKIP): Likewise.
9035         * iris.h (ASM_OUTPUT_LOCAL): Likewise.
9036         * mips.h (ASM_OUTPUT_LOCAL, ASM_OUTPUT_SKIP): Likewise.
9037         * ns32k.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL,
9038         ASM_OUTPUT_SKIP): Make it 64bit clean.
9039         * pa-pro-end.h (ASM_OUTPUT_LOCAL, ASM_OUTPUT_ALIGNED_LOCAL):
9040         Make it 64bit clean.
9041         * pa.h (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL, ASM_OUTPUT_ALIGNED_LOCAL,
9042         ASM_OUTPUT_SKIP): Make it 64bit clean.
9043         * hpux.h (ASM_OUTPUT_LOCAL, ASM_OUTPUT_ALIGNED_LOCAL): Make it
9044         64bit clean.
9045         * romp.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_LOCAL, ASM_OUTPUT_COMMON): Expect
9046         HOST_WIDE_INT argument
9047         * s390.h (ASM_OUTPUT_SKIP): Expect HOST_WIDE_INT argument.
9048         * sh.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_LOCAL, ASM_OUTPUT_COMMON): Expect
9049         HOST_WIDE_INT argument
9050         * sol2.h (ASM_OUTPUT_SKIP): HOST_WIDE_INT argument
9051         * sparc.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_COMMON): HOST_WIDE_INT argument
9052         * svr3.h (ASM_OUTPUT_SKIP): HOST_WIDE_INT argument
9053         * vax.h (ASM_OUTPUT_SKIP, ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL):
9054         HOST_WIDE_INT argument
9055         * vaxv.h (ASM_OUTPUT_LOCAL): HOST_WIDE_INT argument
9056         * xtensa.h (ASM_OUTPUT_LOCAL): HOST_WIDE_INT argument
9057         * varasm.c (asm_output_bss, asm_output_aligned_bss,
9058         asm_emit_uninitialized, assemble_zeros, assemble_static_space):
9059         HOST_WIDE_INT argument
9060
9061 2003-05-10  Steven Bosscher  <steven@gcc.gnu.org>
9062
9063         * cgraphunit.c (cgraph_create_edges): Drop walk_tree in
9064         favor of walk_tree_without_duplicates.  Add comments.
9065
9066 2003-05-12  Josef Zlomek  <zlomekj@suse.cz>
9067
9068         * alloc-pool.h (ALLOC_POOL_ID_TYPE): New type.
9069         (struct alloc_pool_def): New element 'id'.
9070         * alloc-pool.c (fancy_abort): Extern function prototype.
9071         (abort): Macro which uses fancy_abort.
9072         (struct allocation_object_def): New structure.
9073         (ALLOCATION_OBJECT_PTR_FROM_USER_PTR): New macro.
9074         (USER_PTR_FROM_ALLOCATION_OBJECT_PTR): New macro.
9075         (last_id): New variable.
9076         (create_alloc_pool): Add the offset of u.data to size of element,
9077         increase and use last_id.
9078         (free_alloc_pool): Do the checking only when ENABLE_CHECKING.
9079         (pool_alloc): Likewise. Set ID for elements.
9080         (pool_free): Check whether the PTR was allocated from POOL.
9081
9082 2003-05-11  Richard Henderson  <rth@redhat.com>
9083
9084         PR c/10675
9085         * c-decl.c: Include hashtab.h.
9086         (detect_field_duplicates): New.
9087         (finish_struct): Use it.
9088         * Makefile.in (c-decl.o): Update.
9089         * c-parse.in (structsp_attr): Nreverse component_decl_list results.
9090         (component_decl_list, component_decl_list2,
9091         components, components_notype): Build list in reverse order.
9092         (enumlist): Clarify docs.  Use TREE_CHAIN not chainon.
9093
9094         * tree.c (chainon): Special case op2 null as well.
9095         Reorg for clarity.
9096
9097 2003-05-11  Roger Sayle  <roger@eyesopen.com>
9098
9099         * config/i386/i386.md (logsf2, logdf2, logxf2, logdf2): New patterns
9100         to implement log, logf and logl built-ins as inline x87 intrinsics.
9101         (UNSPEC_FYL2X): New unspec to represent x87's "fyl2x" instruction.
9102         (*fyl2x_sfxf3, *fyl2x_dfxf3, *fyl2x_xf3, *fyl2x_tfxf3): New insn
9103         patterns for x87's "fyl2x" instruction, used by log?f2 patterns.
9104
9105         * reg-stack.c (subst_stack_regs_pat): Handle UNSPEC_FYL2X like
9106         UNSPEC_FPATAN, i.e. replaces two stack operands with single result.
9107
9108 2003-05-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9109
9110         * Makefile.in (out_object_file): Don't set -Wno-error for ${cpu}.o.
9111
9112         * sparc.c (print_operand): Fix uninitialized warning.
9113
9114 2003-05-12  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
9115
9116         * cfgloopanal.c (num_loop_insns, average_num_loop_insns): Count only
9117         real insns.
9118         * loop-unroll.c (unroll_loop_runtime_iterations): Remove superfluous
9119         condition.
9120
9121 2003-05-11  Neil Booth  <neil@cat.daikokuya.co.uk>
9122
9123         * doc/cpp.texi: Fix typos.
9124
9125 2003-05-11  Ulrich Weigand  <uweigand@de.ibm.com>
9126
9127         * config/s390/s390.c (s390_function_arg_float): New function.
9128         (s390_function_arg_pass_by_reference): Use it.
9129         (s390_function_arg_advance): Likewise.
9130         (s390_function_arg): Likewise.
9131         (s390_va_arg): Likewise
9132
9133 2003-05-11  Nathan Sidwell  <nathan@codesourcery.com>
9134
9135         * coverage.h (coverage_counter_alloc): New function.
9136         * function.h (struct function): Remove arc_profile flag.
9137         * coverage.c (fn_ident): Remove.
9138         (fn_b_ctrs, no_coverage): New.
9139         (get_coverage_counts): Use current_function_funcdef_no.
9140         (coverage_counter_alloc): New.
9141         (coverage_counter_ref): Adjust.
9142         (coverage_begin_output): Check no_coverage. Use
9143         current_function_funcdef_no.
9144         (coverage_end_function): Likewise.
9145         (create_coverage): Set no_coverage. Set DECL_UNINLINEABLE rather
9146         than clearing flag_inline_functions. Do not clear arc_profile
9147         flag.
9148         * function.c (prepare_function_start): Do not set arc_profile
9149         flag.
9150         * profile.c (instrument_edges): Return number of instrumented
9151         edges. Use a for loop.
9152         (branch_prob): Call coverage_counter_alloc. Make BB_TO_GCOV_INDEX
9153         local to here and simplify. Use profile_arc_flag not arc_profile
9154         flag.
9155         (find_spanning_tree): Reformat.
9156         * toplev.c (rest_of_compilation): Use profile_arc_flags and
9157         flag_test_coverage rather than arc_profile flag.
9158
9159 2003-05-11  Gabriel Dos Reis <gdr@integrable-solutions.net>
9160
9161         * doc/invoke.texi (Wctor-dtor-privacy): Update documentation.
9162
9163 2003-05-11  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9164
9165         * varasm.c (copy_constant, case VIEW_CONVERT_EXPR): New case.
9166
9167 2003-05-11  Bruno Haible  <bruno@clisp.org>
9168
9169         * cppfiles.c (find_or_create_entry): Preserve errno.
9170
9171 2003-05-11  Neil Booth  <neil@cat.daikokuya.co.uk>
9172
9173         * c-cppbuiltin.c (c_cpp_builtins): Move __STDC_HOSTED__ into
9174         cpplib as it's a Standard Predefined Macro.
9175         * c-opts.c (finish_options): Pass flag_hosted to cpp_init_builtins.
9176         * cppinit.c (_cpp_init_builtins): Take HOSTED.  Define
9177         __STDC_HOSTED__ appropriately.
9178         * cpplib.h (_cpp_init_builtins): Update.
9179         * fix-header.c (read_scan_file): Update.
9180         * doc/cpp.texi, doc/cppopts.texi: Update documentation.
9181
9182 2003-05-11  Gabriel Dos Reis  <gdr@integrable-solutions.net>
9183
9184         PR C++/689
9185         PR C++/9257
9186         * c-opts.c (c_common_decode_option): Don't set
9187         warn_ctor_dtor_privacy wen -Wall.
9188         * c-common.c (warn_ctor_dtor_privacy): Don't turn on by default.
9189
9190 2003-05-10  Alexandre Oliva  <aoliva@redhat.com>
9191
9192         * reload1.c (reload_cse_move2add): Revert part of my 2003-05-09's
9193         patch.
9194
9195 2003-05-10  Zack Weinberg  <zack@codesourcery.com>
9196
9197         * diagnostic.c: Reorder functions for clarity, putting all the
9198         functions in the "error" family next to each other, and
9199         likewise all the functions in the "error_with_decl" family.
9200         Some other routines were moved too.  Add comments.
9201         (vbuild_message_string): Fold into sole caller.
9202
9203
9204 2003-05-11  Ulrich Weigand  <uweigand@de.ibm.com>
9205
9206         * except.c (EH_RETURN_STACKADJ_RTX): Do not define.
9207         (EH_RETURN_HANDLER_RTX): Likewise.
9208         (expand_builtin_eh_return): Do not copy stack adjustment
9209         if EH_RETURN_STACKADJ_RTX is not defined.
9210         (expand_eh_return): Likewise.  Also, do not pass stack
9211         adjustment as argument to the eh_return pattern.
9212         * except.h (MUST_USE_SJLJ_EXCEPTIONS): Do not define just
9213         because EH_RETURN_STACKADJ_RTX is not defined.
9214         * unwind-dw.c (uw_update_context_1): If EH_RETURN_STACKADJ_RTX
9215         is not defined, treat stack pointer like a regular register.
9216         (uw_init_context_1): Set up fake initial stack pointer register.
9217         (uw_install_context_1): Do not compute stack adjustment if
9218         EH_RETURN_STACKADJ_RTX is not defined.
9219
9220         * config/i386/i386.md ("eh_return"): Remove first argument.
9221         * config/mips/mips.md ("eh_return"): Likewise.
9222         * config/rs6000/rs6000.md ("eh_return"): Likewise.
9223         * config/sh/sh.md ("eh_return"): Likewise.
9224
9225         * config/s390/s390.h (EH_RETURN_STACKADJ_RTX): Remove.
9226
9227 2003-05-10  Alexander Aganichev  <aaganichev@yandex.ru>
9228
9229         * config/i386/i386.h (MODES_TIEABLE_P): Fix typo.
9230
9231 2003-05-10  Nathan Sidwell  <nathan@codesourcery.com>
9232
9233         * defaults.h (GCOV_TYPE_SIZE): Remove.
9234         * gcov-io.h (gcov_type): Set to specific mode int on target.
9235         (gcov_unsigned_t, gcov_position_t): New.
9236         (GCOV_TYPE_NODE): New.
9237         (GCOV_TAG_SUMMARY_LENGTH): Adjust.
9238         (GCOV_COUNTERS_SUMMABLE): New.
9239         (gcov_ctr_summary, gcov_sumary, gcov_fn_info, gcov_merge_fn,
9240         gcov_ctr_info, gcov_info): Adjust types.
9241         (gcov_var): Adjust types.
9242         (gcov_write_unsigned, gcov_write_tag,
9243         gcov_write_length, gcov_write_tag_length, gcov_write_summary,
9244         gcov_read_unsigned, gcov_read_summary): Adjust gcov types.
9245         (gcov_position, gcov_sync, gcov_seek): Adjust gcov types.
9246         * gcov-io.c (gcov_write_unsigned, gcov_write_tag,
9247         gcov_write_length, gcov_write_tag_length, gcov_write_summary,
9248         gcov_read_unsigned, gcov_read_summary): Adjust gcov types.
9249         * libgcov.c (gcov_crc32, gcov_version_mismatch, gcov_exit,
9250         __gcov_init, __gcov_merge_add): Adjust gcov types.
9251         * coverage.c (ctr_merge_functions): Constify.
9252         (ctr_names): New.
9253         (read_counts_file): Adjust gcov types. Only summarize & merge
9254         summable counters.
9255         (coverage_counter_ref): Use GCOV_TYPE_NODE.
9256         (build_fn_info_type, build_fn_info_value, build_ctr_info_type,
9257         build_ctr_info_value, build_gcov_info): Adjust types.
9258         * profile.c (branch_prob): Adjust gcov types.
9259         * gcov_dump (dump_file): Adjust gcov types.
9260
9261 2003-05-10  Richard Earnshaw  <rearnsha@arm.com>
9262
9263         * arm.md (DOM_CC_X_AND_Y, DOM_CC_NX_OR_Y, DOM_CC_X_OR_Y): New
9264         constants.
9265         (ior_scc_scc, and_scc_scc): New insn_and_split patterns.
9266         * arm.c (arm_select_dominance_cc_mode): Renamed from
9267         select_dominance_cc_mode, no-longer static.  Use DOM_CC... constants.
9268         Callers updated.
9269         * arm-protos.h (arm_select_dominance_cc_mode): Add prototype.
9270
9271 2003-05-09  Roger Sayle  <roger@eyesopen.com>
9272
9273         * config/alpha/alpha.c (alpha_start_function): Declare frame_size
9274         as unsigned to avoid signed/unsigned comparison warnings.
9275
9276 2003-05-09  Bob Wilson  <bob.wilson@acm.org>
9277
9278         * config/xtensa/xtensa.c (xtensa_emit_loop_end): Only use "nop.n"
9279         instruction if the Xtensa density option is enabled.
9280
9281 2003-05-09  Matt Kraai <kraai@alumni.cmu.edu>
9282
9283        * mklibgcc.in: Remove extra quotes.
9284
9285 2003-05-09  Mark Mitchell  <mark@codesourcery.com>
9286
9287         * config/rs6000/rs6000.c (spe_init_builtins): Fix typo in creation
9288         of int_ftype_void.
9289
9290 2003-05-09  Alexandre Oliva  <aoliva@redhat.com>
9291
9292         * reload1.c (reload_cse_move2add): Don't turn an implicit
9293         truncation into a self-set in the narrow mode.
9294
9295 2003-05-09  Richard Earnshaw  <rearnsha@arm.com>
9296
9297         * arm.md (clzsi2): The CLZ instruction is predicable.
9298
9299 2003-05-09  Bob Wilson  <bob.wilson@acm.org>
9300
9301         * config/xtensa/xtensa.c: Formatting.
9302
9303 2003-05-09  Diego Novillo  <dnovillo@redhat.com>
9304
9305         * tree-dump.c (dequeue_and_dump): Use CONSTRUCTOR_ELTS,
9306         instead of TREE_OPERAND to access the operand of a
9307         CONSTRUCTOR node.
9308
9309 2003-05-09  Diego Novillo  <dnovillo@redhat.com>
9310
9311         * tree-dump.c (dequeue_and_dump): CONSTRUCTOR nodes contain only
9312         one operand.
9313
9314 2003-05-09  Gabriel Dos Reis <gdr@integrable-solutions.net>
9315
9316         * toplev.h (warning_with_file_and_line): Don't declare.
9317         (error_with_file_and_line): Likewise.
9318         * diagnostic.c (error_with_file_and_line): Remove.
9319         (warning_with_file_and_line): Likewise.
9320
9321 2003-05-09  Gabriel Dos Reis <gdr@integrable-solutions.net>
9322
9323         * c-parse.in (if_stmt_locus): New object.
9324         (if_prefix rule): Use it.  Don't use warning_with_file_and_line.
9325         (select_or_iter_stmt rule): Likewise.
9326         (if_stmt_file): Remove.
9327         (if_stmt_line): Likewise.
9328         * jump.c: include "diagnostic.h"
9329         (never_reached_warning): Don't use warning_with_file_and_line.
9330         * Makefile.in (jump.o): Add dependce on diagnostic.h
9331
9332 2003-05-09  Alan Modra  <amodra@bigpond.net.au>
9333
9334         * expr.c (move_block_from_reg): Remove "size" parm.  Localize vars.
9335         Move code handling pieces not larger than a word to..
9336         * function.c (assign_parms): ..here, but use change_address instead
9337         of adjust_address and operand_subword, and expand_binop instead of
9338         expand_shift.  Adjust calls to move_block_from_reg.
9339         * expr.h (move_block_from_reg): Update declaration.
9340         (copy_blkmode_from_reg): Formatting.
9341         * Makefile.in (function.o): Add $(OPTABS_H) to deps.
9342         * config/alpha/alpha.c (alpha_setup_incoming_varargs): Adjust
9343         move_block_from_reg calls.
9344         * config/arc/arc.c (arc_setup_incoming_varargs): Likewise.
9345         * config/i960/i960.c (i960_setup_incoming_varargs): Likewise.
9346         * config/m32r/m32r.c (m32r_setup_incoming_varargs): Likewise.
9347         * config/m88k/m88k.c (m88k_builtin_saveregsk): Likewise.
9348         * config/mips/mips.c (mips_setup_incoming_varargs): Likewise.
9349         * config/pa/pa.c (hppa_builtin_saveregs): Likewise.
9350         * config/romp/romp.h (SETUP_INCOMING_VARARGS): Likewise.
9351         * config/rs6000/rs6000.c (setup_incoming_varargs): Likewise.
9352         * config/sh/sh.c (sh_builtin_saveregs): Likewise.
9353
9354 2003-05-08  DJ Delorie  <dj@redhat.com>
9355
9356         * config/stormy16/stormy16.c (xstormy16_expand_builtin_va_arg): Fix
9357         to handle arguments for which MUST_PASS_IN_STACK is true (e.g.,
9358         variable-sized types).
9359         (xstormy16_function_arg): New.  Pass them that way too.
9360         * config/stormy16/stormy16-protos.h (xstormy16_function_arg): New.
9361         * config/stormy16/stormy16.h (FUNCTION_ARG): Call it.
9362
9363 2003-05-08  Aldy Hernandez  <aldyh@redhat.com>
9364
9365         * mklibgcc.in: Use mkinstalldirs when installing multilib
9366         directories.
9367
9368 2003-05-08  J"orn Rennecke <joern.rennecke@superh.com>
9369
9370         * sh.c (gen_block_redirect, split_branches): Use CODE_FOR_jump_compact
9371         instead of CODE_FOR_jump
9372
9373 2003-05-08  Gabriel Dos Reis <gdr@integrable-solutions.net>
9374
9375         * objc/objc-act.c (error_with_ivar): Don't use
9376         error_with_file_and_line.
9377         (warn_with_method): Don't use warning_with_file_and_line.
9378
9379 2003-05-08  Gabriel Dos Reis  <gdr@integrable-solutions.net>
9380
9381         * stmt.c (emit_locus): New macro.
9382         (emit_filename): Remove.
9383         (emit_lineno): Likewise.
9384         (struct stmt_status): Replace members x_emit_filename and
9385         x_emit_lineno with x_emit_locus.
9386         (set_file_and_line_for_stmt): Adjust.
9387         (expand_expr_stmt_value): Don't use warning_with_file_and_line.
9388         (warn_if_unused_value): Likewise.
9389         (check_seenlabel): Likewise.
9390
9391 2003-05-08  Gabriel Dos Reis  <gdr@integrable-solutions.net>
9392
9393         * c-decl.c (define_label): Tidy.  Don't use any of
9394         error_with_file_and_line or warning_with_file_and_file.
9395         (pending_xref_error): Likewise.
9396         (store_parm_decls): Likewise.
9397         (current_function_prototype_locus): New object.  Package from
9398         current_function_prototype_file and current_function_prototype_line.
9399         (start_function): Use it.
9400         (current_function_prototype_file): Remove.
9401         (current_function_prototype_line): Remove;
9402
9403 2003-05-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9404
9405         * builtins.c (readonly_data_expr): New function.
9406         (expand_builtin_memmove): Optimize any rodata source, not just
9407         strings.
9408
9409 2003-05-07  David Mosberger <davidm@hpl.hp.com>
9410
9411         * unwind-libunwind.c (_Unwind_FindEnclosingFunction): New.
9412
9413 2003-05-07  Richard Henderson  <rth@redhat.com>
9414
9415         * config/i386/i386.c (ix86_split_long_move): Fix base register
9416         mode for XFmode splits for TARGET_64BIT.
9417
9418 2003-05-07  Richard Henderson  <rth@redhat.com>
9419
9420         * sched-ebb.c (schedule_ebb): Supply the correct starting
9421         block number to save_line_notes.
9422
9423 2003-05-07  Richard Henderson  <rth@redhat.com>
9424
9425         * toplev.c (enum dump_file_index): Swap DFI_ce3, DFI_bbro.
9426         (dump_file): Likewise.
9427
9428 2003-05-07  David Mosberger <davidm@hpl.hp.com>
9429
9430         * config/ia64/crtbegin.asm (__do_jv_register_classes): Don't
9431         forget to preserve gp.
9432         * config/ia64/crtend.asm (__do_global_ctors_au): Ditto.
9433
9434         * config/ia64/crtbegin.asm (__do_jv_register_classes): Add missing
9435         .prologue directive.
9436         Use .skip instead of data8 for .bss section to make Intel
9437         Assembler (ias) happy.  Minor whitespace fixups.  Make "nop 0"
9438         explicit in the .mib bundles and remove the unnecessary stop
9439         bits.  Replace local labels with normal labels, to make ias
9440         happy.  Don't register __do_global_ctors_aux here, do it in
9441         crtend.asm instead.
9442
9443         * config/ia64/crtend.asm [HAVE_INIT_FINI_ARRAY]: Register
9444         __do_global_ctors_aux in .init_array section instead of
9445         declaring it as a hidden global.  Replace local labels with
9446         ordinary labels to make ias happy.
9447
9448 2003-05-07  Richard Henderson  <rth@redhat.com>
9449
9450         PR c++/10570
9451         * except.c: Revert 04-01 and 04-02 forced-unwind changes.
9452         * flags.h, toplev.c, doc/invoke.texi: Likewise.
9453
9454         * unwind-dw2.c (_Unwind_GetCFA): Fix ptr->int conversion warning.
9455         * unwind.inc (_Unwind_DeleteException): Check for null
9456         exception_cleanup.
9457
9458         * unwind-sjlj.c (_Unwind_SjLj_Resume_or_Rethrow): New.
9459         * unwind.inc (_Unwind_Resume_or_Rethrow): New.
9460         * unwind.h: Declare them.
9461         * libgcc-std.ver (GCC_3.3): Export them.
9462
9463 2003-05-07  Richard Henderson  <rth@redhat.com>
9464
9465         * unwind-dw2.c (_Unwind_GetCFA): Cast pointer to _Unwind_Ptr,
9466         not _Unwind_Word.
9467
9468 2003-05-07  Zack Weinberg  <zack@codesourcery.com>
9469
9470         * stmt.c (force_label_rtx): New function, based on logic
9471         formerly found in expand_expr.
9472         * expr.h: Prototype it.
9473         * expr.c (expand_expr <LABEL_DECL>): Use force_label_rtx if
9474         appropriate.
9475         * varasm.c (decode_addr_const <LABEL_DECL>): Use force_label_rtx.
9476
9477         * print-tree.c (debug_tree): Free the table after we're done
9478         with it.  Use putc.
9479
9480 2003-05-07  Aldy Hernandez  <aldyh@redhat.com>
9481
9482         * config/rs6000/spe.h: Reverse arguments for __ev_subfw.
9483         Unreverse arguments for __ev_subw.
9484
9485         * config/rs6000/spe.md (evsubfw): Reverse arguments of assembly.
9486
9487 2003-05-07  Nick Clifton  <nickc@redhat.com>
9488
9489         * config/stormy16/stormy-abi: Update to include
9490         R_XSTORMY16_FPTR16, R_XSTORMY16_LO16, R_XSTORMY16_HI16 and
9491         R_XSTORMY16_12 relocs.
9492
9493 2003-05-07  Alan Modra  <amodra@bigpond.net.au>
9494
9495         * function.c (assign_parms): Correct reversed reg_parm_stack_space
9496         test.  Add partial in-regs size to stack_args_size.
9497
9498 2003-05-07  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
9499
9500         * doc/invoke.texi (Warning Options): Mark -Wmissing-declarations
9501         as a C only option.
9502
9503 2003-05-07  Nathan Sidwell  <nathan@codesourcery.com>
9504
9505         * gcov-io.h (GCOV_LOCKED): New #define.
9506         (GCOV_LINKAGE): Make sure it is #defined.
9507         (gcov_write_string, gcov_write_tag, gcov_write_length,
9508         gcov_read_string, gcov_time): Poison in libgcov.
9509         (gcov_seek_end): Remove.
9510         (gcov_write_tag_length, gcov_sync, gcov_rewrite): New.
9511         (GCOV_TAG_FUNCTION_LENGTH, GCOV_TAG_BLOCKS_LENGTH,
9512         GCOV_TAG_ARCS_LENGTH, GCOV_TAG_COUNTER_LENGTH,
9513         GCOV_TAG_SUMMARY_LENGTH): New #defines.
9514         (gcov_write_tag, gcov_write_length): Not in libgcov.
9515         * gcov-io.c (gcov_open): Use GCOV_LOCKED.
9516         (gcov_write_tag, gcov_write_length): Not in libgcov.
9517         (gcov_write_tag_length): New.
9518         (gcov_write_summary): Use gcov_write_tag_length.
9519         * libgcov.c: Always #include gcov-io.h.
9520         (IN_LIBGCOV): -1 for inhibit_libc, +1 otherwise.
9521         (GCOV_LINKAGE): Define to nothing for L_gcov.
9522         (gcov_exit): Replace gcov_write_tag, gcov_write_length with
9523         gcov_write_tag_length. Use gcov_rewrite & gcov_seek.
9524         * gcov.c (read_graph_file): Replace gcov_seek by gcov_sync.
9525         (read_count_file): Likewise.
9526         * gcov-dump.c (dump_file): Likewise.
9527         * coverag.c (read_counts_file): Likewise.
9528
9529 2003-05-06  Mark Mitchell  <mark@codesourcery.com>
9530
9531         PR other/10658
9532         * gcc.c (process_command): Update copyright date.
9533
9534 2003-05-06  Phil Edwards  <pme@gcc.gnu.org>
9535
9536         * doc/install.texi (mips-*-*):  Add note about libstdc++.
9537
9538 2003-05-06  DJ Delorie  <dj@redhat.com>
9539
9540         * config/stormy16/stormy16.c (xstormy16_function_profiler): New.
9541         * config/stormy16/stormy16.h (FUNCTION_PROFILER): Call it.
9542         * config/stormy16/stormy16-protos.h (xstormy16_function_profiler): New.
9543
9544 2003-05-06    <neil@cat.daikokuya.co.uk>
9545
9546         * c-opts.c (COMMAND_LINE_OPTIONS): Reject -Wmissing-prototypes
9547         and -Wstrict-prototypes if C++.
9548
9549 2003-05-06  Aldy Hernandez  <aldyh@redhat.com>
9550
9551         * config/rs6000/linuxspe.h: New file.
9552
9553         * config.gcc: Add powerpc-*-linux-gnuspe* target.
9554
9555 2003-05-06  Richard Henderson  <rth@redhat.com>
9556
9557         * unwind-dw2.c (uw_update_context_1): Only set cfa as sp if
9558         previous frame didn't save sp.  Clear sp for next frame.
9559         (uw_install_context_1): Honor saved sp from frame.
9560
9561 2003-05-06  Richard Sandiford  <rsandifo@redhat.com>
9562
9563         * config/mips/mips-protos.h (mips_subword, mips_output_move): Declare.
9564         (mips_move_1word, mips_move_2words): Remove declaration.
9565         (mips_split_64bit_move_p, mips_split_64bit_move): Declare.
9566         (mips_restore_gp): Remove insn argument.
9567         * config/mips/mips.h (FP_REG_RTX_P): New macro.
9568         * config/mips/mips.c (volatile_buffer): Remove.
9569         (mips_subword, mips_split_64bit_move_p, mips_split_64bit_move): New.
9570         (mips_move_1word, mips_move_2words): Remove, replacing with...
9571         (mips_output_move): ...this new function.
9572         (mips_restore_gp): Remove insn argument.  Adjust for above changes.
9573         (print_operand): Make '%h' print %hi(op) for HIGH operands.  Remove
9574         handling of floating-point constants.  Handle zero CONST_DOUBLE
9575         arguments.
9576         (mips_annotate_frame_insn): Replace with...
9577         (mips_set_frame_expr): ...this, which just takes one argument.
9578         (mips_frame_set): Change the register argument to an rtx.
9579         (mips_emit_frame_related_store): Use mips_split_64bit_move_p to
9580         check whether moves should be split.  Use mips_split_64bit_move
9581         to split them.  Use mips_subword to generate the high and low
9582         parts of a paired FPR.  Adjust calls to frame_set and
9583         mips_set_frame_expr.
9584         (mips_expand_prologue): Simplify due to above changes.
9585         * config/mips/mips.md:  Add splitters for 64-bit moves on 32-bit
9586         targets, replacing xisting register-only versions.
9587         (UNSPEC_STORE_DF_HIGH): New unspec.
9588         (UNSPEC_LOAD_DF_LOW, UNSPEC_LOAD_DF_HIGH): New unspecs.
9589         (mulsi3_r4000, muldi3_internal2): Avoid use of mips_move_1word.
9590         (*paradoxical_extendhidi2): Remove.
9591         (movdi_internal, movdi_internal2): Use mips_output_move.
9592         (*movdi_internal2_mips16, movsi_internal, movcc): Likewise.
9593         (movsf_internal1, movsf_internal2): Likewise.
9594         (movdf_internal1a): Likewise.  Fix length and type of f <- G case.
9595         (movdf_internal1b): Use mips_output_move.  Fix type of f <- G case.
9596         (movdf_internal2): Use mips_output_move.  Fix lengths of FPR moves.
9597         Add m <- G alternative.
9598         (load_df_low, load_df_high, store_df_low): New patterns.
9599         (movhi_internal): Use @ template instead of calling a function.
9600         Remove unnecessary 'z' alternatives.
9601         (movqi_internal): Likewise.
9602         (exception_receiver): Update call to mips_restore_gp.
9603
9604 2003-05-06  Richard Sandiford  <rsandifo@redhat.com>
9605
9606         * config/mips/mips-protos.h (mips_simplify_dwarf_addr): Remove.
9607         (mips_delegitimize_address): Declare.
9608         * config/mips/mips.h (ASM_SIMPLIFY_DWARF_ADDR): Undefine.
9609         (FIND_BASE_TERM): Define.
9610         * config/mips/mips.c (TARGET_DELEGITIMIZE_ADDRESS): Defi~e.
9611         (mips_delegitimize_address): Renamed from mips_simplify_dwarf_addr.
9612         Handle small-data addresses.
9613
9614 2003-05-05  Roger Sayle  <roger@eyesopen.com>
9615
9616         * real.c (real_powi): New function to calculate the value of
9617         a real raised to an integer power, i.e. pow(x,n) for int n.
9618         (real_sqrt): Convert to using the faster do_add, do_multiply
9619         and do_divide API for consistency with the rest of real.c.
9620         * real.h (real_powi): Prototype here.
9621         * builtins.c (fold_builtin):  Avoid local variable mode when
9622         evaluating sqrt at compile time.  Attempt to evaluate pow at
9623         compile-time, by checking for an integral exponent.
9624
9625 2003-05-05  Richard Henderson  <rth@redhat.com>
9626
9627         * doc/extend.texi (Variable Attributes): Re-sort table and tidy.
9628
9629 2003-05-05  David O'Brien  <obrien@FreeBSD.org>
9630
9631         * config/rs6000/sysv4.h (CPP_OS_FREEBSD_SPEC): Add __ELF__ to mirror
9632         other FreeBSD ports.
9633         (LINK_OS_FREEBSD_SPEC): Mirror conventions on other FreeBSD ports.
9634         (_LITTLE_ENDIAN): Use __LITTLE_ENDIAN__ instead.
9635
9636 2003-05-05  Janis Johnson  <janis187@us.ibm.com>
9637
9638         * Makefile.in: (site.exp): Add ALT_CC_UNDER_TEST, add quotes around
9639         expanded variables.
9640         * doc/sourcebuild.texi (C tests): Describe gcc.dg/compat tests.
9641
9642 2003-05-05  Zack Weinberg  <zack@codesourcery.com>
9643
9644         * rtl.h (STRING_POOL_ADDRESS_P): Rename to DEFERRED_CONSTANT_P.
9645         * varasm.c (struct varasm_status): Add deferred_constants field.
9646         (n_deferred_strings): Delete variable.
9647         (n_deferred_constants): New #define.
9648         (struct constant_descriptor_tree): Kill next and label fields.
9649         (const_hash_table, MAX_HASH_TABLE): Delete.
9650         (const_desc_htab): New static variable.
9651         (const_hash): Rename const_desc_hash, and make it fit the
9652         hashtab.h interface.
9653         (const_desc_eq): New.
9654         (const_hash_1, compare_constant): Const-ify arguments.
9655         (build_constant_desc): Set DEFERRED_CONSTANT_P on all new
9656         SYMBOL_REFs.  Clarify comments.  Don't set desc->label.
9657         (output_constant_def): Do the lookup/insert using the
9658         hashtab.h interface.  Don't muck with n_deferred_constants or
9659         DEFERRED_CONSTANT_P here.
9660         Always call maybe_output_constant_def_contents.
9661         (maybe_output_constant_def_contents): Take a pointer to the
9662         descriptor, not the EXP and RTL separately.  Return
9663         immediately if this constant is not deferred.  Defer output of
9664         everything, except writable string constants.  Update
9665         n_deferred_constants here.
9666         (output_constant_def_contents): Now takes just one argument,
9667         an rtx.  Clear DEFERRED_CONSTANT_P here.
9668         (mark_constant_pool): Update for rename of n_deferred_strings.
9669         (mark_constant): Don't clear DEFERRED_CONSTANT_P here.
9670
9671         (init_varasm_status): Clear p->deferred_constants.
9672         (init_varasm_once): Call htab_create_ggc for const_desc_htab.
9673
9674 2003-05-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9675
9676         * builtins.c (expand_builtin_stpcpy): Only expand when the length
9677         of the source string can be evaluated at compile-time.
9678
9679 2003-05-05  Aldy Hernandez  <aldyh@redhat.com>
9680
9681         * testsuite/gcc.c-torture/compile/simd-6.c: New.
9682
9683         * c-typeck.c (digest_init): Handle arrays of vector constants.
9684
9685 2003-05-05  Jakub Jelinek  <jakub@redhat.com>
9686
9687         * builtins.c (expand_builtin_mempcpy): New function.
9688         (expand_builtin_stpcpy): Optimize stpcpy whose return value is
9689         ignored into strcpy no matter what arguments it has.
9690         (expand_builtin) <case BUILT_IN_MEMPCPY>: Call
9691         expand_builtin_mempcpy.
9692
9693 2003-05-05  Aldy Hernandez  <aldyh@redhat.com>
9694
9695         * testsuite/gcc.dg/20030505.c: New.
9696
9697         * c-typeck.c (convert_for_assignment): Opaque pointers can
9698         interconvert.
9699
9700         * config/rs6000/rs6000.c: New global opaque_p_V2SI_type_node.
9701         (rs6000_init_builtins): Initialize opaque_p_V2SI_type_node.
9702         (spe_init_builtins): Rename all pv2si_type_node to
9703         opaque_p_V2SI_type_node.
9704         Remove declaration of pv2si_type_node.
9705         (is_ev64_opaque_type): Accept opaque pointers.
9706
9707 2003-05-05  Geoffrey Keating  <geoffk@apple.com>
9708
9709         * config/rs6000/rs6000.c (validate_condition_mode): Use
9710         flag_finite_math_only.
9711         (rs6000_reverse_condition): Never return UNKNOWN; use
9712         flag_finite_math_only.
9713         (rs6000_generate_compare): Use flag_finite_math_only.
9714         (rs6000_emit_cmove): Handle UNLE.  Support UNEQ under -ffast-math.
9715         Use HONOR_* rather than flag_unsafe_math_optimizations.  Correct
9716         UNGE and GT cases.  Handle UNEQ and LTGT when ! HONOR_NANS.
9717
9718         * toplev.c (check_global_declarations): Suppress not-used warning
9719         for volatile variables.
9720
9721 2003-05-05  Olivier Hainque  <hainque@act-europe.fr>
9722
9723         * expr.c (expand_expr, case BIT_FIELD_REF): Refine the test forcing
9724         usage of bitfield instructions for mode1 != BLKmode, only ignoring
9725         SLOW_UNALIGNED_ACCESS if the field is not byte aligned.
9726         (store_field): Likewise.
9727
9728 2003-05-05  Aldy Hernandez  <aldyh@redhat.com>
9729
9730         * config/rs6000/rs6000.c (rs6000_expand_binop_builtin): Add
9731         evsubifw to builtins accepting 5-bit unsigned constants.
9732         (easy_vector_constant): Return if V1DImode.  Fix typo.
9733
9734 2003-05-05  Aldy Hernandez  <aldyh@redhat.com>
9735
9736         * config/rs6000/spe.h: Revert licensing change from last patch.
9737
9738 2003-05-05  DJ Delorie  <dj@redhat.com>
9739
9740         * config/stormy16/stormy16.md (negsi2): Allocate the pseudos
9741         before reload, but defer the split until after.
9742         * config/stormy16/stormy16.c (xstormy16_expand_arith): Modify
9743         to match.
9744
9745 2003-05-05  David Edelsohn  <edelsohn@gnu.org>
9746
9747         * config/rs6000/rs6000.h (ASM_CPU_SPEC): Add 440 support.
9748         * config/rs6000/vxworks.h (CC1_SPEC): Use -mcpu=440 for t440.
9749
9750 2003-05-05  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
9751
9752         * libgcov.c (__gcov_merge_add): Do not use gcov_type when inhibit_libc
9753         is defined.
9754
9755 2003-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9756
9757         * builtin-attrs.def (ATTR_NOTHROW_NONNULL_1,
9758         ATTR_NOTHROW_NONNULL_2, ATTR_NOTHROW_NONNULL_3): Renamed from
9759         ATTR_NONNULL_1, ATTR_NONNULL_2 and ATTR_NONNULL_3.
9760
9761         (ATTR_NOTHROW_NONNULL_1_2, ATTR_NOTHROW_NONNULL_1_4,
9762         ATTR_CONST_NOTHROW_NONNULL_1, ATTR_PURE_NOTHROW_NONNULL_1,
9763         ATTR_PURE_NOTHROW_NONNULL_1_2, ATTR_MALLOC_NOTHROW_NONNULL_1):
9764         New.
9765
9766         * builtins.def (DEF_EXT_FALLBACK_BUILTIN): Accept ATTRS argument.
9767         (BUILT_IN_BZERO, BUILT_IN_BCOPY, BUILT_IN_BCMP): Update comment
9768
9769         (BUILT_IN_INDEX, BUILT_IN_RINDEX, BUILT_IN_MEMCPY,
9770         BUILT_IN_MEMMOVE, BUILT_IN_MEMCMP, BUILT_IN_MEMSET,
9771         BUILT_IN_MEMPCPY, BUILT_IN_STRCAT, BUILT_IN_STRNCAT,
9772         BUILT_IN_STPCPY, BUILT_IN_STRCPY, BUILT_IN_STRNCPY,
9773         BUILT_IN_STRCMP, BUILT_IN_STRNCMP, BUILT_IN_STRLEN,
9774         BUILT_IN_STRSTR, BUILT_IN_STRPBRK, BUILT_IN_STRSPN,
9775         BUILT_IN_STRCSPN, BUILT_IN_STRCHR, BUILT_IN_STRRCHR, BUILT_IN_NAN,
9776         BUILT_IN_NANF, BUILT_IN_NANL, BUILT_IN_NANS, BUILT_IN_NANSF,
9777         BUILT_IN_NANSL, BUILT_IN_PUTS, BUILT_IN_FPUTC, BUILT_IN_FPUTS,
9778         BUILT_IN_FWRITE, BUILT_IN_PUTS_UNLOCKED, BUILT_IN_FPUTC_UNLOCKED,
9779         BUILT_IN_FPUTS_UNLOCKED, BUILT_IN_FWRITE_UNLOCKED,
9780         BUILT_IN_STRDUP): Add "nonnull" attribute.
9781
9782 2003-05-04  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9783
9784         * expr.c (store_field): Don't clobber TEMP in shift: it might be
9785         a variable.
9786         (get_inner_reference): Don't go through a VIEW_CONVERT_EXPR
9787         whose purpose is to step up the alignment.
9788         (expand_expr, case ADDR_EXPR): Force LO_SUM into memory, just like REG.
9789
9790         * stor-layout.c (compute_record_mode): Relax restriction
9791         on fields crossing word boundaries forcing BLKmode.
9792
9793 2003-05-04  Neil Booth  <neil@daikokuya.co.uk>
9794
9795         * cppinit.c (cpp_create_reader, post_options): Warn about
9796         trigraphs unless explicity set or -trigraphs.
9797         * cpplex.c (warn_in_comment): New.
9798         (_cpp_process_line_notes): Better handling of -Wtrigraphs.
9799         (_cpp_skip_block_comment): Add call to _cpp_process_line_notes.
9800         * doc/cppopts.texi, doc/cpp.texi: Update.
9801
9802 2003-05-04  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
9803
9804         * Makefile.in (LIBGCOV): Add _gcov_merge_add.
9805         * gcov-io.h: Make GCOV_LINKAGE extern in libgcov and prevent resulting
9806         namespace clash.
9807         (GCOV_MERGE_FUNCTIONS): New.
9808         (gcov_merge_fn): Declare.
9809         (struct gcov_ctr_info): New field "merge".
9810         (__gcov_merge_add): Declare.
9811         * coverage.c (ctr_merge_functions): New.
9812         (build_ctr_info_type, build_ctr_info_value): Initialize merge field
9813         of gcov_ctr_info type.
9814         * libgcov.c (__gcov_merge_add): New.
9815         (gcov_exit): Call a hook to merge values of counters.
9816
9817 2003-05-04  Gabriel Dos Reis <gdr@integrable-solutions.net>
9818
9819         * toplev.h (pedwarn_with_file_and_line): Don't declare.
9820         * diagnostic.c (pedwarn_with_file_and_line): Remove.
9821
9822 2003-05-04  Gabriel Dos Reis  <gdr@integrable-solutions.net>
9823
9824         * varasm.c (assemble_variable): Don't use error_with_file_and_line.
9825
9826 2003-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9827
9828         * builtins.c (expand_builtin_constant_p, expand_builtin_strlen,
9829         expand_builtin_frame_address): Update prototypes.
9830         (expand_builtin_constant_p, expand_builtin_strlen,
9831         expand_builtin_strcpy, expand_builtin_memset,
9832         expand_builtin_bzero, expand_builtin_args_info,
9833         expand_builtin_frame_address): Pass in just the argument(s)
9834         needed, not the entire expression `exp'.
9835         (expand_builtin): Update all calls to these functions.
9836
9837 2003-05-03  Richard Henderson  <rth@redhat.com>
9838
9839         * builtins.c (expand_builtin) <BUILT_IN_DWARF_FP_REGNUM>: Remove.
9840         <BUILT_IN_DWARF_SP_COLUMN>: New.
9841         * builtins.def (BUILT_IN_DWARF_FP_REGNUM): Remove.
9842         (BUILT_IN_DWARF_SP_COLUMN): New.
9843         * dwarf2out.c (expand_builtin_dwarf_fp_regnum): Remove.
9844         (expand_builtin_dwarf_sp_column): New.
9845         * except.h: Update to match.
9846         * unwind-dw2.c (execute_stack_op): Correct stack push typo.
9847         (execute_cfa_program): Record location expression address
9848         before extracting length.
9849         (uw_update_context_1): Install old CFA into stack pointer column.
9850         (uw_init_context_1): Set cfa_reg to stack pointer column.
9851
9852 2003-05-03  Richard Henderson  <rth@redhat.com>
9853
9854         * config/rs6000/rs6000.c (constant_pool_expr_p): Make static and
9855         return bool.
9856         (toc_relative_expr_p): Likewise.
9857         (SPE_CONST_OFFSET_OK): Move from rs6000.h.
9858         (legitimate_constant_pool_address_p): Move from rs6000.h, change
9859         into a function, downcase all users.
9860         (legitimate_small_data_p): Likewise.
9861         (legitimate_offset_address_p): Likewise.
9862         (legitimate_indexed_address_p): Likewise.
9863         (legitimate_indirect_address_p): Likewise.
9864         (legitimate_lo_sum_address_p): Likewise.
9865         (rs6000_mode_dependent_address): Likewise.
9866         * rs6000.h (CONSTANT_POOL_EXPR_P, TOC_RELATIVE_EXPR_P): Remove.
9867         (SPE_CONST_OFFSET_OK, LEGITIMATE_CONSTANT_POOL_ADDRESS_P,
9868         LEGITIMATE_SMALL_DATA_P, LEGITIMATE_OFFSET_ADDRESS_P,
9869         LEGITIMATE_INDEXED_ADDRESS_P, LEGITIMATE_INDIRECT_ADDRESS_P,
9870         LEGITIMATE_LO_SUM_ADDRESS_P): Move into rs6000.c.
9871         (LEGITIMATE_ADDRESS_INTEGER_P): Remove.
9872         (GO_IF_MODE_DEPENDENT_ADDRESS): Use rs6000_mode_dependent_address.
9873         * config/rs6000/rs6000-protos.h: Update.
9874
9875 2003-05-03  Geoffrey Keating  <geoffk@apple.com>
9876
9877         * config/rs6000/rs6000.h (REVERSIBLE_CC_MODE): Define.
9878         (REVERSE_CONDITION): Define.
9879
9880         * config/rs6000/rs6000.c (scc_comparison_operator): Make equivalent
9881         to branch_positive_comparison_operator.
9882         (ccr_bit): Check that sCOND conditions are actually a positive bit.
9883         (print_operand): Remove %D substitution.
9884         (rs6000_emit_sCOND): Generate complement operation to ensure that
9885         sCOND input is a positive bit.
9886         * config/rs6000/rs6000.md: Rearrange sCOND templates to be in the
9887         same order as bCOND, and add the missing ones.  Remove the %D
9888         substitutions from the scc patterns.
9889
9890         * simplify-rtx.c (simplify_relational_operation): Add case for
9891         ! (fabs(x) < 0.0).
9892
9893 2003-05-03  Bruce Korb  <bkorb@gnu.org>
9894
9895         * gcc/fixinc/fixincl.tpl(dne): restore this to force merge conflicts
9896         in fixincl.x
9897         * gcc/fixinc/inclhack.def(bsd_stdio_attrs_conflict): fix placement
9898
9899 2003-05-03  Aldy Hernandez  <aldyh@redhat.com>
9900
9901         * config/rs6000/spe.h: Remove unecessary casts.  Misc cleanups.
9902
9903 2003-05-03  Zack Weinberg  <zack@codesourcery.com>
9904
9905         PR c/10604
9906         * c-common.c (warn_sign_compare): Initialize to -1.
9907         * c-opts.c (c_common_init_options): Don't set warn_sign_compare here.
9908         (c_common_decode_option <OPT_Wall>): Set warn_sign_compare
9909         for C++ only.
9910         (c_common_post_options): Set warn_sign_compare from extra_warnings
9911         if it's still -1 at this point.
9912
9913         * toplev.c (maybe_warn_unused_parameter): New static variable.
9914         (set_Wextra): New static function.
9915         (W_options): Remove "extra".
9916         (decode_W_option): Call set_Wextra.
9917         (independent_decode_option): Likewise.
9918         (set_Wunused): Cooperate with set_Wextra in setting
9919         warn_unused_parameter.
9920         (rest_of_compilation): No need to check extra_warnings as
9921         well as warn_uninitialized.
9922
9923         * c-typeck.c (build_binary_op, build_conditional_expr):
9924         No need to check extra_warnings as well as warn_sign_compare.
9925         (internal_build_compound_expr): No need to check extra_warnings
9926         as well as warn_unused_value.
9927         * function.c (expand_function_end): No need to check extra_warnings
9928         as well as warn_unused_parameter.
9929         * stmt.c (expand_expr_stmt_value): No need to check extra_warnings
9930         as well as warn_unused_value.
9931
9932         * doc/invoke.texi: Clarify documentation of -Wsign-compare.
9933
9934         * Makefile.in: Disable -Werror for gengtype-lex.o.
9935
9936 2003-05-03  Olivier Hainque  <hainque@act-europe.fr>
9937
9938         * emit-rtl.c (last_call_insn, add_function_usage_to): New functions.
9939         * rtl.h (last_call_insn, add_function_usage_to): New prototypes.
9940         * builtins.c (expand_builtin_apply): Use the new emit-rtl functions.
9941         * calls.c (emit_call_1): Likewise.
9942         (expand_call): For calls initializing constant memory, replace
9943         emission of standalone mem /u clobber with function usage entry.
9944         * expr.c (emit_block_move_via_libcall): Likewise.
9945         * cse.c (count_reg_usage, case EXPR_LIST): New case.
9946         * flow.c (propagate_one_insn): Pass entire operand of
9947         CALL_INSN_FUNCTION_USAGE to mark_used_regs.
9948         * integrate.c (try_constants): For CALL_INSNs, substitute constants
9949         within the FUNCTION_USAGE also.
9950         * loop.c (prescan_loop): Note clobbers of const mem mentioned in
9951         FUNCTION_USAGE lists.
9952         * reload1.c (replace_pseudos_in): Renamed.
9953         (reload): Use it for clobbers surviving until the end of the reload.
9954
9955 2003-05-03  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9956
9957         * expr.c (expand_expr, case VIEW_CONVERT_EXPR): Don't use
9958         gen_lowpart on non-integer modes.
9959
9960         * stor-layout.c (place_field): When adjusting offset_align, use
9961         desired_align, not DECL_ALIGN.
9962
9963 2003-05-03  Nathan Sidwell  <nathan@codesourcery.com>
9964
9965         * c-decl.c (pending_invalid_xref_file): Remove.
9966         (pending_invalid_xref_line): Remove.
9967         (pending_invalid_xref_location): New.
9968         (lookup_label): Use location_t and input_location directly.
9969         (lookup_tag): Likewise.
9970         (pending_xref_error): Likewise.
9971         (c_expand_body_1): Likewise.
9972         * c-common.c (x_expand_start_cond): Likewise.
9973         * c-semantics.c (genrtl_for_stmt): Likewise.
9974         (find_reachable_label): Likewise.
9975         * expr.c (expand_expr): Likewise.
9976         * integrate.c (output_inline_function): Likewise.
9977         * tree-inline.c (find_alloca_call): Likewise.
9978         (find_builtin_longjmp_call): Likewise.
9979         * gcc.c (input_filename): Make static.
9980
9981 2003-05-03  Richard Sandiford  <rsandifo@redhat.com>
9982
9983         * config/mips/mips.md: Fix comment typo.
9984
9985         * config/mips/mips.c (mips_integer_op): New structure.
9986         (MIPS_MAX_INTEGER_OPS): Define.
9987         (mips_const_insns): Use mips_build_integer to determine the number
9988         of instructions needed to load a CONST_INT.
9989         (move_operand): Reject compound CONST_INTs.
9990         (mips_build_shift, mips_build_lower, mips_build_integer): New fns.
9991         (mips_move_integer): New fn.
9992         (mips_legitimize_const_move): Pass CONST_INTs to mips_move_integer.
9993         (mips_legitimize_move): Only legitimize constants when moving
9994         word or subword values.
9995
9996 2003-05-02  Matt Kraai  <kraai@alumni.cmu.edu>
9997
9998         * Makefile.in (gcov-iov.h): Use move-if-change and a stamp.
9999
10000 2003-05-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10001
10002         * builtins.c (expand_builtin_stpcpy): Copy `arglist' before
10003         modifying it.
10004
10005 2003-05-03  Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
10006             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
10007
10008         * doc/contrib.texi (Contributors): Add Zdenek Dvorak, Aldy
10009         Hernandez, and Kazu Hirata.  Update Richard Henderson.
10010
10011 2003-05-02  Geoffrey Keating  <geoffk@apple.com>
10012
10013         * config/rs6000/rs6000.c (rs6000_attribute_table): Add 'extern'
10014         to tentative declaration.
10015
10016         * config/rs6000/sysv4.h (SYMBOL_FLAG_SMALL_V4): Delete.
10017         (SYMBOL_FLAG_SMALL_V4): Delete.
10018         * config/rs6000/rs6000.c (small_data_operand): Use SYMBOL_REF_SMALL_P.
10019         (rs6000_elf_encode_section_info): Don't set SYMBOL_FLAG_SMALL_V4.
10020         (rs6000_elf_in_small_data_p): Add extra section names.  Add
10021         comment about TREE_PUBLIC test.
10022
10023         * c-semantics.c (genrtl_switch_stmt, genrtl_if_stmt): Call
10024         expand_stmt on result of expand_unreachable_stmt.
10025
10026 2003-05-02  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
10027
10028         * doc/contrib.texi (Contributors): Add Daniel Berlin.
10029
10030 2003-05-02  David Edelsohn  <edelsohn@gnu.org>
10031
10032         * config/rs6000/{603.md,6xx.md,7450.md,7xx.md,rs64.md}: Decrease
10033         number of automata.
10034
10035         * config/rs6000/rs6000.c (symbol_ref_operand): Check
10036         SYMBOL_REF_FUNCTION_P on AIX.
10037         (current_file_function_operand): Same.
10038         * config/rs6000/rs6000.md (call,call_value): Force non-function
10039         symbol_ref into register on AIX.
10040
10041 2003-05-02  Alan Modra  <amodra@bigpond.net.au>
10042
10043         * calls.c (struct arg_data): Move offset, slot_offset, size and
10044         alignment_pad to struct locate_and_pad_arg_data.  Update all refs.
10045         (initialize_argument_information): Adjust call to locate_and_pad_parm.
10046         Delete alignment_pad var.  Don't calculate slot_offset here.
10047         (emit_library_call_value_1): Delete alignment_pad, offset and size
10048         vars.  Use struct locate_and_pad_arg_data instead.  Adjust refs.
10049         Adjust call to locate_and_pad_parm.  Don't tweak arg size for
10050         partial in-regs here.  Formatting fixes.
10051         * expr.h (struct locate_and_pad_arg_data): New struct.
10052         (locate_and_pad_parm): Adjust declaration.
10053         * function.c (assign_parms): Localize vars.  Use "locate" instead of
10054         other arg location vars.  Don't invoke FUNCTION_ARG or
10055         FUNCTION_INCOMING_ARG unless pretend_named is different from
10056         named_arg.  Heed MUST_PASS_IN_STACK and set up "partial" before
10057         calling locate_and_pad_parm.  Adjust locate_and_pad_parm call.
10058         Use slot_offset for stack home of reg parms.  Correct test for
10059         parm passed in memory.  Formatting fixes.
10060         (locate_and_pad_parm): Add "partial" to params.  Replace offset_ptr
10061         arg_size_ptr and alignment pad with "locate".  Set slot_offset here.
10062         Correct initial_offset_ptr handling.  Localize vars.  Always pad
10063         locate->offset even when in_regs.
10064
10065 2003-05-02  Nathan Sidwell  <nathan@codesourcery.com>
10066
10067         * Makefile.in (TREE_H): Replace location.h with input.h.
10068         (GTFILES) Remove location.h
10069         (gt-lists.h): Replace gt-location.h with gt-input.h
10070         * input.h (input_filename, input_line): Remove variables.
10071         (location_s, location_t): Move from location.h.
10072         (input_location): New.
10073         (input_filename, input_line): New #defines.
10074         * location.h: Remove.
10075         * tree.h: Replace location.h with input.h.
10076         (input_filename, input_line): Remove.
10077         * diagnostic.h: Replace location.h with input.h.
10078         * gcc.h (input_filename, input_filename_length): Remove declarations.
10079         * toplev.c (input_filename, input_line): Remove.
10080         (input_location): Define.
10081         (push_srcloc, pop_srcloc): Adjust.
10082         * diagnostic.c (diagnostic_report_current_module): Adjust.
10083
10084 2003-05-02  Nick Clifton  <nickc@redhat.com>
10085
10086         * configure.in: Add xstormy16 to list of targets that has a nop
10087         instruction and hence which can be tested to see if the
10088         assembler supports the --gdwarf2 switch.
10089         * configure: Regenerate.
10090
10091 2003-05-01  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
10092
10093         PR target/8257
10094         * config/alpha/alpha.c (alpha_sa_mask, alpha_expand_prologue,
10095         alpha_start_function, alpha_expand_epilogue, unicosmk_gen_dsib):
10096         Avoid undefined shifts by making the shift operand unsigned.
10097
10098 2003-05-01  DJ Delorie  <dj@redhat.com>
10099
10100         * reload.c (find_reloads): Also check that all of a multi-reg
10101         value is in the class.
10102
10103 2003-05-01  Nathan Sidwell  <nathan@codesourcery.com>
10104
10105         * scan.h (lineno): Revert the rename here.
10106
10107 2003-05-01  Stan Shebs  <shebs@apple.com>
10108
10109         * config/darwin.c (darwin_encode_section_info): Call
10110         default_encode_section_info.
10111
10112 2003-05-01  David Edelsohn  <edelsohn@gnu.org>
10113
10114         * config/rs6000/rs6000.md (define_attr "type"): Add mfjmpr.
10115         (movsi_internal1): Use new mfjmpr attribute.
10116         (movhi_internal): Same.
10117         (movqi_internal): Same.
10118         (movcc_internal1): Same.
10119         (movdi_internal64): Same.
10120         * config/rs6000/{40x.md,603.md,6xx.md,7450.md,7xx.md,mpc.md,
10121         power4.md,rios1.md,rios2.md,rs64.md}: Add mfjmpr.
10122         * config/rs6000/40x.md: Add fpu_405.
10123         * config/rs6000/power4.md: Merge power4lsu and power4disp automata
10124         into power4misc automata.  Remove extraneous parentheses.
10125         * config/rs6000/440.md: New file.
10126         * config/rs6000/rs6000.c (processor_target_table): Add 440,
10127         440fp.  Rename 405f to 405fp.
10128         (function_arg_padding): Correct formatting.
10129         (rs6000_rtx_costs): Add PROCESSOR_PPC440 cases.
10130
10131 2003-05-01  Nathan Sidwell  <nathan@codesourcery.com>
10132
10133         * input.h (lineno): Rename to ...
10134         (input_line): ... here.
10135         * tree.h (lineno): Rename to ...
10136         (input_line): ... here.
10137         * scan.h (lineno): Rename to ...
10138         (input_line): ... here.
10139         * toplev.c (lineno): Rename to ...
10140         (input_line): ... here.
10141         (push_srcloc, pop_srcloc):  Rename lineno to input_line.
10142         * c-common.c (c_expand_start_cond, fname_decl): Likewise.
10143         * c-decl.c (poplevel, pop_label_level, lookup_label, lookup_tag,
10144         store_parm_decls, c_expand_body_1): Likewise.
10145         * c-errors.c (pedwarn_c99): Likewise.
10146         * c-format.c (status_warning): Likewise.
10147         * c-lex.c (fe_file_change, cb_def_pragma, c_lex): Likewise.
10148         * c-opts.c (c_common_post_options, c_common_parse_file): Likewise.
10149         * c-parse.in (save_filename, maybe_type_qual, ifc): Likwise.
10150         * c-semantics.c (finish_stmt_tree, build_stmt, emit_local_var,
10151         gentrtl_goto_stmt, genrtl_expr_stmt_value, genrtl_decl_stmt,
10152         genrtl_if_stmt, genrtl_while_stmt, genrtl_do_stmt,
10153         genrtl_return_stmt, genrtl_for_stmt, build_break_stmt,
10154         build_continue_stmt, genrtl_switch_stmt, genrtl_asm_stmt,
10155         prep_stmt, find_reachable_label, expand_unreachable_stmt): Likewise.
10156         * coverage.c (create_coverage): Likewise.
10157         * diagnostic.c (pedwarn, sorry, error, fatal_error,
10158         internal_error, warning, diagnostic_report_current_module,
10159         inform): Likewise.
10160         * expr.c (expand_expr): Likewise.
10161         * integrate.c (expand_inline_function,
10162         output_inline_function): Likewise.
10163         * rtl-error.c (file_and_line_for_asm): Likewise.
10164         * tree-inline.c (find_alloca_call, find_builtin_longjmp_call,
10165         walk_tree): Likewise.
10166         * tree.c (make_node): Likewise.
10167         * ada, cp, f, java, objc, treelang: Likewise.
10168         * objc/objc-act.c (objc_init): Rename lineno to input_line.
10169         (build_module_descriptor, build_selector_translation_table,
10170         build_protocol_template, build_method_prototype_list_template,
10171         build_category_template, build_selector_table,
10172         build_class_template, build_super_template, build_ivar_template,
10173         build_ivar_list_template, build_method_list_template,
10174         build_method_template, add_instance_variable): Likewise.
10175
10176         * dwarf2out.c (dwarf2out_init, dwarf2out_finish): Change parameter
10177         name from input_filename.
10178
10179 2003-04-30  Eric Christopher  <echristo@redhat.com>
10180             Richard Sandiford <rsandifo@redhat.com>
10181
10182         * configure: Regenerate from patches below.
10183         * combine.c (gen_lowpart_for_combine): Fix comment and add tests
10184         for all symbolic operands.
10185         * config/mips/mips.c: Migrate RTX_COSTS and CONST_COSTS
10186         to function.
10187         * config/mips/linux.h: Fix typo.
10188         * Merge from mips-3_4-rewrite branch:
10189
10190         2003-04-07  Richard Sandiford  <rsandifo@redhat.com>
10191
10192                 * config/mips/mips.c (mips_classify_symbol): Add catch-all case for
10193                 handling local labels when TARGET_ABICALLS.
10194
10195         2003-04-04  Richard Sandiford  <rsandifo@redhat.com>
10196
10197                 * config/mips/mips-protos.h (mips_expand_epilogue): Add an
10198                 integer argument.
10199                 (mips_expand_call): Likewise.
10200                 * config/mips/mips.h (TARGET_SIBCALLS): New macro.
10201                 (FIXED_REGISTERS): Clear $31 entry.
10202                 (CALL_USED_REGISTERS, CALL_REALLY_USED_REGISTER): Likewise.
10203                 (EPILOGUE_USES): Define.
10204                 * config/mips/mips.c (mips_function_ok_for_sibcall): New function.
10205                 (TARGET_FUNCTION_OK_FOR_SIBCALL): Use it.
10206                 (override_options): Add a 'j' register class.
10207                 (mips_expand_call): Handle sibcalls
10208                 (mips_expand_epilogue): Handle epilogues for sibcalls.
10209                 * config/mips/mips.md (epilogue): Adjust call to mips_expand_epilogue.
10210                 (sibcall_epilogue): New pattern.
10211                 (call, call_value): Adjust calls to mips_expand_call.
10212                 (sibcall, sibcall_value): New expanders.
10213                 (sibcall_internal, sibcall_value_internal): New patterns.
10214                 (sibcall_value_multiple_internal): New pattern.
10215
10216         2003-03-25  Richard Sandiford  <rsandifo@redhat.com>
10217
10218                 * config/mips/mips.md (extended_mips16): New attribute.
10219                 (define_attr length): Default to 8 if extended_mips16 == yes.
10220                 (truncdisi2): Set extended_mips16 to yes for the sll alternative.
10221                 (truncdihi2, truncdiqi2, *extendsidi2): Likewise.
10222                 (call_internal): Set extended_mips16 to yes for direct jumps.
10223                 Remove redundant mode attribute.
10224                 (call_value_internal, call_value_multiple_internal): Likewise.
10225                 (call_split): Remove redundant mode attribute.
10226                 (call_value_split, call_value_multiple_split): Likewise.
10227
10228                 * config/mips/mips.c (mips_symbol_insns): Rework.  Fix handling
10229                 of unaligned offsets.
10230
10231                 * config/mips/mips.c (mips_splittable_symbol_p): Fix handling
10232                 of SYMBOL_GENERAL.
10233
10234         2003-03-22  Richard Sandiford  <rsandifo@redhat.com>
10235
10236                 * config/mips/mips.h (TARGET_EXPLICIT_RELOCS): Add commentary.
10237                 * config/mips/mips.c (override_options): Disable -mexplicit-relocs
10238                 for mips16 code.
10239
10240         2003-03-22  Richard Sandiford  <rsandifo@redhat.com>
10241
10242                 * config/mips/mips.h (ADDRESS_COST): Define.
10243
10244         2003-03-20  Richard Sandiford  <rsandifo@redhat.com>
10245
10246                 * config/mips/mips.h (EXTRA_CONSTRAINT): Give existing meaning of
10247                 'R' to 'U'.  Make 'R' mean a single-instruction memory reference.
10248                 * config/mips/mips.md: Replace 'R' constraints with 'U'.
10249
10250         2003-03-18  Richard Sandiford  <rsandifo@redhat.com>
10251
10252                 * config/mips/mips.md (truncdisi2): Add commentary.  Use sll instead
10253                 of a two-instruction sequence.  Add register->memory alternative.
10254                 (truncdihi2, truncdiqi2): Likewise.
10255                 Rework shift/truncate instructions so that they only handle right
10256                 shifts of 32 (or more, in the case of arithmetic shifts).
10257                 Add patterns for truncate/sign-extend.
10258
10259         2003-03-13  Richard Sandiford  <rsandifo@redhat.com>
10260
10261                 * configure.in (mips*-*-*): Check for explicit relocation support.
10262                 * configure: Regenerate.
10263
10264         2003-03-13  Richard Sandiford  <rsandifo@redhat.com>
10265
10266                 * config/mips/mips.h (TARGET_SWITCHES): Add -mexplicit-relocs
10267                 and -mno-explicit-relocs.
10268                 (MASK_EXPLICIT_RELOCS): Define.
10269                 (TARGET_EXPLICIT_RELOCS): Use it.
10270                 (mips_split_addresses): Remove declaration.
10271                 * config/mips/mips.c (override_options): Update comment for
10272                 mips_split_addresses.  Clear MASK_EXPLICIT_RELOCS for non-PIC n64.
10273
10274         2003-03-13  Richard Sandiford  <rsandifo@redhat.com>
10275
10276                 * combine.c (gen_lowpart_for_combine): Treat the lowpart Pmode of
10277                 a CONST as identity.  Check the return value of gen_lowpart_common.
10278
10279         2003-03-13  Richard Sandiford  <rsandifo@redhat.com>
10280
10281                 * config/mips/mips.c (mips_legitimize_symbol): Handle small data
10282                 references for TARGET_EXPLICIT_RELOCS.
10283                 (mips_reloc_string): Return "%gp_rel(" for RELOC_GPREL16 if
10284                 !TARGET_MIPS16.
10285
10286         2003-03-13  Richard Sandiford  <rsandifo@redhat.com>
10287
10288                 * config/mips/mips.md: Replace 'IQ' mips16 constraints with just 'Q'.
10289                 (addsi3): Remove redundant constraints.
10290                 (addsi3_internal): Use separate register & constant alternatives.
10291                 Use a 'Q' constraint and "addiu" insn for the latter.
10292                 (adddi3_internal_3, addsi3_internal_2): Likewise.
10293
10294         2003-03-13  Richard Sandiford  <rsandifo@redhat.com>
10295
10296                 * config/mips/mips-protos.h (mips_expand_unaligned_load): Declare.
10297                 (mips_expand_unaligned_store): Declare.
10298                 * config/mips/mips.c (mips_get_unaligned_mem): New fn.
10299                 (mips_expand_unaligned_load, mips_expand_unaligned_store): New fns.
10300                 * config/mips/mips.md (UNSPEC_ULW, UNSPEC_USW): Remove.
10301                 (UNSPEC_ULD, UNSPEC_USD): Remove.
10302                 (UNSPEC_LWL, UNSPEC_LWR, UNSPEC_SWL, UNSPEC_SWR): New.
10303                 (UNSPEC_LDL, UNSPEC_LDR, UNSPEC_SDL, UNSPEC_SDR): New.
10304                 (extv, extzv): Use mips_expand_unaligned_load.
10305                 (insv): Use mips_expand_unaligned_store.  Use a reg_or_0_operand
10306                 predicate for operand 3.
10307                 (movsi_ulw, movsi_usw): Replace with...
10308                 (mov_lwl, mov_lwr, mov_swl, move_swr): ...these new insns.
10309                 (movdi_uld, movdi_usd): Likewise replace with...
10310                 (mov_ldl, mov_ldr, mov_sdl, move_sdr): ...these insns.
10311
10312         2003-02-26  Richard Sandiford  <rsandifo@redhat.com>
10313
10314                 * config/mips/mips-protos.h (mips_global_pic_constant_p): Declare.
10315                 * config/mips/mips.h (LEA_REGS): New register class.
10316                 (REG_CLASS_NAMES, REG_CLASS_CONTENTS): Add entries for it.
10317                 (GR_REG_CLASS_P): Include LEA_REGS.
10318                 (DANGEROUS_FOR_LA25_P): New macro.
10319                 (EXTRA_CONSTRAINT): Add !DANGEROUS_FOR_LA25_P to R's condition.
10320                 Add a T constraint for the DANGEROUS_FOR_LA25_P case.
10321                 * config/mips/mips.c (mips_regno_to_class): Change GR_REGS
10322                 entries to LEA_REGS.
10323                 (mips_global_pic_constant_p): New function.
10324                 (override_options): Add 'e' register constraint.
10325                 (mips_secondary_reload_class): Return LEA_REGS when reloading
10326                 a dangerous constant into a class containing $25.
10327                 * config/mips/mips.md (movdi_internal2): Add an e <- T alternative.
10328                 (movsi_internal): Likewise.
10329
10330         2003-02-23  Richard Sandiford  <rsandifo@redhat.com>
10331
10332                 * config/mips/mips.h (TARGET_SPLIT_CALLS): New macro.
10333                 * config/mips/mips.md (call_split): New insn.
10334                 (call_value_split, call_value_multiple_split): New insns.
10335                 (call_internal): Turn into a define_insn_and_split.  Split the
10336                 instruction into a call and $gp load if TARGET_SPLIT_CALLS.
10337                 (call_value_internal, call_value_multiple_internal): Likewise.
10338
10339         2003-02-23  Richard Sandiford  <rsandifo@redhat.com>
10340
10341                 * config/mips/mips.c (mips_reloc_string): Return "%got(" for
10342                 RELOC_GOT_PAGE and RELOC_GOT_DISP if !TARGET_NEWABI.
10343                 (mips_encode_section_info): Don't take symbol visibility into
10344                 account if TARGET_ABICALLS.  Add more commentary.
10345                 * config/mips/mips.md: Add commentary above reloc constants.
10346
10347         2003-02-12  Richard Sandiford  <rsandifo@redhat.com>
10348
10349                 * config/mips/mips.c (mips_legitimize_const_move): New, extracted
10350                 from mips_legitimize_move.  Legitimize constant pool references.
10351                 (mips_legitimize_move): Call mips_legitimize_const_move.  Attach
10352                 a REG_EQUAL note to the last instruction.
10353
10354         2003-02-11  Richard Sandiford  <rsandifo@redhat.com>
10355
10356                 * config/mips/mips-protos.h (mips_simplify_dwarf_addr): Declare.
10357                 * config/mips/mips.h (TARGET_EXPLICIT_RELOCS, TARGET_NEWABI): New.
10358                 (ASM_SIMPLIFY_DWARF_ADDR): Define to mips_simplify_dwarf_addr.
10359                 (EXTRA_CONSTRAINT): Allow symbolic call addresses for TARGET_ABICALLS.
10360                 * config/mips/mips.md (UNSPEC_HIGH): New constant.
10361                 (UNSPEC_RELOC_GPREL16): Rename to...
10362                 (RELOC_GPREL16): ...this.
10363                 (RELOC_GOT_HI, RELOC_GOT_LO, RELOC_GOT_PAGE, RELOC_GOT_DISP): New.
10364                 (RELOC_CALL16, RELOC_CALL_HI, RELOC_CALL_LO): New.
10365                 (macro_calls): New attribute.
10366                 (length): Use it to set the default length of calls.  Don't allow
10367                 calls to have delay slots if macro_calls is "yes".
10368                 (luisi, luidi): New patterns.
10369                 (lowsi, lowdi): Use '%R' to print the relocation.
10370                 (lowdi_extend): Remove.
10371                 (loadgp): Remove mode from operand 0.  Use '%0' instead of '%a0'.
10372                 (call_internal): Merge alternatives.  Always use "jal".
10373                 (call_value_internal, call_value_multiple_internal): Likewise.
10374                 (reloc_gprel16): Remove.
10375                 * config/mips/mips.c (mips_got_alias_set): New variable.
10376                 (mips_classify_constant): Handle the new relocation constants.
10377                 (mips_classify_symbol): Reverse the sense of SYMBOL_REF_FLAG for PIC.
10378                 (mips_symbolic_address_p): Return false if generating explicit relocs.
10379                 Otherwise allow local PIC symbols to have an offset.
10380                 (mips_splittable_symbol_p): New function.
10381                 (mips_classify_address): Use it to check whether a LO_SUM is valid.
10382                 (mips_const_insns): Always accept HIGH.
10383                 (call_insn_operand): Don't accept global symbols if using explicit
10384                 relocs.
10385                 (move_operand): Don't accept HIGH when generating PIC.
10386                 (mips_reloc, mips_lui_reloc): New functions.
10387                 (mips_force_temporary): Remove MODE argument.  Expect VALUE to
10388                 be a valid right-hand-side for a SET pattern.
10389                 (mips_load_got, mips_load_got16, mips_load_got32): New functions.
10390                 (mips_emit_high): New function.
10391                 (mips_legitimize_symbol): Use mips_reloc for the mips16 gp-relative
10392                 case.  Use mips_splittable_symbol_p to check whether a LO_SUM
10393                 address should be used.  Use mips_emit_high to generate the
10394                 high part of such an address.  Adjust the global symbol + offset
10395                 case to match the change to mips_force_temprorary.
10396                 (mips_legitimize_move): Shuffle call to mips_legitimize_symbol.
10397                 If generating explicit-reloc PIC, load the address of global
10398                 symbols from the GOT.  Use mips_emit_high to emit the high part
10399                 of an address.
10400                 (mips_simplify_dwarf_addr): New function.
10401                 (mips_move_1word): Use lwc1 instead of l.s and swc1 instead of s.s.
10402                 (mips_move_2words): Likewise ldc1/l.d and sdc1/s.d if TARGET_64BIT.
10403                 (mips_expand_call): Load the addresses of global functions using
10404                 %call* relocs if generating explicit-reloc PIC.  Don't generate
10405                 an exception_receiver pattern.
10406                 (override_options): Initialize mips_got_alias_set.
10407                 (print_relocation): Remove in favor of...
10408                 (mips_reloc_string): ...this new function.
10409                 (print_operand): Handle '%R'.  Use mips_reloc_string.
10410                 (print_operand_address): Use print_operand to print the symbolic
10411                 part of a LO_SUM address.
10412                 (mips_output_function_prologue): Use .cprestore, reverting last patch.
10413                 (mips_encode_section_info): Factor out DECL_RTL accesses.  Reverse
10414                 sense of SYMBOL_REF_FLAG for PIC, using binds_local_p to check
10415                 for local symbols.
10416
10417         2003-02-02  Eric Christopher  <echristo@redhat.com>
10418
10419                 * config/mips/mips.c (mips_sign_extend): Remove.
10420                 * config/mips/mips-protos.h: Ditto.
10421                 * config/mips/mips.md (movdi_internal2_extend): Remove.
10422                 (extendsidi2): Fix mode of convert_memory_address.
10423
10424         2003-01-24  Eric Christopher  <echristo@redhat.com>
10425
10426                 * config/mips/mips.md: Rewrite zero_extend* and extend*
10427                 patterns. Use explicit instructions and split after reload
10428                 for register extensions.
10429                 (ashlsi3_internal1_extend): New combiner pattern for
10430                 shift and extend combinations.
10431                 * config/mips/mips.h: Change Pmode back to ptr_mode
10432                 for performance enhancement.
10433                 * combine.c (expand_compound_operation): Make sure
10434                 that zero_extend operation is profitable.
10435
10436         2003-01-14  Richard Sandiford  <rsandifo@redhat.com>
10437
10438                 * config/mips/mips.h (TRAMPOLINE_TEMPLATE): Make size of stored
10439                 addresses depend on ptr_mode rather than Pmode.
10440                 (TRAMPOLINE_SIZE, TRAMPOLINE_ALIGNMENT): Update acoordingly.
10441                 (INITIALIZE_TRAMPOLINE): Rework to handle Pmode != ptr_mode.
10442                 (CASE_VECTOR_MODE): Use ptr_mode for !TARGET_MIPS16.
10443                 (ASM_OUTPUT_ADDR_VEC_ELT): Update accordingly.
10444                 * config/mips/mips.md (tablejump): Likewise.  Remove Pmode
10445                 condition for selecting cpaddsi or cpadddi: use cpadd instead.
10446                 (tablejump_internal1): Remove condition.
10447                 (tablejump_internal2): Change condition to TARGET_64BIT.
10448                 (cpaddsi): Rename to...
10449                 (cpadd): ...this.
10450                 (cpadddi): Remove.
10451
10452         2003-01-09  Richard Sandiford  <rsandifo@redhat.com>
10453
10454                 * config/mips/mips-protos.h (mips16_constant_after_function_p,
10455                 mips_address_cost, mips_check_split, double_memory_operand,
10456                 mips16_gp_offset, mips16_gp_offset_p, mips16_constant,
10457                 pic_address_needs_scratch, symbolic_operand): Remove declarations.
10458                 (mips_legitimate_address_p): Return bool.
10459                 (mips_address_insns, mips_fetch_insns, mips_const_insns,
10460                 mips_legitimize_address, mips_legitimize_move,
10461                 mips_expand_call): Declare.
10462                 (mips_return_addr): Move outside #ifdef RTX_CODE.
10463
10464                 * config/mips/mips.h (ABI_HAS_64BIT_SYMBOLS): New macro.
10465                 (PIC_FN_ADDR_REG): New reg_class.
10466                 (REG_CLASS_NAMES, REG_CLASS_CONTENTS): Add corresponding entries.
10467                 (GR_REG_CLASS_P): True for PIC_FN_ADDR_REG.
10468                 (SMALL_OPERAND, SMALL_OPERAND_UNSIGNED, LUI_OPERAND,
10469                 CONST_HIGH_PART, CONST_LOW_PART, LUI_INT): New macros.
10470                 (SMALL_INT, SMALL_INT_UNSIGNED, CONST_OK_FOR_LETTER_P): Use new macros.
10471                 (EXTRA_CONSTRAINTS): Give new meanings to Q, R and S.
10472                 (CONSTANT_ADDRESS_P): Use mips_legitimate_address_p.
10473                 (LEGITIMATE_PIC_OPERAND): Undefine.
10474                 (LEGITIMATE_CONSTANT_P): Use mips_const_insns.
10475                 (LEGITIMIZE_ADDRESS): Use mips_legitimize_address.
10476                 (CONSTANT_AFTER_FUNCTION_P): Remove definition in #if 0 block.
10477                 (FUNCTION_MODE): Change to SImode.
10478                 (CONST_COSTS): Use mips_const_insns to calculate the cost of
10479                 most constants.  Treat const_artih_operands specially if they
10480                 occur in a PLUS or MINUS.
10481                 (CONSTANT_POOL_COST): New macro.
10482                 (RTX_COSTS): Use mips_address_insns for MEMs, with a base cost of 2.
10483                 Add LO_SUM handling.
10484                 (ADDRESS_COST): Undefine.
10485                 (PREDICATE_CODES): Add symbolic_operand and const_arith_operand.
10486                 Add CONST to the list of codes for arith_operand.  Add LABEL_REF
10487                 to call_insn_operand and remove CONST_INT.
10488
10489                 * config/mips/mips.c: Include integrate.h.
10490                 (SINGLE_WORD_MODE_P): New macro.
10491                 (mips_constant_type, mips_symbol_type, mips_address_type): New enums.
10492                 (mips_constant_info, mips_address_info): New structs.
10493                 (mips_regno_to_class): Map $25 to PIC_FN_ADDR_REG.
10494                 (mips_classify_constant, mips_classify_symbol,
10495                 mips_valid_base_register_p, mips_symbolic_address_p,
10496                 mips_classify_address, mips_symbol_insns,
10497                 mips16_unextended_reference_p, mips_address_insns, mips_const_insns,
10498                 mips_fetch_insns, mips_force_temporary, mips_add_offset,
10499                 mips_legitimize_symbol, mips_legitimize_address, mips_legitimize_move,
10500                 mips_print_relocation): New functions.
10501                 (const_arith_operand): New operand predicate.
10502                 (arith_operand): Use it.
10503                 (mips_const_double_ok, mips16_simple_memory_operand,
10504                 simple_memory_operand, double_memory_operand, mips_check_split,
10505                 mips_address_cost, pic_address_needs_scratch, mips16_gp_offset,
10506                 mips16_gp_offset_p, mips16_output_gp_offset,
10507                 mips16_constant_after_function_p, mips16_constant): Remove.
10508                 (call_insn_operand): Be more fussy about symbolic constants.
10509                 Use register_operand.
10510                 (move_operand): Use mips_symbolic_address_p to check symbolic
10511                 operands and general_operand to check the rest.
10512                 (symbolic_operand): Use mips_classify_constant.
10513                 (mips_legitimate_address_p): Use mips_classify_address.
10514                 (mips_move_1word): Combine handling of symbolic addresses.
10515                 Remove special treatment of gp-relative loads for TARGET_MIPS16.
10516                 (move_move_2words): Likewise.  Assume addresses are offsettable
10517                 if they need to refer to more than one word.  Add HIGH handling.
10518                 (mips_restore_gp): Use ptr_mode for the GP save slot.
10519                 (mips_expand_call): New function, combining the old mips.md
10520                 call and call_internal define_expands.  If the address isn't
10521                 a call_insn_operand, force it into a register.  For SVR4 PIC,
10522                 emit an exception_receiver instruction after the call.
10523                 (override_options): Only override flag_pic for TARGET_ABICALLS
10524                 if it is currently zero.  Allow mips_split_addresses when
10525                 Pmode == DImode too, except when ABI_HAS_64BIT_SYMBOLS.
10526                 Add new register class letter, 'c'.
10527                 (print_operand): Use mips_classify_constant for constant operands.
10528                 (print_operand_address): Use mips_classify_address.
10529                 (mips_output_function_prologue): Don't use .cprestore.
10530                 (mips_expand_epilogue): For TARGET_MIPS16, only adjust the stack
10531                 via the frame pointer if current_function_calls_eh_return.
10532                 (mips_encode_section_info): For TARGET_ABICALLS, use SYMBOL_REF_FLAG
10533                 to mark whether a symbol is local or global.
10534                 (build_mips16_call_stub): Expect the address of the function rather
10535                 than a MEM reference to it.  Update call generation sequences.
10536                 (mips16_optimize_gp): Remove Pmode checks.  Temporarily disable
10537                 small-data adjustments.
10538
10539                 * config/mips/mips.md: Remove 'R'/'m' memory distinction.  Use default
10540                 length for loads and stores.
10541                 (UNSPEC_CPADD, UNSPEC_RELOC_GPREL16): New constants.
10542                 (define_attr type): Add const and prefetch.
10543                 (define_attr length): Use mips_const_insns for const instructions.
10544                 Use mips_fetch_insns for load and store instructions.
10545                 (define_attr single_insn): New.
10546                 (define_attr can_delay): Use it.
10547                 (define_attr abicalls): Remove.
10548                 (define_delay): Use can_delay.  Always allow calls to have delay slots.
10549                 (addsi3_internal_2): Add 'Q' constraint.
10550                 (movsi_ulw, movsi_usw, movdi_uld, movdi_usd): Set length to 8.
10551                 (high): Remove.
10552                 (lowsi): Renamed from low.
10553                 (lowdi): New pattern.
10554                 (movdi, movsi): Use mips_legitimize_move.  Remove define_split.
10555                 (lwxc1, ldxc1, swxc1, sdxc1): Set length to 4.
10556                 (loadgp): Change operand 0 to an immediate_operand.
10557                 (tablejump): Use the same patterns for SVR4 PIC but emit a cpadd
10558                 beforehand.
10559                 (cpaddsi, cpadddi): New patterns.
10560                 (tablejump_internal3, tablejump_internal4): Remove define_expands
10561                 and associated define_splits.
10562                 (call, call_value): Use mips_expand_call.
10563                 (call_internal): New, replacing all existing call_internal* insns.
10564                 (call_value_internal): Likewise call_value_internal*.
10565                 (call_value_multiple_internal): Likewise call_value_multiple_internal*.
10566                 (untyped_call): Remove if (operands[0]) magic.
10567                 (prefetch_si_address, prefetch_si): Change type to "prefetch".
10568                 (prefetch_di_address, prefetch_di): Likewise.
10569                 (leasi, leadi): Remove.
10570                 (reloc_gprel16): New.
10571
10572                 * config/mips/5400.md (ir_vr54_hilo): Include const type.
10573                 * config/mips/5500.md (ir_vr55_hilo): Likewise.
10574                 * config/mips/sr71k.md (ir_sr70_hilo): Likewise.
10575
10576         2003-01-08  Eric Christopher  <echristo@redhat.com>
10577
10578                 * config.gcc (mipsisa32*): Change ABI_MEABI to ABI_EABI.
10579                 * config/mips/elf.h (STARTFILE_SPEC): Remove ABI_MEABI references and
10580                 configure check for libgloss.
10581                 * config/mips/elf64.h: Ditto.
10582                 * config/mips/mips.c: Remove ABI_MEABI.
10583                 * config/mips/mips.h: Ditto.
10584
10585         2002-11-05  Richard Sandiford  <rsandifo@redhat.com>
10586
10587                 Fix merge fallout.
10588                 * config/mips/mips.md (mul_acc_si): Reapply 2002-10-16 change.
10589                 (muldi3_internal): Remove outdated comment.
10590                 (*muls_di, *umuls_di): Fix comment and 64-bitness.
10591                 (*smsac_di, *umsac_di): Likewise.  Reformat.
10592                 (umulsi3_highpart): Minor formatting tweaks.
10593                 (umulsi3_highpart_internal): Use only if !ISA_HAS_MULHI.  Remove
10594                 redundant scratch operand.  Minor formatting tweak.
10595                 (umulsi3_highpart_mulhi_internal): Use for !TARGET_64BIT as well.
10596                 (umulsi3_highpart_neg_mulhi_internal): Likewise.  Fix asm template.
10597                 (smulsi3_highpart): As for the unsigned version.
10598                 (smulsi3_highpart_internal): Likewise.
10599                 (smulsi3_highpart_mulhi_internal): Likewise.
10600                 (smulsi3_highpart_neg_mulhi_internal): Likewise.
10601                 (smuldi3_highpart, umuldi3_highpart): Minor formatting tweaks.
10602                 (*smul_acc_di): Remove duplicated pattern.
10603                 (*umul_acc_di, *smul_acc_di): Reapply 2002-10-16 change.
10604                 (anddi3) [unnamed mips16 pattern]: Remove reintroduced length.
10605                 (zero_extendsidi2_internal2): Remove new, but commented-out pattern.
10606
10607         2002-10-22  Eric Christopher  <echristo@redhat.com>
10608
10609                 * config/mips/mips-protos.h (mips_return_addr): New.
10610                 * config/mips/mips.c (mips_return_addr): New.
10611                 (movdi_operand): Remove.
10612                 (se_register_operand): Ditto.
10613                 (se_reg_or_0_operand): Ditto.
10614                 (se_uns_arith_operand): Ditto.
10615                 (se_arith_operand): Ditto.
10616                 (se_nonmemory_operand): Ditto.
10617                 (extend_operator): Ditto.
10618                 (highpart_shift_operator): Ditto.
10619                 (mips_initial_elimination_offset): Remove return address pointer
10620                 elimination.
10621                 (mips_reg_names): Remove $ra.
10622                 (mips_regno_to_class): Ditto.
10623                 * config/mips/mips.h (POINTER_SIZE): Define based on TARGET_LONG64
10624                 and TARGET_64BIT.
10625                 (POINTER_BOUNDARY): Remove.
10626                 (POINTERS_EXTEND_UNSIGNED): Define to 0.
10627                 (PROMOTE_MODE): Promote to Pmode.
10628                 (SHORT_IMMEDIATES_SIGN_EXTEND): Define.
10629                 (Pmode): Define to TARGET_64BIT.
10630                 (FUNCTION_MODE): Define as Pmode.
10631                 (mips_args): Remove deleted functions.
10632                 (SIZE_TYPE): Depend on POINTER_SIZE.
10633                 (PTRDIFF_TYPE): Ditto.
10634                 (FIXED_REGISTERS): Fix extra registers.
10635                 (CALL_USED_REGISTERS): Ditto.
10636                 (CALL_REALLY_USED_REGISTERS): Ditto.
10637                 (RAP_REG_NUM): Remove.
10638                 (RETURN_ADDRESS_POINTER_REGNUM): Ditto.
10639                 (RETURN_ADDR_RTX): Define to mips_return_addr.
10640                 (ELIMINABLE_REGS): Remove RETURN_ADDRESS_POINTER_REGNUM.
10641                 (CAN_ELIMINATE): Ditto.
10642                 * config/mips/mips.md: For DImode patterns, take into account
10643                 deletions above. Split mulsidi patterns into sign_extend and
10644                 zero_extend.
10645
10646         2002-10-16  Richard Sandiford  <rsandifo@redhat.com>
10647                     Michael Meissner  <meissner@redhat.com>
10648
10649                 * config/mips/mips.h (ISA_HAS_MACC): True for normal-mode vr4120 code.
10650                 * config/mips/mips.md (mulsi3_mult3): Add a define_peephole2 to
10651                 mop up unnecessarly moves through LO.
10652                 (*mul_acc_si): Remove vr5400 and vr5500 handling from here.
10653                 (*macc): New pattern for ISA_HAS_MACC.  Add define_peephole2s to
10654                 change mtlo/macc sequences into mul/add sequences when a three-
10655                 address mul is available.
10656                 (*macc2): New pattern.  Add a define_peephole2 to generate it.
10657                 (*mul_sub_si): Fix contraint for operand 5.
10658                 (*muls): Use in 32-bit code as well.
10659                 (*msac): Likewise.  Use msub instead of msac in vr5500 code
10660                 if the destination is LO.  Remove duplicate define_split.
10661                 (*muls_di): Use only in 32-bit code.  Adjust rtl accordingly.
10662                 (*msac_di): Likewise.  Fix formatting.
10663                 (smulsi3_highpart, umulsi3_highpart): Use mulhi in 32-bit code too.
10664                 (*xmulsi3_highpart_internal): Use only if !ISA_HAS_MULHI.
10665                 (*xmulsi3_highpart_mulhi): Use even if !TARGET_64BIT.
10666                 (*xmulsi3_neg_highpart_mulhi): Likewise.
10667                 (*mul_acc_64bit_di): Remove.
10668                 (*mul_acc_di): Use only in 32-bit code.  Handle ISA_HAS_MACC as well.
10669
10670         2002-10-14  Richard Sandiford  <rsandifo@redhat.com>
10671
10672                 * config/mips/vr.h (DRIVER_SELF_SPECS): Define.
10673                 * config/mips/t-vr (MULTILIB_OPTIONS): Remove mlong32.
10674                 (MULTILIB_DIRNAMES): Remove long32.
10675                 (MULTILIB_EXCEPTIONS): Don't build -mabi=32 -mgp32 multilibs.
10676                 (MULTILIB_REDUNDANT_DIRS): Remove.
10677
10678         2002-10-14  Richard Sandiford  <rsandifo@redhat.com>
10679
10680                 * doc/tm.texi (DRIVER_SELF_SPECS): Document.
10681                 * gcc.c (driver_self_specs): New variable.
10682                 (do_self_spec): New function.
10683                 (main): Use it to process driver_self_specs.
10684
10685         2002-10-09  Richard Sandiford  <rsandifo@redhat.com>
10686
10687                 * config/mips/mips.md (one_cmpldi2): Use only if TARGET_64BIT.
10688                 Remove DImode define_split for !TARGET_64BIT.
10689                 (anddi3): Remove !TARGET_64BIT support from here as well.
10690                 Change operand 2's predicate to se_uns_arith_operand.
10691                 Add constant alternatives to define_insn.
10692                 (iordi3, xordi3, *nordi3): Likewise.
10693                 (anddi3_internal1, xordi3_immed): Remove.
10694
10695         2002-10-01  Richard Sandiford  <rsandifo@redhat.com>
10696
10697                 * config/mips/mips.h (PROCESSOR_R4121): Rename to PROCESSOR_R4120.
10698                 (TARGET_MIPS4121): Rename to TARGET_MIPS4120.
10699                 * config/mips/mips.c (mips_cpu_info): Rename vr4121 to vr4120.
10700                 * config/mips/mips.md: Apply same renaming here.
10701
10702         2002-10-01  Richard Sandiford  <rsandifo@redhat.com>
10703
10704                 * config/mips/mips.c (PROCESSOR_R4320, TARGET_MIPS4320): Remove.
10705                 (GENERATE_MULT3_SI): Remove use of TARGET_MIPS4320.
10706                 * config/mips/mips.c (mips_cpu_info): Remove vr4320 entry.
10707                 * config/mips/mips.md (define_attr cpu): Remove r4320.
10708                 Remove vr4320 scheduler and uses of TARGET_MIPS4320.
10709
10710         2002-10-01  Richard Sandiford  <rsandifo@redhat.com>
10711
10712                 * config/mips/mips.c (mips16_strings): New variable.
10713                 (mips_output_function_epilogue): Clear the SYMBOL_REF_FLAG of every
10714                 symbol in mips16_strings.  Free the list.
10715                 (mips_encode_section_info): Keep track of local strings.
10716
10717         2002-10-01  Richard Sandiford  <rsandifo@redhat.com>
10718
10719                 * config/mips/mips.md (bunge, bltgt, bungt): New define_expands.
10720                 (sordered_df, sordered_sf): Remove.
10721                 * config/mips/mips.c (get_float_compare_codes): New fn.
10722                 (gen_int_relational, gen_conditional_move): Use it.
10723
10724         2002-10-01  Richard Sandiford  <rsandifo@redhat.com>
10725
10726                 * config/mips/mips-protos.h (mips_emit_fcc_reload): Declare.
10727                 * config/mips/mips.h (PREDICATE_CODES): Add fcc_register_operand.
10728                 * config/mips/mips.c (fcc_register_operand): New function.
10729                 (mips_emit_fcc_reload): New function, extracted from reload_incc.
10730                 (override_options): Allow TFmode values in float registers
10731                 if ISA_HAS_8CC.
10732                 * cnfig/mips/mips.md (reload_incc): Change destination prediate
10733                 to fcc_register_operand.  Remove misleading source constraint.
10734                 Use mips_emit_fcc_reload.
10735                 (reload_outcc): Duplicate reload_incc.
10736
10737
10738 2003-04-30  Diego Novillo  <dnovillo@redhat.com>
10739
10740         * builtins.def (BUILTIN_CONSTANT_P): Mark as constant.
10741
10742 2003-04-30  Geoffrey Keating  <geoffk@apple.com>
10743
10744         * tree-inline.c (inlinable_function_p): Back out last change, it's
10745         unnecessary.
10746
10747 2003-04-30  Steven Bosscher  <steven@gcc.gnu.org>
10748
10749         * ggc-page.c (TREE_EXP_SIZE): Define.
10750         (extra_order_size_table): New entry for expr trees with
10751         two operands.
10752
10753 2003-04-30  Gabriel Dos Reis <gdr@integrable-solutions.net>
10754
10755         * c-common.c (if_elt): Use location_t in lieu of "file, line" pair.
10756         (c_expand_start_cond): Adjust.
10757         (c_expand_end_cond): Don't use warning_with_file_and_file.
10758         (shadow_warning): Likewise.
10759
10760 2003-04-30  Nathan Sidwell  <nathan@codesourcery.com>
10761
10762         * tree.h (DECL_POINTER_DEPTH): Remove.
10763         (struct tree_decl): Remove pointer_depth.
10764
10765 2003-04-30  Janis Johnson  <janis187@us.ibm.com>
10766
10767         * config/rs6000/linux64.h (ASM_OUTPUT_LABELREF): Remove.
10768         * config/rs6000/rs6000.c (rs6000_elf_strip_name_encoding): Remove.
10769         (rs6000_xcoff_encode_section_info): Remove.
10770         (current_file_function_operand): Use SYMBOL_REF_FLAGS; fix latent bug.
10771         (rs6000_output_mi_thunk): Remove dead code; use SYMBOL_REF_FLAGS.
10772         (small_data_operand, rs6000_emit_move, rs6000_elf_in_small_data_p,):
10773         Use SYMBOL_REF_FLAGS.
10774         (rs6000_elf_encode_section_info): Call default_encode_section_info for
10775         generic flags, use SYMBOL_REF_FLAGS; code cleanups.
10776         * sysv4.h (TARGET_STRIP_NAME_ENCODING, ASM_OUTPUT_LABELREF): Remove.
10777         (SYMBOL_FLAG_SMALL_V4, SYMBOL_REF_SMALL_V4_P): New.
10778         * xcoff.h (TARGET_ENCODE_SECTION_INFO): Remove.
10779         (ASM_DECLARE_FUNCTION_NAME): Remove setting of SYMBOL_REF_FLAG.
10780
10781 2003-04-30  Gabriel Dos Reis <gdr@integrable-solutions.net>
10782
10783         * diagnostic.c (output_pointer): Use HOST_PTR_PRINTF.
10784
10785 2003-04-30  Andreas Schwab  <schwab@suse.de>
10786
10787         * doc/extend.texi (Other Builtins): Enclose multiple word data
10788         type in braces for @deftypefn.
10789
10790 2003-04-30  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10791
10792         * stor-layout.c (mode_for_size_tree): Use BLKmode if SIZE overflows.
10793
10794         * doc/install.texi (--enable-threads): Document "gnat" option.
10795
10796 2003-04-30  Gabriel Dos Reis <gdr@integrable-solutions.net>
10797
10798         * diagnostic.h (output_formatted_scalar): Tweak.
10799         * diagnostic.c (output_long_decimal): Likewise.
10800         (output_unsigned_decimal): Likewise.
10801         (output_long_unsigned_decimal): Likewise.
10802         (output_octal): Likewise.
10803         (output_long_octal): Likewise.
10804         (output_hexadecimal): Likewise.
10805         (output_long_hexadecimal): Likewise.
10806         (output_pointer): New function.
10807         (output_format): Use it.  Recognize "%p" format specifier.
10808
10809 2003-04-30  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
10810
10811         * function.c (purge_addressof_1): Postpone insn in fewer cases.
10812
10813 2003-04-29  Geoffrey Keating  <geoffk@apple.com>
10814
10815         * config/rs6000/host-darwin.c (segv_handler): When -dH is used,
10816         call abort() after running out of stack space.
10817
10818         * c-typeck.c (function_types_compatible_p): Ignore incompatible
10819         'volatile' qualifiers on a function's return type in GNU mode.
10820
10821 2003-04-29  Aldy Hernandez  <aldyh@redhat.com>
10822
10823         * expr.c (emit_group_load): Dump parallels of simd types to
10824         memory.
10825
10826 2003-04-29  Vladimir Makarov  <vmakarov@redhat.com>
10827
10828         * genautomata.c (add_vect): Check undefined value for range type
10829         too.
10830
10831 2003-04-29  Phil Edwards  <pme@gcc.gnu.org>
10832
10833         * configure.in:  More general test for cmp --ignore-initial.
10834         * configure:  Regenerate.
10835
10836 2003-04-29  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10837
10838         * stor-layout.c (mode_for_size_tree): Use tree_low_cst.
10839         (layout_decl, place_field): Likewise.
10840         Also make minor type and whitespace changes.
10841
10842         * tree.c (save_expr): Don't fold a COMPONENT_REF.
10843
10844 2003-04-29  Olivier Hainque <hainque@act-europe.fr>
10845
10846         * calls.c (expand_call): When modes of target and valreg match, force
10847         sibcall failure when target is a MEM.
10848
10849 2003-04-29  Geoffrey Keating  <geoffk@apple.com>
10850
10851         * tree-inline.c (inlinable_function_p): Don't support inlining
10852         functions using varargs.
10853
10854         * doc/invoke.texi (Overall Options): Mention -x objective-c-header.
10855
10856         * dwarf2out.c (output_call_frame_info): No need to output EH
10857         unwind information if all_throwers_are_sibcalls.
10858
10859         * c-semantics.c (expand_unreachable_stmt): Return a tree.
10860         (expand_stmt): Update for change to expand_unreachable_stmt.
10861         (expand_unreachable_if_stmt): Likewise.
10862
10863         * Makefile.in (quickstrap): Pass BOOT_CFLAGS to submake.
10864
10865 2003-04-29  Jason Merrill  <jason@redhat.com>
10866
10867         PR middle-end/10336
10868         * jump.c (never_reached_warning): Really stop looking if we reach
10869         the beginning of the function.
10870
10871 2003-04-29  Bob Wilson  <bob.wilson@acm.org>
10872
10873         * config/xtensa/elf.h (SIZE_TYPE, PTRDIFF_TYPE, USER_LABEL_PREFIX):
10874         Remove redundant macros.
10875         (WCHAR_TYPE, WCHAR_TYPE_SIZE): Change to "short unsigned int".
10876         (LOCAL_LABEL_PREFIX): Define unconditionally.
10877         (NO_DOT_IN_LABEL): Clarify comment.
10878         * config/xtensa/linux.h (WCHAR_TYPE, WCHAR_TYPE_SIZE): Add explicit
10879         definition to "long int".
10880
10881 2003-04-29  Alexander Kabaev  <kan@FreeBSD.ORG>
10882
10883         bootstrap/10452
10884         * gengtype-yacc.y: Improve portability.
10885
10886 2003-04-29  Zack Weinberg  <zack@codesourcery.com>
10887
10888         * config.gcc: Install obsolete target list for GCC 3.3.
10889         * doc/install.texi: Mention in specific-target instructions
10890         that certain configurations are deprecated.
10891
10892 2003-04-29  Zack Weinberg  <zack@codesourcery.com>
10893
10894         * tree.h: Delete no-checking definition of CST_OR_CONSTRUCTOR_CHECK.
10895
10896 2003-04-29  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
10897
10898         * c-pragma.c (maybe_apply_renaming_pragma): Fix typo.
10899         * gcc.c (display_help): Likewise.
10900         * toplev.c (f_options): Likewise.
10901         * params.def (PARAM_MAX_INLINE_SCOPE): Likewise.
10902         * config/c4x/c4x.h (TARGET_SWITCHES): Likewise.
10903         * config/mcore/mcore.h (TARGET_SWITCHES): Likewise.
10904         * config/s390/s390.h (TARGET_SWITCHES): Likewise.
10905         * config/v850/v850.h (TARGET_SWITCHES): Likewise.
10906
10907 2003-04-29  J"orn Rennecke <joern.rennecke@superh.com>
10908
10909         * varasm.c (default_assemble_visibility): Use assemble_name.
10910
10911 2003-04-29  David O'Brien  <obrien@FreeBSD.org>
10912
10913         * config/i386/freebsd64.h (LINK_SPEC): Mirror FreeBSD linker.
10914         * config/rs6000/freebsd.h (LINK_SHLIB_SPEC): New macro.
10915         (SIZE_TYPE): New macro.
10916         * config/i386/freebsd-aout.h (NO_PROFILE_COUNTERS): New macro.
10917         (SET_ASM_OP): New macro.
10918         (HANDLE_SYSV_PRAGMA): New macro.
10919         (ASM_WEAKEN_LABEL): New macro.
10920
10921 2003-04-28  Mark Mitchell  <mark@codesourcery.com>
10922
10923         PR c++/10180
10924         * tree-inline.c (expand_call_inline): Call push_srcloc when
10925         encountering EXPR_WITH_FILE_LOCATION.  Honor warn_inline.
10926
10927 2003-04-28  Mike Stump  <mrs@apple.com>
10928
10929         * gdbinit.in: Update to reflect new identifier structure.
10930
10931 2003-04-28  Zack Weinberg  <zack@codesourcery.com>
10932
10933         * tree.h (TREE_CST_RTL, CST_OR_CONSTRUCTOR_CHECK): Delete.
10934         (struct tree_int_cst, struct tree_real_cst, struct tree_string,
10935         struct tree_complex, struct tree_vector): Remove RTL field.
10936         (CONSTRUCTOR_ELTS): Use elt 0.
10937         * tree.def (CONSTRUCTOR): Delete first of its two operands.
10938         * varasm.c (output_constant_def): Remove early exit if
10939         TREE_CST_RTL is set.  Don't set TREE_CST_RTL.
10940         (decode_addr_const): Don't mention TREE_CST_RTL in comment.
10941         * target.h (select_section): Don't mention TREE_CST_RTL in comment.
10942         * doc/tm.texi (encode_section_info): Don't talk about TREE_CST_RTL.
10943
10944 2003-04-28  Jakub Jelinek  <jakub@redhat.com>
10945
10946         * c-decl.c (finish_decl): When prototype with asmspec is found
10947         for built-in, adjust built_in_decls as well as expr.c decls.
10948         * expr.c (init_block_move_fn, init_block_clear_fn): New functions.
10949         (emit_block_move_libcall_fn, clear_storage_libcall_fn): Use it.
10950         * expr.c (init_block_move_fn, init_block_clear_fn): New prototypes.
10951
10952 2003-04-28  Richard Henderson  <rth@redhat.com>
10953
10954         * config/sparc/sparc.c (print_operand): Add 's' to sign-extend.
10955         * config/sparc/sparc.md (const_mulsidi3_v8plus): Fix mode of
10956         integral constant mult operand.
10957         (const_mulsidi3_sp32, const_mulsidi3_sp64): Likewise.
10958         (const_smulsi3_highpart_v8plus): Likewise.
10959         (const_smulsi3_highpart): Likewise.
10960         (const_umulsidi3_sp32): Likewise; sign-extend it in the output.
10961         (const_umulsidi3_sp64, const_umulsidi3_v8plus): Likewise.
10962         (const_umulsi3_highpart_v8plus): Likewise.
10963         (const_umulsi3_highpart): Likewise.
10964
10965 2003-04-28  David O'Brien  <obrien@FreeBSD.org>
10966
10967         * config/i386/x86-64.h (NO_PROFILE_COUNTERS, HAVE_AS_DWARF2_DEBUG_LINE):
10968         Define as 1.
10969
10970 2003-04-28  David O'Brien  <obrien@FreeBSD.org>
10971
10972         * config/i386/i386.h (builtin_define): Add __amd64 and __amd64__.
10973
10974 2003-04-28  Jakub Jelinek  <jakub@redhat.com>
10975
10976         * builtins.def (BUILT_IN_BCOPY, BUILT_IN_MEMMOVE): New.
10977         * builtin-types.def (BT_FN_VOID_CONST_PTR_PTR_SIZE): New.
10978         * builtins.c (expand_builtin_memmove, expand_builtin_bcopy): New
10979         functions.
10980         (expand_builtin): Handle BUILT_IN_BCOPY and BUILT_IN_MEMMOVE.
10981
10982 2003-04-28  Nick Clifton  <nickc@redhat.com>
10983
10984         * config/arm/elf.h (ASM_OUTPUT_ALIGNED_COMMON): Remove definition.
10985
10986 2003-04-27  Zack Weinberg  <zack@codesourcery.com>
10987
10988         * expr.c (expand_expr <COMPLEX_CST, STRING_CST>): Always call
10989         output_constant_def, use its result instead of TREE_CST_RTL (exp).
10990         Can assume it has the form (mem (symbol_ref ".LCxxx")).
10991         (expand_expr <COMPONENT_REF>): Can always just extract the
10992         relevant field of a CONSTRUCTOR.
10993         (expand_expr <ARRAY_REF, COMPONENT_REF, BIT_FIELD_REF,
10994         ARRAY_RANGE_REF>): Make control flow explicit.
10995         * varasm.c (output_constant_def): Can look at TREE_CST_RTL of
10996         an INTEGER_CST.
10997
10998 2003-04-27  Kazu Hirata  <kazu@cs.umass.edu>
10999
11000         * reload1.c (reg_set_luid): Fix a comment typo.
11001
11002 2003-04-27  Zack Weinberg  <zack@codesourcery.com>
11003
11004         * varasm.c (const_str_htab_hash, const_str_htab_eq, STRHASH,
11005         struct deferred_string, const_str_htab): Kill.
11006         (n_deferred_strings): New static variable.
11007         (build_constant_desc): Set SYMBOL_REF_DECL of the new
11008         symbol_ref to point to the constant.
11009         (output_constant_def): When a deferred string is forced out,
11010         just clear STRING_POOL_ADDRESS_P and decrement n_deferred_strings.
11011         (mark_constant): Likewise.
11012         (maybe_output_constant_def_contents): When deferring a string
11013         constant, just set STRING_POOL_ADDRESS_P and increment
11014         n_deferred_strings.
11015         (mark_constant_pool): Check n_deferred_strings, not the size
11016         of const_str_htab.
11017         (init_varasm_once): No need to create const_str_htab.
11018
11019         * rtl.def, rtl.h, doc/rtl.texi: Document possibility that
11020         SYMBOL_REF_DECL points to a constant.
11021
11022 2003-04-26  Zack Weinberg  <zack@codesourcery.com>
11023
11024         * varasm.c (output_constant_def): Split out two new static
11025         functions, build_constant_desc and maybe_output_constant_def_contents.
11026         Restructure for comprehensibility.  Don't call
11027         output_addressed_constants.  Treat defstr being non-NULL for
11028         STRING_POOL_ADDRESS_P constants as an invariant.
11029         (struct deferred_string): Remove labelno field.
11030         (output_constant_def_contents): Kill labelno argument. Call
11031         output_addressed_constants here.  Use ASM_OUTPUT_LABEL, not
11032         asm_out.internal_label.
11033         (mark_constant): Update call to output_constant_def_contents.
11034         Treat defstr being non-NULL for STRING_POOL_ADDRESS_P
11035         constants as an invariant.
11036
11037 2003-04-26  Richard Henderson  <rth@redhat.com>
11038
11039         * config/i386/i386.c (output_pic_addr_const): Use SYMBOL_REF_LOCAL_P.
11040         (ix86_expand_call, ix86_rtx_consts): Likewise.
11041
11042 2003-04-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11043
11044         * doc/md.texi (cmpstr): Document additional restrictions.
11045
11046 2003-04-26  Neil Booth  <neil@daikokuya.co.uk>
11047
11048         * flags.h (time_report): Remove.
11049         * timevar.c (timevar_enable): New.
11050         (TIMEVAR_ENABLE): Remove, use timevar_enable.
11051         (timevar_init): Rename from init_timevar.
11052         * timevar.h (timevar_init): Rename from init_timevar.
11053         * toplev.c (time_report): Make static.
11054         (do_compile): Conditionally call init_timevar first.
11055         (preprocess_options): Move some code to do_compile.
11056
11057 2003-04-26  Stephane Carrez  <stcarrez@nerim.fr>
11058
11059         * doc/install.texi (Binaries): Mention binaries for HC11/HC12.
11060
11061 2003-04-26  Neil Booth  <neil@daikokuya.co.uk>
11062
11063         * _cpp_lex_direct: Remove pointless code.
11064
11065 2003-04-26 Stephane Carrez <stcarrez@nerim.fr>
11066
11067         * doc/extend.texi (Function Attributes): Document "near" and "far"
11068         for 68HC11 and 68HC12.
11069
11070 2003-04-25  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11071
11072         * expr.c (store_field): When making temporary for store, don't
11073         make it TYPE_QUAL_CONST.
11074
11075 2003-04-25  Phil Edwards  <pme@gcc.gnu.org>
11076
11077         * toplev.c (read_integral_parameter):  Use "argument" in error
11078         message to distinguish it from actual invalid options.
11079
11080 2003-04-25  Bob Wilson  <bob.wilson@acm.org>
11081
11082         * config/xtensa/linux.h (TARGET_OS_CPP_BUILTINS): Back out previous
11083         addition of __PIC__ and __pic__ macros.
11084         * config/xtensa/xtensa.h: Clean up indentation.
11085
11086 2003-04-25  Bob Wilson  <bob.wilson@acm.org>
11087
11088         * config/xtensa/linux.h (TARGET_OS_CPP_BUILTINS): Remove definition of
11089         _GNU_SOURCE.  Add definitions of __PIC__ and __pic__.
11090         (SUBTARGET_CPP_SPEC): Define.
11091         (LIB_SPEC): Delete.
11092         * config/xtensa/xtensa-protos.h (xtensa_declare_object): Delete.
11093         * config/xtensa/xtensa.c (xtensa_declare_object): Delete.
11094         * config/xtensa/xtensa.h (CPP_SPEC, SUBTARGET_CPP_SPEC, EXTRA_SPECS):
11095         Define.
11096         (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL): Delete.
11097         (ASM_OUTPUT_ALIGNED_BSS, BSS_SECTION_ASM_OP): Define.
11098
11099 2003-04-25  H.J. Lu <hjl@gnu.org>
11100
11101         * config/ia64/ia64.c (ia64_expand_compare_and_swap): Add rmode
11102         for return mode.
11103         (ia64_expand_builtin): Set rmode to SImode for
11104         IA64_BUILTIN_BOOL_COMPARE_AND_SWAP_SI,
11105         IA64_BUILTIN_VAL_COMPARE_AND_SWAP_SI and
11106         IA64_BUILTIN_BOOL_COMPARE_AND_SWAP_DI. Set remode to DImode
11107         for IA64_BUILTIN_VAL_COMPARE_AND_SWAP_DI.
11108
11109 2003-04-25  Phil Edwards  <pme@gcc.gnu.org>
11110
11111         * configure.in (make_compare_target):  Test for GNU cmp and set this
11112         variable appropriately.
11113         * Makefile.in (compare, compare3, compare4, compare-lean, compare3-lean,
11114         compare4-lean): Rename actual targets to slowcompare*.  New compare*
11115         targets depend on names based on make_compare_target.
11116         * configure:  Regenerated.
11117
11118 2003-04-25  Richard Henderson  <rth@redhat.com>
11119
11120         * config/ia64/ia64.c (ia64_compute_frame_size): Allow inline asm
11121         to clobber ar.pfs and ar.unat.
11122         (ia64_expand_prologue): Force alloc instruction if ar.pfs saved;
11123         fix test for spilling ar.pfs to the stack.
11124
11125 2003-04-25  Richard Henderson  <rth@redhat.com>
11126
11127         PR opt/10315
11128         * config/rs6000/rs6000.c (rs6000_emit_move): Only elide proper
11129         checks during reload; use validize_mem instead of adjust_address.
11130
11131 2003-04-26  Ben Elliston  <bje@wasabisystems.com>
11132
11133         * config/arm/arm.c (arm_adjust_cost): Correct logic that tests the
11134         return values from recog_memoized().
11135
11136 2003-04-24  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
11137
11138         PR opt/8705
11139         * gcse.c (try_replace_reg): On a successful substitution of a constant
11140         into a single set, try to simplify the source of the set.
11141         * loop.c (scan_loop): Don't try to optimize a MODE_CC set with a
11142         constant source.
11143
11144 2003-04-24  Neil Booth  <neil@daikokuya.co.uk>
11145
11146         * cpplex.c (cpp_token_len): Tighten up.
11147         (cpp_token_as_text): Need extra byte now.
11148         * cpplib.c (glue_header_name): Need extra 2 bytes.
11149         * cppmacro.c (cpp_macro_definition): Need extra byte.
11150
11151 2003-04-24  Alexander Kabaev <kan@FreeBSD.ORG>
11152
11153         * config/sparc/sparc.md (umulsidi3, mulsidi3): Avoid using
11154         const_umulsidi3_sp32 and const_mulsidi3_sp32 on 64bit targets
11155         where they might be not present. Use their _sp64 equivalent
11156         instead.
11157
11158 Thu Apr 24 20:42:12 CEST 2003  Jan Hubicka  <jh@suse.cz>
11159
11160         * i386.md (cvtsi2sdq): Fix typo in previous patch.
11161
11162 2003-04-24  Krister Walfridsson  <cato@df.lth.se>
11163
11164         * configure.in: Check whether mbstowcs works.
11165         * configure, config.in: Regenerate.
11166         * intl.c: Use HAVE_WORKING_MBSTOWCS.
11167
11168 2003-04-24  H.J. Lu <hjl@gnu.org>
11169
11170         * config/ia64/ia64.c (ia64_init_builtins): Add si_ftype_pdi_di_di
11171         for __sync_bool_compare_and_swap_di for int return type.
11172
11173         * config/ia64/ia64intrin.h (__sync_bool_compare_and_swap_di):
11174         Change return type to int.
11175         (__sync_bool_compare_and_swap): Likewise.
11176
11177 Thu Apr 24 16:55:26 CEST 2003  Jan Hubicka  <jh@suse.cz>
11178
11179         * cfgbuild.c (make_edges):  Do not use next_nonnote_insn when
11180         looking for fallthru edge.
11181
11182         * athlon.md (athlon-agu, athlon-store, athlon-fany, athlon-faddmul):
11183         Fix.
11184         (athlon-load2, athlon-store2, athlon-fpsched, athlon-fpload,
11185         athlon-fvector): New.
11186         (athlon_*): Revisit to match new optimization guide.
11187         * i386.c (ix86_adjust_cost):  Fix memory operand costs on Athlon/k8
11188         * i386.md (cvt??2?? patterns): Fix modes.
11189         (fistp patterns): Set modes.
11190
11191         Accidentaly commited with my earlier reload patch:
11192         PR c/10308
11193         * reload.c (find_reloads_address_1): Reload plus at the place of
11194         index register.
11195
11196 2003-04-24  Nathan Sidwell  <nathan@codesourcery.com>
11197
11198         New GCOV_TAG_FUNCTION layout
11199         * coverage.c (struct function_list): Replace name with ident.
11200         (struct counts_entry): Likewise.
11201         (fn_ident): New.
11202         (htab_counts_entry_hash, htab_counts_entry_eq,
11203         htab_counts_entry_del): Adjust.
11204         (reads_count_file, get_coverage_counts,
11205         coverage_begin_output, coverage_end_function): Adjust.
11206         (build_fn_info_type, build_fn_info_value): Likewise.
11207         * gcov-dump.c (tag_function): Adjust.
11208         * gcov-io.c (gcov_write_string, gcov_read_string): Not in LIBGCOV.
11209         * gcov-io.h (gcov_write_string, gcov_read_string): Not in LIBGCOV.
11210         * gcov.c (struct function_info): Add ident.
11211         (read_graph_file, read_count_file): Adjust.
11212         * libgcov.c (gcov_exit): Adjust.
11213
11214 2003-04-23  Richard Henderson  <rth@redhat.com>
11215
11216         PR opt/8300
11217         * toplev.c (rest_of_compilation): Delay no_new_pseudos until
11218         after initialize_uninitialized_subregs; update reg info assuming
11219         new pseudos were created.
11220
11221 2003-04-23  Neil Booth  <neil@daikokuya.co.uk>
11222
11223         * Makefile.in (c-lex.o, LIBCPP_OBJS, cpplex.o): Update.
11224         * c-lex.c (MULTIBYTE_CHARS): Remove conditionals.
11225         (lex_string): Take cpp_string with full spelling.
11226         (cb_ident): Update.
11227         (c_lex): Update diagnostics.
11228         * cpplex.c (SPELL_NUMBER, SPELL_STRING): Combine into SPELL_LITERAL.
11229         (create_literal): New.
11230         (lex_string): Unterminated literals have type CPP_OTHER.
11231         (_cpp_lex_direct): Update calls to lex_string.  Use create_literal
11232         for CPP_OTHER.
11233         (cpp_token_len, cpp_spell_token, cpp_output_token): Simplify.
11234         (_cpp_equiv_tokens, cpp_interpret_charconst): Update.
11235         * cpplib.c (parse_include, do_line, do_linemarker,
11236         destringize_and_run): Update for token storing full spelling.
11237         * cpplib.h: Update token spelling types.
11238         * cppmacro.c (stringify_arg, check_trad_stringification):
11239         Update for token storing full spelling.
11240
11241 2003-04-23  Ulrich Weigand  <uweigand@de.ibm.com>
11242
11243         * config/s390/s390.c (s390_expand_cmpstr): Disable CLC loop.
11244
11245 2003-04-23  Richard Earnshaw  <rearnsha@arm.com>
11246
11247         * arm.h (TARGET_OPTIONS): Add value field.
11248
11249 2003-04-23  Mark Mitchell  <mark@codesourcery.com>
11250
11251         * doc/extend.texi: Remove duplicate 2003 copyright date.
11252
11253 2003-04-23  Nathan Sidwell  <nathan@codesourcery.com>
11254
11255         * Makefile.in (LIBGCC_DEPS): Add gcov headers.
11256         (libgcov.a): Depends on LIBGCC_DEPS.
11257         * basic-block.h (profile_info): Moved here from coverage.h. Made
11258         a pointer.
11259         * coverage.c (struct function_list): Fixed array of counter types.
11260         (struct counts_entry): Keyed by counter type, contains summary.
11261         (profile_info): Moved to profile.c.
11262         (prg_ctr_mask, prg_n_ctrs, fn_ctr_mask, fn_n_ctrs): New global
11263         vars.
11264         (profiler_label): Remove.
11265         (ctr_labels): New.
11266         (set_purpose, label_for_tag, build_counter_section_fields,
11267         build_counter_section_value, build_counter_section_data_fields,
11268         build_counter_section_data_values, build_function_info_fields,
11269         build_function_info_value, gcov_info_fields, gcov_info_value): Remove.
11270         (build_fn_info_type, build_fn_info_value, build_ctr_info_type,
11271         build_ctr_info_value, build_gcov_info): New.
11272         (htab_counts_entry_hash, htab_counts_entry_eq): Adjust.
11273         (reads_counts_file): Adjust.
11274         (get_coverage_counts): Takes counter number. Add summary
11275         parameter. Adjust.
11276         (coverage_counter_ref): Tkaes counter number. Adjust. Lazily
11277         create counter array labels.
11278         (coverage_end_function): Adjust.
11279         (create_coverage): Adjust.
11280         (find_counters_section): Remove.
11281         * coverage.h (MAX_COUNTER_SECTIONS): Remove.
11282         (struct section_info, struct profile_info): Remove.
11283         (profile_info): Moved to basic-block.h.
11284         (coverage_counter_ref): Takes a counter number.
11285         (get_coverage_counts): Takes a counter number. Added summary
11286         parameter.
11287         (find_counters_section): Remove.
11288         * gcov-dump.c (tag_arc_counts): Rename to ...
11289         (tag_counters): ... here. Adjust.
11290         (tag_table): Move tag_counters to 3rd entry. Remove
11291         PROGRAM_PLACEHOLDER and PROGRAM_INCORRECT entries.
11292         (dump_file): Check for counter tag values here.
11293         (tag_summary): Adjust.
11294         * gcov-io.c (gcov_write_summary, gcov_read_summary): Adjust.
11295         * gcov-io.h (GCOV_LOCKED): New.
11296         (GCOV_TAG_ARC_COUNTS): Rename to ...
11297         (GCOV_TAG_COUNTS_BASE): ... here.
11298         (GCOV_TAG_PLACEHOLDER_SUMMARY, GCOV_TAG_INCORRECT_SUMMARY):
11299         Remove.
11300         (GCOV_COUNTER_ARCS, GCOV_COUNTERS, GCOV_NAMES): New.
11301         (GCOV_TAG_FOR_COUNTER, GCOV_COUNTER_FOR_TAG,
11302         GCOV_TAG_IS_COUNTER): New.
11303         (struct gcov_ctr_summary): New.
11304         (struct gcov_summary): Adjust.
11305         (struct gcov_counter_section): Remove.
11306         struct gcov_counter_section_data): Remove.
11307         (struct gcov_function_info): Rename to ...
11308         (struct gcov_fn_info): ... here. Adjust.
11309         (struct gcov_ctr_info): New.
11310         (struct gcov_info): Adjust.
11311         * gcov.c (read_count_file): Adjust.
11312         (output_lines): Adjust.
11313         * libgcov.c (gcov_exit): Adjust.
11314         (__gcov_flush): Adjust.
11315         * mklibgcc.in (libgcc2_c_dep): Add gcov headers.
11316         * predict.c (maybe_hot_bb_p, probably_cold_bb_p,
11317         probably_never_executed_bb_p, compute_frequency_function): Adjust
11318         profile_info use.
11319         * profile.c (struct counts_entry): Remove.
11320         (profile_info): Define here.
11321         (get_exec_counts): Adjust get_coverage_counts call.
11322         (compute_branch_probablilities): Remove find_counters_section
11323         call.
11324         (gen_edge_profiler): Adjust coverage_counter_ref call.
11325         * tracer.c (tail_duplicate): Adjust profile_info use.
11326
11327 2003-04-23  Roger Sayle  <roger@eyesopen.com>
11328
11329         PR optimization/10339
11330         * builtins.c (expand_builtin_strcmp): Try to emit cmpstrsi insn
11331         directly instead of unsafely transforming call into a memcmp.
11332         (expand_builtin_strncmp): Likewise.
11333
11334 2003-04-22  Roger Sayle  <roger@eyesopen.com>
11335
11336         * alias.c (mark_constant_function):  Check for constancy and
11337         purity even of void functions.  Update both the function decl
11338         and the cgraph RTL info with the results.
11339
11340 2003-04-22  Roger Sayle  <roger@eyesopen.com>
11341
11342         * real.c (do_add): Change to return a bool indicating that the
11343         result of the operation may be inexact due to loss of precision.
11344         (do_multiply): Likewise.
11345         (do_divide): Likewise.
11346
11347 2003-04-22  Geoffrey Keating  <geoffk@apple.com>
11348             Loren James Rittle  <ljrittle@acm.org>
11349
11350         * dwarf2out.c (fde_table_allocated): Mark with GTY.
11351         (decl_die_table_allocated): Likewise.
11352         (abbrev_die_table_allocated): Likewise.
11353         (line_info_table_allocated): Likewise.
11354         (separate_line_info_table_allocated): Likewise.
11355         (pubname_table_allocated): Likewise.
11356         (arange_table_allocated): Likewise.
11357         (ranges_table_allocated): Likewise.
11358         (decl_die_table_in_use): Unconditionalize; mark with GTY.
11359         (abbrev_die_table_in_use): Likewise.
11360         (line_info_table_in_use): Likewise.
11361         (separate_line_info_table_in_use): Likewise.
11362         (pubname_table_in_use): Likewise.
11363         (arange_table_in_use): Likewise.
11364         (ranges_table_in_use): Likewise.
11365         (have_location_lists): Likewise.
11366         (emitcount): New GTY-marked static, moved...
11367         (maybe_emit_file): ...from here.
11368         (label_num): New GTY-marked static, moved...
11369         (gen_internal_sym): ...from here.
11370
11371 2003-04-22  Richard Henderson  <rth@redhat.com>
11372
11373         PR 8866
11374         * rtl.h (MEM_NOTRAP_P): New.
11375         (MEM_COPY_ATTRIBUTES): Copy it.
11376         * rtlanal.c (may_trap_p): Check it.
11377         * expr.c (do_tablejump): Set it.
11378         * doc/rtl.texi (Flags): Document it.
11379
11380         * cfgrtl.c (try_redirect_by_replacing_jump): Revert last three changes.
11381
11382 2003-04-22  Olivier Hainque  <hainque@act-europe.fr>
11383
11384         * config/alpha/alpha.c (alpha_expand_prologue [OPEN_VMS_ABI]): Don't
11385         set FRP on stack adjustment for outgoing args if frame_pointer_needed.
11386
11387 2003-04-22  Vincent Celier <celier@gnat.com>
11388
11389         * gthr-gnat.h, gthr-gnat.c: new sources for implementation of
11390         --enable-threads=gnat.
11391         * Makefile.in: Add gthr-gnat.c to LIB2ADDEH.
11392         * configure.in: Add gnat to the list of thread packages
11393         * configure: Rebuild.
11394         * config/t-linux: Add gthr-gnat.c to LIB2ADDEH and LIB2ADDEHDEP
11395
11396 2003-04-22  Neil Booth  <neil@daikokuya.co.uk>
11397
11398         * cpplex.c (_cpp_get_fresh_line): Pop the buffer if return_at_eof.
11399
11400 2003-04-22  Devang Patel  <dpatel@apple.com>
11401
11402         * cpptrad.c (_cpp_replacement_text_len): Add check for macro
11403         parameter count.
11404         (_cpp_copy_replacement_text): Same.
11405
11406 2003-04-22  Neil Booth  <neil@daikokuya.co.uk>
11407
11408         * c-lex.c (c_lex): Handle CPP_OTHER differently.
11409         * cppexp.c (_cpp_parse_expr): Similarly.
11410         * cpplex.c (SPELL_CHAR): Remove.
11411         (_cpp_lex_direct): Stray chars are saved as byte strings.
11412         (cpp_spell_token, cpp_output_token, _cpp_equiv_token): Don't
11413         handle SPELL_CHAR.
11414         (cpp_avoid_paste): Update handling of CPP_OTHER.
11415         * cpplib.h: Spell CPP_OTHER like a number.
11416         (struct cpp_token): Remove member c.
11417         * cppmacro.c (stringify_arg): Update handling of CPP_OTHER.
11418
11419 2003-04-22  David Turner <novalis@gnu.org>
11420
11421         * gbl-ctors.h: Add special license exception.
11422         * libgcc2.h: Likewise.
11423         * tsystem.h: Likewise.
11424         * gcov-io.h: Likewise.
11425
11426 2003-04-22  David Edelsohn  <edelsohn@gnu.org>
11427
11428         * fold-const.c (fold_range_test): Use RANGE_TEST_NON_SHORT_CIRCUIT
11429         macro defaulting to original BRANCH_COST heuristic.
11430         * doc/tm.texi (RANGE_TEST_NON_SHORT_CIRCUIT): Document.
11431
11432         * config/rs6000/rs6000.h (RANGE_TEST_NON_SHORT_CIRCUIT): Define.
11433
11434 2003-04-22  Aldy Hernandez  <aldyh@redhat.com>
11435
11436         * config/rs6000/t-spe: Merge in t-fprules into file.
11437
11438         * config.gcc: Add t-spe to powerpc-eabispe.
11439
11440 2003-04-22  Kean Johnston  <jkj@sco.com>
11441
11442         * tlink.c (recompile_files): Add missing '=' to putenv calls
11443
11444 2003-04-22  Nathan Sidwell  <nathan@codesourcery.com>
11445
11446         * ginclude/stddef.h: Provide C++ safe offsetof.
11447
11448 2003-04-22  J"orn Rennecke <joern.rennecke@superh.com>
11449
11450         * function.c (purge_addressof_1): In (mem (addressof (reg))) case
11451         for reg notes, if there are no substitutions, just use a SUBREG.
11452
11453 2003-04-21  Mark Mitchell  <mark@codesourcery.com>
11454
11455         * Makefile.in (calls.o): Depend on except.h.
11456         * calls.c: Include except.h.
11457         (emit_call_1): Call note_eh_region_may_contain_throw if
11458         appropriate.
11459         * except.c (eh_region): Add may_contain_throw.
11460         (expand_eh_region_end_cleanup): Do not include handler code when
11461         it cannot be reached.
11462         (note_eh_region_may_contain_throw): New function.
11463         * except.h (note_eh_region_may_contain_throw): New function.
11464
11465 2003-04-21  Mark Mitchell  <mark@codesourcery.com>
11466
11467         * config/i386/winnt.c (i386_pe_mark_dllimport): Revert previous
11468         changes.
11469
11470 2003-04-21  Aldy Hernandez  <aldyh@redhat.com>
11471
11472         * config/rs6000/rs6000.c (rs6000_override_options): No SPE means
11473         64-bit long doubles.
11474
11475 2003-04-21  Olivier Hainque  <hainque@act-europe.fr>
11476
11477         * fold-const.c (fold, case PLUS_EXPR and case MULT_EXPR): Restore
11478         a number of conversions required for type consistency and previously
11479         stripped off by STRIP_NOPS.
11480
11481         * calls.c (expand_call): Prevent sibcall optimization for calls to
11482         nested subprograms.
11483
11484         * expmed.c (extract_bit_field): Reverse operands of && condition to
11485         prevent a potential division by zero in the previously first branch.
11486         * config/pa/pa.md (extv, extzv): FAIL if the bitfield length is zero.
11487
11488 2003-04-21  Joel Brobecker  <brobecker@gnat.com>
11489
11490         * dwarf2out.c (is_ada, is_ada_subrange_type): New functions.
11491         (subrange_type_die): Likewise.
11492         (modified_type_die): Emit a subrange_type DIE for Ada subrange types.
11493         (is_c_family, is_cxx, is_java, is_fortran): Return bool and clean up.
11494
11495 2003-04-21  Nathan Sidwell  <nathan@codesourcery.com>
11496
11497         Break out coverage routines to new file.
11498         * Makefile.in (COVERAGE_H): New variable
11499         (C_OBJS): Add coverage.o
11500         (coverage.o): New target.
11501         (profile.o, loop-init.o, sched-ebb.o, predict.o, tracer.o): Adjust
11502         dependencies.
11503         (GTFILES): Adjust.
11504         (gt-coverage.h): New target.
11505         (gt-profile.h): Remove.
11506         * profile.h: Remove. Move to ...
11507         * coverage.h: ... here. New. #include gcov-io.h.
11508         * gcov-io.h: Move function definitions to ...
11509         * gcov-io.c: ... here. New.
11510         * profile.c: Move coverage routines to coverage.c.
11511         (instrument_edges, get_exec_counts, branch_prob, init_branch_prob,
11512         end_branch_prob): Adjust.
11513         * coverage.c: New. Coverage routines from profile.c
11514         (coverage_counter_ref, coverage_init, coverage_finish,
11515         coverage_end_function, coverage_begin_output,
11516         coverage_counter_ref, get_coverage_counts): Define.
11517         * gcov-dump.c, gcov.c: #include gcov-io.c.
11518         * libgcov.c: Likewise. Adjust.
11519         * loop-init.c: Don't #include profile.h
11520         * tracer.c, predict.c, sched-ebb.c: Adjust #includes.
11521         * rtl.h: Add coverage prototypes.
11522         * toplev.c (compile_file): Init coverage, not branch_prob.
11523         Always call coverage_finish.
11524         (rest_of_compilation): Call coverage_end_function.
11525
11526 2003-04-21  Matt Kraai  <kraai@alumni.cmu.edu>
11527
11528         * config/rs6000/rs6000.md (*movsf_softfloat): Add "h" <- "0" case.
11529
11530 2003-04-21  Neil Booth  <neil@daikokuya.co.uk>
11531
11532         * c-ppoutput.c (cb_include): Don't take a cpp_token.
11533         * cppfiles.c: Don't undef strcmp.
11534         (find_include_file): Don't take a cpp_token.  Check for empty
11535         file names.
11536         (_cpp_execute_include, _cpp_compare_file_date): Don't take a cpp_token.
11537         (cpp_push_include): Simplify.
11538         * cpphash.h (_cpp_execute_include, _cpp_compare_file_date): Update.
11539         * cpplib.c (glue_header_name): Return the file name, not a cpp_token.
11540         (parse_include): Similary.  Don't check for zero-length filenames.
11541         (do_include_common, do_pragma_dependency): Update accordingly.
11542         * cpplib.h (struct cpp_callbacks): Change prototype of include.
11543
11544 2003-04-21  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11545
11546         * doc/rtl.texi (RTX_UNCHANGING_P): Point to true_dependence for
11547         details of conflict handling.
11548
11549         * fold-const.c (extract_muldiv, case CONVERT_EXPR): Detect case
11550         when conversion overflows.
11551
11552         * stor-layout.c (layout_decl): Don't set DECL_SIZE_UNIT if already set.
11553
11554         * expr.c (store_constructor): Set RTX_UNCHANGING_P if readonly_field_p
11555         before clearing.
11556
11557 2003-04-21  Mark Mitchell  <mark@codesourcery.com>
11558
11559         * config/i386/winnt.c (i386_pe_mark_dllimport): Make the new RTL
11560         have the same form as the old RTL.
11561
11562 2003-04-21  Andreas Jaeger  <aj@suse.de>
11563
11564         * cppcharset.c (_cpp_valid_ucn): Cast field precision to int.
11565
11566 2003-04-20  Chris Lattner  <sabre@nondot.org>
11567             Zack Weinberg  <zack@codesourcery.com>
11568
11569         * c-common.h, c-semantics.c: Rename genrtl_decl_cleanup to
11570         genrtl_cleanup_stmt.  Correct comment at head of
11571         genrtl_cleanup_stmt (no such thing as a DECL_CLEANUP).
11572
11573         * stmt.c (struct nesting): Kill n_function_calls.
11574         (expand_start_bindings): Don't set
11575         thisblock->data.block.n_function_calls.
11576         (expand_end_bindings): Compare function_call_count against 0.
11577         (expand_cleanups): Kill DONT_DO argument; all callers passed
11578         NULL_TREE. All callers updated to match.
11579
11580 2003-04-20  Zack Weinberg  <zack@codesourcery.com>
11581
11582         * varasm.c (struct deferred_constant, defer_addressed_constants_flag)
11583         (defer_addressed_constants, output_deferred_addressed_constants): Kill.
11584         (output_constant_def): Remove code predicated on
11585         defer_addressed_constants_flag.
11586
11587         * output.h: Remove prototypes of deleted functions.
11588         * c-typeck.c (constructor_subconstants_deferred): Kill.
11589         (struct initializer_stack): Remove 'deferred' field.
11590         (start_init): Remove all references to the above.
11591         (finish_init): Likewise. Also remove never-executed call to
11592         output_deferred_addressed_constants.  Pull assignment to
11593         defstr out of if expression.
11594
11595 2003-04-20  Neil Booth  <neil@daikokuya.co.uk>
11596
11597         * cpphash.h (NOTE_ESC_NL, NOTE_ESC_SPACE_NL, NOTE_TRIGRAPH,
11598         NOTE_NEWLINE): Remove.
11599         * cpplex.c (_cpp_clean_line, _cpp_process_line_notes): Update
11600         to handle new form of line note type.
11601
11602 2003-04-20  Zack Weinberg  <zack@codesourcery.com>
11603
11604         * target.h (encode_section_info): Add new argument carrying
11605         the RTL to be modified by the hook.
11606
11607         * varasm.c (make_decl_rtl, output_constant_def): Update calls
11608         to encode_section_info.
11609         (default_encode_section_info): Take and use RTL argument,
11610         don't use TREE_CST_RTL or DECL_RTL.
11611         * output.h: Update prototype of default_encode_section_info.
11612         * config/darwin.h (ASM_DECLARE_OBJECT_NAME)
11613         (ASM_DECLARE_FUNCTION_NAME, ASM_OUTPUT_ALIGNED_DECL_LOCAL):
11614         Update calls to encode_section_info.
11615
11616         * config/darwin.c, config/arm/arm.c, config/arm/pe.c
11617         * config/h8300/h8300.c, config/i386/winnt.c, config/m32r/m32r.c
11618         * config/m68hc11/m68hc11.c, config/m88k/m88k.c, config/mcore/mcore.c
11619         * config/mips/mips.c, config/mmix/mmix.c, config/pa/pa.c
11620         * config/romp/romp.c, config/rs6000/rs6000.c, config/s390/s390.c
11621         * config/v850/v850.c (TARGET_ENCODE_SECTION_INFO definitions):
11622         Take and use RTL argument, don't use TREE_CST_RTL or DECL_RTL,
11623         except for PE dllimport/dllexport.  Update calls to
11624         default_encode_section_info.
11625
11626         * config/darwin-protos.h, config/arm/arm-protos.h, config/i386-protos.h:
11627         Update prototypes.
11628
11629         * doc/tm.texi (TARGET_ENCODE_SECTION_INFO): Update.
11630
11631 2003-04-20  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
11632
11633         PR/8705
11634         * pa.md (movccfp): New expander.
11635         (setccfp0, setccfp1): Rename to movccfp0 and movccfp1, respectively.
11636         Reverse fcmp conditions.
11637
11638 2003-04-20  Marek Michalkiewicz  <marekm@amelek.gda.pl>
11639
11640         * config/avr/avr.md (*cmpqi_sign_extend): Handle negative values
11641         of operand 1 correctly.
11642
11643 2003-04-20  Nathan Sidwell  <nathan@codesourcery.com>
11644
11645         * cpplex.c (_cpp_lex_direct): Set BOL for CPP_EOF tokens.
11646         * gcov.c (output_lines): Don't be so fussy about going past EOF.
11647
11648 2003-04-20  Neil Booth  <neil@daikokuya.co.uk>
11649
11650         * Makefile.in (LIBCPP_OBJS): Add cppcharset.o.
11651         (cppcharset.o): New target.
11652         * c-lex.c (is_extended_char): Move to cppcharset.c.
11653         (utf8_extend_token): Delete.
11654         * cppcharset.c: New file.
11655         * cpphash.h (_cpp_valid_ucn): New.
11656         * cpplex.c (lex_identifier): Update prototype.
11657         (continues_identifier_p): Rename forms_identifier_p.  Handle UCN
11658         escapes.
11659         (maybe_read_ucs): Rename maybe_read_ucn.  Update to use code
11660         in cppcharset.c.
11661         (lex_number, lex_identifier, cpp_parse_escape): Update.
11662         (_cpp_lex_direct): Update to handle UCNs.
11663         (cpp_avoid_paste): Don't paste to form a UCN.
11664
11665 2003-04-19  Roger Sayle  <roger@eyesopen.com>
11666
11667         * builtins.c (expand_builtin):  Don't expand a pure or const
11668         built-in function if the result will be ignored and none of
11669         its arguments are volatile.
11670
11671 2003-04-19  Kean Johnston  <jkj@sco.com>
11672
11673         * unwind-dw2.c (_Unwind_GetCFA): cast return to avoid warning
11674         * config.gcc: make SCO use dbxelf.h and elfos.h; only use one
11675         target fragment now: t-sco5; dont compile crti.o.
11676         * config/i386/sco5.h: major overhaul to remove all COFF remnants
11677         and to use elfos.h for most definitions.
11678         (BSS_SECTION_ASM_OP): set correct segment attributes.
11679         (PREFERED_DEBUGGING_TYPE): set to DWARF-2.
11680         (DWARF2_UNWIND_INFO): Always set to 1.
11681         (MD_STARTFILE_PREFIX): Make /usr/gnu/lib the default.
11682         (MD_STARTFILE_PREFIX_1): Define.
11683         (MD_EXEC_PREFIX): Adjust to /usr/gnu/bin if using GAS.
11684         (DEFAULT_LINKER): Define if not specified to configure.
11685         (CTORS_SECTION_ASM_OP): Remove COFF crud.
11686         (DTORS_SECTION_ASM_OP): Remove COFF crud.
11687         (WINT_TYPE): Define.
11688         (SDB_DEBUGGING_INFO): Remove.
11689         (EXTRA_SECTIONS): Likewise.
11690         (EXTRA_SECTION_FUNCTIONS): Likewise.
11691         (CTOR_LIST_BEGIN): Likewise.
11692         (CTOR_LIST_END): Likewise.
11693         (INIT_SECTION_FUNCTION): Likewise.
11694         (FINI_SECTION_FUNCTION): Likewise.
11695         (SUBTARGET_FRAME_POINTER_REQUIRED): Likewise.
11696         (LOCAL_LABEL_PREFIX): Likewise.
11697         (NON_SAVING_SETJMP): Likewise.
11698         (RETURN_POPS_ARGS): Likewise.
11699         (ASM_OUTPUT_SKIP): Likewise.
11700         (TARGET_ASM_NAMED_SECTION): Likewise.
11701         (ASM_OUTPUT_INTERNAL_LABEL): Likewise.
11702         (ASM_OUTPUT_EXTERNAL_LIBCALL): Likewise.
11703         (ASM_OUTPUT_IDENT): Likewise.
11704         (ASM_OUTPUT_CASE_LABEL): Likewise.
11705         (ASM_OUTPUT_ASCII): Likewise.
11706         (ASM_OUTPUT_LIMITED_STRING): Likewise.
11707         (ASM_OUTPUT_ALIGNED_LOCAL): Likewise.
11708         (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
11709         (ASM_GENERATE_INTERNAL_LABEL): Likewise.
11710         (ASM_FINISH_DECLARE_OBJECT): Likewise.
11711         (ASM_DECLARE_OBJECT_NAME): Likewise.
11712         (ASM_DECLARE_FUNCTION_SIZE): Likewise.
11713         (ASM_DECLARE_FUNCTION_NAME): Likewise.
11714         (ASM_DECLARE_RESULT): Likewise.
11715         (ASM_WEAKEN_LABEL): Likewise.
11716         (SUPPORTS_WEAK): Likewise.
11717         (APPLY_RESULT_SIZE): Likewise.
11718         (LPREFIX): Likewise.
11719         (ALIGN_ASM_OP): Likewise.
11720         (ASCII_DATA_ASM_OP): Likewise.
11721         (IDENT_ASM_OP): Likewise.
11722         (ASM_SHORT): Likewise.
11723         (ASM_LONG): Likewise.
11724         (TYPE_ASM_OP): Likewise.
11725         (SIZE_ASM_OP): Likewise.
11726         (STRING_ASM_OP): Likewise.
11727         (SKIP_ASM_OP): Likewise.
11728         (EH_FRAME_SECTION_ASM_OP): Likewise.
11729         (READONLY_DATA_SECTION_ASM_OP): Likewise.
11730         (INIT_SECTION_ASM_OP): Likewise.
11731         (FINI_SECTION_ASM_OP): Likewise.
11732         (TEXT_SECTION_ASM_OP): Likewise.
11733         (DATA_SECTION_ASM_OP): Likewise.
11734         (TYPE_OPERANT_FORMAT): Likewise.
11735         (ASM_SPEC): Remove COFF code.
11736         (STARTFILE_SPEC): Likewise. Always use crti.o; add -p and -pp support;
11737         cause -pg to emit an error; use pcrt1elf.o with -pp
11738         (ENDFILE_SPEC): Likewise.
11739         (TARGET_OS_CPP_BUILTINS): Add _SCO_DS_LL.
11740         (CPP_SPEC): Remove COFF crud; always look in /usr/gnu/include first.
11741         (LINK_SPEC): Remove COFF crud; use -E for environment switch not -R;
11742         add -z alt_resolve to support weak symbols the way GCC wants them.
11743         (LIB_SPEC): Use the profiler libraries in -p or -pp mode.
11744         (LIBGCC_SPEC): Dont use -lgcc in -G mode.
11745         (ASM_PREFERED_EH_DATA_FORMAT): Remove.
11746         * config/i386/t-sco5 (TARGET_LIBGCC2_CFLAGS): Remove.
11747         (CRTSTUFF_T_CFLAGS_S): Define.
11748         (MULTILIB_OPTIONS): Likewise.
11749         (MULTILIB_DIRNAMES): Likewise.
11750         (MULTILIB_MATCHES): Likewise.
11751         (MULTILIB_EXTRA_OPTS): Likewise.
11752         (LIBGCC): Likewise.
11753         (INSTALL_LIBGCC): Likewise.
11754         (crti.o): Remove.
11755         * config/i386/t-sco5gas: Remove.
11756         * doc/install.texi: Updated for new OpenServer instructions.
11757         * testsuite/gcc.dg/nest.c: Allow failure on SCO (-pg not supported)
11758
11759 2003-04-19  Kean Johnston  <jkj@sco.com>
11760
11761         * fixinc/check.tpl: Allow user to over-ride diff program.
11762         * fixinc/inclhack.def: Removed extraneous #ifndef SVR5.
11763         (sco_math): Added test for SCO math header files.
11764         (sco_regset): Added check for conflicts with ieeefp.h.
11765         (svr4_disable_opt): Removed extraneous #ifdef SVR4.
11766         * fixinc/fixincl.x: Regenerated
11767         * fixinc/tests/base/math.h: Added sco_math tests.
11768         * fixinc/tests/base/string.h: New file.
11769         * fixinc/tests/base/sys/regset.h: New file.
11770
11771 2003-04-19  Neil Booth  <neil@daikokuya.co.uk>
11772
11773         * cpphash.h (struct cpp_buffer): Remove backup_to.
11774         * cpplex.c (BACKUP, get_effective_char): Die.
11775         (_cpp_skip_block_comment): Assume '*' is location on entry.
11776         (continues_identifier_p): Respect -fno-dollars-in-identifiers.
11777         (IF_NEXT_IS): Update.
11778         (_cpp_lex_direct): Don't use backup_to; look ahead directly.
11779
11780 2003-04-19  Matt Kraai  <kraai@alumni.cmu.edu>
11781
11782         * README.Portability: Move to a new section and obsolete K+R
11783         portability issues.
11784
11785 Sat Apr 19 14:56:17 CEST 2003  Jan Hubicka  <jh@suse.cz>
11786
11787         * rtlanal.c (subreg_offset_representable_p):  Fix call of
11788         subreg_lowpart.
11789
11790 2003-04-19  Neil Booth  <neil@daikokuya.co.uk>
11791
11792         * cpphash.h (struct cpp_reader): New member warned_dollar.
11793         * cpplex.c (continues_identifier_p): New function.
11794         (parse_identifier, parse_number, parse_string): Rename lex_identifer,
11795         lex_number and lex_string, and simplify.
11796         (parse_slow, unescaped_terminator_p): Die.
11797         (_cpp_lex_direct): Update.
11798
11799 2003-04-19  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11800
11801         * calls.c (expand_call): Provide init for old_stack_pointer_delta.
11802
11803 2003-04-19  Nathan Sidwell  <nathan@codesourcery.com>
11804
11805         * doc/invoke.texi (-fprofile-arcs): Mention -lgcov, locking and
11806         fork behavior.
11807
11808 2003-04-19  Neil Booth  <neil@daikokuya.co.uk>
11809
11810         * cppexp.c (eval_token): Permit true and false even if pedantic.
11811
11812 2003-04-19  Neil Booth  <neil@daikokuya.co.uk>
11813
11814         * cpplex.c (skip_whitespace): Rearrange to avoid stage1 ICE.
11815
11816 2003-04-19  Neil Booth  <neil@daikokuya.co.uk>
11817
11818         * cppfiles.c (ENABLE_VALGRIND_CHECKING, VALGRIND_DISCARD,
11819         MMAP_THRESHOLD, TEST_THRESHOLD, SHOULD_MMAP): Remove.
11820         (struct include_file): Remove fefcnt, mapped members.
11821         (open_file, stack_include_file, _cpp_pop_file_buffer): Disable caching.
11822         (read_include_file): Don't use mmap, terminate buffers in '\r'.
11823         (purge_cache): Don't use munmap.
11824         * cpphash.h (CPP_BUF_COLUMN): Update.
11825         (lexer_state): Remove lexing_comment.
11826         (struct _cpp_line_note): New.
11827         (struct cpp_buffer): New members cur_note, notes_used, notes_cap,
11828         next_line and need_line.  Remove col_adjust and saved_flags.
11829         (_cpp_process_line_notes, _cpp_clean_line, _cpp_get_fresh_line,
11830         _cpp_skip_block_comment, scan_out_logical_line): New.
11831         (_cpp_init_mbchar): Remove.
11832         * cppinit.c (init_library): Remove call to _cpp_init_mbchar.
11833         (cpp_read_main_file): Set line to 1 earlier.
11834         (post_options): -traditional-cpp doesn't want trigraphs.
11835         * cpplex.c (MULTIBYTE_CHARS): Remove code predicated on this.
11836         (add_line_note, _cpp_clean_line, _cpp_process_line_notes,
11837         _cpp_get_fresh_line): New.
11838         (handle_newline, skip_escaped_newlines, trigraph_p,
11839         continue_after_nul, _cpp_init_mbchar): Remove.
11840         (get_effective_char): Update.
11841         (_cpp_skip_block_comment): Rename from skip_block_comment, simplify.
11842         (skip_line_comment): Simplify.
11843         (skip_whitespace, parse_identifier, parse_slow, parse_number,
11844         parse_string): Update.
11845         (cpp_lex_direct): Use clean lines and process line notes.  Update.
11846         (cpp_interpret_charconst): No MULTIBYTE_CHARS.
11847         * cpplib.c (prepare_directive_trad): Call scan_out_logical_line
11848         directly.
11849         (_cpp_handle_directive): Don't set saved_flags.
11850         (run_directive, destringize_and_run, cpp_define, cpp_define_builtin,
11851         cpp_undef, handle_assertion, cpp_push_buffer): Update.
11852         (_cpp_pop_buffer): Free notes.
11853         * cppmacro.c (builtin_macro, paste_tokens): \n terminate buffer.
11854         * cpppch.c (cpp_read_state): \n terminate buffer.
11855         * cpptrad.c (skip_escaped_newlines, handle_newline): Remove.
11856         (copy_comment): Use _cpp_skip_block_comment.
11857         (skip_whitespace, lex_identifier, _cpp_read_logical_line_trad):
11858         Simplify.
11859         (_cpp_overlay_buffer, _cpp_remove_overlay, push_replacement_text,
11860         save_replacement_text): Update.
11861         (scan_out_logical_line): Update to use clean lines and process
11862         line notes.
11863         * fix-header.c (read_scan_file): Update.
11864
11865 2003-04-18  Douglas B Rupp  <rupp@gnat.com>
11866
11867         * unwind-dw2-fde.c (__register_frame_info_bases): Check for
11868         null begin parameter (as well as pointer to null).
11869         (__deregister_frame_info_bases): Likewise.
11870
11871 2003-04-18  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11872
11873         * function.c (purge_addressof_1): For ADDRESSOF, see if SUB is a
11874         hard or virtual register and copy into pseudo if replacement fails.
11875
11876         * cfgcleanup.c (flow_find_cross_jump): Use INSN_P, not active_insn_p.
11877
11878         * expmed.c (mask_rtx): Avoid undefined shifts for BITSIZE of 0.
11879
11880 2003-04-18  Olivier Hainque <hainque@act-europe.fr>
11881
11882         * calls.c (expand_call): Move special case for constructor calls
11883         to right place. Ensures constructor calls used to initialize
11884         arguments get a clean outgoing argument block for themselves.
11885         Move check for stack deallocation completeness until after last
11886         deallocation.  Add stack_pointer_delta to set of state
11887         variables saved and restored along with current stack_level.
11888
11889         * integrate.c (expand_inline_function): Ensure non-const actuals
11890         don't end up const in the caller's flow after conversion to possibly
11891         const formal type.
11892
11893 2003-04-18  Vincent Celier  <celier@gnat.com>
11894
11895         * dwarf2out.c (loc_descriptor_from_tree): Treat all *_MOD_EXPR
11896         and *_DIV_EXPR as TRUNC_*_EXPR.
11897
11898 2003-04-18  Mark Mitchell  <mark@codesourcery.com>
11899
11900         * cfgrtl.c (try_redirect_by_replacing_jump): Create a basic block
11901         for orphaned jump tables.
11902
11903 2003-04-18  Kazu Hirata  <kazu@cs.umass.edu>
11904
11905         * reload1.c: Revert my previous patch on 2002-04-17.
11906
11907 2003-04-18  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
11908
11909         * doc/contrib.texi (Contributors): Prefer "bug fix" over "bugfix".
11910         Add Segher Boessenkool.
11911
11912 2003-04-18  Alexander Sotirov  <sluncho@mirizma.org>
11913
11914         PR c/9177
11915         * c-decl.c (c_expand_body): Don't garbage collect the function
11916         body if we are going to dump it later.
11917
11918 2003-04-18  Richard Henderson  <rth@redhat.com>
11919
11920         * config/alpha/alpha.c (SYMBOL_FLAG_NEAR, SYMBOL_FLAG_SAMEGP): Remove.
11921         (alpha_end_function): Don't set them.
11922         (decl_in_text_section): Remove.
11923         (alpha_encode_section_info): Remove.
11924         (samegp_function_operand): Use SYMBOL_REF LOCAL_P and EXTERNAL_P.
11925         (direct_call_operand): Use SYMBOL_REF_DECL and compare actual
11926         sections, rather than decl_in_text_section results.
11927
11928 2003-04-18  Roger Sayle  <roger@eyesopen.com>
11929
11930         * rtlanal.c (reg_overlap_mentioned_p): Handle ZERO_EXTRACT
11931         and SIGN_EXTRACT.
11932
11933 2003-04-18  Eric Botcazou  <ebotcazou@libertysurf.fr>
11934
11935         PR optimization/7675
11936         * c-typeck.c (build_external_ref): Set the DECL_NONLOCAL flag
11937         on VAR_DECL, PARM_DECL and FUNCTION_DECL from within
11938         nested functions if they refer to declarations from parent functions.
11939         * stmt.c (expand_decl): Don't put automatic variables in registers
11940         if the DECL_NONLOCAL flag is set.
11941
11942 2003-04-18  Hans-Peter Nilsson  <hp@bitrange.com>
11943
11944         * gcse.c (compute_ld_motion_mems): For MEM destinations, only
11945         consider those to be movable where the source matches
11946         want_to_gcse_p.
11947         (update_ld_motion_stores): In comment, refer to
11948         compute_ld_motion_mems for validity of replacement.
11949
11950 Fri Apr 18 01:28:51 CEST 2003  Jan Hubicka  <jh@suse.cz>
11951
11952         * gcov-dump.c (tag_summary): Remove max_sum
11953         * gcov-io.h (gcov_summary, gcov_write_summary,
11954         gcov_read_summary): Kill max_sum.
11955         * libgcov.c (gcov_exit): Do one pass over the data.  Make error
11956         message more verbose.
11957
11958         * emit-rtl.c (subreg_hard_regno):  Check that register is
11959         representable.
11960
11961         * reload.c (reload_inner_reg_of_subreg):  When register is not
11962         representable, reload the whole thing.
11963         (find_reloads): Likewsie.
11964         * rtlanal.c (subreg_representable_p):  New function.
11965
11966         * profile.c (compute_branch_probabilities):  Cleanup sanity checking;
11967         allow negative probabilities for edges from the call to exit.
11968         (branch_prob): Do not add fake edges for functions that may return
11969         twice.
11970
11971 2003-04-17  DJ Delorie  <dj@redhat.com>
11972
11973         * toplev.c (target_options): Add value field.
11974         (set_target_switch): Handle target options with values.
11975         * doc/tm.texi: Document how fixed vs variable target
11976         options work.
11977         * config/alpha/alpha.h, config/arc/arc.h, config/avr/avr.h,
11978         config/c4x/c4x.h, config/cris/aout.h, config/cris/cris.h,
11979         config/d30v/d30v.h, config/dsp16xx/dsp16xx.h,
11980         config/frv/frv.h, config/i386/i386.h, config/ia64/ia64.h,
11981         config/m32r/m32r.h, config/m68hc11/m68hc11.h,
11982         config/m68k/m68k.h, config/m88k/m88k.h, config/mcore/mcore.h,
11983         config/mips/mips.h, config/mmix/mmix.h, config/pa/pa.h,
11984         config/rs6000/rs6000.h, config/rs6000/sysv4.h,
11985         config/s390/s390.h, config/sparc/sparc.h, config/v850/v850.h:
11986         Add value initializer to target options.
11987
11988 2003-04-07  Loren James Rittle  <ljrittle@acm.org>
11989
11990         * cpppch.c (cpp_valid_state): Unconditionally initialize nl.
11991
11992 2003-04-17  Kazu Hirata  <kazu@cs.umass.edu>
11993
11994         * reload1.c (move2add_last_cc0): New.
11995         (reload_cse_move2add): Detect implicit sets.
11996         (move2add_note_store): Notice a store into cc0.
11997
11998 2003-04-17  Roger Sayle  <roger@eyesopen.com>
11999
12000         PR c/10375
12001         * c-decl.c (duplicate_decls): Preserve "const" and "noreturn"
12002         function attributes.
12003
12004 2003-04-17  Janis Johnson  <janis187@us.ibm.com>
12005
12006         * doc/sourcebuild.texi (Test Suites): Document support for testing
12007         binary compatibility (moved from testsuite/README.compat).
12008
12009 2003-04-17  Richard Henderson  <rth@redhat.com>
12010
12011         * config/ia64/ia64.c (ia64_in_small_data_p): Disallow strings.
12012
12013 2003-04-17  Simon Law  <sfllaw@engmail.uwaterloo.ca>
12014
12015         * doc/include/gpl.texi: Fix double-spacing after "MA" to match
12016         the one provided by the FSF.
12017
12018 2003-04-17  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
12019
12020         * doc/install.texi (Binaries): Update URL and list of platforms
12021         provided by ftp.thewrittenword.com.
12022
12023 2003-04-17  Richard Henderson  <rth@redhat.com>
12024
12025         * config/xtensa/xtensa.c (xtensa_encode_section_info): Remove.
12026         (call_insn_operand): Use SYMBOL_REF_LOCAL_P.
12027         * config/xtensa/xtensa.md (call, call_value): Likewise.
12028
12029 2003-04-17  Richard Henderson  <rth@redhat.com>
12030
12031         * config/v850/v850.c (print_operand): Use SYMBOL_REF_[ZST]DA.
12032         (print_operand_address): Likewise.
12033         (ep_memory_operand): Likewise.
12034         (special_symbolref_operand): Likewise.
12035         (v850_encode_data_area): Use SYMBOL_REF_FLAGS.
12036         (v850_encode_section_info): Call default_encode_section_info.
12037         (v850_strip_name_encoding): Remove.
12038         * config/v850/v850.h (EXTRA_CONSTRAINT): Use SYMBOL_REF_[ZST]DA.
12039         (ASM_OUTPUT_LABELREF): Remove.
12040         (ZDA_NAME_FLAG_CHAR, ZDA_NAME_P): Remove.
12041         (SDA_NAME_FLAG_CHAR, SDA_NAME_P): Remove.
12042         (TDA_NAME_FLAG_CHAR, TDA_NAME_P): Remove.
12043         (ENCODED_NAME_P): Remove.
12044         (SYMBOL_FLAG_ZDA, SYMBOL_REF_ZDA_P): New.
12045         (SYMBOL_FLAG_SDA, SYMBOL_REF_SDA_P): New.
12046         (SYMBOL_FLAG_TDA, SYMBOL_REF_TDA_P): New.
12047
12048 2003-04-17  Richard Henderson  <rth@redhat.com>
12049
12050         * config/stormy16/stormy16.c (xstormy16_encode_section_info): Kill.
12051         * config/stormy16/stormy16.h (ASM_OUTPUT_SYMBOL_REF): Use
12052         SYMBOL_REF_FUNCTION_P.
12053
12054 2003-04-17  Richard Henderson  <rth@redhat.com>
12055
12056         * config/sparc/sparc.c (sparc_encode_section_info): Remove.
12057         (data_segment_operand): Use SYMBOL_REF_FUNCTION_P.
12058         (text_segment_operand): Likewise.
12059
12060 2003-04-17  Richard Henderson  <rth@redhat.com>
12061
12062         * config/sh/sh.c (gen_datalabel_ref): Don't add SH_DATALABEL_ENCODING.
12063         (tls_symbolic_operand): Use SYMBOL_REF_TLS_MODEL.
12064         (legitimize_pic_address): Use SYMBOL_REF_LOCAL_P.
12065         (sh_encode_section_info): Remove.
12066         (sh_strip_name_encoding): Remove.
12067         * config/sh/sh.h (SH_DATALABEL_ENCODING): Remove.
12068         (DATALABEL_SYMNAME_P, STRIP_DATALABEL_ENCODING): Remove.
12069         (SH_TLS_ENCODING, TLS_SYMNAME_P, STRIP_TLS_ENCODING): Remove.
12070         (ASM_OUTPUT_LABELREF): Remove.
12071         (ASM_OUTPUT_SYMBOL_REF): Use SYMBOL_REF_FUNCTION_P.
12072         * config/sh/sh.md (*): Use SYMBOL_REF_LOCAL_P.
12073
12074 2003-04-17  Richard Henderson  <rth@redhat.com>
12075
12076         * config/s390/s390.c (SYMBOL_FLAG_ALIGN1): New.
12077         (tls_model_chars): Remove.
12078         (larl_operand): Use SYMBOL_REF_FLAGS.
12079         (tls_symbolic_operand): Use SYMBOL_REF_TLS_MODEL.
12080         (legitimize_pic_address): Use SYMBOL_REF_LOCAL_P.
12081         (s390_output_mi_thunk): Likewise.
12082         (s390_emit_prologue): Set SYMBOL_FLAG_LOCAL as needed.
12083         (s390_function_profiler): Likewise.
12084         (s390_encode_section_info): Use default_encode_section_info
12085         and SYMBOL_FLAG_ALIGN1.
12086         (s390_strip_name_encoding): Remove.
12087         * config/s390/s390.h (ASM_OUTPUT_LABELREF): Remove.
12088         * config/s390/s390.md (call, call_value): Use SYMBOL_REF_LOCAL_P.
12089         (builtin_setjmp_receiver): Set SYMBOL_FLAG_LOCAL as needed.
12090
12091 2003-04-17  Richard Henderson  <rth@redhat.com>
12092
12093         * config/ns32k/ns32k.c (ns32k_encode_section_info): Remove.
12094         (global_symbolic_reference_mentioned_p): Use SYMBOL_REF_LOCAL_P.
12095         (print_operand_address): Likewise.
12096
12097         * config/ns32k/ns32k.h (CANNOT_CHANGE_MODE_CLASS): Add CLASS argument.
12098         * config/ns32k/ns32k.c (expand_block_move): Don't check
12099         flag_unroll_loops.
12100
12101 2003-04-17  Richard Henderson  <rth@redhat.com>
12102
12103         * config/mcore/mcore.c (mcore_encode_section_info): Don't set
12104         SYMBOL_REF_FLAG.
12105
12106 2003-04-17  Richard Henderson  <rth@redhat.com>
12107
12108         * rtl.h (SYMBOL_FLAG_MACH_DEP_SHIFT): New.
12109
12110         * config/m32r/m32r.c (SYMBOL_FLAG_MODEL_SHIFT): New.
12111         (SYMBOL_REF_MODEL): New.
12112         (LIT_NAME_P): Move from m32r.h.
12113         (m32r_select_section): Remove.
12114         (m32r_encode_section_info): Use SYMBOL_REF_FLAGS.
12115         (m32r_strip_name_encoding): Remove.
12116         (m32r_in_small_data_p): New.
12117         (small_data_operand): Use SYMBOL_REF_SMALL_P.
12118         (addr24_operand): Use SYMBOL_REF_MODEL.
12119         (call26_operand): Likewise.
12120         (addr32_operand): Tidy.
12121         (m32r_print_operand): Use HOST_WIDE_INT_PRINT_HEX.
12122         * config/m32r/m32r.h (RODATA_SECTION_ASM_OP): Remove.
12123         (SDATA_SECTION_ASM_OP, SBSS_SECTION_ASM_OP): Remove.
12124         (READONLY_DATA_SECTION_ASM_OP): Remove.
12125         (EXTRA_SECTIONS, EXTRA_SECTION_FUNCTIONS): Remove.
12126         (SDATA_SECTION_FUNCTION, SBSS_SECTION_FUNCTION): Remove.
12127         (TARGET_ASM_SELECT_SECTION): Remove.
12128         (SDATA_FLAG_CHAR, MEDIUM_FLAG_CHAR, LARGE_FLAG_CHAR): Remove.
12129         (SDATA_NAME_P, SMALL_NAME_P, MEDIUM_NAME_P): Remove.
12130         (LARGE_NAME_P, ENCODED_NAME_P): Remove.
12131         (ASM_OUTPUT_LABELREF): Remove.
12132
12133 2003-04-17  Richard Henderson  <rth@redhat.com>
12134
12135         * config/ip2k/ip2k.c (is_regfile_address): Use SYMBOL_REF_FUNCTION_P.
12136         (encode_section_info): Remove.
12137         * config/ip2k/ip2k-protos.h: Update.
12138
12139 2003-04-17  Richard Henderson  <rth@redhat.com>
12140
12141         * varasm.c (default_encode_section_info): Don't set
12142         SYMBOL_FLAG_EXTERNAL if not TREE_PUBLIC.
12143         * config/i370/i370.c (i370_encode_section_info): Remove.
12144         * config/i370/i370.h (CONSTANT_ADDRESS_P): Use SYMBOL_REF_EXTERNAL_P.
12145         (PRINT_OPERAND, PRINT_OPERAND_ADDRESS): Likewise.
12146         * config/i370/i370.md (movsi): Likewise.
12147
12148         * config/i370/t-i370: Add missing backslash.
12149
12150 2003-04-17  Eric Botcazou  <ebotcazou@libertysurf.fr>
12151
12152         * doc/invoke.texi (inline-limit): Fix pasto.
12153
12154 2003-04-17  Richard Henderson  <rth@redhat.com>
12155
12156         * config/h8300/h8300.c (SYMBOL_FLAG_FUNCVEC_FUNCTION): New.
12157         (small_call_insn_operand): Use it.
12158         (SYMBOL_FLAG_EIGHTBIT_DATA): New.
12159         (h8300_eightbit_constant_address_p): Use it.
12160         (SYMBOL_FLAG_TINY_DATA): New.
12161         (h8300_tiny_constant_address_p): Use it.
12162         (h8300_encode_label, h8300_strip_name_encoding): Remove.
12163         (h8300_encode_section_info): Set SYMBOL_REF_FLAGS.
12164         * config/h8300/h8300.h (TINY_DATA_NAME_P): Remove.
12165         (ASM_OUTPUT_LABELREF): Remove.
12166
12167 2003-04-16  Richard Henderson  <rth@redhat.com>
12168
12169         * config/frv/frv.c (symbol_ref_small_data_p): Remove.  Replace
12170         all users with SYMBOL_REF_SMALL_P.
12171         (const_small_data_p): Use SYMBOL_REF_SMALL_P.
12172         (frv_encode_section_info): Remove.
12173         (frv_strip_name_encoding): Remove.
12174         (frv_in_small_data_p): Merge tests from encode_section_info.
12175         (frv_print_operand): Use '@' not SDATA_FLAG_CHAR.
12176         * config/frv/frv.h (SDATA_FLAG_CHAR): Remove.
12177         (SDATA_NAME_P): Remove.
12178         (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Use SIZE not SDATA_NAME_P.
12179         (ASM_OUTPUT_LABELREF): Remove.
12180         (PRINT_OPERAND_PUNCT_VALID_P): Use '@' not SDATA_FLAG_CHAR.
12181
12182         * config/frv/frv.c (frv_asm_out_constructor): New.
12183         (frv_asm_out_destructor): New.
12184         * config/frv/frv.h (CTORS_SECTION_ASM_OP): New.
12185         (DTORS_SECTION_ASM_OP): New.
12186         (ASM_OUTPUT_CONSTRUCTOR): Remove.
12187         (ASM_OUTPUT_DESTRUCTOR): Remove.
12188
12189 2003-04-16  Richard Henderson  <rth@redhat.com>
12190
12191         * config/cris/cris.c (cris_gotless_symbol, cris_got_symbol): Use
12192         SYMBOL_REF_LOCAL_P; abort if not pic.
12193         (cris_encode_section_info): Remove.
12194
12195 2003-04-16  Richard Henderson  <rth@redhat.com>
12196
12197         * config/c4x/c4x.c (c4x_encode_section_info): Remove.
12198         (c4x_T_constraint): Use SYMBOL_REF_FUNCTION_P.
12199
12200         * config/c4x/c4x.h (TARGET_CPU_CPP_BUILTINS): Declare
12201         flag_inline_trees.
12202
12203 2003-04-16  Richard Henderson  <rth@redhat.com>
12204
12205         * config/avr/avr.c (avr_encode_section_info): Remove.
12206         (avr_insert_attributes): New.
12207         (print_operand_address): Use SYMBOL_REF_FUNCTION_P.
12208         (avr_assemble_integer): Likewise.
12209
12210 2003-04-16  Richard Henderson  <rth@redhat.com>
12211
12212         * arc.c (arc_encode_section_info): Remove.
12213         (arc_assemble_integer): Use SYMBOL_REF_FUNCTION_P.
12214         (arc_print_operand, arc_print_operand_address): Likewise.
12215         * arc.h (EXTRA_CONSTRAINT): Likewise.
12216
12217 2003-04-16  Roger Sayle  <roger@eyesopen.com>
12218
12219         * c-semantics.c (find_reachable_label): New function to find a
12220         potentially reachable label in an expression.
12221         (expand_unreachable_if_stmt): Similar to expand_if_stmt but
12222         assumes the start of the IF_STMT is unreachable (dead) code.
12223         (expand_unreachable_stmt): Similar to expand_stmt but assumes
12224         the start of the statement list is unreachable (dead) code.
12225         (genrtl_if_stmt):  If the controlling expression of the IF
12226         is constant, use expand_unreachable_stmt for the THEN or ELSE
12227         clause as appropriate.
12228         (genrtl_switch_stmt):  Use expand_unreachable_stmt to expand
12229         the body of a SWITCH statement.
12230         (expand_stmt): The code immediately following a "return",
12231         "break", "continue" or "goto" is unreachable.
12232         * Makefile.in (c-semantics.o): Depend upon tree-inline.h.
12233
12234 2003-04-16  Richard Henderson  <rth@redhat.com>
12235
12236         * rtl.h (MEM_ALIAS_SET): Update documentation.
12237         * doc/rtl.texi (Special Accessors): New node.
12238         (SYMBOL_REF_FLAG): Note relationship with SYMBOL_REF_FLAGS.
12239
12240 2003-04-16  Alexandre Oliva  <aoliva@redhat.com>
12241
12242         * reload1.c (reload_cse_noop_set_p): Return false if mode of
12243         SET_DEST is not the same as that returned by...
12244         * cselib.h (cselib_reg_set_mode): ... new function.
12245         * cselib.c (cselib_reg_set_mode): Define it.
12246         (REG_VALUES): Document semantics of first element as set mode.
12247         (cselib_subst_to_values): Skip first element if ELT is NULL.
12248         (cselib_lookup): Likewise.  Insert past the first element.
12249         (cselib_invalidate_regno): NULLify first element.
12250         (cselib_record_set): Set first element.
12251
12252 2003-04-16  Olivier Hainque <hainque@act-europe.fr>
12253
12254         * tree.c (skip_simple_arithmetics_at, saved_expr_p): New functions.
12255         (save_expr): Replace loop by call to skip_simple_arithmetics_at.
12256         * tree.h: Add prototypes for the two new functions.
12257         * fold-const.c (fold_binary_op_with_conditional_arg): Replace test
12258         updates introduced in the previous revision by call to saved_expr_p.
12259         * stor-layout.c (put_pending_size): Use skip_simple_arithmetics_at.
12260
12261         * expr.c (store_field): Force usage of bitfield instructions when
12262         the field position requires it, whatever SLOW_UNALIGNED_ACCESS.
12263         (expand_expr, case BIT_FIELD_REF): likewise.
12264
12265 2003-04-16  Mark Mitchell  <mark@codesourcery.com>
12266
12267         PR middle-end/8866
12268         * cfgtrl.c (try_redirect_by_replacing_jump): Do not delete
12269         jumptables.
12270
12271 2003-04-16  Richard Henderson  <rth@redhat.com>
12272
12273         * config/ia64/ia64.c (sdata_symbolic_operand): Use
12274         SYMBOL_REF_SMALL_P and SYMBOL_REF_LOCAL_P.
12275         (tls_symbolic_operand): Use SYMBOL_REF_TLS_MODEL.
12276         (function_operand): Use SYMBOL_REF_FUNCTION_P.
12277         (ia64_expand_load_address): Likewise.
12278         (ia64_assemble_integer): Likewise.
12279         (ia64_encode_section_info): Remove.
12280         (ia64_strip_name_encoding): Remove.
12281         * config/ia64/ia64.h (ENCODE_SECTION_INFO_CHAR): Remove.
12282         * config/ia64/sysv4.h (ASM_OUTPUT_LABELREF): Don't strip it.
12283
12284 2003-04-16  Richard Henderson  <rth@redhat.com>
12285
12286         * config/alpha/alpha.c (SYMBOL_FLAG_NEAR, SYMBOL_FLAG_SAMEGP): New.
12287         (samegp_function_operand): Use SYMBOL_FLAG_SAMEGP.
12288         (direct_call_operand): Use SYMBOL_FLAG_NEAR.
12289         (local_symbolic_operand): Use SYMBOL_REF_LOCAL_P.
12290         (small_symbolic_operand): Use SYMBOL_REF_SMALL_P.
12291         (global_symbolic_operand): Similarly.
12292         (tls_symbolic_operand_1): Use SYMBOL_REF_TLS_MODEL.
12293         (tls_symbolic_operand_type): Likewise.
12294         (alpha_encode_section_info): Use default_encode_section_info.
12295         (alpha_strip_name_encoding): Remove.
12296         (get_tls_get_addr): Split out from ...
12297         (alpha_legitimize_address): ... here.
12298         (alpha_emit_xfloating_libcall): Use init_one_libfunc.
12299         (get_some_local_dynamic_name_1): Use SYMBOL_REF_TLS_MODEL.
12300         (alpha_initialize_trampoline): Use init_one_libfunc.
12301         (alpha_setup_incoming_varargs): Mark unused parameters.
12302         (alpha_initial_elimination_offset): Likewise.
12303         (alpha_end_function): Use SYMBOL_FLAG_NEAR, SYMBOL_FLAG_SAMEGP.
12304         (unicosmk_unique_section): Use default_strip_name_encoding.
12305         (unicosmk_ssib_name, unicosmk_output_externs): Likewise.
12306
12307 2003-04-16  Aldy Hernandez  <aldyh@redhat.com>
12308
12309         * config.gcc: Add t-spe for eabispe.
12310
12311         * config/rs6000/t-spe: New.
12312
12313 2003-04-16  J"orn Rennecke <joern.rennecke@superh.com>
12314
12315         Re-apply this patch:
12316
12317         2002-05-16  Dale Johannesen  <dalej@apple.com>
12318           * combine.c (cant_combine_insn_p):  Reenable combinations
12319           involving hard regs unless CLASS_LIKELY_SPILLED_P.
12320
12321 2003-04-16  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
12322
12323         PR/10271
12324         * pa-protos.h (function_arg): Remove last argument.
12325         * pa.c (function_arg): Likewise.  Use CUMULATIVE_ARGS struct instead.
12326         * pa.h (struct hppa_args): Add member incoming.
12327         (INIT_CUMULATIVE_ARGS, INIT_CUMULATIVE_INCOMING_ARGS): Initialize
12328         member incoming.
12329         (FUNCTION_ARG): Revise call to function_arg.
12330         (FUNCTION_INCOMING_ARG): Delete.
12331
12332 2003-04-15  Zack Weinberg  <zack@codesourcery.com>
12333
12334         * configure.in: Unify the code which creates symlinks to a
12335         just-built as, ld, objdump, and nm with the code that detects
12336         their presence for purposes of feature tests.
12337         * configure: Regenerate.
12338
12339 2003-04-15  Zack Weinberg  <zack@codesourcery.com>
12340
12341         * varasm.c (output_constant_def): Do not consult
12342         CONSTANT_AFTER_FUNCTION_P.  Remove all code predicated on it.
12343         (after_function_constants, output_after_function_constants): Delete.
12344         * doc/tm.texi: Delete documentation of CONSTANT_AFTER_FUNCTION_P.
12345         * config/mips/mips-protos.h, config/mips/mips.c
12346         (mips16_constant_after_function_p): Delete.
12347         * config/mips/mips.h: Delete #if-0-ed definition of
12348         CONSTANT_AFTER_FUNCTION_P.
12349         * config/d30v/d30v.h, config/stormy16/stormy16.h: Remove
12350         mention of CONSTANT_AFTER_FUNCTION_P in comment.
12351
12352 2003-04-15  Geoffrey Keating  <geoffk@apple.com>
12353
12354         * tree.c (next_decl_uid): Mark with GTY.
12355         (next_type_uid): Likewise.
12356
12357 2003-04-15  J"orn Rennecke <joern.rennecke@superh.com>
12358
12359         PR target/9594:
12360         * sh.c (barrier_align): Also recognize stuff_delay_slot as
12361         an indicator that a barrier was created by branch splitting.
12362
12363 2003-04-15  Mark Mitchell  <mark@codesourcery.com>
12364
12365         * c-decl.c (implicitly_declare): Copy declarations that are going
12366         to be placed in a local scope.
12367
12368 2003-04-15  James A. Morrison  <ja2morri@uwaterloo.ca>
12369
12370         * invoke.texi (Spec Files): Wrap if-exists-else example.
12371         (MCore): Remove duplicate @itemx entries and @opindex entries.
12372
12373 2003-04-15  Ulrich Weigand  <uweigand@de.ibm.com>
12374
12375         * unwind.inc (_Unwind_Backtrace): New function.
12376         * unwind.h (_Unwind_Backtrace): Declare it.
12377         * libgcc-std.ver (_Unwind_Backtrace): Export it.
12378
12379 2003-04-14  Jason Merrill  <jason@redhat.com>
12380
12381         PR middle-end/10336, c++/10401
12382         * jump.c (never_reached_warning): Also stop looking if we reach the
12383         beginning of the function.
12384
12385 2003-04-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12386
12387         PR target/10338
12388         PR bootstrap/10198
12389         PR bootstrap/10140
12390         * fixinc/gnu-regex.c (regerror): Use mempcpy not __mempcpy.
12391
12392 2003-04-15  J"orn Rennecke <joern.rennecke@superh.com>
12393
12394         * i386.md (abssf2_if+1): Make condition agree with abssf2_1 .
12395
12396 2003-04-15  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12397
12398         * optabs.c (expand_binop): In multi-word add cases, ensure
12399         XTARGET is copied to TARGET if they are different.
12400
12401 2003-04-15  Olivier Hainque <hainque@act-europe.fr>
12402
12403         * except.c (resolve_fixup_regions): Avoid dereferencing null pointer
12404         to region, possible after integration of function with unreachable
12405         regions that were optimized away.
12406
12407 2003-04-15  Jakub Jelinek  <jakub@redhat.com>
12408
12409         * config/rs6000/rs6000.h (EPILOGUE_USES): Use register 2,
12410         instead of TOC_REGISTER in epilogue in
12411         current_function_calls_eh_return functions.
12412
12413 2003-04-14  Mark Mitchell  <mark@codesourcery.com>
12414
12415         * doc/extend.texi (Empty Structures): Correct description of G++'s
12416         handling of these structures.
12417
12418         * c-decl.c (grokdeclarator): Reject extern redeclarations of
12419         static variables.
12420
12421 2003-04-14  Janis Johnson  <janis287@us.ibm.com>
12422
12423         * config/rs6000/rs6000.md (define_constants): Define constants for
12424         all UNSPEC usage, including new values for TLS support.
12425         (aux_truncdfsf2, fctiwz, movsi_got, movsi_got_internal,
12426         load_toc_aix_si, load_toc_aix_di, load_toc_v4_pic_si,
12427         load_toc_v4_PIC_1, load_toc_v4_PIC_1b, load_macho_picbase,
12428         macho_correct_pic, blockage, move_from_CR_ov_bit, movesi_from_cr,
12429         stack_tie, movsi_to_cr_one, movsi_to_cr, mtcrfsi, eh_set_lr_si,
12430         eh_set_lr_di): Use them.
12431         * rs6000.c: (mtcrf_operation, uses_TOC, rs6000_emit_prologue,
12432         rs6000_emit_epilogue) Use them.
12433
12434         * rtl.h (SYMBOL_REF_TLS_MODEL): Fix mask value.
12435
12436 2003-04-14  Neil Booth  <neil@daikokuya.co.uk>
12437
12438         * Makefile.in (c-opts.o): Use custom action.
12439
12440 2003-04-14  Douglas B Rupp  <rupp@gnat.com>
12441
12442         * ifcvt.c (noce_process_if_block): Fail on BLKmode move.
12443
12444 2003-04-14  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12445
12446         * stor-layout.c (layout_type, case ARRAY_TYPE): Add missing code to
12447         handle "superflat arrays" in Ada.
12448
12449         * integrate.c (expand_inline_function): Don't inline if would
12450         lose /u on a BLKmode TARGET.
12451
12452 2003-04-14  Joel Brobecker  <brobecker@gnat.com>
12453
12454         * dbxout.c (print_int_cst_bounds_in_octal_p): New function,
12455         extracted from dbxout_type.
12456         (dbxout_range_type): print large bounds in octal format.
12457         (dbxout_type): Replace extracted code by call to
12458         print_int_cst_bounds_in_octal_p.
12459
12460         * dwarf2out.c (gen_compile_unit_die): Emit DW_LANG_Ada95 instead
12461         of DW_LANG_Ada83 for Ada units.
12462
12463 2003-04-14  Olivier Hainque <hainque@act-europe.fr>
12464
12465         * explow.c (round_push): Use HOST_WIDE_INT instead of int for the
12466         temporary used to round CONST_INT sizes.
12467
12468         * tree.c (int_fits_type_p): Extract generic checks from the case
12469         of constant type bounds. Refine the checks against constant type
12470         bounds to allow for possible decisions against each of these bounds
12471         without requiring both bounds to be constant.
12472         (tree_int_cst_msb): Put back.
12473         * tree.h (tree_int_cst_msb): Likewise.
12474
12475         * global.c (global_conflicts): Prevent allocation of call clobbered
12476         hard regs to pseudos live across abnormal edges, as later passes are
12477         not ready to handle them.
12478
12479         * fold-const.c (fold): Reorder tests for conditional expressions.
12480
12481         * expr.c (highest_pow2_factor): Return unsigned.
12482         * expr.h (offset_address): Likewise.
12483         * emit-rtl.c (offset_address): POW2 argument now unsigned.
12484
12485 2003-04-14  Roger Sayle  <roger@eyesopen.com>
12486
12487         * builtins.c (expand_builtin_strlen):  Evaluate the lengths of
12488         string literals at compile-time.
12489
12490 2003-04-14  Roger Sayle  <roger@eyesopen.com>
12491
12492         * fold-const.c (fold):  Transform (c1 - x) cmp c2, where cmp is a
12493         comparison operation and c1/c2 are floating point constants into
12494         x swap(cmp) (c1 - c2).
12495
12496 2003-04-14  Vladimir Makarov  <vmakarov@redhat.com>
12497
12498         * genautomata.c (output_translate_vect): Fix a typo in loop
12499         condition.
12500
12501 2003-04-14  Hans-Peter Nilsson  <hp@axis.com>
12502
12503         PR target/10377
12504         * config/cris/cris.md ("*mov_sideqi", "*mov_sidehi")
12505         ("*mov_sidesi", "*mov_sideqi_mem", "*mov_sidehi_mem")
12506         ("*mov_sidesi_mem", "*clear_sidesi", "*clear_sidehi")
12507         ("*clear_sideqi", "*ext_sideqihi", "*ext_sideqisi")
12508         ("*ext_sidehisi", "*op_sideqi", "*op_sidehi", "*op_sidesi")
12509         ("*op_swap_sideqi", "*op_swap_sidehi", "*op_swap_sidesi")
12510         ("*extopqihi_side", "*extopqisi_side", "*extophisi_side")
12511         ("*extopqihi_swap_side", "*extopqisi_swap_side")
12512         ("*extophisi_swap_side", 8th, 9th, 10th, 11th, 14th peepholes):
12513         When next to constraint R, replace constraint i with n.
12514
12515 Mon Apr 14 16:18:37 CEST 2003  Jan Hubicka  <jh@suse.cz>
12516
12517         PR opt/10024
12518         * cfgrtl.c (force_nonfallthru_and_redirect): Use unchecked_make_edge.
12519
12520 2003-04-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
12521
12522         * doc/contrib.texi (Contributors): Correct my entry.
12523
12524 2003-04-13  Roger Sayle  <roger@eyesopen.com>
12525
12526         * tree.h (DECL_BUILT_IN_NONANSI): Remove.
12527         * c-common.c (builtin_function_2): Don't set DECL_BUILT_IN_NONANSI.
12528         * c-decl.c (duplicate_decls): Use invariant DECL_BUILT_IN_NONANSI
12529         implies DECL_BUILT_IN to simplify logic.
12530         * print-tree.c (print_node): Don't dump DECL_BUILT_IN_NONANSI.
12531
12532 2003-04-13  Roger Sayle  <roger@eyesopen.com>
12533
12534         * builtin-types.def (BT_FN_STRING_CONST_STRING): New builtin type.
12535         (BT_FN_PTR_SIZE_SIZE): Likewise.
12536         * builtins.def (BUILT_IN_MALLOC, BUILT_IN_CALLOC, BUILT_IN_STRDUP):
12537         New built-in functions for malloc, calloc and strdup respectively.
12538         * calls.c (special_function_p): No need to handle malloc-like
12539         functions any longer.  ECF_MALLOC is set via built-in attributes.
12540
12541         * c-decl.c (duplicate_decls): Preserve pure and malloc attributes.
12542
12543         * doc/extend.texi: Document these new built-in functions.
12544
12545 2003-04-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12546
12547         * builtins.c (expand_builtin_memcpy): Add `endp' argument, use it.
12548         (expand_builtin_stpcpy): New.
12549         (expand_builtin): Add BUILT_IN_MEMPCPY & BUILT_IN_STPCPY.
12550         * builtins.def: Add mempcpy & stpcpy support.
12551         * doc/extend.texi (mempcpy, stpcpy): Document new builtins.
12552
12553 2003-04-13  Nick Clifton  <nickc@redhat.com>
12554
12555         * config/rs6000/rs6000.c: Replace occurrences of "GNU CC" with
12556         "GCC".
12557         * config/rs6000/40x.md, config/rs6000/603.md,
12558         config/rs6000/6xx.md, config/rs6000/7450.md, config/rs6000/7xx.md,
12559         config/rs6000/8540.md, config/rs6000/aix.h, config/rs6000/aix31.h,
12560         config/rs6000/aix3newas.h, config/rs6000/aix41.h,
12561         config/rs6000/aix43.h, config/rs6000/aix51.h,
12562         config/rs6000/aix52.h, config/rs6000/altivec-defs.h,
12563         config/rs6000/altivec.h, config/rs6000/altivec.md,
12564         config/rs6000/beos.h, config/rs6000/darwin.h,
12565         config/rs6000/eabi.h, config/rs6000/eabialtivec.h,
12566         config/rs6000/eabisim.h, config/rs6000/eabispe.h,
12567         config/rs6000/freebsd.h, config/rs6000/gnu.h,
12568         config/rs6000/host-darwin.c, config/rs6000/linux.h,
12569         config/rs6000/linux64.h, config/rs6000/linuxaltivec.h,
12570         config/rs6000/lynx.h, config/rs6000/mach.h, config/rs6000/mpc.md,
12571         config/rs6000/netbsd.h, config/rs6000/power4.md,
12572         config/rs6000/rios1.md, config/rs6000/rios2.md,
12573         config/rs6000/rs6000-c.c, config/rs6000/rs6000-modes.def,
12574         config/rs6000/rs6000-protos.h, config/rs6000/rs6000.c,
12575         config/rs6000/rs6000.h, config/rs6000/rs6000.md,
12576         config/rs6000/rs64.md, config/rs6000/rtems.h, config/rs6000/spe.h,
12577         config/rs6000/spe.md, config/rs6000/sysv4.h,
12578         config/rs6000/sysv4le.h, config/rs6000/vxworks.h,
12579         config/rs6000/windiss.h, config/rs6000/xcoff.h: Likewise.
12580
12581 2003-04-13  Nick Clifton  <nickc@redhat.com>
12582
12583         * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Delete
12584         support for -mcall-aix switch.
12585         * config/rs6000/eabiaix.h: Delete.
12586         * config/rs6000/rs6000.h (rs6000_abi): Remove ABI_AIX_NODESC.
12587         (RS6000_REG_SAVE, RS6000_SAVE_AREA, FP_ARGS_MAX_REG,
12588         RETURN_ADDRESS_OFFSET): Remove use of ABI_AIX_NODESC.
12589         * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Likewise.
12590         * config/rs6000/rs6000.c (print_operand, rs6000_stack_info,
12591         debug_stack_info, output_function_profiler,
12592         rs6000_trampoline_size, rs6000_initialise_trampoline): Likewise.
12593         * config/rs6000/rs6000.md (call, call_value, call_nonlocal_sysv,
12594         call_indirect_nonlocal_sysv, call_value_indirect_nonlocal_sysv,
12595         call_value_nonlocal_sysv, sibcall_value_nonlocal_sysv,
12596         sibcall_nonlocal_sysv, sibcall_value_local64): Likewise.
12597         * config/rs6000/t-ppcgas (MULTILIB_OPTIONS): Remove mcall-aix
12598         multilibs.
12599         (MULTILIB_DIRNAMES): Remove mcall-aix directories.
12600         (MULTILIB_EXCEPTIONS): Delete.
12601         (MULTILIB_MATCHES): Remove mcall-aix matches.
12602
12603         * doc/fragments.texi: Replace -mcall-aix example with an ARM
12604         one.
12605         * doc/install.texi: Delete powerpc-*-eabiaix target.
12606         * doc/invoke.texi: Remove documentation of mcall-aix switch.
12607         * doc/tm.texi: Remove mcall-aix from example CPP_SPEC.
12608         * config.gcc: Delete powerpc-*-eabiaix target.
12609
12610 2003-04-13  Kazu Hirata  <kazu@cs.umass.edu>
12611
12612         * doc/invoke.texi: Fix typos.
12613         * doc/tm.texi: Likewise.
12614
12615 2003-04-12  Zack Weinberg  <zack@codesourcery.com>
12616
12617         * c-typeck.c (digest_init, push_init_level): Use CONSTRUCTOR_ELTS.
12618
12619 2003-04-12  Zack Weinberg  <zack@codesourcery.com>
12620
12621         * tree.c (build_constructor): New function.
12622         * tree.h: Prototype it.
12623
12624         * c-typeck.c (build_c_cast, pop_init_level)
12625         * profile.c (build_function_info_value, build_gcov_info_value)
12626         (create_profiler):
12627         Use build_constructor.
12628
12629         * builtins.c (expand_builtin_args_info): Remove #if 0 blocks.
12630
12631         * objc/objc-act.c (build_constructor):
12632         Rename objc_build_constructor. Use build_constructor.
12633         (build_objc_string_object, objc_add_static_instance)
12634         (init_def_list, init_objc_symtab, init_module_descriptor)
12635         (generate_static_references, build_selector_translation_table)
12636         (build_descriptor_table_initializer, generate_descriptor_table)
12637         (build_protocol_initializer, build_ivar_list_initializer)
12638         (generate_ivars_list, build_dispatch_table_initializer)
12639         (generate_dispatch_table, generate_protocol_list)
12640         (build_category_initializer, build_shared_structure_initializer):
12641         Update to match.
12642
12643 2003-04-12  Zack Weinberg  <zack@codesourcery.com>
12644
12645         * intl.h: #define gcc_gettext_width to strlen when !ENABLE_NLS.
12646
12647 2003-04-12  Stephane Carrez  <stcarrez@nerim.fr>
12648
12649         * config/m68hc11/m68hc11-protos.h
12650         (m68hc11_eq_compare_operator): Declare
12651         * config/m68hc11/m68hc11.h (PREDICATE_CODES): Register new predicate.
12652         * config/m68hc11/m68hc11.c (m68hc11_eq_compare_operator): New predicate
12653         (d_register_operand): Check the operand mode.
12654         (hard_addr_reg_operand): Likewise.
12655
12656 2003-04-12  Stephane Carrez  <stcarrez@nerim.fr>
12657
12658         * config/m68hc11/m68hc11.md ("decrement_and_branch_until_zero"): New
12659         pattern for dbcc/ibcc generation for 68HC12.
12660         ("doloop_end"): New pattern.
12661         ("m68hc12_dbcc_dec_hi"): New pattern for dbeq/dbne.
12662         ("m68hc12_dbcc_inc_hi"): New pattern for ibeq/ibne.
12663         ("m68hc12_dbcc_dec_qi"): New pattern.
12664         ("m68hc12_dbcc_inc_qi"): New pattern.
12665         (split): Add split for the above when we can't use dbcc/ibcc due to
12666         reloading.
12667         (peephole2): Add peephole2 to generate the above when possible.
12668
12669 2003-04-12  Stephane Carrez  <stcarrez@nerim.fr>
12670
12671         * config/m68hc11/m68hc11.md ("bitcmpqi" split): No need to test the
12672         mode of operand 0.
12673         (peephole2 optimize const load): Likewise for operand 2.
12674         ("*rotlhi3_with_carry"): Change pattern to a const 1 rotate which
12675         clobbers CC_REGNUM.
12676         ("*rotrhi3_with_carry"): Likewise.
12677         (ashift:DI 1 split): Update pattern to create the above rotate.
12678         (lshiftrt:DI 1 split): Likewise.
12679
12680 2003-04-12  Stephane Carrez  <stcarrez@nerim.fr>
12681
12682         * config/m68hc11/m68hc11.md (SOFT_Z_REGNUM): New constant.
12683         ("tstqi_z_used" split): Use it.
12684         ("cmphi_z_used"): Likewise.
12685         ("bitcmpqi_z_used"): Likewise; also use SP_REGNUM constant.
12686         ("cmpqi_z_used"): Likewise.
12687
12688 2003-04-12  Mark Mitchell  <mark@codesourcery.com>
12689
12690         PR c++/7910
12691         * config/i386/winnt.c (i386_pe_mark_dllimport): Fix thinko.
12692
12693 2003-04-12  Zack Weinberg  <zack@codesourcery.com>
12694
12695         * configure.in: Check for wchar.h, mbstowcs, and wcswidth.
12696         * configure, config.in: Regenerate.
12697         * intl.c (gcc_gettext_width): New function.
12698         * intl.h: Prototype it.
12699
12700 2003-04-12  Stephane Carrez  <stcarrez@nerim.fr>
12701
12702         * config/m68hc11/m68hc11.h (TARGET_SWITCHES): Fix -mnominmax option;
12703         recognize -mnorelax.
12704         (reg_class): Add Z_OR_S_REGS to represent soft registers with Z
12705         (REG_CLASS_NAMES): Add its name.
12706         (REG_CLASS_CONTENTS): Define its content.
12707
12708 2003-04-12  Stephane Carrez  <stcarrez@nerim.fr>
12709
12710         * config/m68hc11/larith.asm (memcpy): Use ARG macro to access stack
12711         parameters so that offsets are valid for far definition.
12712         (__mulsi3): Likewise and use ret to return.
12713         (___adddi3, ___subdi3, ___notdi2, ): Don't use it to save the result.
12714
12715 2003-04-12  David Edelsohn  <edelsohn@gnu.org>
12716
12717         * config/rs6000/rs6000.c (rs6000_hash_constant): Skip '0' fields.
12718
12719 2003-04-12  Alexandre Oliva  <aoliva@redhat.com>
12720
12721         * mklibgcc.in (libgcc-stage-start): For every multilib  directory
12722         containing a libgcc.a, move lib* to the corresponding stage dir.
12723
12724         * Makefile.in (stage1-start, stage2-start, stage3-start,
12725         stage4-start): Move $(SPECS) to specs in stage dir.
12726         (unstage1 unstage2 unstage3 unstage4): Move specs in stage dir
12727         back as $(SPECS).
12728
12729         * mklibgcc.in (libgcc-stage-start): Move into the stage directory
12730         object files from the non-libgcc/ multilib directories as well.
12731
12732 2003-04-11  Geoffrey Keating  <geoffk@apple.com>
12733
12734         * profile.c (read_counts_file): Initialise 'checksum'.
12735
12736         * emit-rtl.c (gen_rtx): Really correct typo.
12737
12738         PR c++/9393
12739         * doc/invoke.texi (Debugging Options): Document -frandom-seed.
12740         * configure.in: Check for gettimeofday.
12741         * tree.c (flag_random_seed): Define.
12742         (default_flag_random_seed): New.
12743         (append_random_chars): Use flag_random_seed rather than trying
12744         to acquire randomness here.
12745         * tree.h (default_flag_random_seed): Declare.
12746         * toplev.c (display_help): Add -frandom-seed and -fstack-limit-*
12747         descriptions.
12748         (decode_f_option): Handle -frandom-seed.
12749         (print_switch_values): Call default_flag_random_seed.
12750         * flags.h (flag_random_seed): Declare.
12751         * configure: Regenerate.
12752         * config.in: Regenerate.
12753         * config/alpha/t-crtfm: Use -frandom-seed.
12754
12755         * doc/extend.texi (Empty Structures): New.
12756
12757         * c-pch.c: Include flags.h.  Add comments to routines.
12758         (struct c_pch_validity): New.
12759         (get_ident): Update PCH file version number.
12760         (pch_init): Output current debugging type.
12761         (c_common_valid_pch): Check debugging type.
12762         * Makefile.in (c-pch.o): Update dependencies.
12763         * flags.h (debug_type_names): Declare.
12764         * toplev.c (debug_type_names): Move out of decode_g_option.
12765
12766 2003-04-11  Eric Christopher  <echristo@redhat.com>
12767
12768         * emit-rtl.c (gen_rtx): Fix typos.
12769
12770 2003-04-11  Richard Henderson  <rth@redhat.com>
12771
12772         * emit-rtl.c (gen_rtx): Zero '0' fields.
12773
12774 2003-04-11  Richard Henderson  <rth@redhat.com>
12775
12776         PR c++/10202
12777         * expr.c (expand_expr): Use COMPLETE_OR_UNBOUND_ARRAY_TYPE_P
12778         not COMPLETE_TYPE_P for re-invoking layout_decl.
12779
12780 2003-04-11  Simon Law  <sfllaw@engmail.uwaterloo.ca>
12781
12782         * doc/bugreport.texi: Fix paragraph breaking between sections
12783         in preparation for TeXinfo's paragraph indentation fixes.
12784         * doc/extend.texi: Ditto.
12785         * doc/invoke.texi: Ditto.
12786         * doc/objc.texi: Ditto.
12787         * doc/gcov.texi: Wrap 'gcov' in @command{}.
12788         * doc/invoke.texi (Darwin Options): Add a preamble.
12789
12790 2003-04-11  Richard Henderson  <rth@redhat.com>
12791
12792         * config/i386/i386.c (tls_model_chars): Remove.
12793         (ix86_encode_section_info, ix86_strip_name_encoding): Remove.
12794         (local_symbolic_operand): Use SYMBOL_REF_LOCAL_P.
12795         (tls_symbolic_operand): Use SYMBOL_REF_TLS_MODEL.
12796         (tls_symbolic_operand_1): Likewise.
12797         (legitimate_pic_address_disp_p): Use SYMBOL_REF_LOCAL_P.
12798         * config/i386/i386.h (TARGET_ENCODE_SECTION_INFO): Remove.
12799         (TARGET_STRIP_NAME_ENCODING, ASM_OUTPUT_LABELREF): Remove.
12800         * config/i386/winnt.c (i386_pe_encode_section_info): Replace
12801         bits "copied from i386.h" with default_encode_section_info.
12802
12803 2003-04-11  Richard Henderson  <rth@redhat.com>
12804
12805         * rtl.def (SYMBOL_REF): Add two 0 fields.
12806         * gengtype.c (adjust_field_rtx_def): Handle them.
12807         * print-rtl.c (print_rtx): Print them.
12808         * rtl.h (SYMBOL_REF_DECL, SYMBOL_REF_FLAGS): New.
12809         (SYMBOL_FLAG_FUNCTION, SYMBOL_REF_FUNCTION_P): New.
12810         (SYMBOL_FLAG_LOCAL, SYMBOL_REF_LOCAL_P): New.
12811         (SYMBOL_FLAG_SMALL, SYMBOL_REF_SMALL_P): New.
12812         (SYMBOL_FLAG_TLS_SHIFT, SYMBOL_REF_TLS_MODEL): New.
12813         (SYMBOL_FLAG_EXTERNAL, SYMBOL_REF_EXTERNAL_P): New.
12814         (SYMBOL_FLAG_MACH_DEP): New.
12815         * optabs.c (init_one_libfunc): Zap fake SYMBOL_REF_DECL.
12816         * varasm.c (make_decl_rtl): Set SYMBOL_REF_DECL.
12817         (assemble_static_space): Set SYMBOL_REF_FLAGS.
12818         (assemble_trampoline_template): Likewise.
12819         (output_constant_def, force_const_mem): Likewise.
12820         (default_encode_section_info): New.
12821         * output.h: Declare it.
12822         * target-def.h (TARGET_ENCODE_SECTION_INFO): Use it.
12823
12824 2003-04-11  Richard Henderson  <rth@redhat.com>
12825
12826         * libfuncs.h (LTI_setbits, LTI_gcov_flush, LTI_gcov_init): New.
12827         (setbits_libfunc, gcov_flush_libfunc, gcov_init_libfunc): New.
12828         * optabs.c (init_optabs): Initialize them.
12829         (init_libfuncs): Use init_one_libfunc.
12830         * calls.c (expand_call): Use gcov_flush_libfunc.
12831         * expr.c (store_constructor): Use setbits_libfunc.
12832         * function.c (expand_main_function): Use init_one_libfunc.
12833         * profile.c (create_profiler): Use gcov_init_libfunc and DECL_RTL.
12834
12835 2003-04-11  Mark Mitchell  <mark@codesourcery.com>
12836
12837         * doc/c-tree.texi (Functions): Remove DECL_REAL_CONTEXT
12838         documentation; add DECL_FRIEND_CONTEXT.
12839
12840 2003-04-11  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
12841
12842         * doc/install.texi (hppa): Update links for HP-UX patches.  Revise
12843         notes on linker selection and configuration for 64-bit HP-UX port.
12844         * doc/invoke.texi (hppa): Remove hppa text from description for
12845         -ffunction-sections and -fdata-sections.  Document -static, -nolibdld
12846         and -threads options.
12847
12848         * pa-hpux10.h (LIB_SPEC): Add link options to resolve dependency of
12849         libc.a on libdld.sl when -static is specified and -nolibdld is not
12850         specified.
12851         * pa64-hpux.h (LIB_SPEC): Likewise.
12852         * pa-hpux11.h (LIB_SPEC): Likewise.
12853         (LINK_SPEC): Add __gcc_plt_call as an undefined symbol when -shared
12854         is not specified.
12855
12856 2003-04-11  Zack Weinberg  <zack@codesourcery.com>
12857
12858         * config/darwin-c.c (darwin_pragma_unused): Use lookup_name,
12859         not IDENTIFIER_LOCAL_VALUE.
12860
12861 2003-04-11  Richard Henderson  <rth@redhat.com>
12862
12863         PR c/10201
12864         * expr.c (expand_expr): Move DECL_RTL frobbing ...
12865         * stor-layout.c (layout_decl): ... here.
12866
12867 2003-04-11  James A. Morrison <ja2morri@uwaterloo.ca>
12868
12869         * doc/invoke.texi: Eliminate extra white-space caused by
12870         @gccoptlist{ on its own line.
12871         * doc/invoke.texi: Ensured there are two spaces between each option.
12872         * doc/invoke.texi: Re-wrapped option lines that were too wide.
12873         Added @gol to options that didn't have them.
12874
12875 2003-04-11  Nathan Sidwell  <nathan@codesourcery.com>
12876
12877         * Makefile.in (loop-init.o): Do not depend on gcov-io.h,
12878         gcov-iov.h.
12879
12880         Simplify interface to gcov reading and writing.
12881         * gcov-io.h (gcov_file, gcov_position, gcov_length, gcov_buffer,
12882         gcov_alloc, gcov_modified, gcov_errored): Move into ...
12883         (struct gcov_var gcov_var): ... this static structure.
12884         (gcov_write_unsigned, gcov_write_counter, gcov_write_string):
12885         Return void.
12886         (gcov_read_unsigned, gcov_read_couter, gcov_read_string): Return
12887         read object.
12888         (gcov_read_bytes, gcov_write_bytes): Set error flag on error.
12889         (gcov_reserve_length): Remove.
12890         (gcov_write_tag): New.
12891         (gcov_write_length): Adjust.
12892         (gcov_read_summary, gcov_write_summary): Adjust.
12893         (gcov_eof, gcov_ok): Rename to ...
12894         (gcov_is_eof, gcov_is_error): ... here. Return error code.
12895         (gcov_save_position, gcov_resync): Rename to ...
12896         (gcov_position, gcov_seek): ... here.
12897         (gcov_skip, gcov_skip_string): Remove.
12898         (gcov_error): Remove.
12899         (gcov_open, gcov_close): Adjust.
12900         * gcov.c (find_source): Take const char *, copy it on allocation.
12901         (read_graph_file): Adjust.
12902         (read_count_file): Adjust.
12903         * libgcov.c (gcov_exit): Adjust.
12904         * gcov-dump.c (tag_function, tag_blocks, tag_arcs, tag_lines,
12905         tag_arc_counts, tag_summary): Return void. Adjust.
12906         (struct tag_format): Adjust proc member.
12907         (dump_file): Adjust gcov calls.
12908
12909 2003-04-11  Alexandre Oliva  <aoliva@redhat.com>
12910
12911         * Makefile.in (fixinc.sh): Pass BUILD_LIBERTY as LIBERTY to
12912         mkfixinc.sh.
12913         * fixinc/mkfixinc.sh (defs): Add LIBERTY.
12914         * configure.in (STMP_FIXINC, STMP_FIXPROTO): Don't disable on
12915         build != host sysrooted builds.
12916         * configure.in (SYSTEM_HEADER_DIR): Make sure it contains
12917         TARGET_SYSTEM_ROOT even on sysrooted natives.
12918         * configure: Rebuilt.
12919
12920 2003-04-10  Zack Weinberg  <zack@codesourcery.com>
12921
12922         * c-decl.c (struct binding_level): Add shadowed_tags and
12923         function_body; remove this_block, tag_transparent, and
12924         subblocks_tag_transparent; update comments.
12925         (clear_binding_level, lookup_tag_reverse): Kill.
12926         (make_binding_level): Use ggc_alloc_cleared or memset.
12927         (lookup_tag): Remove struct binding_level* parameter.  All
12928         callers changed. Just look at IDENTIFIER_TAG_VALUE, and
12929         current_binding_level->tags if asked for thislevel_only or if
12930         we might have to diagnose "struct foo; union foo;"
12931         (pushlevel): Ignore argument.  Do not push another binding
12932         level on the transition from the parameters to the top level
12933         of the function body; just tweak the flags and proceed.
12934         (poplevel): Overhaul.  Clear IDENTIFIER_TAG_VALUEs; on exiting
12935         a function body, separate the parameter list from the
12936         top-level local variables.
12937         (set_block): Do nothing.
12938         (pushtag): Set IDENTIFIER_TAG_VALUE and add an entry to
12939         shadowed_tags if necessary.
12940         (warn_if_shadowing): Nuke the special case for local shadowing
12941         parameter.
12942         (pushdecl): Do not create a shadow entry if we are replacing
12943         an older decl in the same binding level.
12944         (pushdecl_function_level): Tweak for new way of indicating
12945         function scope.
12946         (shadow_tag_warned): Use TYPE_NAME, not lookup_tag_reverse.
12947         (start_function): Don't set subblocks_tag_transparent.
12948         (finish_function): Fix up the binding_level stack for totally
12949         empty functions.  Otherwise, don't call poplevel.
12950
12951         * c-common.c (shadow_warning): MANDATORY argument is no longer
12952         necessary.  Always use plain warning.
12953         * c-common.h: Update to match.
12954
12955         * cfglayout.c (scope_to_insns_initialize): Clear block when we
12956         hit the FUNCTION_DECL.
12957         * function.c: Do not create cyclic tree structure.
12958
12959 2003-04-10  Zack Weinberg  <zack@codesourcery.com>
12960
12961         * c-tree.h (struct lang_identifier): Replace global_value,
12962         local_value members with symbol_value, tag_value.  Kill
12963         implicit_decl and limbo_value.
12964         (IDENTIFIER_GLOBAL_VALUE, IDENTIFIER_LOCAL_VALUE,
12965         IDENTIFIER_LIMBO_VALUE, IDENTIFIER_IMPLICIT_DECL,
12966         C_MISSING_PROTOTYPE_WARNED): Kill.
12967         (IDENTIFIER_SYMBOL_VALUE, IDENTIFIER_TAG_VALUE,
12968         C_DECL_IMPLICIT, C_DECL_ISNT_PROTOTYPE): New.
12969         (C_DECL_ANTICIPATED): Rename to C_DECL_INVISIBLE.
12970         (implicit_decl_warning, lookup_name_current_level,
12971         record_function_scope_shadow): Don't prototype.
12972         (pushdecl_function_level): Prototype.
12973
12974         * c-decl.c (truly_local_externals): New variable.
12975         (struct binding_level): Adjust commentary.
12976         (get_function_binding_level, clear_limbo_values,
12977         record_function_scope_shadow): Kill.
12978         (lookup_name_current_level, implicit_decl_warning): Are now static.
12979         (any_external_decl, record_external_decl): New static functions.
12980         (clone_underlying type): Split out of pushdecl.
12981         (c_print_identifier): Update to match changes to struct
12982         lang_identifier.
12983         (poplevel): Delete #if 0 block.  Make externals invisible
12984         instead of clearing their IDENTIFIER_SYMBOL_VALUEs.  Don't
12985         call clear_limbo_values.  Refer to IDENTIFIER_SYMBOL_VALUE not
12986         IDENTIFIER_GLOBAL_VALUE or IDENTIFIER_LOCAL_VALUE.
12987         (duplicate-decls): For real parm decl after a forward decl,
12988         set TREE_ASM_WRITTEN here.  Allow void foo(...) followed by
12989         foo(...) { } with only a warning.  Say whether a previous
12990         declaration was implicit.
12991         (warn_if_shadowing): Now handles all shadowing, not just
12992         local-over-local.  Clarify comments.
12993         (pushdecl): Rewritten.  There is no longer a distinction
12994         between global and local symbol values; they're all
12995         IDENTIFIER_SYMBOL_VALUE.  Call record_external_decl on all
12996         DECL_EXTERNAL decls, and use any_external_decl to check
12997         against previous externals.  Kill #if 0 blocks.  Don't
12998         tolerate error_mark_node being NULL.
12999         (pushdecl_top_level): Handle only those cases which
13000         Objective C (the only user) needs.
13001         (pushdecl_function_level): New function.
13002         (implicitly_declare): Create ordinary decls with
13003         C_DECL_IMPLICIT set.  Recycle old decls, however they got
13004         created.
13005         (lookup_name): It's always IDENTIFIER_SYMBOL_VALUE. Return 0
13006         for C_DECL_INVISIBLE symbols.
13007         (lookup_name_current_level): Likewise.  Use chain_member.
13008         (c_make_fname_decl): Don't muck with DECL_CONTEXT.
13009         Use pushdecl_function_level.
13010         (builtin_function): Use C_DECL_INVISIBLE.
13011         (start_function): Don't muck with IDENTIFIER_IMPLICIT_DECL.
13012         Use C_DECL_ISNT_PROTOTYPE and C_DECL_IMPLICIT.
13013         (store_parm_decls): It's IDENTIFIER_SYMBOL_VALUE now.
13014         (identifier_global_value): Same.  Must scan
13015         global_binding_level in extremis.
13016
13017         * c-typeck.c (undeclared_variable): New static function, split
13018         from build_external_ref.
13019         (build_external_ref): Use DECL_CONTEXT, not
13020         IDENTIFIER_LOCAL_VALUE, to decide whether a local hides
13021         an instance variable.  Restructure for clarity.
13022         * objc/objc-act.c: Use identifier_global_value, not
13023         IDENTIFIER_GLOBAL_VALUE.
13024
13025 2003-04-08  Jonathan Wakely  <redi@gcc.gnu.org>
13026
13027         * doc/extend.texi (Template Instantiation): Refer to ISO standard,
13028         not Working Paper.
13029         * doc/invoke.texi (C++ Dialect Options): Same.
13030
13031 2003-04-10  Zack Weinberg  <zack@codesourcery.com>
13032
13033         * tree.c (tree_operand_check_failed): New function.
13034         * tree.h (TREE_OPERAND_CHECK, TREE_OPERAND_CHECK_CODE,
13035         TREE_RTL_OPERAND_CHECK): New checking macros.
13036         (TREE_OPERAND, SAVE_EXPR_CONTEXT, SAVE_EXPR_RTL,
13037         RTL_EXPR_SEQUENCE, RTL_EXPR_RTL, WITH_CLEANUP_EXPR_RTL,
13038         CONSTRUCTOR_ELTS, LABELED_BLOCK_LABEL, LABELED_BLOCK_BODY,
13039         EXIT_BLOCK_RETURN, LOOP_EXPR_BODY, EXPR_WFL_NODE,
13040         EXPR_WFL_FILENAME_NODE, EXPR_WFL_FILENAME, TARGET_EXPR_SLOT,
13041         TARGET_EXPR_INITIAL, TARGET_EXPR_CLEANUP): Use the new
13042         checking macros.
13043
13044 Thu Apr 10 23:52:30 CEST 2003  Jan Hubicka  <jh@suse.cz>
13045
13046         PR inline-asm/8803
13047         * function.c (instantate_virtual_regs):  Verify that all ASM statements
13048         match after the virutal regs instantiation.
13049
13050 2003-04-10  Steve Ellcey  <sje@cup.hp.com>
13051
13052         * ia64-protos.h (addp4_optimize_ok): New.
13053         * ia64.c (addp4_optimize_ok): New.
13054         * ia64.md (*ptr_extend_plus_1): Use addp4_optimize_ok.
13055         (*ptr_extend_plus_2): Ditto.
13056
13057 2003-04-10  Steve Ellcey  <sje@cup.hp.com>
13058
13059         * expr.c (expand_assignment): Extend offset_rtx with convert_to_mode
13060         not with convert_memory_address.
13061         (store_constructor): Ditto, and same for copy_size_rtx.
13062         (expand_expr): Ditto.
13063
13064 2003-04-10  Douglas B Rupp  <rupp@gnat.com>
13065
13066         * config/i386/i386.c (ix86_ms_bitfield_layout_p): Fix formatting.
13067
13068 2003-04-10  Bob Wilson  <bob.wilson@acm.org>
13069
13070         * config/xtensa/lib2funcs.S (__xtensa_sync_caches): Flush data cache
13071         even if it is configured to be write-through.
13072
13073 2003-04-10  Ulrich Weigand  <uweigand@de.ibm.com>
13074
13075         * config/s390/s390.c (larl_operand): Do not allow symbols
13076         marked with '@'.
13077         (s390_encode_section_info): Mark symbols with forced 1-byte
13078         alignment with '@'.
13079         (s390_strip_name_encoding): Strip '@'.
13080         (legitimize_pic_address): Handle symbols that are not valid
13081         LARL operands in 64-bit mode.
13082
13083 2003-04-10  Andrew Haley  <aph@redhat.com>
13084
13085         * tree-inline.c (inlinable_function_p): Disable inlining for
13086         synchronized methods.
13087
13088 2003-04-09  Steven Bosscher  <steven@gcc.gnu.org>
13089
13090         * c-common.h (lang_statement_code_p): Remove declaration.
13091         (statement_code_p): Ditto.
13092         (c_common_stmt_codes): Define; list of c-common statement codes.
13093         (statement_code_p): New extern declaration.
13094         (STATEMENT_CODE_P): Define.
13095         (INIT_STATEMENT_CODES): Define.
13096         * c-common.c (statement_code_p): Kill the function, declare
13097         as an array of bools instead.
13098         (lang_statement_code_p): Remove.
13099         (walk_stmt_tree): Use STATEMENT_CODE_P not statement_code_p.
13100         (c_safe_from_p): Ditto.
13101         * c-objc-common.c (c_objc_common_init): Use INIT_STATEMENT_CODES
13102         to initialize the statement_code_p array.
13103         * tree-inline.c (walk_tree): Use STATEMENT_CODE_P instead of
13104         statement_code_p.
13105         (copy_tree_r): Ditto.
13106         * cp/cp-tree.h (cp_stmt_codes): Define; list of C++ specific
13107         statement tree codes.
13108         * cp/lex.c (cxx_init): Add missing print line break.  Use
13109         INIT_STATEMENT_CODES to initialize the statement_code_p array.
13110         * cp/parser.c (cp_parser_statement): Use STATEMENT_CODE_P
13111         instead of statement_code_p.
13112         * cp/pt.c (tsubst_expr): Ditto.
13113         * cp/tree.c (verify_stmt_tree_r): Ditto.
13114         (cp_statement_code_p): Remove.
13115         (init_tree): Don't set lang_statement_code_p, it's gone.
13116
13117 2003-04-09  Dan Nicolaescu  <dann@ics.uci.edu>
13118             Zack Weinberg  <zack@codesourcery.com>
13119
13120         * regrename.c (struct du_chain): Use a bitfield for reg_class.
13121         * cse.c (struct qty_table_elem, struct table_elt, struct set):
13122         Use bitfields for fields holding enum rtx_code or
13123         enum machine_mode values.  Add comments explaining size choices.
13124
13125 2003-04-09  Alexandre Oliva  <aoliva@redhat.com>
13126
13127         * config/fp-bit.c (unpack_d): Handle pair of doubles with
13128         different signs correctly.
13129
13130 2003-04-09  Vladimir Makarov  <vmakarov@redhat.com>
13131
13132         * sched-deps.c (reg_pending_barrier_mode): New enumeration.
13133         (reg_pending_barrier): Make it of the enumeration type.
13134         (sched_analyze_2): Define the barrier as MOVE_BARRIER or
13135         TRUE_BARRIER.
13136         (sched_analyze): Ditto.
13137         (sched_analyze_insn): Ditto.  Use anti-dependencies for
13138         MOVE_BARRIER and true-dependencies as TRUE_BARRIER.
13139         (init_deps_global): Initialize the barrier as NO_BARRIER.
13140
13141 2003-04-09  Vladimir Makarov  <vmakarov@redhat.com>
13142
13143         * config/ia64/ia64.c (issue_nops_and_insn): Add new parameter.
13144         Check that asm insn starts on a new cycle.  Add nops after asm
13145         insn to end bundle.
13146         (bundling): Move insn type evaluation from the loop.  Call
13147         issue_nops_and_insn with the new parameter.  Ignore changing
13148         position for nops after asm insn.
13149
13150 2003-04-09  Alexandre Oliva  <aoliva@redhat.com>
13151
13152         * optabs.c: Comment that gen_add2_insn and others may actually
13153         return emitted insns, if the gen functions turn out to return
13154         emitted insns.
13155         * reload1.c (reload_cse_move2add): Cope with emitted insns from
13156         gen_add2_insn.
13157
13158 2003-04-09  Richard Henderson  <rth@redhat.com>
13159
13160         * config/ia64/ia64.c (move_operand): Allow symbolic_operand,
13161         but not tls_symbolic_operand.
13162         (ia64_expand_load_address): Remove scratch operand.
13163         (ia64_expand_tls_address): Split out from ia64_expand_move.
13164         (ia64_expand_move): Split symbolics only after reload.
13165         (ia64_emit_cond_move): New.
13166         * config/ia64/ia64-protos.h: Update.
13167         * config/ia64/ia64.md (movsi_symbolic, movdi_symbolic): Remove.
13168         (symbolic splitter): Accept SImode operands too.
13169         (cmove splitter): Use ia64_emit_cond_move.
13170
13171 2003-04-09  Nick Clifton  <nickc@redhat.com>
13172
13173         * doc/install.texi: Note that ARM toolchains need binutils 2.13 or
13174         newer.
13175         * config/arm/elf.h (SUBTARGET_ASM_FLOAT_SPEC): Pass -mfpu=softfpa
13176         instead of -mno-fpu.
13177         * config/arm/semi.h (ASM_SPEC): Likewise.
13178         * config/arm/xscale-elf.h (SUBTARGET_EXTRA_ASM_SPEC): Likewise,
13179         but only if -msoft-float is specified pass.  Otherwise pass
13180         -mfpu=softvfp.
13181
13182 2003-04-09  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
13183
13184         * function.c (purge_addressof): Use free_INSN_LIST_node instead of
13185         free_EXPR_LIST_node.
13186
13187 2003-04-08  Roger Sayle  <roger@eyesopen.com>
13188
13189         * fold-const.c (fold):  Use "fold" following build in more places.
13190         Optimize sqrt(x)*sqrt(x) as x, pow(x,y)*pow(z,y) as pow(x*z,y),
13191         pow(x,y)*pow(x,z) as pow(x,y+z) and x/pow(y,z) as x*pow(y,-z).
13192
13193 2003-04-08  Roger Sayle  <roger@eyesopen.com>
13194
13195         * builtins.c (fold_builtin):  Constant fold expressions as x*0.5
13196         instead of x/2.0.  Optimize sqrt(pow(x,y)) as pow(x,y*0.5),
13197         log(pow(x,y)) as y*log(x), pow(exp(x),y) as exp(x*y),
13198         pow(sqrt(x),y) as pow(x,y*0.5) and pow(pow(x,y),z) as pow(x,y*z).
13199         Delete function scope "fcode" variable to avoid shadowing.
13200
13201 2003-04-08  Kevin Buettner  <kevinb@redhat.com>
13202
13203         * dwarf2out.c (DWARF_ARANGES_HEADER_SIZE, DWARF_ARANGES_PAD_SIZE):
13204         Take into account DWARF_INITIAL_LENGTH_SIZE.
13205
13206 2003-04-08  Hans-Peter Nilsson  <hp@axis.com>
13207
13208         * reorg.c (fill_slots_from_thread): When considering changing the
13209         insn following a reg-to-reg copy insn to use the source reg of the
13210         copy, bail out if there's overlap between the registers.
13211
13212 2003-04-08  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
13213
13214         * function.c (postponed_insns): New.
13215         (purge_addressof_1): Postpone processing of insns if addressofs
13216         are not put into stack.
13217         (purge_addressof): Process postponed insns.
13218
13219 2003-04-08  J"orn Rennecke <joern.rennecke@superh.com>
13220
13221         * sh.h (NORMAL_MODE): If interrupt handler and TARGET_FMOVD,
13222         this is FP_MODE_DOUBLE .
13223         * sh.c (ra.h): #include.
13224         (push_regs): Add second parameter.  Changed all callers.
13225         If necessary, set fpscr before saving floating point registers.
13226         (calc_live_regs): If interrupt handler and TARGET_FMOVD, always
13227         do saves / restores with SZ == 1.
13228         (sh_expand_prologue): If interrupt handler, don't use gen_toggle_sz.
13229         (sh_expand_epilogue): Likewise.  For TARGET_FMOVD, if floating point
13230         registers are being restored, restore FPSCR only after restoring them.
13231
13232 2003-04-08  Aldy Hernandez  <aldyh@redhat.com>
13233
13234         * config/rs6000/rs6000.c (rs6000_init_builtins): Set opaque types
13235         regardless of architecture.
13236         (spe_init_builtins): Change V2SI and V2SF types to opaque types.
13237
13238 2003-04-08  J"orn Rennecke <joern.rennecke@superh.com>
13239
13240         * sh.c (push_regs, calc_live_regs): Return int.  Take single
13241         HARD_REG_SET * parameter.  Changed all callers.
13242
13243 Tue Apr  8 11:12:07 CEST 2003  Jan Hubicka  <jh@suse.cz>
13244
13245         * i386.c (legitimate_pic_address_disp_p): Do not accept PLUS in the
13246         GOTOFF operand.
13247         (legitimize_pic_address): Move plus outside the unspec.
13248         * i386.c (legitimate_constant_p):  Check (CONST (PLUS (UNSPEC ...
13249         for validity.
13250
13251 2003-04-08  Nathan Sidwell  <nathan@codesourcery.com>
13252
13253         * gcov-io.h (gcov_save_position): Remove __inline__ from
13254         declaration.
13255
13256 2003-04-07  Matt Kraai  <kraai@alumni.cmu.edu>
13257
13258         * doc/install.texi: Use @command and @samp for single- and
13259         multi-word commands respectively.
13260         * doc/makefile.texi: Likewise.
13261         * doc/sourcebuild.texi: Likewise.
13262
13263 2003-04-07  Christian Ehrhardt  <ehrhardt@mathematik.uni-ulm.de>
13264             Richard Henderson  <rth@redhat.com>
13265
13266         PR c/9516
13267         * expr.c (safe_from_p): Rearrange to avoid deep recursion in
13268         favor of looping and tail recursion for TREE_LIST and binops.
13269
13270 2003-04-08  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
13271
13272         * loop.h (REGNO_FIRST_LUID, REGNO_LAST_LUID): Provide defaults
13273         for insns without luid.
13274
13275 2003-04-07  Glen Nakamura  <glen@imodulo.com>
13276
13277         PR opt/8634
13278         * explow.c (maybe_set_unchanging): Don't flag non-static const
13279         aggregate type initializers with RTX_UNCHANGING_P.
13280
13281 2003-04-07  Richard Henderson  <rth@redhat.com>
13282
13283         PR opt/8634
13284         * function.c (purge_addressof_1): Don't try arithmetics for
13285         unchanging memories.
13286
13287 2003-04-07  Janis Johnson  <janis187@us.ibm.com>
13288
13289         * doc/sourcebuild.texi (Test Suites): Document testing support for
13290         gcov and profile-directed optimizations; describe gcc.misc-tests.
13291
13292 Mon Apr  7 22:19:59 CEST 2003  Jan Hubicka  <jh@suse.cz>
13293
13294         PR target/10077
13295         * i386.md (movsi_1, movsi_nointerunit_1):  Fix SSEMOV alternative.
13296
13297 2003-04-07  Eric Botcazou  <ebotcazou@libertysurf.fr>
13298
13299         * doc/rtl.texi (Comparison operations): Update to
13300         record the allowed comparison modes.
13301
13302 2003-04-07  Aldy Hernandez  <aldyh@redhat.com>
13303
13304         * config/rs6000/rs6000.c (rs6000_common_init_builtins): Rename all
13305         V2SI_type_node to opaque_V2SI_type_node.  Rename all
13306         V2SF_type_node to opaque_V2SF_type_node.
13307         (rs6000_init_builtins): Define opaque_V2SI_type_node and
13308         opaque_V2SF_type_node.
13309         (is_ev64_opaque_type): The types opaque_V2SI_type_node and
13310         opaque_V2SF_type_node are opaque types.
13311
13312 2003-04-07  J"orn Rennecke <joern.rennecke@superh.com>
13313
13314         * gcse.c (replace_store_insn): Use single_set.
13315
13316 2003-04-07  Nathan Sidwell  <nathan@codesourcery.com>
13317
13318         Change gcov file interface to single file at a time.
13319         * gcov-io.h: Replace IN_LIBGCC1 with IN_LIBGCOV. Use IN_GCOV.
13320         Convert to C89 prototypes.
13321         (gcov_file, gcov_length, gcov_position, gcov_buffer, gcov_alloc,
13322         gcov_error, gcov_modified): New static variables.
13323         (gcov_open, gcov_close, gcov_read_bytes, gcov_write_bytes): New
13324         functions.
13325         (gcov_write_unsigned, gcov_write_counter, gcov_write_string,
13326         gcov_read_unsigned, gcov_read_counter, gcov_read_string): Adjust.
13327         (gcov_read_summary, gcov_write_summary): Adjust.
13328         (gcov_save_position, gcov_reserve_length, gcov_write_length):
13329         Adjust.
13330         (gcov_resync, gcov_skip, gcov_skip_string): Adjust.
13331         (da_file_open, da_file_close, da_file_eof, da_file_error): Remove.
13332         (da_file_position, da_file_seek, da_file_write, da_file_read):
13333         Remove.
13334         (gcov_error, gcov_eof, gcov_ok, gcov_time): New functions.
13335         * gcov.c (gcov_type): Don't typedef here.
13336         (IN_GCOV): #define
13337         (read_graph_file, read_count_file): Adjust.
13338         * gcov-dump.c (gcov_type): Don't typedef here.
13339         (IN_GCOV): #define.
13340         (tag_function, tag_blocks, tag_arcs, tag_lines, tag_arc_counts):
13341         Remove FILE parameter, adjust.
13342         (struct tag_format): Adjust proc member.
13343         (dump_file): Adjust.
13344         * libgcov.c (IN_LIBGCOV): #define.
13345         (gcov_exit): Adjust.
13346         * loop-init.c: Don't #include gcov-io.h
13347         * profile.c (struct counts_entry): New structure to hold counter
13348         values.
13349         (struct section_reference, struct da_index_entry): Remove.
13350         (bbg_file, da_file): Remove.
13351         (htab_counts_index_hash, htab_counts_index_eq,
13352         htab_counts_index_del): Replace with ...
13353         (htab_counts_entry_hash, htab_counts_entry_eq,
13354         htab_counts_entry_del): ... these.
13355         (cleanup_counts_index, index_counts_file): Remove.
13356         (read_counts_file): New function.
13357         (get_exec_counts): Adjust.
13358         (compute_branch_probabilities): Don't free the exec counts here.
13359         (branch_prob): Adjust.
13360         (init_branch_prob): Adjust.
13361         (end_branch_prob): Adjust.
13362
13363 2003-04-07  Aldy Hernandez  <aldyh@redhat.com>
13364
13365         * doc/invoke.texi (RS/6000 and PowerPC Options): Document
13366         -mfloat-gprs.
13367
13368         * config/rs6000/rs6000.c: Delete rs6000_fprs.
13369         Declare rs6000_float_gprs.
13370         Declare rs6000_float_gprs_string.
13371         (rs6000_parse_float_gprs_option): New.
13372         (rs6000_override_options): Genericize rs6000_parse_* calls to use
13373         rs6000_parse_yes_no_option.
13374         Change check for cpu=8540, to use TARGET_E500.
13375         (rs6000_parse_isel_option): Delete.
13376         (rs6000_parse_spe_option): Delete.
13377         (rs6000_parse_vrsave_option): Delete.
13378
13379         * config/rs6000/rs6000.h: Rename rs6000_fprs to rs6000_float_gprs.
13380         Define rs6000_float_gprs_string.
13381         (TARGET_OPTIONS): Add rs6000_float_gprs option.
13382
13383         * config/rs6000/eabi.h (TARGET_FPRS): Change to use rs6000_float_gprs.
13384
13385         * config/rs6000/eabispe.h: Set rs6000_float_gprs.
13386
13387 Mon Apr  7 14:36:24 CEST 2003  Jan Hubicka  <jh@suse.cz>
13388
13389         PR opt/10024
13390         * cfglayout.c (cfg_layout_redirect_edge):
13391         Redirect any branch edges unified with the fallthru one.
13392         * cfgrtl.c (force_nonfallthru_and_redirect):  Do not special
13393         case fallthru edges when called via cfglayout.c
13394
13395 2003-04-07  J"orn Rennecke <joern.rennecke@superh.com>
13396
13397         * c-typeck.c (output_init_element): Check for type == error_mark_node.
13398
13399 2003-04-07  Kazu Hirata  <kazu@cs.umass.edu>
13400
13401         * config/h8300/h8300.md (*zero_extendqisi2_h8300hs): Always
13402         split.
13403         (a splitter): Do zero-extension via HImode.
13404
13405 2003-04-07  James A. Morrison <ja2morri@uwaterloo.ca>
13406
13407         * doc/invoke.texi: Eliminate extra white-space caused by
13408         @gccoptlist{ on its own line.
13409         * doc/invoke.texi: Ensured there are two spaces between each option.
13410         * doc/invoke.texi: Re-wrapped option lines that were too wide.
13411         Added @gol to options that didn't have them.
13412
13413 2003-04-07  James A Morrison <ja2morri@student.math.uwaterloo.ca>
13414
13415         * doc/extend.texi (Darwin Pragmas): Fix spelling of Mac OS.
13416
13417 2003-04-06  Zack Weinberg  <zack@codesourcery.com>
13418
13419         * tree.c (tree_size): For all 'c' and 'x' nodes, look directly
13420         at the sizes of the relevant structures, rather than relying
13421         on TREE_CODE_LENGTH.  Call lang_hooks.tree_size to get the
13422         sizes of any such we don't know about.  Use
13423         lang_hooks.identifier_size for IDENTIFIER_NODE.
13424
13425         (initializer_zerop): Use CONSTRUCTOR_ELTS.
13426         * tree.def: Update commentary.  Make fourth element of
13427         the definition for all 'c' and 'x' nodes zero.
13428
13429         * langhooks.h: New hook, tree_size / LANG_HOOKS_TREE_SIZE.
13430         * langhooks-def.h: Update to match.
13431         * langhooks.c: New default, lhd_tree_size.
13432
13433         * c-common.def (SRCLOC): Kill.
13434         * c-pretty-print.c (pp_c_postfix_expression [case SRCLOC]):
13435         Remove entirely - was already #if-ed out.
13436
13437
13438 2003-04-06  Zack Weinberg  <zack@codesourcery.com>
13439
13440         * mklibgcc.in: Use a here document to avoid running afoul of
13441         shells that generate control-A from "echo \1".
13442
13443 2003-04-06  Aldy Hernandez  <aldyh@redhat.com>
13444
13445         * doc/invoke.texi (RS/6000 and PowerPC Options): Document -mspe
13446         option.
13447
13448         * config/rs6000/eabispe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Set
13449         rs6000_spe.
13450
13451         * config/rs6000/eabi.h (TARGET_E500): Define.
13452
13453         * config/rs6000/rs6000.h (TARGET_E500): Define.
13454         (TARGET_OPTIONS): Add spe= option.
13455         Declare rs6000_spe and rs6000_spe_string extern.
13456
13457         * config/rs6000/rs6000.c (branch_positive_comparison_operator):
13458         Change TARGET_SPE to TARGET_E500.
13459         (ccr_bit): Change TARGET_SPE to TARGET_E500.  Check for
13460         !TARGET_FPRS.
13461         (print_operand): Same.
13462         (rs6000_generate_compare): Same.
13463         (output_cbranch): Same.
13464         (rs6000_spe): Declare.
13465         (rs6000_spe_string): Declare.
13466         (rs6000_override_options): Call rs6000_parse_spe_option.
13467         (rs6000_parse_spe_option): New.
13468
13469 2003-04-06  Steven Bosscher  <steven@gcc.gnu.org>
13470
13471         * hashtable.c (gcc_obstack_init): Delete this function
13472         and everything related to it.
13473         * hashtable.h: Remove prototype.
13474         * bitmap.c (bitmap_element_allocate): Cleanup redundant
13475         defines.  Cleanup some unnecessary whitespace.
13476         * defaults.h (obstack_chunk_alloc): Redefine with
13477         appropriate casts for libiberty obstacks.
13478         (obstack_chunk_free): Ditto.
13479         (OBSTACK_CHUNK_SIZE): Define, default to 0.
13480         (gcc_obstack_init): Define as a call to _obstack_begin.
13481         * tree.c (print_obstack_statistics): Delete this unused
13482         function.
13483         * tree.h (obstack): Don't forward-declare.
13484         (print_obstack_statistics): Delete prototype.
13485         (print_obstack_name): Ditto.
13486         (gcc_obstack_init): Ditto.
13487         * rtl.h (gcc_obstack_init): Ditto.
13488         * java/jv-scan.c (gcc_obstack_init): Delete this
13489         function, its prototype and related defines.
13490         * java/jvgenmain.c (gcc_obstack_init): Delete this
13491         function, and related defines.
13492         * java/parse-scan.y (obstack_chunk_alloc): Don't define.
13493         (obstack_chunk_free): Ditto
13494
13495 2003-04-06  Geoffrey Keating  <geoffk@apple.com>
13496
13497         * dbxout.c (dbxout_handle_pch): Move prototype out from
13498         #if defined DBX_DEBUGGING_INFO.
13499
13500 2003-04-05  Nathan Sidwell  <nathan@codesourcery.com>
13501
13502         * gcov.c (struct arc_info): Replace local_span with cycle.
13503         (struct block_info): Replace u.span with u.cycle. Add is_call_return.
13504         (solve_flow_graph): Set is_call_return.
13505         (add_line_counts): Adjust. In block mode, blocks attach to last line.
13506         (accumulate_line_counts): Find graph cycles, not spanning tree.
13507         (output_branch_count): Adjust.
13508         (output_lines): Adjust.
13509         * doc/gcov.texi: Update.
13510
13511 2003-04-06  Kazu Hirata  <kazu@cs.umass.edu>
13512
13513         * config/h8300/h8300.md (*zero_extendqisi2_h8300hs): Change
13514         the second alternative to "#".
13515
13516 2003-04-05  Kazu Hirata  <kazu@cs.umass.edu>
13517
13518         * config/h8300/h8300.c (single_one_operand): Use GET_MODE_MASK.
13519         (single_zero_operand): Likewise.
13520
13521 2003-04-05  Daniel Berlin  <dberlin@dberlin.org>
13522
13523         * Makefile.in (df.o):  Depend on alloc-pool.h, not obstack.h.
13524         * df.c: Include alloc-pool.h, not obstack.h.
13525         (df_ref_obstack): Remove.
13526         (df_ref_pool, df_link_pool): Add pools.
13527         (df_alloc): Init the new pools.
13528         (df_free): And free them.
13529         (df_link_create): Use the pools.
13530         (df_ref_create): Ditto.
13531
13532 2003-04-05  Kazu Hirata  <kazu@cs.umass.edu>
13533
13534         * simplify-rtx.c: Fix formatting.
13535
13536 2003-04-05  Andrew Pinski  <apinski@apple.com>
13537
13538         * config/rs6000/rs6000.c (addrs_ok_for_quad_peep): Allow addr2
13539         reg with reg1 == reg2 and offset1 = -8.
13540
13541 2003-04-05  David Edelsohn  <edelsohn@gnu.org>
13542
13543         * config/rs6000/rs6000.c (rs6000_rtx_costs): Halve Power4
13544         multiply costs.  Correct Power4 divide costs.
13545         * config/rs6000/power4.md: Restore multiply and FP latency.
13546
13547 2003-04-05  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
13548
13549         * alias.c (find_base_term): Export.
13550         * rtl.h (find_base_term): Declare.
13551         * gcse.c (find_moveable_store): Test for flag_non_call_exceptions
13552         instead of flag_exceptions.  Move test for parameter passing ...
13553         (store_killed_in_insn): ... here.
13554
13555 2003-04-05  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
13556
13557         PR bootstrap/10267
13558         * doc/install.texi (*-*-solaris2): /bin/ksh is not just recommended
13559         for configuring.
13560
13561 2003-04-04  Geoffrey Keating  <geoffk@apple.com>
13562
13563         * dbxout.c (scope_labelno): Add GTY.
13564         (have_used_extensions): Add GTY.
13565         (source_label_number): Add GTY.
13566         (lastfile): Add GTY.
13567         (lastfile_is_base): New.
13568         (base_input_file): New.
13569         (dbxout_handle_pch): New.
13570         (dbx_debug_hooks): Add handle_pch.
13571         (xcoff_debug_hooks): Likewise.
13572         (dbxout_function_end): Remove scope_labelno.
13573         (dbxout_init): Set base_input_file.
13574         (dbxout_handle_pch): New.
13575         (dbxout_source_file): Honour lastfile_is_base.
13576         * dwarfout.c (dwarf_debug_hooks): Add dummy handle_pch.
13577         * sdbout.c (sdb_debug_hooks): Add dummy handle_pch.
13578         * vmsdbgout.c (vmsdbg_debug_hooks): Add dummy handle_pch.
13579         * dwarf2out.c (dwarf2_debug_hooks): Add dummy handle_pch.
13580         * debug.c (do_nothing_debug_hooks): Add dummy handle_pch.
13581         * debug.h (struct gcc_debug_hooks): Add handle_pch.
13582         * c-pch.c (pch_init): Don't call start_source_file, but do call
13583         handle_pch.
13584         (c_common_write_pch): Call handle_pch.
13585         (c_common_read_pch): Don't call start_source_file,
13586         or end_source_file.
13587
13588 Fri Apr  4 17:43:52 2003  Olivier Hainque <hainque@act-europe.fr>
13589
13590         * emit-rtl.c (get_mem_attrs): Adjust alignment tests determining
13591         use of default attributes to agree MEM_ALIGN macro.
13592
13593 Fri Apr  4 17:33:24 2003  Joel Brobecker  <brobecker@gnat.com>
13594
13595         * dbxout.c (dbxout_type): When printing type index of range type
13596         whose bounds are printed in octal format, print type of parent type if
13597         it exists so enumerated type descriptions are not transformed
13598         into unsigned types.
13599
13600 2003-04-04  Kazu Hirata  <kazu@cs.umass.edu>
13601
13602         * config/h8300/h8300-protos.h: Add a prototype for
13603         compute_a_shift_cc.
13604         * config/h8300/h8300.c (shift_one): Update the CC status.
13605         (shift_two): Likewise.
13606         (output_a_shift_cc): Set cc_inline and cc_special.
13607         (compute_a_shift_cc): New.
13608         * config/h8300/h8300.md (shift insns): Use compute_a_shift_cc.
13609
13610 2003-04-04  Richard Henderson  <rth@redhat.com>
13611
13612         * cse.c (fold_rtx): Fix 03-30 change; do check insn non-null.
13613
13614 2003-04-04  Loren James Rittle  <ljrittle@acm.org>
13615
13616         * fixinc/inclhack.def (bsd_stdio_attrs_conflict): New.
13617         * fixinc/fixincl.x: Rebuilt.
13618         * fixinc/tests/base/stdio.h: Regenerated.
13619
13620 2003-04-04  Nathan Sidwell  <nathan@codesourcery.com>
13621
13622         * gcov.c (accumulate_line_counts): Fix span tree merge bug.
13623
13624 Fri Apr  4 15:58:52 2003  J"orn Rennecke <joern.rennecke@superh.com>
13625
13626         * sh.h (ACTUAL_NORMAL_MODE): New macro, broken out of
13627         (NORMAL_MODE).
13628         * sh.c (fpscr_set_from_mem): Use ACTUAL_NORMAL_MODE.
13629
13630 2003-04-04  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
13631
13632         * doc/contrib.texi (Contributors): Add entries for Wolfgang
13633         Bangerth, DJ Delorie, Christian Ehrhardt, Christopher Faylor,
13634         Nathanael Nerode, Diego Novillo, Hartmut Penner, Volker Reichelt,
13635         Danny Smith, and Ulrich Weigand.
13636         Update Kriang Lerdsuwanakij and fix a typo in Janis Johnson's
13637         entry.
13638
13639 2003-04-04  Nick Clifton  <nickc@redhat.com>
13640
13641         * config/sparc/sol2-bi.h: Revert previous delta.
13642         * config/sparc/sol2-gas-bi.h (AS_SPARC64_FLAG): Prepend -TSO
13643
13644 2003-04-04  Nick Clifton  <nickc@redhat.com>
13645
13646         * config/v850/v850.c (expand_prologue): Only use register save
13647         helper functions if long calls are not being used.
13648         Add a clobber of r11 id using long calls.
13649         (pattern_is_ok_for_prologue): Account for the extra clobber.
13650         (construct_save_jarl): Likewise.
13651         * config/v850/v850.md (prolog pattern): Do not use this pattern
13652         for v850e's.
13653
13654 2003-04-04  Andreas Schwab  <schwab@suse.de>
13655
13656         * stor-layout.c (layout_decl): Avoid syntax error in last change
13657         when PCC_BITFIELD_TYPE_MATTERS is defined but not
13658         EMPTY_FIELD_BOUNDARY.
13659
13660 2003-04-03  Jason Merrill  <jason@redhat.com>
13661
13662         PR c/10175
13663         * jump.c (never_reached_warning): Revert patch of 2002-11-02.
13664         Look backwards for a line note.
13665
13666 2003-04-03  Neil Booth  <neil@daikokuya.co.uk>
13667
13668         * fix-header.c (read_scan_file): Defer switch processing.
13669
13670 2003-04-03  Matt Austern  <austern@apple.com>
13671
13672         * cpppch.c (reset_ht): Remove.
13673         (cpp_read_state): Remove loop to reset hashtable identifiers.
13674         * ggc-common.c (gt_pch_save): Add call to gt_pch_fixup_stringpool
13675         after pch file is written.
13676         * ggc.h (gt_pch_fixup_stringpool): Declare.
13677         * stringpool.c (ht_copy_and_clear): Define.  Callback.  Copy
13678         hashnode's value to another hashtable, then clear the original.
13679         (saved_ident_hash): Define.
13680         (gt_pch_save_stringpool): Create saved_ident_hash, use it to
13681         store definitions in ident_hash, and clear ident_hash.
13682         (gt_pch_fixup_stringpool): Define.  Restore definitions from
13683         saved_ident_hash to ident_hash, then destroy saved_ident_hash.
13684
13685 Thu Apr  3 22:27:40 CEST 2003  Jan Hubicka  <jh@suse.cz>
13686
13687         * cfgrtl.c (update_bb_for_insn): Do not set block for barriers.
13688
13689 2003-04-03  Eric Botcazou  <ebotcazou@libertysurf.fr>
13690
13691         PR optimization/10157
13692         * gcse.c (can_copy_p): Rename it to can_copy.
13693         (can_copy_init_p): Remove.
13694         (compute_can_copy): Use can_copy instead of can_copy_p.
13695         (can_copy_p): New exported function. Call compute_can_copy.
13696         (hash_scan_set): Use it.
13697         (gcse_main): Don't call compute_can_copy.
13698         (bypass_jumps): Don't call compute_can_copy.
13699         * rtl.h (can_copy_p): Declare.
13700         * loop.c (scan_loop): Don't move the source and add a reg-to-reg
13701         copy if the mode doesn't support copy operations.
13702
13703 2003-04-03  Jason Merrill  <jason@redhat.com>
13704
13705         * Makefile.in (unstrap): Also remove stage_last.
13706
13707         * dwarf2out.c (lookup_filename): Don't check for "<internal>".
13708         (dwarf2out_source_line): Don't do anything if line==0.
13709
13710         * stor-layout.c (do_type_align): New fn, split out from...
13711         (layout_decl): ...here.  Do all alignment calculations for
13712         FIELD_DECLs here.
13713         (update_alignment_for_field): Not here.
13714         (start_record_layout, debug_rli): Remove unpadded_align.
13715         * tree.h (struct record_layout_info_s): Remove unpadded_align.
13716         * c-decl.c (finish_enum): Don't set DECL_SIZE, DECL_ALIGN
13717         or DECL_MODE on the CONST_DECLs.
13718         (finish_struct): Don't mess with DECL_ALIGN.
13719
13720 Thu Apr  3 18:57:19 CEST 2003  Jan Hubicka  <jh@suse.cz>
13721
13722         * i386.c (print_operand): Do not bypass output_addr_const at flag_pic.
13723
13724 Thu Apr  3 17:08:09 2003  J"orn Rennecke <joern.rennecke@superh.com>
13725
13726         * sh.c (sh_function_ok_for_sibcall): Return 0 if the current
13727         function is an interrupt handler.
13728
13729         * sh.c (sh_expand_epilogue): Avoid clash of temp register for
13730         restoring target registers with EH_RETURN_STACKADJ_RTX; use
13731         multiple registers in round-robin fashion.
13732
13733 2003-04-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13734
13735         * gengtype-lex.l (IWORD): Add CHAR_BITFIELD.
13736         * system.h (CHAR_BITFIELD): New.
13737
13738 2003-04-03  Kazu Hirata  <kazu@cs.umass.edu>
13739
13740         * config/h8300/h8300.md (a peephole2): Generalize to accept GT
13741         and LE.
13742         (another peephole2): Likewise.
13743
13744 2003-04-03  Nick Clifton  <nickc@redhat.com>
13745
13746         * config/sparc/sol2-bi.h (ASM_CPU64_DEFAULT_SPEC): Add -TSO.
13747         (DEF_ARCH64_SPEC): Likewise.
13748
13749 Thu Apr  3 09:53:40 CEST 2003  Jan Hubicka  <jh@suse.cz>
13750
13751         * i386.c (constant_address_p): Use legitimate_constant_p.
13752         (legitimate_address_p): Do not use CONSTANT_ADDRESS_P.
13753
13754 2003-04-02  Kazu Hirata  <kazu@cs.umass.edu>
13755
13756         * config/h8300/h8300-protos.h: Add a prototype for
13757         gtle_operator.
13758         * config/h8300/h8300.c (gtle_operator): New.
13759         * config/h8300/h8300.h (PREDICATE_CODES): Add an entry for
13760         gtle_operator.
13761         * config/h8300/h8300.md (a peephole2): Generalize to accept GT
13762         and LE.
13763
13764 2003-04-02  Richard Henderson  <rth@redhat.com>
13765
13766         * libgcc-std.ver (_Unwind_GetCFA): New.
13767         * unwind-dw2.c (_Unwind_GetCFA): New.
13768         * unwind-libunwind.c (_Unwind_GetCFA): New.
13769         * unwind-sjlj.c (_Unwind_GetCFA): New.
13770         * unwind.h: Declare it.
13771
13772 Thu Apr  3 00:31:21 CEST 2003  Jan Hubicka  <jh@suse.cz>
13773
13774         PR inline-asm/8088
13775         * i386.c (ix86_hard_regno_mode_ok):  Return 0 for MMX/SSE registers
13776         when MMX/SSE is not available.
13777
13778 2003-04-02  Mike Stump  <mrs@apple.com>
13779
13780         * doc/install.texi (Specific): Update pointers to apple.com.
13781
13782 Thu Apr  3 00:18:49 CEST 2003  Jan Hubicka  <jh@suse.cz>
13783
13784         * i386.c (override_options):  Disable red zone by default on i386.
13785         (compute_frame_layout, ix86_force_to_memory, ix86_free_from_memory):
13786         Do not test TARGET_64BIT together with TARGET_RED_ZONE
13787
13788 2003-04-02  Kazu Hirata  <kazu@cs.umass.edu>
13789
13790         * config/h8300/h8300.md (a peephole2): Tighten the condition.
13791
13792 2003-04-02  Richard Henderson  <rth@redhat.com>
13793
13794         * longlong.h (umul_ppmm) [alpha]: Use __builtin_alpha_umulh.
13795
13796 2003-04-02  Kazu Hirata  <kazu@cs.umass.edu>
13797
13798         * config/h8300/h8300.md (a peephole2): New.
13799
13800 2003-04-02  Richard Henderson  <rth@redhat.com>
13801
13802         * except.c (sjlj_find_directly_reachable_regions): Recognize when
13803         must-not-throw region has been deleted.
13804
13805 2003-04-02  Richard Henderson  <rth@redhat.com>
13806
13807         * dwarf2out.c (output_call_frame_info): Ignore fde->nothrow as an
13808         optimization when flag_exceptions not enabled.
13809
13810 2003-04-02  Vladimir Makarov  <vmakarov@redhat.com>
13811
13812         * config/rs6000/rs6000.c
13813         (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD): Redefine the
13814         macros.
13815         (rs6000_issue_rate): Add case for 8540.
13816         (rs6000_use_sched_lookahead): New function.
13817
13818         * config/rs6000/8540.md: Rename SIU units into SU ones and MIU
13819         units into MU ones.
13820         (ppc8540_branch, ppc8540_cr_logical): Add one cycle in the
13821         reservation before retirement.
13822         (ppc8540_multiply, ppc8540_load, ppc8540_store,
13823         ppc8540_simple_float, ppc8540_vector_load, ppc8540_vector_store):
13824         Remove additional cycle in the reservation before retirement.
13825         (ppc8540_mfcr, ppc8540_mtcrf, ppc8540_mtjmpr): Add missed
13826         reservation of ppc8540_issue.
13827
13828 2003-04-02  Andreas Schwab  <schwab@suse.de>
13829
13830         * real.c (decode_ieee_single): Fix decoding of SNaN bit.
13831
13832 2003-04-01  Richard Henderson  <rth@redhat.com>
13833
13834         * except.c (convert_from_eh_region_ranges_1): Smash REG_EH_REGION
13835         notes for nothrow calls if flag_forced_unwind_exceptions.
13836         (build_post_landing_pads): Mind flag_forced_unwind_exceptions.
13837         (sjlj_find_directly_reachable_regions): Likewise.
13838         (reachable_handlers): Likewise.
13839         (can_throw_external): Likewise.
13840         (collect_one_action_chain): Record cleanups after catch-all and
13841         must-not-throw if flag_forced_unwind_exceptions.
13842         * flags.h (flag_forced_unwind_exceptions): Declare.
13843         * toplev.c (flag_forced_unwind_exceptions): New.
13844         (lang_independent_options): Add it.
13845         * doc/invoke.text: Add it.
13846
13847 2003-04-01  David Mosberger <davidm@hpl.hp.com>
13848
13849         * config/ia64/crti.asm: Clean up trailing whitespace.
13850         Remove trailing hashes (#) from identifiers.
13851
13852         * config/ia64/crtn.asm: Ditto.
13853
13854         * config/ia64/crtend.asm: Remove trailing hashes (#) from
13855         identifiers.
13856         (__do_global_ctors_aux): Align to 32-byte boundary.  Add unwind
13857         directives.  Drop explicit bundling---it just makes the code
13858         harder to read.  Don't save/restore gp needlessly.
13859
13860         * config/ia64/crtbegin.asm: Remove trailing hashes (#) from
13861         identifiers (they're only needed if the identifier would clash
13862         with a register name otherwise).
13863         (__do_global_dtors_aux): Align to 32-byte boundary. Add unwind
13864         directives.  Drop explicit bundling---it just makes the code
13865         harder to read.
13866         (__do_jv_register_classes): Ditto.
13867         (.fini_array): Remove "progbits" (newer
13868         assemblers don't like wrong section-types).
13869         (.init_array): Ditto.
13870
13871 2003-04-01  Roger Sayle  <roger@eyesopen.com>
13872
13873         PR fortran/9974
13874         * gcse.c (reg_killed_on_edge): New function to test whether the
13875         given reg is overwritten by any instruction queued on an edge.
13876         (bypass_block): Ignore substitutions killed on incoming edges.
13877         Don't bypass outgoing edges that have queued instructions.
13878
13879 2003-04-01  Alexandre Oliva  <aoliva@redhat.com>
13880
13881         * real.h (EXP_BITS): Make room for...
13882         (struct real_value): ... added canonical bit.
13883         (struct real_format): Added pnan.
13884         (mips_single_format, mips_double_format, mips_extended_format,
13885         mips_quad_format): New.
13886         * real.c: Copy p to pnan in all formats.
13887         (get_canonical_qnan, get_canonical_snan): Set canonical bit.
13888         (real_nan): Use pnan to compute significand's shift.
13889         (real_identical): Disregard significand in canonical
13890         NaNs.
13891         (real_hash): Likewise.  Take signalling into account.
13892         (encode_ieee_single, encode_ieee_double, encode_ieee_quad):
13893         Disregard significand bits in canonical NaNs.  Set all bits of
13894         canonical NaN if !qnan_msb_set.
13895         (encode_ibm_extended, decode_ibm_extended): Likewise.  Use
13896         qnan_msb_set to tell the base double format.
13897         (ibm_extended_format): Use 53 as pnan.
13898         (mips_single_format, mips_double_format, mips_extended_format,
13899         mips_quad_format): Copied from the corresponding ieee/ibm
13900         formats, with qnan_msb_set false.
13901         * config/mips/iris6.h (MIPS_TFMODE_FORMAT): Use mips_extended_format.
13902         * config/mips/linux64.h (MIPS_TFMODE_FORMAT): Use mips_quad_format.
13903         * config/mips/mips.c (override_options): Use mips_single_format
13904         and mips_double_format.  Default TFmode to mips_quad_format.
13905         * config/mips/t-linux64 (tp-bit.c): Define QUIET_NAN_NEGATED.
13906         * config/mips/t-irix6: Likewise.
13907         * config/mips/t-mips (fp-bit.c, dp-bit.c): Likewise.
13908         * config/fp-bit.c (pack_d, unpack_d): Obey it.
13909
13910 2003-04-01  Geoffrey Keating  <geoffk@apple.com>
13911
13912         * unwind-dw2-fde-darwin.c (DESTRUCTOR_MAY_BE_CALLED_LIVE): New.
13913         (live_image_destructor): Reset image to initial state.
13914         (examine_objects): Set DESTRUCTOR_MAY_BE_CALLED_LIVE.
13915
13916 2003-04-01  Eric Botcazou  <ebotcazou@libertysurf.fr>
13917
13918         * config/sparc/sparc.c (input_operand): Accept bare
13919         CONSTANT_P_RTX operands.
13920
13921 2003-04-01  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
13922
13923         * gcse.c (struct ls_expr): Added pattern_regs field.
13924         (ldst_entry): Initialize it.
13925         (extract_mentioned_regs, extract_mentioned_regs_helper): New.
13926         (store_ops_ok): Use regs precomputed by them.
13927         (find_loads, store_killed_in_insn, load_kills_store): Change return
13928         type to bool.
13929         (store_killed_before, store_killed_after): Take position of register
13930         set in account.
13931         (reg_set_info): Store position of the setter.
13932         (gcse_main): Enable store motion.
13933         (mems_conflict_for_gcse_p): Enable load motion of non-symbol mems.
13934         (pre_insert_copy_insn, update_ld_motion_stores, insert_store): Prevent rtl
13935         sharing.
13936         (simple_mem): Enable store motion of non-symbol mems.
13937         (regvec): Type changed.
13938         (LAST_AVAIL_CHECK_FAILURE): New.
13939         (compute_store_table_current_insn): New.
13940         (build_store_vectors): Computation of availability and anticipatability
13941         moved ...
13942         (compute_store_table, find_moveable_store): ... here.
13943         (delete_store): Remove senseless comment.
13944         (store_motion): Reorganize.
13945
13946 2003-04-01  Kevin Buettner  <kevinb@redhat.com>
13947
13948         * config/mips/mips.c (override_options): Provide mappings for
13949         HI_REGNUM and LO_REGNUM.
13950         * config/mips/mips.h (MD_DBX_FIRST): Define.
13951
13952 2003-04-01  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
13953
13954         * combine.c (merge_outer_ops): Fix typo.
13955
13956         * varasm.c (make_decl_one_only): Revert 2003-03-09 patch.
13957
13958 2003-04-01  David Edelsohn  <edelsohn@gnu.org>
13959
13960         * config/rs6000/{40x.md,603.md,6xx.md,7450.md,7xx.md,mpc.md,
13961         power4.md,rios1.md,rios2.md,rs64.md}: Change mult_compare to
13962         imul_compare.  Add lmul_compare.
13963         * config/rs6000/power4.md: Bump some latencies.  Model extra cycle
13964         in second pair of dispatch slots.  Model stores more accurately.
13965         Tweak multiply model.  Add bypasses for CR instructions dependent
13966         on complicated compares.
13967         * config/rs6000/rs6000.md (mulsi3): Name imul_compare patterns.
13968         (muldi3): Add lmul_compare patterns.
13969         * config/rs6000/rs6000.c (rs6000_variable_issue): Move FPLOAD_UX
13970         and FPSTORE_UX to split instructions and add COMPARE,
13971         DELAYED_COMPARE, IMUL_COMPARE, LMUL_COMPARE, IDIV, LDIV.
13972         (rs6000_adjust_cost): Add IMUL_COMPARE and LMUL_COMPARE.
13973         (rs6000_rtx_costs): Separate POWER4 multiply case.
13974
13975 2003-04-01  Ulrich Weigand  <uweigand@de.ibm.com>
13976
13977         * config/s390/s390.c (s390_fixup_clobbered_return_reg):
13978         Do nothing if __builtin_return_address was not used.
13979
13980 Tue Apr  1 18:18:23 CEST 2003  Jan Hubicka  <jh@suse.cz>
13981
13982         * i386.md (test patterns):  Allow memory operand in operand1.
13983
13984 2003-02-31  Aldy Hernandez  <aldyh@redhat.com>
13985
13986         * testsuite/gcc.c-torture/execute/simd-3.c: New.
13987
13988         * expr.c (expand_expr): Handle VECTOR_CST.
13989         (const_vector_from_tree): New.
13990
13991         * varasm.c (output_constant): Handle VECTOR_CST.
13992
13993         * c-typeck.c (digest_init): Build a vector constant from a
13994         VECTOR_TYPE.
13995
13996         * config/rs6000/rs6000.c: Remove prototype for
13997         easy_vector_constant.
13998         (easy_vector_constant): Add mode parameter.  Rewrite to handle
13999         more easy constants.
14000         (rs6000_emit_move): Pass mode to easy_vector_constant.
14001         Call emit_easy_vector_insn for SPE V2SI vector constant moves.
14002         (emit_easy_vector_insn): New.
14003         (easy_vector_same): New.
14004         (EASY_VECTOR_15): New macro.
14005         (EASY_VECTOR_15_ADD_SELF): New macro.
14006         (bdesc_2arg): Rename to xorv2si3.
14007         (easy_vector_constant_add_self): New.
14008         (input_operand): Allow vector constants.
14009
14010         * config/rs6000/rs6000.h (PREDICATE_CODES): Add
14011         easy_vector_constant, easy_vector_constant_add_self.
14012         (EXTRA_CONSTRAINT): Add 'W'.
14013
14014         * config/rs6000/rs6000-protos.h: Add prototype for
14015         easy_vector_constant, emit_easy_vector_insn.
14016
14017         * config/rs6000/altivec.md (xorv8hi3): New.
14018         (xorv16qi3): New.
14019         Remove all _const0 patterns.
14020         (movv4si_internal): Rewrite to use code.  Add vector constant to
14021         vector alternative.  Add splitter.
14022         (movv8hi_internal): Same.
14023         (movv16qi_internal): Same.
14024         (movv4sf_internal): Same.
14025         Change the unspecs for vspltis* to use constants.
14026
14027         * config/rs6000/spe.md ("xorv4hi3"): New.
14028         ("spe_evxor"): Rename to xorv2si3.
14029         ("xorv1di3"): New.
14030         Remove all _const0 patterns.
14031         (movv2si_internal): Rewrite to use code.  Add vector constant to
14032         alternatives.  Add splitter.
14033         (movv4hi_internal): Add vector constant to alternatives.
14034         (movv1di_internal): Same.
14035         (movv2sf_internal): Same.
14036
14037 2003-03-31  Mark Mitchell  <mark@codesourcery.com>
14038
14039         PR c/9936
14040         * c-decl.c (grokdeclarator): Clear SAVE_EXPR_CONTEXT for
14041         variably-sized arrays in parameters.
14042         (set_save_expr_context): New function.
14043         (c_expand_body): Use it, via walk_tree.
14044
14045 2003-03-31  Eric Christopher  <echristo@redhat.com>
14046
14047         * combine.c (can_combine_p): Allow ZERO_EXTRACT and STRICT_LOW_PART.
14048         (combinable_i3pat): Remove call to expand_field_assignment and
14049         #if 0'd code.
14050
14051 2003-03-31  Mark Mitchell  <mark@codesourcery.com>
14052
14053         PR c++/10278
14054         * c-common.c (finish_label_address_expr): Handle the
14055         error_mark_node.
14056
14057 2003-03-31  Richard Henderson  <rth@redhat.com>
14058
14059         * real.c (real_identical): Reorg so as to not compare
14060         signalling for normals.
14061
14062 2003-03-31  Stephane Carrez  <stcarrez@nerim.fr>
14063
14064         * config/m68hc11/m68hc11.c (hard_reg_operand): Check the mode.
14065
14066 2003-03-31  Stephane Carrez  <stcarrez@nerim.fr>
14067
14068         * config/m68hc11/m68hc11.c (m68hc11_gen_movhi): Don't rely on REG_WAS_0
14069         notes as they are boggus.
14070         (m68hc11_gen_movqi): Likewise.
14071
14072 2003-03-31  Stephane Carrez  <stcarrez@nerim.fr>
14073
14074         * config/m68hc11/m68hc11.c (expand_prologue): For an interrupt handler
14075         save the soft registers after the frame pointer so that gdb can unwind
14076         the frame more easily.
14077         (expand_epilogue): Likewise in opposite order; allow to use X register
14078         as scratch if the return value is by reference.
14079
14080 2003-03-31  Jason Merrill  <jason@redhat.com>
14081
14082         PR java/10145
14083         * stor-layout.c (update_alignment_for_field): Respect
14084         DECL_USER_ALIGN for zero-length bitfields, too.
14085         * c-decl.c (finish_struct): Don't set DECL_ALIGN for normal
14086         fields.
14087
14088 2003-03-31  Matt Austern  <austern@apple.com>
14089
14090         * cpppch.c (struct cpp_savedstate): Add defs and n_defs members.
14091         (count_defs): Keep track of number of defs as well as total size.
14092         (write_defs): Put every definition in cpp_savedstate's defs array.
14093         (comp_hashnode): Define.  Comparison function for qsort.
14094         (cpp_write_pch_deps): Sort definitions before writing them.
14095         (struct ht_node_list): Define. Like cpp_savedstate but simpler.
14096         (collect_ht_nodes): Define.
14097         (cpp_valid_state): When verifying that undefined identifiers in
14098         the pch file are still undefined, read a sorted list of undefined
14099         identifiers, collect all defined identifiers into a sorted list,
14100         and walk through both lists to make sure there's no match.
14101
14102 2003-03-31  Kazu Hirata  <kazu@cs.umass.edu>
14103
14104         * config/h8300/h8300.md (a peephole2): New.
14105
14106 2003-03-31  Michael Matz  <matz@suse.de>
14107
14108         * config/i386/i386.h (TARGET_FLT_EVAL_METHOD): Change 1 into 0.
14109
14110 2003-03-31  Segher Boessenkool  <segher@koffie.nl>
14111
14112         PR target/10177
14113         * config/rs6000/rs6000.h (HARD_REGNO_RENAME_OK): New.
14114         * config/rs6000/rs6000.c (compute_vrsave_mask): Don't mark
14115         all call-clobbered registers as used.
14116
14117 2003-03-31  Michael Matz  <matz@suse.de>
14118
14119         * cppexp.c (cpp_classify_number): Accept '.' after "0x".
14120         * testsuite/gcc.dg/cpp/c99-hexfloat-3.c: New file.
14121
14122 2003-03-31  Nathan Sidwell  <nathan@codesourcery.com>
14123
14124         * gcov.c: Add -a & -u options.
14125         (struct arc_info): Add local_span, is_call_non_return,
14126         is_nonlocal_return, is_unconditional flags, remove is_call flag.
14127         (struct block_info): Add flags, is_call_site, is_nonlocal_return
14128         members. Make encodings a union with span member.
14129         (struct function_info): Add blocks_executed, line, src, line_next
14130         members.
14131         (struct coverage_info): Make branches a union with blocks member.
14132         (struct source_info): Add functions member.
14133         (object_summary, program_count): New global variables.
14134         (flag_all_blocks, flag_unconditional): New flags.
14135         (find_source, output_branch_count): New functions.
14136         (print_usage): Adjust.
14137         (options): Adjust.
14138         (process_args): Adjust.
14139         (read_graph_file) <GCOV_TAG_FUNCTION>: Adjust.
14140         <GCOV_TAG_BLOCKS>: Read flags.
14141         <GCOV_TAG_LINES>: Adjust.
14142         (read_count_file): Process SUMMARY tags.
14143         (solve_flow_graph): Set is_unconditional and clear is_call_site
14144         appropriately.
14145         (add_branch_counts): Adjust. Don't count unconditional branches.
14146         (add_line_counts): Deal with all-blocks mode, accumulate block
14147         coverage.
14148         (accumulate_line_counts): Adjust, generate local spanning tree for
14149         all-blocks mode.
14150         (output_lines): Adjust.
14151         * profile.c (branch_prob): Alter GCOV_FUNCTION_TAG record.
14152         * doc/gcov.texi: Document.
14153
14154 2003-03-31  Kazu Hirata  <kazu@cs.umass.edu>
14155
14156         * config/h8300/h8300.md: Organize peephole2's that transform
14157         (compare (reg:HI) (const_int)).
14158
14159 2003-03-31  Roger Sayle  <roger@eyesopen.com>
14160
14161         * emit-rtl.c (dconstm2, dconsthalf): New real constants.
14162         (init_emit_once): Initialize dconstm2 and dconsthalf here.
14163         * real.h (dconstm2, dconsthalf): Add prototypes here.
14164         * real.c (real_sqrt): Use dconsthalf rather than local copy.
14165         * builtins.c (fold_builtin): When optimizing sqrt(exp(x)) as
14166         exp(x/2.0) remember to fold the division if possible.
14167         Fold sin(0.0) as 0.0, cos(0.0) as 1.0, pow(x,1.0) as x,
14168         pow(x,-1.0) as 1.0/x, pow(x,2.0) as x*x, pow(x,-2.0) as
14169         1.0/(x*x) and pow(x,0.5) as sqrt(x).
14170
14171 2003-03-31  Kazu Hirata  <kazu@cs.umass.edu>
14172
14173         * config/h8300/h8300.md (a new peephole2): New.
14174
14175 2003-03-31  Richard Sandiford  <rsandifo@redhat.com>
14176
14177         * gcse.c (simple_mem): Return false for floating-point accesses
14178         if flag_float_store is true.
14179
14180 2003-03-30  Roger Sayle  <roger@eyesopen.com>
14181
14182         * gcse.c (gcse_constant_p): New function to identify constants
14183         suitable for constant propagation, including COMPARE with two
14184         integer constant arguments.
14185         (hash_scan_set): Use gcse_constant_p.
14186         (find_avail_set): Likewise.
14187         (cprop_insn): Likewise.
14188         (do_local_cprop): Likewise.
14189         (find_implicit_sets): Likewise.
14190         (find_bypass_set): Likewise.
14191
14192 2003-03-30  Matt Kraai  <kraai@alumni.cmu.edu>
14193
14194         * except.h: Remove definition of varray_type.
14195
14196 2003-03-30  Richard Henderson  <rth@redhat.com>
14197
14198         PR opt/10011, opt/10252:
14199         * toplev.c (rest_of_compilation): Run purge_builtin_constant_p
14200         before post-gcse cse pass.
14201
14202 2003-03-30  Roger Sayle  <roger@eyesopen.com>
14203
14204         * dojump.c (do_jump): Copy SUBREGs into a pseudo for comparison.
14205
14206 2003-03-30  DJ Delorie  <dj@redhat.com>
14207
14208         * profile.c (instrument_edges): Make sure any newly created
14209         jump insns have correct jump label info.
14210
14211 2003-03-30  Richard Henderson  <rth@redhat.com>
14212
14213         * cfgbuild.c (make_edges): Use tablejump_p.
14214         * cfgcleanup.c (label_is_jump_target_p): Likewise.
14215         * cfglayout.c (cfg_layout_can_duplicate_bb_p): Likewise.
14216         * cfgrtl.c (flow_delete_block_noexpunge): Likewise.
14217         (try_redirect_by_replacing_jump): Likewise.
14218         (redirect_edge_and_branch): Likewise.
14219         * cse.c (fold_rtx): Likewise.
14220         * jump.c (delete_related_insns): Likewise.
14221         * rtlanal.c (get_jump_table_offset): Likewise.
14222         * ssa-ccp.c (ssa_ccp_df_delete_unreachable_insns): Likewise.
14223
14224 2003-03-30  Gabriel Dos Reis  <gdr@integrable-solutions.net>
14225
14226         * Makefile.in (STRICT_WARN): Don't warn for ISO C constructs.
14227         (STRICT2_WARN): Likewise.
14228
14229 2003-03-30  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14230
14231         PR other/6955
14232         * collect2.c (collect_wait): Use WCOREDUMP and fix output message.
14233         * system.h (WCOREDUMP, WCOREFLG): Define if necessary.
14234
14235 2003-03-30  Richard Henderson  <rth@redhat.com>
14236
14237         PR c/10083
14238         * config/alpha/alpha.md (umuldi3_highpart): Change to expander;
14239         don't zero_extend const inputs.
14240
14241 2003-03-30  Kazu Hirata  <kazu@cs.umass.edu>
14242
14243         * reload1.c (reload_cse_move2add): Fix a comment typo.
14244
14245 2003-03-30  Kazu Hirata  <kazu@cs.umass.edu>
14246
14247         * config/h8300/h8300.md (a peephole2): Remove useless code.
14248
14249 2003-03-29  Kazu Hirata  <kazu@cs.umass.edu>
14250
14251         * config/h8300/h8300.md (*iorsi3_and_ashift): New.
14252         (*iorsi3_and_lshiftrt): Likewise.
14253         (*iorsi3_zero_extract): Likewise.
14254
14255 2003-03-29  Kazu Hirata  <kazu@cs.umass.edu>
14256
14257         * config/h8300/h8300.md (*insv_si_8_8): New.
14258         (*insv_si_8_8_lshiftrt_8): Likewise.
14259         (a peephole2): Likewise.
14260
14261 2003-03-29  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
14262
14263         * doc/contrib.texi: Add Eric Botcazou and Roger Sayle.
14264         Uniformly use bugfix instead of bug fix.
14265
14266 2003-03-29  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
14267
14268         PR doc/895
14269         * ONEWS: Remove those items that already appear in the EGCS
14270         release notes on our web pages.
14271
14272 2003-03-29  Alan Modra  <amodra@bigpond.net.au>
14273
14274         * config/rs6000/rs6000.h (FUNCTION_VALUE_REGNO_P): Respect
14275         TARGET_HARD_FLOAT.  Reformat.
14276         (FUNCTION_ARG_REGNO_P): Likewise, and remove unneeded casts.
14277
14278 2003-03-28  Albert Chin-A-Young  <china@thewrittenword.com>
14279
14280         * gcc/fixinc/inclhack.def: Update solaris_mutex_init_1 to
14281         work on Solaris 2.5.1.
14282
14283 2003-03-28  Kazu Hirata  <kazu@cs.umass.edu>
14284
14285         * config/h8300/h8300.md (*addsi3_and_r_1): Put under plus:SI
14286         section of h8300.md
14287         (*addsi3_and_nor_r_1): Likewise.
14288
14289 2003-03-29  Ulrich Weigand  <uweigand@de.ibm.com>
14290
14291         * config/s390/s390.c (s390_emit_prologoue): Make sure backchain is
14292         set up before any trapping memory access if flag_non_call_exceptions.
14293
14294 2003-03-29  Alan Modra  <amodra@bigpond.net.au>
14295
14296         * reload1.c (reload_as_needed): Allow a USE in asm reloads.
14297
14298         * loop.c: (find_mem_in_note_1, find_mem_in_note): Comment.
14299
14300 2003-03-28  Nathanael Nerode  <neroden@gcc.gnu.org>
14301
14302         * configure.in: Clarify comments.
14303         * configure: Regenerate.
14304
14305 2003-03-28  Ulrich Weigand  <uweigand@de.ibm.com>
14306
14307         * config/s390/s390.md ("literal_pool_31"): Output pool anchor
14308         label even if pool empty when generating PIC.
14309         ("literal_pool_31", "literal_pool_64"): Coding style cleanup.
14310
14311 2003-03-28  Kazu Hirata  <kazu@cs.umass.edu>,
14312             Dhananjay Deshpande  <dhananjayd@kpit.com>
14313
14314         PR target/10205
14315         * config/h8300/h8300.c (h8300_initial_elimination_offset):
14316         Correct the offset computation when TARGET_NORMAL.
14317
14318 2003-03-28  Eric Botcazou  <ebotcazou@libertysurf.fr>
14319
14320         PR target/10067
14321         * config/sparc/sparc.md (jump pattern): Correct order
14322         when issuing the annuling marker.
14323
14324 2003-03-28  Eric Botcazou  <ebotcazou@libertysurf.fr>
14325
14326         PR c/8281
14327         * config/sparc/sparc.md (movdi_insn_sp32_v9): Remove 'f-f' alternative.
14328         (movdi reg/reg split): Match only on sparc32, and v9 when int regs.
14329
14330 2003-03-28  Alan Modra  <amodra@bigpond.net.au>
14331
14332         * config/alpha/elf.h (ASM_OUTPUT_ALIGNED_BSS): Remove unnecessary
14333         globalize_label.
14334         * config/arm/unknown-elf.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
14335         * config/i960/i960.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
14336         * config/m32r/m32r.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
14337         * config/mips/elf.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
14338         * config/mips/linux.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
14339         * config/sparc/sparc.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
14340         * config/v850/v850.c (v850_output_aligned_bss): Likewise.
14341
14342 2003-03-28  Alan Modra  <amodra@bigpond.net.au>
14343
14344         * loop.c: (find_mem_in_note_1, find_mem_in_note): New functions.
14345         (replace_loop_mems): Add "written" param.  Remove invalid REG_EQUAL
14346         notes after hoisting.
14347         (load_mems): Adjust replace_loop_mems call.
14348
14349 2003-03-28  Eric Botcazou  <ebotcazou@libertysurf.fr>
14350             Richard Henderson  <rth@redhat.com>
14351
14352         PR target/10114 and PR target/10084
14353         * dwarf2out.c (mem_loc_descriptor): Handle LO_SUM.
14354
14355 2003-03-27  Richard Henderson  <rth@redhat.com>
14356
14357         * config/alpha/alpha.md (adddi_er_high_l): Valid only after reload.
14358
14359 2003-03-27  Roger Sayle  <roger@eyesopen.com>
14360
14361         * fold-const.c (fold_inf_compare):  New function to simplify FP
14362         comparisons against +Infinity or -Infinity.
14363         (fold):  Optimize floating point comparisons against Infs and NaNs.
14364
14365 2003-03-27  Janis Johnson  <janis187@us.ibm.com>
14366
14367         * libgcov.c: Provide only dummy functions if libc is not available.
14368
14369 2003-03-27  Richard Henderson  <rth@redhat.com>
14370
14371         * real.h (struct real_value): Add signalling.
14372         (EXP_BITS): Decrement.
14373         * real.c (get_canonical_qnan): Don't set MSB-1.
14374         (get_canonical_snan): Likewise.  Set signalling.
14375         (real_identical): Compare signalling.
14376         (round_for_format): Remove force-one-bit on code.
14377         (real_nan): Likewise.  Set signalling.
14378         (encode_ieee_single): Add force-one-bit code; honor signalling.
14379         (encode_ieee_double, encode_ieee_extended, encode_ieee_quad): Likewise.
14380         (decode_ieee_single): Set signalling.
14381         (decode_ieee_double, decode_ieee_extended, decode_ieee_quad): Likewise.
14382
14383 2003-03-27  Olivier Hainque  <hainque@act-europe.fr>
14384
14385         PR ada/9953
14386         * ada/Makefile.in (gnatlib configuration for HPUX): Split
14387         the general section for HPUX into specific sections for
14388         HPUX 10 and HPUX 11. Fix the setting of TGT_LIB in the HPUX
14389         11 case.
14390
14391 2003-03-27  Glen Nakamura  <glen@imodulo.com>
14392
14393         PR opt/10087
14394         * loop.c (loop_givs_reduce): Skip bivs with duplicate locations
14395         while incrementing giv.
14396         (record_biv): Check for duplicate biv locations and
14397         set (struct induction *) v->same if found.
14398
14399 2003-03-27  David Mosberger  <davidm@hpl.hp.com>
14400
14401         * unwind-libunwind.c (uw_frame_state_for): Adjust for libunwind
14402         v0.9 API change: replace read of UNW_REG_HANDLER with
14403         unw_get_proc_info().
14404         (_Unwind_GetLanguageSpecificData): Replace read of UNW_REG_LSDA
14405         with unw_get_proc_info().
14406         (_Unwind_GetRegionStart): Replace UNW_REG_PROC_START with
14407         unw_get_proc_info().
14408
14409 2003-03-27  Vladimir Makarov  <vmakarov@redhat.com>
14410
14411         * config/rs6000/8540.md: Use presence_set instead of absence_set.
14412
14413 2003-03-26  Richard Henderson  <rth@redhat.com>
14414
14415         * c-decl.c (finish_function): Always defer if DECL_DECLARED_INLINE_P.
14416
14417 2003-03-26  Roger Sayle  <roger@eyesopen.com>
14418
14419         PR bootstrap/10051, PR bootstrap/10169.
14420         * mips-tfile.c (init_file): Don't provide a static initializer.
14421         (initialize_init_file): Initialize the contents of init_file.
14422         (add_file): Call initialize_init_file if not already initialized.
14423
14424 2003-03-26  Ulrich Weigand  <uweigand@de.ibm.com>
14425
14426         * config/s390/s390.c (s390_optimize_prolog): Do not save/restore
14427         registers used for global asm variables.
14428         (s390_frame_info, s390_arg_frame_offset): Likewise.
14429         (s390_emit_prologue, s390_emit_epilogue): Likewise.
14430
14431 2003-03-26  Vladimir Makarov  <vmakarov@redhat.com>
14432
14433         * config/rs6000/8540.md: New file.
14434
14435         * config/rs6000/{40x.md, 603.md, 6xx.md, 7450.md, 7xx.md, mpc.md,
14436         power4.md, rios1.md, rios2.md, rs64.md}: Add mult_compare to
14437         reservations for imul.
14438
14439         * config/rs6000/rs6000.md: Include 8540.md.  Change
14440         delayed_compare onto mult_compare for insns generating
14441         multiplication.
14442         (mult_compare, fpsimple, brinc, vecdiv, veccmpsimple, vecfdiv):
14443         New type attribute values.
14444
14445         * config/rs6000/spe.md (*negsf2_gp, *abssf2_gpr): Use type
14446         fpsimple instead of fp.
14447         (*divsf3_gpr): Use type vecfdiv instead of fp.
14448         (spe_evfsabs, spe_evfsnabs, spe_evfsneg): Use type vecsimple
14449         instead of vecfloat.
14450         (spe_evfsdive): Use type vecfdiv instead of vecfloat.
14451         (spe_brinc): Use type brinc instead of veccomplex.
14452         (spe_evaddw, spe_evaddiw): Use type vecsimple instead of
14453         veccomplex.
14454         (spe_evdivws, spe_evdivwu): Use type vecdiv instead of veccomplex.
14455         (*movv2si_internal, *movv1di_internal, *movv4hi_internal,
14456         *movv2sf_internal): Define type attribute values for all
14457         alternatives.
14458         (cmpsfeq_gpr, cmpsfgt_gpr, cmpsflt_gpr): Use type veccmp instead
14459         of fpcompare.
14460         (tstsfeq_gpr, tstsfgt_gpr, tstsflt_gpr): Use type veccmpsimple
14461         instead of fpcompare.
14462
14463 2003-03-26  David Edelsohn  <edelsohn@gnu.org>
14464
14465         * config/rs6000/power4.md: Allow delay between dispatch and
14466         function units for simple instructions.  Correct store units.
14467         Allow branch to occupy as many dispatch slots as necessary.
14468
14469 2003-03-26  Jakub Jelinek  <jakub@redhat.com>
14470
14471         * config/ia64/ia64.c (ia64_expand_op_and_fetch): Fix comment.
14472         (ia64_expand_compare_and_swap): Use always DImode ar.ccv,
14473         zero extend old to it.
14474         * config/ia64/ia64.md (cmpxchg_acq_si): Remove mode from ccv
14475         operand.
14476
14477 2003-03-26  Eric Botcazou  <ebotcazou@libertysurf.fr>
14478
14479         PR target/7784
14480         * reload.c (find_reloads_address): Handle
14481         (PLUS (PLUS (REG) (REG)) (CONST_INT)) form for
14482         all base registers.
14483
14484 2003-03-25  Marcelo Abreu  <mmabreu@inf.ufrgs.br>
14485
14486         PR other/10203
14487         * version.c: Reference the GCC web site in the URL.
14488
14489 2003-03-26  Alan Modra  <amodra@bigpond.net.au>
14490
14491         * c-incpath.c (add_standard_paths): Add both "translated" and
14492         non-translated header paths.
14493
14494 2003-03-25  Loren James Rittle  <ljrittle@acm.org>
14495
14496         * doc/install.texi (*-*-freebsd*): Update with known status.
14497
14498 2003-03-21  Jason Merrill  <jason@redhat.com>
14499
14500         PR optimization/10171
14501         * unroll.c (unroll_loop): Don't delete the jump at the end unless
14502         we also delete a jump at the beginning.
14503
14504 2003-03-25  Stephane Carrez  <stcarrez@nerim.fr>
14505
14506         * doc/contrib.texi (Contributors): Mention self as 68HC11/68HC12
14507         contributor.
14508
14509 Tue Mar 25 20:35:51 CET 2003  Jan Hubicka  <jh@suse.cz>
14510
14511         * i386.c (ix86_rtx_costs): For -fpic and x86-64 local symbolic
14512         constants are not expensive.
14513
14514 Mon Mar 24 20:03:03 CET 2003  Jan Hubicka  <jh@suse.cz>
14515
14516         PR opt/10056
14517         * cfglayout.c (fixup_reorder_chain):  Fix dealing with the conditional
14518         jump jumping to the next instruction.
14519         * cfgrtl.c (force_nonfallthru_and_redirect):  Likewise.
14520
14521 2003-03-25  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
14522
14523         * doc/passes.texi (Passes): Properly document that we do not
14524         perform jump2 any longer; remove command-line option -dJ.
14525
14526 2003-03-25  Eric Botcazou  <ebotcazou@libertysurf.fr>
14527
14528         PR optimization/8746
14529         * config/i386/i386.md (and promoting splitters): Disable HImode to
14530         SImode promoting when the sign bit matters and is not preserved, or
14531         when TARGET_FAST_PREFIX is true. Disable promoting when optimizing
14532         for size.
14533
14534 2003-03-24  Kazu Hirata  <kazu@cs.umass.edu>
14535
14536         * config/h8300/h8300.md (a peephole2): Extend to support loads
14537         in QImode and HImode.
14538
14539 2003-03-24  Stephane Carrez  <stcarrez@nerim.fr>
14540
14541         * config/m68hc11/t-m68hc11-gas (LIB1ASMFUNCS): Add _call_far and
14542         _return_far
14543         (MULTILIB_OPTIONS): Don't multilib on -mlong-calls.
14544         (MULTILIB_EXCEPTIONS): Likewise.
14545         * config/m68hc11/m68hc11.md ("call"): Support far calls for 68HC11
14546         by calling some board support routine.
14547         ("call_value"): Likewise.
14548         ("*return_void"): Likewise for return.
14549         ("*return_16bit"): Likewise.
14550         ("*return_32bit"): Likewise.
14551         * config/m68hc11/m68hc11.h (ASM_DECLARE_FUNCTION_NAME): Generate .far
14552         for 68HC11 too.
14553         (DWARF2_ADDR_SIZE): Use 4 so that addresses can
14554         * config/m68hc11/m68hc11.c (m68hc11_override_options): Accept
14555         -mlong-calls for 68HC11.
14556         * config/m68hc11/larith.asm (declare_near): New macro.
14557         (__premain, ___negsi2, ___one_cmplsi2, ___ashlsi3): Use it.
14558         (___ashrsi3, ___lshrsi3, ___lshrhi3, ___lshlhi3): Likewise.
14559         (___rotrhi3, ___rotlhi3, ___ashrhi3, ___ashrqi3): Likewise.
14560         (___lshlqi3, __divmodhi4, ___mulqi3, ___mulhi3): Likewise.
14561         (__mulhi32): Likewise.
14562         (ret): Update macro for 68HC11.
14563         (__far_trampoline): Implement for 68HC11.
14564         (__call_a16, __call_a32, __return_void, __return_16): New support
14565         routines for 68HC11 memory bank switching calling support.
14566         (__return_32): Likewise.
14567
14568 2003-03-24  Neil Booth  <neil@daikokuya.co.uk>
14569
14570         * toplev.c (independent_decode_option): Don't skip a 'Y' prefix.
14571
14572 2003-03-24  Janis Johnson  <janis187@us.ibm.com>
14573
14574         * doc/install.texi (Testing): Mention test result links from build
14575         status pages.
14576
14577 2003-03-24  Mark Mitchell  <mark@codesourcery.com>
14578
14579         * function.c (put_var_into_stack): Change bool parameter to int.
14580         (gen_mem_addressof): Likewise.
14581         * rtl.h (gen_mem_addressof): Likewise.
14582         * tree.h (put_var_into_stack): Likewise.
14583         * config/alpha/alpha.c (alpha_gp_save_rtx): Adjust call to
14584         gen_mem_addressof or put_var_into_stack.
14585         * config/c4x/c4x.c (c4x_expand_builtin): Likewise.
14586         * config/ia64/ia64.c (spill_tfmode_operand): Likewise.
14587
14588 2003-03-24  Kazu Hirata  <kazu@cs.umass.edu>
14589
14590         * config/h8300/h8300.md (a peephole2): New.
14591
14592 2003-03-24  Jakub Jelinek  <jakub@redhat.com>
14593
14594         * dojump.c (do_jump): Handle UNSAVE_EXPR specially.
14595
14596 2003-03-24  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
14597
14598         * doc/contrib.texi (Contributors): Update Janis Johnson.
14599
14600 2003-03-23  Eric Botcazou  <ebotcazou@libertysurf.fr>
14601
14602         PR target/10072
14603         * combine.c (simplify_if_then_else): Check that the mode
14604         has MODE_INT class before applying the (OP Z (mult COND C2))
14605         transformation.
14606
14607 2003-03-23  Eric Botcazou  <ebotcazou@libertysurf.fr>
14608
14609         PR optimization/9414
14610         * config/sparc/sparc.md (widening peepholes): Use
14611         widen_memory_access instead of change_address.
14612
14613 2003-03-23  Mark Mitchell  <mark@codesourcery.com>
14614
14615         PR c++/7086
14616         * c-typeck.c (c_mark_addressable): Adjust calls to
14617         put_var_into_stack.
14618         * expr.c (expand_expr): Likewise.
14619         * function.c (put_var_into_stack): Add rescan parameter.  Do not
14620         call fixup_var_refs when rescan is false.
14621         (gen_mem_addressof): Likewise.
14622         (assign_parms): Adjust calls to put_var_into_stack.
14623         (setjmp_protect): Likewise.
14624         (setjmp_protect_args): Likewise.
14625         * rtl.h (gen_mem_addressof): Change prototype.
14626         * stmt.c (expand_decl): Adjust calls to put_var_into_stack.
14627         * tree.h (put_var_into_stack): Change prototype.
14628
14629 2003-03-23  Arpad Beszedes <beszedes@cc.u-szeged.hu>
14630
14631         PR middle-end/9967
14632         * builtins.c (expand_builtin_fputs): When optimizing for size,
14633         don't transform fputs into fwrite.
14634
14635 2003-03-23  Glen Nakamura <glen@imodulo.com>
14636
14637         PR c/8224
14638         * fold-const.c (extract_muldiv_1): Don't pass through type conversions
14639         when signedness changes for division or modulus.
14640
14641 2003-03-24  Alan Modra  <amodra@bigpond.net.au>
14642
14643         * config/rs6000/sysv4.h (ASM_OUTPUT_ALIGNED_BSS): Remove unnecessary
14644         globalize_label.
14645
14646 2003-03-23  Roger Sayle  <roger@eyesopen.com>
14647
14648         PR c/10178
14649         * stmt.c (expand_end_case_type): Check for overflow in range when
14650         determining whether to use a bit-test implementation.
14651
14652 2003-03-23  Richard Henderson  <rth@redhat.com>
14653
14654         * cfgcleanup.c (try_optimize_cfg): Allow merging of tablejumps
14655         before flow2.
14656         * cfgrtl.c (try_redirect_by_replacing_jump): Similarly.
14657
14658 2003-03-23  Richard Henderson  <rth@redhat.com>
14659
14660         PR opt/10116
14661         * ifcvt.c (find_if_block): Disallow tablejump insns outgoing
14662         from then_bb or else_bb after flow2.
14663
14664 2003-03-23  Zack Weinberg  <zack@codesourcery.com>
14665
14666         * configure.in: Check whether it is necessary to link against
14667         libm to use ldexp.
14668         * configure: Regenerate.
14669         * Makefile.in: Add LDEXP_LIB substitution variable.
14670
14671 2003-03-23  Kazu Hirata  <kazu@cs.umass.edu>
14672
14673         * config/h8300/h8300.md: Fix comment typos.
14674
14675 2003-03-22  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
14676
14677         * pa.c (output_cbranch): Fix typo in comment.
14678
14679 2003-03-22  Richard Henderson <rth@redhat.com>
14680
14681         * cfgcleanup.c (insns_match_p): Do not do EQUIV substitution
14682         after reload.
14683
14684 2003-03-22  DJ Delorie  <dj at redhat dot com>,
14685         Bruce Korb  <bkorb at gnu dot org>
14686
14687         * fixinc/inclhack.def (solaris_mutex_init_1): New; Fix
14688         buggy Solaris 2.6 mutex/cond initializers.
14689         (solaris_mutex_init): Rename to solaris_mutex_init_2.
14690         * fixinc/fixincl.x: Regenerate.
14691         * fixinc/tests/base/pthread.h: Update.
14692         * fixinc/fixincl.c(initialize): be explicit about the default case
14693         and indicate verbose level when being very, very verbose.
14694         * fixinc/check.tpl(VERBOSE): provide a means for passing the value in
14695
14696 2003-03-22  Andreas Jaeger  <aj@suse.de>
14697
14698         * config/i386/i386.c (ix86_init_machine_status): Return value.
14699
14700 2003-03-22  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
14701
14702         * pa.c (output_cbranch, output_bb, output_bvb): Output nop for
14703         conditional branch to the following instruction.  Use next_real_insn
14704         instead of next_active_insn.
14705         (output_dbra, output_movb, jump_in_call_delay): Use next_real_insn
14706         instead of next_active_insn.
14707
14708 2003-03-22  Ulrich Weigand  <uweigand@de.ibm.com>
14709
14710         * config/s390/s390.md ("movti", "*movdi_31", "*movdf_31"): Use 'o'
14711         instead of 'm' constraint in forced-split alternatives.
14712         ("*adddi3_31", "*subdi3_31"): Likewise.  Also, pass 0 instead of 1 as
14713         VALIDATE_ADDRESS parameter to operand_subword.
14714
14715 2003-03-22  Kazu Hirata  <kazu@cs.umass.edu>
14716
14717         * config/h8300/h8300.c (notice_update_cc): Correctly handle
14718         the case where the set destination is STRICT_LOW_PART.
14719
14720 2003-03-22  Svein E. Seldal  <Svein.Seldal@solidas.com>
14721
14722         * config/c4x/t-c4x (INSTALL_LIBGCC): Make gcc recognize a c33 as a
14723         c30 instead of a c40 processor.
14724
14725 2003-03-22  Alan Modra  <amodra@bigpond.net.au>
14726
14727         * combine.c (simplify_comparison <AND>): Use gen_int_mode.  Tidy.
14728
14729 2003-03-21  Zack Weinberg  <zack@codesourcery.com>
14730
14731         * c-common.c: Include intl.h.
14732         (shadow_warning): Rewrite to allow better diagnostic translations.
14733         * c-common.h: Update prototype of shadow_warning.  Declare sw_kind enum.
14734         * c-decl.c (warn_if_shadowing): Update calls to shadow_warning;
14735         use it throughout.
14736         * Makefile.in (c-common.o): Add intl.h.
14737
14738 2003-03-21  Nathanael Nerode  <neroden@gcc.gnu.org>
14739
14740         * config.gcc: Remove 'float_format'.
14741
14742         * fixproto: Define NULL and size_t in generated stdlib.h and
14743         unistd.h.  Kill unused required_stdlib_h, required_unistd_h.
14744         Rearrange file generation loop for readability.  Generate time.h,
14745         string.h if missing.
14746         * tsystem.h: Include <string.h>, <time.h> unconditionally.
14747         * config.gcc: Blow away POSIX defines.
14748
14749 2003-03-22  Stephane Carrez  <stcarrez@nerim.fr>
14750
14751         * config/m68hc11/m68hc11.md ("call_value"): Fix trap check.
14752
14753 2003-03-22  Stephane Carrez  <stcarrez@nerim.fr>
14754
14755         * config/m68hc11/m68hc11.h (ASM_DECLARE_FUNCTION_NAME): Fix typo in
14756         writing .interrupt command.
14757         * config/m68hc11/m68hc11.md ("call"): Look at the symbol to see
14758         if it's a far or near function.
14759         ("call_value"): Likewise.
14760         * config/m68hc11/m68hc11.c (m68hc11_attribute_table): Add far and
14761         near attributes.
14762         (m68hc11_handle_fntype_attribute): Accept attributes on methods.
14763         (m68hc11_override_options): Ignore -mlong-calls for 68HC11.
14764         (m68hc11_initial_elimination_offset): Set current_function_far
14765         according to attributes.
14766         (expand_prologue): Likewise.
14767         (trap_handler_symbol): New global to keep track of trap handlers.
14768         (m68hc11_encode_section_info): Mark symbol as far if needed; set
14769         trap symbol.
14770         (m68hc11_is_far_symbol): New function.
14771         (m68hc11_is_trap_symbol): New function.
14772         * config/m68hc11/m68hc11-protos.h (m68hc11_is_far_symbol): Declare.
14773         (m68hc11_is_trap_symbol): Declare.
14774
14775 2003-03-21  Jan Hubicka  <jh@suse.cz>
14776
14777         * i386.c (ix86_compute_frame_layout): Recompute fast prologues
14778         only when amount of saved regs changed.
14779         (ix86_init_machine_status): Initialize use_fast_prologue_epilgoue_nregs.
14780         * i386.h (machine_function): New fields use_fast_prologue_epilgoue_nregs.
14781
14782 2003-03-21  Jan Hubicka  <jh@suse.cz>
14783
14784         PR inline-asm/7916
14785         * function.c (instantiate_virtual_regs_lossage): New function.
14786         (instantiate_virtual_regs_1): Use it.
14787         (instantiate_virtual_regs): Do not continue in substition when insn has
14788         been deleted.
14789
14790 2003-03-21  Kazu Hirata  <kazu@cs.umass.edu>
14791
14792         * combine.c (make_field_assignment): Fix a warning.
14793
14794 2003-03-21  Kazu Hirata  <kazu@cs.umass.edu>
14795
14796         * config/h8300/h8300.md (*insv_si_1_n_lshiftrt_16): New.
14797
14798 2003-03-21  Dale Johannesen  <dalej@apple.com>
14799
14800         * config/rs6000/rs6000.h (REG_ALLOC_ORDER):  Increase
14801         priority for R2 on Darwin.
14802         (HARD_REGNO_MODE_OK):  Don't accept R31 for DFmode.
14803
14804 2003-03-21  Kazu Hirata  <kazu@cs.umass.edu>
14805
14806         * combine.c (make_field_assignment): Remove unnecessary AND
14807         when storing into zero_extract.
14808
14809 2003-03-21  Zack Weinberg  <zack@codesourcery.com>
14810
14811         * aclocal.m4 (gcc_AC_EXAMINE_OBJECT, gcc_AC_C_FLOAT_FORMAT): Delete.
14812         * configure.in: Don't call gcc_AC_C_FLOAT_FORMAT.
14813         * defaults.h: Remove reference to HOST_FLOAT_WORDS_BIG_ENDIAN
14814         in comment.
14815
14816 2003-03-21  DJ Delorie  <dj@redhat.com>
14817
14818         * optabs.c (init_integral_libfuncs): Make sure we init at least up
14819         to "long long" size words.
14820
14821 2003-03-21  Ulrich Weigand  <uweigand@de.ibm.com>
14822
14823         * config/s390/s390.h: Do not include fixdfdi.h on s390x.
14824         (TARGET_64BIT): Define as compile-time constant when IN_LIBGCC2.
14825         (MIN_UNITS_PER_WORD): Do not define when IN_LIBGCC2.
14826
14827 2003-03-21  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
14828
14829         PR doc-bug/9813
14830         * doc/extend.texi: Move misplaced paragraph about underscores in
14831         variables in macros.
14832
14833 2003-03-21  Eric Botcazou  <ebotcazou@libertysurf.fr>
14834             Richard Henderson  <rth@redhat.com>
14835
14836         PR optimization/8366
14837         * config/sparc/sparc.h: (SYMBOLIC_CONST): New macro.
14838         (GO_IF_LEGITIMATE_ADDRESS): Use it. Reject the form
14839         PIC+SYMBOLIC_CONST in other modes than Pmode.
14840         (GO_IF_MODE_DEPENDENT_ADDRESS): Use it. Mark
14841         the form PIC+SYMBOLIC_CONST as mode dependent.
14842
14843 2003-03-21  DJ Delorie  <dj@redhat.com>
14844
14845         * config/stormy16/stormy16.c (xstormy16_expand_arith): Make
14846         sure we always emit at least one insn.
14847
14848 2003-03-21  Christopher Faylor  <cgf@redhat.com>
14849
14850         * config.gcc (i[34567]86-*-cygwin*): Use new common makefile
14851         stub t-cygming. Use common target header cygming.h. Add extra
14852         c_target_obj and cxx_target_obj file. Default cygwin to posix
14853         threading. Enforce i386 as float format.
14854         (i[34567]86-*-mingw*): Use new common makefile stub t-cygming.
14855         Remove cygwin.h as target header. Use common target header
14856         cygming.h  Enforce i386 as float format. Correct typo.
14857         * config/i386/cygming.h: New file, containing definitions
14858         common to mingw32 and cygwin.
14859         * config/i386/cygwin.h: Remove definitions common to cygwin and
14860         mingw.  Simplify special spec logic.  Define "wrappers" around
14861         certain include path defines to accommodate -mno-cygwin.
14862         Remove some #if 0'ed code.
14863         (STANDARD_INCLUDE_DIR) Always define when not cross-compiling.
14864         (LINK_SPEC): Don't use cyg search prefix when -mno-cygwin.
14865         (GCC_DRIVER_HOST_INITIALIZATION): Define as call to mingw_scan.
14866         * config/i386/mingw32.h: Remove definitions common to cygwin and
14867         mingw.
14868         (EXTRA_OS_CPP_BUILTINS): Adjust.
14869         (TARGET_VERSION): Define.
14870         * config/i386/crtdll.h (EXTRA_OS_CPP_BUILTINS): Override
14871         mingw32.h definitions.
14872         (LIBGCC_SPEC): Add libmingwex.a as in mingw32.h.
14873         * config/i386/t-cygwin (EXTRA_GCC_OBJS): Define as cygwin1.o.
14874         Add compilation rules for cygwin1.o cygwin2.o.
14875         * config/i386/cygwin1.c: New file.
14876         * config/i386/cygwin2.c: New file.
14877         * config/i386/t-cygming: New makefile stub.
14878
14879 2003-03-20  Richard Henderson  <rth@redhat.com>
14880
14881         * fold-const.c (extract_muldiv_1): Revert changing order of
14882         operands in case MULT_EXPR of 2003-02-16 patch.
14883
14884 2003-03-20  Daniel Berlin  <dberlin@dberlin.org>
14885         Merge changes from new-regalloc-branch
14886
14887         From Michael Matz  <matz@suse.de>
14888         * df.c (df_ref_record_1): Move init of loc to safe point.
14889         Only recurse on interesting things in parallels.
14890         Handle CLASS_CANNOT_CHANGE_MODE smarter.
14891         (df_uses_record): Ditto.
14892
14893         * df.h (DF_REF_MEM_OK): New enum member, used to mark ref's which
14894         it's already okay to use memory operands in (IE doesn't require
14895         adding another insn or anything).
14896
14897 2003-03-20  Richard Henderson  <rth@redhat.com>
14898
14899         PR middle-end/6348
14900         * explow.c (allocate_dynamic_stack_space): Handle STACK_SIZE_MODE
14901         different from word_mode.
14902
14903 2003-03-20  Kazu Hirata  <kazu@cs.umass.edu>
14904
14905         * config/h8300/h8300.md (*insv_si_1_n_lshiftrt): Restrict the
14906         source operand to those that can be extracted with bld.
14907
14908 2003-03-20  Richard Earnshaw  <rearnsha@arm.com>
14909
14910         PR 10066
14911         * arm.md (UNSPEC_PIC_BASE): New constant.
14912         (pic_add_dot_plus_four): Wrap with unspec.
14913         (pic_add_dot_plus_eight): Likewise.
14914
14915 2003-03-20  Kazu Hirata  <kazu@cs.umass.edu>
14916
14917         * config/h8300/h8300.md (*insv_si_1_n): New.
14918         (*insv_si_1_n_lshiftrt): Likewise.
14919
14920 2003-03-20  Roger Sayle  <roger@eyesopen.com>
14921
14922         * fold-const.c (fold_mathfn_compare): New function to simplify
14923         comparisons against built-in math functions.  Fold comparisons
14924         of sqrt against constants.
14925         (fold): Call fold_mathfn_compare when appropriate.
14926
14927 2003-03-20 Richard Earnshaw  <rearnsha@arm.com>
14928
14929         * ifcvt.c (find_if_case_1): If we add a new bb, update the dominance
14930         information.
14931
14932 2003-03-20  Per Bothner  <pbothner@apple.com>
14933
14934         Various cleanups to help compile server.
14935
14936         * cppinit.c (cpp_create_reader):  Take extra hash_table* argument,
14937         and pass that to _cpp_init_hashtable.
14938         (cpp_read_main_file):  Drop hash_table* argument; don't call
14939         _cpp_init_hashtable.
14940         * cpplib.h:  Update declarations to match.
14941         * c-opts.c (c_common_init_options):  Pass ident_hash to
14942         cpp_create_reader.
14943         (c_common_post_options):  Don't pass ident_hash to cpp_read_main_file.
14944         * fix-header.c (read_scan_file):  Likewise pass NULL table to
14945         cpp_create_reader rather than cpp_read_main_file.
14946
14947         * cppfiles.c (cpp_rename_file):  Generalized and renamed
14948         to cpp_change_file.
14949         * cpplib.h:  Update declaration to match.
14950         * c-opts.c (push_command_line_line, finish_options):  Change
14951         cpp_rename_file calls to cpp_change_file.
14952
14953         * line-map.c (add_line_map):  Allow leaving the outermost file.
14954         Allowing entering an outermost-file after the initial time.
14955
14956         * toplev.c (pop_srcloc):  Allow popping from initial file.
14957
14958 2003-03-20  Kazu Hirata  <kazu at cs dot umass dot edu>
14959
14960         * fold-const.c (fold): Fold A - (A & B) into ~B & A.
14961
14962 2003-03-20  Kazu Hirata  <kazu@cs.umass.edu>
14963
14964         * config/h8300/h8300.md (a peephole2): New.
14965
14966 2003-03-20  Kazu Hirata  <kazu@cs.umass.edu>
14967
14968         * config/h8300/h8300.md (*addsi3_and_r_1): New.
14969         (*addsi3_and_not_r_1): Likewise.
14970
14971 2003-03-19  Loren James Rittle  <ljrittle@acm.org>
14972
14973         * Makefile.in (STRICT2_WARN): Add @WERROR@.
14974         (GCC_WARN_CFLAGS): Remove $(WERROR).
14975         (fixinc.sh-warn): New.
14976         * ada/Make-lang.in (ada-warn): Add $(WERROR).
14977         * cp/Make-lang.in (cp-warn): Add $(WERROR).
14978         * f/Make-lang.in (f-warn): Add $(WERROR).
14979         * java/Make-lang.in (java-warn): Add $(WERROR).
14980         * treelang/Make-lang.in (treelang-warn): Add $(WERROR).
14981
14982 2003-03-19  Nathanael Nerode  <neroden@gcc.gnu.org>
14983
14984         * c-common.h (c_dump_tree), c-dump.c (c_dump_tree),
14985         langhooks-def.h (lhd_tree_dump_dump_tree),
14986         langhooks.c (lhd_tree_dump_dump_tree), langhooks.h (*dump_tree):
14987         Change return type from 'int' to 'bool'.  Replace 0 and 1 with
14988         true and false in return statements.
14989
14990 2003-03-19  Kevin Buettner  <kevinb@redhat.com>
14991
14992         * dwarf2out.c (DWARF_INITIAL_LENGTH_SIZE): Define.
14993         (DWARF_COMPILE_UNIT_HEADER_SIZE): Take into account
14994         DWARF_INITIAL_LENGTH_SIZE.
14995         (output_compilation_unit_header, output_pubnames, output_aranges)
14996         (output_line_info): Output 0xffffffff escape value for 64-bit
14997         DWARF extension.
14998         * config/mips/iris6.h (DWARF_INITIAL_LENGTH_SIZE): Define.
14999
15000 2003-03-19  Ulrich Weigand  <uweigand@de.ibm.com>
15001
15002         * config/s390/s390.c (s390_preferred_reload_class): Do not
15003         force constants to the pool unless necessary.
15004         (s390_decompose_address): Prefer to use pointer as base,
15005         not index register.
15006         * config/s390/s390.md ("*tsthiCCT_only"): Remove '?' from
15007         Q alternative.
15008         ("*movdi_64", "*movsi", "movhi", "movqi_64", "movqi",
15009         "*movdf_64", "*movsf"): Add '?' to Q->Q alternatives.
15010         ("*extractqi", "*extracthi", "*zero_extendhisi2_31",
15011         "*zero_extendqisi2_31", "*zero_extendqihi2_31",
15012         "*adddi3_31", "*subdi3_31"): Do not set "type" attribute.
15013
15014 2003-03-19  Jan Hubicka  <jh@suse.cz>
15015
15016         * i386.h (machine_function): New fields use_fast_prologue_epilogue.
15017         * i386.c (use_fast_prologue_epilogue): Remove.
15018         (ix86_frame): New field save_regs-using_mov;
15019         (ix86_compute_frame_layout):  Decide on fast prologues;
15020         allocate saved registers in red zone.
15021         (ix86_expand_epilogue, ix86_expand_prolgoues): Obey new parameters.
15022
15023 2003-03-19  Nick Clifton  <nickc@redhat.com>
15024
15025         * config/mcore/mcore.h (CPP_SPEC): Remove trailing semi-colon.
15026
15027 2003-03-18  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
15028
15029         PR 10062
15030         * config/pa/pa-hpux.h (TARGET_HPUX_UNWIND_LIBRARY): Redefine.
15031         * pa-protos.h (output_lbranch): New prototype.
15032         * pa.c (compute_frame_size): Change size of the frame marker on the
15033         64-bit ports to 48 bytes.
15034         (pa_output_function_prologue): Document why SAVE_SP is set.
15035         (hppa_expand_prologue): Save previous stack pointer into frame marker
15036         on targets which use the hpux unwind library.
15037         (output_cbranch): Use output_lbranch.
15038         (output_lbranch): New function to output long unconditional branches.
15039         * pa.h (TARGET_HPUX_UNWIND_LIBRARY): Define.
15040         (STACK_POINTER_OFFSET): Update offset for 48-byte frame marker on
15041         64-bit ports.
15042         * pa.md (jump): Use output_lbranch.
15043         (allocate_stack): New expander for dynamic stack allocation.
15044
15045 2003-03-19  Alan Modra  <amodra@bigpond.net.au>
15046
15047         * config/rs6000/rs6000.c (rs6000_stack_info): Only require a frame
15048         when debugging on XCOFF targets.  Delete "abi" temp.
15049
15050         PR target/10073
15051         * combine.c (force_to_mode <NOT>): Use gen_int_mode.
15052
15053 2003-03-18  Jakub Jelinek  <jakub@redhat.com>
15054
15055         * config/s390/s390.c (s390_output_dwarf_dtprel): New.
15056         * config/s390/s390-protos.h (s390_output_dwarf_dtprel): New proto.
15057         * config/s390/s390.h (ASM_OUTPUT_DWARF_DTPREL): Define.
15058
15059         * config/ia64/ia64.c (ia64_output_dwarf_dtprel): New.
15060         * config/ia64/ia64-protos.h (ia64_output_dwarf_dtprel): New proto.
15061         * config/ia64/ia64.h (ASM_OUTPUT_DWARF_DTPREL): Define.
15062
15063 2003-03-18  Geoffrey Keating  <geoffk@apple.com>
15064
15065         * config/rs6000/rs6000.c (rs6000_emit_prologue): Don't clone
15066         the result of machopic_function_base_name.
15067         * config/darwin.c (machopic_function_base_name): Use a gc-allocated
15068         string rather than a static array.
15069
15070         * Makefile.in (emit-rtl.o): Add gt-emit-rtl.h to dependencies.
15071
15072         * gengtype.c: Include rtl.h.
15073         (enum rtx_code): Don't define.
15074         (rtx_format): Make declaration match rtl.h.
15075         (rtx_next_new): Rename from rtx_next to avoid conflict.  Change all
15076         users.
15077         (adjust_field_rtx_def): Describe strings in NOTE_LINE_NUMBER notes.
15078         * Makefile.in (gengtype.o): Update dependencies.
15079
15080 2003-03-18  Andreas Schwab  <schwab@suse.de>
15081
15082         * config/m68k/m68k.md (iordi3): Fix setting low half to -1.  From
15083         martin@blom.org.
15084
15085 2003-03-18  Geoffrey Keating  <geoffk@apple.com>
15086
15087         * function.c (next_block_index): Mark with GTY.
15088
15089         * config/rs6000/rs6000.md (macho_correct_pic): Correct pattern.
15090
15091 2003-03-18  Richard Henderson  <rth@redhat.com>
15092
15093         * config/ia64/ia64.md (UNSPECV_SETJMP_RECEIVER): New.
15094         (builtin_setjmp_receiver): Delay call to ia64_reload_gp
15095         until after reload.
15096
15097 2003-03-18  Richard Henderson  <rth@redhat.com>
15098
15099         * builtins.c (expand_builtin_unop): New target_mode operand;
15100         use it to convert the result to the correct mode.
15101         (expand_builtin): Update all callers.
15102
15103 2003-03-18  Ulrich Weigand  <uweigand@de.ibm.com>
15104
15105         * config/s390/s390.md ("movti", "movhi", "movqi"): Add "type" attribute.
15106
15107 2003-03-18  Jan Hubicka  <jh@suse.cz>
15108
15109         * i386.md:  Fix previous commit that mistakely applied the patch
15110         twice.
15111
15112         * alias.c (rtx_equal_for_memref_p): Assume that X and Y has been
15113         canonicalized.
15114         (memrefs_conflict_p): Likewise.
15115         (addr_side_effect_eval): Canonicalize the constructed address.
15116
15117 2003-03-18  Jan Hubicka  <jh@suse.cz>
15118
15119         * i386.md (cvtts?2si peep2): New.
15120
15121 2003-03-18  Kazu Hirata  <kazu@cs.umass.edu>
15122
15123         * config/h8300/h8300.md (*iorsi3_two_qi_zext): New.
15124
15125 2003-03-18  Andreas Schwab  <schwab@suse.de>
15126
15127         * dwarf2out.c (output_file_names): Cast size_t to unsigned long
15128         for format.
15129
15130 2003-03-17  Jason Merrill  <jason@redhat.com>
15131
15132         PR c++/10091
15133         * expr.c (expand_expr) [ADDR_EXPR]: Disallow taking the address of
15134         an unaligned member of TREE_ADDRESSABLE type.
15135
15136 2003-03-18  Alan Modra  <amodra@bigpond.net.au>
15137
15138         * config/rs6000/linux64.h (MASK_PROFILE_KERNEL): Define.
15139         (TARGET_PROFILE_KERNEL): Define.
15140         (SUBTARGET_SWITCHES): Handle -mprofile-kernel.
15141         (PROFILE_BEFORE_PROLOGUE): Don't define.
15142         (PROFILE_KERNEL): Remove hacks.
15143         * config/rs6000/rs6000.c (TARGET_PROFILE_KERNEL): Define default.
15144         (rs6000_stack_info): No need to save lr if just for profiling when
15145         TARGET_PROFILE_KERNEL.
15146         (output_profile_hook): Output nothing when TARGET_PROFILE_KERNEL.
15147         (output_function_profiler): Localize label generation.  Emit code
15148         for kernel profiling.
15149
15150 2003-03-17  Kazu Hirata  <kazu@cs.umass.edu>
15151
15152         * config/h8300/h8300-protos.h: Add a prototype for
15153         byte_accesses_mergeable_p.
15154         * config/h8300/h8300.c (byte_accesses_mergeable_p): New.
15155         * config/h8300/h8300.md (*iorhi3_two_qi_mem): Likewise.
15156         (a splitter): Likewise.
15157         (*iorsi3_ashift_16_ashift_24): Likewise.
15158         (*iorsi3_ashift_16_ashift_24_mem): Likewise.
15159
15160 2003-03-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15161
15162         * dwarf2asm.h: Delete obsolete comment.
15163         (dw2_asm_output_data, dw2_asm_output_delta, dw2_asm_output_offset,
15164         dw2_asm_output_pcrel, dw2_asm_output_addr,
15165         dw2_asm_output_addr_rtx, dw2_asm_output_encoded_addr_rtx,
15166         dw2_asm_output_nstring, dw2_asm_output_data_uleb128,
15167         dw2_asm_output_data_sleb128, dw2_asm_output_delta_uleb128,
15168         dw2_asm_output_delta_sleb128): Add ATTRIBUTE_NULL_PRINTF.
15169
15170 2003-03-17  Zack Weinberg <zack@codesourcery.com>
15171
15172         * c-tree.h (struct lang_identifier): Remove error_locus field.
15173         (IDENTIFIER_ERROR_LOCUS): Kill.
15174         (record_function_scope_shadow): New prototype.
15175         * c-typeck.c (build_external_ref): Don't complain if
15176         decl is error_mark_node.  When not at file scope, bind the
15177         decl's local value to error_mark_node to suppress further
15178         warnings, instead of setting IDENTIFIER_ERROR_LOCUS.
15179
15180         * c-decl.c (get_function_binding_level): New static function.
15181         (record_function_scope_shadow): New exported function.
15182         (c_make_fname_decl): Use get_function_binding_level.
15183
15184 2003-03-17  Steve Ellcey  <sje@cup.hp.com>
15185
15186         * stmt.c (tail_recursion_args): Call promote_mode to set
15187         unsignedp flag correctly before calling convert_move.
15188
15189 2003-03-17  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
15190
15191         * loop-unroll.c (decide_peel_completely,
15192         decide_unroll_constant_iterations, decide_unroll_stupid,
15193         decide_unroll_runtime_iterations, decide_peel_simple): Set
15194         loop->has_desc.
15195
15196 2003-03-17  Jan Hubicka  <jh@suse.cz>
15197
15198         * ggc-common.c (ggc_mark_roots): Use htab_traverse_noresize.
15199
15200 2003-03-17  Olivier Hainque  <hainque@act-europe.fr>
15201
15202         * function.c (assign_parms): For a struct value address passed as
15203         first argument, delay the function's result RTL setup code until
15204         after the emission of parameter conversions.
15205
15206 2003-03-17  Dave Love  <fx@gnu.org>
15207             Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
15208
15209         * config/alpha/osf.h (TARGET_OS_CPP_BUILTINS): Define __digital__,
15210         __arch64__ to match Compaq cc.
15211
15212 2003-03-17  Neil Booth  <neil@daikokuya.co.uk>
15213
15214         * c-opts.c: Default TARGET_EBCDIC to 0 if not defined.
15215         (c_common_init): Set EBCDIC in cpp options.
15216         * cpplex.c (maybe_read_ucs, cpp_parse_escape): Use EBCDIC option,
15217         not conditional compilation.
15218         * cpplib.h (struct cpp_options): New entry EBCDIC.
15219
15220 2003-03-17  Neil Booth  <neil@daikokuya.co.uk>
15221
15222         * fix-header.c (read_scan_file): Need to malloc arguments to add_path.
15223
15224 2003-03-17  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15225
15226         * function.c (thread_prologue_and_epilogue_insns): Set delete_unused
15227         argument to 0 for redirect_jump.
15228
15229 2003-03-16  Mark Mitchell  <mark@codesourcery.com>
15230
15231         PR c++/8805
15232         * except.c (eh_region_u_cleanup): Add prev_try.
15233         (expand_eh_region_end_cleanup): Set it.
15234         (reachable_handlers): Use it to skip over cleanup blocks.
15235
15236 2003-03-17  Andreas Jaeger  <aj@suse.de>
15237
15238         * Makefile.in (TAGS): Remove obsolete handling of =*.[chy].
15239
15240 2003-03-17  Alan Modra  <amodra@bigpond.net.au>
15241
15242         * config/rs6000/linux64.h (TARGET_64BIT): Redefine.
15243         (TARGET_RELOCATABLE, TARGET_EABI, TARGET_PROTOTYPE): Likewise.
15244         (SUBTARGET_SWITCHES, SUBTARGET_OPTIONS): Likewise.
15245         (SUBTARGET_OVERRIDE_OPTIONS, CPP_SYSV_SPEC): Likewise.
15246
15247 2003-03-16  Richard Henderson  <rth@redhat.com>
15248
15249         * simplify-rtx (simplify_binary_operation): Don't abort for
15250         SS_PLUS, US_PLUS, SS_MINUS, US_MINUS.
15251
15252 2003-03-16  Richard Henderson  <rth@redhat.com>
15253
15254         * config/i386/i386.md (movstrictqi, movstrictqi_1): Check
15255         optimize_size as well.
15256
15257 2003-03-16  Stephane Carrez  <stcarrez@nerim.fr>
15258
15259         * config/m68hc11/m68hc11.c (print_operand): Handle 'b' modifier
15260         for D register to specify the low part of it, aka B.
15261         (m68hc11_gen_movhi): Use REG_WAS_0 note and increment or decrement
15262         the register if we are loading 1 or -1 to it; avoid using temp
15263         register when moving X/Y to Y/X.
15264         (m68hc11_gen_movqi): Likewise.
15265         (m68hc11_check_z_replacement): Fix last insn setting for compare case.
15266
15267 2003-03-14  Mark Mitchell  <mark@codesourcery.com>
15268
15269         PR optimization/9016
15270         * config/i386/i386.c (ix86_expand_move): Force more CONST_DOUBLEs
15271         into the constant pool.
15272
15273 2003-03-16  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
15274
15275         PR target/9164
15276         * tree.c (get_narrower): For extensions with unchanged bit number,
15277         return the unsignedness of the outer mode.
15278
15279 2003-03-16  Roger Sayle  <roger@eyesopen.com>
15280
15281         * c-typeck.c (build_component_ref):  Turn "for" into "do .. while"
15282         to avoid "may be used uninitialized" warning on ia64-hpux.
15283         * config/ia64/ia64-c.c: Include "tm_p.h" for function prototypes.
15284
15285 2003-03-16  Andreas Jaeger  <aj@suse.de>
15286
15287         * configure.in: Improve check for memcheck.h.
15288         * configure: Regenerated.
15289
15290 2003-03-16  Neil Booth  <neil@daikokuya.co.uk>
15291
15292         * doc/cppopts.texi: Remove documentation of -A-.
15293
15294 2003-03-15  Zack Weinberg  <zack@codesourcery.com>
15295
15296         * doc/libgcc.texi: Remove @tie.
15297
15298 2003-03-15  Josef Zlomek  <zlomekj@suse.cz>
15299
15300         * rtl.h (subrtx_p): Renamed to rtx_referenced_p.
15301         (rtx_pair): Added new element update_label_nuses, renamed to
15302         replace_label_data.
15303         * cfgcleanup.c (outgoing_edges_match, try_crossjump_to_edge): Use
15304         replace_label_data instead of rtx_pair.
15305         * loop.c (load_mems): Likewise.
15306         * rtlanal.c (replace_label): Replace label in pool constants and in
15307         INSN_LIST (in REG_LABEL note).
15308         (subrtx_p): Renamed to rtx_referenced_p.
15309         (subrtx_p_1): Renamed to rtx_referenced_p_1, compare the interior of
15310         LABEL_REF with CODE_LABEL, traverse constants from pool.
15311
15312 2003-03-15  Aldy Hernandez <aldyh@redhat.com>
15313             Zack Weinberg  <zack@codesourcery.com>
15314
15315         * Makefile.in (TEXI_GCCINT_FILES): Add libgcc.texi.
15316         * doc/libgcc.texi: New file.
15317         * doc/interface.texi: Delete paragraph about libgcc interface.
15318         * doc/gccint.texi: Add libgcc menu entry and @include libgcc.texi.
15319
15320 2003-03-15  Jason Merrill  <jason@redhat.com>
15321
15322         PR debug/9039
15323         * dwarf2out.c (gen_decl_die): Ignore frontend tree codes.
15324
15325         PR debug/6387
15326         * dwarf2out.c (dwarf2out_decl): If we're at -g1, just stick nested
15327         function DIEs at toplevel.
15328         (decls_for_scope): At -g1, don't descend into subblocks.
15329
15330 2003-03-15  Ulrich Weigand  <uweigand@de.ibm.com>
15331
15332         * varasm.c (struct rtx_const): Change type of un.addr member
15333         to struct holding an additional 'symbol' member.
15334         (decode_rtx_const): Re-enable optimization to count SYMBOL_REFs
15335         with equal string addresses as equal.
15336         (simplify_subtraction): Adapt to struct rtx_const change.
15337
15338 2003-03-15  Neil Booth  <neil@daikokuya.co.uk>
15339
15340         * fix-header.c (read_scan_file): Read main file before handling -D.
15341
15342 2003-03-15  Roger Sayle  <roger@eyesopen.com>
15343
15344         * c-cppbuiltin.c (builtin_define_with_value_n): Fix whitespace.
15345         * c-typeck.c (c_tree_expr_nonnegative_p): Likewise.
15346         * cfgbuild.c (find_many_sub_basic_blocks): Likewise.
15347         (find_sub_basic_blocks): Likewise.
15348         * cgraphunit.c (cgraph_expand_functions): Likewise.
15349         * dwarf2out.c (prune_unused_types): Likewise.
15350         * expr.c (store_field): Likewise.
15351         * genextract.c (print_path): Likewise.
15352         * haifa-sched.c (schedule_insn): Likewise.
15353         * lcm.c (compute_antinout_edge): Likewise.
15354         * loop-unroll.c (decide_peel_once_rolling): Likewise.
15355         * ra-colorize.c (ra_colorize_free_all): Likewise.
15356         * ra-debug.c (dump_igraph): Likewise.
15357         (debug_hard_reg_set): Likewise.
15358         * reg-stack.c (reg_to_stack): Likewise.
15359         * rtlanal.c (refers_to_regno_p): Likewise.
15360         * tracer.c (layout_superblocks): Likewise.
15361
15362 2003-03-15  Neil Booth  <neil@daikokuya.co.uk>
15363
15364         * fix-header.c (read_scan_file): Fix thinko.
15365
15366 2003-03-15  Glen Nakamura  <glen@imodulo.com>
15367
15368         * reload1.c (choose_reload_regs): Use && instead of ||
15369         with REG_CANNOT_CHANGE_MODE_P condition.
15370
15371 2003-03-15  Neil Booth  <neil@daikokuya.co.uk>
15372
15373         * Makefile.in: Update.
15374         * c-common.h (cb_register_builtins): Rename c_cpp_builtins.
15375         * c-lex.c (init_c_lex): Register builtins hook is dead.
15376         * c-opts.c (COMMAND_LINE_OPTIONS, missing_arg): Handle -A, -D and -U.
15377         (c_common_decode_option): Don't call cpp_handle_option.
15378         Handle -A, -D and -U.
15379         (handle_deferred_opts): Simplify.
15380         (finish_options): Define builtins and command line macros.
15381         * c-ppoutput.c (init_pp_output): Register builtins hook is dead.
15382         * cppinit.c: Don't include intl.h.
15383         (init_builtins): Rename cpp_init_builtins.  No hook to call.
15384         (init_library): Don't need to sort options.
15385         (cpp_create_reader): Don't set pending.
15386         (cpp_destroy): Don't free pending.
15387         (struct pending_option, cl_directive_handler, struct cpp_pending,
15388         APPEND, free_chain, new_pending_directive, parse_option, opt_comp,
15389         cpp_finish_options, COMMAND_LINE_OPTIONS, DEF_OPT, struct cl_option,
15390         cl_options, cpp_handle_option): Remove.
15391         * cpplib.h (struct cpp_pending, register_builtins, cpp_handle_option,
15392         cpp_finish_options): Remove.
15393         (cpp_init_builtins): New.
15394         * fix-header.c (read_scan_file): Update to handle -D.  Fix
15395         handling of -I.  Replace call to cpp_finish_options.
15396
15397 2003-03-15  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15398
15399         PR optimization/9387
15400         * function.c (thread_prologue_and_epilogue_insns): Use redirect_jump
15401         for conditional returns.
15402
15403 2003-03-14  Jason Merrill  <jason@redhat.com>
15404
15405         PR optimization/6871
15406         * varasm.c (assemble_variable): Leave constant zeroes in .rodata.
15407
15408 2003-03-14  Neil Booth  <neil@daikokuya.co.uk>
15409
15410         * c-opts.c (finish_options): New.
15411         (COMMAND_LINE_OPTIONS, c_common_decode_option): Add -imacros.
15412         (missing_arg): Handle OPT_include and OPT_imacros.
15413         (c_common_init, c_common_parse_file): Use finish_options.
15414         (handle_deferred_opts): Update.
15415         * cppinit.c (struct cpp_pending): Remove imacros_head and imacros_tail.
15416         (cpp_finish_options): Don't handle -imacros here.
15417         (no_fil): Remove.
15418         (COMMAND_LINE_OPTIONS, cpp_handle_option): Don't handle -imacros.
15419
15420 2003-03-14  Jakub Jelinek  <jakub@redhat.com>
15421
15422         * config/rs6000/rs6000.c (rs6000_emit_load_toc_table): Don't call
15423         rs6000_maybe_dead if !fromprolog.
15424
15425 2003-03-14  Neil Booth  <neil@daikokuya.co.uk>
15426
15427         * Makefile.in: Update.
15428         * c-common.h (fe_file_change, pp_file_change): New.
15429         * c-lex.c (init_c_lex): Don't set cb_file_change.
15430         (c_common_parse_file): Move to c-opts.c.
15431         (cb_file_change): Rename fe_file_change.
15432         * c-opts.c: Include debug.h.
15433         (warn_unused_macros, include_cursor): New.
15434         (push_command_line_include, cb_file_change): New.
15435         (COMMAND_LINE_OPTIONS): Handle -include.
15436         (c_common_decode_option): Use local warn_unused_macros.
15437         Handle OPT_include.
15438         (c_common_post_options): Set file change callback.
15439         (handle_deferred_opts): Skip -include.  Don't free the array.
15440         (c_common_init): Call cpp_finish_options here, and push an
15441         initial -include file.
15442         * c-ppoutput.c (cb_file_change): Rename pp_file_change.
15443         (preprocess_file): Don't call cpp_finish_options.
15444         (init_pp_output): Don't set the file change callback.
15445         (pp_file_change): Return if no line commands or no output.
15446         * cpphash.h (next_include_file, first_unused_line): Remove.
15447         * cppinit.c (include_head, include_tail): Remove.
15448         (cpp_destroy): Don't free -include chain.
15449         (cpp_finish_options): Don't handle -include, or worry about
15450         -Wunused-macros.
15451         (_cpp_maybe_push_include_file): Remove.
15452         (COMMAND_LINE_OPTIONS, cpp_handle_option): Don't handle -include.
15453         * cpplib.c (_cpp_pop_buffer): Don't handle -include.
15454         * cppmacro.c (_cpp_warn_if_unused_macro, _cpp_create_definition):
15455         Used flag is set based upon the state of the warn_unused_macros
15456         flag, and so use of first_unused_line is unnecessary.
15457
15458 2003-03-13  Jan Hubicka  <jh@suse.cz>
15459
15460         * cselib.c (clear_table): Do not take argument; always clear just
15461         used slots.
15462         (cselib_process_insn):  Update call of clear_table
15463         (cselib_init): Do not call clear_table.
15464         (cselib_finish): Clear table.
15465
15466         * cse.c (count_reg_usage): Do not check side_effects_p.
15467         * rtlanal.c (set_noop_p): Check side_effects_p only when set looks
15468         like noop.
15469         (find_reg_equal_equiv_note): Do not use find_reg_note.
15470
15471 2003-03-14  Richard Henderson  <rth@redhat.com>
15472
15473         PR target/9700
15474         * config/alpha/alpha.c (alpha_va_start): Account for
15475         current_function_pretend_args_size in the AP offset.
15476
15477         * config/alpha/alpha.h (SETUP_INCOMING_VARARGS): Move out of line.
15478         (INITIAL_ELIMINATION_OFFSET): Move out of line.
15479         * config/alpha/alpha.c (alpha_setup_incoming_varargs): New.
15480         (alpha_initial_elimination_offset) New.
15481         * config/alpha/alpha-protos.h: Update.
15482
15483 2003-03-14  Jakub Jelinek  <jakub@redhat.com>
15484
15485         * stmt.c (expand_start_case): Call emit_queue ().
15486
15487 2003-03-14  Chris Demetriou  <cgd@broadcom.com>
15488             Alexandre Oliva  <aoliva@redhat.com>
15489
15490         * config/mips/mips.h (FUNCTION_PROFILER): _mcount() doesn't pop 2
15491         words in new abis.
15492
15493 2003-03-14  Eric Botcazou  <ebotcazou@libertysurf.fr>
15494
15495         PR optimization/8396
15496         * tree-inline.c (initialize_inlined_parameters): Make sure the value
15497         of read-only constant arguments is passed with the right type.
15498
15499 2003-03-14  Steven Bosscher  <steven@gcc.gnu.org>
15500
15501         * doc/extend.texi (Function Names): Make the example compilable.
15502
15503 2003-03-13  David Edelsohn  <edelsohn@gnu.org>
15504
15505         * config/rs6000/rs6000.c (processor_target_table): Really allow
15506         GP optional instructions on Power4.
15507
15508 2003-03-13  Roger Sayle  <roger@eyesopen.com>
15509
15510         * calls.c (flags_from_decl_or_type): Factor and remove redundant
15511         conditional tests.
15512
15513 2003-03-13  Mike Stump  <mrs@apple.com>
15514
15515         * ggc-page.c (struct page_entry): Remove varray.h header.
15516         Add index_by_depth field.
15517         Remove save_in_use_p field.
15518         (struct globals): Add depth_in_use, depth_max, by_depth_in_use,
15519         by_depth_max, by_depth, and save_in_use fields.
15520         (INITIAL_PTE_COUNT): Add.
15521         (save_in_use_p_i): Add.
15522         (save_in_use_p): Add.
15523         (adjust_depth): Add.
15524         (move_ptes_to_front): Add.
15525         (push_depth): Add.
15526         (push_by_depth): Add.
15527         (prefetch): Add.
15528         (free_page): Add support for and use faster data structures.
15529         (ggc_alloc): Likewise.
15530         (init_ggc): Likewise.
15531         (ggc_recalculate_in_use_p): Likewise.
15532         (ggc_pop_context): Likewise.
15533         (clear_marks): Likewise.
15534         (ggc_pch_read): Likewise.
15535         * Makefile.in (ggc-page.o): Remove varray.h.
15536
15537 2003-03-13  Nathanael Nerode  <neroden@gcc.gnu.org>
15538
15539         * ChangeLog: Rotated last year's entries to...
15540         * ChangeLog.8: New.
15541
15542         * config/ia64/fde-glibc.c, config/ia64/freebsd.h,
15543         config/ia64/hpux.h, config/ia64/hpux_longdouble.h,
15544         config/ia64/ia64-c.c, config/ia64/ia64-modes.def,
15545         config/ia64/ia64-protos.h, config/ia64/ia64.c,
15546         config/ia64/ia64.h, config/ia64/ia64.md,
15547         config/ia64/itanium1.md, config/ia64/itanium2.md,
15548         config/ia64/quadlib.c, config/ia64/unwind-ia64.c,
15549         config/ia64/unwind-ia64.h: It's GCC, not GNU CC.
15550
15551 2003-03-13  Aldy Hernandez  <aldyh@redhat.com>
15552
15553         * config/rs6000/rs6000.c (rs6000_dwarf_register_span):
15554         Differentiate endianness.
15555         (s6000_override_options): Use cpu type instead of TARGET_SPE.
15556
15557 2003-03-13  Nick Clifton  <nickc@redhat.com>
15558
15559         * config/arm/arm.c (print_multi_reg): Do not generate a type 2
15560         LDM instructions with writeback enabled.
15561         (output_return_instruction): Likewise.
15562
15563         * config/arm/pe.h (FIXED_REGISTERS): Remove definition.
15564         (CALL_USED_REGISTERS): Remove definition.
15565         (SUBTARGET_CONDITIONAL_REGISTER_USAGE): Define.
15566
15567 2003-03-13  Alan Modra  <amodra@bigpond.net.au>
15568
15569         * config/rs6000/rs6000.c (rs6000_flag_pic): Delete.
15570         (rs6000_xcoff_encode_section_info): #ifdef TARGET_XCOFF.
15571         (rs6000_binds_local_p, TARGET_BINDS_LOCAL_P): #if TARGET_MACHO.
15572         (rs6000_override_options): Don't clear flag_pic for ABI_AIX.
15573         (rs6000_legitimize_address): Formatting.
15574         (rs6000_emit_move): Likewise.
15575         (rs6000_return_addr): Test ABI_AIX as well as flag_pic.
15576         (rs6000_emit_prologue <save_LR_around_toc_setup>): Likewise.
15577         (rs6000_elf_select_section): Comment reason for shlib being
15578         set for ABI_AIX.
15579         (rs6000_elf_unique_section): Likewise.
15580         (rs6000_elf_encode_section_info): Test !TARGET_AIX as well as ABI_AIX.
15581         * config/rs6000/rs6000.h (LEGITIMATE_LO_SUM_ADDRESS_P): Test ABI_AIX
15582         as well as flag_pic.
15583         * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Likewise.
15584         (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
15585         * config/rs6000/linux64.h (TARGET_ENCODE_SECTION_INFO): Don't define.
15586
15587 2003-03-13  Richard Henderson  <rth@redhat.com>
15588
15589         * emit-rtl.c (try_split): Handle 1-1 splits of call insns properly.
15590
15591         * config/ia64/ia64.c (TARGET_FUNCTION_OK_FOR_SIBCALL): New.
15592         (ia64_gp_save_reg): Remove.
15593         (struct ia64_frame_info): Move to the beginning of the file;
15594         add reg_save_gp.
15595         (ia64_expand_call): Rearrange for new call patterns.
15596         (ia64_reload_gp): New.
15597         (ia64_split_call): New.
15598         (ia64_compute_frame_size): Allocate reg_save_gp.
15599         (ia64_expand_prologue): Save reg_save_gp.
15600         (ia64_expand_epilogue): Don't restore gp.
15601         (ia64_hard_regno_rename_ok): Remove R4 hack.
15602         (ia64_function_ok_for_sibcall): New.
15603         (ia64_output_mi_thunk): Set reload_completed, no_new_pseudos;
15604         call try_split on sibcall pattern.
15605         * config/ia64/ia64-protos.h: Update.
15606         * config/ia64/ia64.md (call_nogp, call_value_nogp, sibcall_nogp):
15607         Rename from nopic versions.  Confiscate 2nd argument to call as
15608         a marker.
15609         (call_pic, call_value_pic, sibcall_pic): Remove.
15610         (call_gp, call_value_gp, sibcall_gp): New.
15611         (builtin_setjmp_setup): Remove.
15612         (builtin_setjmp_receiver): Call ia64_reload_gp.
15613
15614 2003-03-12  Nathanael Nerode  <neroden@gcc.gnu.org>
15615
15616         * config/dsp16xx/dsp16xx-protos.h, config/dsp16xx/dsp16xx.c,
15617         config/dsp16xx/dsp16xx.h, config/dsp16xx/dsp16xx.md: Replace
15618         "GNU CC" with "GCC".
15619
15620         * config/c4x/c4x-c.c, config/c4x/c4x-modes.def,
15621         config/c4x/c4x-protos.h, config/c4x/c4x.c, config/c4x/c4x.h,
15622         config/c4x/c4x.md, config/c4x/libgcc.S, config/c4x/rtems.h:
15623         GCC, not GNU CC.
15624
15625         * genattrtab.h, hosthooks-def.h, hosthooks.h, langhooks-def.h,
15626         langhooks.h, tree-inline.h: Replace "GNU CC" with "GCC".
15627
15628         * c-pch.c, dummy-conditions.c, genautomata.c, genconditions.c,
15629         langhooks.c, tree-inline.c, unwind-dw2-fde-darwin.c,
15630         unwind-dw2-fde-glibc.c, unwind-libunwind.c, vmsdbgout.c: Replace
15631         "GNU CC" with "GCC".
15632
15633         * config/v850/lib1funcs.asm, config/v850/rtems.h,
15634         config/v850/v850-c.c, config/v850/v850-protos.h,
15635         config/v850/v850.c, config/v850/v850.h, config/v850/v850.md:
15636         GCC, not GNU CC.
15637
15638         * config/vax/bsd.h, config/vax/elf.h, config/vax/netbsd-elf.h,
15639         config/vax/netbsd.h, config/vax/openbsd.h, config/vax/openbsd1.h,
15640         config/vax/ultrix.h, config/vax/vax-protos.h, config/vax/vax.c,
15641         config/vax/vax.h, config/vax/vax.md, config/vax/vaxv.h: GCC, not
15642         GNU CC.
15643
15644 2003-03-12  Benjamin Kosnik  <bkoz@redhat.com>
15645
15646         * cpppch.c (cpp_valid_state): Use DL_WARNING_SYSHDR, not DL_WARNING.
15647
15648 2003-03-12  Nathanael Nerode  <neroden@gcc.gnu.org>
15649
15650         * fixinc/fixinc.interix: Remove dead code (most of it).
15651         * fixinc/fixinc.dgux: Remove.
15652
15653         * ginclude/float.h, ginclude/iso646.h, ginclude/stdarg.h,
15654         ginclude/stdbool.h, ginclude/stddef.h: GCC, not GNU CC.
15655
15656 2003-03-12  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
15657
15658         * pa.c (pa_init_builtins): Fix warning.
15659
15660 2003-03-12  Steve Ellcey  <sje@cup.hp.com>
15661
15662         * config/ia64/ia64.h (ASM_OUTPUT_XDATA_CHAR): Remove.
15663         (ASM_OUTPUT_XDATA_SHORT): Remove.
15664         (ASM_OUTPUT_XDATA_INT): Remove.
15665         (ASM_OUTPUT_XDATA_DOUBLE_INT): Remove.
15666         (ASM_OUTPUT_ADDR_DIFF_ELT): Handled 32 bit address diffs.
15667         (ASM_PREFERRED_EH_DATA_FORMAT): Handle 32 bit EH pointers.
15668         (CASE_VECTOR_MODE): Handle 32 bit pointers in case statement.
15669
15670 2003-03-12  Andrew Lewycky  <andrew@mxc.ca>
15671
15672         PR c++/7050
15673         * expr.c (store_expr): Don't attempt to store void-typed trees,
15674         just evaluate them for side effects.
15675
15676 2003-03-12  Neil Booth  <neil@daikokuya.co.uk>
15677
15678         * cppfiles.c (cpp_rename_file, cpp_push_include): New.
15679         * cppinit.c (push_include): Move with changes to cppfiles.c.
15680         (cpp_read_main_file): Mark named operators here...
15681         (cpp_finish_options): ...not here.  Update.
15682         (_cpp_maybe_push_include_file): Update.
15683         * cpplib.h (cpp_push_include, cpp_rename_file): New.
15684
15685 2003-03-12  Nathanael Nerode  <neroden@gcc.gnu.org>
15686
15687         * aclocal.m4: Introduce gcc_GAS_VERSION_GTE_IFELSE,
15688         _gcc_COMPUTE_GAS_VERSION.
15689         * configure.in: Use them.
15690         * configure: Regenerate.
15691
15692 2003-03-12  Bob Wilson  <bob.wilson@acm.org>
15693
15694         * config/xtensa/xtensa.md (adddi3): Don't clobber source operand used
15695         to detect carry.
15696         (subdi3): Reorder emitted instructions.
15697
15698 2003-03-12  Andreas Jaeger  <aj@suse.de>
15699
15700         * config/i386/netbsd64.h (TARGET_OS_CPP_BUILTINS): Remove call to
15701         NETBSD_OS_CPP_BUILTINS_LP64.
15702
15703 2003-03-12  Nathanael Nerode  <neroden@gcc.gnu.org>
15704
15705         * Makefile.in: Eliminate all.indirect.  Update and clean up comments.
15706         Rearrange.  Reorganize.
15707         * configure.in: Rearrange.
15708         * configure: Regenerate.
15709
15710 2003-03-12  Andreas Jaeger  <aj@suse.de>
15711
15712         * c-cppbuiltin.c (cb_register_builtins): Define LP64 builtins for
15713         LP64 targets.
15714
15715         * doc/cpp.texi (Common Predefined Macros): Document __LP64__ and
15716         _LP64.
15717
15718         * config/ia64/ia64.h (TARGET_CPU_CPP_BUILTINS): Do not define
15719         _LP64 macros here.
15720         * config/pa/pa.h (TARGET_CPU_CPP_BUILTINS): Likewise.
15721
15722         * config/alpha/netbsd.h (TARGET_OS_CPP_BUILTINS): Remove call to
15723         NETBSD_OS_CPP_BUILTINS_LP64.
15724         * config/sh/netbsd-elf.h (TARGET_OS_CPP_BUILTINS): Likewise.
15725         * config/sparc/netbsd-elf.h (TARGET_OS_CPP_BUILTINS): Likewise.
15726
15727         * config/netbsd.h (NETBSD_OS_CPP_BUILTINS_LP64): Remove.
15728
15729 2003-03-12  Jan Hubicka  <jh@suse.cz>
15730
15731         * i386.c (ix86_setup_incoming_varargs): Set stack_alignment_needed to 128.
15732
15733 2003-03-12  Daniel Jacobowitz  <drow@mvista.com>
15734
15735         Fix PR target/9797 and PR c/9853.
15736         * stmt.c (expand_decl_init): Call push_temp_slots () and
15737         pop_temp_slots ().
15738
15739 2003-03-12  J"orn Rennecke <joern.rennecke@superh.com>
15740
15741         * sh.c: Include basic-block.h.
15742         (sh_output_mi_thunk, emit_load_ptr): New functions.
15743         (TARGET_ASM_OUTPUT_MI_THUNK, TARGET_ASM_CAN_OUTPUT_MI_THUNK): Redefine.
15744
15745 2003-03-12  Nick Clifton  <nickc@redhat.com>
15746
15747         * config/arm/pe.h (FIXED_REGISTERS): Add Maverick registers.
15748         (CALL_USED_REGISTERS): Likewise.
15749         * config/arm/arm.h (FIRST_PSEUDO_REGISTER): Update comment
15750         describing how this value is calculated.
15751
15752 2003-03-12  Hans-Peter Nilsson  <hp@bitrange.com>
15753
15754         * configure.in (rlim_t): Define to long if no valid definition
15755         found in sys/resource.h.
15756         * config.in, configure: Regenerate.
15757
15758 2003-03-12  Neil Booth  <neil@daikokuya.co.uk>
15759
15760         * config/mcore/mcore-elf.h (CPP_PREDEFINES): Replace with
15761         TARGET_OS_CPP_BUILTINS.
15762         * config/mcore/mcore-pe.h: Similarly.
15763         * config/mcore/mcore.h: Replace CPP_PREDEFINES and part of
15764         CPP_SPEC with TARGET_CPU_CPP_BUILTINS.
15765
15766 2003-03-12  Eric Botcazou  <ebotcazou@libertysurf.fr>
15767
15768         PR c/9928
15769         * c-decl.c (duplicate_decls): Discard the initializer of the new decl
15770         only if it is a VAR_DECL.
15771
15772 2003-03-12  Eric Botcazou  <ebotcazou@libertysurf.fr>
15773
15774         PR optimization/9888
15775         * config/i386/i386.md (jcc_1): Fix range.
15776         (jcc_2): Likewise.
15777         (jump): LIkewise.
15778         (doloop_end_internal): Likewise.
15779
15780 2003-03-12  Danny Smith  <dannysmith@users.sourceforge.net>
15781
15782         * config/i386/winnt.c (DLL_IMPORT_PREFIX): New define.
15783         Use throughout instead of DLL_IMPORT_EXPORT_PREFIX and "e."
15784         (DLL_EXPORT_PREFIX): New define. Use throughout instead of
15785         DLL_IMPORT_EXPORT_PREFIX and "i."
15786         (i386_pe_dllexport_name_p): Here.
15787         (i386_pe_dllimport_name_p): Here.
15788         (i386_pe_mark_dllexport): Here. Remove DLL_IMPORT_PREFIX,
15789         not 9 chars when getting identifier name.
15790         (i386_pe_mark_dllimport): Here.
15791         (i386_pe_encode_section_info): Here. Remove DLL_IMPORT_PREFIX,
15792         not 9 chars when getting identifier name. Correct comment.
15793         (i386_pe_strip_name_encoding): Here. Add comments for different
15794         cases.
15795         (gen_fastcall_suffix): Break down xmalloc() argument to
15796         components.
15797         (gen_stdcall_suffix): Likewise.
15798         Update copyright year.
15799
15800 2003-03-12  Eric Botcazou  <ebotcazou@libertysurf.fr>
15801
15802         PR optimization/9888
15803         * config/i386/i386.md (movsi_1): Remove special alternatives
15804         for %eax register.
15805         (movsi_1_nointernunit): Likewise.
15806         (movhi_1): Likewise.
15807         * config/i386/i386.c (memory_address_length): Do not use
15808         short displacement when there is no base.
15809         (ix86_attr_length_address_default): Handle LEA instructions.
15810
15811 2003-03-12  Neil Booth  <neil@daikokuya.co.uk>
15812
15813         * c-cppbuiltin.c (builtin_define_std): Make non-static.
15814
15815 2003-03-11  Loren James Rittle  <ljrittle@acm.org>
15816
15817         * config/freebsd-spec.h (FBSD_CPP_PREDEFINES): Remove.
15818         (FBSD_TARGET_OS_CPP_BUILTINS): New port-specific macro.
15819         (FBSD_TARGET_CPU_CPP_BUILTINS): New port-specific macro.
15820         * config/freebsd.h (CPP_PREDEFINES): Remove.
15821         (TARGET_OS_CPP_BUILTINS): New.
15822         * config/alpha/freebsd.h: Use overridden FBSD_TARGET_CPU_CPP_BUILTINS
15823         instead of TARGET_OS_CPP_BUILTINS.
15824         * config/sparc/freebsd.h (CPP_PREDEFINES): Remove.
15825
15826 2003-03-11  Geoffrey Keating  <geoffk@apple.com>
15827
15828         * c-cppbuiltin.c (builtin_define_std): Add ATTRIBUTE_UNUSED.
15829
15830 2003-03-11  Aldy Hernandez  <aldyh@redhat.com>
15831
15832         * config/rs6000/rs6000.c (rs6000_stack_info): Remove
15833         insn_chain_scanned.  Use insn_chain_scanned_p in machine_function.
15834
15835         * config/rs6000/rs6000.h (machine_function): Add insn_chain_scanned_p.
15836
15837 2003-03-11  Alexandre Oliva  <aoliva@redhat.com>
15838
15839         * toplev.c (independent_decode_option): Return success for --help,
15840         --target-help and --version.
15841
15842 2003-03-11  Alexandre Oliva  <aoliva@redhat.com>
15843
15844         * config/mips/linux64.h (DRIVER_SELF_SPECS): Add endian_spec.
15845         Default to -mips3 on -mabi=64.  Don't add -mips* flag if -march is
15846         specified.
15847         (SUBTARGET_ASM_SPEC): Remove -mips*-adding code obviated by
15848         DRIVER_SELF_SPECS.
15849         (LINK_SPEC): Let endian options affect the linker emulation name.
15850
15851 2003-03-11  J"orn Rennecke <joern.rennecke@superh.com>
15852
15853         * sh.md (reload_inqi): Fix mode for source in second set.
15854
15855 2003-03-11  Jan Hubicka  <jh@suse.cz>
15856
15857         * cselib.c (cselib_invalidate_mem_1): Move too ...
15858         (cselib_invalidate_mem): ... here; use new list
15859         (dummy_val, first_containing_mem): New static variables.
15860         (clear_table): Initialize first_containing_mem.
15861         (discard_useless_values):  Compact the containing_mem list.
15862         (add_mem_for_addr): Add to the list.
15863         * cselib.h (cselib_val): Add next_containing_mem.
15864
15865 2003-03-11  Aldy Hernandez  <aldyh@redhat.com>
15866
15867         * config/rs6000/rs6000.c (rs6000_override_options): Disable string
15868         instructions for e500.
15869
15870 2003-03-11  Neil Booth  <neil@daikokuya.co.uk>
15871
15872         * Makefile.in: Update.
15873         * c-cppbuiltin.c: Include tm_p.h.
15874
15875 2003-03-11  Aldy Hernandez  <aldyh@redhat.com>
15876
15877         * doc/tm.texi (Frame Registers): Document DWARF_REG_TO_UNWIND_COLUMN.
15878
15879         * unwind-dw2.c (DWARF_REG_TO_UNWIND_COLUMN): Define.
15880         (_Unwind_GetGR): Use DWARF_REG_TO_UNWIND_COLUMN.
15881         (_Unwind_SetGR): Same.
15882         (_Unwind_GetGRPtr): New.
15883         (_Unwind_SetGRPtr): New.
15884         (uw_update_context_1): Use accesor functions instead of accessing
15885         context->reg[] directly.
15886         (uw_install_context_1): Same.
15887         (execute_cfa_program): Same.
15888         (__frame_state_for): Same.
15889
15890         * config/rs6000/rs6000.c (spe_synthesize_frame_save): Use 1200 as
15891         the synthetic register offset.
15892
15893         * config/rs6000/rs6000.h (DWARF_REG_TO_UNWIND_COLUMN): New.
15894
15895 2003-03-11  Hans-Peter Nilsson  <hp@axis.com>
15896
15897         * config/cris/cris.md: Remove lingering EGCS reference.
15898         ("*extopqihi_side_biap"): For HI operation, match
15899         cris_additive_operand_extend_operator, not
15900         cris_operand_extend_operator.  Adjust condition.
15901         ("*extopqihi_side", "*extopqihi"): Ditto.
15902         ("*extopqisi_side_biap"): Correct operand numbers in condition.
15903         ("*extophisi_side_biap", "*extopqisi_swap_side_biap"): Ditto.
15904         ("*extophisi_swap_side_biap", "*extopqisi_swap"): Ditto.
15905         ("*extophisi_swap"): Ditto.
15906         ("*extopqihi_swap_side_biap"): For HI operation, match a simple
15907         PLUS, not cris_operand_extend_operator.  Adjust condition and
15908         output template.
15909         ("*extopqihi_swap_side", "*extopqihi_swap"): Ditto.
15910         * config/cris/cris.h (PREDICATE_CODES): Add
15911         cris_additive_operand_extend_operator.
15912         * config/cris/cris.c (cris_additive_operand_extend_operator):
15913         New predicate.
15914
15915 2003-03-11  Hartmut Penner  <hpenner@de.ibm.com>
15916
15917         * df.c (read_modify_subreg_p): Change from static to global.
15918         * df.h (read_modify_subreg_p): Add prototype.
15919         * sched-deps.c (sched_analyze_1): Generate true dependency for
15920         strict_low_part, certain subregs and zero/sign_extract.
15921
15922 2003-03-11  Neil Booth  <neil@daikokuya.co.uk>
15923
15924         * Makefile.in: Update.
15925         * c-common.c: Don't include real.h or except.h.
15926         (REGISTER_PREFIX): Remove.
15927         (builtin_define_std, builtin_define_with_value,
15928         builtin_define_with_int_value, builtin_define_with_hex_fp_value,
15929         builtin_define_type_max, builtin_define_type_precision,
15930         builtin_define_float_constants): Move to c-cppbuiltin.c.
15931         (c_stddef_cpp_builtins): New.
15932         * c-common.h (builtin_define_with_value, c_stddef_cpp_builtins): New.
15933         * c-cppbuiltin.c: New, extracted from c-common.c.
15934         (define__GNUC__): New.
15935         * cppspec.c (lang_specific_driver): Remove support of -no-gcc.
15936         * gcc.c: Remove support of %v1, %v2 and %v3 specs.
15937         (cpp_unique_options): Don't support no-gcc.
15938         (do_spec_1): Remove support of version specs.
15939         * doc/invoke.texi: Remove documentation of %v1, %v2 and %v3.
15940         * doc/passes.texi: Update.
15941         * doc/tm.texi: Update.
15942
15943 2003-03-10  Aldy Hernandez  <aldyh@redhat.com>
15944
15945         * dwarf2out.c (multiple_reg_loc_descriptor): Fix thinko.
15946
15947 2003-03-10  Andrew Pinski  <apinski@apple.com>
15948
15949         * config/darwin.c (machopic_function_base_name): If dynamic-no-pic
15950         is on should not get here.
15951         (machopic_indirect_data_reference): If dynamic-no-pic is on just
15952         generate high/low parts of the address.
15953         (machopic_legitimize_pic_address): Change MACHOPIC_PURE to
15954         MACHOPIC_INDIRECT. Dynamic-no-pic uses 0 as the pic base. Generate
15955         symbol and labels with a new reg.  Dynamic-no-pic does not have a
15956         pic_offset_table_rtx.
15957         (machopic_select_section): Change references of flag_pic to
15958         MACHOPIC_INDIRECT.
15959         (machopic_asm_out_destructor): Likewise.
15960         * config/darwin.h (ASM_DECLARE_UNRESOLVED_REFERENCE): Change
15961         reference of flag_pic to MACHOPIC_INDIRECT.
15962         (MACHO_DYNAMIC_NO_PIC_P): Define as TARGET_DYNAMIC_NO_PIC.
15963         (MACHOPIC_INDIRECT): Is also true when dynamic-no-pic is on.
15964         (MACHOPIC_JUST_INDIRECT): Is also true when dynamic-no-pic is on.
15965         (MACHOPIC_PURE): Is not pure when dynamic-no-pic is on.
15966         * config/i386/darwin.h (MASK_MACHO_DYNAMIC_NO_PIC): Define as
15967         0 for right now as dynamic-no-pic is not implemented on Darwin/ia32.
15968         * config/rs6000/darwin.h (MASK_MACHO_DYNAMIC_NO_PIC): Define.
15969         (TARGET_DYNAMIC_NO_PIC): Define.
15970         (SUBTARGET_SWITCHES): Define, have sub-target switches for
15971         dynamic-no-pic.
15972         (SUBTARGET_OVERRIDE_OPTIONS): Move check for -fpic from
15973         rs6000_override_options to here. Dynamic-no-pic overrides
15974         pic.
15975         (CC1_SPEC): Change from not static then pic to not static and not
15976         dynamic-no-pic then pic.
15977         * config/rs6000/rs6000.c (rs6000_override_options): Move the
15978         check for -fpic and DARWIN_ABI to config/rs6000/darwin.h
15979         (rs6000_legitimize_reload_address): Add case for loading floating in
15980         dynamic-no-pic.
15981         (rs6000_emit_move): Add case for dynamic-no-pic.  Change reference
15982         of flag_pic to MACHOPIC_INDIRECT.
15983         (secondary_reload_class): Conditional change the reference of
15984         flag_pic to MACHOPIC_INDIRECT.
15985         (rs6000_output_mi_thunk): Change reference of flag_pic to
15986         MACHOPIC_INDIRECT.
15987         (output_profile_hook): Likewise.
15988         (machopic_output_stub): Non-pure (dynamic-no-pic) is now supported.
15989         * config/rs6000/rs6000.md (movdf_low): Add the case for
15990         MACHO_DYNAMIC_NO_PIC_P.
15991         (call): Change references for flag_pic in TARGET_MACHO to
15992         MACHOPIC_INDIRECT.
15993         (SUBTARGET_OVERRIDE_OPTIONS): Add case where -fpic is on and
15994         -mdynamic-no-pic is on.  Also move case for -fpic from rs6000.c.
15995         * doc/invoke.texi (-mdynamic-no-pic): Document.
15996
15997 2003-03-10  Devang Patel  <dpatel@apple.com>
15998
15999         PR c++/9394
16000         * gcc.c (DEFAULT_SWITCH_TAKES_ARG): Remove.
16001         (DEFAULT_WORD_SWITCH_TAKES_ARG): Remove.
16002         * gcc.h (DEFAULT_SWITCH_TAKES_ARG): Add.
16003         (DEFAULT_WORD_SWITCH_TAKES_ARG): Add.
16004         * cppspec.c (DEFAULT_SWITCH_TAKES_ARG): Remove.
16005         (DEFAULT_WORD_SWITCH_TAKES_ARG): Remove.
16006
16007 2003-03-10  Steven Bosscher  <s.bosscher@student.tudelft.nl>
16008
16009         PR optimization/7189
16010         * toplev.c (rest_of_compilation):  Move
16011         check_function_return_warnings up to just after
16012         delete_unreachable_blocks.
16013
16014 2003-03-10  Stephane Carrez  <stcarrez@nerim.fr>
16015
16016         * config/m68hc11/m68hc11.h (HARD_REGNO_RENAME_OK): Define.
16017         * config/m68hc11/m68hc11-protos.h (m68hc11_hard_regno_rename_ok):
16018         Declare.
16019         * config/m68hc11/m68hc11.c (m68hc11_hard_regno_rename_ok): New function
16020         for reg rename optimization to avoid using Z and Y registers.
16021
16022 2003-03-10  Stephane Carrez  <stcarrez@nerim.fr>
16023
16024         * config/m68hc11/m68hc11.md ("*addhi3_68hc12"): Accept any constant
16025         when adding to X and Y since leax/leay are fast.
16026         ("*addhi3"): Accept 'I' constraint when adding to address register.
16027         ("rotlhi3"): Operand 1 must be a register_operand.
16028         (peephole2): New peephole to optimize some adds.
16029         * config/m68hc11/m68hc11.h (CONST_OK_FOR_LETTER_P): Use 'I' constraint
16030         to represent -2 .. 2 small integer range.
16031
16032 2003-03-10  Stephane Carrez  <stcarrez@nerim.fr>
16033
16034         * config/m68hc11/m68hc11.c (m68hc11_gen_rotate): Set carry before
16035         each 16-bit rotation.
16036
16037 2003-03-10  Zack Weinberg  <zack@codesourcery.com>
16038
16039         * c-opts.c (add_prefixed_path): Don't use concat.  When
16040         prefixing with cpp_GCC_INCLUDE_DIR, copy only the first
16041         cpp_GCC_INCLUDE_DIR_len characters.
16042
16043 2003-03-10  Segher Boessenkool  <segher@koffie.nl>
16044
16045         * testsuite/gcc.dg/altivec-9.c: New file.
16046
16047         * config/rs6000/rs6000.c (altivec_frame_fixup): Remove.
16048         (rs6000_emit_prologue): Use rs6000_frame_related instead.
16049
16050 2003-03-10  Aldy Hernandez  <aldyh@redhat.com>
16051
16052         * config/rs6000/spe.h: Define __ev64_*64__ to use single element
16053         vectors.
16054         (__ev_convert_u64): Remove macro.  Define as inline.
16055         (__ev_convert_s64): Same.
16056
16057 2003-03-10  Aldy Hernandez  <aldyh@redhat.com>
16058
16059         * config/rs6000/rs6000.h (DWARF_FRAME_REGISTERS): Define.
16060         (rs6000_stack_t): Add spe_64bit_regs_used.
16061
16062         * config/rs6000/rs6000.c (rs6000_stack_info): Calculate
16063         spe_64bit_regs_used, and use it to determine the size of the
16064         frame.
16065         (spe_func_has_64bit_regs_p): New.
16066         (spe_synthesize_frame_save): New.
16067         (rs6000_frame_related): Handle SPE synthetic registers.
16068         (rs6000_emit_prologue): Only save in 64-bits if the function used
16069         any registers in 64-bit mode.
16070         (rs6000_emit_epilogue): Same, but for restore.
16071
16072 2003-03-10  Richard Earnshaw  <rearnsha@arm.com>
16073
16074         * arm.h (enum floating_point_type): Delete.  Replace with...
16075         (enum fputype): ... new.
16076         (FPUTYPE_DEFAULT): Renamed from FP_DEFAULT.  Values reworked.
16077         * linux-elf.h (FPUTYPE_DEFAULT): Likewise.
16078         * arm.md (attr fpu): Reworked for new underlying enum values.
16079         * arm.c (arm_fpu_arch): Now enum fputype.
16080         (arm_fpu_tune): Renamed from arm_fpu.  Now enum fputype.
16081         (arm_override_options, arm_output_epilogue, arm_expand_prologue):
16082         Update uses of arm_fpu_arch and arm_fpu_tune.
16083
16084 2003-03-10  Josef Zlomek  <zlomekj@suse.cz>
16085
16086         * cfgcleanup.c (outgoing_edges_match): Compare the jump tables.
16087         (try_crossjump_to_edge): Replace refereces to one jump table by
16088         references to identical jump table.
16089         * loop.c (load_mems): Moved setting the JUMP_LABEL to replace_label.
16090         (replace_label): Moved to rtlanal.c.
16091         (struct rtx_pair): Moved to rtl.h.
16092         * rtl.h (struct rtx_pair): Moved from loop.c.
16093         (replace_label): New extern function.
16094         (subrtx_p): New extern function.
16095         (tablejump_p): New extern function.
16096         * rtlanal.c (replace_label): Moved from loop.c.
16097         (subrtx_p_1): New static function.
16098         (subrtx_p): New function.
16099         (tablejump_p): New function.
16100
16101 2003-03-10  Jan Hubicka  <jh@suse.cz>
16102
16103         * cfgcleanup.c (try_optimize_cfg): Fix thinko in previous patch.
16104
16105         * cfgcleanup.c (merge_blocks): Return where to iterate next.
16106         (try_optimize_cfg): Use return value of merge_blocks
16107
16108 2003-03-10  Michael Matz  <matz@suse.de>
16109
16110         * cfg.c (unchecked_make_edge): New.
16111         (cached_make_edge): Use it.
16112         * basic-block.h (unchecked_make_edge): Declare.
16113         * cfglayout.c (cfg_layout_duplicate_bb): Use it.
16114
16115 2003-03-10  Richard Earnshaw  <rearnsha@arm.com>
16116
16117         * fpa.md: New file.  Move all patterns relating to FPA co-processor
16118         to here...
16119         * arm.md: ... from here.
16120         (cirrus.md, fpa.md): Include at end of description.
16121         (divsf3, divdf3, modsf3, movdf3, sqrtsf2, sqrtdf2): New expands.
16122         (pic_load_addr_based): Remove register constraint from expander.
16123         (seq, sne, sgt, sle, slt, sge, sgeu, sleu, sgtu, sltu, sunordered)
16124         (sordered, sungt, sunle, sunge, sunlt): Likewise.
16125         (eh_epilogue, tablejump): Likewise.
16126
16127 2003-03-09  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16128
16129         * tree.c (substitute_in_expr, case 'e'): Only make recursive call
16130         on operands if it has a PLACEHOLDER_EXPR.
16131
16132 2003-03-09  David Edelsohn  <edelsohn@gnu.org>
16133             Mostafa Hagog
16134
16135         * config/rs6000/rs6000.md (movsi_update1): Add TARGET_UPDATE final
16136         condition.
16137
16138 2003-03-09  Neil Booth  <neil@daikokuya.co.uk>
16139
16140         * config/frv/frv.h: Use TARGET_CPU_CPP_BUILTINS, not CPP_PREDEFINES.
16141         * config/ip2k/ip2k.h: Similarly.
16142         * config/m32r/m32r.h: Similarly.
16143         * config/m68hc11/m68hc11.h: Similarly.
16144         * config/mn10200/mn10200.h: Similarly.
16145         * config/mn10300/mn10300.h: Similarly.
16146         * config/pdp11/pdp11.h: Similarly.
16147         * config/v850/v850.h: Similarly.
16148         * config/rs6000/vxworks.h: Similarly for TARGET_OS_CPP_BUILTINS.
16149         * config/v850/retms.h: Similarly for TARGET_OS_CPP_BUILTINS.
16150         * config/mips/iris3.h: Remove #if 0 block.
16151
16152 2003-03-09  Roger Sayle  <roger@eyesopen.com>
16153             Joern Rennecke <joern.rennecke@superh.com>
16154
16155         * gcc.c (do_spec_1) ['{']: Revert 2003-02-24 patch.  Don't handle
16156         pending argument upon return from handle_braces here.
16157         (do_spec_2): Instead handle it upon return from do_spec_1 here.
16158
16159 2003-03-09  Roger Sayle  <roger@eyesopen.com>
16160             Joern Rennecke <joern.rennecke@superh.com>
16161
16162         * gcc.c (do_spec_1) ['{']: Revert 2003-02-24 patch.  Don't handle
16163         pending argument upon return from handle_braces here.
16164         (do_spec_2): Instead handle it upon return from do_spec_1 here.
16165
16166 2003-03-09  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
16167
16168         * varasm.c (make_decl_one_only): Use declare_weak().
16169
16170 2003-03-09  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
16171
16172         PR middle-end/9986
16173         * c-common.c (c_common_nodes_and_builtins): Initialize target builtins
16174         after the common builtins.
16175         * pa-hpux.h (DONT_HAVE_FPUTC_UNLOCKED): Define.
16176         * pa.c (TARGET_INIT_BUILTINS): Define.
16177         (pa_init_builtins): New function.
16178
16179         * pa.md (call, call_value, sibcall, sibcall_value): When sufficient
16180         space has been allocated for the outgoing arguments, set the arg
16181         pointer for a call emitted after virtuals have been instantiated
16182         using the stack pointer offset, otherwise abort.
16183
16184 2003-03-09  DJ Delorie  <dj@redhat.com>
16185
16186         * config/stormy16/stormy16.h (DWARF_LINE_MIN_INSTR_LENGTH): Revert.
16187
16188 2003-03-09  Richard Earnshaw  <rearnsha@arm.com>
16189
16190         * arm.md (fix_truncsfsi2, fix_truncdfsi2, arm_fix_truncsfsi2)
16191         (arm_fix_truncdfsi2): Add missing fix in floating point mode before
16192         conversion to integer.
16193         * cirrus.md (cirrus_truncsfsi2, cirrus_truncdfsi2): Likewise.
16194
16195 2003-03-09  Roger Sayle  <roger@eyesopen.com>
16196
16197         * builtins.def: Fix typo and improve grammar.
16198         * loop-unroll.c (decide_peel_completely): Tidy log message.
16199
16200 2003-03-09  Kazu Hirata  <kazu@cs.umass.edu>
16201
16202         * config/h8300/h8300.md (*tstsi_upper_bit): New.
16203         (*iorsi3_e2f): Likewise.
16204
16205 2003-03-08  Kazu Hirata  <kazu@cs.umass.edu>
16206
16207         * config/h8300/h8300.c (h8300_and_costs): Return the number of
16208         assembly instructions needed.
16209         (h8300_shift_costs): Likewise.
16210
16211 2003-03-09  Hans-Peter Nilsson  <hp@bitrange.com>
16212
16213         * config/cris/aout.h (ENDFILE_SPEC): Undef.
16214
16215         * optabs.c (gen_move_insn): Move logic for synthesizing MODE_CC
16216         moves from here ...
16217         * expr.c (emit_move_insn_1): ... to here.
16218
16219         * config/cris/aout.h (CRIS_CPP_SUBTARGET_SPEC): Move -D__AOUT__ to...
16220         (TARGET_OS_CPP_BUILTINS): New macro.
16221         * config/cris/cris.h (CRIS_CPP_SUBTARGET_SPEC): Move -D__ELF__ to...
16222         (TARGET_OS_CPP_BUILTINS): New macro.
16223         (CPP_PREDEFINES): Don't define.  Move old definitions and...
16224         (CPP_SPEC): ...move -D__CRIS_ABI_version=2 to...
16225         (TARGET_CPU_CPP_BUILTINS): New macro.
16226         * config/cris/linux.h (CRIS_CPP_SUBTARGET_SPEC): Move constant
16227         definitions and the optional __PIC__, __pic__ and
16228         __NO_UNDERSCORES__ definitions to...
16229         (TARGET_OS_CPP_BUILTINS): New macro.
16230
16231         * flags.h (flag_leading_underscore): Declare.
16232
16233         * c-opts.c (c_common_post_options): On fopen failure, return
16234         false, not NULL.
16235
16236 2003-03-08  Hans-Peter Nilsson  <hp@bitrange.com>
16237
16238         * config/cris/cris_abi_symbol.c: #include tconfig.h and tm.h, not
16239         config.h.
16240         * config/cris/cris.h (HAVE_GAS_HIDDEN): Don't define here.
16241         * config/cris/aout.h (HAVE_GAS_HIDDEN): Undef.
16242
16243 2003-03-08  Neil Booth  <neil@daikokuya.co.uk>
16244
16245         * config/sh/rtemself.h (TARGET_OS_CPP_BUILTINS): Use instead of
16246         CPP_PREDEFINES.
16247         * config/sh/rtems.h (TARGET_OS_CPP_BUILTINS): Use instead of
16248         CPP_PREDEFINES.
16249
16250 2003-03-08  Neil Booth  <neil@daikokuya.co.uk>
16251
16252         * c-common.h (c_common_init, c_common_post_options): Update.
16253         * c-objc-common.c (c_objc_common_init): Update for new prototype.
16254         * c-opts.c (saved_lineno): New.
16255         (c_common_post_options, c_common_init): Update prototypes,
16256         move call to cpp_read_main_file from latter to former.
16257         * c-tree.h (c_ojbc_common_init): Update.
16258         * langhooks-def.h (lhd_post_options): New.
16259         (LANG_HOOKS_INIT, LANG_HOOKS_POST_OPTIONS): Update.
16260         * langhooks.c (lhd_post_options): New.
16261         * langhooks.h (struct lang_hooks): Update post_options and init hooks.
16262         * toplev.c (no_backend): New.
16263         (process_options): Call post_options hook and set main_input_filename
16264         and input_filename here.
16265         (lang_dependent_init, do_compile): post_options hook moved to
16266         process_options.
16267         * objc/objc-act.c (objc_init): Update prototype.
16268         * objc/objc-act.h (objc_init): Update prototype.
16269
16270 2003-03-08  Roger Sayle  <roger@eyesopen.com>
16271
16272         * emit-rtl.c (gen_lowpart): Don't attempt to load a part of
16273         a complex or vector type, using a load in the original mode.
16274
16275 2003-03-08  Jan Hubicka  <jh@suse.cz>
16276
16277         * Makefile.in (cgraph.o): Depend on gt-cgraph.h and varray.h.
16278         * gt-cgraph.h: New GC file.
16279         * cgraph.c (known_fns): New static variable.
16280         (cgraph_node): Add the decl into varray.
16281
16282 2003-03-08  Hans-Peter Nilsson  <hp@bitrange.com>
16283
16284         * config/mmix/mmix.md ("*movcc_expanded"): Add missing alternatives.
16285
16286 2003-03-08  Richard Earnshaw  <rearnsha@arm.com>
16287
16288         * arm.c (fpa_rhs_operand, fpa_add_operand, const_double_rtx_ok_for_fpa)
16289         (neg_const_double_ok_for_fpa, output_mov_long_double_fpa_from_arm)
16290         (output_mov_long_double_arm_from_fpa, output_mov_double_fpa_from_arm)
16291         (output_mov_double_arm_from_fpa): Renamed to use fpa instead of fpu.
16292         All callers changed.
16293         * arm.md, arm.h, arm-protos.h: Updated.
16294
16295         * arm.h (enum reg_class FPA_REGS): Renamed from FPU_REGS.
16296         (CLASS_MAX_NREGS, REGISTER_MOVE_COST, REG_CLASS_FROM_LETTER): Updated.
16297         * arm.c (arm_regno_class, f_register_operand): Updated.
16298
16299 2003-03-08  Hans-Peter Nilsson  <hp@bitrange.com>
16300
16301         * config/cris/cris.h: Remove EGCS references.
16302         (CPP_SPEC): Remove "-$".
16303         (INIT_CUMULATIVE_ARGS): Adjust parameter name to FNDECL.
16304
16305 2003-03-08  Neil Booth  <neil@daikokuya.co.uk>
16306
16307         * config/stormy16/stormy16.h (TARGET_CPU_CPP_BUILTINS): Use in
16308         preference to CPP_PREDEFINES.
16309
16310 2003-03-08  Neil Booth  <neil@daikokuya.co.uk>
16311
16312         * cppinit.c (cpp_finish_options): Set first_unused_line to -1.
16313
16314 2003-03-08  Kazu Hirata  <kazu@cs.umass.edu>
16315
16316         * config/h8300/h8300.md (*extzv_16_8): New.
16317
16318 2003-03-08  Jan Hubicka  <jh@suse.cz>
16319
16320         * c-decl.c: (finish_function): Update call of tree_inlinable_function_p.
16321         * cgraph.h: (cgraph_local_info): Add can_inline_once
16322         (cgraph_global_info): Add inline_once.
16323         (cgraph_node): Add previous.
16324         (cgraph_remove_node): New.
16325         * cgraphunit.c (cgraph_mark_functions_to_inline_once): New static
16326         function.
16327         (cgraph_optimize): Call it.
16328         (cgraph_finalize_function):  Set inlinable flags.
16329         (cgraph_finalize_compilation_unit):  Actually remove the reclaimed nodes.
16330         (cgraph_mark_functions_to_output):  Use new inlining heuristics flags.
16331         (cgraph_expand_function): Likewise.
16332         * cgraph.c
16333         (cgraph_node): Put nodes into doubly linked chain.
16334         (cgraph_remove_node): New function.
16335         * flags.h (flag_inline_functions_called_once): Declare.
16336         * tree-inline.c: Include cgraph.h
16337         (inlinable_functions_p): Add extra argument to bypass limits.
16338         (expand_call_inline):  Obey cgraph flag.
16339         * tree-inline.h (tree_inlinable_function_p): Update prototype.
16340
16341 2003-03-08  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
16342
16343         * gcse.c (bypass_block, bypass_conditional_jumps): Do not create
16344         irreducible loops.
16345
16346         * loop-unroll.c (unroll_loop_runtime_iterations): Update irreducible
16347         loops info correctly.
16348
16349 2003-03-08  Eric Botcazou  <ebotcazou@libertysurf.fr>
16350
16351         PR middle-end/7796
16352         * unroll.c (calculate_giv_inc): Handle constants being
16353         loaded with LSHIFTRT.
16354
16355 2003-03-07  David Edelsohn  <edelsohn@gnu.org>
16356
16357         * config/rs6000/rs6000.c (processor_target_table): Do not disable
16358         GP optional instructions on Power3, Power4, 620, and 630.
16359
16360 2003-03-07  Kazu Hirata  <kazu@cs.umass.edu>
16361
16362         * calls.c: Fix comment formatting.
16363         * cfgloopanal.c: Likewise.
16364         * cfgloopmanip.c: Likewise.
16365         * combine.c: Likewise.
16366         * dwarf2out.c: Likewise.
16367         * ggc-common.c: Likewise.
16368         * langhooks.c: Likewise.
16369         * loop-unroll.c: Likewise.
16370         * loop.c: Likewise.
16371         * ra-build.c: Likewise.
16372         * sbitmap.c: Likewise.
16373         * toplev.c: Likewise.
16374
16375 2003-03-07  James E Wilson  <wilson@tuliptree.org>
16376
16377         * config/sh/sh.h (HARD_REGNO_NREGS): Round up the XD register count.
16378
16379 2003-03-07  Geoffrey Keating  <geoffk@apple.com>
16380
16381         * objc/lang-specs.h (objective-c-header): Use .gch not .pch;
16382         support -no-integrated-cpp.
16383
16384         * c-pch.c (get_ident): Use c_language_kind and flag_objc rather
16385         than langhooks.name.
16386
16387 2003-03-07  Michael Matz  <matz@suse.de>
16388
16389         * df.h (enum df_ref_flags.DF_REF_STRIPPED): New.
16390         (DF_FOR_REGALLOC): New.
16391         * df.c (df_ref_record): Set DF_REF_STRIPPED.
16392         (read_modify_subreg_p): Simplify.
16393         (df_def_record_1, df_uses_record): Set DF_REF_MODE_CHANGE more often.
16394         Use DF_FOR_REGALLOC.
16395         * ra.h (struct web): New member subreg_stripped.
16396         (invalid_mode_change_regs): Declare.
16397         * ra.c (invalid_mode_change_regs): New.
16398         (init_ra): Initialize it.
16399         * ra-build.c (init_one_web_common, remember_web_was_spilled): Use it.
16400         Use CANNOT_CHANGE_MODE_CLASS as ifdef guard.
16401         (reinit_one_web, parts_to_web_1): Deal with subreg_stripped.
16402         * ra-colorize.c (colorize_one_web): Use invalid_mode_change_regs.
16403         Use CANNOT_CHANGE_MODE_CLASS as ifdef guard.
16404
16405 2003-03-07  Richard Earnshaw  <rearnsha@arm.com>
16406
16407         * arm.md (addsf3, adddf3, subsf3, subdf3, mulsf3, muldf3, negsf2)
16408         (negdf2, abssi2, abssf2, absdf2, floatsisf2, floatsidf2)
16409         (fix_truncsfsi2, fix_truncdfsi2, truncdfsf2): Moved back into main
16410         machine description file from ...
16411         * cirrus.md: ... here.
16412
16413 2003-03-06  Kazu Hirata  <kazu@cs.umass.edu>
16414
16415         * config/h8300/h8300.md (a peephole2): Don't use
16416         reg_overlap_mentioned_p.
16417
16418 2003-03-06  Geoffrey Keating  <geoffk@apple.com>
16419
16420         * c-pch.c: Include langhooks.h.
16421         (IDENT_LENGTH): New.
16422         (get_ident): New.
16423         (pch_ident): Delete.
16424         (pch_init): Use get_ident, IDENT_LENGTH.
16425         (c_common_valid_pch): Likewise.  Also, use actual language
16426         in warning message.
16427         * Makefile.in (c-pch.o): Add langhooks.h to dependencies.
16428
16429         * objc/config-lang.in (gtfiles): Add objc-act.c.  Remove duplicate
16430         c-parse.in.
16431         * objc/Make-lang.in (objc/objc-act.o): Add dependency on
16432         gt-objc-objc-act.h.
16433         (gt-objc-objc-act.h): New rule.
16434         * objc/lang-specs.h: Support PCH.
16435         * objc/objc-act.c: Include gt-objc-objc-act.h.
16436         (objc_add_static_instance): Move num_static_inst out, mark for PCH.
16437         (build_selector_reference_decl): Move idx out, mark for PCH.
16438         (build_class_reference_decl): Likewise.
16439         (build_objc_string_decl): Move *_idx out, mark for PCH.
16440         (build_tmp_function_decl): Move xxx out, mark for PCH.
16441
16442 2003-03-06  Dale Johannesen  <dalej@apple.com>
16443
16444         * config/rs6000/rs6000.c (rs6000_binds_local_p):  Consider
16445         global functions for inlining on Darwin.
16446
16447 2003-03-06  Vladimir Makarov  <vmakarov@redhat.com>
16448
16449         * haifa-sched.c (schedule_block): Don't call reorder when sorting
16450         is prohibited.
16451
16452 2003-03-06  Neil Booth  <neil@daikokuya.co.uk>
16453
16454         * Makefile.in (c-ppoutput.o): Update.
16455         * c-common.h (init_pp_output): New.
16456         (preprocess_file): Update.
16457         * c-lex.c (init_c_lex): Move mbchar initialization to cpplib.
16458         Register builtins.
16459         * c-opts.c (c_common_init): Call init_pp_output if preprocessing.
16460         Make call to cpp_read_main_file common to whether preprocessing
16461         or not.  Don't register builtins.
16462         * c-ppoutput.c: Include c-pragma.h.
16463         (setup_callbacks): Rename init_pp_output.
16464         (preprocess_file): No longer setup callbacks or call
16465         cpp_read_main_file.
16466         * cpphash.h (_cpp_init_mbchar): New.
16467         * cppinit.c (init_library): Call _cpp_init_mbchar.
16468         * cpplex.c (_cpp_init_mbchar): New.
16469
16470 2003-03-06  Roger Sayle  <roger@eyesopen.com>
16471
16472         * emit-rtl.c (gen_lowpart): When requesting the low-part of a
16473         MEM, try loading the MEM into a register and taking the low-part
16474         of that, to help CSE see the use of the MEM in its true mode.
16475
16476 2003-03-05  Tom Tromey  <tromey@redhat.com>
16477
16478         * config/stormy16/stormy16.h (DWARF_LINE_MIN_INSTR_LENGTH):
16479         Define.
16480
16481 2003-03-05  Nick Clifton  <nickc@cambridge.redhat.com>
16482
16483         * config/stormy16/stormy16.md ("*eqbranchsi"): Remove '+' on
16484         operand 2.
16485         ("*ineqbranchsi"): Likewise.
16486
16487 2003-03-05  Andrew Haley  <aph@cambridge.redhat.com>
16488
16489         * config/stormy16/stormy16.c (xstormy16_expand_prologue): Delete
16490         mem_fake_push_rtx.  Instead construct a SEQUENCE to show the
16491         register store followed by a stack increment.
16492
16493 2003-03-05  Chris Moller  <cmoller@redhat.com>
16494
16495         * config/stormy16/stormy16.c (REG_NEEDS_SAVE): added a term
16496         to inhibit saving CARRY_REGS.
16497
16498         * config/stormy16/stormy16.c (xs_hi_general_operand):
16499         added predicate to detect and error-out on out-of-range
16500         const_ints for movhi.
16501         * config/stormy16/stormy16.md (movhi): use
16502         xs_hi_general_operand.
16503
16504         * config/stormy16/stormy16.c (xstormy16_expand_prologue):
16505         added a check for local vbl size overflow.
16506         * config/stormy16/stormy16.c (xs_hi_nonmemory_operand):
16507         added predicate to detect and error-out on out-of-range
16508         const_ints for addhi and subhi.
16509         * config/stormy16/stormy16.md (addhi3, addchi4, addchi5,
16510         subhi3, subchi4, subchi5): used xs_hi_nonmemory_operand.
16511
16512         * config/stormy16/stormy16.c (xstormy16_legitimate_address_p):
16513         add a term to accept PRE_MODIFY addresses.
16514         * config/stormy16/stormy16.c (xstormy16_expand_move):
16515         add code to expand PRE_MODIFY addresses to an add followed
16516         by a move.
16517
16518 2003-03-06  Jason Merrill  <jason@redhat.com>
16519
16520         * tree-inline.c (inlinable_function_p): Revert earlier change
16521         pending investigation.
16522
16523 2003-03-06  Kazu Hirata  <kazu@cs.umass.edu>
16524
16525         * config/h8300/h8300.md (a new peephole2): New.
16526
16527 2003-03-06  Jan Hubicka  <jh@suse.cz>
16528
16529         * cgraph.c (cgraph_node): Do not confuse nested functions and methods.
16530
16531 2003-03-06  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
16532
16533         * dwarf2out.c (size_of_die): Compute size of external reference to
16534         die correctly.
16535
16536 2003-03-06  Hans-Peter Nilsson  <hp@bitrange.com>
16537
16538         * config/mmix/mmix.md ("*movcc_expanded"): New pattern.
16539         ("movcc", "movcc_uns", "movcc_fp", "movcc_fpeq", "movcc_fun"): New
16540         expanders.
16541
16542 2003-03-05  Roger Sayle  <roger@eyesopen.com>
16543
16544         * expr.h (lang_expand_expr): Delete obsolete prototype.
16545
16546 2003-03-05  Kazu Hirata  <kazu@cs.umass.edu>
16547
16548         * emit-rtl.c (gen_highpart_mode): Fix a comment typo.
16549
16550 2003-03-05  Kazu Hirata  <kazu@cs.umass.edu>
16551
16552         * config/h8300/h8300.md (a peephole2): Generalize to
16553         accept a memory operand.
16554
16555 2003-03-05  Olivier Hainque <hainque@act-europe.fr>
16556
16557         * config/alpha/alpha.h (PRINT_OPERAND_PUNCT_VALID_P): Add '+'.
16558         * config/alpha/alpha.c (print_operand, case '+'): New.
16559         * config/alpha/alpha.md (call_osf_1_noreturn): Document and use.
16560         (call_value_osf_1_noreturn): Likewise.
16561
16562 2003-03-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16563
16564         * stmt.c (fixup_gotos): Change meaning of DONT_JUMP_IN.
16565         (expand_end_bindings): Likewise.
16566
16567 2003-03-05  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
16568
16569         * pa.md (return_external_pic): Add !TARGET_PA_20 to constraint.
16570         (epilogue): Don't generate return_external_pic when emitting PA 2.0
16571         code.
16572
16573 2003-03-05  Aldy Hernandez  <aldyh@redhat.com>
16574
16575         * doc/tm.texi: Document TARGET_DWARF_REGISTER_SPAN.
16576
16577         * config/rs6000/rs6000.c (rs6000_dwarf_register_span): New.
16578
16579         * hooks.c (hook_rtx_rtx_null): New.
16580
16581         * hooks.h (hook_rtx_rtx_null): Protoize.
16582
16583         * target-def.h (TARGET_DWARF_REGISTER_SPAN): New macro.
16584         (TARGET_INITIALIZER): Add TARGET_DWARF_REGISTER_SPAN.
16585
16586         * target.h (struct gcc_target): Add dwarf_register_span.
16587
16588         * dwarf2out.c (multiple_reg_loc_descriptor): New.
16589         (one_reg_loc_descriptor): New.
16590         (reg_loc_descriptor): Add support for values that span more than
16591         one register.
16592
16593 2003-03-05  Jan Hubicka  <jh@suse.cz>
16594
16595         * Makefile.in (calls.o, toplev.o alias.o): Depend on cgraph.h
16596         * alias.c:  Include cgraph.h
16597         (mark_constant_function): Use cgraph_rtl_info.
16598         * calls.c:  Include cgraph.h
16599         (flags_from_decl_or_type): Use cgraph_rtl_info to find pure and const
16600         calls.
16601         (expand_call): Use cgraph_rtl_info to set preferred stack boundary.
16602         * cgraph.c (cgraph_rtl_info): New function.
16603         * cgraph.h (cgraph_rtl_info): Declare
16604         (cgraph_rtl_info): Likewise.
16605         * function.h (struct function): Add recursive_call_emit.
16606         * toplev.c: Include cgraph.h.
16607         (rest_of_compilation): Set preferred_incoming_stack_boundary.
16608
16609 2003-03-05  Kazu Hirata  <kazu@cs.umass.edu>
16610
16611         * config/h8300/h8300.c (output_simode_bld): Clear the
16612         destination first if possible.
16613         * config/h8300/h8300.md (extzv_1_r_h8300hs): Add an
16614         alternative.
16615         (extzv_1_r_inv_h8300hs): Likewise.
16616
16617 2003-03-05  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
16618
16619         * basic-block.h (EDGE_IRREDUCIBLE_LOOP, EDGE_ALL_FLAGS): New.
16620         * cfg.c (dump_edge_info): Add EDGE_IRREDUCIBLE_LOOP flag dump.
16621         * cfgloop.c (flow_loop_free): Made global.
16622         (establish_preds): New static function.
16623         (flow_loop_tree_node_add): Handle subloops of added loop correctly.
16624         (get_loop_exit_edges): New.
16625         (verify_loop_structure): Verify EDGE_IRREDUCIBLE_LOOP flags.
16626         * cfgloop.h (flow_loop_free, get_loop_exit_edges, unloop): Declare.
16627         * cfgloopanal.c (mark_irreducible_loops): Mark edges in irreducible
16628         loops.
16629         * cfgloopmanip.c (loop_delete_branch_edge): Allow to test for
16630         removability of an edge.
16631         (fix_irreducible_loops): New static function.
16632         (find_path, remove_path): Add ability to remove enclosing loops.
16633         (unloop): New.
16634         (copy_bbs, duplicate_loop_to_header_edge): Use EDGE_IRREDUCIBLE_LOOP
16635         flags.
16636         * cfgrtl.c (verify_flow_info): Handle EDGE_IRREDUCIBLE_LOOP flag.
16637         * loop-unroll.c (peel_loops_completely): Do not duplicate loop if
16638         not neccessary.
16639         (decide_peel_completely, peel_loops_completely): Allow complete peeling
16640         of non-duplicable once rolling loops.
16641         * loop-unswitch.c (unswitch_loop): Update EDGE_IRREDUCIBLE_LOOP flags.
16642
16643 2003-03-05  J"orn Rennecke <joern.rennecke@superh.com>
16644
16645         * sh.h (OVERRIDE_OPTIONS): For TARGET_SHMEDIA, the minimum value
16646         for align_jumps is 4.
16647
16648         (SECONDARY_INPUT_RELOAD_CLASS): If reloading a PLUS into FPUL,
16649         use GENERAL_REGS.
16650
16651 2003-03-05  Stephane Carrez  <stcarrez@nerim.fr>
16652
16653         * config/m68hc11/m68hc11.h (PAD_VARARGS_DOWN): Define and return
16654         according to va_arg type.
16655         (EXPAND_BUILTIN_VA_ARG): Remove.
16656         * config/m68hc11/m68hc11.c (m68hc11_va_arg): Remove.
16657         * config/m68hc11/m68hc11-protos.h (m68hc11_va_arg): Remove.
16658
16659 2003-03-05  David Edelsohn  <edelsohn@gnu.org>
16660
16661         * config/rs6000/rs6000.c (rs6000_variable_issue): Remove unnecessary
16662         else clauses.
16663
16664 2003-03-05  Michael Matz  <matz@suse.de>
16665
16666         * i386/i386.c (ix86_save_reg): Also test
16667         current_function_uses_const_pool.
16668
16669 2003-03-05  Michael Matz  <matz@suse.de>
16670
16671         * unwind.h: Add the GPL exception.
16672         * Makefile.in (USER_H): Add unwind.h.
16673
16674 2003-03-05  Eric Botcazou  <ebotcazou@libertysurf.fr>
16675
16676         PR c/9799
16677         * c-typeck.c (push_init_level): Add sanity check.
16678
16679 2003-03-05  Jan Hubicka  <jh@suse.cz>
16680
16681         * toplev.c (rest_of_compilation):  Deffer RTL compilation only when
16682         RTL inlining is done.
16683
16684         * cgraphunit.c (cgraph_mark_local_functions): New local function.
16685         (cgraph_optimize): Mark local functions.
16686         * i386-protos.h (init_cumulative_args): Update prototype.
16687         * i386.c (init_cumulative_args): Use register passing convention for
16688         local functions.
16689
16690         * cgraph.c (cgraph_global_info_ready): New global variable
16691         (cgraph_local_info, cgraph_global_info): New functions.
16692         * cgraph.h (struct cgraph_local_info, cgraph_global_info): New
16693         structures.
16694         (cgraph_local_info, cgraph_global_info, cgraph_global_info_ready):
16695         Declare.
16696         * cgraphunit.c (cgraph_finalize_function): Set inline_many.
16697         (cgraph_mark_functions_to_output): Use inline_many.
16698         (cgraph_expand_function): Free DECL_SAVED_TREE uncondtionally.
16699         (cgraph_expand_functions): Expand inline functions last.
16700         (cgraph_optimize): Do not emit uneeded functions.
16701
16702 2003-03-04  Steve Ellcey  <sje@cup.hp.com>
16703
16704         * expr.c (convert_modes): Check for legal hard register.
16705
16706 2003-03-04  Tom Tromey  <tromey@redhat.com>
16707
16708         * doc/sourcebuild.texi (Front End Directory): Document tags.
16709         * configure: Rebuilt.
16710         * configure.in (target_list): Added tags.
16711         * Makefile.in (TAGS): Depend on lang.clean.  Include subdirectory
16712         TAGS files by reference.
16713         * objc/Make-lang.in (objc.tags): New target.
16714
16715 2003-03-04  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
16716
16717         * gcov-io.h (gcov_save_position, gcov_reserve_length, gcov_resync,
16718         gcov_skip, gcov_skip_string, gcov_write_unsigned, gcov_write_counter,
16719         gcov_write_string, gcov_read_unsigned, gcov_read_counter,
16720         gcov_read_string, gcov_write_length): Modified to enable reading/
16721         writing of whole .da file just once.
16722         (da_file_open, da_file_close, da_file_eof, da_file_error,
16723         da_file_position, da_file_seek, da_file_write, da_file_read): New
16724         functions.
16725         (actual_da_file, actual_da_file_position, actual_da_file_length,
16726         actual_da_file_buffer, actual_da_file_buffer_size): New static
16727         functions.
16728         * libgcov.c (gcov_exit): Modified to read/write the whole .da file at
16729         just once.
16730
16731
16732 2003-03-04  Andreas Schwab  <schwab@suse.de>
16733
16734         * config/m68k/m68k.c (m68k_output_function_prologue): Fix CFA
16735         offset without frame pointer.
16736
16737 2003-03-04  Steve Ellcey  <sje@cup.hp.com>
16738
16739         * expr.c (expand_expr): Call promote_mode to set unsignedp.
16740
16741 2003-03-04  Daniel Jacobowitz  <drow@mvista.com>
16742
16743         * configure.in: Don't always define TARGET_SYSTEM_ROOT.
16744         * configure: Regenerated.
16745         * gcc.c: Check whether TARGET_SYSTEM_ROOT is defined.
16746
16747 2003-03-04  Andreas Jaeger  <aj@suse.de>
16748
16749         * configure.in: Check for <memcheck.h>.
16750         * configure: Regenerated.
16751
16752         * config.in: Define HAVE_MEMCHECK_H.
16753
16754         * ggc-common.c: Use <memcheck.h> if available instead of
16755         <valgrind.h>.
16756         * ggc-page.c: Likewise.
16757         * cppfiles.c: Likewise.
16758
16759 2003-03-04  Kazu Hirata  <kazu@cs.umass.edu>
16760
16761         * config/h8300/h8300.md (*extzv_8_8): Fix cc and lengths.
16762
16763 2003-03-04  Eric Botcazou  <ebotcazou@libertysurf.fr>
16764
16765         PR c/9262
16766         * c-typeck.c (do_case): Attach the first case label to the SWITCH_BODY.
16767         (c_finish_case): Rechain the next statements to the SWITCH_STMT.
16768
16769 2003-03-04  Jan Hubicka  <jh@suse.cz>
16770
16771         * doc/invoke.texi:  Document that unit-at-a-time is enabled for -O3
16772         * toplev.c (parse_options_and_default_flags): Enable flag_unit_at_a_time
16773         for -O3.
16774
16775 2003-03-04  Nathanael Nerode  <neroden@gcc.gnu.org>
16776
16777         * configure.in: Delete three unused variables.  Move a variable
16778         definition closer to its use.  Simplify use_collect2 logic.  Start to
16779         organize.  Simplify tests for in-tree gas and ld.
16780         * configure: Regenerate.
16781
16782 2003-03-04  Neil Booth  <neil@daikokuya.co.uk>
16783
16784         * Makefile.in: Update.
16785         * c-common.c (flag_no_line_commands, flag_no_output,
16786         flag_dump_macros, flag_dump_includes): New.
16787         * c-common.h (flag_no_line_commands, flag_no_output,
16788         flag_dump_macros, flag_dump_includes, preprocess_file): New.
16789         (init_c_lex): Update prototype.
16790         * c-lex.c (init_c_lex): Update prototype; move some code to
16791         c_common_init.
16792         * c-opts.c (preprocess_file): Subsume into c_common_init.
16793         (c_common_decode_option): Update flags.
16794         (c_common_init): Move code from preprocess_file and init_c_lex.
16795         (sanitize_cpp_opts): Update.
16796         * c-ppoutput.c: New, cppmain.c almost verbatim.
16797         * cpphash.h (struct printer): Remove.
16798         (struct cpp_reader): Remove print.
16799         * cpplib.h (dump_none, dump_only, dump_names, dump_definitions,
16800         cpp_preprocess_file): Remove.
16801         (struct cpp_options): Remove no_output, no_line_commands, dump_macros
16802         and dump_includes.
16803         * cppmain.c: Remove.
16804         * doc/passes.texi: Update.
16805
16806 2003-03-04  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
16807
16808         * function.c (STACK_ALIGNMENT_NEEDED): New macro.  Default to 1.
16809         (assign_stack_local_1): Perform overall stack alignment only when
16810         STACK_ALIGNMENT_NEEDED is nonzero.
16811         * doc/tm.texi (STACK_ALIGNMENT_NEEDED): Document.
16812
16813         * pa.c (compute_frame_size): Rename fsize to size.  Account for
16814         alignment to a word boundary before general register save block.  Only
16815         account for double-word alignment before floating point register save
16816         block if one or more are saved.  Don't allocate space for %r3 when
16817         frame pointer is needed.
16818         (hppa_expand_prologue): Include alignment to word boundary in local
16819         frame size.
16820         * pa.h (STARTING_FRAME_OFFSET): Define to 8 on both 32 and 64-bit ports.
16821         (STACK_ALIGNMENT_NEEDED): Define.
16822
16823 2003-03-04  Kevin Buettner  <kevinb@redhat.com>
16824
16825         * dwarf2out.c (rtl_for_decl_location): Don't return NULL_RTX for
16826         global register variables.
16827
16828 2003-03-04  Alexandre Oliva  <aoliva@redhat.com>
16829
16830         * reload.c (reload_adjust_reg_for_mode): New function.
16831         (subst_reloads): Call it.
16832         (operands_match_p): Adjust registers using HARD_REGNO_NREGS.
16833         * reload.h (reload_adjust_reg_for_mode): Declare.
16834         * reload1.c (emit_input_reload_insns, emit_output_reload_insns):
16835         Call it.
16836
16837 2003-03-03  James E Wilson  <wilson@tuliptree.org>
16838
16839         * optabs.c (add_equal_note): Delete SUBREG_REG use.
16840         Fixes PR c/7872.
16841
16842 2003-03-03  Kazu Hirata  <kazu@cs.umass.edu>
16843
16844         * config/h8300/h8300.md (*ixorsi3_ashift_16): New.
16845         (*ixorsi3_lshiftrt_16): New.
16846         (*iorsi3_ashift_16): Remove.
16847
16848 2003-03-03  Kazu Hirata  <kazu@cs.umass.edu>
16849
16850         * config/h8300/h8300.md (*extzv_8_8): Use '?' to simplify the
16851         pattern.
16852
16853 2003-03-03  Geoffrey Keating  <geoffk@apple.com>
16854
16855         * doc/install.texi (Specific): Update entry for powerpc-darwin.
16856
16857 2003-03-03  Richard Henderson  <rth@redhat.com>
16858
16859         * config/ia64/ia64.h (HAVE_AS_LTOFFX_LDXMOV_RELOCS): Default to 0.
16860
16861 2003-03-03  David Edelsohn  <edelsohn@gnu.org>
16862
16863         * config/rs6000/rs6000.c (rs6000_multipass_dfa_lookahead): Delete.
16864         (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD): Delete.
16865         (rs6000_variable_issue): Do not return negative value.
16866         (rs6000_issue_rate): Uniformly set issue rate to 1 for first
16867         scheduling pass.
16868
16869 2003-03-03  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
16870
16871         * dwarf2out.c (dwarf2out_finish): Swap order of break_out_includes and
16872         prune_unused_types calls.
16873
16874 2003-03-03  Jason Merrill  <jason@redhat.com>
16875
16876         * tree-inline.c (find_builtin_longjmp_call): Save and restore
16877         lineno and input_filename.
16878         (find_alloca_call): Likewise.
16879         (inlinable_function_p): Run the langhook earlier.
16880
16881         * calls.c (compute_argument_addresses): Give the new MEMs a
16882         minimum alignment of PARM_BOUNDARY.
16883
16884 2003-03-03  J"orn Rennecke <joern.rennecke@superh.com>
16885
16886         * config/sh/sh.h (EXTRA_SPECS): Add subtarget_asm_relax_spec and
16887         subtarget_asm_isa_spec.
16888         (SUBTARGET_ASM_RELAX_SPEC, SUBTARGET_ASM_ISA_SPEC): Define.
16889         (ASM_SPEC): Define as SH_ASM_SPEC.
16890         (SH_ASM_SPEC): New; take the role of ASM_SPEC, but safe from svr4.h.
16891         Use subtarget_asm_relax_spec and subtarget_asm_isa_spec.
16892         * config/sh/elf.h (ASM_SPEC): Use SH_ASM_SPEC.
16893         (SUBTARGET_ASM_ISA_SPEC): Undef / define.
16894
16895         * sh.h (OVERRIDE_OPTIONS): Set default values for align_loops
16896         and align_jumps if not set.
16897         Force align_jumps to be at least 2.
16898         When relaxing, force align_functions to be at least the maximum of
16899         align_loops, align_jumps and 4.
16900         * sh.c (find_barrier, barrier_align): Honour align_jumps_log.
16901         (sh_loop_align): Honour align_loops_log.
16902
16903         * sh.md (length attribute): Use prev_nonnote_insn instead of PREV_INSN
16904         to check for indirect_jump_scratch.
16905         (indirect_jump_scratch): Add second set.
16906         * sh.c (output_far_jump): Use prev_nonnote_insn instead of PREV_INSN
16907         when looking for indirect_jump_scratch.
16908         Extract scratch register taking new structure of indirect_jump_scratch
16909         into account.
16910         (gen_block_redirect): Set INSN_SCOPE for indirect_jump_scratch.
16911
16912 2003-03-03  Jan Hubicka  <jh@suse.cz>
16913
16914         * calls.c (rtx_for_function_call): Take the address as an argument
16915         (expand_call): Do not modify the expression.
16916
16917         * toplev.c (rest_of_compilation):  Avoid cfg_cleanup calls when not
16918         optimizing.
16919
16920 2003-03-03  Kazu Hirata  <kazu@cs.umass.edu>
16921
16922         * config/h8300/h8300.md (*ixorsi3_zext_hi): Restrict to
16923         TARGET_H8300H and TARGET_H8300S.
16924
16925 2003-03-03  Kazu Hirata  <kazu@cs.umass.edu>
16926
16927         * config/h8300/h8300.md (a peephole2): New.
16928
16929 2003-03-03  Kazu Hirata  <kazu@cs.umass.edu>
16930
16931         * config/h8300/h8300.md (*extzv_8_8): Use shorter code when
16932         operands[0] and operands[1] are different.
16933
16934 2003-03-03  Kazu Hirata  <kazu@cs.umass.edu>
16935
16936         * reload1.c (reload_cse_move2add): Remove variable success.
16937
16938 2003-03-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16939
16940         * ggc-common.c (ggc_rlimit_bound): Cast RLIM_INFINITY to avoid
16941         warnings.
16942
16943 2003-03-02  Richard Henderson  <rth@redhat.com>
16944
16945         * configure.in (HAVE_AS_LTOFFX_LDXMOV_RELOCS): New ia64 test.
16946         * config.in, configure: Rebuild.
16947         * config/ia64/ia64.c (ia64_ld_address_bypass_p): Accept lo_sum.
16948         * config/ia64/ia64.md (load_symptr): Use high/lo_sum for the
16949         paired ldtoffx and ldxmov annotations.
16950         (load_symptr_internal1): Remove.
16951         (load_symptr_high, load_symptr_low): New.
16952
16953 2003-03-02  Neil Booth  <neil@daikokuya.co.uk>
16954
16955         * c-incpath.c (add_path): Fix sysp assignment.
16956
16957 2003-03-02  Kurt Garloff  <garloff@suse.de>
16958
16959         * params.def: Introduce parameter max-inline-insns-rtl for
16960         a separate limit for the RTL inliner.
16961         * params.h: Likewise.
16962         * integrate.c (function_cannot_inline_p): Use it.
16963         * toplev.c (decode_f_option): Set multiple parameters
16964         controlling inlining with -finline-limit.
16965         * params.def: Fix orthographic and typographic errors.
16966         * doc/invoke.texi: Document parameters controlling inlining
16967         and the way -finline-limit sets multiple of them.
16968
16969         * tree.h (struct tree_decl): Introduce inlined_function_flag,
16970         recording whether the function became eligible for inlining
16971         by a compiler flag rather than the declaration.
16972         Provide DID_INLINE_FUNC macro to access it.
16973         * c-decl.c (grokdeclarator): Set DID_INLINE_FUNC.
16974         * cp/decl.c (grokfndecl): Likewise.
16975         * toplev.c (rest_of_compilation): Likewise.
16976         * cp/optimize (maybe_clone_body): Copy DID_INLINE_FUNC.
16977         * print-tree.c (print_node): Report it.
16978         * params.def: Introduce new max-inline-insns-auto limit.
16979         * params.h: Likewise.
16980         * tree-inline.c (inlinable_function_p): Apply it to functions
16981         with DID_INLINE_FUNC set.
16982         * toplev.c (decode_f_option): Initialize it from -finline-limit
16983         value.
16984         * doc/invoke.texi: Document new parameter.
16985
16986 2003-03-02  Geoffrey Keating  <geoffk@apple.com>
16987
16988         * fix-header.c (read_scan_file): Don't reference simplify_path.
16989
16990 2003-03-02  Stephane Carrez  <stcarrez@nerim.fr>
16991
16992         * config/m68hc11/m68hc11.c (m68hc11_override_options): Don't enable
16993         min/max instructions by default as may result in reload errors.
16994
16995 2003-03-02  Stephane Carrez  <stcarrez@nerim.fr>
16996
16997         * config/m68hc11/m68hc11.md ("mulqi3"): Allow address register to
16998         avoid reload problems; define split for it.
16999
17000 2003-03-02  Stephane Carrez  <stcarrez@nerim.fr>
17001
17002         * config/m68hc11/m68hc11.c (m68hc11_shift_operator): New function.
17003         * config/m68hc11/m68hc11-protos.h (m68hc11_shift_operator): Declare.
17004         * config/m68hc11/m68hc11.h (PREDICATE_CODES): Register.
17005         * config/m68hc11/m68hc11.md ("rotrhi3", "rotlhi3"): New patterns for
17006         rotatert and rotate.
17007         ("rotrhi3_const", "rotlhi3_const"): Rename of old 'rotrhi3' insns.
17008         ("*rotrhi3", "*rotlhi3"): New insn pattern for non-const rotatert.
17009         ("*rotrhi3_addr"): New split for shift insns on address register.
17010         ("*lshrhi3", "*ashrhi3", "*ashlhi3_2"): Use new split.
17011         * config/m68hc11/larith.asm (___rotlhi3): New asm function.
17012         (___rotrhi3): Likewise.
17013         * config/m68hc11/t-m68hc11-gas (LIB1ASMFUNCS): Build them.
17014
17015 2003-03-02  Neil Booth  <neil@daikokuya.co.uk>
17016
17017         * toplev.c (aux_base_name): Moved from toplev.h.
17018         (filename): Constify.
17019         (lang_dependent_init): Don't duplicate name.
17020         (process_options): Set aux_base_name here, not...
17021         (do_compile): ...here.  Change protoype.
17022         (toplev_main): Move some code from do_compile.
17023         * toplev.h: Remove aux_base_name.
17024
17025 2003-03-02  Kazu Hirata  <kazu@cs.umass.edu>
17026
17027         * config/h8300/h8300-protos.h: Add a prototype for
17028         iorxor_operator.
17029         * config/h8300/h8300.c (print_operand): Handle 'c'.
17030         (iorxor_operator): New.
17031         * config/h8300/h8300.h (PREDICATE_CODES): Add iorxor_operator.
17032         * config/h8300/h8300.md (*iorhi3_zext): Remove.
17033         (*iorsi3_zexthi): Likewise.
17034         (*iorsi3_zextsi): Likewise.
17035         (*xorhi3_zextqi): Likewise.
17036         (*xorsi3_zexthi): Likewise.
17037         (*xorsi3_zextsi): Likewise.
17038         (*ixorhi3_zext): New.
17039         (*ixorsi3_zext_qi): Likewise.
17040         (*ixorsi3_zext_hi): Likewise.
17041
17042 2003-03-02  Neil Booth  <neil@daikokuya.co.uk>
17043
17044         * c-incpath.c (remove_component_p, simplify_path): Move back to
17045         cppfiles.c.
17046         (remove_duplicates): Use cpp_simplify_path.
17047         * c-incpath.h (simplify_path): Remove.
17048         * c-lex.c: Don't include c-incpath.h.
17049         (init_c_lex): Remove simplify_path.
17050         * cppfiles.c (remove_component_p, cpp_simplify_path): Restore.
17051         (find_or_create_entry, validate_pch): Revert.
17052
17053 2003-03-02  Ashif Harji  <asharji@uwaterloo.ca>
17054
17055         * gcc.c (default_compilers): Add -no-integrated-cpp flag to invoke
17056           an external cpp during compilation.
17057         (option_map): Likewise.
17058         * objc/lang-specs.h (default_compilers): Similarly.
17059         * doc/invoke.texi: Document -no-integrated-cpp flag.
17060
17061 2003-03-02  Kazu Hirata  <kazu@cs.umass.edu>
17062
17063         * config/h8300/h8300.md (zero_extendqisi2): Change to an
17064         expander.
17065         (*zero_extendqisi2_h8300): New.
17066         (*zero_extendqisi2_h8300hs): New.
17067         (two splitters): New.
17068
17069 2003-03-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17070
17071         * fp-bit.h (float_to_usi): Fix condition wrapping prototype.
17072
17073 2003-03-01  Kazu Hirata  <kazu@cs.umass.edu>
17074
17075         * config/h8300/h8300.md (a peephole2): Remove dead code.
17076
17077 2003-03-01  Roger Sayle  <roger@eyesopen.com>
17078
17079         PR c++/9367
17080         * builtin-types.def (DEF_FUNCTION_TYPE_VAR_3): New macro.
17081         (BT_FN_INT_CONST_STRING_VALIST_ARG,
17082         BT_FN_INT_STRING_CONST_STRING_VALIST_ARG,
17083         BT_FN_INT_CONST_STRING_CONST_STRING_VALIST_ARG,
17084         BT_FN_INT_STRING_SIZE_CONST_STRING_VALIST_ARG,
17085         BT_FN_INT_STRING_CONST_STRING_VAR,
17086         BT_FN_INT_CONST_STRING_CONST_STRING_VAR,
17087         BT_FN_INT_STRING_SIZE_CONST_STRING_VAR): New built-in types.
17088         * builtin-attrs.def (ATTR_NONNULL_1, ATTR_NONNULL_2,
17089         ATTR_NONNULL_3): Also include the nothrow attribute.
17090         (sprintf, scanf, sscanf, vprintf, vsprintf, snprintf,
17091         vsnprintf, vscanf, vsscanf): Don't define attributes here.
17092         * builtins.def (putchar, puts): Make full C89 built-ins.
17093         (snprintf, sprintf, scanf, sscanf, vprintf, vscanf,
17094         vsscanf, vsnprintf, vsprintf): New built-ins.
17095         * c-common.c (c_common_nodes_and_builtins): Handle new macro
17096         DEF_FUNCTION_TYPE_VAR_3.
17097
17098         * doc/extend.texi: Document these new built-in functions.
17099
17100 2003-03-01  Kazu Hirata  <kazu@cs.umass.edu>
17101
17102         * config/h8300/h8300.md (a peephole2): New.
17103
17104 2003-03-01  Richard Earnshaw  <rearnsha@arm.com>
17105
17106         * predict.c (estimate_bb_frequencies): Correctly set
17107         real_values_initialized after initialization.
17108
17109 2003-03-01  Neil Booth  <neil@daikokuya.co.uk>
17110
17111         * Makefile.in (C_AND_OBJC_OBJS, c-incpath.o, c-lex.o, LIBCPP_OBJS,
17112         cppinit.o, cppdefault.o, fix-header): Update.
17113         * c-incpath.c: New file.
17114         * c-incpath.h: New file.
17115         * c-lex.c: Include c-incpath.h.
17116         (init_c_lex): Register path simplifier.
17117         * c-opts.c: Include cppdefault.h and c-incpath.h.
17118         (TARGET_SYSTEM_ROOT, verbose, iprefix, sysroot, std_inc,
17119         std_cxx_inc, quote_chain_split, add_prefixed_path): New.
17120         (COMMAND_LINE_OPTIONS): Add more options from cpplib.
17121         (missing_arg, c_common_decode_option): Handle them.
17122         (c_common_post_options): Register include chains.
17123         (print_help): Update.
17124         * cppdefault.h (struct default include): Update.
17125         Move some macros to ...
17126         * cppdefault.c: ... here.
17127         (cpp_include_defaults): Add extra field add_sysroot.
17128         * cppfiles.c (include_file, search_from, find_or_create_entry,
17129         cpp_included, find_include_file, remap_filename): Update for
17130         renaming of search_path to cpp_path, and of the chain headers.
17131         (remove_component_p, _cpp_simplify_pathname): Move to c-incpath.c.
17132         * cpphash.h (struct search_path): Move to cpplib.h.
17133         (struct cpp_buffer, struct cpp_reader): Update.
17134         (_cpp_simplify_pathname): Remove.
17135         * cppinit.c: Don't include prefix.h and cppdefault.h.
17136         (INO_T_EQ, INO_T_COPY, path_include, append_include_chain,
17137         remove_dup_dir, remove_dup_nonsys_dirs, remove_dup_dirs,
17138         init_standard_includes, BRACKET, SYSTEM, AFTER, no_dir,
17139         no_pth, cpp_handle_options): Remove.
17140         (struct pending_option): Remove chain members.
17141         (cpp_destroy, cpp_read_main_file, COMMAND_LINE_OPTIONS,
17142         cpp_handle_option): Update.
17143         * cpplib.h (struct cpp_path, cpp_set_include_chains): New.
17144         (struct cpp_options): Remove quote_include, bracket_include,
17145         include_prefix, include_prefix_len, verbose, ignore_srcdir,
17146         no_standard_includes, no_standard_cplusplus_includes.
17147         (struct cpp_callbacks): Add simplify_path.
17148         (cpp_handle_options): Remove.
17149         * fix-header.c: Include c-incpath.h.
17150         (read_scan_file): Update to use c-incpath functionality.
17151         * doc/passes.texi: Update.
17152
17153 2003-03-01  Kazu Hirata  <kazu@cs.umass.edu>
17154
17155         * config/h8300/h8300.c (bit_operand): Accept MEM only if it
17156         satisfies EXTRA_CONSTRAINT 'U'.
17157
17158 2003-03-01  Kazu Hirata  <kazu@cs.umass.edu>
17159
17160         * config/h8300/h8300.md (*tst_extzv_bitqi_1_n): Take a scratch
17161         register.
17162         (*tst_extzv_memqi_1_n): Change to a splitter.
17163         (a peephole2): Update.
17164
17165 2003-03-01  Richard Earnshaw  <rearnsha@arm.com>
17166
17167         * predict.c (estimate_bb_frequencies): Initialize the sreal
17168         constants once per compilation.
17169
17170 2003-02-28  Richard Henderson  <rth@redhat.com>
17171
17172         * toplev.c (flag_eliminate_unused_debug_types): Enable by default.
17173
17174 2003-02-28  scott snyder  <snyder@fnal.gov>
17175
17176         * flags.h: Add flag_eliminate_unused_debug_types.
17177         * toplev.c: Add flag_eliminate_unused_debug_types.
17178         (f_options): Add -feliminate-unused-debug-types.
17179         * dwarf2out.c (struct file_table): Add emitted member.
17180         (splice_child_die): Fix the parent pointer for the child being
17181         spliced.
17182         (lookup_filename): Maintain file_table.emitted array.  Don't
17183         output .file directive here.
17184         (maybe_emit_file): (new)
17185         (init_file_table): Set up file_table.emitted.
17186         (dwarf2out_source_line): Use maybe_emit_file.
17187         (dwarf2out_start_source_file): Use maybe_emit_file.
17188         (dwarf2out_init): Use maybe_emit_file.
17189         (prune_unused_types_walk_attribs): (new)
17190         (prune_unused_types_mark): (new)
17191         (prune_unused_types_walk): (new)
17192         (prune_unused_types_prune): (new)
17193         (prune_unused_types): (new)
17194         (dwarf2out_finish): Call prune_unused_types if
17195         flag_eliminate_unused_debug_types is set.
17196         * doc/invoke.texi (Option Summary): Add
17197         -feliminate-unused-debug-types.
17198         (Debugging Options): Likewise.
17199
17200 2003-02-28  Geoffrey Keating  <geoffk@apple.com>
17201
17202         * doc/invoke.texi: Change .pch to .gch.
17203         * cppfiles.c (open_file_pch): Likewise.
17204         * gcc.c (default_compilers): Likewise.
17205
17206 2003-02-28  Aldy Hernandez  <aldyh@redhat.com>
17207
17208         * floatlib.c: Remove.
17209
17210 2003-02-28  Jason Merrill  <jason@redhat.com>
17211
17212         * stor-layout.c (variable_size): Leave a "minus 1" outside the
17213         SAVE_EXPR.
17214
17215 2003-02-28  David Edelsohn  <edelsohn@gnu.org>
17216
17217         * config/rs6000/power4.md: Add compare bypass.
17218
17219 2003-02-28  Jason Thorpe  <thorpej@wasabisystems.com>
17220
17221         * config/netbsd.h: Update copyright years.
17222         (NETBSD_CPP_SPEC): Define _REENTRANT and _PTHREADS if
17223         -pthread is specified on the command line.
17224
17225 2003-02-28  Dale Johannesen <dalej@apple.com>
17226
17227         * loop.c (struct movable): Add insert_temp, shrink savemode.
17228         (scan_loop): Accept invariants that require copying; mark as
17229         insert_temp.
17230         (combine_movables): Don't combine insert_temp movables.
17231         (move_movables): Insert copies for insert_temp movables.
17232         Don't record the info based on regno for insert_temp's.
17233
17234 2003-02-28  Joel Sherrill <joel@OARcorp.com>
17235
17236         PR 9638/other
17237         * config/i386/i386.c (DEFAULT_PCC_STRUCT_RETURN): Ensure the
17238         this constant defaults to 1.
17239
17240 2003-02-28  Bob Wilson  <bob.wilson@acm.org>
17241
17242         * config.gcc (xtensa-*-linux*): Add t-slibgcc-elf-ver to tmake_file.
17243
17244 2003-02-28  Richard Earnshaw  <rearnsha@arm.com>
17245
17246         * arm.md (mulhisi3, mulhisi3addsi, mulhidi3adddi): Enable for any
17247         ARMv5e processor, not just for XScale.  Instructions are predicable.
17248         (mulhisi3tb, mulhisi3bt, mulhisi3tt): New patterns for ARMv5e.
17249
17250 2003-02-28  Nick Clifton  <nickc@redhat.com>
17251
17252         * config/arm/arm.c (note_invalid_constants): Change parameter type
17253         from bool to int.
17254
17255 2003-02-28  Kazu Hirata  <kazu@cs.umass.edu>
17256
17257         * config/h8300/h8300.md (*tst_extzv_bitqi_1_n): Accept the
17258         test of bit 7.
17259         (*tst_extzv_memqi_1_n): Likewise.
17260         (a peephole2): New.
17261
17262 2003-02-28  Richard Sandiford  <rsandifo@redhat.com>
17263
17264         * config/mips/mips.h (CRT_CALL_STATIC_FUNCTION): Wrap in
17265         #ifndef __mips16.
17266
17267 2003-02-28  Jan Hubicka  <jh@suse.cz>
17268
17269         * combine.c (gen_lowpart_for_combine): Update handling of
17270         subregs_of_mode
17271         * flow.c (life_analysis, mark_used_regs): Likewise.
17272         * regclass.c (subregs_of_mode): Turn into single bitmap.
17273         (cannot_change-mode_set_regs, invalid_mode_change_p): Update
17274         dealing with subregs_of_mode
17275         * regs.h (subregs_of_mode): Update prototype.
17276
17277 2003-02-28  Josef Zlomek  <zlomekj@suse.cz>
17278
17279         * emit-rtl.c (set_reg_attrs_for_parm): New function.
17280         * rtl.h (set_reg_attrs_for_parm): New exported function.
17281         * function.c (assign_parms): Use set_reg_attrs_for_parm instead of
17282         set_reg_attrs_from_mem.
17283
17284 2003-02-27  Roger Sayle  <roger@eyesopen.com>
17285             Zack Weinberg <zack@codesourcery.com>
17286
17287         * gcc.c (do_spec_1):  Treat %U like %u for unique associations.
17288
17289 2003-02-27  Kazu Hirata  <kazu@cs.umass.edu>
17290
17291         * reload1.c (sext_for_mode): Remove.
17292         (reload_cse_move2add): Use trunc_int_for_mode instead of
17293         sext_for_mode.
17294         (move2add_note_store): Likewise.
17295         Reset register information if we see a set in non-integer
17296         mode.
17297
17298 2003-02-27  David Edelsohn  <edelsohn@gnu.org>
17299
17300         * config/rs6000/aix43.h (ASM_SPEC): Only emit -mppc64 if no -mcpu
17301         option.
17302         (ASM_CPU_SPEC): Use -m620 for Power3, Power4, 620, 630.
17303         * config/rs6000/aix51.h: Same.
17304         * config/rs6000/aix52.h: Same.
17305         * config/rs6000/power4.md: Additional VMX bypasses.
17306
17307 2003-02-27   Geert Bosch <bosch@gnat.com>
17308
17309         * toplev.c (print_version): Add indentation for GGC heuristics and
17310         output after printing version information.
17311
17312 2003-02-27  James E Wilson  <wilson@tuliptree.org>
17313
17314         * combine.c (simplify_comparison): Require integral mode when
17315         permuting SUBREG with AND.
17316
17317 2003-02-27  Steve Ellcey  <sje@cup.hp.com>
17318
17319         * config/ia64/hpux.h (STARTFILE_PREFIX_SPEC): Remove.
17320
17321 2003-02-27  Nick Clifton  <nickc@redhat.com>
17322
17323         * config/arm/arm.md (extendsfdf2): Add pattern accidentally
17324         deleted when cirrus instructions were added.
17325
17326 2003-02-27  Jason Thorpe  <thorpej@wasabisystems.com>
17327
17328         * config.gcc (*-*-netbsd[2-9]*, *-*-netbsdelf[2-9]*): Enable
17329         POSIX thread support by default.
17330
17331 2003-02-27  Roger Sayle  <roger@eyesopen.com>
17332
17333         * config/i386/cygwin.h: Don't include any other files directly.
17334         * config/i386/mingw32.h: Don't include cygwin.h directly.
17335         * config.gcc (cygwin, mingw32, uwin): Instead make these files
17336         explicit in the tm_files variable.
17337
17338 2003-02-27  Alan Modra  <amodra@bigpond.net.au>
17339
17340         * config/rs6000/rs6000.md: Add TI constant splitter.
17341
17342 2003-02-26  Alexandre Oliva  <aoliva@redhat.com>
17343
17344         * builtins.c (purge_builtin_constant_p): Handle subreg of
17345         constant_p_rtx too.
17346
17347         * function.c (assign_stack_local_1): Truncate constant added to
17348         frame_pointer_rtx or virtual_stack_vars_rtx for Pmode.
17349
17350 2003-02-26  David Edelsohn  <edelsohn@gnu.org>
17351
17352         * config.gcc: Add power4 to PowerPC with_cpu list.
17353
17354 2003-02-26  Jan Hubicka  <jh@suse.cz>
17355
17356         * objc-act.c: (mark_referenced_methods): Fix compilation problem.
17357
17358 2003-02-26  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
17359
17360         * gcov-dump.c (print_prefix): Fix signedness warning.
17361         * gcov-io.h (struct counter_section, struct counter_section_data): New.
17362         (struct function_info): n_arc_counts field removed, n_counter_sections,
17363         counter_sections fields added.
17364         (struct gcov_info): arc_counts, n_arc_counts fields removed,
17365         n_counter_sections, counter_sections fields added.
17366         * libgcov.c (gcov_exit, __gcov_flush): Add support for multiple
17367         profile sections.
17368         * profile.h (MAX_COUNTER_SECTIONS): New.
17369         (struct section_info): New.
17370         (struct profile_info): count_instrumented_edges,
17371         count_edges_instrumented_now fields removed, n_sections, section_info
17372         fields added.
17373         (find_counters_section): Declare.
17374         * profile.c (struct function_list): count_edges field removed,
17375         n_counter_sections, counter_sections fields added.
17376         (set_purpose, label_for_tag, build_counter_section_fields,
17377         build_counter_section_value, build_counter_section_data_fields,
17378         build_counter_section_data_value, build_function_info_fields,
17379         build_function_info_value, build_gcov_info_fields,
17380         build_gcov_info_value): New static functions.
17381         (find_counters_section): New function.
17382         (instrument_edges, get_exec_counts, compute_branch_probabilities,
17383         branch_prob, create_profiler): Modified to support multiple profile
17384         sections.
17385
17386 2003-02-26  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
17387
17388         * pa.c (compute_frame_size): Don't assume PREFERRED_STACK_BOUNDARY
17389         is 8 * STACK_BOUNDARY.
17390         * pa.h (PREFERRED_STACK_BOUNDARY): Change to 128 on 64-bit port.
17391
17392 2003-02-26  Michael Matz  <matz@suse.de>
17393
17394         * ra-colorize.c (merge_moves): Fix list handling.
17395
17396 2003-02-26  Nick Clifton  <nickc@redhat.com>
17397
17398         * config/arm/arm.c (is_load_address): Rename to...
17399         (arm_memory_load_p) ... this and make it check for SUBREGs and
17400         constant loads that will be converted into loads from the
17401         minipool.
17402         (is_cirrus_insn): Rename to ...
17403         (arm_cirrus_insn_p): ... this, for consistency.  Replace test
17404         of CIRRUS_NO with CIRRUS_NOT.
17405         (cirrus_reorg): Use renamed functions.
17406         (note_invalid_constants): Change from a void function to bool.
17407         Add an extra parameter, saying whether the fixups should be
17408         pushed.  Return true if fixups are needed.
17409         (arm_reorg): Use renamed functions.  Use INSN_P.  Replace test
17410         of CIRRUS_NO with CIRRUS_NOT.
17411         * config/arm/arm.h (FLOAT_WORDS_BIG_ENDIAN): Mention that
17412         other floating point co-processors can also affect this.
17413         * config/arm/arm.md ("type" attribute): Add mav_farith and
17414         mav_dmult.  Replace references to "cirrus_type" attribute with
17415         "type".
17416         * config/arm/cirrus.md ("cirrus_fpu" attribute): Delete.
17417         ("cirrus_type" attribute): Delete - use "type" instead.
17418         ("cirrus" attribute): Replace 'no' with 'not' and 'yes' with
17419         'normal'.
17420
17421 2003-02-25  Jan Hubicka  <jh@suse.cz>
17422
17423         * objc-act.c: Include cgraph.h
17424         (mark_referenced_methods): New function.
17425         (objc_init): Call it.
17426         * objc-lang.c (LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION): Set.
17427
17428         * c-decl.c (finish_function): Honor can_defer_p even in unit-at-a-time
17429         mode.
17430
17431         * optabs.c (expand_fix): Do not widen the input operand.
17432
17433         * expr.c (emit_group_store):  Fix crash when converting single
17434         register into complex register.
17435
17436         * Makefile.in (jump.o, regclass.o, alias.o): Add dependency on timevar.h
17437         * alias.c: Include timevar.h
17438         (init_alias_analysis):  Set timevar
17439         * jump.c: Include timevar.h
17440         (rebuild_jump_labels):  Set timevar
17441         * regcalss.c: Include timevar.h
17442         (reg_scan):  Set timevar
17443         * timevar.def (TV_ALIAS_ANALYSIS, TV_REG_SCAN, TV_REBUILD_JUMP): New
17444
17445 2003-02-26  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
17446
17447         * cse.c (count_reg_usage): Fix handling of REG_EQUAL notes.
17448
17449         * Makefile.in (loop-unroll.o): New.
17450         * cfgloop.h (UAP_PEEL, UAP_UNROLL, UAP_UNROLL_ALL): New.
17451         (unroll_and_peel_loops): Declare.
17452         * alias.c (init_alias_analysis): Flag_unroll_loops renamed to
17453         flag_old_unroll_loops.
17454         * loop.c (loop_invariant_p): Ditto.
17455         * unroll.c (unroll_loop): Flag_unroll_all_loops renamed to
17456         flag_old_unroll_all_loops.
17457         * flags.h (flag_unroll_loops): Renamed to flag_old_unroll_loops.
17458         (flag_unroll_all_loops): Renamed to flag_old_unroll_all_loops.
17459         * params.def (PARAM_MAX_UNROLLED_INSNS): Default value changed.
17460         (PARAM_MAX_AVERAGE_UNROLLED_INSNS, PARAM_MAX_UNROLL_TIMES,
17461         PARAM_MAX_PEELED_INSNS, PARAM_MAX_PEEL_TIMES,
17462         PARAM_MAX_COMPLETELY_PEELED_INSNS, PARAM_MAX_COMPLETELY_PEEL_TIMES,
17463         PARAM_MAX_ONCE_PEELED_INSNS): New.
17464         * toplev.h (flag_old_unroll_loops, flag_old_unroll_all_loops): New.
17465         (flag_unroll_loops, flag_unroll_all_loops): Used for new unroller
17466         instead of old one.
17467         (flag_peel_loops): New.
17468         (lang_independent_options): The new flags added.
17469         (rest_of_compilation): Call new unroller.
17470         (process_options): Setup flags for coexistence of old and new unroller.
17471         * doc/invoke.texi: Document new options.
17472         * doc/passes.texi: Document new unroller pass.
17473
17474 2003-02-26  David Billinghurst <David.Billinghurst@riotinto.com>
17475
17476         * fixinc/fixincl.x: Regenerate
17477
17478 2003-02-26  Josef Zlomek  <zlomekj@suse.cz>
17479
17480         * function.c (assign_parms): Set reg_attrs for parameters passed in
17481         registers.
17482
17483 2003-02-26  Alan Modra  <amodra@bigpond.net.au>
17484
17485         PR target/9681
17486         * tlink.c (scan_linker_output): Drop leading '.' from symbol names.
17487
17488 2003-02-25  David Edelsohn  <edelsohn@gnu.org>
17489
17490         * config/rs6000/xcoff.h (ASM_FILE_START): Do not emit machine
17491         pseudo-op.
17492
17493 2003-02-25  Roger Sayle  <roger@eyesopen.com>
17494
17495         * combine.c (combine_simplify_rtx, simplfy_comparison):  Use CC0_P.
17496         * cse.c (invalidate_skipped_set):  Likewise.
17497         * integrate.c (subst_constants):  Likewise.
17498         * jump.c (reversed_comparison_code_parts):  Likewise.
17499         * loop.c (canonicalize_condition):  Likewise.
17500         * simplify-rtx.c (simplify_relational_operation):  Likewise.
17501
17502 2003-02-25  Roger Sayle  <roger@eyesopen.com>
17503
17504         * builtins.def (DEF_LIB_ALWAYS_BUILTIN, DEF_UNUSED_BUILTIN): Delete.
17505         (abs, labs, fabs, fabsf, fabsl, abort, exit, _exit, _Exit):  Use
17506         the appropriate macro to define built-in function.
17507         (fmod,fmodf,fmodl): New built-in functions.
17508
17509         * doc/extend.texi (fmod,fmodf,fmodl): Document new built-ins.
17510
17511 2003-02-25  Richard Henderson  <rth@redhat.com>
17512
17513         * config/i386/i386.c (function_arg): Pass variable sized
17514         structures correctly on the stack.
17515
17516 2003-02-25  Kazu Hirata  <kazu@cs.umass.edu>
17517
17518         * reload1.c (reload_cse_move2add): Use STRICT_LOW_PART if PLUS
17519         does not reduce the cost of SET.
17520
17521 2003-02-25  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
17522
17523         PR target/9732
17524         * config/rs6000/rs6000.c (first_reg_to_save): Handle
17525         PIC_OFFSET_TABLE_REGNUM for -fPIC too.
17526         (rs6000_emit_prologue): Likewise.
17527         (rs6000_emit_epilogue): Likewise.
17528         * config/rs6000/rs6000.h (CONDITIONAL_REGISTER_USAGE): Make
17529         PIC_OFFSET_TABLE_REGNUM a fixed register for -fPIC.
17530
17531 2003-02-25  Richard Henderson  <rth@redhat.com>
17532
17533         * real.c (real_to_integer2): Force overflow result only for
17534         unsigned overflow.
17535
17536 2003-02-25  Kazu Hirata  <kazu@cs.umass.edu>
17537
17538         * gcse.c (cprop_jump): Revert the 2003-02-23 change.
17539
17540 2003-02-25  Vladimir Makarov  <vmakarov@toke.toronto.redhat.com>
17541             Richard Henderson  <rth@redhat.com>
17542
17543         * sched-ebb.c (add_deps_for_risky_insns): Add the dependence when
17544         there is no similar load.
17545
17546 2003-02-25  Vladimir Makarov  <vmakarov@redhat.com>
17547             Richard Henderson  <rth@redhat.com>
17548
17549         * sched-int.h (INSN_TRAP_CLASS, WORST_CLASS): Move them from
17550         sched-rgn.c.
17551         (add_forward_dependence): New function prototype.
17552
17553         * sched-rgn.c (INSN_TRAP_CLASS, WORST_CLASS): Move them to
17554         sched-init.h.
17555         (CONST_BASED_ADDRESS_P, may_trap_exp, haifa_classify_insn): Move
17556         them to haifa-sched.c.
17557
17558         * haifa-sched.c (CONST_BASED_ADDRESS_P, may_trap_exp,
17559         haifa_classify_insn): Move them from sched-rgn.c.
17560
17561         * sched-deps.c (add_dependence): Return flag of creating a new
17562         entry.
17563         (add_forward_dependence): New function.
17564         (compute_forward_dependences): Use the function.
17565
17566         * sched-ebb.c (earliest_block_with_similiar_load): New function.
17567         (add_deps_for_risky_insns): New function.
17568         (schedule_ebb): Call the function.
17569
17570 2003-02-20  Aldy Hernandez  <aldyh@redhat.com>
17571
17572         * doc/tm.texi: Document Rename TARGET_VECTOR_TYPES_COMPATIBLE to
17573         TARGET_VECTOR_OPAQUE_P.  Document accordingly.
17574
17575         * testsuite/gcc.dg/20030218-1.c: Check that initialization of
17576         opaque types fail.
17577
17578         * c-typeck.c (comptypes): Change call to vector_types_compatible
17579         to vector_opaque_p.
17580         (convert_for_assignment): Call vector_opaque_p instead of
17581         vector_types_compatible.
17582         (really_start_incremental_init): Disallow initialization of opaque
17583         types.
17584
17585         * target-def.h: Remove TARGET_VECTOR_TYPES_COMPATIBLE.
17586         Define TARGET_VECTOR_OPAQUE_P.
17587         (TARGET_INITIALIZER): Same.
17588
17589         * target.h (struct gcc_target): Remove vector_types_compatible.
17590         Add vector_opaque_p.
17591
17592         * config/rs6000/rs6000.c (rs6000_spe_vector_types_compatible):
17593         Remove.
17594         (is_ev64_opaque_type): Check for TARGET_SPE and make sure type is
17595         a vector type.  Change return type to bool.
17596         (TARGET_VECTOR_TYPES_COMPATIBLE): Remove.
17597         (TARGET_VECTOR_OPAQUE_P): Define.
17598
17599         * cp/parser.c (cp_parser_init_declarator): Call vector_opaque_p
17600         target hook.
17601         Include target.h.
17602         (cp_parser_init_declarator): Fix typo in function comments.
17603
17604 2003-02-25  Jan Hubicka  <jh@suse.cz>
17605
17606         * Makefile.in (lcm.o):  Add dependency on function.h
17607         * lcm.c (function.h): Include.
17608         * i386.c (machine_function, ix86_stack_locals,
17609         * ix86_save_varrargs_registers) : Move to
17610         ...
17611         * i386.h (machine_function, ix86_stack_locals,
17612         ix86_save_varrargs_registers): ... here; add optimize_mode_switching
17613         (ix86_optimize_mode_switching): New.
17614         * i386.md (fix patterns): Set ix86_optimize_mode_switching
17615
17616 2003-02-25  Nick Clifton  <nickc@redhat.com>
17617
17618         * config/d30v/d30v.c (d30v_init_cumulative_args): Fix typo.  Name
17619         of fourth arg is 'fndecl' not 'indirect'.  Update comment
17620         describing the function's parameters.
17621
17622 2003-02-24  Jan Hubicka  <jh@suse.cz>
17623
17624         * combine.c (simplify_shift_const):  Fix previous patch.
17625
17626 2003-02-24  Jeff Law  <law@redhat.com>
17627
17628         * i386.md (testdi_1_rex64): Discourage reload from using the %eax
17629         alternative.
17630         (testsi_1, testhi_1, testqi_1): Likewise.
17631
17632 2003-02-24  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
17633
17634         * config/alpha/osf.h (TARGET_OS_CPP_BUILTINS): Rename
17635         __EXTERN_PREFIX to __PRAGMA_EXTERN_PREFIX.
17636         * doc/extend.texi (Tru64 Pragmas): Reflect this.
17637
17638         * fixinc/inclhack.def (alpha___extern_prefix): Indicate #pragma
17639         extern_prefix support for Tru64 UNIX V5 <sys/stat.h>.
17640         * fixinc/fixincl.x: Regenerate.
17641         * fixinc/tests/base/sys/stat.h [ALPHA___EXTERN_PREFIX_CHECK]: New
17642         testcase.
17643         Fixes PR c/5059, c/6126, other/9671.
17644
17645 2003-02-24  Roger Sayle  <roger@eyesopen.com>
17646
17647         * gcc.c (do_spec_1) ['{']:  Handle pending argument upon return
17648         from handle_braces in "%{...}".
17649
17650 2003-02-24  Kaz Kojima  <kkojima@gcc.gnu.org>
17651
17652         * config/sh/sh.c (TARGET_HAVE_TLS): Conditionally define.
17653         (prepare_move_operands): Handle TLS operands.
17654         (tls_symbolic_operand): New.
17655         (nonpic_symbol_mentioned_p): Handle TLS UNSPECs.
17656         (legitimize_pic_address): Do nothing for the TLS symbol.
17657         (sh_encode_section_info): Handle TLS case.
17658         (sh_strip_name_encoding): Drop TLS encoding.
17659         * config/sh/sh-protos.h (tls_symbolic_operand): Add prototype.
17660         * config/sh/sh.h (SH_TLS_ENCODING): Define.
17661         (TLS_SYMNAME_P, STRIP_TLS_ENCODING): Likewise.
17662         (ASM_OUTPUT_LABELREF): Drop TLS encoding.
17663         (OUTPUT_ADDR_CONST_EXTRA): Handle TLS UNSPECs.
17664         * config/sh/sh.md: Define TLS UNSPEC constants.
17665         (type): Add tls_load.
17666         ("tls_global_dynamic", "tls_local_dynamic"): New insns.
17667         ("sym2DTPOFF", "symDTPOFF2reg", "sym2GOTTPOFF"): New expanders.
17668         ("tls_initial_exec"): New insn.
17669         ("sym2TPOFF", "symTPOFF2reg"): New expanders.
17670         ("load_gbr"): New insn.
17671
17672         * configure.in (HAVE_AS_TLS): Add sh-*-* and sh[34]*-*-* cases.
17673         * configure: Regenerate.
17674
17675 2003-02-24  Alan Modra  <amodra@bigpond.net.au>
17676
17677         PR 9297, PR 9722
17678         * calls.c (store_one_arg): Revert 1999-02-16 change.  Revert
17679         2000-12-17 change.  Pass EXPAND_STACK_PARM to expand_expr.
17680         * expr.h (enum expand_modifier): Define EXPAND_STACK_PARM.
17681         (enum block_op_methods): Reorder for better store_expr optimization.
17682         * expr.c (store_expr): Test bit 1 of "want_value" for call param
17683         stores, test bit 0 for original want_value meaning.  Pass
17684         BLOCK_OP_CALL_PARM to emit_block_move when bit 1 set.  Adjust
17685         recursive calls, and calls to expand_param.
17686         (expand_expr): Handle EXPAND_STACK_PARM modifier.  When cse
17687         expected, set target to 0 rather than to subtarget.  Formatting.
17688
17689 2003-02-23  Kazu Hirata  <kazu@cs.umass.edu>
17690
17691         * gcse.c (cprop_jump): Use the REG_EQUAL note if available.
17692
17693 2003-02-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17694
17695         * doc/invoke.texi (ggc-min-expand, ggc-min-heapsize): Document
17696         new default behavior.
17697         * ggc-common.c: Include sys/resource.h.
17698         (ggc_rlimit_bound): New function.
17699         (ggc_min_expand_heuristic, ggc_min_heapsize_heuristic): Update
17700         defaults to account for rlimits.
17701
17702 2003-02-22  Richard Henderson  <rth@redhat.com>
17703
17704         * i386.c, i386.h (TUNEMASK): Rename from CPUMASK.
17705
17706 2003-02-22  Kelley Cook <kelley@dwhoops.info>
17707
17708         * i386.h, i386.c, i386.md (ix86_tune): Rename from ix86_cpu.
17709         (ix86_tune_string): Rename from ix86_cpu_string.
17710
17711 2003-02-22  Kelley Cook <kelleycook@comcast.net>
17712
17713         * config/i386/i386.c: Replace "mcpu" with "mtune".
17714         * config/i386/i386.h (TARGET_OPTIONS): Likewise.
17715         (CC1_CPU_SPEC): Likewise. New warning for "-mcpu".
17716         * doc/invoke.texi (i386 and x86-64 Options): Replace "mcpu"
17717         with "mtune".  Note that "mcpu" is a deprecated synonym for "mtune".
17718
17719 2003-02-23  Andreas Schwab  <schwab@suse.de>
17720
17721         * config.gcc: Delete references to m68k/t-linux and
17722         m68k/t-linux-aout.
17723         * config/m68k/t-linux, config/m68k/t-linux-aout: Removed.
17724
17725 2003-02-22  Jan Hubicka  <jh@suse.cz>
17726
17727         * toplev.c (rest_of_compilation):  Apply fotgotten hunk
17728         of track scheduling patch.
17729
17730 2003-02-22  Jan Hubicka  <jh@suse.cz>
17731
17732         * config/linux.h (TARGET_HAS_F_SETLKW): Define.
17733         * config/alpha/linux.h (TARGET_HAS_F_SETLKW): Likewise
17734
17735 2003-02-22  Jan Hubicka  <jh@suse.cz>
17736
17737         * c-decl.c (c_expand_body_1): Fix.
17738
17739 2003-02-22  Jan Hubicka  <jh@suse.cz>
17740
17741         * expmed.c (expand_divmod): Undo sign extensions for unsigned operands
17742
17743         * cfgcleanup.c (try_forward_edges):  Don't check loop structures
17744         when not optimizing.
17745         (cleanup_cfg): Do not iterate trought delete_trivially_dead_insns
17746         when not expensive.
17747         * toplev.c (rest_of_compilation):  Duplicate loop headers only when
17748         optimizing;  Delete trivially dead insns early; fix optimize check.
17749
17750         * Makefile.in (c-decl.o, c-objc-common.o, cgraph.o, tree-inline.o): Add
17751         dependency on cgraph.h
17752         * c-decl.c: Include cgraph.h
17753         (finish_function): Update call of tree_inlinable_function_p.
17754         * c-objc-common.c: Include cgraph.h
17755         * cgraph.h: New file.
17756         * cgraphunit.c: New file.
17757         * cgraph.c (cgraph_node, cgraph_edge): Move into cgraph.h
17758         (cgraph_nodes, cgraph_n_nodes): Globalize.
17759         (cgraph_finalize_function, cgraph_finalize_compilation_unit
17760         cgraph_create_edges, cgraph_optimize, cgraph_mark_needed_node):
17761         Move into cgraphunit.c
17762         * tree-inline.c: Include cgraph.h
17763         * tree-inline.c: Include cgraph.h
17764
17765 2003-02-22  Josef Zlomek  <zlomekj@suse.cz>
17766
17767         * config/i386/i386.md: Use gen_lowpart instead of gen_rtx_REG
17768         for copying a register.
17769
17770 2003-02-22  Steven Bosscher  <s.bosscher@student.tudelft.nl>
17771
17772         PR other/3782
17773         * toplev.c (process_options): If flag_detailed_statistics is set,
17774         then set time_report as well.
17775
17776         PR c/8828
17777         * jump.c (never_reached_warning): Don't fall through BARRRIER
17778         insns.  Update comments to reflect what the function really does.
17779
17780 2003-02-21  Roger Sayle  <roger@eyesopen.com>
17781
17782         * fold-const.c (omit_one_operand): No longer static.
17783         * tree.h (omit_one_operand): Prototype here.
17784         (div_and_round_double): Keep fold-const.c prototypes together.
17785         * builtins.c (builtin_mathfn_code): Handle binary built-in
17786         funtions, such as "pow" and "atan2".
17787         (fold_builtin): Optimize both pow(x,0.0) and pow(1.0,y) to 1.0.
17788         Simplify optimizations using "type" the builtin's return type.
17789
17790 2003-02-22  Hans-Peter Nilsson  <hp@axis.com>
17791
17792         * config/cris/cris.c (cris_rtx_costs): Blockify dangling else.
17793         Fix functionalization typo.
17794
17795         * regmove.c (optimize_reg_copy_1): Do not replace a hard register
17796         in an asm.
17797
17798 2003-02-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17799
17800         * Makefile.in (ggc-common.o): Depend on $(PARAMS_H)
17801         * doc/invoke.texi (ggc-min-expand, ggc-min-heapsize): Update
17802         documentation.
17803         * ggc-common.c: Include params.h
17804         (ggc_min_expand_heuristic, ggc_min_heapsize_heuristic,
17805         init_ggc_heuristics): New functions.
17806         * ggc.h (ggc_min_expand_heuristic, ggc_min_heapsize_heuristic,
17807         init_ggc_heuristics): Prototype.
17808         * toplev.c (print_version):  Output GGC heuristics.
17809         (parse_options_and_default_flags): Call init_ggc_heuristics.
17810
17811 2003-02-22  Jan Hubicka  <jh@suse.cz>
17812
17813         * i386.c (def_builtin):  Special case 64bit builtins.
17814         (MASK_SSE164, MASK_SSE264): New constants.
17815         (builtin_description): Add 64bit builtins.
17816         (ix86_init_mmx_sse_builtins): Likewise.
17817         * i386.h (enum ix86_builtins): Likewise.
17818         * i386.md (cvtss2siq, cvttss2siq, cvtsd2siq, cvttsd2siq, cvtsi2sdq,
17819         sse2_movq2dq_rex64, sse2_movsq2q_rex64): New.
17820         (sse2_movq2dq, sse2_movsq2q): Disable for 64bit.
17821         * mmintrin.h (_mm_cvtsi64x_si64, _mm_set_pi64x, _mm_cvtsi64_si64x): New.
17822         * xmmintrin.h (_mm_cvtss_si64x, _mm_cvttss_si64x, _mm_cvtsi64x_ss,
17823         _mm_set_epi64x, _mm_set1_epi64x, _mm_cvtsd_si64x, _mm_cvttsd_si64x,
17824         _mm_cvtsi64x_sd, _mm_cvtsi64x_si128, _mm_cvtsi128_si64x): New.
17825
17826 2003-02-22  Jan Hubicka  <jh@suse.cz>
17827
17828         * i386.c (builtin_description): Add __builtin_ia32_paddq and
17829         __builtin_ia32_psubq. Fix __builtin_ia32_paddq128
17830          and __builtin_ia32_psubq128.
17831         * i386.h (IX86_BUILTIN_PADDQ, IX86_BUILTIN_PSUBQ): New.
17832         * i386.md (addv*, mmx_ior*, mmx_xoe*, mmx_and*): Add missing '%'.
17833         (mmx_adddi3, mmx_subdi3): New.
17834         * mmintrin.h (_mm_add_si64, _mm_sub_si64): New.
17835         * xmmintrin.h (_mm_movepi64_pi64): New.
17836         (_mm_add_epi64, _mm_sub_epi64): fix.
17837         (_mm_mul_pu16): Rename to...
17838         (_mm_mul_su32): ... this one.
17839
17840         * builtins.c (expand_builtin_expect):  Do not predict
17841         flag_guess_branch_prob is not set.
17842         * c-semantics.c (expand_stmt): Likewise.
17843         * predict.c (predict_insn): Likewise.
17844         * stmt.c (expand_continue_loop): Likewise.
17845         * toplev.c (rest_of_compilation): Do not call
17846         note_prediction_to_br_prob and note_prediction_to_br_prob
17847         when not optimizing.
17848
17849 2003-02-21  Jan Hubicka  <jh@suse.cz>
17850
17851         * cfgrtl.c (commit_edge_insertions):  Call
17852         find_many_sub_basic_block only when some code has been emitted.
17853         (commit_edge_insertions_watch_calls): Bring into sync with
17854         commit_edge_insertions
17855
17856 2003-02-21  J"orn Rennecke <joern.rennecke@superh.com>
17857
17858         * sh.h (OVERRIDE_OPTIONS): Fix code that clears 'e' register class.
17859
17860         * sh.md (binary_sf_op): Use extra constant operand instead of
17861         negating constant operand 4.
17862         * sh.c (sh_expand_binop_v2sf): Supply it.
17863
17864 2003-02-21  Zack Weinberg  <zack@codesourcery.com>
17865
17866         * cpphash.h (struct lexer_state): Add directive_wants_padding.
17867         * cpplib.c (_cpp_handle_directive): Set directive_wants_padding
17868         for directives of type INCL.
17869         (glue_header_name, parse_include): Use get_token_no_padding.
17870         * cppmacro.c (replace_args): If directive_wants_padding,
17871         provide padding tokens.
17872
17873 2003-02-21  Kazu Hirata  <kazu@cs.umass.edu>
17874
17875         * config/h8300/h8300.md (a peephole2): New.
17876
17877 2003-02-21  Jan Hubicka  <jh@suse.cz>
17878
17879         * cfgrtl.c (commit_one_edge_insertion): Only mark BB for splitting.
17880         (commit_edge_insertions): Call find_many_sub_basic_blocks
17881
17882         * reg-stack.c (convert_regs): Cleax aux for blocks.
17883
17884 2003-02-21  Jan Hubicka  <jh@suse.cz>
17885
17886         * toplev.c (parse_options_and_default_flags): Undo accidental commit.
17887
17888 2003-02-21  Glen Nakamura  <glen@imodulo.com>
17889
17890         PR optimization/8613
17891         * builtins.c (expand_builtin): Emit postincrements before expanding
17892         builtin functions.
17893
17894 2003-02-21  Ben Elliston  <bje@redhat.com>
17895
17896         PR other/5634
17897         * doc/install.texi (Configuration): Explain using $HOME instead of
17898         the ~ metacharacter when referring to home directories.
17899
17900 2003-02-20  Alexandre Oliva  <aoliva@redhat.com>
17901
17902         * configure.in (TARGET_SYSTEM_ROOT): Set default to
17903         ${exec_prefix}/${target_alias}/sys-root.  Match explicit
17904         '${exec_prefix}' (in addition to the expansion thereof) as
17905         relocatable.
17906         * configure: Rebuilt.
17907
17908 2003-02-20  Kazu Hirata  <kazu@cs.umass.edu>
17909
17910         * config/h8300/h8300.md (addhi3_incdec): Change the name to
17911         *addhi3_incdec.
17912         (addsi3_incdec): Change the name to *addsi3_incdec.
17913
17914 2003-02-20  Roger Sayle  <roger@eyesopen.com>
17915
17916         * explow.c (force_reg): Avoid useless REG_EQUAL notes.
17917
17918 2003-02-20  Toon Moene  <toon@moene.indiv.nluug.nl>
17919
17920         PR fortran/9038
17921         * c-opts.c (sanitize_cpp_opts): Add Fortran front end
17922         options to be ignored.
17923         (c_common_decode_option): Ignore them when preprocessing.
17924
17925 2003-02-20  Jan Hubicka  <jh@suse.cz>
17926
17927         * toplev.c (flag_sched2_use_superblocks, flag_sched2_use_traces): New
17928         global variables.
17929         (lang_independent_options):  Add -fsched2-use-superblocks
17930         -fsced2-use-traces.
17931         (rest_of_compilation): Deal with it.
17932         * invoke.texi (-fsched2-use-traces, fsched2-use-superblocks):  Declare.
17933         * flags.h (flag_sched2_use_superblocks, flag_sched2_use_traces):
17934         Declare.
17935         * rtl.h (reg_to_stack):  Update prototype.
17936         * reg-stack.c (reg_to_stack): Return when something has changed;
17937         update liveness when executing after superblock scheduling.
17938
17939         * combine.c (simplify_shift_const):  Simplify few special cases
17940         into constants.
17941
17942 2003-02-20  David Edelsohn  <edelsohn@gnu.org>
17943
17944         * config/rs6000/rs6000.md: (attr "type"): Add fast_compare.
17945         (add.,subf.,neg.): Change attribute to fast_compare.
17946         All DFA descriptions updated.
17947
17948 2003-02-20  Nathan Sidwell  <nathan@codesourcery.com>
17949
17950         Change base class access representation.
17951         * tree.h (TREE_VIA_PUBLIC, TREE_VIA_PROTECTED,
17952         TREE_VIA_PRIVATE): Remove.
17953         (BINFO_BASEACCESSES): New binfo elt.
17954         (BINFO_BASEACCESS): New accessor.
17955         (BINFO_ELTS): Increase.
17956         (TI_ACCESS_PUBLIC, TI_ACCESS_PROTECTED, TI_ACCESS_PRIVATE): New.
17957         (access_public_node, access_protected_node,
17958         access_private_node): New global nodes.
17959         * tree.c (build_common_tree_nodes_2): Initialize access nodes.
17960         * dbxout.c (dbxout_type): Adjust.
17961         * dwarf2out.c (gen_inheritance_die): Add access parameter.
17962         (gen_member_die): Adjust.
17963         * dwarfout.c (output_inheritance_die): ARG is array of two trees.
17964         (output_type): Adjust.
17965         * tree-dump.c (dequeue_and_dump): Adjust binfo dumping.
17966
17967         Change base class access representation. Share virtual base
17968         binfos.
17969         * cp/call.c (build_special_member_call): Remove binfo_for_vbase
17970         call.
17971         * cp/class.c (build_base_path): Likewise.
17972         (build_primary_vtable): Adjust BINFO_NEW_VTABLE_MARKED use.
17973         (build_secondary_vtable): Remove FOR_TYPE arg. Adjust.
17974         (make_new_vtable): Adjust.
17975         (force_canonical_binfo_r): Delete.
17976         (force_canonical_binfo): Delete.
17977         (mark_primary_virtual_base): Delete.
17978         (dfs_unshared_virtual_bases): Delete.
17979         (mark_primary_bases): Adjust.
17980         (maybe_warn_about_overly_private_class): Adjust.
17981         (dfs_base_derived_from): Delete.
17982         (base_derived_from): Follow the inheritance chain.
17983         (struct find_final_overrider_data): Add vpath member.
17984         (dfs_find_final_overrider): Adjust.
17985         (dfs_find_final_overrider_q, dfs_find_final_overrider_post): New.
17986         (find_final_overrider): Adjust.
17987         (update_vtable_entry_for_fn): Adjust.
17988         (modify_all_vtables): Adjust.
17989         (walk_subobject_offsets): Adjust.
17990         (layout_nonempty_base_or_field): Adjust.
17991         (layout_empty_base): Remove last parameter. Adjust.
17992         (build_base_field): Adjust.
17993         (build_base_fields): Adjust.
17994         (propagate_binfo_offsets): Remove last parameter. Adjust.
17995         (dfs_set_offset_for_unshared_vbases): Delete.
17996         (layout_virtual_bases): Adjust.
17997         (finish_struct_1): Adjust.
17998         (init_class_processing): Don't init access nodes.
17999         (dfs_get_primary_binfo): Delete.
18000         (get_primary_binfo): Adjust.
18001         (dump_class_hierarchy_r): Remove most derived arg, add IGO
18002         parameter. Adjust.
18003         (dump_class_hierarchy): Adjust.
18004         (finish_vtbls): Adjust.
18005         (get_original_base): Delete.
18006         (build_vtt_inits): Adjust.
18007         (dfs_build_secondary_vptr_vtt_inits): Adjust.
18008         (dfs_ctor_vtable_bases_queue_p): Adjust.
18009         (build_ctor_vtbl_group): Adjust.
18010         (dfs_accumulate_vtbl_inits): Adjust.
18011         (build_vtbl_initializer): Adjust.
18012         (build_vbase_offset_vtbl_entries): Adjust.
18013         (add_vcall_offset_vtbl_entries_1): Adjust.
18014         * cp/cp-tree.h (CPTI_ACCESS_*): Remove.
18015         (access_*_node): Remove.
18016         (CANONICAL_BINFO): Delete.
18017         (BINFO_UNSHARED_MARKED): Remove.
18018         (BINFO_MARKED): Set LANG_FLAG_0 directly.
18019         (SET_BINFO_MARKED, CLEAR_BINFO_MARKED): Delete.
18020         (BINFO_VTABLE_PATH_MARKED): Set LANG_FLAG_3 directly.
18021         (SET_BINFO_VTABLE_PATH_MARKED, CLEAR_BINFO_VTABLE_PATH_MARKED):
18022         Delete.
18023         (BINFO_NEW_VTABLE_MARKED): Set LANG_FLAG_4 directly.
18024         (SET_BINFO_NEW_VTABLE_MARKED): Adjust.
18025         (SET_BINFO_PUSHDECLS_MARKED, CLEAR_BINFO_PUSHDECLS_MARKED):
18026         Delete.
18027         (BINFO_DEPENDENT_BASE_P): New.
18028         (dfs_walk, dfs_walk_real): Queue function takes derived binfo and
18029         index.
18030         (markedp, unmarkedp): Adjust.
18031         (dfs_unmarked_real_bases_queue_p, dfs_marked_real_bases_queue_p,
18032         dfs_skip_vbases, marked_vtable_pathp, unmarked_vtable_pathp,
18033         find_vbase_instance, binfo_for_vbase): Delete.
18034         (copied_binfo, original_binfo): Declare.
18035         (finish_base_specifier): Add virtual_p arg.
18036         (unshare_base_binfos): Delete.
18037         (copy_base_binfos): Declare.
18038         (reverse_path): Delete.
18039         * cp/decl.c (xref_basetypes): Access and virtuality passed
18040         differently. Don't copy direct base binfos here. Call
18041         copy_base_binfos.
18042         * cp/init.c (dfs_initialize_vtbl_ptrs): Adjust.
18043         (initialize_vtbl_ptrs): Adjust.
18044         (expand_member_init): Adjust.
18045         * cp/parser.c (cp_parser_base_specifier): Adjust.
18046         * cp/pt.c (instantiate_class_template): Adjust.
18047         (get_template_base_recursive): Adjust.
18048         * cp/rtti.c (get_pseudo_ti_init): Adjust.
18049         (get_pseudo_ti_desc): Adjust.
18050         * cp/tree.c (unshare_base_binfos): Rename to ...
18051         (copy_base_binfos): ... here, reimplement.
18052         (make_binfo): Set BINFO_DEPENDENT_BASE_P.
18053         (reverse_path): Remove.
18054         * cp/typeck.c (get_delta_difference): Adjust error messages.
18055         * cp/semantics.c (finish_base_specifier): Add virtual arg, adjust.
18056         * cp/search.c (lookup_base_r): Adjust.
18057         (dynamic_cast_base_recurse): Adjust.
18058         (canonical_binfo): Remove.
18059         (dfs_canonical_queue): Remove.
18060         (dfs_assert_unmarked_p): Remove.
18061         (assert_canonical_unmarked): Remove.
18062         (shared_marked_p, shared_unmarked_p): Remove.
18063         (BINFO_ACCESS, SET_BINFO_ACCESS): Use TREE_PUBLIC & TREE_PRIVATE.
18064         (dfs_access_in_type): Adjust.
18065         (access_in_type): Adjust.
18066         (dfs_accessible_queue_p): Adjust.
18067         (dfs_accessible_p): Adjust.
18068         (is_subobject_of_p_1, is_subobject_of_p): Remove.
18069         (struct lookup_field_info): Remove from_dep_base_p field.
18070         (lookup_field_queue_p): Adjust, test BINFO_DEPENDENT_BASE_P.
18071         (lookup_field_r): Remove dependent base code.
18072         (lookup_member): Likewise.
18073         (dfs_walk, dfs_walk_real): Add access arg to queue fn.
18074         (dfs_unmarked_real_bases_queue_p): Remove.
18075         (dfs_marked_real_bases_queue_p): Remove.
18076         (dfs_skip_vbases): Remove.
18077         (dfs_get_pure_virtuals): Adjust.
18078         (markedp, unmarkedp): Adjust.
18079         (marked_vtable_pathp, unmarked_vtable_pathp): Remove.
18080         (marked_pushdecls_p, unmarked_pushdecls_p): Adjust.
18081         (dfs_unmark): Adjust.
18082         (dfs_get_vbase_types):Remove.
18083         (dfs_build_inheritance_graph_order): Remove.
18084         (get_vbase_types): Remove
18085         (dfs_find_vbase_instance): Remove.
18086         (find_vbase_instance): Remove.
18087         (dfs_debug_unmarkedp): Adjust.
18088         (dependent_base_p): Remove.
18089         (dfs_push_type_decls): Adjust.
18090         (dfs_push_decls): Adjust.
18091         (dfs_no_overlap_yet): Adjust.
18092         (copied_binfo): New function.
18093         (original_binfo): New function.
18094         (binfo_for_vbase): Remove.
18095
18096         Change base class access representation.
18097         * java/class.c (set_super_info): Don't set TREE_VIA_PUBLIC.
18098         (add_interface_do): Likewise.
18099
18100 2003-02-20  David Edelsohn  <edelsohn@gnu.org>
18101
18102         * config/rs6000/sysv4.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Define.
18103         * config/rs6000/power4.md (power4-store,power4-vecstore): New
18104         insn reservations.
18105         (power4-fpstore): Compact.
18106
18107 2003-02-20  Kazu Hirata  <kazu@cs.umass.edu>
18108
18109         * config/h8300/h8300.md (*iorsi3_w): New.
18110
18111 2003-02-20  Josef Zlomek  <zlomekj@suse.cz>
18112
18113         * combine.c (distribute_notes): Kill REG_EXEC_COUNT.
18114         * rtl.c (reg_note_name): Likewise.
18115         * rtl.h (enum reg_note): Likewise.
18116         * doc/invoke.texi: Likewise.
18117         * doc/rtl.texi: Likewise.
18118
18119 2003-02-20  Josef Zlomek  <zlomekj@suse.cz>
18120
18121         * bb-reorder.c (find_traces_1_round): Fix comment typo.
18122
18123 2003-02-19  Roger Sayle  <roger@eyesopen.com>
18124
18125         * fold-const.c (fold_real_zero_addition_p): Don't fold a zero
18126         addition in the presence of signaling NaNs.
18127
18128 2003-02-19  Krister Walfridsson  <cato@df.lth.se>
18129
18130         * tm.texi (INIT_CUMULATIVE_ARGS): Fix typo.
18131
18132 2003-02-19  Kazu Hirata  <kazu@cs.umass.edu>
18133
18134         * config/h8300/h8300.c (output_logical_op): Optimize or.l when
18135         ORing with 0xffff??00 with the highest bit of the ?? part set.
18136         (compute_logical_op_length): Update.
18137         (compute_logical_op_cc): Likewise.
18138
18139 2003-02-19  Josef Zlomek  <zlomekj@suse.cz>
18140
18141         * bb-reorder.c (find_traces_1_round): Fixed condition for small
18142         destination block with multiple predecessors.
18143         (connect_traces): Check whether the block is a start of trace.
18144
18145 2003-02-19  Jan Hubicka  <jh@suse.cz>
18146
18147         * calls.c (expand_call): Update call of INIT_CUMULATIVE_ARGS
18148         * function.c (assign_params): Likewise.
18149         * arm-protos.h (arm_init_cumulative_args): Update prototype.
18150         * arm.c (arm_init_cumulative_args): Update function.
18151         * arm.h (INIT_CUMULATIVE_ARGS): Update.
18152         * avr-protos.h (init_cumulative_args): Update prototype.
18153         * avr.c (init_cumulative_args): Update function.
18154         * avr.h (INIT_CUMULATIVE_ARGS): Update.
18155         * d30v-protos.h (d30v_init_cumulative_args): Update prototype.
18156         * d30v.c (d30v_init_cumulative_args): Update function.
18157         * d30v.h (INIT_CUMULATIVE_ARGS): Update.
18158         * frv-protos.h (frv_init_cumulative_args): Update prototype.
18159         * frv.c (frv_init_cumulative_args): Update function.
18160         * frv.h (INIT_CUMULATIVE_ARGS): Update.
18161         * mips.c (mips_expand_prolgue): Update call of INIT_CUMULATIVE_ARGS.
18162         * pa.h (INIT_CUMULATIVE_ARGS): Update.
18163         * sparc-protos.h (init_cumulative_args): Update prototype.
18164         * sparc.c (init_cumulative_args): Update function.
18165         * sparc.h (INIT_CUMULATIVE_ARGS): Update.
18166         * tm.texi (INIT_CUMULATIVE_ARGS): Update documentation.
18167
18168 2003-02-19  Kazu Hirata  <kazu@cs.umass.edu>
18169
18170         * config/h8300/h8300.md (*iorsi3_two_qi_sext): New.
18171         (*ashiftsi_sextqi_7): Likewise.
18172
18173 2003-02-19  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
18174
18175         * config/mips/iris6.h (TARGET_OS_CPP_BUILTINS): Define __c99 for
18176         ISO C99 and C++.
18177
18178         * fixinc/inclhack.def (irix___restrict): Don't change __restrict
18179         for C++ on IRIX 6.5.1[89].
18180         * fixinc/tests/base/internal/sgimacros.h: New file.
18181
18182         * fixinc/inclhack.def (irix_wcsftime): Use XPG5 variant for C99.
18183         * fixinc/tests/base/internal/wchar_core.h: New file.
18184
18185         * fixinc/inclhack.def (irix_socklen_t): Fix broken IRIX 6.5.1[78]
18186         socklen_t definition.
18187         * fixinc/fixincl.x: Regenerate.
18188         * fixinc/tests/base/sys/socket.h: New file.
18189         Fixes PR libgcj/9652.
18190
18191 2003-02-19  Jan Hubicka  <jh@suse.cz>
18192
18193         * i386.md (movsfcc_1, movdfcc_1): Fix constrains.
18194
18195 2003-02-19  David Edelsohn  <edelsohn@gnu.org>
18196
18197         * config/rs6000/rs6000.c (rs6000_override_options): Initialize
18198         align_jumps_max_skip and align_loops_max_skip.
18199
18200 2003-02-19  Thierry Moreau  <thierry.moreau@connotech.com>
18201
18202         * config/rs6000/rs6000.c (rs6000_encode_section_info): Do not
18203         test size if named section.
18204
18205 2003-02-19  Daniel Jacobowitz  <drow@mvista.com>
18206
18207         * expr.c (expand_expr): Use gen_int_mode for the argument
18208         to gen_rtx_MULT.
18209
18210 2003-02-19  Jan Hubicka  <jh@suse.cz>
18211
18212         * i386.md (cosxf2):  Fix conditional.
18213
18214 2003-02-19  Kazu Hirata  <kazu@cs.umass.edu>
18215
18216         * config/h8300/h8300.md (extendqisi2): Change to an expander.
18217         (*extendqisi2_h8300): New.
18218         (*extendqisi2_h8300hs): Likewise.
18219
18220 2003-02-19  Kazu Hirata  <kazu@cs.umass.edu>
18221
18222         * config/h8300/h8300-protos.h: Update the prototype for
18223         split_adds_subs.  Remove the prototypes for
18224         const_int_le_2_operand and const_int_le_6_operand.
18225         * config/h8300/h8300.c (split_adds_sub): Don't output inc/dec.
18226         (const_int_le_2_operand): Remove.
18227         (const_int_le_6_operand): Likewise.
18228         * config/h8300/h8300.h (PREDICATE_CODES): Remove the entries
18229         for const_int_le_2_operand and const_int_le_6_operand.
18230         * config/h8300/h8300.md: Update all uses of split_adds_subs.
18231         (a peephole2): New.
18232
18233 2003-02-18  Jan Hubicka  <jh@suse.cz>
18234
18235         * cgraph.c (NPREDECESORC, SET_NPREDECESORS): Kill.
18236         (cgraph_expand_function): Rewrite.
18237
18238 2003-02-18  Matt Austern <austern@apple.com>
18239
18240         * toplev.c, langhooks.c, langhooks-def.h: Move
18241         write_global_declarations from toplev.c to langhooks.c.
18242
18243 2003-02-18  Kazu Hirata  <kazu@cs.umass.edu>
18244
18245         * config/h8300/h8300.c (general_operand_src): Always check
18246         MODE.
18247         (general_operand_dst): Likewise.
18248
18249 2003-02-18  Roger Sayle  <roger@eyesopen.com>
18250
18251         * convert.c (convert_to_real): Also optimize (float)log(x) into
18252         logf(x) where x is a float, i.e. also handle BUILT_IN_LOG{,L}.
18253
18254 2003-02-18  Kaz Kojima  <kkojima@gcc.gnu.org>
18255
18256         * config/sh/sh.c (unspec_caller_rtx_p): New.
18257         (sh_cannot_copy_insn_p): New.
18258         (TARGET_CANNOT_COPY_INSN_P): New.
18259
18260 2003-02-18  Richard Henderson  <rth@redhat.com>
18261
18262         * c-common.c (handle_used_attribute): Accept static data too.
18263
18264 2003-02-18  Nick Clifton  <nickc@redhat.com>
18265             Aldy Hernandez  <aldyh@redhat.com>
18266
18267         * testsuite/gcc.dg/20030218-1.c: New.
18268
18269         * doc/tm.texi: Document TARGET_VECTOR_TYPES_COMPATIBLE.
18270
18271         * target-def.h (TARGET_INITIALIZER): Add
18272         TARGET_VECTOR_TYPES_COMPATIBLE.
18273         (TARGET_VECTOR_TYPES_COMPATIBLE): New macro.
18274
18275         * target.h (struct gcc_target): Add field vector_types_compatible.
18276
18277         * c-typeck.c (comptypes): Take into account
18278         TARGET_VECTOR_TYPES_COMPATIBLE.
18279         (convert_for_assignment): Same.
18280
18281         * config/rs6000/rs6000.c (is_ev64_opaque_type): New.
18282         (rs6000_spe_vector_types_compatible): New.
18283         (TARGET_VECTOR_TYPES_COMPATIBLE): Define.
18284
18285 2003-02-19  Andreas Schwab  <schwab@suse.de>
18286
18287         * Makefile.in (toplev.o): Depend on $(LANGHOOKS_DEF_H).
18288         * toplev.c: Include langhooks-def.h.
18289
18290 2003-02-18  Chris Demetriou  <cgd@broadcom.com>
18291
18292         * config/mips/mips.h (enum processor_type): Sort entries
18293         alphabetically.
18294         * config/mips/mips.md (define_attr cpu): Sync with processor_type
18295         enum values, including adding entries that were missing.
18296
18297 2003-02-18  J"orn Rennecke <joern.rennecke@superh.com>
18298
18299         * sh.c (calc_live_regs): Also check GET_CODE when checking if
18300         initial value for PR_REG is still the PR_REG register.
18301
18302 2003-02-18  Jim Wilson  <wilson@redhat.com>
18303
18304         * config/ia64/ia64.md (floatdidf2, floatdisf2): Add %, before second
18305         instruction in output template.
18306         (bsp_value): Change output template from string to C code, add %,
18307         before actual instruction.
18308         (flushrs): Mark as not predicable.
18309
18310 2003-02-18  Krister Walfridsson  <cato@df.lth.se>
18311
18312         * inclhack.def (netbsd_bogus_semicolon): New fix.
18313         * fixincl.x: Rebuilt.
18314         * tests/base/ctype.h: Update.
18315
18316 2003-02-18  Roger Sayle  <roger@eyesopen.com>
18317
18318         * fold-const.c (negate_expr_p): New function to determine whether
18319         an expression can be negated cheaply.
18320         (fold) [MINUS_EXPR]: Use it to determine whether to transform
18321         -A - B into -B - A for floating point types.
18322
18323 2003-02-18  Roger Sayle  <roger@eyesopen.com>
18324
18325         * sbitmap.c (sbitmap_resize): New function.
18326         * sbitmap.h (sbitmap_resize): Prototype here.
18327         * recog.c (split_all_insns): Use sbitmap_resize.
18328
18329 2003-02-18  Kazu Hirata  <kazu@cs.umass.edu>
18330
18331         * config/h8300/h8300.md (*zero_extendhisi2_h8300): Fix the
18332         insn length.
18333         (extendqisi2): Likewise.
18334         (*extendhisi2_h8300): Likewise.
18335
18336 2003-02-18  Matt Austern <austern@apple.com>
18337
18338         * langhooks.h, langhooks-def.h: introduce new langhook,
18339         final_write_globals, with write_global_declarations as default.
18340         * toplev.c: Move invocation of wrapup_global_declarations from
18341         compile_file to new function, write_global_declarations.  Change
18342         compile_file to use final_write_globals hook.  Change
18343         wrapup_global_declarations so writing to DECL_DEFER_OUTPUT is
18344         conditional.
18345
18346 2003-02-18  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
18347
18348         * pa.md: Correct and enhance comment.
18349
18350 2003-02-18  Geoffrey Keating  <geoffk@apple.com>
18351
18352         * gcc.c (validate_switches): Don't scan past closing '}'.
18353
18354 2003-02-18  Ben Elliston  <bje@redhat.com>
18355
18356         PR c++/1607
18357         * doc/extend.texi (Function Attributes): Document the effect of
18358         the C++ "this" parameter on the counting of arguments for the
18359         "format" and "format_arg" attributes.
18360
18361 2003-02-17  Aldy Hernandez  <aldyh@redhat.com>
18362
18363         * config/rs6000/spe.h (__ev_stdd): Cast 2nd arg.
18364         (__ev_stdw): Same.
18365         (__ev_stdh): Same.
18366
18367 2003-02-17  Jan Hubicka  <jh@suse.cz>
18368
18369         * recog.c (split_all_insns):  Fix memory overflow.
18370
18371 2003-02-17  Kazu Hirata  <kazu@cs.umass.edu>
18372
18373         * config/h8300/h8300.md (cmpqi): Remove mode from compare.
18374         (cmphi): Likewise.
18375         (*cmphi_h8300): Likewise.
18376         (*cmphi_h8300hs): Likewise.
18377         (cmpsi): Likewise.
18378         (7 peephole2): Likewise.
18379
18380 2003-02-16  Jan Hubicka  <jh@suse.cz>
18381
18382         * c-typeck.c (build_c_cast):  Fold constant variables into
18383         initial values.
18384
18385 2003-02-16  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
18386
18387         * doc/install.texi (Specific): Fix link for m68k-att-sysv.
18388         (Binaries): Ditto for Sinix/Reliant Unix.
18389
18390 2003-02-16 Richard Earnshaw  <rearnsha@arm.com>
18391
18392         * arm.c (arm_reload_in_hi): Ensure that the scratch register does
18393         not overlap the final result register.
18394
18395 2003-02-16 Arend Bayer <arend.bayer@web.de>
18396            Richard Henderson  <rth@redhat.com>
18397
18398         PR c/8068
18399         * fold-const.c (extract_muldiv_1): Rename from extract_muldiv;
18400         rearrange mult arguments for less recursion.
18401         (extract_muldiv): New.  Prevent runaway recursion.
18402
18403 2003-02-16  Danny Smith  <dannysmith@users.sourceforge.net>
18404
18405         * config/i386/cygwin.h (TARGET_SUBTARGET_DEFAULT): Set
18406         MASK_ALIGN_DOUBLE.
18407
18408 2003-02-15  Roger Sayle  <roger@eyesopen.com>
18409
18410         * config/i386/i386.c (x86_ext_80387_constants): Use 80387 insns
18411         to load mathematical constants on K6, Athlon, Pentium 4 and PPro.
18412         (ext_80387_constants_table): Global table of 80387 special constants
18413         guarded by ext_80387_constants_init flag when not initialized.
18414         (init_ext_80387_constants): New function to initialize this table.
18415         (standard_80387_constant_p): Extend to recognize extra 80387
18416         constants, in XFmode, on processors where this is a win.
18417         (standard_80387_constant_opcode): New function to return the
18418         opcode associated with standard_80387_constant_p.
18419         (standard_80387_constant_rtx): New function to return the XFmode
18420         CONST_DOUBLE associated with standard_80387_constant_p.
18421         (ix86_rtx_costs): Give the new constants the same cost as 1.0.
18422
18423         * config/i386/i386-protos.h (standard_80387_constant_opcode):
18424         Prototype here.
18425         (standard_80387_constant_rtx): Likewise.
18426
18427         * config/i386/i386.md (*movsf1, *movsf1_nointerunit, *movdf_nointeger,
18428         *movdf_integer, *movxf_nointeger, *movtf_nointeger, *movxf_integer,
18429         *movtf_integer): Simplify using new standard_80387_constant_opcode.
18430
18431 2003-02-15  Geoffrey Keating  <geoffk@apple.com>
18432
18433         * doc/invoke.texi (Optimize Options): Correct @option syntax.
18434
18435 2003-02-15  Richard Henderson  <rth@redhat.com>
18436
18437         * Makefile.in (cfglayout.o): Depend on TARGET_H.
18438         * cfglayout.c: Include target.h.
18439         (cfg_layout_can_duplicate_bb_p): Check targetm.cannot_copy_insn_p.
18440         * target-def.h (TARGET_CANNOT_COPY_INSN_P): New.
18441         * target.h (struct gcc_target): Add cannot_copy_insn_p.
18442
18443         * config/alpha/alpha.c (alpha_cannot_copy_insn_p): New.
18444         (TARGET_CANNOT_COPY_INSN_P): New.
18445         (override_options): Revert 2003-02-08 hack.
18446
18447 2003-02-15  Richard Henderson  <rth@redhat.com>
18448
18449         * gcse.c (bypass_block): Use BLOCK_FOR_INSN for resolving LABEL_REFs.
18450         (bypass_conditional_jumps): Accept computed_jump_p insns as well.
18451
18452 2003-02-15  David Edelsohn  <edelsohn@gnu.org>
18453
18454         * config/rs6000/rs6000.h (processor_type): Add PPC440.
18455         * config/rs6000/rs6000.c (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE,
18456         TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD,
18457         TARGET_SCHED_VARIABLE_ISSUE): Define.
18458         (rs6000_use_dfa_pipeline_interface): New function.
18459         (rs6000_multipass_dfa_lookahead): New Function.
18460         (rs6000_variable_issue): New function.
18461         (rs6000_adjust_cost): Add CMP and DELAYED_CR types.
18462         (rs6000_issue_rate): Add PPC440.
18463         * config/rs6000/rs6000.md (unspec list): Correct typo.
18464         (attr "type"): Add load_ext, load_ext_u, load_ext_ux, load_u,
18465         store_ux, store_u, fpload_ux, fpload_u, fpstore_ux, fpstore_u,
18466         cmp, delayed_cr, mfcr, mtcr.
18467         (automata_option): Set "ndfa".
18468         (extendMMNN2): Update attributes.
18469         (movcc_internal1): Discourage move to non-cr0.  Update
18470         attributes.
18471         (movMM_update): Update attributes.
18472         (cmpMM_internal): Update attributes.
18473         (sCC CR materialization): Update attributes.
18474         (branch patterns): Do not discourage non-cr0.
18475         (cr logical patterns): Prefer destructive register allocation.
18476         Update attributes.
18477         (movesi_from_cr): Update attribute.
18478         (mtcrf_operation): Update attribute.
18479         (mtcrfsi): Update attribute.
18480         * config/rs6000/40x.md: New file.
18481         * config/rs6000/603.md: New file.
18482         * config/rs6000/6xx.md: New file.
18483         * config/rs6000/7450.md: New file.
18484         * config/rs6000/7xx.md: New file.
18485         * config/rs6000/mpc.md: New file.
18486         * config/rs6000/power4.md: New file.
18487         * config/rs6000/rios1.md: New file.
18488         * config/rs6000/rios2.md: New file.
18489         * config/rs6000/rs64.md: New file.
18490         [Some DFA descriptions based on work by Michael Hayes]
18491
18492 2003-02-15  Richard Henderson  <rth@redhat.com>
18493
18494         * bb-reorder.c (find_traces_1_round): Don't connect easy to copy
18495         successors with multiple predecessors.
18496         (connect_traces): Try harder to copy traces of length 1.
18497
18498         * function.h (struct function): Add computed_goto_common_label,
18499         computed_goto_common_reg.
18500         * function.c (free_after_compilation): Zap them.
18501         * stmt.c (expand_computed_goto): Use them to produce one
18502         indirect branch per function.
18503
18504 2003-02-15  Richard Henderson  <rth@redhat.com>
18505
18506         * cfgcleanup.c: Include params.h.
18507         (try_crossjump_bb): Use PARAM_MAX_CROSSJUMP_EDGES.  Fix test for
18508         too many outgoing edges from a block.
18509         * Makefile.in (cfgcleanup.o): Depend on PARAMS_H.
18510         * params.def (max-crossjump-edges): New.
18511         * doc/invoke.texi: Document it.
18512
18513 2003-02-15  Richard Henderson  <rth@redhat.com>
18514
18515         * recog.c (split_all_insns): Include new blocks in life update;
18516         do a global life update.
18517
18518 2003-02-15  Danny Smith  <dannysmith@users.sourceforge.net>
18519
18520         * config/i386/mingw32.h (LIBGCC_SPEC): Add libmingwex.a.
18521         Update copyright.
18522         * config/i386/cygwin.h (LIBGCC_SPEC): Add libmingwex.a for
18523         -mno-cygwin case.
18524
18525 2003-02-14  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
18526
18527         PR optimization/7702
18528         * reload1.c (reload_cse_simplify_set): Honor
18529         CANNOT_CHANGE_MODE_CLASS.
18530
18531 2003-02-14  Alexandre Oliva  <aoliva@redhat.com>
18532
18533         * config/mn10300/mn10300.c (mn10300_wide_const_load_uses_clr): New
18534         function.
18535         * config/mn10300/mn10300-protos.h: Declare it.
18536         * config/mn10300/mn10300.md (movdi, movdf): Use it to compute
18537         attribute cc of instructions that may use clr.
18538
18539 2003-02-14  Kazu Hirata  <kazu@cs.umass.edu>
18540
18541         * simplify-rtx.c (simplify_binary_operation): Simplify ~y when
18542         (x - (x & y)) is found.
18543
18544 2003-02-14  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
18545
18546         * configure.in: Fix typo.
18547         * configure: Regenerate.
18548
18549 2003-02-14  Kazu Hirata  <kazu@cs.umass.edu>
18550
18551         * config/h8300/h8300.md (*iorsi2_and_1_lshiftrt_1): New.
18552
18553 2003-02-13  Adam Nemet  <anemet@lnxw.com>
18554
18555         PR opt/2391
18556         * combine.c: Fix spelling in comment.
18557         (cached_nonzero_bits): New function.
18558         (cached_num_sign_bit_copies): New function.
18559         (nonzero_bits_with_known): New macro.
18560         (num_sign_bit_copies_with_known): New macro.
18561         (nonzero_bits1): Rename from nonzero_bits.  Add three new
18562         arguments.  Change calls from nonzero_bits to
18563         nonzero_bits_with_known.
18564         (num_sign_bit_copies1): Rename from num_sign_bit_copies.  Add
18565         three new arguments.  Change calls from num_sign_bit_copies to
18566         num_sign_bit_copies_with_known.
18567         (nonzero_bits): New macro.
18568         (num_sign_bit_copies): New macro.
18569         (update_table_tick): Don't traverse identical subexpression more
18570         than once.
18571         (get_last_value_validate): Likewise.
18572
18573 2003-02-13  Zack Weinberg  <zack@codesourcery.com>
18574
18575         * emit-rtl.c (init_emit): Use ggc_alloc for regno_reg_rtx.
18576         * function.h (struct emit_status): Length of regno_pointer_align
18577         and x_regno_reg_rtx as seen by gengtype is only x_reg_rtx_no,
18578         not regno_pointer_align_length (i.e. length actually used, not
18579         length as allocated)
18580
18581         * config/i386/i386.c (struct stack_local_entry): New.
18582         (struct machine_function): Replace huge array with alist.
18583         (assign_386_stack_local): Change to match.
18584
18585 2003-02-13  John David Anglin  <dave.anglin@nrc-crnc.gc.ca>
18586
18587         * inclhack.def (hpux_long_double): Tighten select and add bypass
18588         regexp.
18589         * fixincl.x: Rebuilt.
18590
18591 2003-02-13  Josef Zlomek  <zlomekj@suse.cz>
18592
18593         * cfgcleanup.c (outgoing_edges_match): When there is single outgoing
18594         edge and block ends with a jump insn it must be simple jump.
18595
18596 2003-02-13  Daniel Jacobowitz  <drow@mvista.com>
18597
18598         * Makefile.in (PREPROCESSOR_DEFINES): Add
18599         @TARGET_SYSTEM_ROOT_DEFINE@.
18600         * configure.in (PREFIX_INCLUDE_DIR): Don't define if $with_sysroot
18601         is specified or if building a cross compiler.
18602         (TARGET_SYSTEM_ROOT_DEFINE): Add TARGET_SYSTEM_ROOT_RELOCATABLE
18603         if the sysroot is under $exec_prefix.
18604         * configure: Regenerated.
18605         * cppdefault.h: Use native include paths if TARGET_SYSTEM_ROOT is
18606         defined.
18607         (struct default_include): Add add_sysroot field.
18608         (cpp_SYSROOT): Declare.
18609         * cppdefault.c (cpp_include_defaults): Fill in add_sysroot
18610         field.
18611         (cpp_SYSROOT): New variable.
18612         * cppinit.c (cpp_create_reader): Initialize
18613         CPP_OPTION (pfile, sysroot).
18614         (init_standard_includes): Handle add_sysroot.  Do not
18615         add unrelocated copies of relocated directories.
18616         (COMMAND_LINE_OPTIONS): Add -isysroot.
18617         (cpp_handle_option): Handle -isysroot.
18618         * cpplib.h (struct cpp_options): Add sysroot member.
18619         * gcc.c (The Specs Language): Update description of %I.
18620         (target_system_root_changed): New variable.
18621         (process_command): Conditionalize make_relative_prefix call
18622         on !VMS and TARGET_SYSTEM_ROOT_RELOCATABLE.  Set
18623         target_system_root_changed.
18624         (do_spec_1): Add -isysroot to %I.
18625         * doc/invoke.texi (Spec Files): Update description of %I.
18626         * doc/install.texi (--with-sysroot): Update comment about
18627         relocation.
18628
18629 2003-02-13  Kazu Hirata  <kazu@cs.umass.edu>
18630
18631         * config/h8300/h8300.md (a peephole2): New.
18632
18633 2003-02-13  Robert Lipe <robertlipe@usa.net>
18634             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
18635
18636         * doc/install.texi (Specific): Update three SCO-related URLs.
18637
18638 2003-02-13  Andreas Schwab  <schwab@suse.de>
18639
18640         * cgraph.c (SET_NPREDECESORS): Add intermediate cast to size_t.
18641         Parenthesize properly.
18642         (NPREDECESORS): Parenthesize properly.
18643
18644 2003-02-13  Gabriel Dos Reis  <gdr@integrable-solutions.net>
18645
18646         * timevar.h (POP_TIMEVAR_AND_RETURN): New macro.
18647
18648 2003-02-12  Roger Sayle  <roger@eyesopen.com>
18649
18650         * config/i386/i386.md (UNSPEC_FPATAN): New UNSPEC constant.
18651         (atan2sf3, atan2df3, atan2xf3, atan2tf3): New patterns.
18652
18653         * reg-stack.c (subst_stack_regs_pat): Add support for binary
18654         UNSPEC instructions (e.g. "fpatan").
18655
18656 2003-02-12  Mike Stump  <mrs@apple.com>
18657
18658         * varray.c (element_size): Remove.
18659         (uses_ggc): Remove.
18660         (element): Add.
18661         (varray_init): Use new interface.
18662         (varray_grow): Use new interface.
18663         (varray_clear): Use new interface.
18664
18665 2003-02-12  Aldy Hernandez  <aldyh@redhat.com>
18666
18667         * config/rs6000/spe.h: Add casts to the arguments of the following
18668         macros: evfsabs, evfsnabs, evfsneg, evfsadd, evfssub, evfsmul,
18669         evfsdiv, evfscfui, evfscfsi evfscfuf evfscfsf, evfsctui, evfsctsi,
18670         evfsctuf, evfsctsf, evfsctuiz, evfsctsiz, __ev_get_upper*,
18671         __ev_get_lower*, __ev_get_u32, __ev_get_s32, __ev_get_fs,
18672         __ev_get_u16, __ev_get_s16.
18673
18674 2003-02-12  Kazu Hirata  <kazu@cs.umass.edu>
18675
18676         * config/h8300/h8300.md (a peephole2): New.
18677
18678 2003-02-12  Jan Hubicka  <jh@suse.cz>
18679
18680         * Makefile.in (CRTSTUFF_CFLAGS): Add -fno-unit-at-a-time
18681         (OBJS): Add callgraph.o
18682         (callgraph.o): New.
18683         * c-decl.c (expand_body_1): Break out from ...
18684         (expand_body): This one;  change calling convention
18685         (finish_function): Move some of expand_body logic here.
18686         (c_expand_deferred_function): Update call of expand_body
18687         (c_expand_stmt): Use c_expand_body_1.
18688         * c-lang.c (LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION): Define.
18689         * c-objc-commin.c (c_objc_common_finish_file): Use callgraph code.
18690         * c-tree.h (c_expand_body): Declare.
18691         * callgraph.c: New file.
18692         * flags.h (flag_unit_at_a_time): Declare.
18693         * langhooks.h (LANG_HOOKS_CALLGRAPH_LOWER_FUNCTION,
18694         LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION,
18695         LANG_HOOKS_CALLGRAPH_INITIALIZER): New macros.
18696         * langhooks.h (struct lang_hooks_for_callgraph): New.
18697         (struct lang_hooks): Add callgraph field.
18698         * toplev.c (flag_unit_at_a_time): New.
18699         (lang_independent_options): Add flag_unit_at_a_time.
18700         (process_options): Disable unit-at-a-time mode for frontends not
18701         supporting callgraph.
18702         * tree-inline.c (typedef struct inline_data): Add "decl"
18703         (expand_call_inline): Update callgraph.
18704         (optimize_inline_calls): Set id.decl.
18705         * tree.h (cgraph_finalize_function, cgraph_finalize_compilation_unit,
18706         cgraph_create_edges, dump_cgraph, cgraph_optimize, cgraph_remove_call
18707         cgraph_calls_p): Declare.
18708         * invoke.texi (-funit-at-a-time): Document
18709
18710 2003-02-12  Aldy Hernandez  <aldyh@redhat.com>
18711
18712         * config/rs6000/spe.h: Fix misc formatting.
18713         (__ev_create_ufix32_fs): Cast ev argument.
18714         (__ev_create_sfix32_fs): Same.
18715         (__ev_get_sfix32_fs_internal): Cast arguments to builtins.
18716         (__ev_get_ufix32_fs_internal): Same.
18717
18718 2003-02-12  Ranjit Mathew  <rmathew@hotmail.com>
18719
18720         * doc/tm.texi (MODIFY_JNI_METHOD_CALL): Document.
18721         * config/i386/cygwin.h (MODIFY_JNI_METHOD_CALL): New macro.
18722
18723 2003-02-12  Zack Weinberg  <zack@codesourcery.com>
18724
18725         * cpplib.c (do_include_common): Move warnings for
18726         #include_next and #import out to callers.  Use early-return
18727         instead of nested ifs.  Don't do check_eol here.
18728         (parse_include): Do check_eol here with the rest of the
18729         parsing stuff.
18730         (do_include_next, do_import): Now handle warnings.
18731
18732 2003-02-11  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
18733
18734         * doc/install.texi (Specific): Update AVR- and Darwin-related URLs.
18735
18736 2003-02-12  Jan Hubicka  <jh@suse.cz>
18737
18738         * predict.c (estimate_probability):  Fix roundoff error.
18739
18740 2003-02-12  Kazu Hirata  <kazu@cs.umass.edu>
18741
18742         * config/h8300/h8300.md (a peephole2): Don't handle 65535.
18743         (two peephole2): New.
18744
18745 2003-02-12  Kazu Hirata  <kazu@cs.umass.edu>
18746
18747         * config/h8300/h8300.md (several peephole2): Replace
18748         find_regno_note with peep2_reg_dead_p.
18749
18750 2003-02-11  Richard Henderson  <rth@redhat.com>
18751
18752         * gcse.c (lookup_set): Remove unused argument PAT.  Update
18753         both callers.
18754
18755 2003-02-11  Geoffrey Keating  <geoffk@apple.com>
18756
18757         * diagnostic.c (real_abort): New.
18758         (diagnostic_report_diagnostic): Call real_abort on error.
18759         * diagnostic.h (diagnostic_abort_on_error): New.
18760         (struct diagnostic_context): Add abort_on_error field.
18761         * toplev.c (setup_core_dumping): New.
18762         (decode_d_option): Handle 'H' case.
18763         * doc/invoke.texi (Debugging Options): Document -dH.
18764
18765 2003-02-11  Nathanael Nerode  <neroden@gcc.gnu.org>
18766
18767         * Makefile.in: Remove pointless setting of CXXFLAGS for dejagnu
18768         which refers to obsolete directories.
18769
18770 2003-02-11  Richard Henderson  <rth@redhat.com>
18771
18772         * config/alpha/linux.h (TARGET_C99_FUNCTIONS): New.
18773
18774 2002-10-21  Jan Hubicka  <jh@suse.cz>
18775
18776         * i386.c (contains_128bit_aligned_vector_p): New function.
18777         (ix86_function_arg_boundary): Properly align vector modes.
18778
18779 2003-02-11  Bob Wilson  <bob.wilson@acm.org>
18780
18781         * config/xtensa/xtensa.md (set_frame_ptr): Change rtl to set reg a7.
18782         * config/xtensa/xtensa.c (xtensa_reorg): Search for UNSPECV_SET_FP
18783         as a SET pattern.
18784
18785 2003-02-11  Roger Sayle  <roger@eyesopen.com>
18786
18787         * builtins.c:  Fix failure caused by commiting wrong patch.
18788
18789 2003-02-11  Dale Johannesen  <dalej@apple.com>
18790         * ra-build.c (compare_and_free_webs):  Relax checking.
18791         * config/rs6000/darwin.h (HOT_TEXT_SECTION_NAME):  Define.
18792         (UNLIKELY_EXECUTED_TEXT_SECTION_NAME):  Define.
18793
18794 2003-02-11  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
18795
18796         PR optimization/9651
18797         * rtlanal.c (may_trap_p): Handle FIX.
18798
18799 2003-02-11  Dave Jones <davej@codemonkey.org.uk>
18800
18801         * config/i386/i386.c (override_options): Define c3-2 as a 686 with SSE.
18802         * doc/invoke.texi: Extra alias.
18803
18804 2003-02-11  Geoffrey Keating  <geoffk@apple.com>
18805
18806         * config/rs6000/host-darwin.c: Fix comment.
18807
18808 2003-02-11  David Edelsohn  <edelsohn@gnu.org>
18809
18810         * config/rs6000/rs6000.md (divmodsi4): Use register_operand
18811         predicate for mod result.
18812
18813 2003-02-11  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
18814
18815         * inclhack.def (hpux_long_double, hpux10_ctype_declarations1,
18816         hpux10_ctype_declarations2, hpux_ctype_macros): New hacks.
18817         * fixincl.x: Rebuilt.
18818         * tests/base/stdlib.h: Update.
18819         * tests/base/ctype.h: New file.
18820
18821 2003-02-11  Jan Hubicka  <jh@suse.cz>
18822
18823         * emit-rtl.c (emit_copy_of_insn_after): Copy insn recog cache too.
18824
18825 2003-02-11  Richard Henderson  <rth@redhat.com>
18826
18827         * config/i386/i386.c (ix86_expand_movstr): Fail if esi or edi
18828         appropriated as globals.
18829         (ix86_expand_clrstr): Similarly.
18830         * config/i386/i386.md (cmpstrsi): Similarly.
18831
18832 2003-02-11  Kazu Hirata  <kazu@cs.umass.edu>
18833
18834         * config/h8300/h8300.md (a peephole2): Add a case of 255.
18835
18836 2003-02-11  Roger Sayle  <roger@eyesopen.com>
18837
18838         * optabs.h (enum optab_index): Add new OTI_pow and OTI_atan2.
18839         (pow_optab, atan2_optab): Define corresponding macros.
18840         * optabs.c (init_optabs): Initialize pow_optab and atan2_optab.
18841         * genopinit.c (optabs): Implement pow_optab and atan2_optab
18842         using pow?f3 and atan2?f3 patterns.
18843         * builtins.c (expand_errno_check): New function to update errno
18844         if necessary, split out from expand_builtin_mathfn.
18845         (expand_builtin_mathfn): Use expand_errno_check.
18846         (expand_builtin_mathfn_2): New function to handle expanding binary
18847         math functions, reusing the code in expand_errno_check.
18848         (expand_builtin): Handle the pow and atan2 math built-ins,
18849         BUILT_IN_{POW,POWF,POWL,ATAN2,ATAN2F,ATAN2L} via the new function
18850         expand_builtin_mathfn_2.
18851
18852         * doc/md.texi: Document new pow?f3 and atan2?f3 patterns.
18853
18854 2003-02-11  Jan Hubicka  <jh@suse.cz>
18855
18856         * combine.c (combine_simplify_rtx): Fix folding of
18857         nested float_truncates.
18858
18859 2003-02-11  Kazu Hirata  <kazu@cs.umass.edu>
18860
18861         * config/h8300/h8300.md (a peephole2): Fix a typo.
18862
18863 2003-02-11  Richard Earnshaw  <rearnsha@arm.com>
18864
18865         * arm.mc (return_address_mask): Use CC_REGNUM for the condition code
18866         register number.
18867
18868 2003-02-11  Kazu Hirata  <kazu@cs.umass.edu>
18869
18870         * config/h8300/h8300-protos.h: Add a prototype for
18871         gtuleu_operator.
18872         * config/h8300/h8300.c (gtuleu_operator): New.
18873         * config/h8300/h8300.h (PREDICATE_CODES): Add gtuleu_operator.
18874         * config/h8300/h8300.md (a peephole2): New.
18875
18876 2003-02-11  Jan Hubicka  <jh@suse.cz>
18877
18878         * sched-ebb.c (schedule_ebbs): Do not verify_flow_info.
18879
18880 2003-02-11  Jan Hubicka  <jh@suse.cz>
18881
18882         * predict.c (choose_function_section): Choose sections correctly.
18883
18884 2003-02-10  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
18885
18886         * reload1.c (first_label_num): New.
18887         (reload): Index offsets_known_at and offsets_at using difference of
18888         label number and first label number.  Don't use offset pointers.
18889         (set_label_offsets, set_initial_label_offsets): Likewise.
18890
18891 2003-02-10  Roger Sayle  <roger@eyesopen.com>
18892
18893         * mips-tfile.c (init_file): Add missing initializers in the
18894         "#ifdef __alpha" case.
18895         (file_offset, max_file_offset): Declare as unsigned long.
18896         (write_varray): Cast to "unsigned long" in comparisons against
18897         either file_offset or max_file_offset.
18898         (write_object): Likewise.
18899         (read_seek): Likewise.
18900         (copy_object): Likewise. Declare "ifd" as int to match its use
18901         in add_ext_symbol, and avoid signed/unsigned conditional warning.
18902
18903 2003-02-10  Nick Clifton  <nickc@redhat.com>
18904             Aldy Hernandez  <aldyh@redhat.com>
18905
18906         * config/rs6000/eabispe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Do not
18907         override options which have been specified on the command line.
18908
18909 2003-02-10  Kazu Hirata  <kazu@cs.umass.edu>
18910
18911         * config/h8300/h8300.md (abssf2): New.
18912         (*abssf2_h8300): Likewise.
18913         (*abssf2_h8300hs): Likewise.
18914
18915 2003-02-10  Phil Edwards  <pme@gcc.gnu.org>
18916
18917         * tree.c (build_tree_list):  Fix parameter names in comment.
18918
18919 2003-02-10  Janis Johnson  <janis187@us.ibm.com>
18920
18921         * config/rs6000/ppc64-fp.c: New file.
18922         * config/rs6000/t-linux64 (LIB2FUNCS_EXTRA): Add ppc64-fp.c.
18923
18924 2003-02-10  Josef Zlomek  <zlomekj@suse.cz>
18925
18926         * Makefile.in (bb-reorder.o): Add dependency on $(FIBHEAP_H).
18927         * bb-reorder.c (make_reorder_chain): Deleted.
18928         (make_reorder_chain_1): Deleted.
18929         (find_traces): New function.
18930         (rotate_loop): New function.
18931         (mark_bb_visited): New function.
18932         (find_traces_1_round): New function.
18933         (copy_bb): New function.
18934         (bb_to_key): New function.
18935         (better_edge_p): New function.
18936         (connect_traces): New function.
18937         (copy_bb_p): New function.
18938         (get_uncond_jump_length): New function.
18939         (reorder_basic_blocks): Use new functions (Software Trace Cache).
18940         * cfgcleanup.c (outgoing_edges_match): Enable crossjumping across loop
18941         boundaries.
18942
18943 2003-02-10  Aldy Hernandez  <aldyh@redhat.com>
18944
18945         * config/rs6000/rs6000.c (bdesc_2arg): Change spe_evxor to xorv2si3.
18946
18947 2003-02-09  Dan Nicolaescu  <dann@ics.uci.edu>
18948
18949         * tree.h (struct tree_decl): Remove unused live_range_rtl field.
18950         (DECL_LIVE_RANGE_RTL): Remove.
18951
18952 2003-02-10  Nick Clifton  <nickc@redhat.com>
18953
18954         * config/arm/aof.h, config/arm/aout.h, config/arm/arm-modes.def,
18955         config/arm/arm-protos.h, config/arm/arm.c, config/arm/arm.h,
18956         config/arm/arm.md, config/arm/cirrus.md, config/arm/coff.h,
18957         config/arm/conix-elf.h, config/arm/ecos-elf.h, config/arm/elf.h,
18958         config/arm/freebsd.h, config/arm/linux-elf.h,
18959         config/arm/linux-gas.h, config/arm/netbsd-elf.h,
18960         config/arm/netbsd.h, config/arm/pe.c, config/arm/pe.h,
18961         config/arm/rtems-elf.h, config/arm/semi.h, config/arm/semiaof.h,
18962         config/arm/strongarm-coff.h, config/arm/strongarm-elf.h,
18963         config/arm/strongarm-pe.h, config/arm/uclinux-elf.h,
18964         config/arm/unknown-elf-oabi.h, config/arm/unknown-elf.h,
18965         config/arm/xscale-elf.h: Replace occurances of "GNU CC" with "GCC"
18966         and reformat as appropriate.
18967
18968 2003-02-10  Kazu Hirata  <kazu@cs.umass.edu>
18969
18970         * config/h8300/clzsi2.c: Remove.
18971         * config/h8300/ctzsi2.c: Likewise.
18972         * config/h8300/paritysi2.c: Likewise.
18973         * config/h8300/popcountsi2.c: Likewise.
18974         * config/h8300/t-h8300 (LIB2FUNCS_EXTRA): Remove clzsi2,
18975         ctzsi2, paritysi2, and popcountsi2.
18976
18977 2003-02-10  Eric Botcazou  <ebotcazou@libertysurf.fr>
18978             Christian Ehrhardt  <ehrhardt@mathematik.uni-ulm.de>
18979
18980         PR c/7741
18981         * c-decl.c (duplicate_decls): Discard the initializer of the
18982         new decl when the types are conflicting.
18983
18984 2003-02-10  Josef Zlomek  <zlomekj@suse.cz>
18985
18986         * Makefile.in (sreal.o): Added.
18987         (predict.o): Depends on sreal.h instead of real.h.
18988         * sreal.c: New file.
18989         * sreal.h: New file.
18990         * predict.c: Use sreal.c instead of real.c.
18991
18992 2003-02-10  Nick Clifton  <nickc@redhat.com>
18993
18994         * Contributed support for the Cirrus EP9312 "Maverick"
18995         floating point co-processor.  Written by Aldy Hernandez
18996         <aldyh@redhat.com>.
18997         (config/arm/arm.c): Add Cirrus support.
18998         (config/arm/arm.h): Likewise.
18999         (config/arm/aout.h): Likewise.
19000         (config/arm/arm.md): Likewise.
19001         (config/arm/arm-protos.h): Likewise.
19002         (config.gcc): Likewise.
19003         (doc/invoke.texi): Describe new -mcpu value and new
19004         -mcirrus-fix-invalid-insns switch,
19005         (cirrus.md): New file.
19006
19007 2003-02-10  Jan Hubicka  <jh@suse.cz>
19008
19009         * combine.c (combine_simplify_rtx): Simplify using
19010         (float_truncate (float x)) is (float x)
19011         (float_extend (float_extend x)) is (float_extend x).
19012
19013 2003-02-10  Alan Modra  <amodra@bigpond.net.au>
19014
19015         * calls.c (try_to_integrate): Tidy stack_usage_map access.
19016         (emit_library_call_value_1): Likewise.  Formatting.
19017         (store_one_arg): Likewise.
19018
19019 2003-02-09  Nick Clifton  <nickc@redhat.com>
19020             Aldy Hernandez  <aldyh@redhat.com>
19021
19022         * config/rs6000/spe.md: spe_evlhhesplat, spe_evlhhossplat,
19023         spe_evlhhousplat, spe_evlwhsplat, spe_evlwwsplat, spe_evldd,
19024         spe_evldh, spe_evldw, spe_evlwhe, spe_evlwhos, spe_evlwhou,
19025         spe_evstdd, spe_evstdh, spe_evstdw, spe_evstdwx, spe_evstwhe,
19026         spe_evstwho, spe_evstwwe, spe_evstwwo: Fix syntax to match newest
19027         docs.  Add range test for immediate value.
19028
19029 2003-02-09  Aldy Hernandez  <aldyh@redhat.com>
19030
19031         Rename spe_evxor to xorv2si3.
19032         (xorv4hi3): New.
19033         (xorv1di3): New.
19034
19035 2003-02-10  Glen Nakamura  <glen@imodulo.com>
19036
19037         * doc/extend.texi (C++98 Thread-Local Edits): Add missing @item
19038         tag.
19039
19040 2003-02-10  Jan Hubicka  <jh@suse.cz>
19041
19042         * i386.c (vector_move_operand): New predicate.
19043         (ix86_expand_vector_move): Be happy about 0.
19044         * i386.h (PREDICATE_CODES): Add sse-move_operand.
19045         * i386.md (mov*_internal): Add 'C' alternative.
19046
19047 2003-02-09  Jan Hubicka  <jh@suse.cz>
19048
19049         * i386.md (floathi*): Deal with SSE.
19050
19051 2003-02-09  Jan Hubicka  <jh@suse.cz>
19052
19053         * simplify-rtx.c (simplify_unary_operation,
19054         simplify_binary_operation):  Deal with vector modes
19055         (simplify_ternary_operation):  Deal with no-op VEC_MERGE.
19056
19057 2003-02-09  Richard Sandiford  <rsandifo@redhat.com>
19058
19059         * toplev.c (rest_of_compilation): Recompute register usage after
19060         split_all_insns.
19061
19062 2003-02-09  Richard Henderson  <rth@redhat.com>
19063
19064         * libgcc-std.ver (__clztf2): New.
19065         (__ctztf2, __popcounttf2, __paritytf2): New.
19066         * libgcc2.c (__clzSI2, __clzDI2, __ctzSI2, __ctzDI2, __popcountSI2,
19067         __popcountDI2, __paritySI2, __parityDI2): Use UWmode and UDWmode;
19068         adjust code to match the different type sizes.
19069         * libgcc2.h (__clzSI2, __ctzSI2, __popcountSI2, __paritySI2,
19070         __clzDI2, __ctzDI2, __popcountDI2, __parityDI2): New macros.
19071
19072         * optabs.c (init_integral_libfuncs): Don't hard-code SImode and
19073         TImode; select word_mode and twice that.
19074         (init_floating_libfuncs): Don't hard-code SFmode and TFmode;
19075         select the modes from float, double, and long double.
19076         (init_optabs): Remove duplicate initializations.
19077
19078 2003-02-09  Wolfgang Bangerth  <bangerth@ticam.utexas.edu>
19079
19080         * doc/install.texi: Squeeze and streamline section on
19081         testing and regression checking.
19082
19083 2003-02-09  Jan Hubicka  <jh@suse.cz>
19084
19085         * i386.md (ahi?v*3): Set third operand type to TImode.
19086         * i386.c (ix86_expand_binop_builtin): Extend operand when needed.
19087
19088         * simplify-rtx.c (simplify_subreg): Fix conversion from vector into
19089         integer mode.
19090
19091         * rtl.def (VEC_MERGE, VEC_SELECT, VEC_CONCAT, VEC_DUPLICATE):
19092         Change code so they are arithmetic expressions now.
19093         * simplify-rtx.c (simplify_unary_operation, simplify_binary_operation,
19094         simplify_ternary_operation): Deal with VEC_* expressions.
19095
19096         * i386.md (vmaskcmp, pinsrw, movd patterns):  Fix RTL representation.
19097
19098 2003-02-08  Jan Hubicka  <jh@suse.cz>
19099
19100         * cfgrtl.c (verify_flow_info):  Use control_flow_insn_p.
19101         * reload1.c (fixup_abnormal_edges):  Split basic blocks when EH edges
19102         possibly got duplicated.
19103
19104 2003-02-08  Richard Henderson  <rth@redhat.com>
19105
19106         * config/alpha/alpha.c (override_options): Turn off explicit
19107         relocs until post-peep2 code duplication resolved.
19108
19109 2003-02-08  Kazu Hirata  <kazu@cs.umass.edu>
19110
19111         * optabs.c (expand_unop): Widen clz properly when clz is done
19112         via libcall.
19113
19114 2003-02-08  Kazu Hirata  <kazu@cs.umass.edu>
19115
19116         * config/h8300/clzsi2.c: Replace "GNU CC" with "GCC".
19117         * config/h8300/crti.asm: Likewise.
19118         * config/h8300/crtn.asm: Likewise.
19119         * config/h8300/ctzsi2.c: Likewise.
19120         * config/h8300/fixunssfsi.c: Likewise.
19121         * config/h8300/h8300-protos.h: Likewise.
19122         * config/h8300/h8300.c: Likewise.
19123         * config/h8300/h8300.h: Likewise.
19124         * config/h8300/h8300.md: Likewise.
19125         * config/h8300/paritysi2.c: Likewise.
19126         * config/h8300/popcountsi2.c: Likewise.
19127         * config/h8300/rtems.h: Likewise.
19128
19129 2003-02-08  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
19130
19131         * doc/invoke.texi: Documentation for my previous commit.
19132         * doc/passes.texi: Ditto.
19133
19134 2003-02-08  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
19135
19136         * cfgloop.h (fix_loop_placement, can_duplicate_loop_p,
19137         duplicate_loop_to_header_edge, loopify, remove_path, split_loop_bb):
19138         Declare.
19139         (DLTHE_FLAG_UPDATE_FREQ): New.
19140         * cfgloopmanip.c (duplicate_loop, duplicate_subloops, copy_loops_to,
19141         loop_redirect_edge, loop_delete_branch_edge, copy_bbs, remove_bbs,
19142         rpe_enum_p, find_branch, alp_enum_p, add_loop, fix_loop_placements,
19143         fix_bb_placement, fix_bb_placements, place_new_loop,
19144         scale_loop_frequencies, scale_bbs_frequencies, record_exit_edges):
19145         New static functions.
19146         (fix_loop_placement, can_duplicate_loop_p,
19147         duplicate_loop_to_header_edge, loopify, remove_path, split_loop_bb):
19148         New functions.
19149
19150         * cfgloop.h (loop_optimizer_init, loop_optimizer_finalize,
19151         unswitch_loops): Declare.
19152         * loop-init.c: New file.
19153         * loop-unswitch.c: New file.
19154         * Makefile.in (loop-init.o, loop-unswitch.o): New.
19155         * params.def (PARAM_MAX_UNSWITCH_INSNS, PARAM_MAX_UNSWITCH_LEVEL): New.
19156         * toplev.c (DFI_loop2): New dump.
19157         (flag_unswitch_loops): New.
19158         (lang_independent_options): Add it.
19159         (rest_of_compilation): Call new loop optimizer.
19160         (parse_options_and_default_flags): Turn flag_unswitch_loops on with -O3.
19161
19162 2003-02-08  Kazu Hirata  <kazu@cs.umass.edu>
19163
19164         * config/h8300/clzsi2.c: New.
19165         * config/h8300/ctzsi2.c: Likewise.
19166         * config/h8300/paritysi2.c: Likewise.
19167         * config/h8300/popcountsi2.c: Likewise.
19168         * config/h8300/t-h8300 (LIB2FUNCS_EXTRA): Add above files.
19169
19170 2003-02-07  David Edelsohn  <edelsohn@gnu.org>
19171
19172         * config/rs6000/rs6000.h (CLZ_DEFINED_VALUE_AT_ZERO): Define.
19173         * config/rs6000/rs6000.md (clzsi2): Rename from cntlzw2.
19174         (ctzsi2): New pattern.
19175         (ffssi2): Use clz instead of unspec.
19176         (clzdi2): Rename from cntlzd2.
19177         (ctzdi2): New pattern.
19178         (ffsdi2): Use clz instead of unspec.
19179
19180 2003-02-07  Loren James Rittle  <ljrittle@acm.org>
19181
19182         * config/alpha/freebsd.h (LINK_SPEC): Weaken error to notice.
19183         * config/ia64/freebsd.h (LINK_SPEC): Likewise.
19184         * config/sparc/freebsd.h (LINK_SPEC): Likewise.
19185         * config/i386/freebsd.h (LINK_SPEC): Add clause to mirror other arches.
19186
19187 2003-02-07  Wolfgang Bangerth  <bangerth@ticam.utexas.edu>
19188
19189         * doc/trouble.texi: Document pitfalls of two-stage name lookup.
19190
19191 2003-02-07  Richard Henderson  <rth@redhat.com>
19192
19193         PR 9226
19194         * gcse.c (local_cprop_find_used_regs): New.
19195         (local_cprop_pass): Use it.
19196
19197 2003-02-07  Fred Fish  <fnf@intrinsity.com>
19198
19199         * mips-tfile.c (parse_def): Parenthesize assignments to fix
19200         precedence bugs.
19201
19202 2003-02-07  Segher Boessenkool  <segher@koffie.nl>
19203
19204         * genoutput.c (output_get_insn_name): Handle NOOP_MOVE_INSN_CODE.
19205
19206 2003-02-07  Roger Sayle  <roger@eyesopen.com>
19207
19208         * builtin-types.def (BT_FN_FLOAT_FLOAT_FLOAT): New built-in type.
19209         (BT_FN_LONG_DOUBLE_LONG_DOUBLE_LONG_DOUBLE): Likewise.
19210         (BT_FN_DOUBLE_DOUBLE_DOUBLE): Likewise.
19211         * builtins.def: Define pow, powf, powl, atan2, atan2f and atan2l
19212         builtin functions (and their __builtin_* variants).
19213         * builtins.c (mathfn_built_in): Handle missing log{,f,l} cases.
19214         (expand_builtin): Don't expand log{,f,l}, pow{,f,l} or atan2{,f,l}
19215         when not optimizing.
19216
19217         * doc/extend.texi: Document new pow and atan2 builtins, and
19218         their float and long double variants.  Realphabetize builtins.
19219
19220 2003-02-07  Jan Hubicka  <jh@suse.cz>
19221
19222         * i386.md (sse2_nandv2di3): Fix.
19223
19224 2003-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
19225
19226         * config/i386/i386.h (MS_AGGREGATE_RETURN): New define.
19227         * config/i386/cygwin.h (MS_AGGREGATE_RETURN): Override default
19228         definition.
19229         * config/i386/i386.h (ix86_return_in_memory): Return aggregate
19230         types of up to 8 bytes via registers if MS_AGGREGATE_RETURN.
19231
19232 2003-02-07  Jan Hubicka  <jh@suse.cz>
19233
19234         * i386.md (movdi_rex64_1): Fix mmx<->int move opcode.
19235
19236 2003-02-07  Daniel Berlin  <dberlin@dberlin.org>
19237
19238         * cfg.c (dump_flow_info): Add back accidently deleted line.
19239
19240 2003-02-07  Andrey Petrov <petrov@netbsd.org>
19241
19242         * optabs.c (expand_float): Search wider integer modes first.
19243
19244 2003-02-07  Bob Wilson  <bob.wilson@acm.org>
19245
19246         * config/xtensa/xtensa.h (LIBGCC2_WORDS_BIG_ENDIAN): Set this
19247         based on preprocessor flag.
19248
19249 2003-02-07  Roger Sayle  <roger@eyesopen.com>
19250             Richard Henderson  <rth@redhat.com>
19251
19252         * gcse.c (implicit_sets): New.
19253         (compute_hash_table_work): Include them in hash table.
19254         (find_implicit_sets, fis_get_condition): New.
19255         (one_cprop_pass): Allocate and free implicit_sets; call
19256         find_implicit_sets before building hash table.
19257
19258 2003-02-07  Jason Thorpe  <thorpej@wasabisystems.com>
19259
19260         * config/t-netbsd (USER_H): Revert previous change.
19261
19262 2003-02-07  Gabor Greif  <ggreif@lucent.com>
19263
19264         * doc/c-tree.texi (Namespaces): Fix typo.
19265
19266 2003-02-07  Jan Hubicka  <jh@suse.cz>
19267
19268         * regrename.c (do_replace, find_oldest_value_reg,
19269         copyprop_hardreg_forward_1): Update register attributes.
19270
19271 2003-02-06  Vladimir Makarov  <vmakarov@redhat.com>
19272
19273         * genautomata.c (VLA_PTR_CREATE, VLA_PTR_EXPAND, VLA_PTR_ADD,
19274         VLA_HWINT_CREATE, VLA_HWINT_EXPAND, VLA_HWINT_ADD): Use temporay
19275         variables starting with underscore.
19276         (struct unit_usage): New structure.
19277         (unit_usages, cycle_alt_unit_usages): New global variables.
19278         (check_unit_distribution_in_reserv): Remove it.
19279         (store_alt_unit_usage): New function.
19280         (check_regexp_units_distribution): Rewrite it.
19281
19282 2003-02-06  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
19283
19284         * config.gcc (hppa*-*-linux*): Set MASK_NO_SPACE_REGS in
19285         target_cpu_default.
19286         * pa.c (attr_length_call): Add 8 to call length (long indirect PA 1.X)
19287         if not MASK_NO_SPACE_REGS.
19288         (output_call): Adjust return pointer, don't load new space register
19289         into %sr0, and use %sr4 for call if TARGET_NO_SPACE_REGS is true.
19290         (pa_asm_output_mi_thunk): Don't load new space register into %sr0 if
19291         TARGET_NO_SPACE_REGS is true.
19292         * pa.md (return_external_pic): Add TARGET_NO_SPACE_REGS to insn
19293         conditions.
19294         (epilogue): Always use return_internal if TARGET_NO_SPACE_REGS is true.
19295         (interspace_jump): Add new pattern for when TARGET_NO_SPACE_REGS is
19296         true.  Use bve when TARGET_64BIT is true.
19297
19298 2003-02-06  Richard Henderson  <rth@redhat.com>
19299
19300         * combine.c (nonzero_bits): Fix double break.
19301
19302 2003-02-06  Eric Botcazou <ebotcazou@libertysurf.fr>
19303             Richard Henderson <rth@redhat.com>
19304
19305         PR c/9530
19306         * config/i386/i386.c (ix86_function_ok_for_sibcall): Forbid sibcalls
19307         from functions that return a float to functions that don't.
19308
19309 2003-02-06  Jan Hubicka  <jh@suse.cz>
19310
19311         * i386.c (x86_inter_unit_moves): New variable.
19312         (ix86_secondary_memory_needed): Fix 64bit case, honor
19313         TARGET_INTER_UNIT_MOVES
19314         * i386.h (x86_inter_unit_moves): Declare.
19315         (TARGET_INTER_UNIT_MOVES): New macro.
19316         * i386.md (movsi_1): Cleanup constraints; disable
19317         when not doing inter-unit moves.
19318         (movsi_1_nointernunit): New.
19319         (movdi_1_rex64): Fix constraints; deal with SSE->GPR moves.
19320         (movdi_1_rex64_nointerunit): New.
19321         (mivsf_1): disable when not doing inter-unit moves.
19322         (movsf_1_nointerunit): New.
19323
19324         * basic-block.h (inside_basic_block_p):  Declare.
19325         * cfgbuild.c (inside_basic_block_p): Make global.
19326         * haifa-sched.c (unlink_other_notes): Deal with NOT_INSN_BASIC_BLOCK.
19327         * scheudle-ebb.c  (schedule_ebb): Return last basic block of trace;
19328         update CFG.
19329         (fix_basic_block_boundaries, add_missing_bbs): New.
19330         (rank): Use profile.
19331         (scheudle_ebbs): Rely on CFG; update coments.
19332
19333 2003-02-05  Geoffrey Keating  <geoffk@apple.com>
19334
19335         * Makefile.in (host_hook_obj): New.
19336         (OBJS): Add $(host_hook_obj).
19337         (host_default.o): New rule.
19338         * config.gcc (host_hook_obj): New, default to host-default.o.
19339         (powerpc-*-darwin*): Use host-darwin.o.
19340         (out_host_hook_obj): New.
19341         * configure: Regenerate.
19342         * configure.in: Print information about out_host_hook_obj, substitute
19343         into output files.
19344         * host-default.c: New file.
19345         * hosthooks.h: New file.
19346         * toplev.c (general_init): Call host_hooks.extra_signals.
19347         * config/rs6000/host-darwin.c: New file.
19348         * config/rs6000/x-darwin: New file.
19349         * doc/hostconfig.texi: Add documentation for new host hook.
19350         Rearrange existing documentation.
19351
19352 2003-02-05  Roger Sayle  <roger@eyesopen.com>
19353
19354         * dwarf2out.c (mem_loc_descriptor): Replace ASM_SIMPLIFY_DWARF_ADDR
19355         with *targetm.delegitimize_address.
19356         (rtl_for_decl_location): Likewise.
19357         * dwarfout.c (output_mem_loc_descriptor): Likewise.  Include target.h.
19358         * Makefile.in (dwarf2out.c, dwarfout.c): Depend upon $(TARGET_H)
19359
19360         * config/i386/i386.h (ASM_SIMPLIFY_DWARF_ADDR): Remove definition.
19361         * config/i386/i386-protos.h (i386_simplify_dwarf_addr): Remove
19362         prototype.
19363         * config/i386/i386.c (ix86_delegitimize_address): Renamed from
19364         i386_simplify_dwarf_addr.  Made static.  Prototyped.
19365         (TARGET_DELEGITIMIZE_ADDRESS): Update definition from
19366         i386_simplify_dwarf_addr to ix86_delegitimize_address.
19367         (ix86_find_base_term): Likewise.
19368         (maybe_get_pool_constant): Likewise.
19369
19370         * config/s390/s390.h (ASM_SIMPLIFY_DWARF_ADDR): Remove definition.
19371         * config/s390/s390-protos.h (s390_simplify_dwarf_addr): Remove
19372         prototype.
19373         * config/s390/s390.c (s390_delegitimize_address): Renamed from
19374         s390_simplify_dwarf_addr.  Made static.  Prototyped.
19375         (TARGET_DELEGITIMIZE_ADDRESS): Define as s390_delegitimize_address.
19376
19377 2003-02-05  Richard Henderson  <rth@redhat.com>
19378
19379         PR c/8602
19380         * integrate.c (output_inline_function): Reset input_filename
19381         and lineno from the decl before rest_of_compilation.
19382
19383 2003-02-05  Richard Henderson  <rth@redhat.com>
19384
19385         * defaults.h (CLZ_DEFINED_VALUE_AT_ZERO): New.
19386         (CTZ_DEFINED_VALUE_AT_ZERO): New.
19387         * doc/rtl.texi, doc/tm.texi: Document them.
19388
19389         * combine.c (nonzero_bits) [CLZ, CTZ]: Handle the definedness
19390         of the value at zero properly.
19391         * fold-const.c (tree_expr_nonnegative_p): Likewise.
19392         * simplify-rtx.c (simplify_unary_operation): Likewise.
19393
19394         * config/alpha/alpha.h (CLZ_DEFINED_VALUE_AT_ZERO): New.
19395         (CTZ_DEFINED_VALUE_AT_ZERO): New.
19396
19397         * config/arm/arm.c (TARGET_INIT_BUILTINS): Remove.
19398         (TARGET_EXPAND_BUILTIN): Remove.
19399         (def_builtin, arm_init_builtins, arm_expand_builtin): Remove.
19400         * config/arm/arm.h (CLZ_DEFINED_VALUE_AT_ZERO): New.
19401         (enum arm_builtins): Remove.
19402         * config/arm/arm.md (UNSPEC_CLZ): Remove.
19403         (clzsi2): Rename from clz; use clz instead of unspec.
19404         (ctzsi2): New.
19405         * config/arm/arm-protos.h: Update.
19406
19407 2003-02-05  Jan Hubicka  <jh@suse.cz>
19408
19409         * i386-protos.h (x86_emit_floatuns):  Declare.
19410         * i386.c (x86_emit_floatuns): New global function.
19411         * i386.md (floatunssisf2, floatunsdisf2,
19412         floatunsdidf2):  New patterns.
19413
19414 2003-01-25  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
19415
19416         * cfgloopmanip.c (force_single_succ_latches): Fix missindentation.
19417
19418 2003-02-05  Hans Boehm <Hans.Boehm@hp.com>
19419
19420         * config/ia64/unwind-ia64.c: include coretypes.h, tm.h to get
19421           config/ia64/linux.h
19422
19423 2003-02-05  Roger Sayle  <roger@eyesopen.com>
19424
19425         * cfgloop.h (flow_bb_inside_loop_p): Correct prototype again.
19426
19427 2003-02-05  Jakub Jelinek  <jakub@redhat.com>
19428
19429         PR optimization/8555
19430         * config/i386/i386.md (sse_mov?fcc split): Handle op2 == op3 case
19431         instead of aborting.
19432
19433 2003-02-04  Richard Henderson  <rth@redhat.com>
19434
19435         * config/i386/i386.md (UNSPEC_BSF): Remove.
19436         (ffssi2): Split into cmove and no_cmove insns and splitters;
19437         lose pentium float trick for now.
19438         (ffssi_1): Add * to name; use CTZ instead of UNSPEC.
19439         (ctzsi2, clzsi2, bsr): New.
19440
19441 2003-02-04  Richard Henderson  <rth@redhat.com>
19442
19443         * config/ia64/ia64.c (rtx_needs_barrier): Handle POPCOUNT,
19444         UNSPEC_GETF_EXP; remove UNSPEC_POPCNT.
19445         * config/ia64/ia64.md (UNSPEC_POPCNT): Remove.
19446         (ffsdi2): Use popcount instead of unspec.
19447         (popcountdi2): Rename from *popcnt.
19448         (ctzdi2, clzdi2, getf_exp_tf): New.
19449
19450 2003-02-04  Kazu Hirata  <kazu@cs.umass.edu>
19451
19452         * genconfig.c (main): Generate CC0_P.
19453         * rtl.h (CC0_P): Remove.
19454
19455 2003-02-04  Richard Henderson  <rth@redhat.com>
19456
19457         * libgcc2.h, libgcc2.c (__ffsSI2): New.
19458         (__ffsDI2): Rename from __ffsdi2.
19459         * mklibgcc.in (lib2funcs): Add _ffssi2.
19460
19461 2003-02-04  Richard Henderson  <rth@redhat.com>
19462
19463         * libgcc2.c (__paritysi2, __paritydi2): Replace last two reduction
19464         rounds with a "bit table" lookup.
19465
19466 2003-02-04  Ulrich Weigand  <uweigand@de.ibm.com>
19467
19468         * reload.c (find_reloads): Do not use the mode specified in the insn
19469         pattern as reload mode for address operands.  Do not generate optional
19470         reloads for operands where a mandatory reload was already pushed.
19471
19472 2003-02-04  Richard Henderson  <rth@redhat.com>
19473
19474         * longlong.h [alpha] (count_leading_zeros, count_trailing_zeros): Use
19475         builtins instead of inline assembly.
19476
19477 2003-02-04  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
19478
19479         PR c/9376
19480         * libgcc2.c (__subvdi3): Fix typo.
19481
19482 2003-02-04  Jan Hubicka  <jh@suse.cz>
19483
19484         * i386.md (movti_rex64):  Fix constraint.
19485
19486 2003-02-04  Jan Hubicka  <jh@suse.cz>
19487
19488         * i386.md (vector push splitters):  Fix typo in resolving conflict.
19489
19490 2003-02-04  Rodney Brown  <rbrown64@csc.com.au>
19491
19492         * config/i386/i386.c (x86_function_profiler): Fix typo in format.
19493
19494 2003-02-04  Phil Edwards  <pme@gcc.gnu.org>
19495
19496         * doc/install.texi (*-*-linux-gnu):  Mention glibc requirements
19497         for recent libstdc++.  Remove formatting cruft.
19498
19499 2003-02-04  Jakub Jelinek  <jakub@redhat.com>
19500
19501         * dwarf2out.c (dwarf2out_finish): Add AT_comp_dir
19502         attribute even if input file name is absolute, but one of the
19503         includes is relative.
19504
19505 2003-02-04  Joseph S. Myers  <jsm@polyomino.org.uk>
19506
19507         * doc/gcc.texi, doc/gccint.texi, doc/gcov.texi,
19508         doc/include/fdl.texi, doc/invoke.texi: Update to GFDL 1.2.
19509         * doc/install.texi: Update copyright dates.  Update to GFDL 1.2.
19510
19511 2003-02-03  Richard Henderson  <rth@redhat.com>
19512
19513         * libgcc2.c (__ffsdi2, __clzsi2, __clzdi2, __ctzsi2, __ctzdi2,
19514         __popcountsi2, __popcountdi2, __paritysi2, __paritydi2): Change
19515         return type to "int".  Shuffle declarations and undef int trap.
19516         * libgcc2.h: Remove their declarations.
19517         * optabs.c (expand_unop): Force outmode to int for bitops.
19518
19519 2003-02-03  Bob Wilson  <bob.wilson@acm.org>
19520
19521         * config/xtensa/xtensa.c (order_regs_for_local_alloc): Order the
19522         coprocessor registers before floating-point registers.
19523         * config/xtensa/xtensa.h (REG_ALLOC_ORDER): Adjust register numbers
19524         to account for a previously removed register.
19525         (SPEC_REG_FIRST, SPEC_REG_LAST, SPEC_REG_NUM, COUNT_REGISTER_REGNUM):
19526         Delete unused macros.
19527
19528 2003-02-03  Jan Hubicka  <jh@suse.cz>
19529
19530         * i386.c (ix86_expand_store_builtin):  Always force op1 to register.
19531         (mov*_internal): Fix predicates; require one of operands to not be
19532         memory.
19533         (SSE?MMX move expanders):  Fix predicates; force one of operands to
19534         register.
19535         (SSE/MMX push patterns): Reorganize; fix x86-64 code generation.
19536         (movups/movupd/movdqu patterns): Force one of operands to not be
19537         memory.
19538
19539 2003-02-03  Roger Sayle  <roger@eyesopen.com>
19540
19541         * hooks.c (hook_rtx_rtx_identity): Generic hook function that
19542         takes a single rtx and returns it unmodified.
19543         * hooks.h (hook_rtx_rtx_identity): Prototype here.
19544         * target.h (struct gcc_target): Add "delegitimize_address"
19545         field to target structure.
19546         * target-def.h (TARGET_DELEGITIMIZE_ADDRESS):  Provide default
19547         for delegitimize_address target using hook_rtx_rtx_identity.
19548         (TARGET_INITIALIZER): Initialize delegitimize_address field
19549         using TARGET_DELEGITIMIZE_ADDRESS macro.
19550         * simplify-rtx.c (avoid_constant_pool_reference): Handle float
19551         extensions of constant pool references.  Use delegitimize_address
19552         to undo the obfuscation of "-fpic".
19553         * Makefile.in (simplify-rtx.o): Add dependency on target.h.
19554
19555         * config/i386/i386.c (TARGET_DELEGITIMIZE_ADDRESS): Define as
19556         i386_simplify_dwarf_addr.
19557         (ix86_find_base_term): Simplify using i386_simplify_dwarf_addr.
19558         (maybe_get_pool_constant): Likewise.
19559
19560 2003-02-03  Jan Hubicka  <jh@suse.cz>
19561
19562         * i386.c (ix86_expand_int_movcc):  Fix setcc sign bit case.
19563
19564 2003-02-03  Jan Hubicka  <jh@suse.cz>
19565
19566         * regclass.c (cannot_change_mode_set_regs): Correct argument order.
19567
19568 2003-02-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
19569
19570         * mips/_tilib.c: Don't include tsystem.h or defaults.h.  Don't
19571         define LIBGCC2_WORDS_BIG_ENDIAN.  Include coretypes.h and tm.h.
19572
19573 2003-02-02  Andreas Schwab  <schwab@suse.de>
19574
19575         * varasm.c (asm_output_aligned_bss): Declare as possibly unused.
19576
19577 2003-02-02  Richard Earnshaw  <rearnsha@arm.com>
19578
19579         * arm.md (sibcall_epilogue): Set the "conds" to "clob".
19580         (epilogue_insns): Likewise.
19581
19582 2003-02-02  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
19583
19584         * doc/install.texi (hppa*-hp-hpux11*): Update installation notes.
19585
19586 2003-02-02  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
19587
19588         * pa-protos.h (attr_length_millicode_call): Remove second argument.
19589         (attr_length_indirect_call, attr_length_indirect_call,
19590         attr_length_save_restore_dltp): New prototypes.
19591         * pa.c (attr_length_millicode_call): Remove second argument.  Check
19592         INSN_ADDRESSES_SET_P in distance calculation.
19593         (output_millicode_call): Check INSN_ADDRESSES_SET_P before using
19594         INSN_ADDRESSES.
19595         (attr_length_call): Check INSN_ADDRESSES_SET_P in distance calculation.
19596         (output_call): Check INSN_ADDRESSES_SET_P before using INSN_ADDRESSES.
19597         Call attr_length_call directly.
19598         (attr_length_indirect_call, output_indirect_call,
19599         attr_length_save_restore_dltp): New functions.
19600         * pa.md (attr_length_millicode_call): Drop second argument from all
19601         patterns.
19602         (return_internal_pic): Delete.
19603         (return_external_pic): Remove use of PIC register and pic operand and
19604         flag checks.
19605         (epilogue): Use return_internal for both normal and pic code.
19606         (call, call_value): Emit new 32-bit pic patterns for symref and
19607         indirect calls.  Remove uses for arg pointer and pic register.
19608         (call_symref_pic, call_symref_pic_post_reload, call_reg_pic,
19609         call_reg_pic_post_reload, call_val_symref_pic,
19610         call_val_symref_pic_post_reload, call_val_reg_pic,
19611         call_val_reg_pic_post_reload): New pre and post reload insn patterns.
19612         Implement define_split and define_peephole2 patterns for pre reload
19613         patterns.
19614         (call_symref_64bit, call_internal_reg_64bit, call_value_symref_64bit,
19615         call_value_internal_reg_64bit): Shorten names.
19616         (all call patterns): Explicitly indicate registers used and clobbered.
19617         Use attr_length_indirect_call and attr_length_save_restore_dltp for
19618         attribute length calculation.  Move code generation for indirect calls
19619         to output_indirect_call.
19620         (sibcall, sibcall_value): Don't restore PIC register.
19621         (exception_receiver, builtin_setjmp_receiver): Add blockage after PIC
19622         register retore.
19623
19624 2003-02-02  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
19625
19626         * doc/install.texi (Testing): Simplify and compress instructions
19627         concerning Dejagnu.
19628
19629 2003-02-01  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
19630
19631         * collect2.c (pexecute_pid): Rename to pid.
19632         (collect_wait, collect_execute, scan_prog_file, scan_libraries): Use
19633         pid.
19634
19635 2003-02-01  Geoffrey Keating  <geoffk@apple.com>
19636
19637         * doc/extend.texi (Function Attributes): Remove documentation
19638         for PowerPC Windows NT function attributes..
19639
19640 2003-02-01  Daniel Jacobowitz  <drow@mvista.com>
19641
19642         * dwarf2out.c (gen_type_die): Check for typedefs before calling
19643         for TYPE_MAIN_VARIANT.
19644
19645 2003-02-01  Richard Henderson  <rth@redhat.com>
19646
19647         * libgcc2.c: Include auto-host.h.
19648         (ATTRIBUTE_HIDDEN): New.
19649         (__clz_tab): Don't declare here for clz and ctz.
19650         (__clzsi2, __clzdi2): Use count_leading_zeros.
19651         (__ctzsi2, __ctzdi2): Use count_trailing_zeros.
19652         (__popcount_tab): Mark ATTRIBUTE_HIDDEN.
19653         (__paritysi2, __paritydi2): Use shifts instead of __popcount_tab.
19654         * longlong.h (__clz_tab): Mark ATTRIBUTE_HIDDEN.
19655
19656 2003-02-01  Richard Henderson  <rth@redhat.com>
19657
19658         * config/i386/i386.md (addsi_1_zext splitter): Add TARGET_64BIT
19659         to the conditional.
19660         (ashlsi3_1_zext splitter): Likewise.
19661
19662 2003-02-01  Richard Henderson  <rth@redhat.com>
19663
19664         * optabs.c (expand_unop): Use word_mode for outmode of bit scaners.
19665         * libgcc2.c (__ffsdi2, __clzsi2, __clzdi2, __ctzsi2, __ctzdi2,
19666         __popcountsi2, __popcountdi2, __paritysi2 __paritydi2): Change
19667         return type to Wtype.
19668
19669         * libgcc-std.ver (GCC_3.4): Fix inheritance.
19670
19671         * config/i386/i386.md (ffssi2): Use nonimmediate_operand for
19672         expander input constraint.
19673
19674 2003-02-01  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
19675
19676         * optabs.h (optab_index): Add OTI_clz, OTI_ctz, OTI_popcount and
19677         OTI_parity.
19678         (clz_optab, ctz_optab, popcount_optab, parity_optab): New.
19679         * optabs.c (widen_clz, expand_parity): New.
19680         (expand_unop): Handle clz and parity.  Hardcode SImode as outmode
19681         for libcalls to clz, ctz, popcount, and parity.
19682         (init_optabs): Init clz_optab, ctz_optab, popcount_optab and
19683         parity_optab, and set up libfunc handlers.
19684         * libgcc2.c (__clzsi2, __clzdi2, __ctzsi2, __ctzdi2,
19685         __popcountsi2, __popcountdi2, __paritysi2 __paritydi2,
19686         __popcount_tab): New.
19687         * libgcc2.h: Declare them.
19688         * libgcc-std.ver (GCC_3.4): Add new functions from libgcc2.c.
19689         * genopinit.c (optabs): Add clz_optab, ctz_optab, popcount_optab
19690         and parity_optab.
19691         * builtin-types.def (BT_FN_INT_LONG, BT_FN_INT_LONGLONG): New.
19692         * builtins.def (BUILT_IN_CLZ, BUILT_IN_CTZ, BUILT_IN_POPCOUNT,
19693         BUILT_IN_PARITY, BUILT_IN_FFSL, BUILT_IN_CLZL, BUILT_IN_CTZL,
19694         BUILT_IN_POPCOUNTL, BUILT_IN_PARITYL, BUILT_IN_FFSLL,
19695         BUILT_IN_CLZLL, BUILT_IN_CTZLL, BUILT_IN_POPCOUNTLL,
19696         BUILT_IN_PARITYLL): New.
19697         * builtins.c (expand_builtin_unop): Rename from expand_builtin_ffs
19698         and add optab argument.
19699         (expand_builtin): Expand BUILT_IN_{FFS,CLZ,POPCOUNT,PARITY}*.
19700         * tree.def (CLZ_EXPR, CTZ_EXPR, POPCOUNT_EXPR, PARITY_EXPR): New.
19701         * expr.c (expand_expr): Handle them.
19702         * fold-const.c (tree_expr_nonnegative_p): Likewise.
19703         * rtl.def (CLZ, CTZ, POPCOUNT, PARITY): New.
19704         * reload1.c (eliminate_regs): Handle them.
19705         (elimination_effects): Likewise.
19706         * function.c (instantiate_virtual_regs_1): Likewise
19707         * genattrtab.c (check_attr_value): Likewise.
19708         * simplify-rtx.c (simplify_unary_operation): Likewise.
19709         * c-common.c (c_common_truthvalue_conversion): Handle POPCOUNT_EXPR.
19710         * combine.c (combine_simplify_rtx): Handle POPCOUNT and PARITY.
19711         (nonzero_bits): Handle CLZ, CTZ, POPCOUNT and PARITY.
19712         * config/alpha/alpha.md (clzdi2, ctzdi2, popcountdi2): New.
19713         * config/arm/arm.c (arm_init_builtins): Rename __builtin_clz to
19714         __builtin_arm_clz.
19715         * Makefile.in (LIB2FUNCS_1, LIB2FUNCS_2): Move...
19716         * mklibgcc.in (lib2funcs): ...here and merge.  Add new members.
19717         * doc/extend.texi (Other Builtins): Add new builtins.
19718         * doc/md.texi (Standard Names): Add new patterns.
19719
19720 2003-02-01  Ulrich Weigand  <uweigand@de.ibm.com>
19721
19722         * reload.c: Revert 2003-01-31 change.
19723
19724 2003-02-01  Jan Hubicka  <jh@suse.cz>
19725
19726         * combine.c (combine_simplify_rtx):  Use reversed_comparison_code_parts.
19727
19728 2003-02-01  Richard Sandiford  <rsandifo@redhat.com>
19729
19730         * flags.h (flag_volatile): Remove declaration.
19731         (flag_volatile_global, flag_volatile_static): Likewise.
19732         * c-typeck.c (build_indirect_ref): Don't check flag_volatile.
19733         * toplev.c (flag_volatile): Remove definition.
19734         (flag_volatile_global, flag_volatile_static): Likewise.
19735         (f_options): Remove corresponding entries here.
19736         * varasm.c (make_decl_rtl): Don't check flag_volatile_global
19737         or flag_volatile_static.
19738         * doc/invoke.texi: Remove documentation of -fvolatile,
19739         -fvolatile-global and -fvolatile-static.
19740
19741 2003-01-31  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
19742
19743         * pa.c (pa_output_function_prologue, pa_output_function_epilogue): Move
19744         updating of total_code_bytes from prologue to epilogue.
19745
19746 2003-01-31  Ulrich Weigand  <uweigand@de.ibm.com>
19747
19748         * reload.c (find_reloads): Do not use the mode specified in the insn
19749         pattern as reload mode for address operands.  Do not generate optional
19750         reloads for operands where a mandatory reload was already pushed.
19751         Generate optional reloads only in the final pass though find_reloads.
19752         (have_replacement_p): New function.
19753
19754 2003-01-31  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
19755
19756         * doc/install.texi (Testing): Remove a reference to our obsolete
19757         /testresults web pages and strip redundant information concerning
19758         test results.
19759         (Binaries): Refer to Microsoft Windows instead of listing all
19760         possible variants.
19761
19762 2003-02-01  Jan Hubicka  <jh@suse.cz>
19763
19764         * loop.c (emit_prefetch_instructions):  Do conversion at right place in
19765         RTL chain.
19766
19767         * combine.c (simplify_set): Reverse order of ragumetns to
19768         REG_CANNOT_CHANGE_MODE_P
19769         * df.c (df_def_record_1): Likewise.
19770         * recog.c (register_operand): Likewise.
19771         * simplify-rtx.c (simplify_subreg): Likewise.
19772         * hard-reg-set.h (REG_CANNOT_CHANGE_MODE_P): Update use of
19773         CANNOT_CHANGE_MODE_CLASS.
19774         * regclass.c (cannot_change_mode_set_regs, invalid_mode_change_p):
19775         Likewise.
19776         * reload.c (push_reload): Likewise.
19777         * alpha.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
19778         * ia64.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
19779         * mips.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
19780         * mips-protos.h (mips_cannot_change_mode_class): Update prototype.
19781         * mips.c (mips_cannot_change_mode_class): Update.
19782         * pa64-regs.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
19783         * rs6000.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
19784         * s390.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
19785         * sh.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
19786         * sh-protos.h (sh_cannot_change_mode_class): Update prototype.
19787         * sh.c (sh_cannot_change_mode_class): Update.
19788         * i386.h (CANNOT_CHANGE_MODE_CLASS): New.
19789         * tm.texi (CANNOT_CHANGE_MODE_CLASS): Update documentation.
19790
19791 2003-01-31  Geoffrey Keating  <geoffk@apple.com>
19792
19793         * config/darwin.h (LINK_COMMAND_SPEC): Update for Nathan's recent
19794         change to LINK_COMMAND_SPEC in gcc.c.
19795
19796 2003-01-31  Jan Hubicka  <jh@suse.cz>
19797
19798         PR c/9506
19799         * i386.c (override_options): Use DEFAULT_PCC_STRUCT_RETURN.
19800
19801 2003-01-31  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
19802
19803         * pa32-regs.h (REGNO_REG_CLASS, REG_CLASS_FROM_LETTER): Delete
19804         duplicated code.
19805
19806 2003-01-31  Nathan Sidwell  <nathan@codesourcery.com>
19807
19808         * tree.h (TYPE_BINFO_SIZE, TYPE_BINFO_SIZE_UNIT): Remove.
19809         (BINFO_ELTS): New #define.
19810         * stor-layout.c (finalize_record_size): Don't set them.
19811         * cp/cp-tree.h (BINFO_SUBVTT_INDEX, BINFO_VPTR_INDEX,
19812         BINFO_PRIMARY_BASE_OF): Use BINFO_ELTS.
19813         (BINFO_LANG_ELTS): New #define.
19814         * cp/tree.c (make_binfo): Use BINFO_LANG_ELTS.
19815         * java/class.c (make_class): Use BINFO_ELTS.
19816         (set_super_info): Likewse.
19817         (add_interface_do): Likewise.
19818         * objc/objc-act.c (start_class): Use BINFO_ELTS.
19819
19820 2003-01-31 Danny Smith <dannysmith@users.sourceforge.net>
19821
19822         * timevar.c (getrusage): Don't ever declare if not HAVE_GETRUSAGE.
19823         (times): Don't ever declare if not HAVE_TIMES.
19824         (clock): Don't ever declare if not HAVE_CLOCK.
19825
19826 2003-01-30  Richard Henderson  <rth@redhat.com>
19827
19828         * flow.c (update_life_info): Zap life info after cleanup_cfg.
19829         (regno_uninitialized): Use correct live at function entry set.
19830         (regno_clobbered_at_setjmp): Likewise.
19831
19832         * expr.c (store_expr): Promote all MEM intermediates to regs.
19833
19834 2003-01-30  Kazu Hirata  <kazu@cs.umass.edu>
19835
19836         * config/arm/arm.c: Fix comment typos.
19837         * config/arm/arm.h: Likewise.
19838         * config/arm/netbsd-elf.h: Likewise.
19839         * config/arm/netbsd.h: Likewise.
19840
19841 2003-01-30  Geoffrey Keating  <geoffk@apple.com>
19842
19843         * gengtype.c (struct walk_type_data): Add needs_cast_p.
19844         (walk_type): Set needs_cast_p in walk_type_data.
19845         (write_types_process_field): Supply casts when required to suppress
19846         warnings.
19847         (write_root): Cast gt_pch_n_S to suppress warning.
19848         * Makefile.in: Remove -Wno-error from gtype-desc.o and c-decl.o.
19849         * config/rs6000/rs6000.c (print_operand): Mask off high bits only
19850         when they might exist.
19851         * config/rs6000/t-rs6000: Remove -Wno-error from varasm.o,
19852         insn-conditions.o, and rs6000.o.
19853
19854 2003-01-30  Richard Henderson  <rth@redhat.com>
19855
19856         * ggc-page.c (G.context_depth_allocations): New.
19857         (G.context_depth_collections): New.
19858         (alloc_page): Set G.context_depth_allocations.
19859         (ggc_collect): Set G.context_depth_collections.
19860         (ggc_push_context): Limit to HOST_BITS_PER_LONG contexts.
19861         (ggc_pop_context): Early exit for no allocations or collections.
19862
19863 2003-01-30  Richard Henderson  <rth@redhat.com>
19864
19865         * tree-inline.c (walk_tree): Streamline duplicate hash table lookup.
19866
19867 2003-01-30  Richard Earnshaw  <rearnsha@arm.com>
19868
19869         * arm.c (arm_compute_initial_elimination_offset): If optimizing for
19870         size, the link register is always saved if any other register is
19871         saved.
19872
19873 2003-01-30  Kazu Hirata  <kazu@cs.umass.edu>
19874
19875         * config/h8300/h8300-protos.h: Update the prototype for
19876         compute_plussi_cc.
19877         (cpp_reader): Declare before it is used.
19878         * config/h8300/h8300.c (compute_plussi_cc): Change the return
19879         type to int.
19880         * config/h8300/h8300.md (monitor_prologue): Call abort() if we
19881         see an unknown H8 variant.
19882
19883 2003-01-30  Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
19884
19885         PR target/9316
19886         * config/rs6000/rtems.h: Add CPP_OS_DEFAULT_SPEC.
19887         * config/rs6000/sysv4.h: Add CPP_OS_RTEMS_SPEC.
19888         * config/rs6000/t-rtems: New file. multilib variants to match OS.
19889         * config.gcc (powerpc-*-rtems*): Use rs6000/t-rtems instead of
19890         rs6000/t-ppcgas so we get the desired multilibs.
19891
19892 2003-01-30  Nick Clifton  <nickc@redhat.com>
19893
19894         * config/arm/arm.c (arm_output_epilogue): Update stack pointer
19895         when popping saved IP register off the stack.
19896
19897 2003-01-30  Kazu Hirata  <kazu@cs.umass.edu>
19898
19899         * config/rs6000/aix43.h: Fix comment typos.
19900         * config/rs6000/aix51.h: Likewise.
19901         * config/rs6000/aix52.h: Likewise.
19902         * config/rs6000/altivec.h: Likewise.
19903         * config/rs6000/rs6000.c: Likewise.
19904         * config/rs6000/rs6000.h: Likewise.
19905         * config/rs6000/rs6000.md: Likewise.
19906         * config/rs6000/spe.md: Likewise.
19907
19908 2003-01-29  Mark Mitchell  <mark@codesourcery.com>
19909
19910         * c-common.c (builtin_define_float_constants): Define
19911         __<TYPE>_HAS_INFINITY__ and __<TYPE>_HAS_QUIET_NAN__.
19912
19913 2003-01-30  Kazu Hirata  <kazu@cs.umass.edu>
19914
19915         * config/sh/lib1funcs.asm: Fix comment typos.
19916         * config/sh/linux.h: Likewise.
19917         * config/sh/sh.c: Likewise.
19918         * config/sh/sh.md: Likewise.
19919
19920 2003-01-30  Loren James Rittle  <ljrittle@acm.org>
19921
19922         * objc/Make-lang.in (objc-parse.y): Find c-parse.in in $(srcdir).
19923
19924 2003-01-30  Alexandre Oliva  <aoliva@redhat.com>
19925
19926         * config/fp-bit.h (__make_dp): Declare if TMODES.
19927
19928 2003-01-29  Kazu Hirata  <kazu@cs.umass.edu>
19929
19930         * config/h8300/h8300.h (PREDICATE_CODES): Add entries for
19931         general_operand_src and general_operand_dst.
19932
19933 2003-01-29  David Edelsohn  <edelsohn@gnu.org>
19934
19935         * config/rs6000/rs6000.c (function_arg_pass_by_reference):
19936         Return true for variable sized types.
19937         (rs6000_va_arg): Handle variable sized types passed by reference
19938         on non-SVR4 ABI.
19939
19940 2003-01-29  Richard Earnshaw  <rearnsha@arm.com>
19941
19942         * arm.c (arm_legtimize_address): New function.
19943         * arm-protos.h (arm_legtimize_address): Add prototype.
19944         * arm.h (ARM_LEGITIMIZE_ADDRESS): Use arm_legitimize_address.
19945         (LEGITIMIZE_ADDRESS, THUMB_LEGITIMIZE_ADDRESS): Wrap with
19946         do ... while (0)
19947
19948 2003-01-29  Joel Sherrill  <joel@OARcorp.com>
19949
19950         PR bootstrap/9296
19951         * gthr-rtems.h: Define __GTHREAD_MUTEX_INIT.  Apparently no code
19952         depended on it being defined until now.
19953
19954 2003-01-29  Joel Sherrill  <joel@OARcorp.com>
19955
19956         PR target/9295
19957         * config/mips/rtems.h: Predefine __USE_INIT_FINI__ so generic
19958         RTEMS code knows which C++ initialization style the toolset
19959         configuration is using.
19960
19961 2003-01-29  Joel Sherrill  <joel@OARcorp.com>
19962
19963         PR bootstrap/9293
19964         * config/m68k/t-crtstuff: Replace spaces with tabs, add
19965          $(MULTILIB_CFLAGS) as compiler option and multilib crtbegin/end.o.
19966
19967 2003-01-29  Joel Sherrill  <joel@OARcorp.com>
19968
19969         PR bootstrap/9292
19970         * config.gcc (hppa1.1-rtems):  Did not include t-rtems nor enable
19971         RTEMS threads.
19972         * config/pa/rtems.h (LIB_SPEC): Use -N when linking.
19973
19974 2003-01-29  Nick Clifton  <nickc@redhat.com>
19975
19976         * Makefile.in (c-parse.o): Locate source file in $(parsedir)
19977         not $(srcdir).
19978
19979 2003-01-29  Andrew Haley  <aph@redhat.com>
19980
19981         * tree-inline.c (walk_tree): Add CHAR_TYPE.
19982
19983 2003-01-29  Jan Hubicka  <jh@suse.cz>
19984
19985         * i386.md (subdi3_carry_rex64): Fix typo.
19986
19987 2003-01-28  Stan Shebs  <shebs@apple.com>
19988
19989         * coretypes.h (cpp_reader): Forward declare struct.
19990         * c-pragma.h (cpp_reader): Remove forward declaration.
19991         * hashtable.h (cpp_reader): Likewise.
19992         * scan.h (cpp_reader): Likewise.
19993         * tree.h (cpp_reader): Likewise.
19994         * config/darwin-protos.h (cpp_reader): Likewise.
19995         * config/arm/arm-protos.h (cpp_reader): Likewise.
19996         * config/rs6000/rs6000-protos.h: Remove GCC_CPPLIB_H ifdef, use
19997         struct cpp_reader in prototypes.
19998
19999 2003-01-28  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
20000
20001         * doc/install.texi: Add documentation for installation into
20002         tooldirs and with DESTDIR.
20003
20004 2003-01-28  Richard Henderson  <rth@redhat.com>
20005
20006         * config.gcc (ia64*-*-aix*): Remove.
20007         * config/ia64/aix.h, config/ia64/t-aix: Remove file.
20008         * config/ia64/unwind-aix.c: Remove file.
20009
20010 2003-01-28  Andreas Schwab  <schwab@suse.de>
20011
20012         * config/m68k/m68k.md (tablejump+2): Don't sign extend an address
20013         register.
20014         * config/m68k/apollo68.h (ASM_RETURN_CASE_JUMP): Likewise.
20015         * config/m68k/coff.h (ASM_RETURN_CASE_JUMP): Likewise.
20016         * config/m68k/linux.h (ASM_RETURN_CASE_JUMP): Likewise.
20017         * config/m68k/m68kelf.h (ASM_RETURN_CASE_JUMP): Likewise.
20018         * config/m68k/mot3300.h (ASM_RETURN_CASE_JUMP): Likewise.
20019         * config/m68k/netbsd-elf.h (ASM_RETURN_CASE_JUMP): Likewise.
20020         * config/m68k/pbb.h (ASM_RETURN_CASE_JUMP): Likewise.
20021
20022 2003-01-28  Richard Sandiford  <rsandifo@redhat.com>
20023
20024         * combine.c (nonzero_bits): Fix check for negative divide operands.
20025
20026 2003-01-28  Richard Henderson  <rth@redhat.com>
20027
20028         * config/ia64/ia64.c (ia64_rwreloc_section_type_flags): New.
20029         * config/ia64/hpux.h (TARGET_SECTION_TYPE_FLAGS): New.
20030
20031 2003-01-28  Richard Henderson  <rth@redhat.com>
20032
20033         * cse.c (find_best_addr): Kill !ADDRESS_COST code.
20034
20035         * config/cris/cris.c (cris_address_cost): Make static.
20036         (TARGET_RTX_COSTS, TARGET_ADDRESS_COST): New.
20037         * config/cris/cris.h (ADDRESS_COST): Remove.
20038         * config/cris/cris-protos.h: Update.
20039
20040 2003-01-23  Mike Stump  <mrs@apple.com>
20041
20042         * regclass.c (init_reg_autoinc): New function.
20043         (regclass): Move initialization of forbidden_inc_dec_class from
20044         here...
20045         (init_regs): to here.  Avoids reinitialization for each function,
20046         saving compilation time.
20047
20048 2003-01-28  Jason Merrill  <jason@redhat.com>
20049
20050         * cpplib.h (struct cpp_options): Add warn_deprecated field.
20051         * cppinit.c (cpp_create_reader): Turn it on by default.
20052         * c-opts.c (c_common_decode_option): Set it.
20053         * cpplib.c (do_pragma_once): Only complain about #pragma once
20054         if warn_deprecated is set.
20055
20056 2003-01-28  Dale Johannesen  <dalej@apple.com>
20057
20058         * emit-rtl.c (const_double_htab_hash):  Use mode in the hash.
20059         * loop.c (scan_loop):  Move movables on -Os rich-register targets.
20060         * config/rs6000/rs6000.md (sibcall*):  Use match_operand for LR.
20061
20062 2003-01-28  Richard Henderson  <rth@redhat.com>
20063
20064         * target.h (targetm.address_cost): New.
20065         * target-def.h (TARGET_ADDRESS_COST): New.
20066         (TARGET_RTX_COSTS): Uncomment.  Oops.
20067         * cse.c (address_cost): Use new target hook.
20068         (default_address_cost): New.
20069         * output.h (default_address_cost): Declare.
20070         * hooks.c (hook_int_rtx_0): New.
20071         * hooks.h (hook_int_rtx_0): Declare.
20072         * loop.c (combine_givs_p): Remove if 0 code.
20073         * system.h (ADDRESS_COST): Poison.
20074
20075         * config/alpha/alpha.c, config/alpha/alpha.h, config/d30v/d30v.c,
20076         config/d30v/d30v.h, config/ia64/ia64.c, config/ia64/ia64.h,
20077         config/m32r/m32r.c, config/m32r/m32r.h, config/mcore/mcore.c,
20078         config/mcore/mcore.h, config/mmix/mmix.c, config/mmix/mmix.h,
20079         config/rs6000/rs6000.c, config/rs6000/rs6000.h, config/sparc/sparc.c,
20080         config/sparc/sparc.h, config/v850/v850.c, config/v850/v850.h,
20081         config/xtensa/xtensa.c, config/xtensa/xtensa.h
20082         (TARGET_ADDRESS_COST): Define as hook_int_rtx_0.
20083         (ADDRESS_COST): Remove.
20084
20085         * config/arc/arc-protos.h, config/arc/arc.c, config/arc/arc.h,
20086         config/avr/avr-protos.h, config/avr/avr.c, config/avr/avr.h,
20087         config/c4x/c4x-protos.h, config/c4x/c4x.c, config/c4x/c4x.h,
20088         config/dsp16xx/dsp16xx-protos.h, config/dsp16xx/dsp16xx.c,
20089         config/dsp16xx/dsp16xx.h, config/i386/i386-protos.h,
20090         config/i386/i386.c, config/i386/i386.h, config/i960/i960-protos.h,
20091         config/i960/i960.c, config/i960/i960.h, config/ip2k/ip2k-protos.h,
20092         config/ip2k/ip2k.c, config/ip2k/ip2k.h, config/mips/mips-protos.h,
20093         config/mips/mips.c, config/mips/mips.h,
20094         config/m68hc11/m68hc11-protos.h, config/m68hc11/m68hc11.c,
20095         config/m68hc11/m68hc11.h, config/ns32k/ns32k-protos.h,
20096         config/ns32k/ns32k.c, config/ns32k/ns32k.h, config/pa/pa-protos.h,
20097         config/pa/pa.c, config/pa/pa.h, config/s390/s390-protos.h,
20098         config/s390/s390.c, config/s390/s390.h, config/vax/vax-protos.h,
20099         config/vax/vax.c, config/vax/vax.h
20100         (foo_address_cost): Make static.
20101         (TARGET_ADDRESS_COST): New.
20102         (ADDRESS_COST): Remove.
20103
20104         * config/arm/arm.h, config/arm/arm.c, config/m88k/m88k.h,
20105         config/m88k/m88k.c, config/romp/romp.h, config/romp/romp.c,
20106         config/sh/sh.c, config/sh/sh.h, config/stormy16/stormy16.c,
20107         config/stormy16/stormy16.h
20108         (ADDRESS_COST): Move code ...
20109         (foo_address_cost): ... here.
20110         (TARGET_ADDRESS_COST): New.
20111
20112         * config/m32r/m32r.c (m32r_address_cost): Remove.
20113         * config/m32r/m32r-protos.h: Update.
20114
20115         * config/mmix/mmix.c (mmix_address_cost): Remove.
20116         * config/mmix/mmix-protos.h: Update.
20117
20118         * config/mn10300/mn10300.c (mn10300_address_cost_1): Rename from
20119         mn10300_address_cost; move unsig allocation ...
20120         (mn10300_address_cost): ... here.
20121         (TARGET_ADDRESS_COST): New.
20122         * config/mn10300/mn10300-protos.h: Update.
20123         * config/mn10300/mn10300.h (ADDRESS_COST): Remove.
20124
20125         * doc/tm.texi: Update.
20126
20127 2003-01-28  Vladimir Makarov  <vmakarov@redhat.com>
20128
20129         * haifa-sched.c (schedule_insn): Return necessary cycle advance
20130         after issuing the insn.
20131         (rank_for_schedule): Make a insn with /S the highest priority
20132         insn.
20133         (move_insn): Ignore schedule groups.  Clear SCHED_GROUP_P.
20134         (choose_ready): Check SCHED_GROUP_P.
20135         (schedule_block): Advance cycle after issuing insn if it is
20136         necessary.  Don't reorder insns if there is an insn with /S.
20137         (set_priorities): Ignore schedule groups.
20138
20139         * sched-deps.c (remove_dependence, group_leader): Remove the
20140         functions.
20141         (add_dependence): Ignore schedule groups.
20142         (set_sched_group_p): Don't make copy of dependencies from previous
20143         insn of the schedule group.  Add anti-dependency to the previous
20144         insn of the schedule group.
20145         (compute_forward_dependences): Ignore schedule groups.
20146
20147         * sched-ebb.c (init_ready_list): Ignore schedule groups.
20148
20149         * sched-rgn.c (init_ready_list): Ditto.
20150         (can_schedule_ready_p): Ditto.
20151
20152 2003-01-28  Vladimir Makarov  <vmakarov@redhat.com>
20153
20154         * config/i386/i386.md (*movsi_1): Use movdqa to move one xmm
20155         register to another one.
20156
20157 2003-01-28  Richard Henderson  <rth@redhat.com>
20158
20159         * calls.c (default_must_pass_in_stack): Fix typo in !type case.
20160
20161 2003-01-28  Roger Sayle  <roger@eyesopen.com>
20162
20163         * cse.c (cse_insn): Avoid redundant REG_EQUAL notes.
20164
20165 2003-01-28  Richard Sandiford  <rsandifo@redhat.com>
20166
20167         * config/sh/sh.h (CLASS_MAX_NREGS): If TARGET_SHMEDIA, and the given
20168         class contains a floating-point register, return the size of the
20169         mode in half words.
20170
20171 2003-01-28  Jan Hubicka  <jh@suse.cz>
20172
20173         * i386.c (ix86_carry_flag_operator):  New predicate.
20174         (fcmov_operator): Fix whitespace.
20175         (ix86_expand_carry_flag_compare):  Deal with floating point.
20176         (ix86_expand_int_movcc): Deal with fp; update insn expansion
20177         (ix86_expand_int_addcc): Likewise.
20178         (ix86_expand_strlensi_unroll_1): likewsie.
20179         * i386.h (PREDICATE_CODES): Add ix86_carry_flag_operator.
20180         * i386.md (add?i_carry_rex64): Use new predicate.
20181         (sub?i3_carry_rex64): Likewise.
20182         (x86_mov?icc_0_m1*): Likewise.
20183
20184 2003-01-28  Andreas Schwab  <schwab@suse.de>
20185
20186         * cfgloopmanip.c (create_preheader): Initialize src to avoid
20187         warning.
20188
20189         * expmed.c (emit_store_flag): Fix cast to avoid sign
20190         comparison warning.
20191
20192         * combine.c (force_to_mode): Add cast to fix warning when
20193         STORE_FLAG_VALUE is negative.
20194
20195 2003-01-27  Richard Henderson  <rth@redhat.com>
20196
20197         * Makefile.in (cse.o): Depend on TARGET_H.
20198         * cse.c (rtx_cost): Use targetm.rtx_costs.
20199         * system.h (CONST_COSTS RTX_COSTS DEFAULT_RTX_COSTS): Poison.
20200         * doc/tm.texi: Update.
20201
20202         * target.h (targetm.rtx_costs): New.
20203         * target-def.h (TARGET_RTX_COSTS): New.
20204         * hooks.c (hook_bool_rtx_int_int_intp_false): New.
20205         * hooks.h: Update.
20206
20207         * config/alpha/alpha.c (alpha_rtx_cost_data): New.
20208         (alpha_rtx_costs, TARGET_RTX_COSTS): New.
20209         * config/alpha/alpha.h (PROCESSOR_MAX): New.
20210         (CONST_COSTS, RTX_COSTS): Remove.
20211
20212         * config/arc/arc.c, config/arc/arc.h, config/c4x/c4x.c,
20213         config/c4x/c4x.h, config/cris/cris.c, config/cris/cris.h,
20214         config/d30v/d30v.c, config/d30v/d30v.h, config/dsp16xx/dsp16xx.c,
20215         config/dsp16xx/dsp16xx.h, config/frv/frv.c, config/frv/frv.h,
20216         config/h8300/h8300.c, config/h8300/h8300.h, config/i370/i370.c,
20217         config/i370/i370.h, config/i386/i386.c, config/i386/i386.h,
20218         config/i960/i960.c, config/i960/i960.h, config/ia64/ia64.c,
20219         config/ia64/ia64.h, config/m32r/m32r.c, config/m32r/m32r.h,
20220         config/m68k/m68k.c, config/m68k/m68k.h, config/m88k/m88k.c,
20221         config/m88k/m88k.h, config/mcore/mcore.c, config/mcore/mcore.h,
20222         config/mips/mips.c, config/mips/mips.h, config/mn10200/mn10200.c,
20223         config/mn10200/mn10200.h, config/mn10300/mn10300.c,
20224         config/mn10300/mn10300.h, config/ns32k/ns32k.c, config/ns32k/ns32k.h,
20225         config/pa/pa.c, config/pa/pa.h, config/pdp11/pdp11.c,
20226         config/pdp11/pdp11.h, config/romp/romp.c, config/romp/romp.h,
20227         config/rs6000/rs6000.c, config/rs6000/rs6000.h, config/s390/s390.c,
20228         config/s390/s390.h, config/sh/sh.c, config/sh/sh.h,
20229         config/stormy16/stormy16.c, config/stormy16/stormy16.h,
20230         config/v850/v850.c, config/v850/v850.h,
20231         config/xtensa/xtensa.c, config/xtensa/xtensa.h
20232         (CONST_COSTS, RTX_COSTS): Move code ...
20233         (foo_rtx_costs, TARGET_RTX_COSTS): ... here.
20234
20235         * config/arm/arm.c (arm_rtx_costs_1): Rename from arm_rtx_costs.
20236         (arm_rtx_costs, TARGET_RTX_COSTS): New.
20237         * config/arm/arm-protos.h: Update.
20238         * config/arm/arm.h (DEFAULT_RTX_COSTS): Remove.
20239
20240         * config/avr/avr.h (CONST_COSTS): Move code ...
20241         * config/avr/avr.c (avr_rtx_costs): ... here.
20242         (default_rtx_costs): Make static.
20243         * config/avr/avr-protos.h: Update.
20244
20245         * config/h8300/h8300.c (const_costs): Make static.
20246         (h8300_and_costs, h8300_shift_costs): Likewise.
20247         * config/h8300/h8300-protos.h: Update.
20248
20249         * config/ip2k/ip2k.h (DEFAULT_RTX_COSTS): Remove.
20250         (CONST_COSTS): Move code ...
20251         * config/ip2k/ip2k.c (ip2k_rtx_costs): ... here.  Rename from
20252         default_rtx_costs; update for signature change.
20253         * config/ip2k/ip2k-protos.h: Update.
20254
20255         * config/m68hc11/m68hc11.h (RTX_COSTS): Remove.
20256         (CONST_COSTS): Move code ...
20257         * config/m68hc11/m68hc11.c (m68hc11_rtx_costs): ... here.
20258         (TARGET_RTX_COSTS): New.
20259         (m68hc11_rtx_costs_1): Rename from m68hc11_rtx_costs; make static.
20260         * config/m68hc11/m68hc11-protos.h: Update.
20261
20262         * config/m68k/m68k.c (const_int_cost): Make static.
20263         * config/m68k/m68k-protos.h: Update.
20264
20265         * config/mcore/mcore.c (mcore_const_costs): Make static.
20266         (mcore_and_cost, mcore_ior_cost): Likewise.
20267         * config/mcore/mcore-protos.h: Update.
20268
20269         * config/mmix/mmix.c (mmix_rtx_costs, TARGET_RTX_COSTS): New.
20270         (mmix_rtx_cost_recalculated): Remove.
20271         * config/mmix/mmix.h (DEFAULT_RTX_COSTS): Remove.
20272         * config/mmix/mmix-protos.h: Update.
20273
20274         * config/sh/sh.c (shiftcosts): Make static.
20275         (addsubcosts, andcosts, multcosts): Likewise.
20276         * config/sh/sh-protos.h: Update.
20277
20278         * config/sparc/sparc.c (TARGET_RTX_COSTS): New.
20279         (sparc_rtx_costs): Make static; update for change in signature.
20280         * config/sparc/sparc.h (RTX_COSTS_CASES, RTX_COSTS): Remove.
20281         * config/sparc/sparc-protos.h: Update.
20282
20283         * config/v850/v850.c (const_costs): Make static.
20284         * config/v850/v850-protos.h: Update.
20285
20286         * config/vax/vax.h (RTX_COSTS): Remove.
20287         (CONST_COSTS): Move code ...
20288         * config/vax/vax.c (vax_rtx_costs_1): ... here; rename
20289         from vax_rtx_cost.
20290         (vax_rtx_costs, TARGET_RTX_COSTS): New.
20291
20292 2003-01-27  Richard Henderson  <rth@redhat.com>
20293
20294         * config/vax/vax.h (ASM_OUTPUT_MI_THUNK): Remove.  Really.
20295         * config/vax/vax-protos.h: Update.  Really.
20296
20297 2003-01-28  Alexandre Oliva  <aoliva@redhat.com>
20298
20299         * config/mips/mips.h (UNITS_PER_HWFPVALUE): Renamed from...
20300         (UNITS_PER_FPVALUE): Defined as the width of a long double, or
20301         zero if no hardware floating point.
20302         (LONG_DUBLE_TYPE_SIZE): Set to 128 on N32 and N64.
20303         (MAX_FIXED_MODE_SIZE): Define to LONG_DOUBLE_TYPE_SIZE.
20304         (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Define.
20305         (BIGGEST_ALIGNMENT): Same as LONG_DOUBLE_TYPE_SIZE.
20306         (FUNCTION_VALUE_REGNO_P): Set for FP_RETURN+2 on N32 and N64.
20307         * config/mips/mips.c (mips_arg_info): Pass TFmode values in
20308         even FP registers on N32 and N64.
20309         (mips_setup_incoming_varargs): Use UNITS_PER_HWFPVALUE.
20310         (mips_va_start): Adjust alignment of ARG_POINTER_REGNUM.
20311         (mips_va_arg): Use UNITS_PER_HWFPVALUE.  Impose additional
20312         even-register-like alignment to 128-bit arguments.
20313         (save_restore_insns): Use UNITS_PER_HWFPVALUE.
20314         (mips_function_value): Likewise.  Return TFmode in $f0 and $f2
20315         on N32 or N64.
20316         * config/mips/_tilib.c (__negti2, __ashlti3, __lshrti3): New.
20317         * config/mips/t-iris6 (LIB2FUNCS_EXTRA): Add _tilib.c.
20318         (TPBIT): Set to tp-bit.c.
20319         (tp-bit.c): Create out of fp-bit.c.
20320
20321 2003-01-28  Gabriel Dos Reis  <gdr@integrable-solutions.net>
20322
20323         * c-parse.in: Remove '%expect 32' directive in objc mode.
20324
20325 2003-01-27  Nathan Sidwell  <nathan@codesourcery.com>
20326
20327         * Makefile.in (LIB2FUNCS_ST): Remove _gcov.
20328         (LIBGCOV): New variable.
20329         (libgcc.mk): Add LIBGCOV.
20330         (LIBGCC_DEPS): Add libgcov.c.
20331         (libgcov.a): New target.
20332         (clean): Remove libgcov.a.
20333         (install-libgcc): Do libgcov too.
20334         (stage1-start, stage2-start, stage3-start, stage4-start): Deal
20335         with libgcov.a.
20336         * libgcc2.c (L_gcov): Move into ...
20337         * libgcov.c: ... here. New file.
20338         * mklibgcc.in: Add libgcov rules.
20339         * gcc.c (LINK_COMMAND_SPEC): Add -lgcov when profiling.
20340
20341         * doc/invoke.texi (profile-arcs, test-coverage): Update and
20342         clarify.
20343
20344         * profile.c (index_counts_file): Remove duplicate check for open file.
20345
20346 2003-01-27  Jerry Quinn  <jlquinn@optonline.net>
20347
20348         * gcc/doc/invoke.texi (Optimization Options): Group together
20349         optional and experimental flags.  Move trapv and bounds-check
20350         out of this section.  Group floating point flags together.
20351         (Code Gen Options): Move trapv and bounds-check to here.
20352
20353 2003-01-27  Josef Zlomek  <zlomekj@suse.cz>
20354
20355         * gcse.c (constprop_register): Check NEXT_INSN (insn) != NULL.
20356
20357 2003-01-27  Richard Earnshaw  <rearnsha@arm.com>
20358
20359         PR optimization/9090
20360         * function.c (purge_addressof_1): After pushing an addressed register
20361         onto the stack, simplify the result.
20362
20363 2003-01-27  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
20364
20365         * doc/extend.texi: Fix typo.
20366
20367 2003-01-27  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
20368
20369         * doc/cppopts.texi: Fix typo.
20370         * doc/objc.texi: Likewise.
20371         * doc/passes.texi: Likewise.
20372
20373 2003-01-27  Alexandre Oliva  <aoliva@redhat.com>
20374
20375         * real.c (ibm_extended_format): Add 53 to minimum exponent.
20376         (encode_ibm_extended): Adjust.
20377
20378 2003-01-26  Gabriel Dos Reis  <gdr@soliton.integrable-solutions.net>
20379
20380         * timevar.def (TV_OVERLOAD, TV_TEMPLATE_INSTANTIATION): New
20381         timevar_id enumerations.
20382
20383 2003-01-26  Kazu Hirata  <kazu@cs.umass.edu>
20384
20385         * combine.c: Fix formatting.
20386
20387 2003-01-26  Kazu Hirata  <kazu@cs.umass.edu>
20388
20389         * doc/gccint.texi: Update the copyright.
20390
20391 2003-01-26  Kazu Hirata  <kazu@cs.umass.edu>
20392
20393         * doc/cpp.texi: Fix typos.
20394         * doc/extend.texi: Likewise.
20395         * doc/gty.texi: Likewise.
20396         * doc/install.texi: Likewise.
20397         * doc/passes.texi: Likewise.
20398         * doc/rtl.texi: Likewise.
20399         * doc/tm.texi: Likewise.
20400
20401 2003-01-26  Kazu Hirata  <kazu@cs.umass.edu>
20402
20403         * config/ia64/fde-glibc.c: Fix comment typos.
20404         * config/ia64/hpux.h: Likewise.
20405         * config/ia64/ia64.c: Likewise.
20406         * config/ia64/ia64.h: Likewise.
20407         * config/ia64/unwind-ia64.c: Likewise.
20408
20409 2003-01-26  Kazu Hirata  <kazu@cs.umass.edu>
20410
20411         * config/i386/i386-modes.def: Fix comment typos.
20412         * config/i386/i386.c: Likewise.
20413         * config/i386/i386.md: Likewise.
20414
20415 2003-01-26  Steven Bosscher  <s.bosscher@student.tudelft.nl>
20416
20417         * config/avr/avr.h, config/cris/aout.h, config/elfos.h,
20418         config/i386/freebsd-aout.h, config/mips/iris6.h: Undefine
20419         ASM_FINISH_DECLARE_OBJECT before defining it.
20420         * toplev.c (rest_of_decl_compilation):  Don't define
20421         ASM_FINISH_DECLARE_OBJECT.  Only use it if it is defined.
20422         (rest_of_type_compilation): Don't ATTRIBUTE_UNUSED function
20423         parameters for DWARF2 targets because they _are_ used.
20424
20425 2003-01-26  Alexandre Oliva  <aoliva@redhat.com>
20426
20427         * fp-bit.h: Define macros for TFmode floating-point constants
20428         in IBM-extended TFmode types.
20429         (TMODES): Define if __LDBL_MANT_DIG__ has the newly-supported
20430         widths.
20431         * config/fp-bit.c (pack_d, unpack_d): Support IBM-extended
20432         TFmode type.
20433
20434         * config/fp-bit.h: Define macros for TFmode floating-point
20435         constants in IEEE quad TFmode type.  Declare functions according
20436         to L_ macros.
20437         (TMODES): Define if __LDBL_MANT_DIG__ is 113.
20438         (TFtype, TItype, UTItype): Define if TMODES is defined.
20439         (MAX_UDI_INT, MAX_DI_INT, BITS_PER_DI): Likewise.
20440         (F_T_BITOFF, D_T_BITOFF): Define.
20441         (IMPLICIT_1, IMPLICIT_2): Cast constants to types that are
20442         guaranteed to be wide enough.
20443         * config/fp-bit.c: Check for L_ macros for tf functions.
20444         (__thenan_tf): New.
20445         (nan): Adjust.
20446         (pack_d, unpack_d): Support IEEE 854 quad type.
20447         (_fpmul_parts): Support TFmode.  Compute exponent adjustment
20448         from FRAC_NBITS, FRAC_BITS and NGARDS.
20449         (usi_to_float): Cast constants to be shifted to fractype
20450         instead of assuming long long is wide enough.
20451         (sf_to_tf, df_to_tf, __make_tp, tf_to_df, tf_to_sf): New.
20452
20453 2003-01-26  Andreas Jaeger  <aj@suse.de>
20454
20455         * df.c: Remove prototype of unused function df_regno_rtl_debug.
20456
20457 2003-01-26  Alexandre Oliva  <aoliva@redhat.com>
20458
20459         * Makefile.in (FPBIT_FUNCS): Added _sf_to_tf.
20460         (DBBIT_FUNCS): Added _df_to_tf.
20461         (TPBIT_FUNCS): New.
20462         (libgcc.mk): Pass TPBIT and TPBIT_FUNCS down.
20463         (LIBGCC_DEPS): Added TPBIT.
20464         * mklibgcc.in: Support TPBIT and TPBIT_FUNCS.
20465
20466         * optabs.c (expand_binop) <add, sub>: Return xtarget if we haven't
20467         been able to move the result to target.
20468
20469         * expr.c (emit_group_store): Initialize dst with CONST0_RTX
20470         for the appropriate mode.
20471
20472         * calls.c (emit_library_call_value_1): Handle return values
20473         in a PARALLEL.
20474
20475         * rtl.c (get_mode_alignment): Moved to...
20476         * stor-layout.c: ... here.
20477
20478         * print-rtl.c (print_rtx): Don't print MEM details in
20479         GENERATOR_FILEs.
20480
20481 2003-01-26  Michael Hayes  <mph@paradise.net.nz>
20482
20483         * df.h: Update comments, tidy formatting.
20484         (DF_FORWARD, DF_REVERSE, DF_UNION, DF_INTERSECTION): Rename from FORWARD,
20485         REVERSE, UNION, INTERSECTION.  All uses updated.
20486         (OLD_DF_INTERFACE): Remove.
20487         (struct insn_info): Remove commented out insn field.
20488         * df.c: Update comments, tidy formatting.
20489         (df_def_table_realloc): Remove.
20490
20491
20492 2003-01-26  Alan Modra  <amodra@bigpond.net.au>
20493
20494         * calls.c (save_fixed_argument_area): Tidy.
20495         (restore_fixed_argument_area): Tidy.  Set alignment of stack_area.
20496         (expand_call): Comment typo fixes.  Don't init low_to_save.  Start
20497         call chain loop at 1 if !try_tail_call.  Formatting.
20498         (emit_library_call_value_1): Don't init low_to_save or high_to_save.
20499         Use save_fixed_argument_area and restore_fixed_argument_area.
20500
20501 2003-01-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
20502
20503         * df.c (df_uses_record): Handle CC0.
20504
20505 2003-01-25  Ulrich Weigand  <uweigand@de.ibm.com>
20506
20507         * reload.c (maybe_memory_address_p): New function.
20508         (find_reloads_address): Use it instead of memory_address_p.
20509
20510 2003-01-25  Kaz Kojima  <kkojima@gcc.gnu.org>
20511
20512         * final.c (shorten_branches): Align the address of code label
20513         when computing initial lengths and addresses.
20514
20515 2003-01-25  Kazu Hirata  <kazu@cs.umass.edu>
20516
20517         * config/m68hc11/m68hc11.md: Fix a comment typo.
20518
20519 2003-01-25  Andreas Jaeger  <aj@suse.de>
20520
20521         * config/i386/i386.c (x86_output_mi_thunk): Correct test for
20522         TARGET_MACHO.
20523
20524 2003-01-25  Roger Sayle  <roger@eyesopen.com>
20525
20526         * gcse.c (bypass_last_basic_block): New global variable.
20527         (bypass_block):  Use redirect_edge_and_branch_force to redirect
20528         fall-through edges.  Use bypass_last_basic_block to determine
20529         which blocks have valid PRE information.
20530         (bypass_conditional_jumps): Initialize bypass_last_basic_block.
20531
20532 2003-01-25  Jan Hubicka  <jh@suse.cz>
20533
20534         * gcse.c (local_cprop_pass): Update reg_sets table when needed.
20535
20536 2003-01-25  Jan Hubicka  <jh@suse.cz>
20537                               Eric Botcazou <ebotcazou@libertysurf.fr>
20538         PR opt/8492
20539         * gcse.c (one_cprop_pass): Delete unreachable blocks.
20540
20541 2003-01-25  Richard Henderson  <rth@redhat.com>
20542
20543         * config/ia64/ia64.c (ia64_rwreloc_select_rtx_section): Rename
20544         from ia64_aix_select_rtx_section.
20545         (ia64_rwreloc_select_section): Simlarly; use default*_1 function
20546         instead of saving and restoring flag_pic.
20547         (ia64_rwreloc_unique_section): Similarly.
20548         * config/ia64/aix.h (TARGET_ASM_SELECT_SECTION,
20549         TARGET_ASM_UNIQUE_SECTION, TARGET_ASM_SELECT_RTX_SECTION): Update.
20550         * config/ia64/hpux.h (TARGET_ASM_SELECT_SECTION,
20551         TARGET_ASM_UNIQUE_SECTION, TARGET_ASM_SELECT_RTX_SECTION): New.
20552
20553 2003-01-25  Kazu Hirata  <kazu@cs.umass.edu>
20554
20555         * config/h8300/h8300.c (h8300_shift_needs_scratch_p): Update a
20556         comment.
20557
20558 2003-01-25  Richard Henderson  <rth@redhat.com>
20559
20560         * config/m68k/m68k-none.h (ASM_SPEC): Adjust inter-option spacing.
20561
20562 2003-01-25  Kelley Cook <kelleycook@comcast.net>
20563
20564         * ggc-simple.c (debug_ggc_tree): Add PTR cast.
20565
20566 2003-01-25  Segher Boessenkool  <segher@koffie.nl>
20567
20568         * bitmap.h (BITMAP_WORD): New typedef: fundamental storage
20569         type for bitmaps.  Use unsigned long.
20570         (nBITMAP_WORD_BITS): New macro.
20571         (BITMAP_WORD_BITS): New macro.
20572         (rest of file): Use it.
20573         * bitmap.c: Use it.
20574
20575 2003-01-25  Richard Henderson  <rth@redhat.com>
20576
20577         2002-02-19  Robert Lipe  <robertlipe@usa.net>
20578         * config/i386/t-sco5gas: (CRTSTUFF_T_CFLAGS_S): Delete -mcoff.
20579
20580 2003-01-25  Roger Sayle  <roger@eyesopen.com>
20581
20582         * builtins.c (purge_builtin_constant_p): Scan insn stream
20583         sequentially rather than by basic block.
20584         * function.c (purge_addressof): Simplify test with INSN_P.
20585
20586 2003-01-25  Kazu Hirata  <kazu@cs.umass.edu>
20587
20588         * combine.c (simplify_comparison, case AND): Remove a redundant test.
20589
20590 2003-01-25  Roger Sayle  <roger@eyesopen.com>
20591
20592         * function.h (struct function): New field calls_constant_p.
20593         (current_function_calls_constant_p): New macro for above.
20594         * function.c (prepare_function_start): Initialize calls_eh_return
20595         and calls_constant_p.
20596         * builtins.c (expand_builtin_constant_p): Set calls_constant_p.
20597         * toplev.c (rest_of_compilation): Only call purge_builtin_constant_p
20598         when the current_function_calls_constant_p.
20599         * integrate.c (expand_inline_function): Set calls_constant_p if
20600         the function being inlined has calls_constant_p set.
20601
20602 2003-01-25  Roger Sayle  <roger@eyesopen.com>
20603
20604         * cse.c (fold_rtx): Instantiate CONSTANT_P_RTX to 0 when not
20605         optimizing, even if flag_gcse is true.
20606         * toplev.c (rest_of_compilation): purge_builtin_constant_p
20607         only needs to be called when "optimize > 0 && flag_gcse".
20608
20609 2003-01-25  Roger Sayle  <roger@eyesopen.com>
20610
20611         * stmt.c (emit_case_bit_tests): New routine to implement suitable
20612         switch statements using the equivalent of "if ((1<<x) & cst) ... ".
20613         (case_bit_test_cmp): New comparison function for "qsort" to order
20614         case_bit_tests by decreasing number of destination nodes.
20615         (lshift_cheap_p): New function to determine if "1 << x" is cheap.
20616         (expand_end_case_type): Use emit_case_bit_tests to implement
20617         suitable switch statments.
20618         (CASE_USE_BIT_TESTS): New target macro to disable the above.
20619         * Makefile.in (stmt.o): Add dependency on optab.h.
20620         * doc/tm.texi (CASE_USE_BIT_TESTS): Document new target macro.
20621
20622 2003-01-23  Andreas Schwab  <schwab@suse.de>
20623
20624         * config/ia64/crtend.asm [HAVE_INITFINI_ARRAY]: Make
20625         __do_global_ctors_aux hidden global and don't put it in
20626         .init_array.
20627         * config/ia64/crtbegin.asm [HAVE_INITFINI_ARRAY]: Put it here
20628         instead so that it comes first.
20629
20630 2003-01-25  Jan Hubicka  <jh@suse.cz>
20631
20632         * df.c (read_modify_subreg_p):  When osize == UNITS_PER_WORD,
20633         subreg is read/modify.
20634
20635 2003-01-25  Jan Hubicka  <jh@suse.cz>
20636
20637         * i386.c (ix86_expand_movstr, ix86_expand_clrstr): Consistently
20638         do libcall for large blocks.
20639         * i386.md (comi patterns): Set type to ssecomi.
20640         (sse2_unpck?pd): Fix mode of vec_select.
20641
20642         * cse.c: Include except.h
20643         (cse_set_around_loop):  Do not create new basic blocks.
20644         * Makefile.in (cse.o): Add dependnecy on except.h
20645
20646 2003-01-25  Jan Hubicka  <jh@suse.cz>
20647
20648         * builtins.c (fold_trunc_transparent_mathfn): New function.
20649         (fold_builtin): Use it.
20650         * convert.c (convert_to_real): Re-enable code to convert
20651         math functions; add support for floor familly functions.
20652
20653 2003-01-25  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
20654
20655         * Makefile.in (cfgloop.o, cfgloopanal.o, cfgloopmanip.o): Add
20656         dependencies on coretypes.h and $(TM_H).
20657
20658 2003-01-25  Jan Hubicka  <jh@suse.cz>
20659
20660         * builtins.c (fold_trunc_transparent_mathfn):  Undo accidental commit.
20661
20662 2003-01-24  Stuart Hastings  <stuart@apple.com>
20663
20664         * config/i386/i386.c (x86_output_mi_thunk): Add Darwin/x86 support.
20665
20666 2003-01-25  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
20667
20668         * config/c4x/c4x.md (UNSPEC_BU): New constants.
20669         (UNSPEC_RPTS, UNSPEC_LSH, UNSPEC_CMPHI, UNSPEC_RCPF): Likewise.
20670         (UNSPEC_RND, UNSPEC_RPTB_FILL, UNSPEC_LOADHF_INT): Likewise.
20671         (UNSPEC_STOREHF_INT, UNSPEC_RSQRF, UNSPEC_LOADQF_INT): Likewise.
20672         (UNSPEC_STOREQF_INT, UNSPEC_LDIV, UNSPEC_PUSH_ST):  Likewise.
20673         (UNSPEC_POP_ST, UNSPEC_PUSH_DP, UNSPEC_POP_DP):  Likewise.
20674         (UNSPEC_POPQI, UNSPEC_POPQF, UNSPEC_ANDN_ST):  Likewise.
20675         (UNSPEC_RPTB_INIT, UNSPEC_TOIEEE, UNSPEC_FRIEEE):  Likewise.
20676
20677 2003-01-24  Jan Hubicka  <jh@suse.cz>
20678
20679         * emit-rtl.c (reg_attrs_htab): New static variable.
20680         (reg_attrs_htab_hash, reg_attrs_htab_eq, get_reg_attrs): New static
20681         functions.
20682         (reg_rtx): Do not maintain regno_decl.
20683         (gen_rtx_REG_offset, set_reg_attrs_from_mem, set_delc_rtx,
20684         set_mem_attrs_from_reg): New global function.
20685         (init_emit): Do not initialize regno_decl.
20686         (init_emit_once): initialize reg_attrs_htab.
20687         * final.c (alter_subreg): Do not replace REG by SUBREG.
20688         (gen_mem_expr_from_op): Improve output.
20689         (output_asm_operands): Likewise.
20690         * function.c (assign_params): Do not set REGNO_DECL.
20691         * function.h (struct function): Kill regno_decl.
20692         (REGNO_DECL): Kill.
20693         * gengtype.c (adjust_field_rtx_def): Handle new field of reg.
20694         * print_rtl.c (print_rtx): Output REG information.
20695         * regclass.c (reg_scan_mark_refs): Update attrs.
20696         * reload1.c (alter_reg): Likewise.
20697         * simplify_rtx.c (simplify_subreg): Likewise.
20698         * stmt.c (expand_decl): Likewise.
20699         * rtl.def (REG): Add new field.
20700         * rtl.h (struct reg_attrs): New.
20701         (rtunion_def): At rtreg.
20702         (X0MEMATTR): Add checking.
20703         (X0REGATTR, REG_ATTRS, REG_EXPR, REG_OFFSET): New macro.
20704         (set_reg_attrs_from_mem, set_mem_attrs_from_reg, gen_rtx_REG_offset):
20705         Declare.
20706         * tree.h (SET_DECL_RTL): Call set_decl_rtl.
20707
20708 2003-01-24  Bob Wilson  <bob.wilson@acm.org>
20709
20710         * config/xtensa/xtensa.c: Remove unused include of machmode.h.
20711         (xtensa_emit_call, print_operand): Fix printf format strings
20712         to avoid compile warnings.
20713         (xtensa_function_prologue, xtensa_function_epilogue): Change type
20714         of "size" argument to HOST_WIDE_INT to fix compile warnings.
20715         * config/xtensa/xtensa-protos.h
20716         (xtensa_function_prologue, xtensa_function_epilogue): Ditto.
20717
20718 2003-01-24  Jan Hubicka  <jh@suse.cz>
20719
20720         * builtins.c (DEF_BUILTIN): Accept 10 arguments.
20721         (implicit_built_in_decls): New global array.
20722         (mathfn_built_in): New global function.
20723         (fold_trunc_transparent_mathfn): New static function
20724         (expand_builtin_strstr, expand_bultin_strchr,
20725         expand_builtin_strpbrk, expand_builtin_strcpy,
20726         expand_builtin_strncpy, expand_bultin_strcmp,
20727         expand_bultin_strncat, expand_builtin_fputs): Use
20728         implicint_built_in_decls.
20729         (fold_builtin): Fold floor/trunc/round/ceil/nearbyint.
20730         * builtins.def: Fix comments.
20731         (DEF_GCC_BUILTIN, DEF_FALLBACK_BUILTIN, DEF_EXT_FALLBACK_BUILTIN,
20732         DEF_LIB_BUILTIN, DEF_LIB_ALWAYS_BUILTIN, DEF_EXT_LIB_BUILTIN,
20733         DEF_C99_BULTIN, DEF_FRONT_END_LIB_BUILTIN,
20734         DEF_EXT_FRONT_END_LIB_BUILTIN): Pass implicit as needed.
20735         (DEF_C99_C90RES_BULTIN): New.
20736         (*f, *l builtins): Update.
20737         * c-common.c (DEF_BUILTIN): Initialize implicit array.
20738         (c_expand_builtin_printf, c_expand_builtin_fprintf): Update.
20739         * convert.c (strip_float_extensions): New global function.
20740         * tree.h (DEF_BUILTIN): Accept 10 arguments.
20741         (implicit_built_in_decls, mathfn_built_in, strip_float_extension):
20742         Declare.
20743         * java/builtins.c (define_builtin): Handle implicit.
20744         (DEF_BUILTIN): Update.
20745         * tm.texi (TARGET_C99_FUNCTIONS): Document.
20746         * defaults.h (TARGET_C99_FUNCTIONS): Default to 0.
20747         * config/linux.h (TARGET_C99_FUNCTIONS): Default to 1
20748         when using glibc2.
20749
20750 2003-01-24  Bob Wilson  <bob.wilson@acm.org>
20751
20752         * config.gcc (xtensa-*-elf*): Removed assignments to with_newlib,
20753         extra_parts, and fixincludes.  Add xtensa/t-elf tmake_file.
20754         (xtensa-*-linux*): Add xtensa/t-linux tmake_file.
20755         * config/xtensa/crti.asm: New file.
20756         * config/xtensa/crtn.asm: New file.
20757         * config/xtensa/t-elf: New file.
20758         * config/xtensa/t-linux: New file.
20759         * config/xtensa/t-xtensa: Add rules for crti.o and crtn.o.
20760         Move various CFLAGS settings to new t-elf file.
20761
20762 2003-01-24  Richard Henderson  <rth@redhat.com>
20763
20764         PR optimization/4382
20765         * tree-inline.c (find_builtin_longjmp_call_1): New.
20766         (find_builtin_longjmp_call): New.
20767         (inlinable_function_p): Use it.
20768
20769 2003-01-24  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
20770
20771         * config/i386/i386-protos.h (function_arg_pass_by_reference): Declare.
20772         * config/i386/i386.h (FUNCTION_ARG_PASS_BY_REFERENCE): Use it.
20773         * config/i386/i386.c (function_arg_pass_by_reference): New.
20774         (ix86_va_arg): Support arguments passed by reference.
20775
20776 2003-01-24  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
20777
20778         * cfgloopanal.c: New file.
20779         * cfgloopmanip.c: New file.
20780         * Makefile.in (cfgloopanal.o, cfgloopmanip.o): New.
20781         (toplev.o, loop.o, doloop.o, unroll.o, cfgloop.o, predict.o,
20782         cfglayout.o): Add dependency on cfgloop.h.
20783         (cfgloop.o): Add flags.h dependency.
20784         * basic-block.h (BB_IRREDUCIBLE_LOOP, BB_SUPERBLOCK): New flags.
20785         (VLS_EXPECT_PREHEADERS, VLS_EXPECT_SIMPLE_LATCHES): Removed.
20786         (struct loop, struct loops, flow_loops_find, flow_loops_update,
20787         flow_loops_free, flow_loops_dump, flow_loop_dump,
20788         flow_loop_scan, flow_loop_tree_node_add, flow_loop_tree_node_remove,
20789         LOOP_TREE,,LOOP_PRE_HEADER, LOOP_ENTRY_EDGES, LOOP_EXIT_EDGES,
20790         LOOP_ALL, flow_loop_outside_edge_p, flow_loop_nested_p,
20791         flow_bb_inside_loop_p, get_loop_body, loop_preheader_edge,
20792         loop_latch_edge, add_bb_to_loop, remove_bb_from_loops,
20793         find_common_loop, verify_loop_structure): Declarations moved to ...
20794         * cfgloop.h: New file.
20795         * bb-reorder.c (reorder_basic_blocks): Modified.
20796         * cfglayout.c: Include cfgloop.h.
20797         (cleanup_unconditional_jumps, cfg_layout_redirect_edge,
20798         cfg_layout_duplicate_bb, cfg_layout_initialize): Update loop structure.
20799         (break_superblocks): New static function.
20800         (cfg_layout_finalize): Use it.
20801         (cfg_layout_split_block): New function.
20802         * cfglayout.h (struct reorder_block_def): Add copy and duplicated
20803         fields.
20804         (cfg_layout_initialize, cfg_layout_redirect_edge): Declaration
20805         changed.
20806         (cfg_layout_split_block): Declare.
20807         * cfgloop.c: Include cfgloop.h and flags.h.
20808         (flow_loop_dump, flow_loops_free, flow_loop_exit_edges_find,
20809         get_loop_body): Avoid signed versus unsigned comparison warnings.
20810         (make_forwarder_block, flow_loops_find, loop_preheader_edge,
20811         loop_latch_edge): Modified.
20812         (verify_loop_structure): Modified to use flags stored in loop structure;
20813         check irreducible loops.
20814         (cancel_loop, cancel_loop_tree): New functions.
20815         (estimate_probability): Use loop analysis code for predictions.
20816         (estimate_loops_at_level):  Avoid signed versus unsigned comparison
20817         warnings.
20818         * doloop.c: Include cfgloop.h.
20819         * loop.c: Include cfgloop.h.
20820         * predict.c: Include cfgloop.h.
20821         * toplev.c: Include cfgloop.h.
20822         * unroll.c: Include cfgloop.h.
20823         * tracer.c (tracer): Modified.
20824
20825 2003-01-24  Kazu Hirata  <kazu@cs.umass.edu>
20826
20827         * config/h8300/h8300.c (get_shift_alg): Fix a typo.
20828
20829 2003-01-24  Ulrich Weigand  <uweigand@de.ibm.com>
20830
20831         * configure.in (HAVE_AS_TLS): Add s390-*-* and s390x-*-* cases.
20832         * configure: Regenerate.
20833
20834         * config/s390/s390-protos.h (tls_symbolic_operand): Add prototype.
20835         (tls_symbolic_reference_mentioned_p): Add prototype.
20836         (s390_tls_get_offset): Add prototype.
20837         (emit_pic_move): Remove prototype, replace by ...
20838         (emit_symbolic_move): .. this new prototype.
20839
20840         * config/s390/s390.c (TARGET_HAVE_TLS): Conditionally define.
20841         (tls_model_chars): New global variable.
20842         (s390_encode_section_info): Encode TLS model.
20843         Use targetm.binds_local_p to check for local symbols.
20844         (s390_strip_name_encoding): New function.
20845         (TARGET_STRIP_NAME_ENCODING): Define.
20846
20847         (get_thread_pointer): New function.
20848         (legitimize_tls_address): New function.
20849         (legitimize_address): Call it.
20850         (emit_pic_move): Remove, replace by ...
20851         (emit_symbolic_move): ... this new function.
20852
20853         (larl_operand): Handle TLS operands.
20854         (legitimate_constant_p): Likewise.
20855         (s390_decompose_address): Likewise.
20856         (s390_cannot_force_const_mem): New function.
20857         (TARGET_CANNOT_FORCE_CONST_MEM): Define.
20858
20859         (s390_output_symbolic_const): Handle TLS unspecs.
20860         (print_operand): New code 'J'.
20861         (machine_function): Add struct member 'some_ld_name'.
20862         (get_some_local_dynamic_name, get_some_local_dynamic_name_1): New.
20863
20864         (enum s390_builtin): New type.
20865         (code_for_builtin_64, code_for_builtin_31): New global variables.
20866         (s390_init_builtins, s390_expand_builtin): New functions.
20867         (TARGET_INIT_BUILTINS, TARGET_EXPAND_BUILTIN): Define.
20868
20869         * config/s390/s390.h (TLS_SYMBOLIC_CONST): New macro.
20870         (ASM_OUTPUT_LABELREF): Define.
20871         (ASM_OUTPUT_SPECIAL_POOL_ENTRY): Handle TLS constants.
20872
20873         * config/s390/s390.md: Define TLS UNSPEC constants.
20874         ("movdi", "movsi"): Handle TLS operands.
20875         ("get_tp_64", "get_tp_31", "set_tp_64", "set_tp_31"): New insns.
20876         ("*tls_load_64", "*tls_load_31"): New insns.
20877         ("call_value_tls", "call_value_tls_exp"): New expanders.
20878         ("brasl_tls", "bras_tls", "basr_tls_64", "basr_tls_31",
20879         "bas_tls_64", "bas_tls_31"): New insns.
20880
20881 2003-01-24  Nathan Sidwell  <nathan@codesourcery.com>
20882
20883         * config/rs6000/rs6000.c (rs6000_parse_abi_options): Make sure
20884         spe ABI is configured, if requested.
20885
20886 2003-01-24  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
20887
20888         * doc/passes.texi: Fix typo.
20889
20890 2003-01-24  Andreas Schwab  <schwab@suse.de>
20891
20892         * stor-layout.c (excess_unit_span): Only define if used.
20893
20894 2003-01-24  Jerry Quinn  <jlquinn@optonline.net>
20895
20896         * gcc/doc/invoke.texi (Optimization Options): List -O levels
20897         for each optimization flag.
20898
20899 2003-01-24  Kazu Hirata  <kazu@cs.umass.edu>
20900
20901         * config/h8300/h8300.md (*andsi3_ashift_n_lower): New.
20902
20903 2003-01-24  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
20904
20905         * doc/bugreport.texi: Use @command instead of @code for commands.
20906         * doc/collect2.texi: Likewise.
20907         * doc/headerdirs.texi: Likewise.
20908         * doc/invoke.texi: Likewise.
20909         * doc/standards.texi: Likewise.
20910         * doc/tm.texi: Likewise.
20911         * doc/trouble.texi: Likewise.
20912
20913 2003-01-24  Nick Clifton  <nickc@redhat.com>
20914
20915         * config/arm/arm.c (use_return_insn): Do not use a single return
20916         instruction for interrupt handelrs which have to create a stack
20917         frame.
20918         (arm_expand_prologue): Do not pre-bias the return address of
20919         interrupt handlers which create a stack frame.
20920
20921 2003-01-24  Nick Clifton  <nickc@redhat.com>
20922
20923         * Add sh2e support:
20924
20925         2002-08-12  Alexandre Oliva  <aoliva@redhat.com>
20926
20927                 * config/sh/sh.c (output_branch) [TARGET_SH2E]: Handle
20928                 med_cbranches.  Fix logic in short_cbranches.
20929
20930         2002-04-03  Alexandre Oliva  <aoliva@redhat.com>
20931
20932                 * config/sh/sh.md (delay for cbranch): Don't annul delay
20933                 slots on SH2e.
20934                 * config/sh/sh.c (sh_insn_length_adjustment): Add 2 for
20935                 cbranch with unfilled delay slot on SH2e.
20936                 (output_branch): Fill with a nop the delay slot of a
20937                 branch that required a delay slot but didn't get one.
20938
20939         2002-04-02  Alexandre Oliva  <aoliva@redhat.com>
20940
20941                 * doc/invoke.texi (SH options): Document -m2e.
20942                 * config/sh/crt1.asm: Add __SH2E__ Next to __SH3E__.
20943                 * config/sh/lib1funcs.asm: Likewise.
20944                 * config/sh/sh.c: Replace all uses of TARGET_SH3E with SH2E.
20945                 * config/sh/sh.h (CPP_SPEC): Define __SH2E__ for -m2e, and
20946                 not __sh1__.
20947                 (CONDITIONAL_REGISTER_USAGE): Don't disable FP regs from
20948                 SH2E up.
20949                 (SH3E_BIT): Renamed to...
20950                 (SH_E_BIT): ... this.  Replace all uses.
20951                 (TARGET_SH2E): Define from SH_E_BIT and TARGET_SH2.
20952                 Replace all uses of TARGET_SH3E with TARGET_SH2E.
20953                 (TARGET_SWITCHES): Added 2e.
20954                 (OVERRIDE_OPTIONS): Set sh_cpu for SH2E.
20955                 (processor_type): Added PROCESSOR_SH2E.
20956                 * config/sh/sh.md: Replace all uses of TARGET_SH3E with
20957                 TARGET_SH2E, except in sqrtsf2_i.
20958                 (attribute cpu): Added sh2e.
20959                 * config/sh/t-sh (MULTILIB_OPTIONS): Replace m3e with m2e.
20960                 (MULTILIB_MATCHES): Use m2e multilib for m3e.
20961                 * config.gcc: Add sh2e target support.
20962
20963 2003-01-24  Phil Edwards  <pme@gcc.gnu.org>
20964
20965         Rename -W to -Wextra.
20966         * c-decl.c:  Update comments.
20967         * c-typeck.c:  Likewise.
20968         * flags.h:  Likewise.
20969         * function.c:  Likewise.
20970         * stmt.c:  Likewise.
20971         * toplev.c:  Update comments.
20972         (W_options):  Add 'extra'.
20973         (display_help):  Remove '-W'.
20974         (decode_W_option):  Special warn_uninitialized treatment in the case
20975         of -Wextra.
20976         * doc/invoke.texi:  Update with new entries.
20977
20978 2003-01-23  Richard Henderson  <rth@redhat.com>
20979
20980         * ifcvt.c (noce_process_if_block): Re-add check vs X being changed
20981         in no-else-block case.  Add commentary.
20982
20983 2003-01-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20984
20985         * configure.in: Revert last change.
20986
20987 2003-01-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20988
20989         * configure.in: Don't include ansidecl.h in tconfig.h.
20990         * gcov-io.h (PARAMS, ATTRIBUTE_UNUSED): Define if IN_LIBGCC2.
20991         * unwind-dw2-fde.h (last_fde): Use __attribute__, not
20992         ATTRIBUTE_UNUSED.
20993
20994         * configure: Regenerate.
20995
20996 2003-01-23  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
20997
20998         PR java/6748
20999         * config/rs6000/linux.h (MD_FALLBACK_FRAME_STATE_FOR): Don't destroy
21000         regs->nip. Fix rt_sigreturn frame layout. Add support for newer
21001         kernels.
21002
21003 2003-01-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21004
21005         * cpplex.c (cpp_interpret_charconst): Squelch warning with cast.
21006
21007 2003-01-23  Ulrich Weigand  <uweigand@de.ibm.com>
21008
21009         * genattrtab.c (write_attr_get): Mark 'insn' paramter
21010         as ATTRIBUTE_UNUSED.
21011
21012 2003-01-23  Richard Earnshaw  <rearnsha@arm.com>
21013
21014         * arm.c (thumb_base_register_rtx_p): New function.
21015         (thumb_index_register_rtx_p): New function.
21016         (thumb_legitimate_address_p): New function.
21017         (thumb_legitimate_offset_p): New function.
21018         * arm.h (REG_STRICT_P): Define according to setting of REG_OK_STRICT.
21019         (ARM_GO_IF_LEGITIMATE_ADDRESS): Use REG_STRICT_P to avoid duplicate
21020         definitions.
21021         (THUMB_GO_IF_LEGITIMATE_ADDRESS): Use thumb_legitimate_address_p.
21022         (THUMB_LEGITIMATE_OFFSET): Delte.
21023         (THUMB_LEGITIMIZE_RELOAD_ADDRESS): Use thumb_legitimate_offset.
21024         * arm-protos.h (thumb_legitimate_address_p): Add prototype.
21025         (thumb_legitimate_offset_p): Likewise.
21026
21027 2003-01-23  Andreas Schwab  <schwab@suse.de>
21028
21029         * unwind.h (_Unwind_GetTextRelBase): Mark parameter as unused.
21030
21031 2003-01-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21032
21033         * fixinc/Makefile.in (FL_LIST): Revert last change.
21034
21035 2003-01-23  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
21036
21037         PR other/7341
21038         * invoke.texi (ftest-coverage): Fix broken cross-reference.
21039         Change @code to @command for gcov command.
21040
21041         * gcc.texi: Adjust title of gcov section.
21042         Adjust copyright.
21043         * gcov.texi: Likewise.
21044
21045 2003-01-22  Roger Sayle  <roger@eyesopen.com>
21046
21047         PR optimization/8423
21048         * cse.c (fold_rtx): Only eliminate a CONSTANT_P_RTX to 1 when
21049         its argument is constant, or 0 if !flag_gcse.
21050         * simplify-rtx.c (simplify_rtx): Convert CONSTANT_P_RTX to 1
21051         if it's argument is constant.
21052         * gcse.c (want_to_gcse_p): Ignore CONSTANT_P_RTX nodes.
21053         (hash_scan_set): Don't record CONSTANT_P_RTX expressions.
21054         (do_local_cprop): Don't propagate CONSTANT_P_RTX constants.
21055         * builtins.c (purge_builtin_constant_p): New function to force
21056         instantiation of any remaining CONSTANT_P_RTX nodes.
21057         * rtl.h (purge_builtin_constant_p): Prototype here.
21058         * toplev.c (rest_of_compilation): Invoke purge_builtin_constant_p
21059         pass after GCSE and before loop.
21060         (flag_gcse): No longer static.
21061         * flags.h (flag_gcse): Prototype here.
21062
21063 2003-01-22  Ulrich Weigand  <uweigand@de.ibm.com>
21064
21065         * config/s390/s390.h (HARD_REGNO_MODE_OK): Fix warning regression
21066         introduced by last change.
21067
21068 2003-01-22  Andreas Schwab  <schwab@suse.de>
21069
21070         * ra-rewrite.c (rewrite_program2): Initialize bb to avoid warning.
21071
21072 2003-01-22  Kazu Hirata  <kazu@cs.umass.edu>
21073
21074         * config/h8300/h8300.c (h8300_shift_needs_scratch_p): Don't
21075         request a scratch reg on H8S when the shift count is 8.
21076
21077 2003-01-22  Ulrich Weigand  <uweigand@de.ibm.com>
21078
21079         * config/s390/s390-protos.h (preferred_la_operand_p):
21080         Remove second parameter.
21081         * config/s390/s390.c (preferred_la_operand_p): Likewise.
21082         * config/s390/s390.h (FRAME_REGNO_P, FRAME_REG_P): New macros.
21083         (HARD_REGNO_MODE_OK): Use FRAME_REGNO_P.
21084         * config/s390/s390.md ("*la_cc_64", "*la_cc_31", splitters): Remove.
21085         Add peepholes to transform ADD to LOAD ADDRESS.
21086
21087 2003-01-22  Richard Earnshaw  <rearnsha@arm.com>
21088
21089         * arm.c (arm_address_register_rtx_p): New function.
21090         (arm_legitimate_address_p): New function.
21091         (arm_legitimate_index_p): New function.
21092         (legitimize_pic_address): Use arm_legitimate_index_p.
21093         * arm-protos.h (arm_legtimate_address_p): Add prototype.
21094         * arm.h (ARM_GO_IF_LEGITIMATE_INDEX): Delete.
21095         (ARM_GO_IF_LEGITIMATE_ADDRESS): Call arm_legitimate_address_p.
21096
21097 2003-01-22  Hartmut Penner  <hpenner@de.ibm.com>
21098
21099         * config/s390/s390.md (floatdfdi2): Insn has type 'itof'.
21100         * config/s390/2064.md (define_bypass): Correct 'Load' and
21101         'Load-address' bypass values.
21102
21103 2003-01-22  Andreas Schwab  <schwab@suse.de>
21104
21105         * config/ia64/t-ia64 (insn-attrtab.o-warn): Define as -Wno-error.
21106
21107 2003-01-21  Zack Weinberg  <zack@codesourcery.com>
21108
21109         * genautomata.c (output_internal_insn_latency_func,
21110         output_print_reservation_func): Short circuit when there is no
21111         automaton to generate code for.
21112
21113 2003-01-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21114
21115         * Makefile.in (ssa-ccp.o): Depend on coretypes.h $(TM_H).
21116         (df.o): Delete duplicate dependency on coretypes.h $(TM_H).
21117
21118 2003-01-21  Geoffrey Keating  <geoffk@apple.com>
21119
21120         * config/rs6000/rs6000.md: Remove warning.
21121         (builtin_setjmp_receiver): Likewise.
21122         * config/darwin.c (update_stubs): Slightly improve terrible hack
21123         with identifiers.  Add comment pointing out problems with it.
21124         (update_non_lazy_ptrs): Likewise.
21125
21126 2003-01-21  Richard Henderson  <rth@redhat.com>
21127
21128         * dwarf2out.c (lookup_filename): Fix printf format warning.
21129         * system.h (fread_unlocked, fwrite_unlocked): Undef.
21130
21131         * fixinc/Makefile.in (FL_LIST): Add $($@-warn) hook.
21132         (fixincl.o-warn, gnu-regex.o-warn): New.
21133         * fixinc/fixfixes.c (FIX_PROC_HEAD): Mark parameters unused.
21134         * fixinc/fixtests.c (TEST_FOR_FIX_PROC_HEAD): Likewise.
21135         * fixinc/fixincl.c (process): Fix printf format warning.
21136
21137 2003-01-21  Ulrich Weigand  <uweigand@de.ibm.com>
21138
21139         * dwarf2out (output_file_names): Don't crash if called
21140         with empty file_table.
21141
21142 2003-01-21  Zack Weinberg  <zack@codesourcery.com>
21143
21144         * genautomata.c (output_internal_insn_latency_func): Add
21145         missing break statement to generated code.
21146
21147 2003-01-21  Roger Sayle  <roger@eyesopen.com>
21148
21149         * stmt.c (same_case_target_p): New function to determine whether
21150         two case labels branch to the same target.  Split out from...
21151         (group_case_nodes): ... here.  Use same_case_target_p instead.
21152         (strip_default_case_nodes): Remove explicit case nodes
21153         that branch to the default destination.
21154         (expand_end_case_type): Call strip_default_case_nodes after
21155         group_case_nodes, to simplify the case-list before we count it.
21156         Only generate table_label RTX when actually needed.  Try to share
21157         thiscase->exit_label and thiscase->data.case_stmt.default_label
21158         when a switch has no explicit default case.  Simplify test for
21159         constant index.
21160
21161 2003-01-21  Kazu Hirata  <kazu@cs.umass.edu>
21162
21163         * config/h8300/h8300.md (*negsf2_h8300): Use \\t instead of
21164         \t.
21165         (*negsf2_h8300hs): Likewise.
21166         (*addsi3_lshiftrt_16_zexthi): Likewise.
21167         (*iorhi3_lshiftrt_8): Likewise.
21168
21169 2003-01-21  Ulrich Weigand  <uweigand@de.ibm.com>
21170
21171         * dwarf2out.c (fde_table_in_use): Mark GTY.
21172         (dwarf2out_cfi_label_num): New variable, marked GTY.
21173         (dwarf2out_cfi_label): Use it instead of static label_num.
21174         * emit-rtl.c (label_num): Mark GTY.
21175
21176 2003-01-21  Kazu Hirata  <kazu@cs.umass.edu>
21177
21178         * config/h8300/h8300.c (output_plussi): Support H8/300.
21179         (compute_plussi_length): Likewise.
21180         (compute_plussi_cc): Likewise.
21181         * config/h8300/h8300.md (addsi_h8300): Use output_plussi to
21182         output assembly instructions.
21183
21184 2003-01-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21185
21186         * calls.c (fix_unsafe_tree): Prototype.
21187
21188         * Makefile.in (GCC_WARN_CFLAGS): Add $(WERROR) $($@-warn)
21189         (gtype-desc.o-warn, c-decl.o-warn, varasm.o-warn, gcc.o-warn,
21190         insn-conditions.o-warn, out_object_file, gengtype-yacc.o-warn,
21191         c-parse.o-warn): Add -Wno-error.
21192         (STAGE2_FLAGS_TO_PASS): Add WERROR="@WERROR@".
21193
21194         * configure.in (--enable-werror): Add new flag.
21195         * doc/install.texi (--enable-werror): Document.
21196         * configure: Regenerate.
21197
21198         * objc/Make-lang.in (objc/objc-parse.o-warn): Add -Wno-error.
21199
21200 2003-01-21  Andreas Schwab  <schwab@suse.de>
21201
21202         * genautomata.c (output_internal_insn_latency_func): Fix missing
21203         close paren in output.
21204
21205 2003-01-21  Zack Weinberg  <zack@codesourcery.com>
21206
21207         * genautomata.c: Space savings in generated code:
21208         (output_dfa_insn_code_func): Split out the table-enlargement
21209         path to an out-of-line static function, dfa_insn_code_enlarge.
21210         (output_internal_insn_latency_func): Use a lookup table for the
21211         default latencies.
21212         (output_print_reservation_func): Use a lookup table for the
21213         strings.
21214
21215 2003-01-21  Christian Ehrhardt  <ehrhardt@mathematik.uni-ulm.de>
21216
21217         PR opt/7507
21218         * calls.c (fix_unsafe_tree): Split out from ...
21219         (expand_call): ... here.  Use it on the function address too.
21220
21221 2003-01-20  Richard Henderson  <rth@redhat.com>
21222
21223         * expr.h (default_must_pass_in_stack): Move decl outside ifdef.
21224
21225 2003-01-20  Richard Henderson  <rth@redhat.com>
21226
21227         PR opt/7154
21228         * stmt.c (expand_asm_operands): Validize memory operands.
21229
21230 2003-01-20  Richard Henderson  <rth@redhat.com>
21231
21232         PR opt/8848
21233         * ifcvt.c (noce_process_if_block): Correct arguments to
21234         modified_between_p for no-else-block case.
21235
21236 2003-01-20  Kazu Hirata  <kazu@cs.umass.edu>
21237
21238         * config/h8300/h8300.c (const_costs): Remove a warning.
21239         (output_plussi): Likewise.
21240         (compute_plussi_length): Likewise.
21241         (compute_plussi_cc): Likewise.
21242
21243 2003-01-20  Kazu Hirata  <kazu@cs.umass.edu>
21244
21245         * config/h8300/h8300.md (addsi_h8300): Remove the last
21246         alternative.
21247
21248 2003-01-20  Kazu Hirata  <kazu@cs.umass.edu>
21249
21250         * config/h8300/h8300.c (get_shift_alg): Remove redundant code.
21251
21252 2003-01-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21253
21254         * system.h (__NO_STRING_INLINES): Define.
21255
21256 2003-01-20  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
21257
21258         * ifcvt.c (noce_emit_store_flag): Don't emit store flag if mode of x
21259         is not a scalar int mode.
21260
21261 2003-01-20  Roger Sayle  <roger@eyesopen.com>
21262
21263         * cse.c (cse_insn): Avoid RTL sharing when updating the RETVAL
21264         insn's notes following a substitution inside a libcall.
21265
21266 2003-01-20  Zack Weinberg  <zack@codesourcery.com>
21267
21268         * configure.in: Check for system-provided 'uchar' type.
21269         * configure, config.in: Regenerate.
21270         * cpphash.h: Only typedef 'uchar' if the system doesn't.
21271
21272 2003-01-20  Richard Henderson  <rth@redhat.com>
21273
21274         * expr.h (MUST_PASS_IN_STACK): Move implementation...
21275         * calls.c (default_must_pass_in_stack): ... here.
21276
21277 2003-01-20  Vladimir Makarov  <vmakarov@redhat.com>
21278
21279         * genattrtab.h (INSN_ALTS_FUNC_NAME): Move it from genautomata.c.
21280
21281         * genautomata.c (INSN_ALTS_FUNC_NAME): Move it into genattrtab.h.
21282
21283         * genattr.c (main): Output default definition of AUTOMATON_ALTS.
21284         Wrap up definition of `insn_alts'.
21285
21286         * genattrtab.c (main): Wrap up `insn_alts'.
21287
21288 2003-01-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21289
21290         * collect2.c (ldgetname): Check HAVE_DECL_LDGETNAME before
21291         prototyping.
21292         * configure.in: Check for <ldfcn.h> and ldgetname() prototype.
21293
21294         * config.in, configure: Regenerate.
21295
21296 2003-01-20  Nick Clifton  <nickc@redhat.com>
21297
21298         * config/arm/arm.md (sibcall_epilogue): Add an
21299         UNSPEC_PROLOGUE_USE to prevent the link register from being
21300         considered dead.
21301
21302 2003-01-20  Jan Hubicka  <jh@suse.cz>
21303
21304         * i386.md (SSE cmov splitter):  Handle memory operand in operand 5.
21305
21306 2003-01-20  Andreas Schwab  <schwab@suse.de>
21307
21308         * system.h: Don't declare strsignal if the decl test hasn't been
21309         run yet.
21310
21311 2003-01-20  Kazu Hirata  <kazu@cs.umass.edu>
21312
21313         * config/h8300/h8300.c (notice_update_cc): Don't assume that
21314         recog_data.operands[0] is always associated with cc0.
21315
21316 2003-01-19  David Edelsohn  <edelsohn@gnu.org>
21317
21318         * collect2.c (ldgetname): Expand declaration to prototype.
21319         * read-rtl.c (atoll): Add prototype.
21320         * system.h (strsignal): Also declare if no declaration found.
21321
21322 2003-01-19  Alexandre Oliva  <aoliva@redhat.com>
21323
21324         * config.gcc (mips64*-*-linux*): Added.
21325         * config/mips/linux64.h, config/mips/t-linux64: New file.
21326         * config/mips/iris6.h (MIPS_TFMODE_FORMAT): Define.
21327         * config/mips/mips.c (override_options): Use it.
21328         * config/mips/mips.h (TARGET_SWITCHES): Added...
21329         (SUBTARGET_TARGET_SWITCHES): New, empty by default.
21330         * Makefile.in (SPECS): New.
21331         (STAGESTUFF, specs, mostlyclean, install-common): Use it.
21332         * gcc.c (process_command): Move self-spec processing past spec
21333         file loading.
21334         * doc/tm.texi (DRIVER_SELF_SPECS): Document the change.
21335         * doc/fragments.texi (MULTILIB_EXTRA_OPTS): Document need for
21336         CRTSTUFF_T_CFLAGS.
21337         (SPECS): Document.
21338         * doc/invoke.texi (-mabi-fake-default): Document.
21339
21340 2003-01-19  Stephane Carrez  <stcarrez@nerim.fr>
21341
21342         * config/m68hc11/m68hc11.c (stack_push_word, stack_pop_word,
21343         z_reg, z_reg_qi): Declare static and GTY().
21344         (da_reg): Remove.
21345         (create_regs_rtx): Don't create da_reg.
21346         ("gt-m68hc11.h"): Include for GTY roots.
21347         * config/m68hc11/m68hc11.h (ix_reg, iy_reg, d_reg): Declare extern
21348         and GTY() here.
21349         (m68hc11_compare_op0, m68hc11_compare_op1): Likewise.
21350         (m68hc11_soft_tmp_reg): Likewise.
21351         * config/m68hc11/m68hc11-protos.h: Remove above declarations.
21352
21353 2003-01-18  Kazu Hirata  <kazu@cs.umass.edu>
21354
21355         * basic-block.h: Fix comment formatting.
21356         * calls.c: Likewise.
21357         * combine.c: Likewise.
21358         * convert.c: Likewise.
21359         * gcov.c: Likewise.
21360         * haifa-sched.c: Likewise.
21361         * libgcc2.c: Likewise.
21362         * loop.c: Likewise.
21363         * profile.c: Likewise.
21364         * system.h: Likewise.
21365
21366 2003-01-18  Roger Sayle  <roger@eyesopen.com>
21367
21368         * config/pa/pa.md (muldi3): Avoid invalid sharing of SUBREG RTXs.
21369
21370 2003-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21371
21372         * ra-build.c (undef_to_size_word): Avoid `switch' warning.
21373
21374 2003-01-17  Dale Johannesen  <dalej@apple.com>
21375
21376         * config/rs6000/rs6000.md (*floatsidf2_internal):  Add earlyclobbers.
21377           (*floatunssidf2_internal):  Ditto.
21378
21379 2003-01-17  Kazu Hirata  <kazu@cs.umass.edu>
21380
21381         * alias.c: Fix comment typos.
21382         * basic-block.h: Likewise.
21383         * c-common.c: Likewise.
21384         * c-common.h: Likewise.
21385         * c-decl.c: Likewise.
21386         * c-opts.c: Likewise.
21387         * c-pragma.c: Likewise.
21388         * c-pretty-print.h: Likewise.
21389         * cfg.c: Likewise.
21390         * cfganal.c: Likewise.
21391         * cfgbuild.c: Likewise.
21392         * cfgcleanup.c: Likewise.
21393         * cfglayout.c: Likewise.
21394         * cfgrtl.c: Likewise.
21395         * convert.c: Likewise.
21396         * cpphash.h: Likewise.
21397         * cpplex.c: Likewise.
21398         * cpplib.h: Likewise.
21399         * df.h: Likewise.
21400         * diagnostic.c: Likewise.
21401         * diagnostic.h: Likewise.
21402         * dwarf2.h: Likewise.
21403
21404 2003-01-17  Stan Shebs  <shebs@apple.com>
21405
21406         * config/darwin-protos.h: Forward-declare struct cpp_reader.
21407
21408 2003-01-17  Douglas B Rupp  <rupp@gnat.com>
21409
21410         * config/alpha/alpha.c (alpha_need_linkage): Fix obvious
21411         mistake in last checkin.
21412
21413 2003-01-17  Kazu Hirata  <kazu@cs.umass.edu>
21414
21415         * et-forest.c: Fix comment typos.
21416         * et-forest.h: Likewise.
21417         * except.c: Likewise.
21418         * expr.c: Likewise.
21419         * flags.h: Likewise.
21420         * flow.c: Likewise.
21421         * gcc.c: Likewise.
21422         * gcse.c: Likewise.
21423         * genattrtab.c: Likewise.
21424         * genautomata.c: Likewise.
21425         * gengtype.c: Likewise.
21426         * genrecog.c: Likewise.
21427         * global.c: Likewise.
21428         * gthr-rtems.h: Likewise.
21429
21430 2003-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21431
21432         * i386.c (x86_function_profiler): Fix format specifier.
21433
21434 2003-01-17  Richard Henderson  <rth@redhat.com>
21435
21436         * gengtype.c (walk_type): Allow paramN_is.
21437
21438 2003-01-17  Nick Clifton  <nickc@redhat.com>
21439
21440         * config/i960/t-960bare (i960-c.o): Add missing newline escape.
21441
21442 2003-01-16  Richard Henderson  <rth@redhat.com>
21443
21444         * config/alpha/linux-elf.h (LIB_SPEC): Adjust inter-option spacing.
21445
21446 2003-01-16  Richard Henderson  <rth@redhat.com>
21447
21448         * config/alpha/alpha.c (alpha_sr_alias_set): Mark GTY.
21449         (alpha_next_sequence_number): Likewise.
21450         (alpha_this_literal_sequence_number): Likewise.
21451         (alpha_this_gpdisp_sequence_number): Likewise.
21452         (struct alpha_funcs, alpha_funcs_num): Likewise.
21453         (struct alpha_links): Fix branch merge error.
21454         (alpha_need_linkage, alpha_use_linkage): Use GC for alpha_funcs.
21455
21456 2003-01-17  Alexandre Oliva  <aoliva@redhat.com>
21457
21458         * config/mips/mips.h: Don't use #elif.  Reported by Kaveh
21459         R. Ghazi.
21460
21461 2003-01-16  Kazu Hirata  <kazu@cs.umass.edu>
21462
21463         * ifcvt.c: Fix comment typos.
21464         * lcm.c: Likewise.
21465         * libgcc2.c: Likewise.
21466         * local-alloc.c: Likewise.
21467         * loop.c: Likewise.
21468         * predict.c: Likewise.
21469         * ra-build.c: Likewise.
21470         * ra.c: Likewise.
21471         * ra-colorize.c: Likewise.
21472         * ra.h: Likewise.
21473         * ra-rewrite.c: Likewise.
21474         * regmove.c: Likewise.
21475         * reload.h: Likewise.
21476         * rtlanal.c: Likewise.
21477         * toplev.c: Likewise.
21478         * tree.h: Likewise.
21479         * unwind-dw2-fde-glibc.c: Likewise.
21480         * vmsdbgout.c: Likewise.
21481
21482 2003-01-16  Richard Henderson  <rth@redhat.com>
21483
21484         * dwarf2out.c (struct file_table): Remove.
21485         (FILE_TABLE_INCREMENT): Remove.
21486         (file_table): Make a varray; mark for GC.  Update all users.
21487         (file_table_last_lookup_index): Extract from struct file_table.
21488         (output_file_names): Fix unsigned compare warnings.
21489         (add_name_attribute): Remove inline marker.
21490         (add_comp_dir_attribute): Split out from gen_compile_unit_die.
21491         (lookup_filename): Don't manage size of file_table.
21492         (init_file_table): Allocate file_table with GC.
21493         (dwarf2out_init): Don't record main_input_filename here.
21494         (dwarf2out_finish): Do it here instead.
21495
21496 2003-01-16  Bruce Korb  <bkorb@gnu.org>
21497
21498         * gcc/fixinc/inclhack.def(limits_ifndef): QNX needs a bypass, too.
21499
21500 2003-01-16  Kaz Kojima  <kkojima@gcc.gnu.org>
21501
21502         * config/sh/sh.c (sh_initialize_trampoline): Emit rotrdi3_mextr
21503         instead of rotldi3_mextr.
21504
21505 2003-01-16  Vladimir Makarov  <vmakarov@redhat.com>
21506
21507         * haifa-sched.c (move_insn): Restore moving all schedule group.
21508         (set_priorities): Restore taking SCHED_GROUP_P into account.
21509
21510         * sched-deps.c (add_dependence): Restore processing the last group
21511         insn.
21512         (remove_dependence, group_leader): Restore the functions.
21513         (set_sched_group_p): Restore adding dependencies from previous insn
21514         in the group.
21515         (compute_forward_dependences): Restore usage of group_leader.
21516
21517         * sched-ebb.c (init_ready_list): Restore taking SCHED_GROUP_P into
21518         account.
21519
21520         * sched-rgn.c (init_ready_list): Restore taking SCHED_GROUP_P into
21521         account.
21522         (can_schedule_ready_p): Ditto.
21523         (add_branch_dependences): Restore skipping over the group insns.
21524
21525 2003-01-16  Stephane Carrez  <stcarrez@nerim.fr>
21526
21527         * config/m68hc11/m68hc11.c (m68hc11_check_z_replacement): Fix handling
21528         68HC12 pre/post inc/dec side effects.
21529
21530 2003-01-16  Stephane Carrez  <stcarrez@nerim.fr>
21531
21532         * config/m68hc11/m68hc11.h (MASK_M6812): Define.
21533
21534 2003-01-16  J"orn Rennecke <amylaar@onetel.net.uk>
21535
21536         * sh.md (mshflo_w_x): Fix description of operation.
21537
21538 2003-01-16  Zack Weinberg  <zack@codesourcery.com>
21539
21540         * config/rs6000/rs6000.h: Mention Altivec registers in
21541         commentary.  Fix typo.
21542
21543 2003-01-16  David Edelsohn  <edelsohn@gnu.org>
21544
21545         * config/rs6000/rs6000.md (movti_string): Remove clobber.
21546         * config/rs6000/rs6000.c (rs6000_emit_move, TImode): Explicitly
21547         generate PARALLEL with clobber for TARGET_POWER.
21548
21549 2003-01-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21550
21551         * ra-colorize.c (colorize_one_web): Initialize variable.
21552         * regmove.c (fixup_match_1): Likewise.
21553         * reload1.c (reload_as_needed): Likewise.
21554         * sdbout.c (SET_KNOWN_TYPE_TAG): Add cast.
21555
21556 2003-01-16  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
21557
21558         * cfgloop.c (flow_loops_find): Fix handling of abnormal edges.
21559
21560 2003-01-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21561
21562         * dbxout.c (lastfile, cwd): Fix `unused' warning.
21563         * dwarf2out.c (fde_table_in_use, current_funcdef_fde,
21564         dw_cfi_oprnd1_desc, dw_cfi_oprnd2_desc, next_die_offset,
21565         is_main_source, file_table, decl_die_table_in_use,
21566         abbrev_die_table_in_use, line_info_table_in_use,
21567         separate_line_info_table_in_use, pubname_table_in_use,
21568         arange_table_in_use, ranges_table_in_use,
21569         current_function_has_inlines): Likewise.
21570         * flow.c (life_analysis): Likewise.
21571         * genemit.c (gen_insn): Likewise.
21572         * protoize.c (cplus_suffix): Likewise.
21573
21574         * arm.c (ROUND_UP_WORD): Renamed from ROUND_UP.
21575         * arm.h (ROUND_UP_WORD): Likewise.
21576
21577         * arm.h (CONDITIONAL_REGISTER_USAGE): Avoid signed/unsigned
21578         warning.
21579         * emit-rtl.c (gen_rtx_REG, set_mem_attributes_minus_bitpos,
21580         init_emit_once): Likewise.
21581         * flow.c (mark_regs_live_at_end, calculate_global_regs_live):
21582         Likewise.
21583         * function.c (assign_stack_temp_for_type): Likewise.
21584         * loop.c (loop_invariant_p): Likewise.
21585         * recog.c (push_operand): Likewise.
21586         * regclass.c (init_reg_sets_1): Likewise.
21587         * reload.c (update_auto_inc_notes): Likewise.
21588         * reload1.c (reload_as_needed, emit_input_reload_insns): Likewise.
21589         * stmt.c (expand_asm_operands): Likewise.
21590         * stor-layout.c (start_record_layout): Likewise.
21591
21592 2003-01-16  Herman A.J. ten Brugge <hermantenbrugge@home.nl>
21593
21594         * config/c4x/c4x.md (epilogue): Correct last patch.
21595
21596 2003-01-15  Richard Henderson  <rth@redhat.com>
21597
21598         * config/alpha/alpha.c (find_lo_sum_using_gp): Rename from find_lo_sum;
21599         also check that GP is being used.
21600         (alpha_find_lo_sum_using_gp): New.
21601         (alpha_does_function_need_gp): Use get_attr_usegp.
21602         * config/alpha/alpha-protos.h: Update.
21603         * config/alpha/alpha.md (attr usegp): New.  Annotate patterns
21604         as needed.
21605
21606 2003-01-15  Roger Sayle  <roger@eyesopen.com>
21607
21608         * gcse.c (one_cprop_pass): Change function arguments to take both
21609         cprop_jumps and bypass_jumps flags instead of just alter_jumps.
21610         (gcse_main): Update calls to one_cprop_pass, disabling bypassing.
21611         (bypass_jumps): New function to perform separate jump bypassing pass.
21612         * rtl.h (bypass_jumps): Add function prototype.
21613         * timevar.def (TV_BYPASS): New timing variable.
21614         * toplev.c (enum dump_file_index): Add new entry DFI_bypass.
21615         (dump_file): New entry for the bypass RTL dump file.
21616         (rest_of_compilation): Insert new jump bypassing optimization
21617         pass after loop.
21618         * doc/passes.texi: Document new pass.
21619
21620 2003-01-15  John David Anglin  <dave@hiauly1.hia.nrc.ca>
21621
21622         * som.h (SUPPORTS_WEAK, SUPPORTS_ONE_ONLY, MAKE_DECL_ONE_ONLY,
21623         ASM_WEAKEN_LABEL, GTHREAD_USE_WEAK): Define.
21624         * pa.h (TARGET_SOM_SDEF): Define.
21625         * pa-hpux11.h (TARGET_SOM_SDEF): Define.
21626
21627 2003-01-16  Stephane Carrez  <stcarrez@nerim.fr>
21628
21629         * config/m68hc11/m68hc11.c (expand_prologue): Use push/pop to
21630         allocate 4-bytes of locals on 68HC11.
21631         (expand_epilogue): Likewise.
21632         (m68hc11_memory_move_cost): Increase cost of HI/QI soft registers.
21633
21634 2003-01-15  Stephane Carrez  <stcarrez@nerim.fr>
21635
21636         * config/m68hc11/m68hc11.h (ASM_SPEC): Handle -m68hcs12; Pass -mshort
21637         and -mshort-double to the assembler to specify the ABI.
21638         (LINK_SPEC): Likewise.
21639         (CPP_SPEC): Pass HCS12 specific define.
21640         (MASK_M68S12): New define.
21641         (TARGET_M68S12): Likewise.
21642         (TARGET_SWITCHES): New options -m68hcs12 and -m68S12.
21643         (TARGET_VERSION): Update.
21644         * config/m68hc11/m68hc12.h (CPP_SPEC): Pass HCS12 specific define.
21645         (LINK_SPEC): Update.
21646         (ASM_SPEC): Update.
21647         * config/m68hc11/m68hc11.c (m68hc11_asm_file_start): Update.
21648         * doc/invoke.texi (M68hc1x Options): Document -m68hcs12.
21649
21650 2003-01-15  Stephane Carrez  <stcarrez@nerim.fr>
21651
21652         * config/m68hc11/m68hc11.md ("return"): Use emit_jump_insn to emit
21653         the return code.
21654
21655 2003-01-15  Josef Zlomek  <zlomekj@suse.cz>
21656
21657         * cfganal.c (set_edge_can_fallthru_flag): Clear the EDGE_CAN_FALLTHRU
21658         flag before setting it.
21659
21660 2003-01-15  Roger Sayle  <roger@eyesopen.com>
21661
21662         * c-semantics.c (genrtl_while_stmt):  Improve initial RTL generation
21663         when loop condition is known true, i.e.  "while (1) { ... }".
21664         (genrtl_for_stmt): Similarly for "for" statements.
21665
21666 2003-01-15  Roger Sayle  <roger@eyesopen.com>
21667
21668         * real.c (real_sqrt): Return a bool result indicating whether
21669         a floating point exception or trap should be raised.
21670         * real.h (real_sqrt): Update function prototype.
21671         * builtins.c (fold_builtin): Only fold non-trapping square
21672         roots unless we're ignoring errno and trapping math.
21673
21674 2003-01-15  John David Anglin  <dave.anglin@nrc.gc.ca>
21675
21676         * expr.h (emit_conditional_add): Add PARAMS to declaration.
21677         * gengtype-lex.l (malloc, realloc): Move defines after include of
21678         system.h.  Remove duplicate include of system.h.
21679
21680 2003-01-15  Roger Sayle  <roger@eyesopen.com>
21681
21682         PR middle-end/9009
21683         * optabs.c (expand_unop):  When manipulating the FP sign bit
21684         using integer operations, account for targets with different
21685         integer and FP word orders.
21686         (expand_abs): Likewise.
21687
21688 2003-01-15  David Edelsohn  <edelsohn@gnu.org>
21689
21690         * config/rs6000/rs6000.c (rs6000_gen_section_name): Do not include
21691         file extension in section name.
21692
21693 2003-01-15  Richard Earnshaw  <rearnsha@arm.com>
21694
21695         * flow.c (find_auto_inc): Also try to generate a PRE_MODIFY with
21696         constant offset.
21697
21698 2003-01-15  Richard Earnshaw  <rearnsha@arm.com>
21699
21700         * arm.h (HAVE_PRE_MODIFY_DISP, HAVE_PRE_MODIFY_REG): Define.
21701         (HAVE_POST_MODIFY_DISP, HAVE_POST_MODIFY_REG): Define.
21702         (ARM_GO_IF_LEGITIMATE_ADDRESS): Handle pre/post-modify addresses.
21703         (ARM_PRINT_OPERAND_ADDRESS): Likewise.
21704
21705 2003-01-15  Jan Hubicka  <jh@suse.cz>
21706
21707         PR f/9258
21708         * global.c (struct allocno): Add no_stack_reg.
21709         (global_conflicts): Set no_stack_reg.
21710         (find_reg): Use it.
21711
21712         * convert.c (convert_to_real): Fold - and abs only when profitable.
21713         * fold-const.c (fold): Fold truncates in - and abs.
21714
21715 2003-01-15  Josef Zlomek  <zlomekj@suse.cz>
21716
21717         Segher Boessenkool  <segher@koffie.nl>
21718
21719         * predict.c (real_inv_br_prob_base): New variable.
21720         (propagate_freq): Use multiply by reciprocal instead of
21721         division.  Don't divide by 1.0 at all.
21722         (estimate_bb_frequencies): Similar.
21723
21724 2003-01-15  Alexandre Oliva  <aoliva@redhat.com>
21725
21726         * configure.in (libgcc_visibility): Force disabled on IRIX 6 too.
21727         * configure: Rebuilt.
21728
21729 2003-01-15  Hartmut Penner  <hpenner@de.ibm.com>
21730
21731         * config/s390/s390.c (s390_safe_attr_type): New function.
21732         (s390_use_dfa_pipeline_interface): New function, return true for z900.
21733         (s390_issue_rate): New function.
21734         (s390_agen_dep_p): New function.
21735         (addr_generation_dependency_p): Use 's390_safe_attr_type'.
21736         (s390_adjust_cost): Return 'cost' if new DFA is used.
21737         (s390_adjust_priority): Delete function.
21738         * config/s390/s390-protos.h: (s390_agen_dep_p): New prototype.
21739         * config/s390/s390.md (atype attribute): Attribute 'atype' default
21740         determined by 'op_type'.
21741         (type attribute): Added more type attributes.
21742         * config/s390/2064.md: New DFA description for z900 pipeline.
21743
21744 2003-01-15  Alexandre Oliva  <aoliva@redhat.com>
21745
21746         * config/i386/i386.c (ix86_expand_vector_move): Validize constant
21747         forced to memory.  Fixes PR bootstrap/9036.
21748
21749         * config/mips/mips.h (CRT_CALL_STATIC_FUNCTION): Define so as
21750         to set $gp before the call.
21751
21752 2003-01-14  Richard Henderson  <rth@redhat.com>
21753
21754         * config/alpha/alpha.c (alpha_expand_mov): Use correct mode
21755         for force_const_mem.
21756
21757 2003-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21758
21759         * genattr.c (main): Rearrange output to avoid prototype warning.
21760         * genautomata.c (transform_3): Fix ambiguous-else warning.
21761         * local-alloc.c (requires_inout): Add parentheses around
21762         assignment used as truth-value.
21763         * timevar.c: Move system includes above local includes.  Include
21764         toplev.h
21765         * Makefile.in (timevar.o): Depend on toplev.h.
21766
21767 2003-01-14  Denis Chertykov  <denisc@overta.ru>
21768
21769         * config/ip2k/ip2k.h (VALID_MACHINE_DECL_ATTRIBUTE): Remove.
21770         (VALID_MACHINE_TYPE_ATTRIBUTE): Remove.
21771
21772         * config/ip2k/ip2k.c (ip2k_attribute_table): New table of
21773         attributes.
21774         (TARGET_ATTRIBUTE_TABLE): New macro.
21775         (valid_machine_type_attribute): Remove.
21776         (valid_machine_decl_attribute): Remove.
21777         (ip2k_handle_progmem_attribute): New function.
21778         (ip2k_handle_fndecl_attribute): New function.
21779
21780 2003-01-10  Andrew Haley  <aph@redhat.com>
21781
21782         * config/i386/linux64.h (MD_FALLBACK_FRAME_STATE_FOR): Rename
21783         registers to be in correct order.  Add rip.
21784
21785 2003-01-14  Kazu Hirata  <kazu@cs.umass.edu>
21786
21787         * config/h8300/h8300.md (*andsi3_lshiftrt_9_sb): New.
21788         (*iorsi3_and_lshiftrt_9_sb): Likewise.
21789
21790 2003-01-14  Jan Hubicka  <jh@suse.cz>
21791
21792         * convert.c (strip_float_extensions):  Look for narrowest type handling
21793         FP constants.
21794
21795         * fold-const.c (fold):  Fold (double)float1 CMP (double)float2 into
21796         float1 CMP float2.
21797         * convert.c (strip_float_extensions): Make global.
21798         * tree.h (strip_float_extensions): Declare.
21799
21800 2003-01-14  Gabriel Dos Reis  <gdr@integrable-solutions.net>
21801
21802         * timevar.def: define TV_NAME_LOOKUP.
21803         * timevar.c (timevar_pop): Be verbose when aborting.
21804
21805 2003-01-13  Andreas Schwab  <schwab@suse.de>
21806
21807         * Makefile.in ($(parsedir)/gengtype-lex.c): Don't change to
21808         $(parsedir), just move the temporary file at the end.
21809         ($(parsedir)/gengtype-yacc.c): Likewise.
21810
21811 2003-01-13  Alexandre Oliva  <aoliva@redhat.com>
21812
21813         * aclocal.m4 (gcc_AC_PROG_GNAT): Don't try to prepend
21814         ${ac_tool_prefix} to ADAC or CC.  Protect them from word
21815         splitting.
21816         * configure: Rebuilt.
21817
21818 2003-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21819
21820         * config/sparc/gmon-sol2.c (moncontrol, monstartup, _mcleanup,
21821         internal_mcount): Don't use PARAMS.
21822         (monstartup, _mcleanup, internal_mcount, moncontrol): Convert to
21823         ISO C style.
21824         (internal_mcount): Use __attribute__, not ATTRIBUTE_UNUSED.
21825
21826 2003-01-13  Andreas Schwab  <schwab@suse.de>
21827
21828         * config/rs6000/sysv4.h (ASM_OUTPUT_ALIGNED_LOCAL): Output type
21829         directive.
21830
21831 2003-01-13  Kazu Hirata  <kazu@cs.umass.edu>
21832
21833         * config/h8300/h8300.md (*andsi3_lshift_n_sb): New.
21834         (*iorsi3_and_lshiftrt_n_sb): Likewise.
21835
21836 2003-01-12  Mark Mitchell  <mark@codesourcery.com>
21837
21838         PR c++/9264
21839         * c-lex.c (c_lex): Set the token value to error_mark_node for
21840         invalid numeric constants.
21841
21842 2003-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
21843
21844         * c-pch.c (asm_file_startpos): Change to `long'.
21845         (pch_init): Use ftell, not ftello.
21846         (c_common_write_pch): Use ftell/fseek, not ftello/fseeko.
21847         Use `long' instead of `off_t'.
21848         (c_common_read_pch): Likewise.
21849         * ggc-common.c (gt_pch_save): Use long/ftell instead of
21850         off_t/ftello.
21851
21852 2003-01-12  Alan Modra  <amodra@bigpond.net.au>
21853
21854         * expr.c (expand_expr <RDIV_EXPR>): Correct recursive call args.
21855
21856 2003-01-11  Richard Earnshaw  (rearnsha@arm.com)
21857
21858         * arm-protos.h (struct cpp_reader): Add declaration.
21859
21860 2003-01-11  Jan Hubicka  <jh@suse.cz>
21861
21862         PR target/9068
21863         * i386.c (output_fp_compare): Fix typo.
21864
21865 2003-01-10  David Edelsohn  <edelsohn@gnu.org>
21866
21867         * config/rs6000/rs6000.c (common_mode_defined): Mark for PCH.
21868
21869 2003-01-10  Geoffrey Keating  <geoffk@apple.com>
21870
21871         * Makefile.in (parsedir): New variable.
21872         (docobjdir): New variable.
21873         (c-parse.o, c-parse.c, c-parse.y, gengtype-lex.o, gengtype-yacc.o,
21874         gengtype-lex.c, gengtype-yacc.c): Use parsedir.
21875         (info, cpp.info, gcc.info, gccint.info, gccinstall.info,
21876         cppinternals.info, generated-manpages, gcov.1, cpp.1, gcc.1, gfdl.7,
21877         gpl.7, fsf-funding.7, maintainer-clean, install-info, install-man):
21878         Use docobjdir.
21879         * objc/Make-lang.in (objc/objc-parse.c, objc/objc-parse.y,
21880         objc.maintainer-clean): Use parsedir.
21881
21882         * varasm.c (struct constant_descriptor_rtx): Remove unused
21883         `label' field.
21884
21885         * toplev.c (documented_lang_options): Document -Winvalid-pch.
21886
21887 2003-01-10  Richard Henderson  <rth@redhat.com>
21888
21889         * config/alpha/alpha.h (NO_PROFILE_COUNTERS): Set.
21890         (ASM_OUTPUT_REG_PUSH, ASM_OUTPUT_REG_POP): Kill.
21891
21892 2003-01-10  Richard Henderson  <rth@redhat.com>
21893
21894         * combine.c (make_compound_operation): Use SCALAR_INT_MODE_P,
21895         not INTEGRAL_MODE_P when widening extensions.
21896
21897 2003-01-10  Richard Henderson  <rth@redhat.com>
21898
21899         * config/alpha/alpha.c (decl_has_samegp): True for !TREE_PUBLIC.
21900
21901 2003-01-10  Geoffrey Keating  <geoffk@apple.com>
21902
21903         * ggc-page.c (ggc_collect): Avoid overflow computing
21904         min_expand.
21905
21906         * Makefile.in (RANLIB_FOR_TARGET): Use RANLIB when native.
21907         (RANLIB_TEST_FOR_TARGET): Delete.  Don't pass down to sub-makes.
21908         Remove calls.
21909         * mklibgcc.in: Remove uses of RANLIB_TEST_FOR_TARGET.
21910
21911 2003-01-10  Jan Hubicka  <jh@suse.cz>
21912
21913         * ifcvt.c (noce_try_addcc): Do not call emit_conditional_add
21914         with weird operands.
21915
21916 2003-01-10  Dale Johannesen <dalej@apple.com>
21917
21918         * calls.c (load_register_parameters):  Add is_sibcall, sibcall_failure
21919         parameters.  Call check_sibcall_argument_overlap if indicated.
21920         (check_sibcall_argument_overlap):  Add mark_stored_args_map
21921         parameter.  Don't mark parameter area as clobbered if not set.
21922         (expand_call):  Adjust calls to above.
21923
21924 2003-01-10 Kelley Cook <kelleycook@comcast.net>
21925
21926         * configure.in (linker read-only and read-write section mixing):
21927         Squelch some assembler warnings.
21928         * configure: Likewise.
21929
21930 2003-01-10  Hartmut Penner  <hpenner@de.ibm.com>
21931
21932         * doc/invoke.texi: Document -mtune, delete -mcpu
21933         option for S/390 and zSeries.
21934         * config/s390/s390.c (s390_tune_string) New variable.
21935         (s390_cpu_string) Delete variable.
21936         (override_options): Use s390_tune_string instead of
21937         s390_cpu_string.
21938         * config/s390/s390.h: (TARGET_OPTIONS) '-mtune' instead of '-mcpu'.
21939
21940 2003-01-10  Kazu Hirata  <kazu@cs.umass.edu>
21941
21942         * config/h8300/h8300.md (*iorsi3_ashift_31): New.
21943
21944 2003-01-10  Josef Zlomek  <zlomekj@suse.cz>
21945
21946         * jump.c (next_nonnote_insn_in_loop): New function.
21947         (copy_loop_headers): Use next_nonnote_insn_in_loop instead of
21948         next_nonnote_insn.
21949         (duplicate_loop_exit_test). Likewise.
21950
21951 2003-01-09  Geoffrey Keating  <geoffk@apple.com>
21952
21953         Merge from pch-branch:
21954
21955         2003-01-06  Geoffrey Keating  <geoffk@apple.com>
21956
21957         * ggc-page.c (ggc_pch_read): Update the statistics after a PCH
21958         load.
21959
21960         2002-12-24  Geoffrey Keating  <geoffk@apple.com>
21961
21962         * cpplib.c (count_registered_pragmas): New function.
21963         (save_registered_pragmas): New function.
21964         (_cpp_save_pragma_names): New function.
21965         (restore_registered_pragmas): New function.
21966         (_cpp_restore_pragma_names): New function.
21967         * cpphash.h (_cpp_save_pragma_names): Prototype.
21968         (_cpp_restore_pragma_names): Likewise.
21969         * cpppch.c (struct save_macro_item): Split from save_macro_data.
21970         (struct save_macro_data): New field 'saved_pragmas'.
21971         (save_macros): Update for changes to struct save_macro_data.
21972         (cpp_prepare_state): Call _cpp_save_pragma_names, update
21973         for changes to struct save_macro_data.
21974         (cpp_read_state): Call _cpp_restore_pragma_names, update
21975         for changes to struct save_macro_data.
21976
21977         * cpppch.c (cpp_read_state): Restore the hashtable references
21978         in the cpp_reader.
21979
21980         * tree.h (built_in_decls): Mark for PCH.
21981
21982         * dbxout.c (lastfile): Don't mark for PCH.
21983
21984         * ggc.h: Document PCH calls into memory managers.
21985
21986         2002-12-18  Geoffrey Keating  <geoffk@apple.com>
21987
21988         * doc/invoke.texi (Precompiled Headers): Document the
21989         directory form of PCH.
21990         * cppfiles.c (validate_pch): New function.
21991         (open_file_pch): Search suitably-named directories for PCH files.
21992
21993         2002-12-14  Geoffrey Keating  <geoffk@apple.com>
21994
21995         * doc/gty.texi (GTY Options): Document chain_next, chain_prev,
21996         reorder options.
21997         (Type Information): Mention that the information is also
21998         used to implement PCH.
21999         * doc/passes.texi (Passes): Improve documentation of
22000         language-specific files.
22001
22002         2002-12-11  Geoffrey Keating  <geoffk@apple.com>
22003
22004         * gengtype.c (struct write_types_data): Add reorder_note_routine field.
22005         (struct walk_type_data): Add reorder_fn field.
22006         (walk_type): Process 'reorder' option.
22007         (write_types_process_field): Reorder parameters to gt_pch_note_object,
22008         call reorder_note_routine.
22009         (write_func_for_structure): Reorder parameters to gt_pch_note_object.
22010         (ggc_wtd): Update for change to struct write_types_data.
22011         (pch_wtd): Likewise.
22012         * ggc.h (gt_pch_note_object): Reorder parameters.
22013         (gt_handle_reorder): New definition.
22014         (gt_pch_note_reorder): New prototype.
22015         * ggc-common.c (struct ptr_data): Add reorder_fn.
22016         (gt_pch_note_object): Reorder parameters.
22017         (gt_pch_note_reorder): New.
22018         (gt_pch_save): Call reorder_fn.
22019         * stringpool.c (gt_pch_n_S): Update for change to gt_pch_note_object.
22020
22021         * dbxout.c (cwd): Don't mark for PCH.
22022
22023         2002-12-09  Geoffrey Keating  <geoffk@apple.com>
22024
22025         * gengtype.c (finish_root_table): Fix some warnings.
22026         (write_root): Handle TYPE_STRING.
22027         * ggc.h (gt_ggc_m_S): Add prototype.
22028         * stringpool.c (gt_ggc_m_S): New function.
22029
22030         2002-11-30  Geoffrey Keating  <geoffk@apple.com>
22031
22032         * dwarf2out.c (dw2_string_counter): New.
22033         (AT_string_form): Use it.
22034         (same_dw_val_p): Update for removal of hashtable.h hash tables.
22035
22036         2002-11-22  Geoffrey Keating  <geoffk@apple.com>
22037
22038         * dbxout.c: Include gt-dbxout.h.
22039         (lastfile): Mark for PCH/GGC.
22040         (cwd): Likewise.
22041         (struct typeinfo): Likewise.
22042         (typevec): Likewise.
22043         (typevec_len): Likewise.
22044         (next_type_number): Likewise.
22045         (struct dbx_file): Likewise.
22046         (current_file): Likewise.
22047         (next_file_number): Likewise.
22048         (dbxout_init): Allocate typevec, struct dbx_file with GGC.
22049         (dbxout_start_source_file): Allocate struct dbx_file with GGC.
22050         (dbxout_end_source_file): Don't free struct dbx_file.
22051         (dbxout_type): Use GGC to allocate typevec.
22052         * Makefile.in (dbxout.o): Depend on gt-dbxout.h, $(GGC_H).
22053         (GTFILES): Add dbxout.c.
22054         (gt-dbxout.h): New rule.
22055
22056         * Makefile.in (c-pch.o): Add debug.h as dependency.
22057         * c-pch.c: Include debug.h.
22058         (pch_init): Call start_source_file to keep nesting right.
22059         (c_common_read_pch): Add orig_name parameter.  Call
22060         start_source_file debug hook.  Call end_source_file debug hook.
22061         * c-common.h (c_common_read_pch): Update prototype.
22062         * cpplib.h (struct cpp_callbacks): Add fourth field to read_pch
22063         callback.
22064         * cppfiles.c (struct include_file): Add new field `header_name'.
22065         (find_or_create_entry): Default it to `name'.
22066         (open_file_pch): Set it to the original header file searched for.
22067         (stack_include_file): Don't stack an empty buffer, just handle
22068         PCH files immediately.  Pass header_name field to read_pch callback.
22069
22070         2002-11-19  Geoffrey Keating  <geoffk@apple.com>
22071
22072         * function.c (funcdef_no): Mark to be saved in a PCH.
22073
22074         2002-11-15  Geoffrey Keating  <geoffk@apple.com>
22075
22076         * ggc-page.c (ggc_pch_read): Remove unused 'bmap_size'.
22077
22078         * cpppch.c (cpp_read_state): Correct size reallocated for 'defn'.
22079
22080         2002-11-14  Geoffrey Keating  <geoffk@apple.com>
22081
22082         * optabs.h (code_to_optab): Add GTY marker.
22083
22084         2002-11-13  Geoffrey Keating  <geoffk@apple.com>
22085
22086         * Makefile.in (GTFILES): Add cpplib.h.
22087         * c-common.h (struct c_common_identifier): Don't skip 'node' field.
22088         * c-decl.c (build_compound_literal): Don't use var_labelno.
22089         * cpplib.h (struct cpp_hashnode): Use gengtype to mark.
22090         * dwarf2asm.c (dw2_force_const_mem): Don't use const_labelno.
22091         * varasm.c (const_labelno): Use gengtype to mark.
22092         (var_labelno): Likewise.
22093         (in_section): Likewise.
22094         (in_named_name): Likewise.
22095         (struct in_named_entry): Likewise.
22096         (in_named_htab): Likewise.
22097         (set_named_section_flags): Use GGC to allocate struct in_named_entry.
22098         (init_varasm_once): Use GGC to allocate in_named_htab.
22099         * config/darwin.c (current_pic_label_num): Mark for PCH.
22100
22101         2002-11-11  Geoffrey Keating  <geoffk@apple.com>
22102
22103         * ggc-simple.c (init_ggc_pch): New stub procedure.
22104         (ggc_pch_count_object): Likewise.
22105         (ggc_pch_total_size): Likewise.
22106         (ggc_pch_this_base): Likewise.
22107         (ggc_pch_alloc_object): Likewise.
22108         (ggc_pch_prepare_write): Likewise.
22109         (ggc_pch_write_object): Likewise
22110         (ggc_pch_finish): Likewise.
22111         (ggc_pch_read): Likewise.
22112
22113         2002-11-08  Geoffrey Keating  <geoffk@apple.com>
22114
22115         * c-pch.c (c_common_write_pch): Write the macro definitions after
22116         the GCed data.
22117         (c_common_read_pch): Call cpp_prepare_state.  Restore the macro
22118         definitions after the GCed data.
22119         * cpplib.c (save_macros): New.
22120         (reset_ht): New.
22121         (cpp_write_pch_deps): Split out of cpp_write_pch.
22122         (cpp_write_pch_state): Split out of cpp_write_pch.
22123         (cpp_write_pch): Delete.
22124         (struct save_macro_data): Delete.
22125         (cpp_prepare_state): New.
22126         (cpp_read_state): Erase and restore initial macro definitions.
22127         * cpplib.h (struct save_macro_data): Forward-declare.
22128         (cpp_write_pch_deps): Prototype.
22129         (cpp_write_pch_state): Prototype.
22130         (cpp_write_pch): Delete prototype.
22131         (cpp_prepare_state): Prototype.
22132         (cpp_read_state): Add fourth argument.
22133
22134         2002-11-04  Geoffrey Keating  <geoffk@apple.com>
22135
22136         * gengtype.c (adjust_field_rtx_def): Don't use skip on valid fields.
22137         (write_array): Remove warning.
22138
22139         * gengtype.c (contains_scalar_p): New.
22140         (finish_root_table): Add the table to all languages, even if it's
22141         empty.
22142         (write_roots): Output gt_pch_scalar_rtab.
22143         * ggc-common.c (gt_pch_save): Write out scalars.
22144         (gt_pch_restore): Read scalars back.
22145
22146         * ggc-page.c (OBJECTS_IN_PAGE): New macro.
22147         (struct page_entry): Delete pch_page field.
22148         (ggc_recalculate_in_use_p): Use OBJECTS_IN_PAGE.
22149         (clear_marks): Likewise.
22150         (sweep_pages): Likewise.
22151         (poison_pages): Likewise.
22152         (ggc_print_statistics): Likewise.
22153         (ggc_pch_read): Don't free objects read from a PCH.
22154         Properly set up in_use_p and page_tails.
22155
22156         2002-10-25  Geoffrey Keating  <geoffk@apple.com>
22157
22158         * gengtype.c (struct write_types_data): New.
22159         (struct walk_type_data): Make `cookie' const; add extra
22160         prev_val item; add `orig_s' field.
22161         (walk_type): Update prev_val[3].
22162         (write_types_process_field): New.
22163         (write_func_for_structure): Take write_types_data structure.
22164         (write_types): New.
22165         (ggc_wtd): New.
22166         (pch_wtd): New.
22167         (write_types_local_process_field): New.
22168         (gc_mark_process_field): Delete.
22169         (write_local_func_for_structure): New.
22170         (gc_mark_func_name): Delete.
22171         (write_gc_types): Delete.
22172         (write_local): New.
22173         (finish_root_table): Don't include 'ggc_' in PFX.
22174         (write_root): Rename from write_root.  Fill pchw field of structures.
22175         (write_array): New.
22176         (write_roots): Rename from write_gc_roots.  Split out to write_array.
22177         Update to changes to other routines.  Write gt_pch_cache_rtab table.
22178         (main): Write PCH walking routines.
22179         * ggc-common.c: Include toplev.h, sys/mman.h.
22180         (ggc_mark_roots): For cache hashtables, also mark the hash table
22181         and the array of entries.
22182         (saving_htab): New.
22183         (struct ptr_data): New.
22184         (POINTER_HASH): New.
22185         (gt_pch_note_object): New.
22186         (saving_htab_hash): New.
22187         (saving_htab_eq): New.
22188         (struct traversal_state): New.
22189         (call_count): New.
22190         (call_alloc): New.
22191         (compare_ptr_data): New.
22192         (relocate_ptrs): New.
22193         (write_pch_globals): New.
22194         (struct mmap_info): New.
22195         (gt_pch_save): New.
22196         (gt_pch_restore): New.
22197         * ggc-page.c (ROUND_UP_VALUE): New.
22198         (ROUND_UP): New.
22199         (struct page_entry): Add field `pch_page'.
22200         (init_ggc): Use ROUND_UP.
22201         (struct ggc_pch_data): Declare.
22202         (init_ggc_pch): New.
22203         (ggc_pch_count_object): New.
22204         (ggc_pch_total_size): New.
22205         (ggc_pch_this_base): New.
22206         (ggc_pch_alloc_object): New.
22207         (ggc_pch_prepare_write): New.
22208         (ggc_pch_write_object): New.
22209         (ggc_pch_finish): New.
22210         (ggc_pch_read): New.
22211         * ggc.h (gt_pointer_operator): New.
22212         (gt_note_pointers): New.
22213         (gt_pch_note_object): New prototype.
22214         (gt_pointer_walker): New.
22215         (struct ggc_root_tab): Use gt_pointer_walker, add `pchw' field.
22216         (LAST_GGC_ROOT_TAB): Update.
22217         (gt_pch_cache_rtab): Declare.
22218         (gt_pch_scalar_rtab): Declare.
22219         (struct ggc_cache_tab): Use gt_pointer_walker, add `pchw' field.
22220         (LAST_GGC_CACHE_TAB): Update.
22221         (gt_pch_save_stringpool): Declare.
22222         (gt_pch_restore_stringpool): Declare.
22223         (gt_pch_p_S): Declare.
22224         (gt_pch_n_S): Declare.
22225         (struct ggc_pch_data): Forward-declare.
22226         (init_ggc_pch): Declare.
22227         (ggc_pch_count_object): Declare.
22228         (ggc_pch_total_size): Declare.
22229         (ggc_pch_this_base): Declare.
22230         (ggc_pch_alloc_object): Declare.
22231         (ggc_pch_prepare_write): Declare.
22232         (ggc_pch_write_object): Declare.
22233         (ggc_pch_finish): Declare.
22234         (ggc_pch_read): Declare.
22235         (gt_pch_save): Declare.
22236         (gt_pch_restore): Declare.
22237         * fold-const.c (size_int_type_wide): Allocate size_htab using GGC.
22238         * emit-rtl.c (init_emit_once): Allocate const_int_htab,
22239         const_double_htab, mem_attrs_htab using GGC.
22240         * c-pch.c: Include ggc.h.
22241         (pch_init): Allow reading PCH file back.
22242         (c_common_write_pch): Call gt_pch_save.
22243         (c_common_read_pch): Call gt_pch_restore.
22244         * c-parse.in (init_reswords): Delete now-untrue comment.
22245         Allocate ridpointers using GGC.
22246         * c-objc-common.c (c_objc_common_finish_file): Write PCH before
22247         calling expand_deferred_fns.
22248         * c-common.h (ridpointers): Mark for GTY machinery.
22249         * Makefile.in (stringpool.o): Update dependencies.
22250         (c-pch.o): Update dependencies.
22251         (ggc-common.o): Update dependencies.
22252         * stringpool.c: Include gt-stringpool.h.
22253         (gt_pch_p_S): New.
22254         (gt_pch_n_S): New.
22255         (struct string_pool_data): New.
22256         (spd): New.
22257         (gt_pch_save_stringpool): New.
22258         (gt_pch_restore_stringpool): New.
22259         * tree.c (init_ttree): Make type_hash_table allocated using GC.
22260
22261         2002-10-04  Geoffrey Keating  <geoffk@apple.com>
22262
22263         * gengtype.c (adjust_field_rtx_def): Don't pass size_t to printf.
22264         (output_mangled_typename): Don't pass size_t to printf.
22265
22266         * tree.h (union tree_type_symtab): Add tag to `address' field.
22267         (union tree_decl_u2): Add tag to 'i' field.
22268         * varasm.c (union rtx_const_un): Add tags to all fields.
22269         * gengtype.c (struct walk_type_data): New.
22270         (output_escaped_param): Take struct walk_type_data parameter.
22271         (write_gc_structure_fields): Delete.
22272         (walk_type): New.
22273         (write_gc_marker_routine_for_structure): Delete.
22274         (write_func_for_structure): New.
22275         (gc_mark_process_field): New.
22276         (gc_mark_func_name): New.
22277         (gc_counter): Delete.
22278         (write_gc_types): Use write_func_for_structure.
22279         (write_gc_roots): Use walk_type.
22280
22281         2002-10-02  Geoffrey Keating  <geoffk@apple.com>
22282
22283         * ggc-common.c (ggc_mark_roots): Delete 'x'.
22284         (ggc_splay_dont_free): Fix warning about unused 'x'.
22285         (ggc_print_common_statistics): Remove warnings.
22286
22287         2002-10-01  Mike Stump  <mrs@apple.com>
22288
22289         * ggc-common.c (ggc_splay_alloc): Actually return the allocated area.
22290         * gengtype.c (write_gc_structure_fields): Handle param[digit]_is.
22291
22292         2002-09-01  Geoffrey Keating  <geoffk@redhat.com>
22293             Catherine Moore  <clm@redhat.com>
22294
22295         * Makefile (c-pch.o): Update dependencies.
22296         (LIBCPP_OBJS): Add cpppch.o.
22297         (cpppch.o): New.
22298         * c-common.c (c_common_init): Don't call pch_init here.
22299         * c-common.h (c_common_read_pch): Update prototype.
22300         * c-lex.c (c_common_parse_file): Call pch_init here.
22301         * c-opts.c (COMMAND_LINE_OPTIONS): Add -Winvalid-pch, -fpch-deps.
22302         (c_common_decode_option): Handle them.
22303         * c-pch.c: Include c-pragma.h.
22304         (save_asm_offset): Delete.
22305         (pch_init): Move contents of save_asm_offset into here, call
22306         cpp_save_state.
22307         (c_common_write_pch): Call cpp_write_pch.
22308         (c_common_valid_pch): Warn only when -Winvalid-pch.  Call
22309         cpp_valid_state.
22310         (c_common_read_pch): Add NAME parameter.  Call cpp_read_state.
22311         * cppfiles.c (stack_include_file): Update for change to
22312         parameters of cb.read_pch.
22313         * cpphash.h (struct cpp_reader): Add `savedstate' field.
22314         * cpplib.h (struct cpp_options): Add `warn_invalid_pch' and
22315         `restore_pch_deps' fields.
22316         (struct cpp_callbacks): Add NAME parameter to `read_pch'.
22317         (cpp_save_state): Prototype.
22318         (cpp_write_pch): Prototype.
22319         (cpp_valid_state): Prototype.
22320         (cpp_read_state): Prototype.
22321         * cpppch.c: New file.
22322         * flags.h (version_flag): Remove prototype.
22323         * mkdeps.c (deps_save): New.
22324         (deps_restore): New.
22325         * mkdeps.h (deps_save): Prototype.
22326         (deps_restore): Prototype.
22327         * toplev.c (late_init_hook): Delete.
22328         (version_flag): Make static again.
22329         (compile_file): Don't call late_init_hook.
22330         * toplev.h (late_init_hook): Delete.
22331         * doc/cppopts.texi: Document -fpch-deps.
22332         * doc/invoke.texi (Warning Options): Document -Winvalid-pch.
22333
22334         2002-08-27  Geoffrey Keating  <geoffk@redhat.com>
22335
22336         * c-pch.c (c_common_write_pch): Rename from c_write_pch, change
22337         callers.
22338         (c_common_valid_pch): Rename from c_valid_pch, change callers.
22339         (c_common_read_pch): Rename from c_read_pch, change callers.
22340
22341         * c-opts.c (COMMAND_LINE_OPTIONS): Allow -output-pch= to have
22342         a space between it and its argument.
22343
22344         2002-08-24  Geoffrey Keating  <geoffk@redhat.com>
22345
22346         * c-pch.c: New file.
22347         * toplev.h (late_init_hook): Declare.
22348         * toplev.c (late_init_hook): Define.
22349         (version_flag): Make globally visible.
22350         (compile_file): Call late_init_hook.
22351         (init_asm_output): Make output file seekable.
22352         * gcc.c (default_compilers): Update c-header rule.
22353         * flags.h (version_flag): Declare.
22354         * cpplib.h (struct cpp_callbacks): Add 'valid_pch' and 'read_pch'
22355         fields.
22356         * cppfiles.c (struct include_file): Add 'pch' field.
22357         (INCLUDE_PCH_P): New.
22358         (open_file_pch): New.
22359         (stack_include_file): Handle PCH files specially.
22360         (find_include_file): Call open_file_pch instead of open_file.
22361         (_cpp_read_file): Explain why open_file is used instead of
22362         open_file_pch.
22363         * c-opts.c (c_common_decode_option): Correct OPT__output_pch case.
22364         * c-objc-common.c (c_objc_common_finish_file): Call c_write_pch.
22365         * c-lex.c (init_c_lex): Set valid_pch and read_pch fields
22366         in cpplib callbacks.
22367         * c-common.c (pch_file): Correct comment.
22368         (allow_pch): Define.
22369         (c_common_init): Call pch_init.
22370         * c-common.h (allow_pch): Declare.
22371         (pch_init): Declare.
22372         (c_valid_pch): Declare.
22373         (c_read_pch): Declare.
22374         (c_write_pch): Declare.
22375         * Makefile.in (c-pch.o): New.
22376         (C_AND_OBJC_OBJS): Add c-pch.o.
22377         * doc/invoke.texi (Precompiled Headers): Add index entries,
22378         complete truncated paragraph.
22379
22380         2002-08-17  Geoffrey Keating  <geoffk@redhat.com>
22381
22382         * c-common.c: (pch_file): Define.
22383         * c-common.h (pch_file): Declare.
22384         * c-opts.c (COMMAND_LINE_OPTIONS): Add --output-pch=.
22385         (missing_arg): Require --output-pch= to have an argument.
22386         (c_common_decode_option): Handle --output-pch=.
22387         * gcc.c: Document new %V.
22388         (default_compilers): Handle compiling C header files.
22389         (do_spec_1): Implement %V.
22390         (main): Handle "gcc foo.h" without trying to run linker.
22391         * doc/invoke.texi (Invoking GCC): Add new menu item for PCH.
22392         (Overall Options): Document what the driver does with header files,
22393         document new -x option possibilities.
22394         (Invoking G++): More documentation for PCH.
22395         (Precompiled Headers): New.
22396
22397         2002-08-09  Geoffrey Keating  <geoffk@redhat.com>
22398
22399         * ggc.h: Don't include varray.h.  Rearrange functions to be more
22400         organized.
22401         (ggc_add_root): Delete.
22402         (ggc_mark_rtx): Delete.
22403         (ggc_mark_tree): Delete.
22404         (struct ggc_statistics): Remove contents.
22405         * ggc-common.c: Remove unneeded includes.
22406         (struct ggc_root): Delete.
22407         (roots): Delete.
22408         (ggc_add_root): Delete.
22409         (ggc_mark_roots): Don't mark `roots'.  Call ggc_mark_stringpool.
22410         (ggc_print_common_statistics): Remove most of the contents.
22411         * Makefile.in (GGC_H): No longer uses varray.h.
22412         (ggc-common.o): Update dependencies.
22413         (c-parse.o): Add varray.h to dependencies.
22414         (c-common.o): Add varray.h.
22415         * stringpool.c (mark_ident): Use mangled name for tree marker routine.
22416         (mark_ident_hash): Rename to ggc_mark_stringpool.
22417         (init_stringpool): Don't use ggc_add_root.
22418         * c-parse.in: Include varray.h.
22419         * c-common.c: Include varray.h.
22420         * objc/Make-lang.in (objc-act.o): Add varray.h.
22421         * objc/objc-act.c: Include varray.h.
22422
22423         2002-07-25  Geoffrey Keating  <geoffk@redhat.com>
22424
22425         * dwarf2out.c (dw_cfi_oprnd2_desc): Fix ISO-only function definition.
22426         (dw_cfi_oprnd1_desc): Likewise.
22427
22428         2002-07-17  Geoffrey Keating  <geoffk@redhat.com>
22429
22430         * config/alpha/alpha.c (struct alpha_links): Use gengtype to mark;
22431         move out of ifdef.
22432         (alpha_links): Use gengtype to mark; move out of ifdef.
22433         (mark_alpha_links_node): Delete.
22434         (mark_alpha_links): Delete.
22435         (alpha_need_linkage): Use GGC to allocate splay tree, struct
22436         alpha_links, strings.  Don't use ggc_add_root.
22437         * ggc-common.c (ggc_splay_alloc): New.
22438         (ggc_splay_dont_free): New.
22439         * ggc.h (ggc_mark_rtx): Update for changed name mangling.
22440         (ggc_mark_tree): Likewise.
22441         (splay_tree_new_ggc): New.
22442         (ggc_splay_alloc): Declare.
22443         (ggc_splay_dont_free): Declare.
22444         * dwarf2asm.c: Include gt-dwarf2asm.h.
22445         (mark_indirect_pool_entry): Delete.
22446         (mark_indirect_pool): Delete.
22447         (indirect_pool): Use gengtype to mark.
22448         (dw2_force_const_mem): Don't use ggc_add_root.
22449         * Makefile.in (dwarf2asm.o): Depend on gt-dwarf2asm.h.
22450         (GTFILES): Add SPLAY_TREE_H, dwarf2asm.c.
22451         (gt-dwarf2asm.h): Depend on s-gtype.
22452
22453         2002-07-08  Geoffrey Keating  <geoffk@redhat.com>
22454
22455         * tree.h (union tree_type_symtab): Mark `die' field.
22456         * Makefile.in (dwarf2out.o): Update dependencies.
22457         * dwarf2out.c: Use GGC to allocate all structures.  Convert to htab_t
22458         hash tables.
22459         (dw_cfi_oprnd1_desc): New function.
22460         (dw_cfi_oprnd2_desc): New function.
22461         (indirect_string_alloc): Delete.
22462         (debug_str_do_hash): New function.
22463         (debug_str_eq): New function.
22464         (mark_limbo_die_list): Delete.
22465         (dwarf2out_init): Don't call ggc_add_root.
22466
22467 2003-01-09  Vladimir Makarov  <vmakarov@redhat.com>
22468
22469         The following changes are merged from itanium-sched-branch:
22470
22471         2003-01-08  David Edelsohn  <edelsohn@gnu.org>
22472
22473         * doc/md.texi: Clarify assignment of units to automata description.
22474
22475         2003-01-08  Vladimir Makarov  <vmakarov@redhat.com>
22476
22477         * genautomata.c (unit_decl): Remove members
22478         `the_same_automaton_unit' and
22479         `the_same_automaton_message_reported_p'.
22480         (process_unit_to_form_the_same_automaton_unit_lists,
22481         form_the_same_automaton_unit_lists_from_regexp,
22482         form_the_same_automaton_unit_lists, the_same_automaton_lists):
22483         Remove them.
22484         (annotation_message_reported_p): New global variable.
22485         (check_unit_distribution_in_reserv,
22486         check_regexp_units_distribution): New functions.
22487         (check_unit_distributions_to_automata): Rewrite it.
22488
22489         2003-01-04  Vladimir Makarov  <vmakarov@redhat.com>
22490
22491         * genautomata.c (form_the_same_automaton_unit_lists_from_regexp):
22492         Use continue instead of break if cycle is too big.
22493
22494         2002-12-20  Vladimir Makarov  <vmakarov@redhat.com>
22495
22496         * genautomata.c (check_unit_distributions_to_automata): Output at
22497         most one message for a unit.
22498         (process_unit_to_form_the_same_automaton_unit_lists): Check
22499         automaton of units instead of units themself.
22500
22501         * doc/md.texi: Describe the constraint about assigning unit to
22502         automata.
22503
22504         2002-12-20  Jan Hubicka  <jH@suse.cz>
22505                     Vladimir Makarov  <vmakarov@redhat.com>
22506
22507         * genautomata.c (unit_decl): Add new members `min_occ_cycle_num'
22508         and `in_set_p'.
22509         (gen_cpu_unit): Initialize the new members.
22510         (process_regexp_cycles): Calculate minimal finish cycle too.  Set
22511         up `min_occ_cycle_num'.
22512         (evaluate_max_reserv_cycles): Change the function call.
22513         (CLEAR_BIT): New macro.
22514         (states_union, state_shift): Use the mask.
22515         (initiate_excl_sets, form_reserv_sets_list): Set up `in_set_p'.
22516         (form_reservs_matter): New function.
22517         (make_automaton): Call the function and use the mask.
22518         (estimate_one_automaton_bound): Take `min_occ_cycle_num' into
22519         account.
22520
22521         2002-12-17  Vladimir Makarov  <vmakarov@redhat.com>
22522
22523         * config/ia64/itanium2.md (lfetch): Change the insn reservation.
22524
22525         2002-12-17  Vladimir Makarov  <vmakarov@redhat.com>
22526
22527         * config/ia64/ia64.c (bundling): Try to insert 2 nops for M insn
22528         for Itanium.
22529
22530         2002-12-17  Vladimir Makarov  <vmakarov@redhat.com>
22531
22532         * config/ia64/ia64.c (ia64_override_options): Make itanium2 as
22533         default cpu.
22534
22535         2002-12-17  Vladimir Makarov  <vmakarov@redhat.com>
22536                 2002-10-31  Dale Johannesen <dalej@apple.com>
22537
22538         * haifa-sched.c (find_set_reg_weight): New function.
22539         (find_insn_reg_weight): Use the new function.
22540         (schedule_block): Do sorting ready queue always
22541         after insn issue.
22542
22543         2002-11-27  Vladimir Makarov  <vmakarov@redhat.com>
22544
22545         * config/ia64/ia64.c (bundling): Use MFI template instead of MLX.
22546
22547         2002-11-19  Vladimir Makarov  <vmakarov@redhat.com>
22548
22549         * haifa-sched.c (choice_entry): New structure.
22550         (choice_stack, cycle_issued_insns): New variables.
22551         (max_issue): Rewrite it.
22552         (choose_ready): Set up ready_try for unknown insns too.
22553         (schedule_block): Allocate and free choice_stack.  Set up
22554         and modify cycle_issued_insns.
22555
22556         * config/ia64/ia64.c (issue_nops_and_insn): Combine insn issue
22557         with and without filling the bundle.
22558         (bundling): Combine calls of issue_nops_and_insn.
22559
22560         2002-10-17  Vladimir Makarov  <vmakarov@redhat.com>
22561
22562         * config/ia64/itanium1.md: New file.
22563
22564         * config/ia64/itanium2.md: New file.
22565
22566         * config/ia64/ia64.md: Move DFA descriptions into the new files.
22567         Remove the old pipeline description.
22568
22569         * config/ia64/ia64.c (ia64_override_options): Add aliases of
22570         itanium processor names.
22571
22572         2002-10-16  Vladimir Makarov  <vmakarov@redhat.com>
22573
22574         * config/ia64/ia64.c (bundling): Print states for Itanium2 too.
22575         (ia64_reorg):  Set up queried unit codes for Itanium2 too.
22576
22577         * config/ia64/ia64.md: Add descriptions for Itanium2.
22578
22579         2002-10-08  Vladimir Makarov  <vmakarov@redhat.com>
22580
22581         * config/ia64/ia64.h (processor_type): New enumeration.
22582         (ia64_tune, ia64_tune_string): New external declarations.
22583         (TARGET_OPTIONS): Add option `tune='.
22584
22585         * config/ia64/ia64.c (ia64_tune, ia64_tune_string): New global
22586         variables.
22587         (ia64_override_options): Set up `ia64_tune'.
22588         (ia64_sched_reorder2): Set up `clocks' only for Itanium.
22589         (ia64_dfa_new_cycle): Set up `add_cycles' only for Itanium.
22590         (bundling): Add nops for MM-insns only for Itanium.
22591         (ia64_reorg): Allocate and free `clocks' and `add_cycles' only for
22592         Itanium.
22593
22594         * config/ia64/ia64.md (cpu): New attribute.
22595         (DFA description): Enable it only for Itanium.
22596
22597         2002-10-08  Vladimir Makarov  <vmakarov@redhat.com>
22598                     Richard Henderson  <rth@redhat.com>
22599
22600         * config/ia64/ia64.h (MASK_TUNE_STOP_BITS): Rename it to
22601         MASK_EARLY_STOP_BITS.
22602         (TARGET_TUNE_STOP_BITS): Rename it to TARGET_EARLY_STOP_BITS.
22603         (TARGET_SWITCHES): Rename option `tune-stop-bits' to
22604         `early-stop-bits'.
22605
22606         * config/ia64/ia64.c (ia64_dfa_new_cycle,
22607         final_emit_insn_group_barriers): Use TARGET_EARLY_STOP_BITS
22608         instead of TARGET_TUNE_STOP_BITS.
22609
22610         * doc/invoke.texi: Rename option `-mtune-stop-bits' to
22611         `-mearly-stop-bits'.
22612
22613         * config/ia64/ia64.c (automata_option "v"): Comment it.
22614
22615         2002-10-07  Vladimir Makarov  <vmakarov@redhat.com>
22616
22617         * config/ia64/ia64.h (MASK_TUNE_STOP_BITS, TARGET_TUNE_STOP_BITS):
22618         New macros.
22619         (TARGET_SWITCHES): Add entries for the new option.
22620
22621         * config/ia64/ia64.c (dfa_stop_insn, last_scheduled_insn, rtx
22622         dfa_pre_cycle_insn, ia64_nop): Don't make them as roots for GC.
22623         (stops_p, stop_before_p, clocks_length, clocks, add_cycles): New
22624         global variables.
22625         (ia64_sched_reorder2): Set up `clocks'.
22626         (ia64_variable_issue): Set up `stops_p' and reset `stop_before_p'.
22627         (ia64_dfa_new_cycle): Set up add_cycle.  Permit sorting ready
22628         queue when TARGET_TUNE_STOP_BITS.
22629         (bundling): Insert additional nops for MM-insns.
22630         (final_emit_insn_group_barriers): Add insertion of stop bits
22631         according `stops_p'.
22632         (ia64_reorg): Initiate the new varibales.
22633
22634         * doc/invoke.texi: Add description of option `-mtune-stop-bits'.
22635
22636         2002-10-02  Vladimir Makarov  <vmakarov@redhat.com>
22637
22638         * haifa-sched.c (schedule_block): Modify INSN_TICK of depended
22639         insns at the end of block insn scheduling.
22640
22641         2002-09-30  Vladimir Makarov  <vmakarov@redhat.com>
22642
22643         * sched-deps.c (remove_dependence, group_leader): Remove it.
22644         (add_dependence): Add dependence to group leader to.
22645         (set_sched_group_p): Add dependence to the first insn of the
22646         schedule group too.
22647         (sched_analyze_insn): Make dependence to jump as anti-dependence.
22648         Change true dependence by anti-dependence when
22649         `reg_pending_barrier'.
22650
22651         * sched-rgn.c (init_ready_list, can_schedule_ready_p,
22652         add_branch_dependences): Ignore schedule groups.
22653
22654         * sched-ebb.c (init_ready_list): Ditto.
22655
22656         * (move_insn, set_priorities): Ditto.
22657
22658         * config/ia64/ia64.c (ia64_sched_init): Check that schedule group
22659         flag is clear after reload.
22660         (adjust_cost): Change cost only for output dependencies.
22661
22662         * config/ia64/ia64.md: Add more insns into bypass for MM-insns.
22663
22664         2002-09-26  Vladimir Makarov  <vmakarov@redhat.com>
22665
22666         * Makefile.in (sched-ebb.o): Add `$(TARGET_H)' to the entry.
22667
22668         * target.h (gcc_target): Add member
22669         `dependencies_evaluation_hook'.
22670
22671         * target-def.h (TARGET_SCHED_DEPENDENCIES_EVALUATION_HOOK): New
22672         macro.
22673         (TARGET_SCHED): Add initiatialization of the new member.
22674
22675         * sched-ebb.c: Include `target.h'.
22676         (schedule_ebb): Call `dependencies_evaluation_hook'.
22677
22678         * sched-rgn.c (schedule_region): Call
22679         `dependencies_evaluation_hook'.
22680
22681         * config/ia64/ia64.c (TARGET_SCHED_DEPENDENCIES_EVALUATION_HOOK):
22682         New macro.
22683         (ia64_dependencies_evaluation_hook): New function.
22684
22685         * doc/tm.texi (TARGET_SCHED_DEPENDENCIES_EVALUATION_HOOK):
22686         Describe the new hook.
22687
22688         2002-09-25  Vladimir Makarov  <vmakarov@redhat.com>
22689
22690         * target.h (gcc_target): Add members
22691         `first_cycle_multipass_dfa_lookahead_guard' and `dfa_new_cycle'.
22692
22693         * target-def.h (TARGET_SCHED_DFA_NEW_CYCLE,
22694         TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD): New
22695         macros.
22696         (TARGET_SCHED): Add initiatialization of the new members.
22697
22698         * haifa-sched.c (schedule_insn): Update last_clock_var for the 1st
22699         insn scheduling too.
22700         (choose_ready): Use `first_cycle_multipass_dfa_lookahead_guard' to
22701         initialize `ready_try'.
22702         (schedule_block): Use `dfa_new_cycle'.  Sort `ready' only unless
22703         `dfa_new_cycle' says not to do it.
22704
22705         * config/ia64/ia64.md: Add DFA Itanium 1 description for insn
22706         bundling.
22707
22708         * config/ia64/ia64.h (CPU_UNITS_QUERY): New macro.
22709
22710         * config/ia64/ia64.c: Include `hashtab.h'.
22711         (ia64_first_cycle_multipass_dfa_lookahead_guard,
22712         ia64_dfa_new_cycle, final_emit_insn_group_barriers,
22713         ia64_dfa_sched_reorder, get_free_bundle_state, free_bundle_state,
22714         initiate_bundle_states, finish_bundle_states, bundle_state_hash,
22715         bundle_state_eq_p, insert_bundle_state,
22716         initiate_bundle_state_table, finish_bundle_state_table,
22717         try_issue_nops, try_issue_insn, issue_nops_and_insn, get_max_pos,
22718         get_template, get_next_important_insn, bundling): New functions.
22719         (ia64_internal_sched_reorder): Remove it.
22720         (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD,
22721         TARGET_SCHED_DFA_NEW_CYCLE): New macros.
22722         (ia64_safe_itanium_requires_unit0): Remove it.
22723         (group_barrier_needed_p): Place group barrier right before a real
22724         insn.
22725         (bundle, ia64_packet, NR_PACKETS, type_names, packets, packets):
22726         Remove them.
22727         (bundle_name): New variable.
22728         (_0mii_, _0mmi_, _0mfi_, _0mmf_, _0bbb_, _0mbb_, _0mib_, _0mmb_,
22729         _0mfb_, _0mlx_, _1mii_, _1mmi_, _1mfi_, _1mmf_, _1bbb_, _1mbb_,
22730         _1mib_, _1mmb_, _1mfb_, _1mlx_, pos_1, pos_2, pos_3, pos_4, pos_5,
22731         pos_6, dfa_stop_insn, last_scheduled_insn, dfa_state_size,
22732         temp_dfa_state, prev_cycle_state): New global variables.
22733         (insn_matches_slot, maybe_rotate, finish_last_head,
22734         rotate_one_bundle, rotate_one_bundles, nop_cycles_until,
22735         cycle_end_fill_slots, packet_matches_p, get_split, find_best_insn,
22736         find_best_packet, itanium_reorder, dump_current_packet,
22737         schedule_stop, gen_nop_type, ia64_emit_nops): Remove them.
22738         (sched_data, sched_ready, sched_types): Remove them.
22739         (ia64_sched_init): Initiate only `last_scheduled_insn' and call
22740         `init_insn_group_barriers'.
22741         (ia64_sched_reorder, ia64_sched_reorder2): Call
22742         ia64_dfa_sched_reorder.
22743         (ia64_variable_issue): Rewrite it.
22744         (bundle_state): New structure.
22745         (index_to_bundle_states, bundle_states_num,
22746         allocated_bundle_states_chain, free_bundle_state_chain): New
22747         global variables.
22748         (ia64_sched_finish): Add stop bits and call `bundling' after the
22749         2nd insn scheduling.
22750         (ia64_use_dfa_pipeline_interface): Return zero always.
22751         (ia64_first_cycle_multipass_dfa_lookahead): Return 6 for the 2nd
22752         insn scheduling.
22753         (ia64_init_dfa_pre_cycle_insn): Initialize `dfa_state_size',
22754         `temp_dfa_state', `prev_cycle_state', and `dfa_stop_insn'.
22755         (ia64_reorg): Add bundling insns.
22756
22757         * doc/tm.texi
22758         (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD,
22759         TARGET_SCHED_DFA_NEW_CYCLE): Describe the new hooks.
22760
22761         2002-09-23  Vladimir Makarov  <vmakarov@redhat.com>
22762
22763         * config/ia64/ia64.md: Add Itanium1 DFA description.
22764         (itanium_class): Add `nop' and `pre_cycle'.  Add
22765         define_function_unit for `nop'.
22766         (nop): Change attribute `itanium_class'.
22767         (pre_cycle): New define_insn.
22768
22769         * config/ia64/ia64-protos.h (bundling_p): New external variable.
22770         (ia64_st_address_bypass_p, ia64_ld_address_bypass_p,
22771         ia64_produce_address_p): New function prototypes.
22772
22773         * config/ia64/ia64.c (bundling_p): New global variable.
22774         (ia64_use_dfa_pipeline_interface,
22775         ia64_first_cycle_multipass_dfa_lookahead,
22776         ia64_init_dfa_pre_cycle_insn, ia64_dfa_pre_cycle_insn): New
22777         functions.
22778         (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE,
22779         TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD,
22780         TARGET_SCHED_INIT_DFA_PRE_CYCLE_INSN,
22781         TARGET_SCHED_DFA_PRE_CYCLE_INSN): New macros.
22782         (ia64_sched_init, ia64_sched_reorder, ia64_sched_reorder2,
22783         ia64_variable_issue, ia64_sched_finish): Do nothing before reload.
22784         (dfa_pre_cycle_insn): New variable.
22785
22786         2002-09-20  Vladimir Makarov  <vmakarov@redhat.com>
22787
22788         * rtl.def (FINAL_PRESENCE_SET, FINAL_ABSENCE_SET): New
22789         constructions.
22790
22791         * genattrtab.h (gen_final_presence_set, gen_final_absence_set):
22792         New function prototypes.
22793
22794         * genattrtab.c (main): Process the new constructions.
22795
22796         * genautomata.c (gen_presence_absence_set,
22797         process_presence_absence_names, process_presence_absence_patterns,
22798         add_presence_absence, check_absence_pattern_sets): Add parameter
22799         `final_p'.
22800         (unit_decl): Add new members `final_presence_list' and
22801         `final_absence_list'.
22802         (unit_pattern_rel_decl): Add new member `final_p'.
22803         (gen_final_presence_set, gen_final_absence_set): New functions.
22804         (process_decls): Use member `final_p'.
22805         (temp_reserv): New global variable.
22806         (reserv_sets_are_intersected): Add processing `final_presence_set'
22807         and `final_absence_set'.
22808         (initiate_states): Allocate `temp_reserv'.
22809         (unit_final_presence_set_table, unit_final_absence_set_table): New
22810         gloabal variables.
22811         (initiate_presence_absence_pattern_sets): Initiate them.
22812         (NDFA_to_DFA): Fix typo.
22813         (output_description): Output `final_presence_set' and
22814         `final_absence_set'.
22815
22816         * doc/md.texi (final_presence_set, final_absence_set): Describe
22817         them.
22818
22819         2002-09-20  Vladimir Makarov  <vmakarov@redhat.com>
22820
22821         * genautomata.c (transform_3): Process a missing case (nothing on
22822         unit place).
22823
22824         2002-09-20  Vladimir Makarov  <vmakarov@redhat.com>
22825
22826         * rtl.def (DEFINE_QUERY_CPU_UNIT, AUTOMATA_OPTION): Change
22827         comments about queried units and the minimization.
22828
22829         * doc/md.texi: Ditto.
22830
22831         * genautomata.c (create_composed_state): Return nonzero if the new
22832         state has been created.
22833         (first_cycle_unit_presence): New function.
22834         (state_is_differed): Add new parameter.  Use the new function.
22835         Take queried units into account.
22836         (partition_equiv_class): Pass additional parameter to
22837         `state_is_differed'.
22838         (merge_states): Process composed states too.
22839         (build_automaton, create_automata, output_min_issue_delay_table,
22840         output_tables, output_statistics): Output more information.
22841         (output_reserved_units_table): Use function
22842         `first_cycle_unit_presence'.
22843         (output_tables): Output table of queried units even if the
22844         minimization is switched on.
22845         (write_automata): Output code for querying units even if the
22846         minimization is switched on.
22847
22848         2002-09-19  Vladimir Makarov  <vmakarov@redhat.com>
22849
22850         * rtl.def (PRESENCE_SET, ABSENCE_SET): Add comments about extended
22851         syntax of the constructions.
22852
22853         * doc/md.texi (PRESENCE_SET, ABSENCE_SET): Add description of
22854         extended syntax of the constructions.
22855
22856         * genautomata.c (unit_rel_decl): Rename it to
22857         `unit_pattern_rel_decl'.
22858         (pattern_set_el, pattern_reserv): New structures.
22859         (pattern_set_el_t, pattern_reserv_t): New types.
22860         (gen_presence_absence_set): New function.
22861         (process_presence_absence): Remove it.
22862         (process_presence_absence_names,
22863         process_presence_absence_patterns): New functions.
22864         (get_presence_absence_set): Remove it.
22865         (initiate_presence_absence_sets): Rename it on
22866         `initiate_presence_absence_pattern_sets'.  Use new function
22867         `form_reserv_sets_list'.
22868         (form_reserv_sets_list, check_presence_pattern_sets,
22869         check_absence_pattern_sets, output_pattern_set_el_list): New
22870         functions.
22871         (unit_decl): Change types of members `presence_list' and
22872         `absence_list'.
22873         (unit_rel_decl): Rename member `names_num' to `all_names_num'.
22874         (decl): Change types of members `excl', `presence', and `absence'.
22875         (get_str_vect): Rename `par_flag' to `paren_p'.  Add null element
22876         at the end of the vector.
22877         (gen_cpu_unit, gen_query_cpu_unit, gen_bypass, gen_excl_set,
22878         gen_automaton, gen_regexp_repeat, gen_regexp_allof,
22879         gen_regexp_oneof, gen_regexp_sequence): Use boolean values.
22880         (gen_presence_set, gen_absence_set): Use new function
22881         `gen_presence_absence_set'.
22882         (add_presence_absence): Process `pattern_list' instead of
22883         `source_list'.
22884         (process_decls): USe new functions
22885         `process_presence_absence_names' and
22886         `process_presence_absence_patterns'.
22887         (reserv_sets_are_intersected): Use new function
22888         `check_presence_pattern_sets'.
22889         (presence_set, absence_set): Remove them.
22890         (unit_presence_set_table, unit_absence_set_table): New global
22891         variables.
22892         (output_description): Use new function
22893         `output_pattern_set_el_list'.
22894         (generate): Use `initiate_presence_absence_pattern_sets'.
22895
22896         2002-09-18  Vladimir Makarov  <vmakarov@redhat.com>
22897
22898         * genattr.c (main): Add output of prototype of new interface
22899         function `dfa_clean_insn_cache'.
22900
22901         * genautomata.c (output_dfa_clean_insn_cache_func): New function.
22902         (DFA_CLEAN_INSN_CACHE_FUNC_NAME): New macro.
22903         (output_dfa_start_func): Use function `dfa_clean_insn_cache' in
22904         the generated code.
22905         (write_automata): Call the new function.
22906
22907 2003-01-09  Jan Hubicka  <jh@suse.cz>
22908
22909         * i386.md (unit, prefix_0f, memory attributes): Hanlde sseicvt
22910         correctly.
22911
22912 2003-01-09  Paolo Carlini  <pcarlini@unitus.it>
22913
22914         * doc/tm.texi (EXTRA_ADDRESS_CONSTRAINT): Fix typo.
22915
22916 2003-01-09  J"orn Rennecke <joern.rennecke@superh.com>
22917
22918         * defaults.h (EXTRA_MEMORY_CONSTRAINT): Add STR argument.
22919         (EXTRA_ADDRESS_CONSTRAINT): Likewise.
22920         (CONSTRAINT_LEN): Provide default definition.
22921         (CONST_OK_FOR_CONSTRAINT_P): Likewise.
22922         (CONST_DOUBLE_OK_FOR_CONSTRAINT_P): Likewise.
22923         (EXTRA_CONSTRAINT_STR): Likewise.
22924         (REG_CLASS_FROM_CONSTRAINT): Define.
22925         * genoutput.c (check_constraint_len, constraint_len): New functions.
22926         (validate_insn_alternatives): Check CONSTRAINT_LEN for each
22927         constraint / modifier.
22928         (gen_insn): Call check_constraint_len.
22929         * local-alloc.c (block_alloc): Update to use new macros / pass
22930         second argument to EXTRA_{MEMORY,ADDRESS}_CONSTRAINT.
22931         * ra-build.c (handle_asm_insn): Likewise.
22932         * recog.c (asm_operand_ok, preprocess_constraints): Likewise.
22933         (constrain_operands, peep2_find_free_register): Likewise.
22934         * regclass.c (record_operand_costs, record_reg_classes): Likewise.
22935         * regmove.c (find_matches): Likewise.
22936         * reload.c (push_secondary_reload, find_reloads): Likewise.
22937         (alternative_allows_memconst): Likewise.
22938         * reload1.c (maybe_fix_stack_asms): Likewise.
22939         (reload_cse_simplify_operands): Likewise.
22940         * stmt.c (parse_output_constraint, parse_input_constraint): Likewise.
22941         * doc/tm.texi (CONSTRAINT_LEN, REG_CLASS_FROM_CONSTRAINT): Document.
22942         (CONST_OK_FOR_CONSTRAINT_P): Likewise.
22943         (CONST_DOUBLE_OK_FOR_CONSTRAINT_P, EXTRA_CONSTRAINT_STR): Likewise.
22944         (EXTRA_MEMORY_CONSTRAINT, EXTRA_ADDRESS_CONSTRAINT): Add STR argument.
22945         * config/s390/s390.h (EXTRA_MEMORY_CONSTRAINT): Likewise.
22946
22947         * sh.h (OVERRIDE_OPTIONS): Allow first scheduling pass for SH5.
22948
22949 2003-01-09  Kazu Hirata  <kazu@cs.umass.edu>
22950
22951         * config/h8300/h8300.md (*extzv_1_r_h8300): Correct the insn
22952         length.
22953         (*extzv_1_r_h8300hs): Likewise.
22954         (*extzv_1_r_inv_h8300): Likewise.
22955         (*extzv_1_r_inv_h8300hs): Likewise.
22956
22957 2003-01-09  Kazu Hirata  <kazu@cs.umass.edu>
22958
22959         * config/h8300/h8300.h (PREDICATE_CODES): New.
22960
22961 2003-01-09  Kazu Hirata  <kazu@cs.umass.edu>
22962
22963         * config/h8300/h8300.md (*addsi3_upper): New.
22964         (*iorsi3_shift): Likewise.
22965         (two splitters): Likewise.
22966         (*addsi3_shift): Likewise.
22967         (two splitters): Likewise.
22968
22969 2003-01-09  Josef Zlomek  <zlomj9am@artax.karlin.mff.cuni.cz>
22970
22971         * Makefile.in (optabs.o): Add dependency on basic-block.h.
22972         * basic-block.h (control_flow_insn_p): Fuction was exported.
22973         * cfgbuild.c (control_flow_insn_p): Fuction was made non-static.
22974         * optabs.c (emit_libcall_block): Emit REG_LIBCALL and REG_RETVAL
22975         notes only when the region is contained in a single basic block.
22976
22977 2003-01-09  Eric Botcazou  <ebotcazou@libertysurf.fr>
22978
22979         PR inline-asm/8832
22980         * tree.h (expand_asm): New prototype.
22981         * stmt.c (expand_asm): Set the MEM_VOLATILE_P flag if instructed
22982         to do so.
22983         * c-semantics (genrtl_asm_stmt): Pass the RID_VOLATILE qualifier
22984         down to expand_asm.
22985         * c-typeck.c (simple_asm_stmt): Set the RID_VOLATILE qualifier.
22986         * rtlanal.c (volatile_insn_p) [ASM_INPUT]: Test the MEM_VOLATILE_P flag.
22987         (volatile_refs_p) [ASM_INPUT]: Likewise.
22988         (side_effects_p) [ASM_INPUT]: Likewise.
22989
22990 2003-01-09  Jan Hubicka  <jh@suse.cz>
22991
22992         * i386.md (*mul*): FIx constraints; remove confused comment; fix
22993         athlon_decode attributes
22994         (imul/k8 optimization peep2s): New.
22995
22996         * athlon.md (athlon_ssecmp*): Handle ssecomi as well.
22997         * i386.md (type attribute): Add ssecomi.
22998         (unit, memory, prefix attributes): Handle ssecomi.
22999         (cvt?2? patterns): Fix athlon_decode attribute
23000         (comi patterns): Set attribute to ssecomi.
23001
23002         PR target/8343
23003         * m68k.md (umulsidi, mulsidi expanders): Use register operand.
23004
23005 2003-01-09  Richard Sandiford  <rsandifo@redhat.com>
23006
23007         * config/mips/mips.h (PREDICATE_CODES): Add ADDRESSOF for predicates
23008         that match register_operands.
23009         * config/mips/mips.c (reg_or_0_operand, true_reg_or_0_operand): Make
23010         register_operand the default case.
23011
23012 2003-01-09  Eric Botcazou  <ebotcazou@libertysurf.fr>
23013
23014         PR c/8032
23015         * c-typeck.c (process_init_element) [RECORD_TYPE]: For
23016         an empty element, do not advance the pointer to unfilled
23017         fields if there are pending initializers.
23018
23019 2003-01-09  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
23020
23021         * Makefile.in (ORDINARY_FLAGS_TO_PASS): Also pass DESTDIR.
23022         (install-gcc-tooldir, install-cpp, installdirs,
23023         install-common, install-driver, install-info, install-man,
23024         install-headers, install-include-dir, install-headers-tar,
23025         install-headers-cpio, install-headers-cp, install-mkheaders,
23026         install-collect2, uninstall): Prepend $(DESTDIR) to
23027         destination paths in all (un)installation commands.
23028         (install-driver): Rewrite $(LN) commands to support DESTDIR
23029         with "ln" as well as with "ln -s".
23030         (installdirs): Simply use mkinstalldirs.
23031         (install-libgcc, install-multilib): Also pass DESTDIR.
23032         * mklibgcc.in: Prepend $(DESTDIR) to $(libsubdir) in the
23033         installation destination variable ldir.
23034         * config/alpha/t-osf4, config/arm/t-netbsd,
23035         config/ia64/t-hpux, config/mips/t-iris5-6,
23036         config/pa/t-hpux-shlib, config/rs6000/t-aix43,
23037         config/rs6000/t-aix52, config/t-slibgcc-elf-ver,
23038         config/t-slibgcc-sld: Prepend $$(DESTDIR) to $$(slibdir)
23039         in the definition of SHLIB_INSTALL.
23040         * config/arc/t-arc (install-multilib-arc): Prepend $(DESTDIR) to
23041         $(libsubdir) in the installation commands.
23042
23043 2003-01-08  Kaz Kojima  <kkojima@gcc.gnu.org>
23044
23045         * config/sh/sh.h (CASE_VECTOR_MODE): Use SImode for a
23046         non-optimizing compile.
23047         (ASM_OUTPUT_ADDR_VEC_ELT): Use .long for a non-optimizing
23048         compile.
23049
23050 2003-01-08  Douglas B Rupp  <rupp@gnat.com>
23051
23052         * config/i386/i386.c (ix86_attribute_table): Add new attributes
23053         ms_struct and gcc_struct.
23054         (ix86_handle_struct_attribute): New function.
23055         (ix86_ms_bitfield_layout_p): Update to take new attributes
23056         into account.
23057         * doc/extend.texi: Document new attributes.
23058         * testsuite/gcc.dg/bf-ms-attrib.c: New test.
23059
23060 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
23061
23062         PR optimization/8750
23063         * config/i386/i386.c (ix86_expand_prologue): Don't allow
23064         scheduling pass to move insns across __alloca call.
23065
23066 2003-01-08  Dale Johannesen  <dalej@apple.com>
23067
23068         * config/rs6000/rs6000.md:  Replace *store_multiple_string
23069         with *stmsi[3-8].
23070
23071 2003-01-08  Jeff Sturm  <jsturm@one-point.com>
23072
23073         PR target/9210
23074         * config/rs6000/rs6000.c (rs6000_elf_encode_section_info):
23075         Set SYMBOL_REF_FLAG on local data sym_ref.
23076
23077 2003-01-08  Dale Johannesen  <dalej@apple.com>
23078
23079         * function.c (assign_parms):  Don't set pretend_args_size if
23080           REG_PARM_STACK_SPACE.
23081           config/rs6000/rs6000.c (setup_incoming_varargs):  Don't set
23082           pretend_args_size.
23083
23084 2003-01-08  Nathanael Nerode  <neroden@gcc.gnu.org>
23085
23086         * gcc.hlp: Delete.
23087
23088 2003-01-09  Jan Hubicka  <jh@suse.cz>
23089
23090         * i386.c  (ix86_expand_int_addcc): Fix thinko.
23091
23092 2003-01-08  David Edelsohn  <edelsohn@gnu.org>
23093
23094         * config/rs6000/rs6000.h (FUNCTION_MODE): Always use SImode.
23095         * config/rs6000/rs6000.c (TARGET_ASM_CAN_OUTPUT_MI_THUNK): Redefine
23096         as hook_bool_tree_hwi_hwi_tree_true.
23097         (rs6000_emit_allocate_stack): Use TARGET_32BIT.
23098         (rs6000_emit_epilogue): Same.
23099         (rs6000_output_mi_thunk): Re-implement as RTL.
23100         * config/rs6000/xcoff.h (ASM_DECLARE_FUNCTION_NAME): Call
23101         xcoffout_declare_function if any debugging enabled.
23102
23103 2003-01-08  Chris Demetriou  <cgd@broadcom.com>
23104
23105         * config.gcc (mipsisa32r2-*-elf*, mipsisa32r2el-*-elf*): New
23106         targets, to support MIPS32 Release 2 (MIPS32R2) configurations.
23107         * config/mips/mips.h (enum processor_type): Rename
23108         PROCESSOR_R4KC to PROCESSOR_4KC, PROCESSOR_R5KC to
23109         PROCESSOR_5KC, and PROCESSOR_R20KC to PROCESSOR_20KC.
23110         Add PROCESSOR_M4K.
23111         (TARGET_MIPS4KC, TARGET_MIPS5KC): Update for the renaming.
23112         (ISA_MIPS32R2): New define.
23113         (GENERATE_MULT3_SI, ISA_HAS_CONDMOVE, ISA_HAS_8CC)
23114         (ISA_HAS_MADD_MSUB, ISA_HAS_CLZ_CLO)
23115         (ISA_HAS_PREFETCH): Add support for MIPS32R2.
23116         (MIPS_ISA_DEFAULT): Likewise.  Also, fix indentation.
23117         (TARGET_CPU_CPP_BUILTINS): Add support for MIPS32R2.  Add new
23118         predefine __mips_isa_rev for MIPS32, MIPS32R2, and MIPS64.
23119         (ISA_HAS_ROTR_SI): Add support for MIPS32R2, and avoid if
23120         compiling MIPS16 code.
23121         (ISA_HAS_ROTR_DI): Do not use if compiling MIPS16 code, and fix
23122         comment.
23123         (ISA_HAS_SEB_SEH): New define.
23124         (ASM_SPEC, LINK_SPEC): Pass -mips32r2 to assembler and linker.
23125         * config/mips/mips.c (mips_cpu_info_table): Adjust for enum
23126         processor_type value renaming.  Add support for MIPS32R2.
23127         Clean up comments, and move "sb1" entry with other MIPS64 CPU
23128         entries.
23129         (override_options): Reimplement -mipsN option handling so that
23130         it will work correctly for -mips32r2.  Avoid branch-likely
23131         instructions on MIPS32R2.
23132         * config/mips/mips.md (mulsi3_mult3): Add support for MIPS32R2.
23133         (extendhisi2): Use extendhisi2_hw if ISA_HAS_SEB_SEH.
23134         (extendqisi2): Use extendqisi2_hw if ISA_HAS_SEB_SEH.
23135         (extendhisi2_hw, extendqisi2_hw): New.
23136         * config/mips/netbsd.h (TARGET_CPU_CPP_BUILTINS): Add support
23137         for MIPS32R2.  Add new predefine __mips_isa_rev for MIPS32,
23138         MIPS32R2, and MIPS64.
23139         (LINK_SPEC): Pass -mips32r2 to linker.
23140         * config/mips/t-isa3264: Built -mips32r2 multilibs.
23141         * doc/invoke.texi (MIPS Options): Add -mips32r2, add support
23142         for mips32r2 in the -march description.  Alphabetically sort
23143         CPU names in the -march description.  Add long-missed -mips32
23144         and -mips64 to MIPS option summary.
23145
23146         * config.gcc: Update copyright years to include 2003.
23147         * config/mips/mips.c: Likewise.
23148         * config/mips/mips.h: Likewise.
23149         * config/mips/mips.md: Likewise.
23150         * config/mips/netbsd.h: Likewise.
23151         * doc/invoke.texi: Likewise.
23152
23153 2003-01-08  Andreas Schwab  <schwab@suse.de>
23154
23155         * aclocal.m4 (gcc_AC_INITFINI_ARRAY): Fix spelling of cache
23156         variable.
23157         * configure: Regenerated.
23158
23159 2003-01-08  Kazu Hirata  <kazu@cs.umass.edu>
23160
23161         * config/h8300/h8300.c (output_logical_op): Replace byte/word
23162         extraction of det with b0, b1, w0, w2, etc.
23163         (compute_logical_op_length): Likewise.
23164         (compute_logical_op_cc): Likewise.
23165
23166 2003-01-08  Kazu Hirata  <kazu@cs.umass.edu>
23167
23168         * config/h8300/h8300.h (CONSTANT_ADDRESS_P): Allow CONST and
23169         HIGH on all variants.
23170
23171 2003-01-08  Josef Zlomek <zlomj9am@artax.karlin.mff.cuni.cz>
23172
23173         * Makefile.in (PARTITION_H): New.
23174         (BASIC_BLOCK_H): Added hard-reg-set.h and $(PARTITION_H).
23175         * basic-block.h: Include hard-reg-set.h.
23176
23177 2003-01-08  Richard Earnshaw  <rearnsha@arm.com>
23178
23179         * arm.h (ENABLE_XF_PATTERNS): Delete.
23180         * arm.md (addxf3, subxf3, mulxf3, divxf3, modxf3, negxf2, absxf2)
23181         (sqrtxf2, floatsixf2, fix_truncxfsi2, truncxfsf2, truncxfdf2)
23182         (extendsfxf2, extenddfxf2, movxf, cmpxf, cmpxf_insn)
23183         (cmpxf_trap): Delete.
23184         (movxf_hard_insn): Remove test of ENABLE_XF_PATTERNS.
23185
23186 2003-01-08  Jan Hubicka  <jh@suse.cz>
23187
23188         * i386.md (adddi3_carry_rex64, subdi3_carry_rex64): Name pattern.
23189         (addhi3_carry, addqi3_carry, subhi3_carry, subqi3_carry): New patterns.
23190         (add??cc): New expanders.
23191         * i386.c (expand_int_addcc): New function.
23192         * i386-protos.h (expand_int_addcc): Declare.
23193
23194         * alias.c (memory_modified_1): New static function.
23195         (memory_modified): New static varaible.
23196         (memory_modified_in_insn_p): New global function.
23197         * rtl.h (memory_modified_in_insn_p): Declare.
23198         * rtlanal.c (modified_between_p, modified_in_p): Be smart about memory
23199         references.
23200
23201         * expr.h (emit_conditional_add): Declare.
23202
23203 2003-01-07  Janis Johnson  <janis187@us.ibm.com>
23204
23205         PR other/8947
23206         * doc/invoke.texi (-malign-double): Explain that the option breaks
23207         binary compatibility.
23208
23209 2003-01-08  Andreas Schwab  <schwab@suse.de>
23210
23211         * config.gcc (m68k-*-linux*): Don't set extra_parts and gnu_ld,
23212         should come from the generic *-*-linux* entry.
23213
23214 2003-01-07  Jan Hubicka  <jh@suse.cz>
23215
23216         * cselib.c (cselib_current_insn_in_libcall): New static variable.
23217         (new_elt_loc_list, cselib_process_insn, cselib_init): Keep track on whether
23218         we are inside libcall.
23219         * cselib.h (elt_loc_list): Add in_libcall.
23220         * gcse.c (do_local_cprop): Do not copy propagate using insns
23221         in libcalls.
23222
23223 2003-01-07  David Edelsohn  <edelsohn@gnu.org>
23224
23225         * doc/tm.texi (TARGET_SCHED_VARIABLE_ISSUE): CLOBBER and USE do
23226         not normally affect to issue rate.
23227
23228 2003-01-07  Jan Hubicka  <jh@suse.cz>
23229
23230         * genopinit.c (optabs): Add addc_optab.
23231         * ifcvt.c (noce_try_store_flag): Rename to ...
23232         (noce_try_addcc): ... this one; handle generic conditional increment.
23233         (noce_process_if_block): Update noce_try_addcc call.
23234         * optabs.c (emit_conditional_add): New.
23235         (init_obtabs): Initialize addc_optab.
23236         * optabs.h (optab_index): Add OTI_addcc.
23237         (addcc_optab): New macro.
23238         * md.texi: Document addMcc
23239
23240         PR target/8322
23241         * i386.c (ix86_init_mmx_sse_builtins): Constify arguments of loads.
23242         * xmmintrin.h (_mm_load*_si128. _mm_store*_si128): Add casts.
23243         * xmmintrin.h (_mm_load*_si128. _mm_store*_si128): Add casts.
23244
23245         * reload1.c (delete_output_reload): Avoid repeated attempts
23246         to delete insn.
23247
23248 2003-01-07  Andreas Schwab  <schwab@suse.de>
23249
23250         * configure.in: Restore CFLAGS before gcc_AC_INITFINI_ARRAY.
23251         Move --enable-initfini-array check ...
23252         * aclocal.m4 (gcc_AC_INITFINI_ARRAY): ... here.  Define
23253         HAVE_INITFINI_ARRAY also when --enable-initfini-array is given.
23254         Don't AC_SUBST gcc_cv_initfinit_array.  Use AC_TRY_RUN.
23255         * configure: Rebuild.
23256
23257 2003-01-07  Richard Henderson  <rth@redhat.com>
23258
23259         * alias.c (find_base_value): Only use new_reg_base_value shortcut
23260         if the register is set once.
23261
23262 2003-01-07  Sylvain Pion <Sylvain.Pion@mpi-sb.mpg.de>
23263
23264         * config/i386/i386.c (ix86_init_mmx_sse_builtins):
23265         __builtin_ia32_ldmxcsr and __builtin_ia32_stmxcsr are SSE, not MXX.
23266         * config/i386/i386.md (ldmxcsr, stmxcsr): SSE, not MMX.
23267
23268 2003-01-07  Benjamin Kosnik  <bkoz@redhat.com>
23269             Sunil Davasam  <sunil.k.davasam@intel.com>
23270
23271         PR libstdc++/9076
23272         * unwind-dw2.c (execute_cfa_program): DW_CFA_undefined,
23273         DW_CFA_same_value, read next and ignore.
23274
23275 2003-01-07  Richard Henderson  <rth@redhat.com>
23276
23277         * cfganal.c (flow_call_edges_add): Don't crash on noreturn call.
23278
23279 2003-01-07  Daniel Berlin  <dberlin@dberlin.org>
23280
23281         * cfg.c: Include alloc-pool.h
23282         (edge_pool): New pool.
23283         (bb_pool): New pool.
23284         (first_deleted_edge): Remove.
23285         (first_deleted_block): Remove.
23286         (init_flow): Alloc/free the pools.
23287         (free_edge): Use pools.
23288         (alloc_block): Ditto.
23289         (expunge_block): Ditto.
23290         (cached_make_edge): Ditto.
23291
23292         * Makefile.in (cfg.o): Add alloc-pool.h dependency.
23293
23294 2003-01-07  Daniel Berlin  <dberlin@dberlin.org>
23295
23296         * et-forest.c: Include alloc-pool.h.
23297         (struct et_forest): Add node_pool and occur_pool.
23298         (et_forest_create): Create the new pools.
23299         (et_forest_delete): Delete them.
23300         (et_forest_add_node): Allocate and free using pools.
23301         (et_forest_add_edge): Ditto.
23302         (et_forest_remove_node): Ditto.
23303         (et_forest_remove_edge): Ditto.
23304
23305         * Makefile.in (et-forest.o): Add alloc-pool.h dependency.
23306
23307 2003-01-07  Kazu Hirata  <kazu@cs.umass.edu>
23308
23309         * config/h8300/h8300.c (output_logical_op): Simplify and
23310         optimize the handling of SImode.
23311         * config/h8300/h8300.c (compute_logical_op_length): Update
23312         accordingly.
23313         * config/h8300/h8300.c (compute_logical_op_cc): Likewise.
23314
23315 2003-01-07  Richard Sandiford  <rsandifo@redhat.com>
23316
23317         * config/mips/mips.c (mips_va_arg): In the EABI code, apply the
23318         big-endian correction to indirect arguments too.
23319
23320 2003-01-06  Aldy Hernandez  <aldyh@redhat.com>
23321
23322         Segher Boessenkool  <segher@koffie.nl>
23323
23324         * config/rs6000/rs6000.c (rs6000_reg_names): Add missing registers.
23325         (alt_reg_names): Ditto, fix formatting.
23326         * config/rs6000/rs6000.h (DEBUG_REGISTER_NAMES): Fix formatting.
23327
23328 2003-01-06  Kazu Hirata  <kazu@cs.umass.edu>
23329
23330         * config/h8300/h8300.c (final_prescan_insn): Constify uid.
23331         (output_logical_op): Constify intval and det.
23332         (compute_logical_length): Likewise.
23333         (compute_logical_cc): Likewise.
23334         (output_a_shift): Constify mask.
23335         (h8300_encode_label): Constify len.
23336
23337 2003-01-06  Kazu Hirata  <kazu@cs.umass.edu>
23338
23339         * config/h8300/h8300.c (h8300_expand_prologue): Remove fsize.
23340         (h8300_expand_epilogue): Likewise.
23341
23342 2003-01-06  Aldy Hernandez  <aldyh@redhat.com>
23343
23344         Segher Boessenkool  <segher@koffie.nl>
23345
23346         * config/rs6000/altivec.md: Remove spaces from assembler
23347         instruction argument lists.
23348
23349 2003-01-07  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
23350
23351         * config/c4x/c4x.c (c4x_naked_function_p): Rename from
23352         c4x_assembler_function_p.
23353         (c4x_null_epilogue_p): Complement return value, all uses updated.
23354         (c4x_insert_attributes): Add naked.
23355         * config/c4x/c4x.md (c4x_null_epilogue_p): Changes uses.
23356         * doc/extend.texi: Update C4x function attributes.
23357
23358 2003-01-06  Richard Henderson  <rth@redhat.com>
23359
23360         * config/alpha/alpha.c (alpha_encode_section_info): Adjust symbol_str
23361         properly when changing "local-ness".
23362         * config/alpha/alpha.md (movdi_er_high_g): Allow all symbols.
23363
23364 2003-01-06  Dale Johannesen  <dalej@apple.com>
23365
23366         * config/darwin-protos.h:  Add prototypes for new section functions.
23367
23368 2003-01-06  Chris Demetriou  <cgd@broadcom.com>
23369
23370         * config.gcc (mipsisa32-*-elf*, mipsisa32el-*-elf*): Default ABI
23371         to EABI.
23372
23373 2003-01-06  Zack Weinberg  <zack@codesourcery.com>
23374
23375         * hwint.h: If the current compiler has no 64-bit type at all,
23376         make HOST_WIDEST_INT 32 bits.
23377
23378 2003-01-06  Eric Christopher  <echristo@redhat.com>
23379
23380         * config/mips/mips.md (movdf_internal2): Fix constraints.
23381
23382 2003-01-06  Kazu Hirata  <kazu@cs.umass.edu>
23383
23384         * config/h8300/h8300.md (*twoshifts_l16_r1): New.
23385
23386 2003-01-06  Richard Sandiford  <rsandifo@redhat.com>
23387
23388         * config/mips/mips.md (leadi): Use dla rather than la.
23389
23390 2003-01-06  Svein E. Seldal  <Svein.Seldal@solidas.com>
23391
23392         * config/c4x/c4x.h: Updated specs for new gas format.  Fixed bug
23393         in C33_FLAG.  Added proper C33 support in ASM_FILE_START macro.
23394
23395 2003-01-06 Herman A.J. ten Brugge  <hermantenbrugge@home.nl>
23396
23397         * config/c4x/c4x.h: Remove hwint.h include and HOST_WIDE_INT_PRINT_HEX
23398         redefinition.
23399
23400 2003-01-05  Kazu Hirata  <kazu@cs.umass.edu>
23401
23402         * config/h8300/h8300.md (*extzv_8_23): New.
23403
23404 2003-01-05  John David Anglin  <dave@hiauly1.hia.nrc.ca>
23405
23406         * pa64-hpux.h (JCR_SECTION_NAME): Define.
23407         (PA_INIT_FRAME_DUMMY_ASM_OP): Check EH_FRAME_SECTION_NAME instead of
23408         USE_EH_FRAME_REGISTRY when defining.
23409
23410 2003-01-05  Kazu Hirata  <kazu@cs.umass.edu>
23411
23412         * config/h8300/h8300.c (output_a_shift): Do not output a
23413         variable shift.
23414         * config/h8300/h8300.md (two splitters): New.
23415
23416 2003-01-05  Richard Sandiford  <rsandifo@redhat.com>
23417
23418         * config/mips/mips.md: Disable the movstrsi define_split.
23419
23420 2003-01-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
23421
23422         * alloc-pool.c: Don't include "libiberty.h".
23423         * config/sparc/gmon-sol2.c: Include <fcntl.h>.
23424         * convert.c (convert_to_real): Hide unused variable.
23425
23426 2003-01-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
23427
23428         * Makefile.in (gtyp-gen.h): Const-ify.
23429         * gcov-dump.c (tag_table): Likewise.
23430
23431 2003-01-04  Bruce Korb  <bkorb@gnu.org>
23432
23433         * fixinc/fixfixes.c(wrap_fix): the wrapper guard must be a function
23434         of *both* the file name and the fix name.
23435
23436 2003-01-04  John David Anglin  <dave.anglin@nrc.ca>
23437
23438         * config.gcc (hppa*64*-*-hpux11*): Define extra_parts.  Don't use
23439         collect2.
23440         * pa-hpux11.h (LDD_SUFFIX, PARSE_LDD_OUTPUT): Undefine.
23441         (HAS_INIT_SECTION, LD_INIT_SWITCH, LD_FINI_SWITCH): Define.
23442         * pa64-hpux.h (HP_INIT_ARRAY_SECTION_ASM_OP,
23443         GNU_INIT_ARRAY_SECTION_ASM_OP, HP_FINI_ARRAY_SECTION_ASM_OP,
23444         GNU_FINI_ARRAY_SECTION_ASM_OP): Define.
23445         (CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP): Define when not using
23446         elfos.h.
23447         (EH_FRAME_IN_DATA_SECTION): Delete define.
23448         (HAS_INIT_SECTION, LD_INIT_SWITCH, LD_FINI_SWITCH): Undefine.
23449         (STARTFILE_SPEC): Use crtbegin.o.
23450         (ENDFILE_SPEC): Use crtend.o.
23451         (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP, CRT_CALL_STATIC_FUNCTION,
23452         SUPPORTS_INIT_PRIORITY, PA_CXA_FINALIZE_STUB, PA_INIT_FINI_HACK,
23453         PA_INIT_FRAME_DUMMY_ASM_OP, PA_JV_REGISTERCLASSES_STUB,
23454         DTOR_LIST_BEGIN): Define.
23455         * pa.c (TARGET_ASM_CONSTRUCTOR): Define.
23456         (pa_asm_out_constructor, pa_asm_out_destructor): New functions.
23457         * som.h (SUPPORTS_INIT_PRIORITY): Delete define.
23458
23459 2002-12-31  Larin Hennessy  <larin@science.oregonstate.edu>
23460
23461         * fixinc/fixinc.svr4: Remove references to i860, Sony NewsOS, and spur.
23462         * fixinc/inclhack.def: Remove tests for Apple A/UX, ARM/RISCiX, DG/UX,
23463         m88k-*-sysv3*, Sony NewsOS.   Remove references to i860.
23464         Cleanup handling of replacement text.
23465         * fixinc/mkfixinc.sh: Remove reference to i?86-*-osf1*
23466
23467 2003-01-04  Bruce Korb  <bkorb@gnu.org>
23468
23469         * fixinc/tests/base/math.h: removed obsolete results
23470         * fixinc/tests/base/stdlib.h: ditto
23471         * fixinc/tests/base/sys/param.h: ditto
23472         * fixinc/tests/base/sys/stat.h: ditto
23473         * fixinc/tests/base/time.h: ditto
23474         * fixinc/tests/base/X11/Intrinsic.h: removed obsolete file
23475         * fixinc/tests/base/sys/byteorder.h: ditto
23476         * fixinc/inclhack.def: Remove superfluous backslashes
23477
23478 2003-01-04  Kazu Hirata  <kazu@cs.umass.edu>
23479
23480         * config/h8300/h8300-protos.h: Add prototypes for
23481         the new functions defined below.
23482         * config/h8300/h8300.c (TARGET_ASM_FUNCTION_PROLOGUE): Do not
23483         define.
23484         (dosize): Emit RTL instead of assembly code.
23485         (push): Likewise.
23486         (pop): Likewise.
23487         (h8300_output_function_prologue): Remove.
23488         (h8300_expand_prologue): New.
23489         (h8300_expand_epilogue): New.
23490         (h8300_output_function_epilogue): Do only the reset of
23491         pragma_saveall.
23492         * config/h8300/h8300.md (push_h8300): New.
23493         (push_h8300hs): Likewise.
23494         (pop_h8300): Likewise.
23495         (pop_h8300hs): Likewise.
23496         (*stm_h8300s_2): Change the name to stm_h8300s_2.
23497         (*stm_h8300s_3): Change the name to stm_h8300s_3.
23498         (*stm_h8300s_4): Change the name to stm_h8300s_4.
23499         (*ldm_h8300s_2): New.
23500         (*ldm_h8300s_3): Likewise.
23501         (*ldm_h8300s_4): Likewise.
23502         (return): Likewise.
23503         (*return_1): Likewise.
23504         (prologue): Likewise.
23505         (epilogue): Likewise.
23506         (monitor_prologue): Likewise.
23507
23508 2003-01-03  Dale Johannesen  <dalej@apple.com>
23509
23510         * config/darwin.h:  (EXTRA_SECTIONS):  Add machopic_symbol_stub1,
23511           machopic_picsymbol_stub1.
23512           (EXTRA_SECTION_FUNCTIONS):  Ditto.
23513         * rs6000/rs6000.c:  Update copyright.
23514           (machopic_output_stub):  Use them.  Remove an insn from stub code.
23515
23516 2003-01-02  Jason Merrill  <jason@redhat.com>
23517
23518         * fold-const.c (fold) [COND_EXPR]: Avoid NOP_EXPRs better.
23519
23520         * integrate.c (copy_decl_for_inlining): Don't clear the rtl for
23521         static/external decls.
23522
23523         * c-common.c (finish_fname_decls): Put the DECL_STMTs inside the
23524         outermost scope.
23525         * c-decl.c (c_make_fname_decl): Push the decls there, too.
23526
23527 2003-01-03  Kazu Hirata  <kazu@cs.umass.edu>
23528
23529         * config/h8300/h8300-protos.h: Add a prototype for
23530         h8300_current_function_interrupt_function_p.
23531         * config/h8300/h8300.c (interrupt_handler): Remove.
23532         (os_task): Likewise.
23533         (monitor): Likewise.
23534         (pragma_interrupt): New.
23535         (WORD_REG_USED): Use
23536         h8300_current_function_interrupt_function_p.
23537         (dosize): Likewise.
23538         (h8300_output_function_prologue): Likewise.
23539         Do not set interrupt_handler, os_task, monitor.
23540         (h8300_output_function_prologue): Use
23541         h8300_current_function_interrupt_function_p.
23542         Do not set interrupt_handler, os_task, monitor.
23543         (h8300_current_function_interrupt_function_p): New.
23544         (h8300_pr_interrupt): Set pragma_interrupt.
23545         (h8300_insert_attributes): Reset pragma_interrupt.
23546
23547 2003-01-03  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
23548
23549         * doc/install.texi (Configuration): Fix markup for reference to
23550         gcc/config.gcc.
23551
23552 2003-01-02  Kazu Hirata  <kazu@cs.umass.edu>
23553
23554         * config/h8300/h8300.md (*iorhi3_zext): Relax the condition.
23555         (*iorhi3_two_qi): Likewise.
23556         (*iorsi3_zexthi): Likewise.
23557         (*xorhi3_zextqi): Likewise.
23558         (*xorsi3_zexthi): Likewise.
23559         (*xorsi3_zextqi): Likewise.
23560
23561 2003-01-02  Kazu Hirata  <kazu@cs.umass.edu>
23562
23563         * config/h8300/h8300.c (stack_pointer_operand): New.
23564         (const_int_gt_2_operand): Likewise.
23565         (const_int_ge_8_operand): Likewise.
23566         * config/h8300/h8300.md (a splitter): Likewise.
23567         (a peephole2): Likewise.
23568         * config/h8300/h8300-protos.h: Add prototypes for the new
23569         functions above.
23570
23571 2003-01-02  Steven Bosscher <s.bosscher@student.tudelft.nl>
23572
23573         * objc/Make-lang.in, objc/config-lang.in, objc/lang-specs.h,
23574         objc/objc-act.h: Fix copyright years.
23575
23576 2003-01-02  Steven Bosscher  <s.bosscher@student.tudelft.nl>
23577
23578         * doc/passes.texi: Fix documentation for -fssa-ccp
23579
23580 2003-01-02  Neil Booth  <neil@daikokuya.co.uk>
23581
23582         * gccbug.in: Update for new categories.
23583
23584 2003-01-01  Kazu Hirata  <kazu@cs.umass.edu>
23585
23586         * config/h8300/h8300.md: Reorder some patterns.
23587
23588 2003-01-01  Kazu Hirata  <kazu@cs.umass.edu>
23589
23590         * config/h8300/h8300.c (output_logical_op): Fix a warning.
23591
23592 2003-01-01  Neil Booth  <neil@daikokuya.co.uk>
23593
23594         * config/darwin-protos.h, config/c4x/c4x-protos.h,
23595         config/cris/cris-protos.h, config/i370/i370-protos.h,
23596         config/i960/i960-protos.h, config/ia64/ia64-protos.h,
23597         config/v850/v850-protos.h: Use struct, and don't conditionally
23598         compile on GCC_C_PRAGMA_H.
23599
23600 2003-01-01  Kazu Hirata  <kazu@cs.umass.edu>
23601
23602         * config/arm/arm-protos.h: Remove #ifdef GCC_C_PRAGMA_H.
23603         * config/h8300/h8300-protos.h: Likewise.
23604         * config/sh/sh-protos.h: Likewise.
23605
23606 2003-01-01  Kazu Hirata  <kazu@cs.umass.edu>
23607
23608         * config/arm/arm-protos.h: Use struct cpp_reader instead of
23609         cpp_reader.
23610         * config/h8300/h8300-protos.h: Likewise.
23611         * config/sh/sh-protos.h: Likewise.
23612
23613 2003-01-01  Neil Booth  <neil@daikokuya.co.uk>
23614
23615         * config/arm/arm.c (arm_pr_long_calls, arm_pr_no_long_calls,
23616         arm_pr_long_calls_off): Use struct.
23617         * config/h8300/h8300.c (h8300_pr-interrupt, h8300_pr_saveall)
23618         : Similarly.
23619         Don't include cpplib.h.
23620         * config/sh/sh.c (sh_pr_interrupt, sh_pr_trapa,
23621         sh_pr_nosave_low_regs): Similarly.
23622
23623 2003-01-01  Kazu Hirata  <kazu@cs.umass.edu>
23624
23625         * config/h8300/h8300.c: Include cpplib.h.
23626
23627 2003-01-01  Steven Bosscher  <s.bosscher@student.tudelft.nl>
23628
23629         * objc/Make-lang.in, objc/config-lang.in, objc/lang-options.h,
23630           objc/lang-specs.h, objc/objc-act.c, objc/objc-act.h,
23631           objc/objc-lang.c, objc/objc-tree.def: Replace "GNU CC" with
23632           "GCC" in the copyright header.
23633
23634 2003-01-01  Neil Booth  <neil@daikokuya.co.uk>
23635
23636         * c-pragma.c (c_register_pragma): New.
23637         (init_pragma): Use it.
23638         * c-pragma.h (cpp_register_pragma): Don't declare.
23639         (c_register_pragma): New.
23640         * cpplib.h: Remove #ifdef GCC_C_PRAGMA_H.
23641         * config/darwin.h (REGISTER_TARGET_PRAGMAS): Update.
23642         * config/arm/arm.h (REGISTER_TARGET_PRAGMAS): Update.
23643         * config/c4x/c4x.h (REGISTER_TARGET_PRAGMAS): Update.
23644         * config/h8300/h8300.h (REGISTER_TARGET_PRAGMAS): Update.
23645         * config/i370/i370.h (REGISTER_TARGET_PRAGMAS): Update.
23646         * config/i960/i960.h (REGISTER_TARGET_PRAGMAS): Update.
23647         * config/ia64/hpux.h (REGISTER_TARGET_PRAGMAS): Update.
23648         * config/rs6000/rs6000.h (REGISTER_TARGET_PRAGMAS): Update.
23649         * config/sh/sh.h (REGISTER_TARGET_PRAGMAS): Update.
23650         * config/v850/v850.h (REGISTER_TARGET_PRAGMAS): Update.
23651         * doc/tm.texi (REGISTER_TARGET_PRAGMAS): Update
23652
23653 See ChangeLog.8 for earlier changes.