winnt.c (i386_pe_mark_dllimport): Revert previous changes.
[gcc.git] / gcc / ChangeLog
1 2003-04-21 Mark Mitchell <mark@codesourcery.com>
2
3 * config/i386/winnt.c (i386_pe_mark_dllimport): Revert previous
4 changes.
5
6 2003-04-21 Aldy Hernandez <aldyh@redhat.com>
7
8 * config/rs6000/rs6000.c (rs6000_override_options): No SPE means
9 64-bit long doubles.
10
11 2003-04-21 Olivier Hainque <hainque@act-europe.fr>
12
13 * fold-const.c (fold, case PLUS_EXPR and case MULT_EXPR): Restore
14 a number of conversions required for type consistency and previously
15 stripped off by STRIP_NOPS.
16
17 * calls.c (expand_call): Prevent sibcall optimization for calls to
18 nested subprograms.
19
20 * expmed.c (extract_bit_field): Reverse operands of && condition to
21 prevent a potential division by zero in the previously first branch.
22 * config/pa/pa.md (extv, extzv): FAIL if the bitfield length is zero.
23
24 2003-04-21 Joel Brobecker <brobecker@gnat.com>
25
26 * dwarf2out.c (is_ada, is_ada_subrange_type): New functions.
27 (subrange_type_die): Likewise.
28 (modified_type_die): Emit a subrange_type DIE for Ada subrange types.
29 (is_c_family, is_cxx, is_java, is_fortran): Return bool and clean up.
30
31 2003-04-21 Nathan Sidwell <nathan@codesourcery.com>
32
33 Break out coverage routines to new file.
34 * Makefile.in (COVERAGE_H): New variable
35 (C_OBJS): Add coverage.o
36 (coverage.o): New target.
37 (profile.o, loop-init.o, sched-ebb.o, predict.o, tracer.o): Adjust
38 dependencies.
39 (GTFILES): Adjust.
40 (gt-coverage.h): New target.
41 (gt-profile.h): Remove.
42 * profile.h: Remove. Move to ...
43 * coverage.h: ... here. New. #include gcov-io.h.
44 * gcov-io.h: Move function definitions to ...
45 * gcov-io.c: ... here. New.
46 * profile.c: Move coverage routines to coverage.c.
47 (instrument_edges, get_exec_counts, branch_prob, init_branch_prob,
48 end_branch_prob): Adjust.
49 * coverage.c: New. Coverage routines from profile.c
50 (coverage_counter_ref, coverage_init, coverage_finish,
51 coverage_end_function, coverage_begin_output,
52 coverage_counter_ref, get_coverage_counts): Define.
53 * gcov-dump.c, gcov.c: #include gcov-io.c.
54 * libgcov.c: Likewise. Adjust.
55 * loop-init.c: Don't #include profile.h
56 * tracer.c, predict.c, sched-ebb.c: Adjust #includes.
57 * rtl.h: Add coverage prototypes.
58 * toplev.c (compile_file): Init coverage, not branch_prob.
59 Always call coverage_finish.
60 (rest_of_compilation): Call coverage_end_function.
61
62 2003-04-21 Matt Kraai <kraai@alumni.cmu.edu>
63
64 * config/rs6000/rs6000.md (*movsf_softfloat): Add "h" <- "0" case.
65
66 2003-04-21 Neil Booth <neil@daikokuya.co.uk>
67
68 * c-ppoutput.c (cb_include): Don't take a cpp_token.
69 * cppfiles.c: Don't undef strcmp.
70 (find_include_file): Don't take a cpp_token. Check for empty
71 file names.
72 (_cpp_execute_include, _cpp_compare_file_date): Don't take a cpp_token.
73 (cpp_push_include): Simplify.
74 * cpphash.h (_cpp_execute_include, _cpp_compare_file_date): Update.
75 * cpplib.c (glue_header_name): Return the file name, not a cpp_token.
76 (parse_include): Similary. Don't check for zero-length filenames.
77 (do_include_common, do_pragma_dependency): Update accordingly.
78 * cpplib.h (struct cpp_callbacks): Change prototype of include.
79
80 2003-04-21 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
81
82 * doc/rtl.texi (RTX_UNCHANGING_P): Point to true_dependence for
83 details of conflict handling.
84
85 * fold-const.c (extract_muldiv, case CONVERT_EXPR): Detect case
86 when conversion overflows.
87
88 * stor-layout.c (layout_decl): Don't set DECL_SIZE_UNIT if already set.
89
90 * expr.c (store_constructor): Set RTX_UNCHANGING_P if readonly_field_p
91 before clearing.
92
93 2003-04-21 Mark Mitchell <mark@codesourcery.com>
94
95 * config/i386/winnt.c (i386_pe_mark_dllimport): Make the new RTL
96 have the same form as the old RTL.
97
98 2003-04-21 Andreas Jaeger <aj@suse.de>
99
100 * cppcharset.c (_cpp_valid_ucn): Cast field precision to int.
101
102 2003-04-20 Chris Lattner <sabre@nondot.org>
103 Zack Weinberg <zack@codesourcery.com>
104
105 * c-common.h, c-semantics.c: Rename genrtl_decl_cleanup to
106 genrtl_cleanup_stmt. Correct comment at head of
107 genrtl_cleanup_stmt (no such thing as a DECL_CLEANUP).
108
109 * stmt.c (struct nesting): Kill n_function_calls.
110 (expand_start_bindings): Don't set
111 thisblock->data.block.n_function_calls.
112 (expand_end_bindings): Compare function_call_count against 0.
113 (expand_cleanups): Kill DONT_DO argument; all callers passed
114 NULL_TREE. All callers updated to match.
115
116 2003-04-20 Zack Weinberg <zack@codesourcery.com>
117
118 * varasm.c (struct deferred_constant, defer_addressed_constants_flag)
119 (defer_addressed_constants, output_deferred_addressed_constants): Kill.
120 (output_constant_def): Remove code predicated on
121 defer_addressed_constants_flag.
122
123 * output.h: Remove prototypes of deleted functions.
124 * c-typeck.c (constructor_subconstants_deferred): Kill.
125 (struct initializer_stack): Remove 'deferred' field.
126 (start_init): Remove all references to the above.
127 (finish_init): Likewise. Also remove never-executed call to
128 output_deferred_addressed_constants. Pull assignment to
129 defstr out of if expression.
130
131 2003-04-20 Neil Booth <neil@daikokuya.co.uk>
132
133 * cpphash.h (NOTE_ESC_NL, NOTE_ESC_SPACE_NL, NOTE_TRIGRAPH,
134 NOTE_NEWLINE): Remove.
135 * cpplex.c (_cpp_clean_line, _cpp_process_line_notes): Update
136 to handle new form of line note type.
137
138 2003-04-20 Zack Weinberg <zack@codesourcery.com>
139
140 * target.h (encode_section_info): Add new argument carrying
141 the RTL to be modified by the hook.
142
143 * varasm.c (make_decl_rtl, output_constant_def): Update calls
144 to encode_section_info.
145 (default_encode_section_info): Take and use RTL argument,
146 don't use TREE_CST_RTL or DECL_RTL.
147 * output.h: Update prototype of default_encode_section_info.
148 * config/darwin.h (ASM_DECLARE_OBJECT_NAME)
149 (ASM_DECLARE_FUNCTION_NAME, ASM_OUTPUT_ALIGNED_DECL_LOCAL):
150 Update calls to encode_section_info.
151
152 * config/darwin.c, config/arm/arm.c, config/arm/pe.c
153 * config/h8300/h8300.c, config/i386/winnt.c, config/m32r/m32r.c
154 * config/m68hc11/m68hc11.c, config/m88k/m88k.c, config/mcore/mcore.c
155 * config/mips/mips.c, config/mmix/mmix.c, config/pa/pa.c
156 * config/romp/romp.c, config/rs6000/rs6000.c, config/s390/s390.c
157 * config/v850/v850.c (TARGET_ENCODE_SECTION_INFO definitions):
158 Take and use RTL argument, don't use TREE_CST_RTL or DECL_RTL,
159 except for PE dllimport/dllexport. Update calls to
160 default_encode_section_info.
161
162 * config/darwin-protos.h, config/arm/arm-protos.h, config/i386-protos.h:
163 Update prototypes.
164
165 * doc/tm.texi (TARGET_ENCODE_SECTION_INFO): Update.
166
167 2003-04-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
168
169 PR/8705
170 * pa.md (movccfp): New expander.
171 (setccfp0, setccfp1): Rename to movccfp0 and movccfp1, respectively.
172 Reverse fcmp conditions.
173
174 2003-04-20 Marek Michalkiewicz <marekm@amelek.gda.pl>
175
176 * config/avr/avr.md (*cmpqi_sign_extend): Handle negative values
177 of operand 1 correctly.
178
179 2003-04-20 Nathan Sidwell <nathan@codesourcery.com>
180
181 * cpplex.c (_cpp_lex_direct): Set BOL for CPP_EOF tokens.
182 * gcov.c (output_lines): Don't be so fussy about going past EOF.
183
184 2003-04-20 Neil Booth <neil@daikokuya.co.uk>
185
186 * Makefile.in (LIBCPP_OBJS): Add cppcharset.o.
187 (cppcharset.o): New target.
188 * c-lex.c (is_extended_char): Move to cppcharset.c.
189 (utf8_extend_token): Delete.
190 * cppcharset.c: New file.
191 * cpphash.h (_cpp_valid_ucn): New.
192 * cpplex.c (lex_identifier): Update prototype.
193 (continues_identifier_p): Rename forms_identifier_p. Handle UCN
194 escapes.
195 (maybe_read_ucs): Rename maybe_read_ucn. Update to use code
196 in cppcharset.c.
197 (lex_number, lex_identifier, cpp_parse_escape): Update.
198 (_cpp_lex_direct): Update to handle UCNs.
199 (cpp_avoid_paste): Don't paste to form a UCN.
200
201 2003-04-19 Roger Sayle <roger@eyesopen.com>
202
203 * builtins.c (expand_builtin): Don't expand a pure or const
204 built-in function if the result will be ignored and none of
205 its arguments are volatile.
206
207 2003-04-19 Kean Johnston <jkj@sco.com>
208
209 * unwind-dw2.c (_Unwind_GetCFA): cast return to avoid warning
210 * config.gcc: make SCO use dbxelf.h and elfos.h; only use one
211 target fragment now: t-sco5; dont compile crti.o.
212 * config/i386/sco5.h: major overhaul to remove all COFF remnants
213 and to use elfos.h for most definitions.
214 (BSS_SECTION_ASM_OP): set correct segment attributes.
215 (PREFERED_DEBUGGING_TYPE): set to DWARF-2.
216 (DWARF2_UNWIND_INFO): Always set to 1.
217 (MD_STARTFILE_PREFIX): Make /usr/gnu/lib the default.
218 (MD_STARTFILE_PREFIX_1): Define.
219 (MD_EXEC_PREFIX): Adjust to /usr/gnu/bin if using GAS.
220 (DEFAULT_LINKER): Define if not specified to configure.
221 (CTORS_SECTION_ASM_OP): Remove COFF crud.
222 (DTORS_SECTION_ASM_OP): Remove COFF crud.
223 (WINT_TYPE): Define.
224 (SDB_DEBUGGING_INFO): Remove.
225 (EXTRA_SECTIONS): Likewise.
226 (EXTRA_SECTION_FUNCTIONS): Likewise.
227 (CTOR_LIST_BEGIN): Likewise.
228 (CTOR_LIST_END): Likewise.
229 (INIT_SECTION_FUNCTION): Likewise.
230 (FINI_SECTION_FUNCTION): Likewise.
231 (SUBTARGET_FRAME_POINTER_REQUIRED): Likewise.
232 (LOCAL_LABEL_PREFIX): Likewise.
233 (NON_SAVING_SETJMP): Likewise.
234 (RETURN_POPS_ARGS): Likewise.
235 (ASM_OUTPUT_SKIP): Likewise.
236 (TARGET_ASM_NAMED_SECTION): Likewise.
237 (ASM_OUTPUT_INTERNAL_LABEL): Likewise.
238 (ASM_OUTPUT_EXTERNAL_LIBCALL): Likewise.
239 (ASM_OUTPUT_IDENT): Likewise.
240 (ASM_OUTPUT_CASE_LABEL): Likewise.
241 (ASM_OUTPUT_ASCII): Likewise.
242 (ASM_OUTPUT_LIMITED_STRING): Likewise.
243 (ASM_OUTPUT_ALIGNED_LOCAL): Likewise.
244 (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
245 (ASM_GENERATE_INTERNAL_LABEL): Likewise.
246 (ASM_FINISH_DECLARE_OBJECT): Likewise.
247 (ASM_DECLARE_OBJECT_NAME): Likewise.
248 (ASM_DECLARE_FUNCTION_SIZE): Likewise.
249 (ASM_DECLARE_FUNCTION_NAME): Likewise.
250 (ASM_DECLARE_RESULT): Likewise.
251 (ASM_WEAKEN_LABEL): Likewise.
252 (SUPPORTS_WEAK): Likewise.
253 (APPLY_RESULT_SIZE): Likewise.
254 (LPREFIX): Likewise.
255 (ALIGN_ASM_OP): Likewise.
256 (ASCII_DATA_ASM_OP): Likewise.
257 (IDENT_ASM_OP): Likewise.
258 (ASM_SHORT): Likewise.
259 (ASM_LONG): Likewise.
260 (TYPE_ASM_OP): Likewise.
261 (SIZE_ASM_OP): Likewise.
262 (STRING_ASM_OP): Likewise.
263 (SKIP_ASM_OP): Likewise.
264 (EH_FRAME_SECTION_ASM_OP): Likewise.
265 (READONLY_DATA_SECTION_ASM_OP): Likewise.
266 (INIT_SECTION_ASM_OP): Likewise.
267 (FINI_SECTION_ASM_OP): Likewise.
268 (TEXT_SECTION_ASM_OP): Likewise.
269 (DATA_SECTION_ASM_OP): Likewise.
270 (TYPE_OPERANT_FORMAT): Likewise.
271 (ASM_SPEC): Remove COFF code.
272 (STARTFILE_SPEC): Likewise. Always use crti.o; add -p and -pp support;
273 cause -pg to emit an error; use pcrt1elf.o with -pp
274 (ENDFILE_SPEC): Likewise.
275 (TARGET_OS_CPP_BUILTINS): Add _SCO_DS_LL.
276 (CPP_SPEC): Remove COFF crud; always look in /usr/gnu/include first.
277 (LINK_SPEC): Remove COFF crud; use -E for environment switch not -R;
278 add -z alt_resolve to support weak symbols the way GCC wants them.
279 (LIB_SPEC): Use the profiler libraries in -p or -pp mode.
280 (LIBGCC_SPEC): Dont use -lgcc in -G mode.
281 (ASM_PREFERED_EH_DATA_FORMAT): Remove.
282 * config/i386/t-sco5 (TARGET_LIBGCC2_CFLAGS): Remove.
283 (CRTSTUFF_T_CFLAGS_S): Define.
284 (MULTILIB_OPTIONS): Likewise.
285 (MULTILIB_DIRNAMES): Likewise.
286 (MULTILIB_MATCHES): Likewise.
287 (MULTILIB_EXTRA_OPTS): Likewise.
288 (LIBGCC): Likewise.
289 (INSTALL_LIBGCC): Likewise.
290 (crti.o): Remove.
291 * config/i386/t-sco5gas: Remove.
292 * doc/install.texi: Updated for new OpenServer instructions.
293 * testsuite/gcc.dg/nest.c: Allow failure on SCO (-pg not supported)
294
295 2003-04-19 Kean Johnston <jkj@sco.com>
296
297 * fixinc/check.tpl: Allow user to over-ride diff program.
298 * fixinc/inclhack.def: Removed extraneous #ifndef SVR5.
299 (sco_math): Added test for SCO math header files.
300 (sco_regset): Added check for conflicts with ieeefp.h.
301 (svr4_disable_opt): Removed extraneous #ifdef SVR4.
302 * fixinc/fixincl.x: Regenerated
303 * fixinc/tests/base/math.h: Added sco_math tests.
304 * fixinc/tests/base/string.h: New file.
305 * fixinc/tests/base/sys/regset.h: New file.
306
307 2003-04-19 Neil Booth <neil@daikokuya.co.uk>
308
309 * cpphash.h (struct cpp_buffer): Remove backup_to.
310 * cpplex.c (BACKUP, get_effective_char): Die.
311 (_cpp_skip_block_comment): Assume '*' is location on entry.
312 (continues_identifier_p): Respect -fno-dollars-in-identifiers.
313 (IF_NEXT_IS): Update.
314 (_cpp_lex_direct): Don't use backup_to; look ahead directly.
315
316 2003-04-19 Matt Kraai <kraai@alumni.cmu.edu>
317
318 * README.Portability: Move to a new section and obsolete K+R
319 portability issues.
320
321 Sat Apr 19 14:56:17 CEST 2003 Jan Hubicka <jh@suse.cz>
322
323 * rtlanal.c (subreg_offset_representable_p): Fix call of
324 subreg_lowpart.
325
326 2003-04-19 Neil Booth <neil@daikokuya.co.uk>
327
328 * cpphash.h (struct cpp_reader): New member warned_dollar.
329 * cpplex.c (continues_identifier_p): New function.
330 (parse_identifier, parse_number, parse_string): Rename lex_identifer,
331 lex_number and lex_string, and simplify.
332 (parse_slow, unescaped_terminator_p): Die.
333 (_cpp_lex_direct): Update.
334
335 2003-04-19 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
336
337 * calls.c (expand_call): Provide init for old_stack_pointer_delta.
338
339 2003-04-19 Nathan Sidwell <nathan@codesourcery.com>
340
341 * doc/invoke.texi (-fprofile-arcs): Mention -lgcov, locking and
342 fork behaviour.
343
344 2003-04-19 Neil Booth <neil@daikokuya.co.uk>
345
346 * cppexp.c (eval_token): Permit true and false even if pedantic.
347
348 2003-04-19 Neil Booth <neil@daikokuya.co.uk>
349
350 * cpplex.c (skip_whitespace): Rearrange to avoid stage1 ICE.
351
352 2003-04-19 Neil Booth <neil@daikokuya.co.uk>
353
354 * cppfiles.c (ENABLE_VALGRIND_CHECKING, VALGRIND_DISCARD,
355 MMAP_THRESHOLD, TEST_THRESHOLD, SHOULD_MMAP): Remove.
356 (struct include_file): Remove fefcnt, mapped members.
357 (open_file, stack_include_file, _cpp_pop_file_buffer): Disable caching.
358 (read_include_file): Don't use mmap, terminate buffers in '\r'.
359 (purge_cache): Don't use munmap.
360 * cpphash.h (CPP_BUF_COLUMN): Update.
361 (lexer_state): Remove lexing_comment.
362 (struct _cpp_line_note): New.
363 (struct cpp_buffer): New members cur_note, notes_used, notes_cap,
364 next_line and need_line. Remove col_adjust and saved_flags.
365 (_cpp_process_line_notes, _cpp_clean_line, _cpp_get_fresh_line,
366 _cpp_skip_block_comment, scan_out_logical_line): New.
367 (_cpp_init_mbchar): Remove.
368 * cppinit.c (init_library): Remove call to _cpp_init_mbchar.
369 (cpp_read_main_file): Set line to 1 earlier.
370 (post_options): -traditional-cpp doesn't want trigraphs.
371 * cpplex.c (MULTIBYTE_CHARS): Remove code predicated on this.
372 (add_line_note, _cpp_clean_line, _cpp_process_line_notes,
373 _cpp_get_fresh_line): New.
374 (handle_newline, skip_escaped_newlines, trigraph_p,
375 continue_after_nul, _cpp_init_mbchar): Remove.
376 (get_effective_char): Update.
377 (_cpp_skip_block_comment): Rename from skip_block_comment, simplify.
378 (skip_line_comment): Simplify.
379 (skip_whitespace, parse_identifier, parse_slow, parse_number,
380 parse_string): Update.
381 (cpp_lex_direct): Use clean lines and process line notes. Update.
382 (cpp_interpret_charconst): No MULTIBYTE_CHARS.
383 * cpplib.c (prepare_directive_trad): Call scan_out_logical_line
384 directly.
385 (_cpp_handle_directive): Don't set saved_flags.
386 (run_directive, destringize_and_run, cpp_define, cpp_define_builtin,
387 cpp_undef, handle_assertion, cpp_push_buffer): Update.
388 (_cpp_pop_buffer): Free notes.
389 * cppmacro.c (builtin_macro, paste_tokens): \n terminate buffer.
390 * cpppch.c (cpp_read_state): \n terminate buffer.
391 * cpptrad.c (skip_escaped_newlines, handle_newline): Remove.
392 (copy_comment): Use _cpp_skip_block_comment.
393 (skip_whitespace, lex_identifier, _cpp_read_logical_line_trad):
394 Simplify.
395 (_cpp_overlay_buffer, _cpp_remove_overlay, push_replacement_text,
396 save_replacement_text): Update.
397 (scan_out_logical_line): Update to use clean lines and process
398 line notes.
399 * fix-header.c (read_scan_file): Update.
400
401 2003-04-18 Douglas B Rupp <rupp@gnat.com>
402
403 * unwind-dw2-fde.c (__register_frame_info_bases): Check for
404 null begin parameter (as well as pointer to null).
405 (__deregister_frame_info_bases): Likewise.
406
407 2003-04-18 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
408
409 * function.c (purge_addressof_1): For ADDRESSOF, see if SUB is a
410 hard or virtual register and copy into pseudo if replacement fails.
411
412 * cfgcleanup.c (flow_find_cross_jump): Use INSN_P, not active_insn_p.
413
414 * expmed.c (mask_rtx): Avoid undefined shifts for BITSIZE of 0.
415
416 2003-04-18 Olivier Hainque <hainque@act-europe.fr>
417
418 * calls.c (expand_call): Move special case for constructor calls
419 to right place. Ensures constructor calls used to initialize
420 arguments get a clean outgoing argument block for themselves.
421 Move check for stack deallocation completeness until after last
422 deallocation. Add stack_pointer_delta to set of state
423 variables saved and restored along with current stack_level.
424
425 * integrate.c (expand_inline_function): Ensure non-const actuals
426 don't end up const in the caller's flow after conversion to possibly
427 const formal type.
428
429 2003-04-18 Vincent Celier <celier@gnat.com>
430
431 * dwarf2out.c (loc_descriptor_from_tree): Treat all *_MOD_EXPR
432 and *_DIV_EXPR as TRUNC_*_EXPR.
433
434 2003-04-18 Mark Mitchell <mark@codesourcery.com>
435
436 * cfgrtl.c (try_redirect_by_replacing_jump): Create a basic block
437 for orphaned jump tables.
438
439 2003-04-18 Kazu Hirata <kazu@cs.umass.edu>
440
441 * reload1.c: Revert my previous patch on 2002-04-17.
442
443 2003-04-18 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
444
445 * doc/contrib.texi (Contributors): Prefer "bug fix" over "bugfix".
446 Add Segher Boessenkool.
447
448 2003-04-18 Alexander Sotirov <sluncho@mirizma.org>
449
450 PR c/9177
451 * c-decl.c (c_expand_body): Don't garbage collect the function
452 body if we are going to dump it later.
453
454 2003-04-18 Richard Henderson <rth@redhat.com>
455
456 * config/alpha/alpha.c (SYMBOL_FLAG_NEAR, SYMBOL_FLAG_SAMEGP): Remove.
457 (alpha_end_function): Don't set them.
458 (decl_in_text_section): Remove.
459 (alpha_encode_section_info): Remove.
460 (samegp_function_operand): Use SYMBOL_REF LOCAL_P and EXTERNAL_P.
461 (direct_call_operand): Use SYMBOL_REF_DECL and compare actual
462 sections, rather than decl_in_text_section results.
463
464 2003-04-18 Roger Sayle <roger@eyesopen.com>
465
466 * rtlanal.c (reg_overlap_mentioned_p): Handle ZERO_EXTRACT
467 and SIGN_EXTRACT.
468
469 2003-04-18 Eric Botcazou <ebotcazou@libertysurf.fr>
470
471 PR optimization/7675
472 * c-typeck.c (build_external_ref): Set the DECL_NONLOCAL flag
473 on VAR_DECL, PARM_DECL and FUNCTION_DECL from within
474 nested functions if they refer to declarations from parent functions.
475 * stmt.c (expand_decl): Don't put automatic variables in registers
476 if the DECL_NONLOCAL flag is set.
477
478 2003-04-18 Hans-Peter Nilsson <hp@bitrange.com>
479
480 * gcse.c (compute_ld_motion_mems): For MEM destinations, only
481 consider those to be movable where the source matches
482 want_to_gcse_p.
483 (update_ld_motion_stores): In comment, refer to
484 compute_ld_motion_mems for validity of replacement.
485
486 Fri Apr 18 01:28:51 CEST 2003 Jan Hubicka <jh@suse.cz>
487
488 * gcov-dump.c (tag_summary): Remove max_sum
489 * gcov-io.h (gcov_summary, gcov_write_summary,
490 gcov_read_summary): Kill max_sum.
491 * libgcov.c (gcov_exit): Do one pass over the data. Make error
492 message more verbose.
493
494 * emit-rtl.c (subreg_hard_regno): Check that register is
495 representable.
496
497 * reload.c (reload_inner_reg_of_subreg): When register is not
498 representable, reload the whole thing.
499 (find_reloads): Likewsie.
500 * rtlanal.c (subreg_representable_p): New function.
501
502 * profile.c (compute_branch_probabilities): Cleanup sanity checking;
503 allow negative probabilities for edges from the call to exit.
504 (branch_prob): Do not add fake edges for functions that may return
505 twice.
506
507 2003-04-17 DJ Delorie <dj@redhat.com>
508
509 * toplev.c (target_options): Add value field.
510 (set_target_switch): Handle target options with values.
511 * doc/tm.texi: Document how fixed vs variable target
512 options work.
513 * config/alpha/alpha.h, config/arc/arc.h, config/avr/avr.h,
514 config/c4x/c4x.h, config/cris/aout.h, config/cris/cris.h,
515 config/d30v/d30v.h, config/dsp16xx/dsp16xx.h,
516 config/frv/frv.h, config/i386/i386.h, config/ia64/ia64.h,
517 config/m32r/m32r.h, config/m68hc11/m68hc11.h,
518 config/m68k/m68k.h, config/m88k/m88k.h, config/mcore/mcore.h,
519 config/mips/mips.h, config/mmix/mmix.h, config/pa/pa.h,
520 config/rs6000/rs6000.h, config/rs6000/sysv4.h,
521 config/s390/s390.h, config/sparc/sparc.h, config/v850/v850.h:
522 Add value initializer to target options.
523
524 2003-04-07 Loren James Rittle <ljrittle@acm.org>
525
526 * cpppch.c (cpp_valid_state): Unconditionally initialize nl.
527
528 2003-04-17 Kazu Hirata <kazu@cs.umass.edu>
529
530 * reload1.c (move2add_last_cc0): New.
531 (reload_cse_move2add): Detect implicit sets.
532 (move2add_note_store): Notice a store into cc0.
533
534 2003-04-17 Roger Sayle <roger@eyesopen.com>
535
536 PR c/10375
537 * c-decl.c (duplicate_decls): Preserve "const" and "noreturn"
538 function attributes.
539
540 2003-04-17 Janis Johnson <janis187@us.ibm.com>
541
542 * doc/sourcebuild.texi (Test Suites): Document support for testing
543 binary compatibility (moved from testsuite/README.compat).
544
545 2003-04-17 Richard Henderson <rth@redhat.com>
546
547 * config/ia64/ia64.c (ia64_in_small_data_p): Disallow strings.
548
549 2003-04-17 Simon Law <sfllaw@engmail.uwaterloo.ca>
550
551 * doc/include/gpl.texi: Fix double-spacing after "MA" to match
552 the one provided by the FSF.
553
554 2003-04-17 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
555
556 * doc/install.texi (Binaries): Update URL and list of platforms
557 provided by ftp.thewrittenword.com.
558
559 2003-04-17 Richard Henderson <rth@redhat.com>
560
561 * config/xtensa/xtensa.c (xtensa_encode_section_info): Remove.
562 (call_insn_operand): Use SYMBOL_REF_LOCAL_P.
563 * config/xtensa/xtensa.md (call, call_value): Likewise.
564
565 2003-04-17 Richard Henderson <rth@redhat.com>
566
567 * config/v850/v850.c (print_operand): Use SYMBOL_REF_[ZST]DA.
568 (print_operand_address): Likewise.
569 (ep_memory_operand): Likewise.
570 (special_symbolref_operand): Likewise.
571 (v850_encode_data_area): Use SYMBOL_REF_FLAGS.
572 (v850_encode_section_info): Call default_encode_section_info.
573 (v850_strip_name_encoding): Remove.
574 * config/v850/v850.h (EXTRA_CONSTRAINT): Use SYMBOL_REF_[ZST]DA.
575 (ASM_OUTPUT_LABELREF): Remove.
576 (ZDA_NAME_FLAG_CHAR, ZDA_NAME_P): Remove.
577 (SDA_NAME_FLAG_CHAR, SDA_NAME_P): Remove.
578 (TDA_NAME_FLAG_CHAR, TDA_NAME_P): Remove.
579 (ENCODED_NAME_P): Remove.
580 (SYMBOL_FLAG_ZDA, SYMBOL_REF_ZDA_P): New.
581 (SYMBOL_FLAG_SDA, SYMBOL_REF_SDA_P): New.
582 (SYMBOL_FLAG_TDA, SYMBOL_REF_TDA_P): New.
583
584 2003-04-17 Richard Henderson <rth@redhat.com>
585
586 * config/stormy16/stormy16.c (xstormy16_encode_section_info): Kill.
587 * config/stormy16/stormy16.h (ASM_OUTPUT_SYMBOL_REF): Use
588 SYMBOL_REF_FUNCTION_P.
589
590 2003-04-17 Richard Henderson <rth@redhat.com>
591
592 * config/sparc/sparc.c (sparc_encode_section_info): Remove.
593 (data_segment_operand): Use SYMBOL_REF_FUNCTION_P.
594 (text_segment_operand): Likewise.
595
596 2003-04-17 Richard Henderson <rth@redhat.com>
597
598 * config/sh/sh.c (gen_datalabel_ref): Don't add SH_DATALABEL_ENCODING.
599 (tls_symbolic_operand): Use SYMBOL_REF_TLS_MODEL.
600 (legitimize_pic_address): Use SYMBOL_REF_LOCAL_P.
601 (sh_encode_section_info): Remove.
602 (sh_strip_name_encoding): Remove.
603 * config/sh/sh.h (SH_DATALABEL_ENCODING): Remove.
604 (DATALABEL_SYMNAME_P, STRIP_DATALABEL_ENCODING): Remove.
605 (SH_TLS_ENCODING, TLS_SYMNAME_P, STRIP_TLS_ENCODING): Remove.
606 (ASM_OUTPUT_LABELREF): Remove.
607 (ASM_OUTPUT_SYMBOL_REF): Use SYMBOL_REF_FUNCTION_P.
608 * config/sh/sh.md (*): Use SYMBOL_REF_LOCAL_P.
609
610 2003-04-17 Richard Henderson <rth@redhat.com>
611
612 * config/s390/s390.c (SYMBOL_FLAG_ALIGN1): New.
613 (tls_model_chars): Remove.
614 (larl_operand): Use SYMBOL_REF_FLAGS.
615 (tls_symbolic_operand): Use SYMBOL_REF_TLS_MODEL.
616 (legitimize_pic_address): Use SYMBOL_REF_LOCAL_P.
617 (s390_output_mi_thunk): Likewise.
618 (s390_emit_prologue): Set SYMBOL_FLAG_LOCAL as needed.
619 (s390_function_profiler): Likewise.
620 (s390_encode_section_info): Use default_encode_section_info
621 and SYMBOL_FLAG_ALIGN1.
622 (s390_strip_name_encoding): Remove.
623 * config/s390/s390.h (ASM_OUTPUT_LABELREF): Remove.
624 * config/s390/s390.md (call, call_value): Use SYMBOL_REF_LOCAL_P.
625 (builtin_setjmp_receiver): Set SYMBOL_FLAG_LOCAL as needed.
626
627 2003-04-17 Richard Henderson <rth@redhat.com>
628
629 * config/ns32k/ns32k.c (ns32k_encode_section_info): Remove.
630 (global_symbolic_reference_mentioned_p): Use SYMBOL_REF_LOCAL_P.
631 (print_operand_address): Likewise.
632
633 * config/ns32k/ns32k.h (CANNOT_CHANGE_MODE_CLASS): Add CLASS argument.
634 * config/ns32k/ns32k.c (expand_block_move): Don't check
635 flag_unroll_loops.
636
637 2003-04-17 Richard Henderson <rth@redhat.com>
638
639 * config/mcore/mcore.c (mcore_encode_section_info): Don't set
640 SYMBOL_REF_FLAG.
641
642 2003-04-17 Richard Henderson <rth@redhat.com>
643
644 * rtl.h (SYMBOL_FLAG_MACH_DEP_SHIFT): New.
645
646 * config/m32r/m32r.c (SYMBOL_FLAG_MODEL_SHIFT): New.
647 (SYMBOL_REF_MODEL): New.
648 (LIT_NAME_P): Move from m32r.h.
649 (m32r_select_section): Remove.
650 (m32r_encode_section_info): Use SYMBOL_REF_FLAGS.
651 (m32r_strip_name_encoding): Remove.
652 (m32r_in_small_data_p): New.
653 (small_data_operand): Use SYMBOL_REF_SMALL_P.
654 (addr24_operand): Use SYMBOL_REF_MODEL.
655 (call26_operand): Likewise.
656 (addr32_operand): Tidy.
657 (m32r_print_operand): Use HOST_WIDE_INT_PRINT_HEX.
658 * config/m32r/m32r.h (RODATA_SECTION_ASM_OP): Remove.
659 (SDATA_SECTION_ASM_OP, SBSS_SECTION_ASM_OP): Remove.
660 (READONLY_DATA_SECTION_ASM_OP): Remove.
661 (EXTRA_SECTIONS, EXTRA_SECTION_FUNCTIONS): Remove.
662 (SDATA_SECTION_FUNCTION, SBSS_SECTION_FUNCTION): Remove.
663 (TARGET_ASM_SELECT_SECTION): Remove.
664 (SDATA_FLAG_CHAR, MEDIUM_FLAG_CHAR, LARGE_FLAG_CHAR): Remove.
665 (SDATA_NAME_P, SMALL_NAME_P, MEDIUM_NAME_P): Remove.
666 (LARGE_NAME_P, ENCODED_NAME_P): Remove.
667 (ASM_OUTPUT_LABELREF): Remove.
668
669 2003-04-17 Richard Henderson <rth@redhat.com>
670
671 * config/ip2k/ip2k.c (is_regfile_address): Use SYMBOL_REF_FUNCTION_P.
672 (encode_section_info): Remove.
673 * config/ip2k/ip2k-protos.h: Update.
674
675 2003-04-17 Richard Henderson <rth@redhat.com>
676
677 * varasm.c (default_encode_section_info): Don't set
678 SYMBOL_FLAG_EXTERNAL if not TREE_PUBLIC.
679 * config/i370/i370.c (i370_encode_section_info): Remove.
680 * config/i370/i370.h (CONSTANT_ADDRESS_P): Use SYMBOL_REF_EXTERNAL_P.
681 (PRINT_OPERAND, PRINT_OPERAND_ADDRESS): Likewise.
682 * config/i370/i370.md (movsi): Likewise.
683
684 * config/i370/t-i370: Add missing backslash.
685
686 2003-04-17 Eric Botcazou <ebotcazou@libertysurf.fr>
687
688 * doc/invoke.texi (inline-limit): Fix pasto.
689
690 2003-04-17 Richard Henderson <rth@redhat.com>
691
692 * config/h8300/h8300.c (SYMBOL_FLAG_FUNCVEC_FUNCTION): New.
693 (small_call_insn_operand): Use it.
694 (SYMBOL_FLAG_EIGHTBIT_DATA): New.
695 (h8300_eightbit_constant_address_p): Use it.
696 (SYMBOL_FLAG_TINY_DATA): New.
697 (h8300_tiny_constant_address_p): Use it.
698 (h8300_encode_label, h8300_strip_name_encoding): Remove.
699 (h8300_encode_section_info): Set SYMBOL_REF_FLAGS.
700 * config/h8300/h8300.h (TINY_DATA_NAME_P): Remove.
701 (ASM_OUTPUT_LABELREF): Remove.
702
703 2003-04-16 Richard Henderson <rth@redhat.com>
704
705 * config/frv/frv.c (symbol_ref_small_data_p): Remove. Replace
706 all users with SYMBOL_REF_SMALL_P.
707 (const_small_data_p): Use SYMBOL_REF_SMALL_P.
708 (frv_encode_section_info): Remove.
709 (frv_strip_name_encoding): Remove.
710 (frv_in_small_data_p): Merge tests from encode_section_info.
711 (frv_print_operand): Use '@' not SDATA_FLAG_CHAR.
712 * config/frv/frv.h (SDATA_FLAG_CHAR): Remove.
713 (SDATA_NAME_P): Remove.
714 (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Use SIZE not SDATA_NAME_P.
715 (ASM_OUTPUT_LABELREF): Remove.
716 (PRINT_OPERAND_PUNCT_VALID_P): Use '@' not SDATA_FLAG_CHAR.
717
718 * config/frv/frv.c (frv_asm_out_constructor): New.
719 (frv_asm_out_destructor): New.
720 * config/frv/frv.h (CTORS_SECTION_ASM_OP): New.
721 (DTORS_SECTION_ASM_OP): New.
722 (ASM_OUTPUT_CONSTRUCTOR): Remove.
723 (ASM_OUTPUT_DESTRUCTOR): Remove.
724
725 2003-04-16 Richard Henderson <rth@redhat.com>
726
727 * config/cris/cris.c (cris_gotless_symbol, cris_got_symbol): Use
728 SYMBOL_REF_LOCAL_P; abort if not pic.
729 (cris_encode_section_info): Remove.
730
731 2003-04-16 Richard Henderson <rth@redhat.com>
732
733 * config/c4x/c4x.c (c4x_encode_section_info): Remove.
734 (c4x_T_constraint): Use SYMBOL_REF_FUNCTION_P.
735
736 * config/c4x/c4x.h (TARGET_CPU_CPP_BUILTINS): Declare
737 flag_inline_trees.
738
739 2003-04-16 Richard Henderson <rth@redhat.com>
740
741 * config/avr/avr.c (avr_encode_section_info): Remove.
742 (avr_insert_attributes): New.
743 (print_operand_address): Use SYMBOL_REF_FUNCTION_P.
744 (avr_assemble_integer): Likewise.
745
746 2003-04-16 Richard Henderson <rth@redhat.com>
747
748 * arc.c (arc_encode_section_info): Remove.
749 (arc_assemble_integer): Use SYMBOL_REF_FUNCTION_P.
750 (arc_print_operand, arc_print_operand_address): Likewise.
751 * arc.h (EXTRA_CONSTRAINT): Likewise.
752
753 2003-04-16 Roger Sayle <roger@eyesopen.com>
754
755 * c-semantics.c (find_reachable_label): New function to find a
756 potentially reachable label in an expression.
757 (expand_unreachable_if_stmt): Similar to expand_if_stmt but
758 assumes the start of the IF_STMT is unreachable (dead) code.
759 (expand_unreachable_stmt): Similar to expand_stmt but assumes
760 the start of the statement list is unreachable (dead) code.
761 (genrtl_if_stmt): If the controlling expression of the IF
762 is constant, use expand_unreachable_stmt for the THEN or ELSE
763 clause as appropriate.
764 (genrtl_switch_stmt): Use expand_unreachable_stmt to expand
765 the body of a SWITCH statement.
766 (expand_stmt): The code immediately following a "return",
767 "break", "continue" or "goto" is unreachable.
768 * Makefile.in (c-semantics.o): Depend upon tree-inline.h.
769
770 2003-04-16 Richard Henderson <rth@redhat.com>
771
772 * rtl.h (MEM_ALIAS_SET): Update documentation.
773 * doc/rtl.texi (Special Accessors): New node.
774 (SYMBOL_REF_FLAG): Note relationship with SYMBOL_REF_FLAGS.
775
776 2003-04-16 Alexandre Oliva <aoliva@redhat.com>
777
778 * reload1.c (reload_cse_noop_set_p): Return false if mode of
779 SET_DEST is not the same as that returned by...
780 * cselib.h (cselib_reg_set_mode): ... new function.
781 * cselib.c (cselib_reg_set_mode): Define it.
782 (REG_VALUES): Document semantics of first element as set mode.
783 (cselib_subst_to_values): Skip first element if ELT is NULL.
784 (cselib_lookup): Likewise. Insert past the first element.
785 (cselib_invalidate_regno): NULLify first element.
786 (cselib_record_set): Set first element.
787
788 2003-04-16 Olivier Hainque <hainque@act-europe.fr>
789
790 * tree.c (skip_simple_arithmetics_at, saved_expr_p): New functions.
791 (save_expr): Replace loop by call to skip_simple_arithmetics_at.
792 * tree.h: Add prototypes for the two new functions.
793 * fold-const.c (fold_binary_op_with_conditional_arg): Replace test
794 updates introduced in the previous revision by call to saved_expr_p.
795 * stor-layout.c (put_pending_size): Use skip_simple_arithmetics_at.
796
797 * expr.c (store_field): Force usage of bitfield instructions when
798 the field position requires it, whatever SLOW_UNALIGNED_ACCESS.
799 (expand_expr, case BIT_FIELD_REF): likewise.
800
801 2003-04-16 Mark Mitchell <mark@codesourcery.com>
802
803 PR middle-end/8866
804 * cfgtrl.c (try_redirect_by_replacing_jump): Do not delete
805 jumptables.
806
807 2003-04-16 Richard Henderson <rth@redhat.com>
808
809 * config/ia64/ia64.c (sdata_symbolic_operand): Use
810 SYMBOL_REF_SMALL_P and SYMBOL_REF_LOCAL_P.
811 (tls_symbolic_operand): Use SYMBOL_REF_TLS_MODEL.
812 (function_operand): Use SYMBOL_REF_FUNCTION_P.
813 (ia64_expand_load_address): Likewise.
814 (ia64_assemble_integer): Likewise.
815 (ia64_encode_section_info): Remove.
816 (ia64_strip_name_encoding): Remove.
817 * config/ia64/ia64.h (ENCODE_SECTION_INFO_CHAR): Remove.
818 * config/ia64/sysv4.h (ASM_OUTPUT_LABELREF): Don't strip it.
819
820 2003-04-16 Richard Henderson <rth@redhat.com>
821
822 * config/alpha/alpha.c (SYMBOL_FLAG_NEAR, SYMBOL_FLAG_SAMEGP): New.
823 (samegp_function_operand): Use SYMBOL_FLAG_SAMEGP.
824 (direct_call_operand): Use SYMBOL_FLAG_NEAR.
825 (local_symbolic_operand): Use SYMBOL_REF_LOCAL_P.
826 (small_symbolic_operand): Use SYMBOL_REF_SMALL_P.
827 (global_symbolic_operand): Similarly.
828 (tls_symbolic_operand_1): Use SYMBOL_REF_TLS_MODEL.
829 (tls_symbolic_operand_type): Likewise.
830 (alpha_encode_section_info): Use default_encode_section_info.
831 (alpha_strip_name_encoding): Remove.
832 (get_tls_get_addr): Split out from ...
833 (alpha_legitimize_address): ... here.
834 (alpha_emit_xfloating_libcall): Use init_one_libfunc.
835 (get_some_local_dynamic_name_1): Use SYMBOL_REF_TLS_MODEL.
836 (alpha_initialize_trampoline): Use init_one_libfunc.
837 (alpha_setup_incoming_varargs): Mark unused parameters.
838 (alpha_initial_elimination_offset): Likewise.
839 (alpha_end_function): Use SYMBOL_FLAG_NEAR, SYMBOL_FLAG_SAMEGP.
840 (unicosmk_unique_section): Use default_strip_name_encoding.
841 (unicosmk_ssib_name, unicosmk_output_externs): Likewise.
842
843 2003-04-16 Aldy Hernandez <aldyh@redhat.com>
844
845 * config.gcc: Add t-spe for eabispe.
846
847 * config/rs6000/t-spe: New.
848
849 2003-04-16 J"orn Rennecke <joern.rennecke@superh.com>
850
851 Re-apply this patch:
852
853 2002-05-16 Dale Johannesen <dalej@apple.com>
854 * combine.c (cant_combine_insn_p): Reenable combinations
855 involving hard regs unless CLASS_LIKELY_SPILLED_P.
856
857 2003-04-16 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
858
859 PR/10271
860 * pa-protos.h (function_arg): Remove last argument.
861 * pa.c (function_arg): Likewise. Use CUMULATIVE_ARGS struct instead.
862 * pa.h (struct hppa_args): Add member incoming.
863 (INIT_CUMULATIVE_ARGS, INIT_CUMULATIVE_INCOMING_ARGS): Initialize
864 member incoming.
865 (FUNCTION_ARG): Revise call to function_arg.
866 (FUNCTION_INCOMING_ARG): Delete.
867
868 2003-04-15 Zack Weinberg <zack@codesourcery.com>
869
870 * configure.in: Unify the code which creates symlinks to a
871 just-built as, ld, objdump, and nm with the code that detects
872 their presence for purposes of feature tests.
873 * configure: Regenerate.
874
875 2003-04-15 Zack Weinberg <zack@codesourcery.com>
876
877 * varasm.c (output_constant_def): Do not consult
878 CONSTANT_AFTER_FUNCTION_P. Remove all code predicated on it.
879 (after_function_constants, output_after_function_constants): Delete.
880 * doc/tm.texi: Delete documentation of CONSTANT_AFTER_FUNCTION_P.
881 * config/mips/mips-protos.h, config/mips/mips.c
882 (mips16_constant_after_function_p): Delete.
883 * config/mips/mips.h: Delete #if-0-ed definition of
884 CONSTANT_AFTER_FUNCTION_P.
885 * config/d30v/d30v.h, config/stormy16/stormy16.h: Remove
886 mention of CONSTANT_AFTER_FUNCTION_P in comment.
887
888 2003-04-15 Geoffrey Keating <geoffk@apple.com>
889
890 * tree.c (next_decl_uid): Mark with GTY.
891 (next_type_uid): Likewise.
892
893 2003-04-15 J"orn Rennecke <joern.rennecke@superh.com>
894
895 PR target/9594:
896 * sh.c (barrier_align): Also recognize stuff_delay_slot as
897 an indicator that a barrier was created by branch splitting.
898
899 2003-04-15 Mark Mitchell <mark@codesourcery.com>
900
901 * c-decl.c (implicitly_declare): Copy declarations that are going
902 to be placed in a local scope.
903
904 2003-04-15 James A. Morrison <ja2morri@uwaterloo.ca>
905
906 * invoke.texi (Spec Files): Wrap if-exists-else example.
907 (MCore): Remove duplicate @itemx entries and @opindex entries.
908
909 2003-04-15 Ulrich Weigand <uweigand@de.ibm.com>
910
911 * unwind.inc (_Unwind_Backtrace): New function.
912 * unwind.h (_Unwind_Backtrace): Declare it.
913 * libgcc-std.ver (_Unwind_Backtrace): Export it.
914
915 2003-04-14 Jason Merrill <jason@redhat.com>
916
917 PR middle-end/10336, c++/10401
918 * jump.c (never_reached_warning): Also stop looking if we reach the
919 beginning of the function.
920
921 2003-04-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
922
923 PR target/10338
924 PR bootstrap/10198
925 PR bootstrap/10140
926 * fixinc/gnu-regex.c (regerror): Use mempcpy not __mempcpy.
927
928 2003-04-15 J"orn Rennecke <joern.rennecke@superh.com>
929
930 * i386.md (abssf2_if+1): Make condition agree with abssf2_1 .
931
932 2003-04-15 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
933
934 * optabs.c (expand_binop): In multi-word add cases, ensure
935 XTARGET is copied to TARGET if they are different.
936
937 2003-04-15 Olivier Hainque <hainque@act-europe.fr>
938
939 * except.c (resolve_fixup_regions): Avoid dereferencing null pointer
940 to region, possible after integration of function with unreachable
941 regions that were optimized away.
942
943 2003-04-15 Jakub Jelinek <jakub@redhat.com>
944
945 * config/rs6000/rs6000.h (EPILOGUE_USES): Use register 2,
946 instead of TOC_REGISTER in epilogue in
947 current_function_calls_eh_return functions.
948
949 2003-04-14 Mark Mitchell <mark@codesourcery.com>
950
951 * doc/extend.texi (Empty Structures): Correct description of G++'s
952 handling of these structures.
953
954 * c-decl.c (grokdeclarator): Reject extern redeclarations of
955 static variables.
956
957 2003-04-14 Janis Johnson <janis287@us.ibm.com>
958
959 * config/rs6000/rs6000.md (define_constants): Define constants for
960 all UNSPEC usage, including new values for TLS support.
961 (aux_truncdfsf2, fctiwz, movsi_got, movsi_got_internal,
962 load_toc_aix_si, load_toc_aix_di, load_toc_v4_pic_si,
963 load_toc_v4_PIC_1, load_toc_v4_PIC_1b, load_macho_picbase,
964 macho_correct_pic, blockage, move_from_CR_ov_bit, movesi_from_cr,
965 stack_tie, movsi_to_cr_one, movsi_to_cr, mtcrfsi, eh_set_lr_si,
966 eh_set_lr_di): Use them.
967 * rs6000.c: (mtcrf_operation, uses_TOC, rs6000_emit_prologue,
968 rs6000_emit_epilogue) Use them.
969
970 * rtl.h (SYMBOL_REF_TLS_MODEL): Fix mask value.
971
972 2003-04-14 Neil Booth <neil@daikokuya.co.uk>
973
974 * Makefile.in (c-opts.o): Use custom action.
975
976 2003-04-14 Douglas B Rupp <rupp@gnat.com>
977
978 * ifcvt.c (noce_process_if_block): Fail on BLKmode move.
979
980 2003-04-14 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
981
982 * stor-layout.c (layout_type, case ARRAY_TYPE): Add missing code to
983 handle "superflat arrays" in Ada.
984
985 * integrate.c (expand_inline_function): Don't inline if would
986 lose /u on a BLKmode TARGET.
987
988 2003-04-14 Joel Brobecker <brobecker@gnat.com>
989
990 * dbxout.c (print_int_cst_bounds_in_octal_p): New function,
991 extracted from dbxout_type.
992 (dbxout_range_type): print large bounds in octal format.
993 (dbxout_type): Replace extracted code by call to
994 print_int_cst_bounds_in_octal_p.
995
996 * dwarf2out.c (gen_compile_unit_die): Emit DW_LANG_Ada95 instead
997 of DW_LANG_Ada83 for Ada units.
998
999 2003-04-14 Olivier Hainque <hainque@act-europe.fr>
1000
1001 * explow.c (round_push): Use HOST_WIDE_INT instead of int for the
1002 temporary used to round CONST_INT sizes.
1003
1004 * tree.c (int_fits_type_p): Extract generic checks from the case
1005 of constant type bounds. Refine the checks against constant type
1006 bounds to allow for possible decisions against each of these bounds
1007 without requiring both bounds to be constant.
1008 (tree_int_cst_msb): Put back.
1009 * tree.h (tree_int_cst_msb): Likewise.
1010
1011 * global.c (global_conflicts): Prevent allocation of call clobbered
1012 hard regs to pseudos live across abnormal edges, as later passes are
1013 not ready to handle them.
1014
1015 * fold-const.c (fold): Reorder tests for conditional expressions.
1016
1017 * expr.c (highest_pow2_factor): Return unsigned.
1018 * expr.h (offset_address): Likewise.
1019 * emit-rtl.c (offset_address): POW2 argument now unsigned.
1020
1021 2003-04-14 Roger Sayle <roger@eyesopen.com>
1022
1023 * builtins.c (expand_builtin_strlen): Evaluate the lengths of
1024 string literals at compile-time.
1025
1026 2003-04-14 Roger Sayle <roger@eyesopen.com>
1027
1028 * fold-const.c (fold): Transform (c1 - x) cmp c2, where cmp is a
1029 comparison operation and c1/c2 are floating point constants into
1030 x swap(cmp) (c1 - c2).
1031
1032 2003-04-14 Vladimir Makarov <vmakarov@redhat.com>
1033
1034 * genautomata.c (output_translate_vect): Fix a typo in loop
1035 condition.
1036
1037 2003-04-14 Hans-Peter Nilsson <hp@axis.com>
1038
1039 PR target/10377
1040 * config/cris/cris.md ("*mov_sideqi", "*mov_sidehi")
1041 ("*mov_sidesi", "*mov_sideqi_mem", "*mov_sidehi_mem")
1042 ("*mov_sidesi_mem", "*clear_sidesi", "*clear_sidehi")
1043 ("*clear_sideqi", "*ext_sideqihi", "*ext_sideqisi")
1044 ("*ext_sidehisi", "*op_sideqi", "*op_sidehi", "*op_sidesi")
1045 ("*op_swap_sideqi", "*op_swap_sidehi", "*op_swap_sidesi")
1046 ("*extopqihi_side", "*extopqisi_side", "*extophisi_side")
1047 ("*extopqihi_swap_side", "*extopqisi_swap_side")
1048 ("*extophisi_swap_side", 8th, 9th, 10th, 11th, 14th peepholes):
1049 When next to constraint R, replace constraint i with n.
1050
1051 Mon Apr 14 16:18:37 CEST 2003 Jan Hubicka <jh@suse.cz>
1052
1053 PR opt/10024
1054 * cfgrtl.c (force_nonfallthru_and_redirect): Use unchecked_make_edge.
1055
1056 2003-04-14 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
1057
1058 * doc/contrib.texi (Contributors): Correct my entry.
1059
1060 2003-04-13 Roger Sayle <roger@eyesopen.com>
1061
1062 * tree.h (DECL_BUILT_IN_NONANSI): Remove.
1063 * c-common.c (builtin_function_2): Don't set DECL_BUILT_IN_NONANSI.
1064 * c-decl.c (duplicate_decls): Use invariant DECL_BUILT_IN_NONANSI
1065 implies DECL_BUILT_IN to simplify logic.
1066 * print-tree.c (print_node): Don't dump DECL_BUILT_IN_NONANSI.
1067
1068 2003-04-13 Roger Sayle <roger@eyesopen.com>
1069
1070 * builtin-types.def (BT_FN_STRING_CONST_STRING): New builtin type.
1071 (BT_FN_PTR_SIZE_SIZE): Likewise.
1072 * builtins.def (BUILT_IN_MALLOC, BUILT_IN_CALLOC, BUILT_IN_STRDUP):
1073 New built-in functions for malloc, calloc and strdup respectively.
1074 * calls.c (special_function_p): No need to handle malloc-like
1075 functions any longer. ECF_MALLOC is set via built-in attributes.
1076
1077 * c-decl.c (duplicate_decls): Preserve pure and malloc attributes.
1078
1079 * doc/extend.texi: Document these new built-in functions.
1080
1081 2003-04-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1082
1083 * builtins.c (expand_builtin_memcpy): Add `endp' argument, use it.
1084 (expand_builtin_stpcpy): New.
1085 (expand_builtin): Add BUILT_IN_MEMPCPY & BUILT_IN_STPCPY.
1086 * builtins.def: Add mempcpy & stpcpy support.
1087 * doc/extend.texi (mempcpy, stpcpy): Document new builtins.
1088
1089 2003-04-13 Nick Clifton <nickc@redhat.com>
1090
1091 * config/rs6000/rs6000.c: Replace occurrences of "GNU CC" with
1092 "GCC".
1093 * config/rs6000/40x.md, config/rs6000/603.md,
1094 config/rs6000/6xx.md, config/rs6000/7450.md, config/rs6000/7xx.md,
1095 config/rs6000/8540.md, config/rs6000/aix.h, config/rs6000/aix31.h,
1096 config/rs6000/aix3newas.h, config/rs6000/aix41.h,
1097 config/rs6000/aix43.h, config/rs6000/aix51.h,
1098 config/rs6000/aix52.h, config/rs6000/altivec-defs.h,
1099 config/rs6000/altivec.h, config/rs6000/altivec.md,
1100 config/rs6000/beos.h, config/rs6000/darwin.h,
1101 config/rs6000/eabi.h, config/rs6000/eabialtivec.h,
1102 config/rs6000/eabisim.h, config/rs6000/eabispe.h,
1103 config/rs6000/freebsd.h, config/rs6000/gnu.h,
1104 config/rs6000/host-darwin.c, config/rs6000/linux.h,
1105 config/rs6000/linux64.h, config/rs6000/linuxaltivec.h,
1106 config/rs6000/lynx.h, config/rs6000/mach.h, config/rs6000/mpc.md,
1107 config/rs6000/netbsd.h, config/rs6000/power4.md,
1108 config/rs6000/rios1.md, config/rs6000/rios2.md,
1109 config/rs6000/rs6000-c.c, config/rs6000/rs6000-modes.def,
1110 config/rs6000/rs6000-protos.h, config/rs6000/rs6000.c,
1111 config/rs6000/rs6000.h, config/rs6000/rs6000.md,
1112 config/rs6000/rs64.md, config/rs6000/rtems.h, config/rs6000/spe.h,
1113 config/rs6000/spe.md, config/rs6000/sysv4.h,
1114 config/rs6000/sysv4le.h, config/rs6000/vxworks.h,
1115 config/rs6000/windiss.h, config/rs6000/xcoff.h: Likewise.
1116
1117 2003-04-13 Nick Clifton <nickc@redhat.com>
1118
1119 * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Delete
1120 support for -mcall-aix switch.
1121 * config/rs6000/eabiaix.h: Delete.
1122 * config/rs6000/rs6000.h (rs6000_abi): Remove ABI_AIX_NODESC.
1123 (RS6000_REG_SAVE, RS6000_SAVE_AREA, FP_ARGS_MAX_REG,
1124 RETURN_ADDRESS_OFFSET): Remove use of ABI_AIX_NODESC.
1125 * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Likewise.
1126 * config/rs6000/rs6000.c (print_operand, rs6000_stack_info,
1127 debug_stack_info, output_function_profiler,
1128 rs6000_trampoline_size, rs6000_initialise_trampoline): Likewise.
1129 * config/rs6000/rs6000.md (call, call_value, call_nonlocal_sysv,
1130 call_indirect_nonlocal_sysv, call_value_indirect_nonlocal_sysv,
1131 call_value_nonlocal_sysv, sibcall_value_nonlocal_sysv,
1132 sibcall_nonlocal_sysv, sibcall_value_local64): Likewise.
1133 * config/rs6000/t-ppcgas (MULTILIB_OPTIONS): Remove mcall-aix
1134 multilibs.
1135 (MULTILIB_DIRNAMES): Remove mcall-aix directories.
1136 (MULTILIB_EXCEPTIONS): Delete.
1137 (MULTILIB_MATCHES): Remove mcall-aix matches.
1138
1139 * doc/fragments.texi: Replace -mcall-aix example with an ARM
1140 one.
1141 * doc/install.texi: Delete powerpc-*-eabiaix target.
1142 * doc/invoke.texi: Remove documentation of mcall-aix switch.
1143 * doc/tm.texi: Remove mcall-aix from example CPP_SPEC.
1144 * config.gcc: Delete powerpc-*-eabiaix target.
1145
1146 2003-04-13 Kazu Hirata <kazu@cs.umass.edu>
1147
1148 * doc/invoke.texi: Fix typos.
1149 * doc/tm.texi: Likewise.
1150
1151 2003-04-12 Zack Weinberg <zack@codesourcery.com>
1152
1153 * c-typeck.c (digest_init, push_init_level): Use CONSTRUCTOR_ELTS.
1154
1155 2003-04-12 Zack Weinberg <zack@codesourcery.com>
1156
1157 * tree.c (build_constructor): New function.
1158 * tree.h: Prototype it.
1159
1160 * c-typeck.c (build_c_cast, pop_init_level)
1161 * profile.c (build_function_info_value, build_gcov_info_value)
1162 (create_profiler):
1163 Use build_constructor.
1164
1165 * builtins.c (expand_builtin_args_info): Remove #if 0 blocks.
1166
1167 * objc/objc-act.c (build_constructor):
1168 Rename objc_build_constructor. Use build_constructor.
1169 (build_objc_string_object, objc_add_static_instance)
1170 (init_def_list, init_objc_symtab, init_module_descriptor)
1171 (generate_static_references, build_selector_translation_table)
1172 (build_descriptor_table_initializer, generate_descriptor_table)
1173 (build_protocol_initializer, build_ivar_list_initializer)
1174 (generate_ivars_list, build_dispatch_table_initializer)
1175 (generate_dispatch_table, generate_protocol_list)
1176 (build_category_initializer, build_shared_structure_initializer):
1177 Update to match.
1178
1179 2003-04-12 Zack Weinberg <zack@codesourcery.com>
1180
1181 * intl.h: #define gcc_gettext_width to strlen when !ENABLE_NLS.
1182
1183 2003-04-12 Stephane Carrez <stcarrez@nerim.fr>
1184
1185 * config/m68hc11/m68hc11-protos.h
1186 (m68hc11_eq_compare_operator): Declare
1187 * config/m68hc11/m68hc11.h (PREDICATE_CODES): Register new predicate.
1188 * config/m68hc11/m68hc11.c (m68hc11_eq_compare_operator): New predicate
1189 (d_register_operand): Check the operand mode.
1190 (hard_addr_reg_operand): Likewise.
1191
1192 2003-04-12 Stephane Carrez <stcarrez@nerim.fr>
1193
1194 * config/m68hc11/m68hc11.md ("decrement_and_branch_until_zero"): New
1195 pattern for dbcc/ibcc generation for 68HC12.
1196 ("doloop_end"): New pattern.
1197 ("m68hc12_dbcc_dec_hi"): New pattern for dbeq/dbne.
1198 ("m68hc12_dbcc_inc_hi"): New pattern for ibeq/ibne.
1199 ("m68hc12_dbcc_dec_qi"): New pattern.
1200 ("m68hc12_dbcc_inc_qi"): New pattern.
1201 (split): Add split for the above when we can't use dbcc/ibcc due to
1202 reloading.
1203 (peephole2): Add peephole2 to generate the above when possible.
1204
1205 2003-04-12 Stephane Carrez <stcarrez@nerim.fr>
1206
1207 * config/m68hc11/m68hc11.md ("bitcmpqi" split): No need to test the
1208 mode of operand 0.
1209 (peephole2 optimize const load): Likewise for operand 2.
1210 ("*rotlhi3_with_carry"): Change pattern to a const 1 rotate which
1211 clobbers CC_REGNUM.
1212 ("*rotrhi3_with_carry"): Likewise.
1213 (ashift:DI 1 split): Update pattern to create the above rotate.
1214 (lshiftrt:DI 1 split): Likewise.
1215
1216 2003-04-12 Stephane Carrez <stcarrez@nerim.fr>
1217
1218 * config/m68hc11/m68hc11.md (SOFT_Z_REGNUM): New constant.
1219 ("tstqi_z_used" split): Use it.
1220 ("cmphi_z_used"): Likewise.
1221 ("bitcmpqi_z_used"): Likewise; also use SP_REGNUM constant.
1222 ("cmpqi_z_used"): Likewise.
1223
1224 2003-04-12 Mark Mitchell <mark@codesourcery.com>
1225
1226 PR c++/7910
1227 * config/i386/winnt.c (i386_pe_mark_dllimport): Fix thinko.
1228
1229 2003-04-12 Zack Weinberg <zack@codesourcery.com>
1230
1231 * configure.in: Check for wchar.h, mbstowcs, and wcswidth.
1232 * configure, config.in: Regenerate.
1233 * intl.c (gcc_gettext_width): New function.
1234 * intl.h: Prototype it.
1235
1236 2003-04-12 Stephane Carrez <stcarrez@nerim.fr>
1237
1238 * config/m68hc11/m68hc11.h (TARGET_SWITCHES): Fix -mnominmax option;
1239 recognize -mnorelax.
1240 (reg_class): Add Z_OR_S_REGS to represent soft registers with Z
1241 (REG_CLASS_NAMES): Add its name.
1242 (REG_CLASS_CONTENTS): Define its content.
1243
1244 2003-04-12 Stephane Carrez <stcarrez@nerim.fr>
1245
1246 * config/m68hc11/larith.asm (memcpy): Use ARG macro to access stack
1247 parameters so that offsets are valid for far definition.
1248 (__mulsi3): Likewise and use ret to return.
1249 (___adddi3, ___subdi3, ___notdi2, ): Don't use it to save the result.
1250
1251 2003-04-12 David Edelsohn <edelsohn@gnu.org>
1252
1253 * config/rs6000/rs6000.c (rs6000_hash_constant): Skip '0' fields.
1254
1255 2003-04-12 Alexandre Oliva <aoliva@redhat.com>
1256
1257 * mklibgcc.in (libgcc-stage-start): For every multilib directory
1258 containing a libgcc.a, move lib* to the corresponding stage dir.
1259
1260 * Makefile.in (stage1-start, stage2-start, stage3-start,
1261 stage4-start): Move $(SPECS) to specs in stage dir.
1262 (unstage1 unstage2 unstage3 unstage4): Move specs in stage dir
1263 back as $(SPECS).
1264
1265 * mklibgcc.in (libgcc-stage-start): Move into the stage directory
1266 object files from the non-libgcc/ multilib directories as well.
1267
1268 2003-04-11 Geoffrey Keating <geoffk@apple.com>
1269
1270 * profile.c (read_counts_file): Initialise 'checksum'.
1271
1272 * emit-rtl.c (gen_rtx): Really correct typo.
1273
1274 PR c++/9393
1275 * doc/invoke.texi (Debugging Options): Document -frandom-seed.
1276 * configure.in: Check for gettimeofday.
1277 * tree.c (flag_random_seed): Define.
1278 (default_flag_random_seed): New.
1279 (append_random_chars): Use flag_random_seed rather than trying
1280 to acquire randomness here.
1281 * tree.h (default_flag_random_seed): Declare.
1282 * toplev.c (display_help): Add -frandom-seed and -fstack-limit-*
1283 descriptions.
1284 (decode_f_option): Handle -frandom-seed.
1285 (print_switch_values): Call default_flag_random_seed.
1286 * flags.h (flag_random_seed): Declare.
1287 * configure: Regenerate.
1288 * config.in: Regenerate.
1289 * config/alpha/t-crtfm: Use -frandom-seed.
1290
1291 * doc/extend.texi (Empty Structures): New.
1292
1293 * c-pch.c: Include flags.h. Add comments to routines.
1294 (struct c_pch_validity): New.
1295 (get_ident): Update PCH file version number.
1296 (pch_init): Output current debugging type.
1297 (c_common_valid_pch): Check debugging type.
1298 * Makefile.in (c-pch.o): Update dependencies.
1299 * flags.h (debug_type_names): Declare.
1300 * toplev.c (debug_type_names): Move out of decode_g_option.
1301
1302 2003-04-11 Eric Christopher <echristo@redhat.com>
1303
1304 * emit-rtl.c (gen_rtx): Fix typos.
1305
1306 2003-04-11 Richard Henderson <rth@redhat.com>
1307
1308 * emit-rtl.c (gen_rtx): Zero '0' fields.
1309
1310 2003-04-11 Richard Henderson <rth@redhat.com>
1311
1312 PR c++/10202
1313 * expr.c (expand_expr): Use COMPLETE_OR_UNBOUND_ARRAY_TYPE_P
1314 not COMPLETE_TYPE_P for re-invoking layout_decl.
1315
1316 2003-04-11 Simon Law <sfllaw@engmail.uwaterloo.ca>
1317
1318 * doc/bugreport.texi: Fix paragraph breaking between sections
1319 in preparation for TeXinfo's paragraph indentation fixes.
1320 * doc/extend.texi: Ditto.
1321 * doc/invoke.texi: Ditto.
1322 * doc/objc.texi: Ditto.
1323 * doc/gcov.texi: Wrap 'gcov' in @command{}.
1324 * doc/invoke.texi (Darwin Options): Add a preamble.
1325
1326 2003-04-11 Richard Henderson <rth@redhat.com>
1327
1328 * config/i386/i386.c (tls_model_chars): Remove.
1329 (ix86_encode_section_info, ix86_strip_name_encoding): Remove.
1330 (local_symbolic_operand): Use SYMBOL_REF_LOCAL_P.
1331 (tls_symbolic_operand): Use SYMBOL_REF_TLS_MODEL.
1332 (tls_symbolic_operand_1): Likewise.
1333 (legitimate_pic_address_disp_p): Use SYMBOL_REF_LOCAL_P.
1334 * config/i386/i386.h (TARGET_ENCODE_SECTION_INFO): Remove.
1335 (TARGET_STRIP_NAME_ENCODING, ASM_OUTPUT_LABELREF): Remove.
1336 * config/i386/winnt.c (i386_pe_encode_section_info): Replace
1337 bits "copied from i386.h" with default_encode_section_info.
1338
1339 2003-04-11 Richard Henderson <rth@redhat.com>
1340
1341 * rtl.def (SYMBOL_REF): Add two 0 fields.
1342 * gengtype.c (adjust_field_rtx_def): Handle them.
1343 * print-rtl.c (print_rtx): Print them.
1344 * rtl.h (SYMBOL_REF_DECL, SYMBOL_REF_FLAGS): New.
1345 (SYMBOL_FLAG_FUNCTION, SYMBOL_REF_FUNCTION_P): New.
1346 (SYMBOL_FLAG_LOCAL, SYMBOL_REF_LOCAL_P): New.
1347 (SYMBOL_FLAG_SMALL, SYMBOL_REF_SMALL_P): New.
1348 (SYMBOL_FLAG_TLS_SHIFT, SYMBOL_REF_TLS_MODEL): New.
1349 (SYMBOL_FLAG_EXTERNAL, SYMBOL_REF_EXTERNAL_P): New.
1350 (SYMBOL_FLAG_MACH_DEP): New.
1351 * optabs.c (init_one_libfunc): Zap fake SYMBOL_REF_DECL.
1352 * varasm.c (make_decl_rtl): Set SYMBOL_REF_DECL.
1353 (assemble_static_space): Set SYMBOL_REF_FLAGS.
1354 (assemble_trampoline_template): Likewise.
1355 (output_constant_def, force_const_mem): Likewise.
1356 (default_encode_section_info): New.
1357 * output.h: Declare it.
1358 * target-def.h (TARGET_ENCODE_SECTION_INFO): Use it.
1359
1360 2003-04-11 Richard Henderson <rth@redhat.com>
1361
1362 * libfuncs.h (LTI_setbits, LTI_gcov_flush, LTI_gcov_init): New.
1363 (setbits_libfunc, gcov_flush_libfunc, gcov_init_libfunc): New.
1364 * optabs.c (init_optabs): Initialize them.
1365 (init_libfuncs): Use init_one_libfunc.
1366 * calls.c (expand_call): Use gcov_flush_libfunc.
1367 * expr.c (store_constructor): Use setbits_libfunc.
1368 * function.c (expand_main_function): Use init_one_libfunc.
1369 * profile.c (create_profiler): Use gcov_init_libfunc and DECL_RTL.
1370
1371 2003-04-11 Mark Mitchell <mark@codesourcery.com>
1372
1373 * doc/c-tree.texi (Functions): Remove DECL_REAL_CONTEXT
1374 documentation; add DECL_FRIEND_CONTEXT.
1375
1376 2003-04-11 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
1377
1378 * doc/install.texi (hppa): Update links for HP-UX patches. Revise
1379 notes on linker selection and configuration for 64-bit HP-UX port.
1380 * doc/invoke.texi (hppa): Remove hppa text from description for
1381 -ffunction-sections and -fdata-sections. Document -static, -nolibdld
1382 and -threads options.
1383
1384 * pa-hpux10.h (LIB_SPEC): Add link options to resolve dependency of
1385 libc.a on libdld.sl when -static is specified and -nolibdld is not
1386 specified.
1387 * pa64-hpux.h (LIB_SPEC): Likewise.
1388 * pa-hpux11.h (LIB_SPEC): Likewise.
1389 (LINK_SPEC): Add __gcc_plt_call as an undefined symbol when -shared
1390 is not specified.
1391
1392 2003-04-11 Zack Weinberg <zack@codesourcery.com>
1393
1394 * config/darwin-c.c (darwin_pragma_unused): Use lookup_name,
1395 not IDENTIFIER_LOCAL_VALUE.
1396
1397 2003-04-11 Richard Henderson <rth@redhat.com>
1398
1399 PR c/10201
1400 * expr.c (expand_expr): Move DECL_RTL frobbing ...
1401 * stor-layout.c (layout_decl): ... here.
1402
1403 2003-04-11 James A. Morrison <ja2morri@uwaterloo.ca>
1404
1405 * doc/invoke.texi: Eliminate extra white-space caused by
1406 @gccoptlist{ on its own line.
1407 * doc/invoke.texi: Ensured there are two spaces between each option.
1408 * doc/invoke.texi: Re-wrapped option lines that were too wide.
1409 Added @gol to options that didn't have them.
1410
1411 2003-04-11 Nathan Sidwell <nathan@codesourcery.com>
1412
1413 * Makefile.in (loop-init.o): Do not depend on gcov-io.h,
1414 gcov-iov.h.
1415
1416 Simplify interface to gcov reading and writing.
1417 * gcov-io.h (gcov_file, gcov_position, gcov_length, gcov_buffer,
1418 gcov_alloc, gcov_modified, gcov_errored): Move into ...
1419 (struct gcov_var gcov_var): ... this static structure.
1420 (gcov_write_unsigned, gcov_write_counter, gcov_write_string):
1421 Return void.
1422 (gcov_read_unsigned, gcov_read_couter, gcov_read_string): Return
1423 read object.
1424 (gcov_read_bytes, gcov_write_bytes): Set error flag on error.
1425 (gcov_reserve_length): Remove.
1426 (gcov_write_tag): New.
1427 (gcov_write_length): Adjust.
1428 (gcov_read_summary, gcov_write_summary): Adjust.
1429 (gcov_eof, gcov_ok): Rename to ...
1430 (gcov_is_eof, gcov_is_error): ... here. Return error code.
1431 (gcov_save_position, gcov_resync): Rename to ...
1432 (gcov_position, gcov_seek): ... here.
1433 (gcov_skip, gcov_skip_string): Remove.
1434 (gcov_error): Remove.
1435 (gcov_open, gcov_close): Adjust.
1436 * gcov.c (find_source): Take const char *, copy it on allocation.
1437 (read_graph_file): Adjust.
1438 (read_count_file): Adjust.
1439 * libgcov.c (gcov_exit): Adjust.
1440 * gcov-dump.c (tag_function, tag_blocks, tag_arcs, tag_lines,
1441 tag_arc_counts, tag_summary): Return void. Adjust.
1442 (struct tag_format): Adjust proc member.
1443 (dump_file): Adjust gcov calls.
1444
1445 2003-04-11 Alexandre Oliva <aoliva@redhat.com>
1446
1447 * Makefile.in (fixinc.sh): Pass BUILD_LIBERTY as LIBERTY to
1448 mkfixinc.sh.
1449 * fixinc/mkfixinc.sh (defs): Add LIBERTY.
1450 * configure.in (STMP_FIXINC, STMP_FIXPROTO): Don't disable on
1451 build != host sysrooted builds.
1452 * configure.in (SYSTEM_HEADER_DIR): Make sure it contains
1453 TARGET_SYSTEM_ROOT even on sysrooted natives.
1454 * configure: Rebuilt.
1455
1456 2003-04-10 Zack Weinberg <zack@codesourcery.com>
1457
1458 * c-decl.c (struct binding_level): Add shadowed_tags and
1459 function_body; remove this_block, tag_transparent, and
1460 subblocks_tag_transparent; update comments.
1461 (clear_binding_level, lookup_tag_reverse): Kill.
1462 (make_binding_level): Use ggc_alloc_cleared or memset.
1463 (lookup_tag): Remove struct binding_level* parameter. All
1464 callers changed. Just look at IDENTIFIER_TAG_VALUE, and
1465 current_binding_level->tags if asked for thislevel_only or if
1466 we might have to diagnose "struct foo; union foo;"
1467 (pushlevel): Ignore argument. Do not push another binding
1468 level on the transition from the parameters to the top level
1469 of the function body; just tweak the flags and proceed.
1470 (poplevel): Overhaul. Clear IDENTIFIER_TAG_VALUEs; on exiting
1471 a function body, separate the parameter list from the
1472 top-level local variables.
1473 (set_block): Do nothing.
1474 (pushtag): Set IDENTIFIER_TAG_VALUE and add an entry to
1475 shadowed_tags if necessary.
1476 (warn_if_shadowing): Nuke the special case for local shadowing
1477 parameter.
1478 (pushdecl): Do not create a shadow entry if we are replacing
1479 an older decl in the same binding level.
1480 (pushdecl_function_level): Tweak for new way of indicating
1481 function scope.
1482 (shadow_tag_warned): Use TYPE_NAME, not lookup_tag_reverse.
1483 (start_function): Don't set subblocks_tag_transparent.
1484 (finish_function): Fix up the binding_level stack for totally
1485 empty functions. Otherwise, don't call poplevel.
1486
1487 * c-common.c (shadow_warning): MANDATORY argument is no longer
1488 necessary. Always use plain warning.
1489 * c-common.h: Update to match.
1490
1491 * cfglayout.c (scope_to_insns_initialize): Clear block when we
1492 hit the FUNCTION_DECL.
1493 * function.c: Do not create cyclic tree structure.
1494
1495 2003-04-10 Zack Weinberg <zack@codesourcery.com>
1496
1497 * c-tree.h (struct lang_identifier): Replace global_value,
1498 local_value members with symbol_value, tag_value. Kill
1499 implicit_decl and limbo_value.
1500 (IDENTIFIER_GLOBAL_VALUE, IDENTIFIER_LOCAL_VALUE,
1501 IDENTIFIER_LIMBO_VALUE, IDENTIFIER_IMPLICIT_DECL,
1502 C_MISSING_PROTOTYPE_WARNED): Kill.
1503 (IDENTIFIER_SYMBOL_VALUE, IDENTIFIER_TAG_VALUE,
1504 C_DECL_IMPLICIT, C_DECL_ISNT_PROTOTYPE): New.
1505 (C_DECL_ANTICIPATED): Rename to C_DECL_INVISIBLE.
1506 (implicit_decl_warning, lookup_name_current_level,
1507 record_function_scope_shadow): Don't prototype.
1508 (pushdecl_function_level): Prototype.
1509
1510 * c-decl.c (truly_local_externals): New variable.
1511 (struct binding_level): Adjust commentary.
1512 (get_function_binding_level, clear_limbo_values,
1513 record_function_scope_shadow): Kill.
1514 (lookup_name_current_level, implicit_decl_warning): Are now static.
1515 (any_external_decl, record_external_decl): New static functions.
1516 (clone_underlying type): Split out of pushdecl.
1517 (c_print_identifier): Update to match changes to struct
1518 lang_identifier.
1519 (poplevel): Delete #if 0 block. Make externals invisible
1520 instead of clearing their IDENTIFIER_SYMBOL_VALUEs. Don't
1521 call clear_limbo_values. Refer to IDENTIFIER_SYMBOL_VALUE not
1522 IDENTIFIER_GLOBAL_VALUE or IDENTIFIER_LOCAL_VALUE.
1523 (duplicate-decls): For real parm decl after a forward decl,
1524 set TREE_ASM_WRITTEN here. Allow void foo(...) followed by
1525 foo(...) { } with only a warning. Say whether a previous
1526 declaration was implicit.
1527 (warn_if_shadowing): Now handles all shadowing, not just
1528 local-over-local. Clarify comments.
1529 (pushdecl): Rewritten. There is no longer a distinction
1530 between global and local symbol values; they're all
1531 IDENTIFIER_SYMBOL_VALUE. Call record_external_decl on all
1532 DECL_EXTERNAL decls, and use any_external_decl to check
1533 against previous externals. Kill #if 0 blocks. Don't
1534 tolerate error_mark_node being NULL.
1535 (pushdecl_top_level): Handle only those cases which
1536 Objective C (the only user) needs.
1537 (pushdecl_function_level): New function.
1538 (implicitly_declare): Create ordinary decls with
1539 C_DECL_IMPLICIT set. Recycle old decls, however they got
1540 created.
1541 (lookup_name): It's always IDENTIFIER_SYMBOL_VALUE. Return 0
1542 for C_DECL_INVISIBLE symbols.
1543 (lookup_name_current_level): Likewise. Use chain_member.
1544 (c_make_fname_decl): Don't muck with DECL_CONTEXT.
1545 Use pushdecl_function_level.
1546 (builtin_function): Use C_DECL_INVISIBLE.
1547 (start_function): Don't muck with IDENTIFIER_IMPLICIT_DECL.
1548 Use C_DECL_ISNT_PROTOTYPE and C_DECL_IMPLICIT.
1549 (store_parm_decls): It's IDENTIFIER_SYMBOL_VALUE now.
1550 (identifier_global_value): Same. Must scan
1551 global_binding_level in extremis.
1552
1553 * c-typeck.c (undeclared_variable): New static function, split
1554 from build_external_ref.
1555 (build_external_ref): Use DECL_CONTEXT, not
1556 IDENTIFIER_LOCAL_VALUE, to decide whether a local hides
1557 an instance variable. Restructure for clarity.
1558 * objc/objc-act.c: Use identifier_global_value, not
1559 IDENTIFIER_GLOBAL_VALUE.
1560
1561 2003-04-08 Jonathan Wakely <redi@gcc.gnu.org>
1562
1563 * doc/extend.texi (Template Instantiation): Refer to ISO standard,
1564 not Working Paper.
1565 * doc/invoke.texi (C++ Dialect Options): Same.
1566
1567 2003-04-10 Zack Weinberg <zack@codesourcery.com>
1568
1569 * tree.c (tree_operand_check_failed): New function.
1570 * tree.h (TREE_OPERAND_CHECK, TREE_OPERAND_CHECK_CODE,
1571 TREE_RTL_OPERAND_CHECK): New checking macros.
1572 (TREE_OPERAND, SAVE_EXPR_CONTEXT, SAVE_EXPR_RTL,
1573 RTL_EXPR_SEQUENCE, RTL_EXPR_RTL, WITH_CLEANUP_EXPR_RTL,
1574 CONSTRUCTOR_ELTS, LABELED_BLOCK_LABEL, LABELED_BLOCK_BODY,
1575 EXIT_BLOCK_RETURN, LOOP_EXPR_BODY, EXPR_WFL_NODE,
1576 EXPR_WFL_FILENAME_NODE, EXPR_WFL_FILENAME, TARGET_EXPR_SLOT,
1577 TARGET_EXPR_INITIAL, TARGET_EXPR_CLEANUP): Use the new
1578 checking macros.
1579
1580 Thu Apr 10 23:52:30 CEST 2003 Jan Hubicka <jh@suse.cz>
1581
1582 PR inline-asm/8803
1583 * function.c (instantate_virtual_regs): Verify that all ASM statements
1584 match after the virutal regs instantiation.
1585
1586 2003-04-10 Steve Ellcey <sje@cup.hp.com>
1587
1588 * ia64-protos.h (addp4_optimize_ok): New.
1589 * ia64.c (addp4_optimize_ok): New.
1590 * ia64.md (*ptr_extend_plus_1): Use addp4_optimize_ok.
1591 (*ptr_extend_plus_2): Ditto.
1592
1593 2003-04-10 Steve Ellcey <sje@cup.hp.com>
1594
1595 * expr.c (expand_assignment): Extend offset_rtx with convert_to_mode
1596 not with convert_memory_address.
1597 (store_constructor): Ditto, and same for copy_size_rtx.
1598 (expand_expr): Ditto.
1599
1600 2003-04-10 Douglas B Rupp <rupp@gnat.com>
1601
1602 * config/i386/i386.c (ix86_ms_bitfield_layout_p): Fix formatting.
1603
1604 2003-04-10 Bob Wilson <bob.wilson@acm.org>
1605
1606 * config/xtensa/lib2funcs.S (__xtensa_sync_caches): Flush data cache
1607 even if it is configured to be write-through.
1608
1609 2003-04-10 Ulrich Weigand <uweigand@de.ibm.com>
1610
1611 * config/s390/s390.c (larl_operand): Do not allow symbols
1612 marked with '@'.
1613 (s390_encode_section_info): Mark symbols with forced 1-byte
1614 alignment with '@'.
1615 (s390_strip_name_encoding): Strip '@'.
1616 (legitimize_pic_address): Handle symbols that are not valid
1617 LARL operands in 64-bit mode.
1618
1619 2003-04-10 Andrew Haley <aph@redhat.com>
1620
1621 * tree-inline.c (inlinable_function_p): Disable inlining for
1622 synchronized methods.
1623
1624 2003-04-09 Steven Bosscher <steven@gcc.gnu.org>
1625
1626 * c-common.h (lang_statement_code_p): Remove declaration.
1627 (statement_code_p): Ditto.
1628 (c_common_stmt_codes): Define; list of c-common statement codes.
1629 (statement_code_p): New extern declaration.
1630 (STATEMENT_CODE_P): Define.
1631 (INIT_STATEMENT_CODES): Define.
1632 * c-common.c (statement_code_p): Kill the function, declare
1633 as an array of bools instead.
1634 (lang_statement_code_p): Remove.
1635 (walk_stmt_tree): Use STATEMENT_CODE_P not statement_code_p.
1636 (c_safe_from_p): Ditto.
1637 * c-objc-common.c (c_objc_common_init): Use INIT_STATEMENT_CODES
1638 to initialize the statement_code_p array.
1639 * tree-inline.c (walk_tree): Use STATEMENT_CODE_P instead of
1640 statement_code_p.
1641 (copy_tree_r): Ditto.
1642 * cp/cp-tree.h (cp_stmt_codes): Define; list of C++ specific
1643 statement tree codes.
1644 * cp/lex.c (cxx_init): Add missing print line break. Use
1645 INIT_STATEMENT_CODES to initialize the statement_code_p array.
1646 * cp/parser.c (cp_parser_statement): Use STATEMENT_CODE_P
1647 instead of statement_code_p.
1648 * cp/pt.c (tsubst_expr): Ditto.
1649 * cp/tree.c (verify_stmt_tree_r): Ditto.
1650 (cp_statement_code_p): Remove.
1651 (init_tree): Don't set lang_statement_code_p, it's gone.
1652
1653 2003-04-09 Dan Nicolaescu <dann@ics.uci.edu>
1654 Zack Weinberg <zack@codesourcery.com>
1655
1656 * regrename.c (struct du_chain): Use a bitfield for reg_class.
1657 * cse.c (struct qty_table_elem, struct table_elt, struct set):
1658 Use bitfields for fields holding enum rtx_code or
1659 enum machine_mode values. Add comments explaining size choices.
1660
1661 2003-04-09 Alexandre Oliva <aoliva@redhat.com>
1662
1663 * config/fp-bit.c (unpack_d): Handle pair of doubles with
1664 different signs correctly.
1665
1666 2003-04-09 Vladimir Makarov <vmakarov@redhat.com>
1667
1668 * sched-deps.c (reg_pending_barrier_mode): New enumeration.
1669 (reg_pending_barrier): Make it of the enumeration type.
1670 (sched_analyze_2): Define the barrier as MOVE_BARRIER or
1671 TRUE_BARRIER.
1672 (sched_analyze): Ditto.
1673 (sched_analyze_insn): Ditto. Use anti-dependencies for
1674 MOVE_BARRIER and true-dependencies as TRUE_BARRIER.
1675 (init_deps_global): Initialize the barrier as NO_BARRIER.
1676
1677 2003-04-09 Vladimir Makarov <vmakarov@redhat.com>
1678
1679 * config/ia64/ia64.c (issue_nops_and_insn): Add new parameter.
1680 Check that asm insn starts on a new cycle. Add nops after asm
1681 insn to end bundle.
1682 (bundling): Move insn type evaluation from the loop. Call
1683 issue_nops_and_insn with the new parameter. Ignore changing
1684 position for nops after asm insn.
1685
1686 2003-04-09 Alexandre Oliva <aoliva@redhat.com>
1687
1688 * optabs.c: Comment that gen_add2_insn and others may actually
1689 return emitted insns, if the gen functions turn out to return
1690 emitted insns.
1691 * reload1.c (reload_cse_move2add): Cope with emitted insns from
1692 gen_add2_insn.
1693
1694 2003-04-09 Richard Henderson <rth@redhat.com>
1695
1696 * config/ia64/ia64.c (move_operand): Allow symbolic_operand,
1697 but not tls_symbolic_operand.
1698 (ia64_expand_load_address): Remove scratch operand.
1699 (ia64_expand_tls_address): Split out from ia64_expand_move.
1700 (ia64_expand_move): Split symbolics only after reload.
1701 (ia64_emit_cond_move): New.
1702 * config/ia64/ia64-protos.h: Update.
1703 * config/ia64/ia64.md (movsi_symbolic, movdi_symbolic): Remove.
1704 (symbolic splitter): Accept SImode operands too.
1705 (cmove splitter): Use ia64_emit_cond_move.
1706
1707 2003-04-09 Nick Clifton <nickc@redhat.com>
1708
1709 * doc/install.texi: Note that ARM toolchains need binutils 2.13 or
1710 newer.
1711 * config/arm/elf.h (SUBTARGET_ASM_FLOAT_SPEC): Pass -mfpu=softfpa
1712 instead of -mno-fpu.
1713 * config/arm/semi.h (ASM_SPEC): Likewise.
1714 * config/arm/xscale-elf.h (SUBTARGET_EXTRA_ASM_SPEC): Likewise,
1715 but only if -msoft-float is specified pass. Otherwise pass
1716 -mfpu=softvfp.
1717
1718 2003-04-09 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
1719
1720 * function.c (purge_addressof): Use free_INSN_LIST_node instead of
1721 free_EXPR_LIST_node.
1722
1723 2003-04-08 Roger Sayle <roger@eyesopen.com>
1724
1725 * fold-const.c (fold): Use "fold" following build in more places.
1726 Optimize sqrt(x)*sqrt(x) as x, pow(x,y)*pow(z,y) as pow(x*z,y),
1727 pow(x,y)*pow(x,z) as pow(x,y+z) and x/pow(y,z) as x*pow(y,-z).
1728
1729 2003-04-08 Roger Sayle <roger@eyesopen.com>
1730
1731 * builtins.c (fold_builtin): Constant fold expressions as x*0.5
1732 instead of x/2.0. Optimize sqrt(pow(x,y)) as pow(x,y*0.5),
1733 log(pow(x,y)) as y*log(x), pow(exp(x),y) as exp(x*y),
1734 pow(sqrt(x),y) as pow(x,y*0.5) and pow(pow(x,y),z) as pow(x,y*z).
1735 Delete function scope "fcode" variable to avoid shadowing.
1736
1737 2003-04-08 Kevin Buettner <kevinb@redhat.com>
1738
1739 * dwarf2out.c (DWARF_ARANGES_HEADER_SIZE, DWARF_ARANGES_PAD_SIZE):
1740 Take into account DWARF_INITIAL_LENGTH_SIZE.
1741
1742 2003-04-08 Hans-Peter Nilsson <hp@axis.com>
1743
1744 * reorg.c (fill_slots_from_thread): When considering changing the
1745 insn following a reg-to-reg copy insn to use the source reg of the
1746 copy, bail out if there's overlap between the registers.
1747
1748 2003-04-08 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
1749
1750 * function.c (postponed_insns): New.
1751 (purge_addressof_1): Postpone processing of insns if addressofs
1752 are not put into stack.
1753 (purge_addressof): Process postponed insns.
1754
1755 2003-04-08 J"orn Rennecke <joern.rennecke@superh.com>
1756
1757 * sh.h (NORMAL_MODE): If interrupt handler and TARGET_FMOVD,
1758 this is FP_MODE_DOUBLE .
1759 * sh.c (ra.h): #include.
1760 (push_regs): Add second parameter. Changed all callers.
1761 If necessary, set fpscr before saving floating point registers.
1762 (calc_live_regs): If interrupt handler and TARGET_FMOVD, always
1763 do saves / restores with SZ == 1.
1764 (sh_expand_prologue): If interrupt handler, don't use gen_toggle_sz.
1765 (sh_expand_epilogue): Likewise. For TARGET_FMOVD, if floating point
1766 registers are being restored, restore FPSCR only after restoring them.
1767
1768 2003-04-08 Aldy Hernandez <aldyh@redhat.com>
1769
1770 * config/rs6000/rs6000.c (rs6000_init_builtins): Set opaque types
1771 regardless of architecture.
1772 (spe_init_builtins): Change V2SI and V2SF types to opaque types.
1773
1774 2003-04-08 J"orn Rennecke <joern.rennecke@superh.com>
1775
1776 * sh.c (push_regs, calc_live_regs): Return int. Take single
1777 HARD_REG_SET * parameter. Changed all callers.
1778
1779 Tue Apr 8 11:12:07 CEST 2003 Jan Hubicka <jh@suse.cz>
1780
1781 * i386.c (legitimate_pic_address_disp_p): Do not accept PLUS in the
1782 GOTOFF operand.
1783 (legitimize_pic_address): Move plus outside the unspec.
1784 * i386.c (legitimate_constant_p): Check (CONST (PLUS (UNSPEC ...
1785 for validity.
1786
1787 2003-04-08 Nathan Sidwell <nathan@codesourcery.com>
1788
1789 * gcov-io.h (gcov_save_position): Remove __inline__ from
1790 declaration.
1791
1792 2003-04-07 Matt Kraai <kraai@alumni.cmu.edu>
1793
1794 * doc/install.texi: Use @command and @samp for single- and
1795 multi-word commands respectively.
1796 * doc/makefile.texi: Likewise.
1797 * doc/sourcebuild.texi: Likewise.
1798
1799 2003-04-07 Christian Ehrhardt <ehrhardt@mathematik.uni-ulm.de>
1800 Richard Henderson <rth@redhat.com>
1801
1802 PR c/9516
1803 * expr.c (safe_from_p): Rearrange to avoid deep recursion in
1804 favour of looping and tail recursion for TREE_LIST and binops.
1805
1806 2003-04-08 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
1807
1808 * loop.h (REGNO_FIRST_LUID, REGNO_LAST_LUID): Provide defaults
1809 for insns without luid.
1810
1811 2003-04-07 Glen Nakamura <glen@imodulo.com>
1812
1813 PR opt/8634
1814 * explow.c (maybe_set_unchanging): Don't flag non-static const
1815 aggregate type initializers with RTX_UNCHANGING_P.
1816
1817 2003-04-07 Richard Henderson <rth@redhat.com>
1818
1819 PR opt/8634
1820 * function.c (purge_addressof_1): Don't try arithmetics for
1821 unchanging memories.
1822
1823 2003-04-07 Janis Johnson <janis187@us.ibm.com>
1824
1825 * doc/sourcebuild.texi (Test Suites): Document testing support for
1826 gcov and profile-directed optimizations; describe gcc.misc-tests.
1827
1828 Mon Apr 7 22:19:59 CEST 2003 Jan Hubicka <jh@suse.cz>
1829
1830 PR target/10077
1831 * i386.md (movsi_1, movsi_nointerunit_1): Fix SSEMOV alternative.
1832
1833 2003-04-07 Eric Botcazou <ebotcazou@libertysurf.fr>
1834
1835 * doc/rtl.texi (Comparison operations): Update to
1836 record the allowed comparison modes.
1837
1838 2003-04-07 Aldy Hernandez <aldyh@redhat.com>
1839
1840 * config/rs6000/rs6000.c (rs6000_common_init_builtins): Rename all
1841 V2SI_type_node to opaque_V2SI_type_node. Rename all
1842 V2SF_type_node to opaque_V2SF_type_node.
1843 (rs6000_init_builtins): Define opaque_V2SI_type_node and
1844 opaque_V2SF_type_node.
1845 (is_ev64_opaque_type): The types opaque_V2SI_type_node and
1846 opaque_V2SF_type_node are opaque types.
1847
1848 2003-04-07 J"orn Rennecke <joern.rennecke@superh.com>
1849
1850 * gcse.c (replace_store_insn): Use single_set.
1851
1852 2003-04-07 Nathan Sidwell <nathan@codesourcery.com>
1853
1854 Change gcov file interface to single file at a time.
1855 * gcov-io.h: Replace IN_LIBGCC1 with IN_LIBGCOV. Use IN_GCOV.
1856 Convert to C89 prototypes.
1857 (gcov_file, gcov_length, gcov_position, gcov_buffer, gcov_alloc,
1858 gcov_error, gcov_modified): New static variables.
1859 (gcov_open, gcov_close, gcov_read_bytes, gcov_write_bytes): New
1860 functions.
1861 (gcov_write_unsigned, gcov_write_counter, gcov_write_string,
1862 gcov_read_unsigned, gcov_read_counter, gcov_read_string): Adjust.
1863 (gcov_read_summary, gcov_write_summary): Adjust.
1864 (gcov_save_position, gcov_reserve_length, gcov_write_length):
1865 Adjust.
1866 (gcov_resync, gcov_skip, gcov_skip_string): Adjust.
1867 (da_file_open, da_file_close, da_file_eof, da_file_error): Remove.
1868 (da_file_position, da_file_seek, da_file_write, da_file_read):
1869 Remove.
1870 (gcov_error, gcov_eof, gcov_ok, gcov_time): New functions.
1871 * gcov.c (gcov_type): Don't typedef here.
1872 (IN_GCOV): #define
1873 (read_graph_file, read_count_file): Adjust.
1874 * gcov-dump.c (gcov_type): Don't typedef here.
1875 (IN_GCOV): #define.
1876 (tag_function, tag_blocks, tag_arcs, tag_lines, tag_arc_counts):
1877 Remove FILE parameter, adjust.
1878 (struct tag_format): Adjust proc member.
1879 (dump_file): Adjust.
1880 * libgcov.c (IN_LIBGCOV): #define.
1881 (gcov_exit): Adjust.
1882 * loop-init.c: Don't #include gcov-io.h
1883 * profile.c (struct counts_entry): New structure to hold counter
1884 values.
1885 (struct section_reference, struct da_index_entry): Remove.
1886 (bbg_file, da_file): Remove.
1887 (htab_counts_index_hash, htab_counts_index_eq,
1888 htab_counts_index_del): Replace with ...
1889 (htab_counts_entry_hash, htab_counts_entry_eq,
1890 htab_counts_entry_del): ... these.
1891 (cleanup_counts_index, index_counts_file): Remove.
1892 (read_counts_file): New function.
1893 (get_exec_counts): Adjust.
1894 (compute_branch_probabilities): Don't free the exec counts here.
1895 (branch_prob): Adjust.
1896 (init_branch_prob): Adjust.
1897 (end_branch_prob): Adjust.
1898
1899 2003-04-07 Aldy Hernandez <aldyh@redhat.com>
1900
1901 * doc/invoke.texi (RS/6000 and PowerPC Options): Document
1902 -mfloat-gprs.
1903
1904 * config/rs6000/rs6000.c: Delete rs6000_fprs.
1905 Declare rs6000_float_gprs.
1906 Declare rs6000_float_gprs_string.
1907 (rs6000_parse_float_gprs_option): New.
1908 (rs6000_override_options): Genericize rs6000_parse_* calls to use
1909 rs6000_parse_yes_no_option.
1910 Change check for cpu=8540, to use TARGET_E500.
1911 (rs6000_parse_isel_option): Delete.
1912 (rs6000_parse_spe_option): Delete.
1913 (rs6000_parse_vrsave_option): Delete.
1914
1915 * config/rs6000/rs6000.h: Rename rs6000_fprs to rs6000_float_gprs.
1916 Define rs6000_float_gprs_string.
1917 (TARGET_OPTIONS): Add rs6000_float_gprs option.
1918
1919 * config/rs6000/eabi.h (TARGET_FPRS): Change to use rs6000_float_gprs.
1920
1921 * config/rs6000/eabispe.h: Set rs6000_float_gprs.
1922
1923 Mon Apr 7 14:36:24 CEST 2003 Jan Hubicka <jh@suse.cz>
1924
1925 PR opt/10024
1926 * cfglayout.c (cfg_layout_redirect_edge):
1927 Redirect any branch edges unified with the fallthru one.
1928 * cfgrtl.c (force_nonfallthru_and_redirect): Do not special
1929 case fallthru edges when called via cfglayout.c
1930
1931 2003-04-07 J"orn Rennecke <joern.rennecke@superh.com>
1932
1933 * c-typeck.c (output_init_element): Check for type == error_mark_node.
1934
1935 2003-04-07 Kazu Hirata <kazu@cs.umass.edu>
1936
1937 * config/h8300/h8300.md (*zero_extendqisi2_h8300hs): Always
1938 split.
1939 (a splitter): Do zero-extension via HImode.
1940
1941 2003-04-07 James A. Morrison <ja2morri@uwaterloo.ca>
1942
1943 * doc/invoke.texi: Eliminate extra white-space caused by
1944 @gccoptlist{ on its own line.
1945 * doc/invoke.texi: Ensured there are two spaces between each option.
1946 * doc/invoke.texi: Re-wrapped option lines that were too wide.
1947 Added @gol to options that didn't have them.
1948
1949 2003-04-07 James A Morrison <ja2morri@student.math.uwaterloo.ca>
1950
1951 * doc/extend.texi (Darwin Pragmas): Fix spelling of Mac OS.
1952
1953 2003-04-06 Zack Weinberg <zack@codesourcery.com>
1954
1955 * tree.c (tree_size): For all 'c' and 'x' nodes, look directly
1956 at the sizes of the relevant structures, rather than relying
1957 on TREE_CODE_LENGTH. Call lang_hooks.tree_size to get the
1958 sizes of any such we don't know about. Use
1959 lang_hooks.identifier_size for IDENTIFIER_NODE.
1960
1961 (initializer_zerop): Use CONSTRUCTOR_ELTS.
1962 * tree.def: Update commentary. Make fourth element of
1963 the definition for all 'c' and 'x' nodes zero.
1964
1965 * langhooks.h: New hook, tree_size / LANG_HOOKS_TREE_SIZE.
1966 * langhooks-def.h: Update to match.
1967 * langhooks.c: New default, lhd_tree_size.
1968
1969 * c-common.def (SRCLOC): Kill.
1970 * c-pretty-print.c (pp_c_postfix_expression [case SRCLOC]):
1971 Remove entirely - was already #if-ed out.
1972
1973
1974 2003-04-06 Zack Weinberg <zack@codesourcery.com>
1975
1976 * mklibgcc.in: Use a here document to avoid running afoul of
1977 shells that generate control-A from "echo \1".
1978
1979 2003-04-06 Aldy Hernandez <aldyh@redhat.com>
1980
1981 * doc/invoke.texi (RS/6000 and PowerPC Options): Document -mspe
1982 option.
1983
1984 * config/rs6000/eabispe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Set
1985 rs6000_spe.
1986
1987 * config/rs6000/eabi.h (TARGET_E500): Define.
1988
1989 * config/rs6000/rs6000.h (TARGET_E500): Define.
1990 (TARGET_OPTIONS): Add spe= option.
1991 Declare rs6000_spe and rs6000_spe_string extern.
1992
1993 * config/rs6000/rs6000.c (branch_positive_comparison_operator):
1994 Change TARGET_SPE to TARGET_E500.
1995 (ccr_bit): Change TARGET_SPE to TARGET_E500. Check for
1996 !TARGET_FPRS.
1997 (print_operand): Same.
1998 (rs6000_generate_compare): Same.
1999 (output_cbranch): Same.
2000 (rs6000_spe): Declare.
2001 (rs6000_spe_string): Declare.
2002 (rs6000_override_options): Call rs6000_parse_spe_option.
2003 (rs6000_parse_spe_option): New.
2004
2005 2003-04-06 Steven Bosscher <steven@gcc.gnu.org>
2006
2007 * hashtable.c (gcc_obstack_init): Delete this function
2008 and everything related to it.
2009 * hashtable.h: Remove prototype.
2010 * bitmap.c (bitmap_element_allocate): Cleanup redundant
2011 defines. Cleanup some unnecessary whitespace.
2012 * defaults.h (obstack_chunk_alloc): Redefine with
2013 appropriate casts for libiberty obstacks.
2014 (obstack_chunk_free): Ditto.
2015 (OBSTACK_CHUNK_SIZE): Define, default to 0.
2016 (gcc_obstack_init): Define as a call to _obstack_begin.
2017 * tree.c (print_obstack_statistics): Delete this unused
2018 function.
2019 * tree.h (obstack): Don't forward-declare.
2020 (print_obstack_statistics): Delete prototype.
2021 (print_obstack_name): Ditto.
2022 (gcc_obstack_init): Ditto.
2023 * rtl.h (gcc_obstack_init): Ditto.
2024 * java/jv-scan.c (gcc_obstack_init): Delete this
2025 function, its prototype and related defines.
2026 * java/jvgenmain.c (gcc_obstack_init): Delete this
2027 function, and related defines.
2028 * java/parse-scan.y (obstack_chunk_alloc): Don't define.
2029 (obstack_chunk_free): Ditto
2030
2031 2003-04-06 Geoffrey Keating <geoffk@apple.com>
2032
2033 * dbxout.c (dbxout_handle_pch): Move prototype out from
2034 #if defined DBX_DEBUGGING_INFO.
2035
2036 2003-04-05 Nathan Sidwell <nathan@codesourcery.com>
2037
2038 * gcov.c (struct arc_info): Replace local_span with cycle.
2039 (struct block_info): Replace u.span with u.cycle. Add is_call_return.
2040 (solve_flow_graph): Set is_call_return.
2041 (add_line_counts): Adjust. In block mode, blocks attach to last line.
2042 (accumulate_line_counts): Find graph cycles, not spanning tree.
2043 (output_branch_count): Adjust.
2044 (output_lines): Adjust.
2045 * doc/gcov.texi: Update.
2046
2047 2003-04-06 Kazu Hirata <kazu@cs.umass.edu>
2048
2049 * config/h8300/h8300.md (*zero_extendqisi2_h8300hs): Change
2050 the second alternative to "#".
2051
2052 2003-04-05 Kazu Hirata <kazu@cs.umass.edu>
2053
2054 * config/h8300/h8300.c (single_one_operand): Use GET_MODE_MASK.
2055 (single_zero_operand): Likewise.
2056
2057 2003-04-05 Daniel Berlin <dberlin@dberlin.org>
2058
2059 * Makefile.in (df.o): Depend on alloc-pool.h, not obstack.h.
2060 * df.c: Include alloc-pool.h, not obstack.h.
2061 (df_ref_obstack): Remove.
2062 (df_ref_pool, df_link_pool): Add pools.
2063 (df_alloc): Init the new pools.
2064 (df_free): And free them.
2065 (df_link_create): Use the pools.
2066 (df_ref_create): Ditto.
2067
2068 2003-04-05 Kazu Hirata <kazu@cs.umass.edu>
2069
2070 * simplify-rtx.c: Fix formatting.
2071
2072 2003-04-05 Andrew Pinski <apinski@apple.com>
2073
2074 * config/rs6000/rs6000.c (addrs_ok_for_quad_peep): Allow addr2
2075 reg with reg1 == reg2 and offset1 = -8.
2076
2077 2003-04-05 David Edelsohn <edelsohn@gnu.org>
2078
2079 * config/rs6000/rs6000.c (rs6000_rtx_costs): Halve Power4
2080 multiply costs. Correct Power4 divide costs.
2081 * config/rs6000/power4.md: Restore multiply and FP latency.
2082
2083 2003-04-05 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
2084
2085 * alias.c (find_base_term): Export.
2086 * rtl.h (find_base_term): Declare.
2087 * gcse.c (find_moveable_store): Test for flag_non_call_exceptions
2088 instead of flag_exceptions. Move test for parameter passing ...
2089 (store_killed_in_insn): ... here.
2090
2091 2003-04-05 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
2092
2093 PR bootstrap/10267
2094 * doc/install.texi (*-*-solaris2): /bin/ksh is not just recommended
2095 for configuring.
2096
2097 2003-04-04 Geoffrey Keating <geoffk@apple.com>
2098
2099 * dbxout.c (scope_labelno): Add GTY.
2100 (have_used_extensions): Add GTY.
2101 (source_label_number): Add GTY.
2102 (lastfile): Add GTY.
2103 (lastfile_is_base): New.
2104 (base_input_file): New.
2105 (dbxout_handle_pch): New.
2106 (dbx_debug_hooks): Add handle_pch.
2107 (xcoff_debug_hooks): Likewise.
2108 (dbxout_function_end): Remove scope_labelno.
2109 (dbxout_init): Set base_input_file.
2110 (dbxout_handle_pch): New.
2111 (dbxout_source_file): Honour lastfile_is_base.
2112 * dwarfout.c (dwarf_debug_hooks): Add dummy handle_pch.
2113 * sdbout.c (sdb_debug_hooks): Add dummy handle_pch.
2114 * vmsdbgout.c (vmsdbg_debug_hooks): Add dummy handle_pch.
2115 * dwarf2out.c (dwarf2_debug_hooks): Add dummy handle_pch.
2116 * debug.c (do_nothing_debug_hooks): Add dummy handle_pch.
2117 * debug.h (struct gcc_debug_hooks): Add handle_pch.
2118 * c-pch.c (pch_init): Don't call start_source_file, but do call
2119 handle_pch.
2120 (c_common_write_pch): Call handle_pch.
2121 (c_common_read_pch): Don't call start_source_file,
2122 or end_source_file.
2123
2124 Fri Apr 4 17:43:52 2003 Olivier Hainque <hainque@act-europe.fr>
2125
2126 * emit-rtl.c (get_mem_attrs): Adjust alignment tests determining
2127 use of default attributes to agree MEM_ALIGN macro.
2128
2129 Fri Apr 4 17:33:24 2003 Joel Brobecker <brobecker@gnat.com>
2130
2131 * dbxout.c (dbxout_type): When printing type index of range type
2132 whose bounds are printed in octal format, print type of parent type if
2133 it exists so enumerated type descriptions are not transformed
2134 into unsigned types.
2135
2136 2003-04-04 Kazu Hirata <kazu@cs.umass.edu>
2137
2138 * config/h8300/h8300-protos.h: Add a prototype for
2139 compute_a_shift_cc.
2140 * config/h8300/h8300.c (shift_one): Update the CC status.
2141 (shift_two): Likewise.
2142 (output_a_shift_cc): Set cc_inline and cc_special.
2143 (compute_a_shift_cc): New.
2144 * config/h8300/h8300.md (shift insns): Use compute_a_shift_cc.
2145
2146 2003-04-04 Richard Henderson <rth@redhat.com>
2147
2148 * cse.c (fold_rtx): Fix 03-30 change; do check insn non-null.
2149
2150 2003-04-04 Loren James Rittle <ljrittle@acm.org>
2151
2152 * fixinc/inclhack.def (bsd_stdio_attrs_conflict): New.
2153 * fixinc/fixincl.x: Rebuilt.
2154 * fixinc/tests/base/stdio.h: Regenerated.
2155
2156 2003-04-04 Nathan Sidwell <nathan@codesourcery.com>
2157
2158 * gcov.c (accumulate_line_counts): Fix span tree merge bug.
2159
2160 Fri Apr 4 15:58:52 2003 J"orn Rennecke <joern.rennecke@superh.com>
2161
2162 * sh.h (ACTUAL_NORMAL_MODE): New macro, broken out of
2163 (NORMAL_MODE).
2164 * sh.c (fpscr_set_from_mem): Use ACTUAL_NORMAL_MODE.
2165
2166 2003-04-04 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
2167
2168 * doc/contrib.texi (Contributors): Add entries for Wolfgang
2169 Bangerth, DJ Delorie, Christian Ehrhardt, Christopher Faylor,
2170 Nathanael Nerode, Diego Novillo, Hartmut Penner, Volker Reichelt,
2171 Danny Smith, and Ulrich Weigand.
2172 Update Kriang Lerdsuwanakij and fix a typo in Janis Johnson's
2173 entry.
2174
2175 2003-04-04 Nick Clifton <nickc@redhat.com>
2176
2177 * config/sparc/sol2-bi.h: Revert previous delta.
2178 * config/sparc/sol2-gas-bi.h (AS_SPARC64_FLAG): Prepend -TSO
2179
2180 2003-04-04 Nick Clifton <nickc@redhat.com>
2181
2182 * config/v850/v850.c (expand_prologue): Only use register save
2183 helper functions if long calls are not being used.
2184 Add a clobber of r11 id using long calls.
2185 (pattern_is_ok_for_prologue): Account for the extra clobber.
2186 (construct_save_jarl): Likewise.
2187 * config/v850/v850.md (prolog pattern): Do not use this pattern
2188 for v850e's.
2189
2190 2003-04-04 Andreas Schwab <schwab@suse.de>
2191
2192 * stor-layout.c (layout_decl): Avoid syntax error in last change
2193 when PCC_BITFIELD_TYPE_MATTERS is defined but not
2194 EMPTY_FIELD_BOUNDARY.
2195
2196 2003-04-03 Jason Merrill <jason@redhat.com>
2197
2198 PR c/10175
2199 * jump.c (never_reached_warning): Revert patch of 2002-11-02.
2200 Look backwards for a line note.
2201
2202 2003-04-03 Neil Booth <neil@daikokuya.co.uk>
2203
2204 * fix-header.c (read_scan_file): Defer switch processing.
2205
2206 2003-04-03 Matt Austern <austern@apple.com>
2207
2208 * cpppch.c (reset_ht): Remove.
2209 (cpp_read_state): Remove loop to reset hashtable identifiers.
2210 * ggc-common.c (gt_pch_save): Add call to gt_pch_fixup_stringpool
2211 after pch file is written.
2212 * ggc.h (gt_pch_fixup_stringpool): Declare.
2213 * stringpool.c (ht_copy_and_clear): Define. Callback. Copy
2214 hashnode's value to another hashtable, then clear the original.
2215 (saved_ident_hash): Define.
2216 (gt_pch_save_stringpool): Create saved_ident_hash, use it to
2217 store definitions in ident_hash, and clear ident_hash.
2218 (gt_pch_fixup_stringpool): Define. Restore definitions from
2219 saved_ident_hash to ident_hash, then destroy saved_ident_hash.
2220
2221 Thu Apr 3 22:27:40 CEST 2003 Jan Hubicka <jh@suse.cz>
2222
2223 * cfgrtl.c (update_bb_for_insn): Do not set block for barriers.
2224
2225 2003-04-03 Eric Botcazou <ebotcazou@libertysurf.fr>
2226
2227 PR optimization/10157
2228 * gcse.c (can_copy_p): Rename it to can_copy.
2229 (can_copy_init_p): Remove.
2230 (compute_can_copy): Use can_copy instead of can_copy_p.
2231 (can_copy_p): New exported function. Call compute_can_copy.
2232 (hash_scan_set): Use it.
2233 (gcse_main): Don't call compute_can_copy.
2234 (bypass_jumps): Don't call compute_can_copy.
2235 * rtl.h (can_copy_p): Declare.
2236 * loop.c (scan_loop): Don't move the source and add a reg-to-reg
2237 copy if the mode doesn't support copy operations.
2238
2239 2003-04-03 Jason Merrill <jason@redhat.com>
2240
2241 * Makefile.in (unstrap): Also remove stage_last.
2242
2243 * dwarf2out.c (lookup_filename): Don't check for "<internal>".
2244 (dwarf2out_source_line): Don't do anything if line==0.
2245
2246 * stor-layout.c (do_type_align): New fn, split out from...
2247 (layout_decl): ...here. Do all alignment calculations for
2248 FIELD_DECLs here.
2249 (update_alignment_for_field): Not here.
2250 (start_record_layout, debug_rli): Remove unpadded_align.
2251 * tree.h (struct record_layout_info_s): Remove unpadded_align.
2252 * c-decl.c (finish_enum): Don't set DECL_SIZE, DECL_ALIGN
2253 or DECL_MODE on the CONST_DECLs.
2254 (finish_struct): Don't mess with DECL_ALIGN.
2255
2256 Thu Apr 3 18:57:19 CEST 2003 Jan Hubicka <jh@suse.cz>
2257
2258 * i386.c (print_operand): Do not bypass output_addr_const at flag_pic.
2259
2260 Thu Apr 3 17:08:09 2003 J"orn Rennecke <joern.rennecke@superh.com>
2261
2262 * sh.c (sh_function_ok_for_sibcall): Return 0 if the current
2263 function is an interrupt handler.
2264
2265 * sh.c (sh_expand_epilogue): Avoid clash of temp register for
2266 restoring target registers with EH_RETURN_STACKADJ_RTX; use
2267 multiple registers in round-robin fashion.
2268
2269 2003-04-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2270
2271 * gengtype-lex.l (IWORD): Add CHAR_BITFIELD.
2272 * system.h (CHAR_BITFIELD): New.
2273
2274 2003-04-03 Kazu Hirata <kazu@cs.umass.edu>
2275
2276 * config/h8300/h8300.md (a peephole2): Generalize to accept GT
2277 and LE.
2278 (another peephole2): Likewise.
2279
2280 2003-04-03 Nick Clifton <nickc@redhat.com>
2281
2282 * config/sparc/sol2-bi.h (ASM_CPU64_DEFAULT_SPEC): Add -TSO.
2283 (DEF_ARCH64_SPEC): Likewise.
2284
2285 Thu Apr 3 09:53:40 CEST 2003 Jan Hubicka <jh@suse.cz>
2286
2287 * i386.c (constant_address_p): Use legitimate_constant_p.
2288 (legitimate_address_p): Do not use CONSTANT_ADDRESS_P.
2289
2290 2003-04-02 Kazu Hirata <kazu@cs.umass.edu>
2291
2292 * config/h8300/h8300-protos.h: Add a prototype for
2293 gtle_operator.
2294 * config/h8300/h8300.c (gtle_operator): New.
2295 * config/h8300/h8300.h (PREDICATE_CODES): Add an entry for
2296 gtle_operator.
2297 * config/h8300/h8300.md (a peephole2): Generalize to accept GT
2298 and LE.
2299
2300 2003-04-02 Richard Henderson <rth@redhat.com>
2301
2302 * libgcc-std.ver (_Unwind_GetCFA): New.
2303 * unwind-dw2.c (_Unwind_GetCFA): New.
2304 * unwind-libunwind.c (_Unwind_GetCFA): New.
2305 * unwind-sjlj.c (_Unwind_GetCFA): New.
2306 * unwind.h: Declare it.
2307
2308 Thu Apr 3 00:31:21 CEST 2003 Jan Hubicka <jh@suse.cz>
2309
2310 PR inline-asm/8088
2311 * i386.c (ix86_hard_regno_mode_ok): Return 0 for MMX/SSE registers
2312 when MMX/SSE is not available.
2313
2314 2003-04-02 Mike Stump <mrs@apple.com>
2315
2316 * doc/install.texi (Specific): Update pointers to apple.com.
2317
2318 Thu Apr 3 00:18:49 CEST 2003 Jan Hubicka <jh@suse.cz>
2319
2320 * i386.c (override_options): Disable red zone by default on i386.
2321 (compute_frame_layout, ix86_force_to_memory, ix86_free_from_memory):
2322 Do not test TARGET_64BIT together with TARGET_RED_ZONE
2323
2324 2003-04-02 Kazu Hirata <kazu@cs.umass.edu>
2325
2326 * config/h8300/h8300.md (a peephole2): Tighten the condition.
2327
2328 2003-04-02 Richard Henderson <rth@redhat.com>
2329
2330 * longlong.h (umul_ppmm) [alpha]: Use __builtin_alpha_umulh.
2331
2332 2003-04-02 Kazu Hirata <kazu@cs.umass.edu>
2333
2334 * config/h8300/h8300.md (a peephole2): New.
2335
2336 2003-04-02 Richard Henderson <rth@redhat.com>
2337
2338 * except.c (sjlj_find_directly_reachable_regions): Recognize when
2339 must-not-throw region has been deleted.
2340
2341 2003-04-02 Richard Henderson <rth@redhat.com>
2342
2343 * dwarf2out.c (output_call_frame_info): Ignore fde->nothrow as an
2344 optimization when flag_exceptions not enabled.
2345
2346 2003-04-02 Vladimir Makarov <vmakarov@redhat.com>
2347
2348 * config/rs6000/rs6000.c
2349 (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD): Redefine the
2350 macros.
2351 (rs6000_issue_rate): Add case for 8540.
2352 (rs6000_use_sched_lookahead): New function.
2353
2354 * config/rs6000/8540.md: Rename SIU units into SU ones and MIU
2355 units into MU ones.
2356 (ppc8540_branch, ppc8540_cr_logical): Add one cycle in the
2357 reservation before retirement.
2358 (ppc8540_multiply, ppc8540_load, ppc8540_store,
2359 ppc8540_simple_float, ppc8540_vector_load, ppc8540_vector_store):
2360 Remove additional cycle in the reservation before retirement.
2361 (ppc8540_mfcr, ppc8540_mtcrf, ppc8540_mtjmpr): Add missed
2362 reservation of ppc8540_issue.
2363
2364 2003-04-02 Andreas Schwab <schwab@suse.de>
2365
2366 * real.c (decode_ieee_single): Fix decoding of SNaN bit.
2367
2368 2003-04-01 Richard Henderson <rth@redhat.com>
2369
2370 * except.c (convert_from_eh_region_ranges_1): Smash REG_EH_REGION
2371 notes for nothrow calls if flag_forced_unwind_exceptions.
2372 (build_post_landing_pads): Mind flag_forced_unwind_exceptions.
2373 (sjlj_find_directly_reachable_regions): Likewise.
2374 (reachable_handlers): Likewise.
2375 (can_throw_external): Likewise.
2376 (collect_one_action_chain): Record cleanups after catch-all and
2377 must-not-throw if flag_forced_unwind_exceptions.
2378 * flags.h (flag_forced_unwind_exceptions): Declare.
2379 * toplev.c (flag_forced_unwind_exceptions): New.
2380 (lang_independent_options): Add it.
2381 * doc/invoke.text: Add it.
2382
2383 2003-04-01 David Mosberger <davidm@hpl.hp.com>
2384
2385 * config/ia64/crti.asm: Clean up trailing whitespace.
2386 Remove trailing hashes (#) from identifiers.
2387
2388 * config/ia64/crtn.asm: Ditto.
2389
2390 * config/ia64/crtend.asm: Remove trailing hashes (#) from
2391 identifiers.
2392 (__do_global_ctors_aux): Align to 32-byte boundary. Add unwind
2393 directives. Drop explicit bundling---it just makes the code
2394 harder to read. Don't save/restore gp needlessly.
2395
2396 * config/ia64/crtbegin.asm: Remove trailing hashes (#) from
2397 identifiers (they're only needed if the identifier would clash
2398 with a register name otherwise).
2399 (__do_global_dtors_aux): Align to 32-byte boundary. Add unwind
2400 directives. Drop explicit bundling---it just makes the code
2401 harder to read.
2402 (__do_jv_register_classes): Ditto.
2403 (.fini_array): Remove "progbits" (newer
2404 assemblers don't like wrong section-types).
2405 (.init_array): Ditto.
2406
2407 2003-04-01 Roger Sayle <roger@eyesopen.com>
2408
2409 PR fortran/9974
2410 * gcse.c (reg_killed_on_edge): New function to test whether the
2411 given reg is overwritten by any instruction queued on an edge.
2412 (bypass_block): Ignore substitutions killed on incoming edges.
2413 Don't bypass outgoing edges that have queued instructions.
2414
2415 2003-04-01 Alexandre Oliva <aoliva@redhat.com>
2416
2417 * real.h (EXP_BITS): Make room for...
2418 (struct real_value): ... added canonical bit.
2419 (struct real_format): Added pnan.
2420 (mips_single_format, mips_double_format, mips_extended_format,
2421 mips_quad_format): New.
2422 * real.c: Copy p to pnan in all formats.
2423 (get_canonical_qnan, get_canonical_snan): Set canonical bit.
2424 (real_nan): Use pnan to compute significand's shift.
2425 (real_identical): Disregard significand in canonical
2426 NaNs.
2427 (real_hash): Likewise. Take signalling into account.
2428 (encode_ieee_single, encode_ieee_double, encode_ieee_quad):
2429 Disregard significand bits in canonical NaNs. Set all bits of
2430 canonical NaN if !qnan_msb_set.
2431 (encode_ibm_extended, decode_ibm_extended): Likewise. Use
2432 qnan_msb_set to tell the base double format.
2433 (ibm_extended_format): Use 53 as pnan.
2434 (mips_single_format, mips_double_format, mips_extended_format,
2435 mips_quad_format): Copied from the corresponding ieee/ibm
2436 formats, with qnan_msb_set false.
2437 * config/mips/iris6.h (MIPS_TFMODE_FORMAT): Use mips_extended_format.
2438 * config/mips/linux64.h (MIPS_TFMODE_FORMAT): Use mips_quad_format.
2439 * config/mips/mips.c (override_options): Use mips_single_format
2440 and mips_double_format. Default TFmode to mips_quad_format.
2441 * config/mips/t-linux64 (tp-bit.c): Define QUIET_NAN_NEGATED.
2442 * config/mips/t-irix6: Likewise.
2443 * config/mips/t-mips (fp-bit.c, dp-bit.c): Likewise.
2444 * config/fp-bit.c (pack_d, unpack_d): Obey it.
2445
2446 2003-04-01 Geoffrey Keating <geoffk@apple.com>
2447
2448 * unwind-dw2-fde-darwin.c (DESTRUCTOR_MAY_BE_CALLED_LIVE): New.
2449 (live_image_destructor): Reset image to initial state.
2450 (examine_objects): Set DESTRUCTOR_MAY_BE_CALLED_LIVE.
2451
2452 2003-04-01 Eric Botcazou <ebotcazou@libertysurf.fr>
2453
2454 * config/sparc/sparc.c (input_operand): Accept bare
2455 CONSTANT_P_RTX operands.
2456
2457 2003-04-01 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
2458
2459 * gcse.c (struct ls_expr): Added pattern_regs field.
2460 (ldst_entry): Initialize it.
2461 (extract_mentioned_regs, extract_mentioned_regs_helper): New.
2462 (store_ops_ok): Use regs precomputed by them.
2463 (find_loads, store_killed_in_insn, load_kills_store): Change return
2464 type to bool.
2465 (store_killed_before, store_killed_after): Take position of register
2466 set in account.
2467 (reg_set_info): Store position of the setter.
2468 (gcse_main): Enable store motion.
2469 (mems_conflict_for_gcse_p): Enable load motion of non-symbol mems.
2470 (pre_insert_copy_insn, update_ld_motion_stores, insert_store): Prevent rtl
2471 sharing.
2472 (simple_mem): Enable store motion of non-symbol mems.
2473 (regvec): Type changed.
2474 (LAST_AVAIL_CHECK_FAILURE): New.
2475 (compute_store_table_current_insn): New.
2476 (build_store_vectors): Computation of availability and anticipatability
2477 moved ...
2478 (compute_store_table, find_moveable_store): ... here.
2479 (delete_store): Remove senseless comment.
2480 (store_motion): Reorganize.
2481
2482 2003-04-01 Kevin Buettner <kevinb@redhat.com>
2483
2484 * config/mips/mips.c (override_options): Provide mappings for
2485 HI_REGNUM and LO_REGNUM.
2486 * config/mips/mips.h (MD_DBX_FIRST): Define.
2487
2488 2003-04-01 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
2489
2490 * combine.c (merge_outer_ops): Fix typo.
2491
2492 * varasm.c (make_decl_one_only): Revert 2003-03-09 patch.
2493
2494 2003-04-01 David Edelsohn <edelsohn@gnu.org>
2495
2496 * config/rs6000/{40x.md,603.md,6xx.md,7450.md,7xx.md,mpc.md,
2497 power4.md,rios1.md,rios2.md,rs64.md}: Change mult_compare to
2498 imul_compare. Add lmul_compare.
2499 * config/rs6000/power4.md: Bump some latencies. Model extra cycle
2500 in second pair of dispatch slots. Model stores more accurately.
2501 Tweak multiply model. Add bypasses for CR instructions dependent
2502 on complicated compares.
2503 * config/rs6000/rs6000.md (mulsi3): Name imul_compare patterns.
2504 (muldi3): Add lmul_compare patterns.
2505 * config/rs6000/rs6000.c (rs6000_variable_issue): Move FPLOAD_UX
2506 and FPSTORE_UX to split instructions and add COMPARE,
2507 DELAYED_COMPARE, IMUL_COMPARE, LMUL_COMPARE, IDIV, LDIV.
2508 (rs6000_adjust_cost): Add IMUL_COMPARE and LMUL_COMPARE.
2509 (rs6000_rtx_costs): Separate POWER4 multiply case.
2510
2511 2003-04-01 Ulrich Weigand <uweigand@de.ibm.com>
2512
2513 * config/s390/s390.c (s390_fixup_clobbered_return_reg):
2514 Do nothing if __builtin_return_address was not used.
2515
2516 Tue Apr 1 18:18:23 CEST 2003 Jan Hubicka <jh@suse.cz>
2517
2518 * i386.md (test patterns): Allow memory operand in operand1.
2519
2520 2003-02-31 Aldy Hernandez <aldyh@redhat.com>
2521
2522 * testsuite/gcc.c-torture/execute/simd-3.c: New.
2523
2524 * expr.c (expand_expr): Handle VECTOR_CST.
2525 (const_vector_from_tree): New.
2526
2527 * varasm.c (output_constant): Handle VECTOR_CST.
2528
2529 * c-typeck.c (digest_init): Build a vector constant from a
2530 VECTOR_TYPE.
2531
2532 * config/rs6000/rs6000.c: Remove prototype for
2533 easy_vector_constant.
2534 (easy_vector_constant): Add mode parameter. Rewrite to handle
2535 more easy constants.
2536 (rs6000_emit_move): Pass mode to easy_vector_constant.
2537 Call emit_easy_vector_insn for SPE V2SI vector constant moves.
2538 (emit_easy_vector_insn): New.
2539 (easy_vector_same): New.
2540 (EASY_VECTOR_15): New macro.
2541 (EASY_VECTOR_15_ADD_SELF): New macro.
2542 (bdesc_2arg): Rename to xorv2si3.
2543 (easy_vector_constant_add_self): New.
2544 (input_operand): Allow vector constants.
2545
2546 * config/rs6000/rs6000.h (PREDICATE_CODES): Add
2547 easy_vector_constant, easy_vector_constant_add_self.
2548 (EXTRA_CONSTRAINT): Add 'W'.
2549
2550 * config/rs6000/rs6000-protos.h: Add prototype for
2551 easy_vector_constant, emit_easy_vector_insn.
2552
2553 * config/rs6000/altivec.md (xorv8hi3): New.
2554 (xorv16qi3): New.
2555 Remove all _const0 patterns.
2556 (movv4si_internal): Rewrite to use code. Add vector constant to
2557 vector alternative. Add splitter.
2558 (movv8hi_internal): Same.
2559 (movv16qi_internal): Same.
2560 (movv4sf_internal): Same.
2561 Change the unspecs for vspltis* to use constants.
2562
2563 * config/rs6000/spe.md ("xorv4hi3"): New.
2564 ("spe_evxor"): Rename to xorv2si3.
2565 ("xorv1di3"): New.
2566 Remove all _const0 patterns.
2567 (movv2si_internal): Rewrite to use code. Add vector constant to
2568 alternatives. Add splitter.
2569 (movv4hi_internal): Add vector constant to alternatives.
2570 (movv1di_internal): Same.
2571 (movv2sf_internal): Same.
2572
2573 2003-03-31 Mark Mitchell <mark@codesourcery.com>
2574
2575 PR c/9936
2576 * c-decl.c (grokdeclarator): Clear SAVE_EXPR_CONTEXT for
2577 variably-sized arrays in parameters.
2578 (set_save_expr_context): New function.
2579 (c_expand_body): Use it, via walk_tree.
2580
2581 2003-03-31 Eric Christopher <echristo@redhat.com>
2582
2583 * combine.c (can_combine_p): Allow ZERO_EXTRACT and STRICT_LOW_PART.
2584 (combinable_i3pat): Remove call to expand_field_assignment and
2585 #if 0'd code.
2586
2587 2003-03-31 Mark Mitchell <mark@codesourcery.com>
2588
2589 PR c++/10278
2590 * c-common.c (finish_label_address_expr): Handle the
2591 error_mark_node.
2592
2593 2003-03-31 Richard Henderson <rth@redhat.com>
2594
2595 * real.c (real_identical): Reorg so as to not compare
2596 signalling for normals.
2597
2598 2003-03-31 Stephane Carrez <stcarrez@nerim.fr>
2599
2600 * config/m68hc11/m68hc11.c (hard_reg_operand): Check the mode.
2601
2602 2003-03-31 Stephane Carrez <stcarrez@nerim.fr>
2603
2604 * config/m68hc11/m68hc11.c (m68hc11_gen_movhi): Don't rely on REG_WAS_0
2605 notes as they are boggus.
2606 (m68hc11_gen_movqi): Likewise.
2607
2608 2003-03-31 Stephane Carrez <stcarrez@nerim.fr>
2609
2610 * config/m68hc11/m68hc11.c (expand_prologue): For an interrupt handler
2611 save the soft registers after the frame pointer so that gdb can unwind
2612 the frame more easily.
2613 (expand_epilogue): Likewise in opposite order; allow to use X register
2614 as scratch if the return value is by reference.
2615
2616 2003-03-31 Jason Merrill <jason@redhat.com>
2617
2618 PR java/10145
2619 * stor-layout.c (update_alignment_for_field): Respect
2620 DECL_USER_ALIGN for zero-length bitfields, too.
2621 * c-decl.c (finish_struct): Don't set DECL_ALIGN for normal
2622 fields.
2623
2624 2003-03-31 Matt Austern <austern@apple.com>
2625
2626 * cpppch.c (struct cpp_savedstate): Add defs and n_defs members.
2627 (count_defs): Keep track of number of defs as well as total size.
2628 (write_defs): Put every definition in cpp_savedstate's defs array.
2629 (comp_hashnode): Define. Comparison function for qsort.
2630 (cpp_write_pch_deps): Sort definitions before writing them.
2631 (struct ht_node_list): Define. Like cpp_savedstate but simpler.
2632 (collect_ht_nodes): Define.
2633 (cpp_valid_state): When verifying that undefined identifiers in
2634 the pch file are still undefined, read a sorted list of undefined
2635 identifiers, collect all defined identifiers into a sorted list,
2636 and walk through both lists to make sure there's no match.
2637
2638 2003-03-31 Kazu Hirata <kazu@cs.umass.edu>
2639
2640 * config/h8300/h8300.md (a peephole2): New.
2641
2642 2003-03-31 Michael Matz <matz@suse.de>
2643
2644 * config/i386/i386.h (TARGET_FLT_EVAL_METHOD): Change 1 into 0.
2645
2646 2003-03-31 Segher Boessenkool <segher@koffie.nl>
2647
2648 PR target/10177
2649 * config/rs6000/rs6000.h (HARD_REGNO_RENAME_OK): New.
2650 * config/rs6000/rs6000.c (compute_vrsave_mask): Don't mark
2651 all call-clobbered registers as used.
2652
2653 2003-03-31 Michael Matz <matz@suse.de>
2654
2655 * cppexp.c (cpp_classify_number): Accept '.' after "0x".
2656 * testsuite/gcc.dg/cpp/c99-hexfloat-3.c: New file.
2657
2658 2003-03-31 Nathan Sidwell <nathan@codesourcery.com>
2659
2660 * gcov.c: Add -a & -u options.
2661 (struct arc_info): Add local_span, is_call_non_return,
2662 is_nonlocal_return, is_unconditional flags, remove is_call flag.
2663 (struct block_info): Add flags, is_call_site, is_nonlocal_return
2664 members. Make encodings a union with span member.
2665 (struct function_info): Add blocks_executed, line, src, line_next
2666 members.
2667 (struct coverage_info): Make branches a union with blocks member.
2668 (struct source_info): Add functions member.
2669 (object_summary, program_count): New global variables.
2670 (flag_all_blocks, flag_unconditional): New flags.
2671 (find_source, output_branch_count): New functions.
2672 (print_usage): Adjust.
2673 (options): Adjust.
2674 (process_args): Adjust.
2675 (read_graph_file) <GCOV_TAG_FUNCTION>: Adjust.
2676 <GCOV_TAG_BLOCKS>: Read flags.
2677 <GCOV_TAG_LINES>: Adjust.
2678 (read_count_file): Process SUMMARY tags.
2679 (solve_flow_graph): Set is_unconditional and clear is_call_site
2680 appropriately.
2681 (add_branch_counts): Adjust. Don't count unconditional branches.
2682 (add_line_counts): Deal with all-blocks mode, accumulate block
2683 coverage.
2684 (accumulate_line_counts): Adjust, generate local spanning tree for
2685 all-blocks mode.
2686 (output_lines): Adjust.
2687 * profile.c (branch_prob): Alter GCOV_FUNCTION_TAG record.
2688 * doc/gcov.texi: Document.
2689
2690 2003-03-31 Kazu Hirata <kazu@cs.umass.edu>
2691
2692 * config/h8300/h8300.md: Organize peephole2's that transform
2693 (compare (reg:HI) (const_int)).
2694
2695 2003-03-31 Roger Sayle <roger@eyesopen.com>
2696
2697 * emit-rtl.c (dconstm2, dconsthalf): New real constants.
2698 (init_emit_once): Initialize dconstm2 and dconsthalf here.
2699 * real.h (dconstm2, dconsthalf): Add prototypes here.
2700 * real.c (real_sqrt): Use dconsthalf rather than local copy.
2701 * builtins.c (fold_builtin): When optimizing sqrt(exp(x)) as
2702 exp(x/2.0) remember to fold the division if possible.
2703 Fold sin(0.0) as 0.0, cos(0.0) as 1.0, pow(x,1.0) as x,
2704 pow(x,-1.0) as 1.0/x, pow(x,2.0) as x*x, pow(x,-2.0) as
2705 1.0/(x*x) and pow(x,0.5) as sqrt(x).
2706
2707 2003-03-31 Kazu Hirata <kazu@cs.umass.edu>
2708
2709 * config/h8300/h8300.md (a new peephole2): New.
2710
2711 2003-03-31 Richard Sandiford <rsandifo@redhat.com>
2712
2713 * gcse.c (simple_mem): Return false for floating-point accesses
2714 if flag_float_store is true.
2715
2716 2003-03-30 Roger Sayle <roger@eyesopen.com>
2717
2718 * gcse.c (gcse_constant_p): New function to identify constants
2719 suitable for constant propagation, including COMPARE with two
2720 integer constant arguments.
2721 (hash_scan_set): Use gcse_constant_p.
2722 (find_avail_set): Likewise.
2723 (cprop_insn): Likewise.
2724 (do_local_cprop): Likewise.
2725 (find_implicit_sets): Likewise.
2726 (find_bypass_set): Likewise.
2727
2728 2003-03-30 Matt Kraai <kraai@alumni.cmu.edu>
2729
2730 * except.h: Remove definition of varray_type.
2731
2732 2003-03-30 Richard Henderson <rth@redhat.com>
2733
2734 PR opt/10011, opt/10252:
2735 * toplev.c (rest_of_compilation): Run purge_builtin_constant_p
2736 before post-gcse cse pass.
2737
2738 2003-03-30 Roger Sayle <roger@eyesopen.com>
2739
2740 * dojump.c (do_jump): Copy SUBREGs into a pseudo for comparison.
2741
2742 2003-03-30 DJ Delorie <dj@redhat.com>
2743
2744 * profile.c (instrument_edges): Make sure any newly created
2745 jump insns have correct jump label info.
2746
2747 2003-03-30 Richard Henderson <rth@redhat.com>
2748
2749 * cfgbuild.c (make_edges): Use tablejump_p.
2750 * cfgcleanup.c (label_is_jump_target_p): Likewise.
2751 * cfglayout.c (cfg_layout_can_duplicate_bb_p): Likewise.
2752 * cfgrtl.c (flow_delete_block_noexpunge): Likewise.
2753 (try_redirect_by_replacing_jump): Likewise.
2754 (redirect_edge_and_branch): Likewise.
2755 * cse.c (fold_rtx): Likewise.
2756 * jump.c (delete_related_insns): Likewise.
2757 * rtlanal.c (get_jump_table_offset): Likewise.
2758 * ssa-ccp.c (ssa_ccp_df_delete_unreachable_insns): Likewise.
2759
2760 2003-03-30 Gabriel Dos Reis <gdr@integrable-solutions.net>
2761
2762 * Makefile.in (STRICT_WARN): Don't warn for ISO C constructs.
2763 (STRICT2_WARN): Likewise.
2764
2765 2003-03-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2766
2767 PR other/6955
2768 * collect2.c (collect_wait): Use WCOREDUMP and fix output message.
2769 * system.h (WCOREDUMP, WCOREFLG): Define if necessary.
2770
2771 2003-03-30 Richard Henderson <rth@redhat.com>
2772
2773 PR c/10083
2774 * config/alpha/alpha.md (umuldi3_highpart): Change to expander;
2775 don't zero_extend const inputs.
2776
2777 2003-03-30 Kazu Hirata <kazu@cs.umass.edu>
2778
2779 * reload1.c (reload_cse_move2add): Fix a comment typo.
2780
2781 2003-03-30 Kazu Hirata <kazu@cs.umass.edu>
2782
2783 * config/h8300/h8300.md (a peephole2): Remove useless code.
2784
2785 2003-03-29 Kazu Hirata <kazu@cs.umass.edu>
2786
2787 * config/h8300/h8300.md (*iorsi3_and_ashift): New.
2788 (*iorsi3_and_lshiftrt): Likewise.
2789 (*iorsi3_zero_extract): Likewise.
2790
2791 2003-03-29 Kazu Hirata <kazu@cs.umass.edu>
2792
2793 * config/h8300/h8300.md (*insv_si_8_8): New.
2794 (*insv_si_8_8_lshiftrt_8): Likewise.
2795 (a peephole2): Likewise.
2796
2797 2003-03-29 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
2798
2799 * doc/contrib.texi: Add Eric Botcazou and Roger Sayle.
2800 Uniformly use bugfix instead of bug fix.
2801
2802 2003-03-29 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
2803
2804 PR doc/895
2805 * ONEWS: Remove those items that already appear in the EGCS
2806 release notes on our web pages.
2807
2808 2003-03-29 Alan Modra <amodra@bigpond.net.au>
2809
2810 * config/rs6000/rs6000.h (FUNCTION_VALUE_REGNO_P): Respect
2811 TARGET_HARD_FLOAT. Reformat.
2812 (FUNCTION_ARG_REGNO_P): Likewise, and remove unneeded casts.
2813
2814 2003-03-28 Albert Chin-A-Young <china@thewrittenword.com>
2815
2816 * gcc/fixinc/inclhack.def: Update solaris_mutex_init_1 to
2817 work on Solaris 2.5.1.
2818
2819 2003-03-28 Kazu Hirata <kazu@cs.umass.edu>
2820
2821 * config/h8300/h8300.md (*addsi3_and_r_1): Put under plus:SI
2822 section of h8300.md
2823 (*addsi3_and_nor_r_1): Likewise.
2824
2825 2003-03-29 Ulrich Weigand <uweigand@de.ibm.com>
2826
2827 * config/s390/s390.c (s390_emit_prologoue): Make sure backchain is
2828 set up before any trapping memory access if flag_non_call_exceptions.
2829
2830 2003-03-29 Alan Modra <amodra@bigpond.net.au>
2831
2832 * reload1.c (reload_as_needed): Allow a USE in asm reloads.
2833
2834 * loop.c: (find_mem_in_note_1, find_mem_in_note): Comment.
2835
2836 2003-03-28 Nathanael Nerode <neroden@gcc.gnu.org>
2837
2838 * configure.in: Clarify comments.
2839 * configure: Regenerate.
2840
2841 2003-03-28 Ulrich Weigand <uweigand@de.ibm.com>
2842
2843 * config/s390/s390.md ("literal_pool_31"): Output pool anchor
2844 label even if pool empty when generating PIC.
2845 ("literal_pool_31", "literal_pool_64"): Coding style cleanup.
2846
2847 2003-03-28 Kazu Hirata <kazu@cs.umass.edu>,
2848 Dhananjay Deshpande <dhananjayd@kpit.com>
2849
2850 PR target/10205
2851 * config/h8300/h8300.c (h8300_initial_elimination_offset):
2852 Correct the offset computation when TARGET_NORMAL.
2853
2854 2003-03-28 Eric Botcazou <ebotcazou@libertysurf.fr>
2855
2856 PR target/10067
2857 * config/sparc/sparc.md (jump pattern): Correct order
2858 when issuing the annuling marker.
2859
2860 2003-03-28 Eric Botcazou <ebotcazou@libertysurf.fr>
2861
2862 PR c/8281
2863 * config/sparc/sparc.md (movdi_insn_sp32_v9): Remove 'f-f' alternative.
2864 (movdi reg/reg split): Match only on sparc32, and v9 when int regs.
2865
2866 2003-03-28 Alan Modra <amodra@bigpond.net.au>
2867
2868 * config/alpha/elf.h (ASM_OUTPUT_ALIGNED_BSS): Remove unnecessary
2869 globalize_label.
2870 * config/arm/unknown-elf.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
2871 * config/i960/i960.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
2872 * config/m32r/m32r.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
2873 * config/mips/elf.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
2874 * config/mips/linux.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
2875 * config/sparc/sparc.h (ASM_OUTPUT_ALIGNED_BSS): Likewise.
2876 * config/v850/v850.c (v850_output_aligned_bss): Likewise.
2877
2878 2003-03-28 Alan Modra <amodra@bigpond.net.au>
2879
2880 * loop.c: (find_mem_in_note_1, find_mem_in_note): New functions.
2881 (replace_loop_mems): Add "written" param. Remove invalid REG_EQUAL
2882 notes after hoisting.
2883 (load_mems): Adjust replace_loop_mems call.
2884
2885 2003-03-28 Eric Botcazou <ebotcazou@libertysurf.fr>
2886 Richard Henderson <rth@redhat.com>
2887
2888 PR target/10114 and PR target/10084
2889 * dwarf2out.c (mem_loc_descriptor): Handle LO_SUM.
2890
2891 2003-03-27 Richard Henderson <rth@redhat.com>
2892
2893 * config/alpha/alpha.md (adddi_er_high_l): Valid only after reload.
2894
2895 2003-03-27 Roger Sayle <roger@eyesopen.com>
2896
2897 * fold-const.c (fold_inf_compare): New function to simplify FP
2898 comparisons against +Infinity or -Infinity.
2899 (fold): Optimize floating point comparisons against Infs and NaNs.
2900
2901 2003-03-27 Janis Johnson <janis187@us.ibm.com>
2902
2903 * libgcov.c: Provide only dummy functions if libc is not available.
2904
2905 2003-03-27 Richard Henderson <rth@redhat.com>
2906
2907 * real.h (struct real_value): Add signalling.
2908 (EXP_BITS): Decrement.
2909 * real.c (get_canonical_qnan): Don't set MSB-1.
2910 (get_canonical_snan): Likewise. Set signalling.
2911 (real_identical): Compare signalling.
2912 (round_for_format): Remove force-one-bit on code.
2913 (real_nan): Likewise. Set signalling.
2914 (encode_ieee_single): Add force-one-bit code; honor signalling.
2915 (encode_ieee_double, encode_ieee_extended, encode_ieee_quad): Likewise.
2916 (decode_ieee_single): Set signalling.
2917 (decode_ieee_double, decode_ieee_extended, decode_ieee_quad): Likewise.
2918
2919 2003-03-27 Olivier Hainque <hainque@act-europe.fr>
2920
2921 PR ada/9953
2922 * ada/Makefile.in (gnatlib configuration for HPUX): Split
2923 the general section for HPUX into specific sections for
2924 HPUX 10 and HPUX 11. Fix the setting of TGT_LIB in the HPUX
2925 11 case.
2926
2927 2003-03-27 Glen Nakamura <glen@imodulo.com>
2928
2929 PR opt/10087
2930 * loop.c (loop_givs_reduce): Skip bivs with duplicate locations
2931 while incrementing giv.
2932 (record_biv): Check for duplicate biv locations and
2933 set (struct induction *) v->same if found.
2934
2935 2003-03-27 David Mosberger <davidm@hpl.hp.com>
2936
2937 * unwind-libunwind.c (uw_frame_state_for): Adjust for libunwind
2938 v0.9 API change: replace read of UNW_REG_HANDLER with
2939 unw_get_proc_info().
2940 (_Unwind_GetLanguageSpecificData): Replace read of UNW_REG_LSDA
2941 with unw_get_proc_info().
2942 (_Unwind_GetRegionStart): Replace UNW_REG_PROC_START with
2943 unw_get_proc_info().
2944
2945 2003-03-27 Vladimir Makarov <vmakarov@redhat.com>
2946
2947 * config/rs6000/8540.md: Use presence_set instead of absence_set.
2948
2949 2003-03-26 Richard Henderson <rth@redhat.com>
2950
2951 * c-decl.c (finish_function): Always defer if DECL_DECLARED_INLINE_P.
2952
2953 2003-03-26 Roger Sayle <roger@eyesopen.com>
2954
2955 PR bootstrap/10051, PR bootstrap/10169.
2956 * mips-tfile.c (init_file): Don't provide a static initializer.
2957 (initialize_init_file): Initialize the contents of init_file.
2958 (add_file): Call initialize_init_file if not already initialized.
2959
2960 2003-03-26 Ulrich Weigand <uweigand@de.ibm.com>
2961
2962 * config/s390/s390.c (s390_optimize_prolog): Do not save/restore
2963 registers used for global asm variables.
2964 (s390_frame_info, s390_arg_frame_offset): Likewise.
2965 (s390_emit_prologue, s390_emit_epilogue): Likewise.
2966
2967 2003-03-26 Vladimir Makarov <vmakarov@redhat.com>
2968
2969 * config/rs6000/8540.md: New file.
2970
2971 * config/rs6000/{40x.md, 603.md, 6xx.md, 7450.md, 7xx.md, mpc.md,
2972 power4.md, rios1.md, rios2.md, rs64.md}: Add mult_compare to
2973 reservations for imul.
2974
2975 * config/rs6000/rs6000.md: Include 8540.md. Change
2976 delayed_compare onto mult_compare for insns generating
2977 multiplication.
2978 (mult_compare, fpsimple, brinc, vecdiv, veccmpsimple, vecfdiv):
2979 New type attribute values.
2980
2981 * config/rs6000/spe.md (*negsf2_gp, *abssf2_gpr): Use type
2982 fpsimple instead of fp.
2983 (*divsf3_gpr): Use type vecfdiv instead of fp.
2984 (spe_evfsabs, spe_evfsnabs, spe_evfsneg): Use type vecsimple
2985 instead of vecfloat.
2986 (spe_evfsdive): Use type vecfdiv instead of vecfloat.
2987 (spe_brinc): Use type brinc instead of veccomplex.
2988 (spe_evaddw, spe_evaddiw): Use type vecsimple instead of
2989 veccomplex.
2990 (spe_evdivws, spe_evdivwu): Use type vecdiv instead of veccomplex.
2991 (*movv2si_internal, *movv1di_internal, *movv4hi_internal,
2992 *movv2sf_internal): Define type attribute values for all
2993 alternatives.
2994 (cmpsfeq_gpr, cmpsfgt_gpr, cmpsflt_gpr): Use type veccmp instead
2995 of fpcompare.
2996 (tstsfeq_gpr, tstsfgt_gpr, tstsflt_gpr): Use type veccmpsimple
2997 instead of fpcompare.
2998
2999 2003-03-26 David Edelsohn <edelsohn@gnu.org>
3000
3001 * config/rs6000/power4.md: Allow delay between dispatch and
3002 function units for simple instructions. Correct store units.
3003 Allow branch to occupy as many dispatch slots as necessary.
3004
3005 2003-03-26 Jakub Jelinek <jakub@redhat.com>
3006
3007 * config/ia64/ia64.c (ia64_expand_op_and_fetch): Fix comment.
3008 (ia64_expand_compare_and_swap): Use always DImode ar.ccv,
3009 zero extend old to it.
3010 * config/ia64/ia64.md (cmpxchg_acq_si): Remove mode from ccv
3011 operand.
3012
3013 2003-03-26 Eric Botcazou <ebotcazou@libertysurf.fr>
3014
3015 PR target/7784
3016 * reload.c (find_reloads_address): Handle
3017 (PLUS (PLUS (REG) (REG)) (CONST_INT)) form for
3018 all base registers.
3019
3020 2003-03-25 Marcelo Abreu <mmabreu@inf.ufrgs.br>
3021
3022 PR other/10203
3023 * version.c: Reference the GCC web site in the URL.
3024
3025 2003-03-26 Alan Modra <amodra@bigpond.net.au>
3026
3027 * c-incpath.c (add_standard_paths): Add both "translated" and
3028 non-translated header paths.
3029
3030 2003-03-25 Loren James Rittle <ljrittle@acm.org>
3031
3032 * doc/install.texi (*-*-freebsd*): Update with known status.
3033
3034 2003-03-21 Jason Merrill <jason@redhat.com>
3035
3036 PR optimization/10171
3037 * unroll.c (unroll_loop): Don't delete the jump at the end unless
3038 we also delete a jump at the beginning.
3039
3040 2003-03-25 Stephane Carrez <stcarrez@nerim.fr>
3041
3042 * doc/contrib.texi (Contributors): Mention self as 68HC11/68HC12
3043 contributor.
3044
3045 Tue Mar 25 20:35:51 CET 2003 Jan Hubicka <jh@suse.cz>
3046
3047 * i386.c (ix86_rtx_costs): For -fpic and x86-64 local symbolic
3048 constants are not expensive.
3049
3050 Mon Mar 24 20:03:03 CET 2003 Jan Hubicka <jh@suse.cz>
3051
3052 PR opt/10056
3053 * cfglayout.c (fixup_reorder_chain): Fix dealing with the conditional
3054 jump jumping to the next instruction.
3055 * cfgrtl.c (force_nonfallthru_and_redirect): Likewise.
3056
3057 2003-03-25 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
3058
3059 * doc/passes.texi (Passes): Properly document that we do not
3060 perform jump2 any longer; remove command-line option -dJ.
3061
3062 2003-03-25 Eric Botcazou <ebotcazou@libertysurf.fr>
3063
3064 PR optimization/8746
3065 * config/i386/i386.md (and promoting splitters): Disable HImode to
3066 SImode promoting when the sign bit matters and is not preserved, or
3067 when TARGET_FAST_PREFIX is true. Disable promoting when optimizing
3068 for size.
3069
3070 2003-03-24 Kazu Hirata <kazu@cs.umass.edu>
3071
3072 * config/h8300/h8300.md (a peephole2): Extend to support loads
3073 in QImode and HImode.
3074
3075 2003-03-24 Stephane Carrez <stcarrez@nerim.fr>
3076
3077 * config/m68hc11/t-m68hc11-gas (LIB1ASMFUNCS): Add _call_far and
3078 _return_far
3079 (MULTILIB_OPTIONS): Don't multilib on -mlong-calls.
3080 (MULTILIB_EXCEPTIONS): Likewise.
3081 * config/m68hc11/m68hc11.md ("call"): Support far calls for 68HC11
3082 by calling some board support routine.
3083 ("call_value"): Likewise.
3084 ("*return_void"): Likewise for return.
3085 ("*return_16bit"): Likewise.
3086 ("*return_32bit"): Likewise.
3087 * config/m68hc11/m68hc11.h (ASM_DECLARE_FUNCTION_NAME): Generate .far
3088 for 68HC11 too.
3089 (DWARF2_ADDR_SIZE): Use 4 so that addresses can
3090 * config/m68hc11/m68hc11.c (m68hc11_override_options): Accept
3091 -mlong-calls for 68HC11.
3092 * config/m68hc11/larith.asm (declare_near): New macro.
3093 (__premain, ___negsi2, ___one_cmplsi2, ___ashlsi3): Use it.
3094 (___ashrsi3, ___lshrsi3, ___lshrhi3, ___lshlhi3): Likewise.
3095 (___rotrhi3, ___rotlhi3, ___ashrhi3, ___ashrqi3): Likewise.
3096 (___lshlqi3, __divmodhi4, ___mulqi3, ___mulhi3): Likewise.
3097 (__mulhi32): Likewise.
3098 (ret): Update macro for 68HC11.
3099 (__far_trampoline): Implement for 68HC11.
3100 (__call_a16, __call_a32, __return_void, __return_16): New support
3101 routines for 68HC11 memory bank switching calling support.
3102 (__return_32): Likewise.
3103
3104 2003-03-24 Neil Booth <neil@daikokuya.co.uk>
3105
3106 * toplev.c (independent_decode_option): Don't skip a 'Y' prefix.
3107
3108 2003-03-24 Janis Johnson <janis187@us.ibm.com>
3109
3110 * doc/install.texi (Testing): Mention test result links from build
3111 status pages.
3112
3113 2003-03-24 Mark Mitchell <mark@codesourcery.com>
3114
3115 * function.c (put_var_into_stack): Change bool parameter to int.
3116 (gen_mem_addressof): Likewise.
3117 * rtl.h (gen_mem_addressof): Likewise.
3118 * tree.h (put_var_into_stack): Likewise.
3119 * config/alpha/alpha.c (alpha_gp_save_rtx): Adjust call to
3120 gen_mem_addressof or put_var_into_stack.
3121 * config/c4x/c4x.c (c4x_expand_builtin): Likewise.
3122 * config/ia64/ia64.c (spill_tfmode_operand): Likewise.
3123
3124 2003-03-24 Kazu Hirata <kazu@cs.umass.edu>
3125
3126 * config/h8300/h8300.md (a peephole2): New.
3127
3128 2003-03-24 Jakub Jelinek <jakub@redhat.com>
3129
3130 * dojump.c (do_jump): Handle UNSAVE_EXPR specially.
3131
3132 2003-03-24 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
3133
3134 * doc/contrib.texi (Contributors): Update Janis Johnson.
3135
3136 2003-03-23 Eric Botcazou <ebotcazou@libertysurf.fr>
3137
3138 PR target/10072
3139 * combine.c (simplify_if_then_else): Check that the mode
3140 has MODE_INT class before applying the (OP Z (mult COND C2))
3141 transformation.
3142
3143 2003-03-23 Eric Botcazou <ebotcazou@libertysurf.fr>
3144
3145 PR optimization/9414
3146 * config/sparc/sparc.md (widening peepholes): Use
3147 widen_memory_access instead of change_address.
3148
3149 2003-03-23 Mark Mitchell <mark@codesourcery.com>
3150
3151 PR c++/7086
3152 * c-typeck.c (c_mark_addressable): Adjust calls to
3153 put_var_into_stack.
3154 * expr.c (expand_expr): Likewise.
3155 * function.c (put_var_into_stack): Add rescan parameter. Do not
3156 call fixup_var_refs when rescan is false.
3157 (gen_mem_addressof): Likewise.
3158 (assign_parms): Adjust calls to put_var_into_stack.
3159 (setjmp_protect): Likewise.
3160 (setjmp_protect_args): Likewise.
3161 * rtl.h (gen_mem_addressof): Change prototype.
3162 * stmt.c (expand_decl): Adjust calls to put_var_into_stack.
3163 * tree.h (put_var_into_stack): Change prototype.
3164
3165 2003-03-23 Arpad Beszedes <beszedes@cc.u-szeged.hu>
3166
3167 PR middle-end/9967
3168 * builtins.c (expand_builtin_fputs): When optimizing for size,
3169 don't transform fputs into fwrite.
3170
3171 2003-03-23 Glen Nakamura <glen@imodulo.com>
3172
3173 PR c/8224
3174 * fold-const.c (extract_muldiv_1): Don't pass through type conversions
3175 when signedness changes for division or modulus.
3176
3177 2003-03-24 Alan Modra <amodra@bigpond.net.au>
3178
3179 * config/rs6000/sysv4.h (ASM_OUTPUT_ALIGNED_BSS): Remove unnecessary
3180 globalize_label.
3181
3182 2003-03-23 Roger Sayle <roger@eyesopen.com>
3183
3184 PR c/10178
3185 * stmt.c (expand_end_case_type): Check for overflow in range when
3186 determining whether to use a bit-test implementation.
3187
3188 2003-03-23 Richard Henderson <rth@redhat.com>
3189
3190 * cfgcleanup.c (try_optimize_cfg): Allow merging of tablejumps
3191 before flow2.
3192 * cfgrtl.c (try_redirect_by_replacing_jump): Similarly.
3193
3194 2003-03-23 Richard Henderson <rth@redhat.com>
3195
3196 PR opt/10116
3197 * ifcvt.c (find_if_block): Disallow tablejump insns outgoing
3198 from then_bb or else_bb after flow2.
3199
3200 2003-03-23 Zack Weinberg <zack@codesourcery.com>
3201
3202 * configure.in: Check whether it is necessary to link against
3203 libm to use ldexp.
3204 * configure: Regenerate.
3205 * Makefile.in: Add LDEXP_LIB substitution variable.
3206
3207 2003-03-23 Kazu Hirata <kazu@cs.umass.edu>
3208
3209 * config/h8300/h8300.md: Fix comment typos.
3210
3211 2003-03-22 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
3212
3213 * pa.c (output_cbranch): Fix typo in comment.
3214
3215 2003-03-22 Richard Henderson <rth@redhat.com>
3216
3217 * cfgcleanup.c (insns_match_p): Do not do EQUIV substitution
3218 after reload.
3219
3220 2003-03-22 DJ Delorie <dj at redhat dot com>,
3221 Bruce Korb <bkorb at gnu dot org>
3222
3223 * fixinc/inclhack.def (solaris_mutex_init_1): New; Fix
3224 buggy Solaris 2.6 mutex/cond initializers.
3225 (solaris_mutex_init): Rename to solaris_mutex_init_2.
3226 * fixinc/fixincl.x: Regenerate.
3227 * fixinc/tests/base/pthread.h: Update.
3228 * fixinc/fixincl.c(initialize): be explicit about the default case
3229 and indicate verbose level when being very, very verbose.
3230 * fixinc/check.tpl(VERBOSE): provide a means for passing the value in
3231
3232 2003-03-22 Andreas Jaeger <aj@suse.de>
3233
3234 * config/i386/i386.c (ix86_init_machine_status): Return value.
3235
3236 2003-03-22 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
3237
3238 * pa.c (output_cbranch, output_bb, output_bvb): Output nop for
3239 conditional branch to the following instruction. Use next_real_insn
3240 instead of next_active_insn.
3241 (output_dbra, output_movb, jump_in_call_delay): Use next_real_insn
3242 instead of next_active_insn.
3243
3244 2003-03-22 Ulrich Weigand <uweigand@de.ibm.com>
3245
3246 * config/s390/s390.md ("movti", "*movdi_31", "*movdf_31"): Use 'o'
3247 instead of 'm' constraint in forced-split alternatives.
3248 ("*adddi3_31", "*subdi3_31"): Likewise. Also, pass 0 instead of 1 as
3249 VALIDATE_ADDRESS parameter to operand_subword.
3250
3251 2003-03-22 Kazu Hirata <kazu@cs.umass.edu>
3252
3253 * config/h8300/h8300.c (notice_update_cc): Correctly handle
3254 the case where the set destination is STRICT_LOW_PART.
3255
3256 2003-03-22 Svein E. Seldal <Svein.Seldal@solidas.com>
3257
3258 * config/c4x/t-c4x (INSTALL_LIBGCC): Make gcc recognize a c33 as a
3259 c30 instead of a c40 processor.
3260
3261 2003-03-22 Alan Modra <amodra@bigpond.net.au>
3262
3263 * combine.c (simplify_comparison <AND>): Use gen_int_mode. Tidy.
3264
3265 2003-03-21 Zack Weinberg <zack@codesourcery.com>
3266
3267 * c-common.c: Include intl.h.
3268 (shadow_warning): Rewrite to allow better diagnostic translations.
3269 * c-common.h: Update prototype of shadow_warning. Declare sw_kind enum.
3270 * c-decl.c (warn_if_shadowing): Update calls to shadow_warning;
3271 use it throughout.
3272 * Makefile.in (c-common.o): Add intl.h.
3273
3274 2003-03-21 Nathanael Nerode <neroden@gcc.gnu.org>
3275
3276 * config.gcc: Remove 'float_format'.
3277
3278 * fixproto: Define NULL and size_t in generated stdlib.h and
3279 unistd.h. Kill unused required_stdlib_h, required_unistd_h.
3280 Rearrange file generation loop for readability. Generate time.h,
3281 string.h if missing.
3282 * tsystem.h: Include <string.h>, <time.h> unconditionally.
3283 * config.gcc: Blow away POSIX defines.
3284
3285 2003-03-22 Stephane Carrez <stcarrez@nerim.fr>
3286
3287 * config/m68hc11/m68hc11.md ("call_value"): Fix trap check.
3288
3289 2003-03-22 Stephane Carrez <stcarrez@nerim.fr>
3290
3291 * config/m68hc11/m68hc11.h (ASM_DECLARE_FUNCTION_NAME): Fix typo in
3292 writing .interrupt command.
3293 * config/m68hc11/m68hc11.md ("call"): Look at the symbol to see
3294 if it's a far or near function.
3295 ("call_value"): Likewise.
3296 * config/m68hc11/m68hc11.c (m68hc11_attribute_table): Add far and
3297 near attributes.
3298 (m68hc11_handle_fntype_attribute): Accept attributes on methods.
3299 (m68hc11_override_options): Ignore -mlong-calls for 68HC11.
3300 (m68hc11_initial_elimination_offset): Set current_function_far
3301 according to attributes.
3302 (expand_prologue): Likewise.
3303 (trap_handler_symbol): New global to keep track of trap handlers.
3304 (m68hc11_encode_section_info): Mark symbol as far if needed; set
3305 trap symbol.
3306 (m68hc11_is_far_symbol): New function.
3307 (m68hc11_is_trap_symbol): New function.
3308 * config/m68hc11/m68hc11-protos.h (m68hc11_is_far_symbol): Declare.
3309 (m68hc11_is_trap_symbol): Declare.
3310
3311 2003-03-21 Jan Hubicka <jh@suse.cz>
3312
3313 * i386.c (ix86_compute_frame_layout): Recompute fast prologues
3314 only when amount of saved regs changed.
3315 (ix86_init_machine_status): Initialize use_fast_prologue_epilgoue_nregs.
3316 * i386.h (machine_function): New fields use_fast_prologue_epilgoue_nregs.
3317
3318 2003-03-21 Jan Hubicka <jh@suse.cz>
3319
3320 PR inline-asm/7916
3321 * function.c (instantiate_virtual_regs_lossage): New function.
3322 (instantiate_virtual_regs_1): Use it.
3323 (instantiate_virtual_regs): Do not continue in substition when insn has
3324 been deleted.
3325
3326 2003-03-21 Kazu Hirata <kazu@cs.umass.edu>
3327
3328 * combine.c (make_field_assignment): Fix a warning.
3329
3330 2003-03-21 Kazu Hirata <kazu@cs.umass.edu>
3331
3332 * config/h8300/h8300.md (*insv_si_1_n_lshiftrt_16): New.
3333
3334 2003-03-21 Dale Johannesen <dalej@apple.com>
3335
3336 * config/rs6000/rs6000.h (REG_ALLOC_ORDER): Increase
3337 priority for R2 on Darwin.
3338 (HARD_REGNO_MODE_OK): Don't accept R31 for DFmode.
3339
3340 2003-03-21 Kazu Hirata <kazu@cs.umass.edu>
3341
3342 * combine.c (make_field_assignment): Remove unnecessary AND
3343 when storing into zero_extract.
3344
3345 2003-03-21 Zack Weinberg <zack@codesourcery.com>
3346
3347 * aclocal.m4 (gcc_AC_EXAMINE_OBJECT, gcc_AC_C_FLOAT_FORMAT): Delete.
3348 * configure.in: Don't call gcc_AC_C_FLOAT_FORMAT.
3349 * defaults.h: Remove reference to HOST_FLOAT_WORDS_BIG_ENDIAN
3350 in comment.
3351
3352 2003-03-21 DJ Delorie <dj@redhat.com>
3353
3354 * optabs.c (init_integral_libfuncs): Make sure we init at least up
3355 to "long long" size words.
3356
3357 2003-03-21 Ulrich Weigand <uweigand@de.ibm.com>
3358
3359 * config/s390/s390.h: Do not include fixdfdi.h on s390x.
3360 (TARGET_64BIT): Define as compile-time constant when IN_LIBGCC2.
3361 (MIN_UNITS_PER_WORD): Do not define when IN_LIBGCC2.
3362
3363 2003-03-21 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
3364
3365 PR doc-bug/9813
3366 * doc/extend.texi: Move misplaced paragraph about underscores in
3367 variables in macros.
3368
3369 2003-03-21 Eric Botcazou <ebotcazou@libertysurf.fr>
3370 Richard Henderson <rth@redhat.com>
3371
3372 PR optimization/8366
3373 * config/sparc/sparc.h: (SYMBOLIC_CONST): New macro.
3374 (GO_IF_LEGITIMATE_ADDRESS): Use it. Reject the form
3375 PIC+SYMBOLIC_CONST in other modes than Pmode.
3376 (GO_IF_MODE_DEPENDENT_ADDRESS): Use it. Mark
3377 the form PIC+SYMBOLIC_CONST as mode dependent.
3378
3379 2003-03-21 DJ Delorie <dj@redhat.com>
3380
3381 * config/stormy16/stormy16.c (xstormy16_expand_arith): Make
3382 sure we always emit at least one insn.
3383
3384 2003-03-21 Christopher Faylor <cgf@redhat.com>
3385
3386 * config.gcc (i[34567]86-*-cygwin*): Use new common makefile
3387 stub t-cygming. Use common target header cygming.h. Add extra
3388 c_target_obj and cxx_target_obj file. Default cygwin to posix
3389 threading. Enforce i386 as float format.
3390 (i[34567]86-*-mingw*): Use new common makefile stub t-cygming.
3391 Remove cygwin.h as target header. Use common target header
3392 cygming.h Enforce i386 as float format. Correct typo.
3393 * config/i386/cygming.h: New file, containing definitions
3394 common to mingw32 and cygwin.
3395 * config/i386/cygwin.h: Remove definitions common to cygwin and
3396 mingw. Simplify special spec logic. Define "wrappers" around
3397 certain include path defines to accommodate -mno-cygwin.
3398 Remove some #if 0'ed code.
3399 (STANDARD_INCLUDE_DIR) Always define when not cross-compiling.
3400 (LINK_SPEC): Don't use cyg search prefix when -mno-cygwin.
3401 (GCC_DRIVER_HOST_INITIALIZATION): Define as call to mingw_scan.
3402 * config/i386/mingw32.h: Remove definitions common to cygwin and
3403 mingw.
3404 (EXTRA_OS_CPP_BUILTINS): Adjust.
3405 (TARGET_VERSION): Define.
3406 * config/i386/crtdll.h (EXTRA_OS_CPP_BUILTINS): Override
3407 mingw32.h definitions.
3408 (LIBGCC_SPEC): Add libmingwex.a as in mingw32.h.
3409 * config/i386/t-cygwin (EXTRA_GCC_OBJS): Define as cygwin1.o.
3410 Add compilation rules for cygwin1.o cygwin2.o.
3411 * config/i386/cygwin1.c: New file.
3412 * config/i386/cygwin2.c: New file.
3413 * config/i386/t-cygming: New makefile stub.
3414
3415 2003-03-20 Richard Henderson <rth@redhat.com>
3416
3417 * fold-const.c (extract_muldiv_1): Revert changing order of
3418 operands in case MULT_EXPR of 2003-02-16 patch.
3419
3420 2003-03-20 Daniel Berlin <dberlin@dberlin.org>
3421 Merge changes from new-regalloc-branch
3422
3423 From Michael Matz <matz@suse.de>
3424 * df.c (df_ref_record_1): Move init of loc to safe point.
3425 Only recurse on interesting things in parallels.
3426 Handle CLASS_CANNOT_CHANGE_MODE smarter.
3427 (df_uses_record): Ditto.
3428
3429 * df.h (DF_REF_MEM_OK): New enum member, used to mark ref's which
3430 it's already okay to use memory operands in (IE doesn't require
3431 adding another insn or anything).
3432
3433 2003-03-20 Richard Henderson <rth@redhat.com>
3434
3435 PR middle-end/6348
3436 * explow.c (allocate_dynamic_stack_space): Handle STACK_SIZE_MODE
3437 different from word_mode.
3438
3439 2003-03-20 Kazu Hirata <kazu@cs.umass.edu>
3440
3441 * config/h8300/h8300.md (*insv_si_1_n_lshiftrt): Restrict the
3442 source operand to those that can be extracted with bld.
3443
3444 2003-03-20 Richard Earnshaw <rearnsha@arm.com>
3445
3446 PR 10066
3447 * arm.md (UNSPEC_PIC_BASE): New constant.
3448 (pic_add_dot_plus_four): Wrap with unspec.
3449 (pic_add_dot_plus_eight): Likewise.
3450
3451 2003-03-20 Kazu Hirata <kazu@cs.umass.edu>
3452
3453 * config/h8300/h8300.md (*insv_si_1_n): New.
3454 (*insv_si_1_n_lshiftrt): Likewise.
3455
3456 2003-03-20 Roger Sayle <roger@eyesopen.com>
3457
3458 * fold-const.c (fold_mathfn_compare): New function to simplify
3459 comparisons against built-in math functions. Fold comparisons
3460 of sqrt against constants.
3461 (fold): Call fold_mathfn_compare when appropriate.
3462
3463 2003-03-20 Richard Earnshaw <rearnsha@arm.com>
3464
3465 * ifcvt.c (find_if_case_1): If we add a new bb, update the dominance
3466 information.
3467
3468 2003-03-20 Per Bothner <pbothner@apple.com>
3469
3470 Various cleanups to help compile server.
3471
3472 * cppinit.c (cpp_create_reader): Take extra hash_table* argument,
3473 and pass that to _cpp_init_hashtable.
3474 (cpp_read_main_file): Drop hash_table* argument; don't call
3475 _cpp_init_hashtable.
3476 * cpplib.h: Update declarations to match.
3477 * c-opts.c (c_common_init_options): Pass ident_hash to
3478 cpp_create_reader.
3479 (c_common_post_options): Don't pass ident_hash to cpp_read_main_file.
3480 * fix-header.c (read_scan_file): Likewise pass NULL table to
3481 cpp_create_reader rather than cpp_read_main_file.
3482
3483 * cppfiles.c (cpp_rename_file): Generalized and renamed
3484 to cpp_change_file.
3485 * cpplib.h: Update declaration to match.
3486 * c-opts.c (push_command_line_line, finish_options): Change
3487 cpp_rename_file calls to cpp_change_file.
3488
3489 * line-map.c (add_line_map): Allow leaving the outermost file.
3490 Allowing entering an outermost-file after the initial time.
3491
3492 * toplev.c (pop_srcloc): Allow popping from initial file.
3493
3494 2003-03-20 Kazu Hirata <kazu at cs dot umass dot edu>
3495
3496 * fold-const.c (fold): Fold A - (A & B) into ~B & A.
3497
3498 2003-03-20 Kazu Hirata <kazu@cs.umass.edu>
3499
3500 * config/h8300/h8300.md (a peephole2): New.
3501
3502 2003-03-20 Kazu Hirata <kazu@cs.umass.edu>
3503
3504 * config/h8300/h8300.md (*addsi3_and_r_1): New.
3505 (*addsi3_and_not_r_1): Likewise.
3506
3507 2003-03-19 Loren James Rittle <ljrittle@acm.org>
3508
3509 * Makefile.in (STRICT2_WARN): Add @WERROR@.
3510 (GCC_WARN_CFLAGS): Remove $(WERROR).
3511 (fixinc.sh-warn): New.
3512 * ada/Make-lang.in (ada-warn): Add $(WERROR).
3513 * cp/Make-lang.in (cp-warn): Add $(WERROR).
3514 * f/Make-lang.in (f-warn): Add $(WERROR).
3515 * java/Make-lang.in (java-warn): Add $(WERROR).
3516 * treelang/Make-lang.in (treelang-warn): Add $(WERROR).
3517
3518 2003-03-19 Nathanael Nerode <neroden@gcc.gnu.org>
3519
3520 * c-common.h (c_dump_tree), c-dump.c (c_dump_tree),
3521 langhooks-def.h (lhd_tree_dump_dump_tree),
3522 langhooks.c (lhd_tree_dump_dump_tree), langhooks.h (*dump_tree):
3523 Change return type from 'int' to 'bool'. Replace 0 and 1 with
3524 true and false in return statements.
3525
3526 2003-03-19 Kevin Buettner <kevinb@redhat.com>
3527
3528 * dwarf2out.c (DWARF_INITIAL_LENGTH_SIZE): Define.
3529 (DWARF_COMPILE_UNIT_HEADER_SIZE): Take into account
3530 DWARF_INITIAL_LENGTH_SIZE.
3531 (output_compilation_unit_header, output_pubnames, output_aranges)
3532 (output_line_info): Output 0xffffffff escape value for 64-bit
3533 DWARF extension.
3534 * config/mips/iris6.h (DWARF_INITIAL_LENGTH_SIZE): Define.
3535
3536 2003-03-19 Ulrich Weigand <uweigand@de.ibm.com>
3537
3538 * config/s390/s390.c (s390_preferred_reload_class): Do not
3539 force constants to the pool unless necessary.
3540 (s390_decompose_address): Prefer to use pointer as base,
3541 not index register.
3542 * config/s390/s390.md ("*tsthiCCT_only"): Remove '?' from
3543 Q alternative.
3544 ("*movdi_64", "*movsi", "movhi", "movqi_64", "movqi",
3545 "*movdf_64", "*movsf"): Add '?' to Q->Q alternatives.
3546 ("*extractqi", "*extracthi", "*zero_extendhisi2_31",
3547 "*zero_extendqisi2_31", "*zero_extendqihi2_31",
3548 "*adddi3_31", "*subdi3_31"): Do not set "type" attribute.
3549
3550 2003-03-19 Jan Hubicka <jh@suse.cz>
3551
3552 * i386.h (machine_function): New fields use_fast_prologue_epilogue.
3553 * i386.c (use_fast_prologue_epilogue): Remove.
3554 (ix86_frame): New field save_regs-using_mov;
3555 (ix86_compute_frame_layout): Decide on fast prologues;
3556 allocate saved registers in red zone.
3557 (ix86_expand_epilogue, ix86_expand_prolgoues): Obey new parameters.
3558
3559 2003-03-19 Nick Clifton <nickc@redhat.com>
3560
3561 * config/mcore/mcore.h (CPP_SPEC): Remove trailing semi-colon.
3562
3563 2003-03-18 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
3564
3565 PR 10062
3566 * config/pa/pa-hpux.h (TARGET_HPUX_UNWIND_LIBRARY): Redefine.
3567 * pa-protos.h (output_lbranch): New prototype.
3568 * pa.c (compute_frame_size): Change size of the frame marker on the
3569 64-bit ports to 48 bytes.
3570 (pa_output_function_prologue): Document why SAVE_SP is set.
3571 (hppa_expand_prologue): Save previous stack pointer into frame marker
3572 on targets which use the hpux unwind library.
3573 (output_cbranch): Use output_lbranch.
3574 (output_lbranch): New function to output long unconditional branches.
3575 * pa.h (TARGET_HPUX_UNWIND_LIBRARY): Define.
3576 (STACK_POINTER_OFFSET): Update offset for 48-byte frame marker on
3577 64-bit ports.
3578 * pa.md (jump): Use output_lbranch.
3579 (allocate_stack): New expander for dynamic stack allocation.
3580
3581 2003-03-19 Alan Modra <amodra@bigpond.net.au>
3582
3583 * config/rs6000/rs6000.c (rs6000_stack_info): Only require a frame
3584 when debugging on XCOFF targets. Delete "abi" temp.
3585
3586 PR target/10073
3587 * combine.c (force_to_mode <NOT>): Use gen_int_mode.
3588
3589 2003-03-18 Jakub Jelinek <jakub@redhat.com>
3590
3591 * config/s390/s390.c (s390_output_dwarf_dtprel): New.
3592 * config/s390/s390-protos.h (s390_output_dwarf_dtprel): New proto.
3593 * config/s390/s390.h (ASM_OUTPUT_DWARF_DTPREL): Define.
3594
3595 * config/ia64/ia64.c (ia64_output_dwarf_dtprel): New.
3596 * config/ia64/ia64-protos.h (ia64_output_dwarf_dtprel): New proto.
3597 * config/ia64/ia64.h (ASM_OUTPUT_DWARF_DTPREL): Define.
3598
3599 2003-03-18 Geoffrey Keating <geoffk@apple.com>
3600
3601 * config/rs6000/rs6000.c (rs6000_emit_prologue): Don't clone
3602 the result of machopic_function_base_name.
3603 * config/darwin.c (machopic_function_base_name): Use a gc-allocated
3604 string rather than a static array.
3605
3606 * Makefile.in (emit-rtl.o): Add gt-emit-rtl.h to dependencies.
3607
3608 * gengtype.c: Include rtl.h.
3609 (enum rtx_code): Don't define.
3610 (rtx_format): Make declaration match rtl.h.
3611 (rtx_next_new): Rename from rtx_next to avoid conflict. Change all
3612 users.
3613 (adjust_field_rtx_def): Describe strings in NOTE_LINE_NUMBER notes.
3614 * Makefile.in (gengtype.o): Update dependencies.
3615
3616 2003-03-18 Andreas Schwab <schwab@suse.de>
3617
3618 * config/m68k/m68k.md (iordi3): Fix setting low half to -1. From
3619 martin@blom.org.
3620
3621 2003-03-18 Geoffrey Keating <geoffk@apple.com>
3622
3623 * function.c (next_block_index): Mark with GTY.
3624
3625 * config/rs6000/rs6000.md (macho_correct_pic): Correct pattern.
3626
3627 2003-03-18 Richard Henderson <rth@redhat.com>
3628
3629 * config/ia64/ia64.md (UNSPECV_SETJMP_RECEIVER): New.
3630 (builtin_setjmp_receiver): Delay call to ia64_reload_gp
3631 until after reload.
3632
3633 2003-03-18 Richard Henderson <rth@redhat.com>
3634
3635 * builtins.c (expand_builtin_unop): New target_mode operand;
3636 use it to convert the result to the correct mode.
3637 (expand_builtin): Update all callers.
3638
3639 2003-03-18 Ulrich Weigand <uweigand@de.ibm.com>
3640
3641 * config/s390/s390.md ("movti", "movhi", "movqi"): Add "type" attribute.
3642
3643 2003-03-18 Jan Hubicka <jh@suse.cz>
3644
3645 * i386.md: Fix previous commit that mistakely applied the patch
3646 twice.
3647
3648 * alias.c (rtx_equal_for_memref_p): Assume that X and Y has been
3649 canonicalized.
3650 (memrefs_conflict_p): Likewise.
3651 (addr_side_effect_eval): Canonicalize the constructed address.
3652
3653 2003-03-18 Jan Hubicka <jh@suse.cz>
3654
3655 * i386.md (cvtts?2si peep2): New.
3656
3657 2003-03-18 Kazu Hirata <kazu@cs.umass.edu>
3658
3659 * config/h8300/h8300.md (*iorsi3_two_qi_zext): New.
3660
3661 2003-03-18 Andreas Schwab <schwab@suse.de>
3662
3663 * dwarf2out.c (output_file_names): Cast size_t to unsigned long
3664 for format.
3665
3666 2003-03-17 Jason Merrill <jason@redhat.com>
3667
3668 PR c++/10091
3669 * expr.c (expand_expr) [ADDR_EXPR]: Disallow taking the address of
3670 an unaligned member of TREE_ADDRESSABLE type.
3671
3672 2003-03-18 Alan Modra <amodra@bigpond.net.au>
3673
3674 * config/rs6000/linux64.h (MASK_PROFILE_KERNEL): Define.
3675 (TARGET_PROFILE_KERNEL): Define.
3676 (SUBTARGET_SWITCHES): Handle -mprofile-kernel.
3677 (PROFILE_BEFORE_PROLOGUE): Don't define.
3678 (PROFILE_KERNEL): Remove hacks.
3679 * config/rs6000/rs6000.c (TARGET_PROFILE_KERNEL): Define default.
3680 (rs6000_stack_info): No need to save lr if just for profiling when
3681 TARGET_PROFILE_KERNEL.
3682 (output_profile_hook): Output nothing when TARGET_PROFILE_KERNEL.
3683 (output_function_profiler): Localize label generation. Emit code
3684 for kernel profiling.
3685
3686 2003-03-17 Kazu Hirata <kazu@cs.umass.edu>
3687
3688 * config/h8300/h8300-protos.h: Add a prototype for
3689 byte_accesses_mergeable_p.
3690 * config/h8300/h8300.c (byte_accesses_mergeable_p): New.
3691 * config/h8300/h8300.md (*iorhi3_two_qi_mem): Likewise.
3692 (a splitter): Likewise.
3693 (*iorsi3_ashift_16_ashift_24): Likewise.
3694 (*iorsi3_ashift_16_ashift_24_mem): Likewise.
3695
3696 2003-03-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3697
3698 * dwarf2asm.h: Delete obsolete comment.
3699 (dw2_asm_output_data, dw2_asm_output_delta, dw2_asm_output_offset,
3700 dw2_asm_output_pcrel, dw2_asm_output_addr,
3701 dw2_asm_output_addr_rtx, dw2_asm_output_encoded_addr_rtx,
3702 dw2_asm_output_nstring, dw2_asm_output_data_uleb128,
3703 dw2_asm_output_data_sleb128, dw2_asm_output_delta_uleb128,
3704 dw2_asm_output_delta_sleb128): Add ATTRIBUTE_NULL_PRINTF.
3705
3706 2003-03-17 Zack Weinberg <zack@codesourcery.com>
3707
3708 * c-tree.h (struct lang_identifier): Remove error_locus field.
3709 (IDENTIFIER_ERROR_LOCUS): Kill.
3710 (record_function_scope_shadow): New prototype.
3711 * c-typeck.c (build_external_ref): Don't complain if
3712 decl is error_mark_node. When not at file scope, bind the
3713 decl's local value to error_mark_node to suppress further
3714 warnings, instead of setting IDENTIFIER_ERROR_LOCUS.
3715
3716 * c-decl.c (get_function_binding_level): New static function.
3717 (record_function_scope_shadow): New exported function.
3718 (c_make_fname_decl): Use get_function_binding_level.
3719
3720 2003-03-17 Steve Ellcey <sje@cup.hp.com>
3721
3722 * stmt.c (tail_recursion_args): Call promote_mode to set
3723 unsignedp flag correctly before calling convert_move.
3724
3725 2003-03-17 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
3726
3727 * loop-unroll.c (decide_peel_completely,
3728 decide_unroll_constant_iterations, decide_unroll_stupid,
3729 decide_unroll_runtime_iterations, decide_peel_simple): Set
3730 loop->has_desc.
3731
3732 2003-03-17 Jan Hubicka <jh@suse.cz>
3733
3734 * ggc-common.c (ggc_mark_roots): Use htab_traverse_noresize.
3735
3736 2003-03-17 Olivier Hainque <hainque@act-europe.fr>
3737
3738 * function.c (assign_parms): For a struct value address passed as
3739 first argument, delay the function's result RTL setup code until
3740 after the emission of parameter conversions.
3741
3742 2003-03-17 Dave Love <fx@gnu.org>
3743 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
3744
3745 * config/alpha/osf.h (TARGET_OS_CPP_BUILTINS): Define __digital__,
3746 __arch64__ to match Compaq cc.
3747
3748 2003-03-17 Neil Booth <neil@daikokuya.co.uk>
3749
3750 * c-opts.c: Default TARGET_EBCDIC to 0 if not defined.
3751 (c_common_init): Set EBCDIC in cpp options.
3752 * cpplex.c (maybe_read_ucs, cpp_parse_escape): Use EBCDIC option,
3753 not conditional compilation.
3754 * cpplib.h (struct cpp_options): New entry EBCDIC.
3755
3756 2003-03-17 Neil Booth <neil@daikokuya.co.uk>
3757
3758 * fix-header.c (read_scan_file): Need to malloc arguments to add_path.
3759
3760 2003-03-17 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
3761
3762 * function.c (thread_prologue_and_epilogue_insns): Set delete_unused
3763 argument to 0 for redirect_jump.
3764
3765 2003-03-16 Mark Mitchell <mark@codesourcery.com>
3766
3767 PR c++/8805
3768 * except.c (eh_region_u_cleanup): Add prev_try.
3769 (expand_eh_region_end_cleanup): Set it.
3770 (reachable_handlers): Use it to skip over cleanup blocks.
3771
3772 2003-03-17 Andreas Jaeger <aj@suse.de>
3773
3774 * Makefile.in (TAGS): Remove obsolete handling of =*.[chy].
3775
3776 2003-03-17 Alan Modra <amodra@bigpond.net.au>
3777
3778 * config/rs6000/linux64.h (TARGET_64BIT): Redefine.
3779 (TARGET_RELOCATABLE, TARGET_EABI, TARGET_PROTOTYPE): Likewise.
3780 (SUBTARGET_SWITCHES, SUBTARGET_OPTIONS): Likewise.
3781 (SUBTARGET_OVERRIDE_OPTIONS, CPP_SYSV_SPEC): Likewise.
3782
3783 2003-03-16 Richard Henderson <rth@redhat.com>
3784
3785 * simplify-rtx (simplify_binary_operation): Don't abort for
3786 SS_PLUS, US_PLUS, SS_MINUS, US_MINUS.
3787
3788 2003-03-16 Richard Henderson <rth@redhat.com>
3789
3790 * config/i386/i386.md (movstrictqi, movstrictqi_1): Check
3791 optimize_size as well.
3792
3793 2003-03-16 Stephane Carrez <stcarrez@nerim.fr>
3794
3795 * config/m68hc11/m68hc11.c (print_operand): Handle 'b' modifier
3796 for D register to specify the low part of it, aka B.
3797 (m68hc11_gen_movhi): Use REG_WAS_0 note and increment or decrement
3798 the register if we are loading 1 or -1 to it; avoid using temp
3799 register when moving X/Y to Y/X.
3800 (m68hc11_gen_movqi): Likewise.
3801 (m68hc11_check_z_replacement): Fix last insn setting for compare case.
3802
3803 2003-03-14 Mark Mitchell <mark@codesourcery.com>
3804
3805 PR optimization/9016
3806 * config/i386/i386.c (ix86_expand_move): Force more CONST_DOUBLEs
3807 into the constant pool.
3808
3809 2003-03-16 Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
3810
3811 PR target/9164
3812 * tree.c (get_narrower): For extensions with unchanged bit number,
3813 return the unsignedness of the outer mode.
3814
3815 2003-03-16 Roger Sayle <roger@eyesopen.com>
3816
3817 * c-typeck.c (build_component_ref): Turn "for" into "do .. while"
3818 to avoid "may be used uninitialized" warning on ia64-hpux.
3819 * config/ia64/ia64-c.c: Include "tm_p.h" for function prototypes.
3820
3821 2003-03-16 Andreas Jaeger <aj@suse.de>
3822
3823 * configure.in: Improve check for memcheck.h.
3824 * configure: Regenerated.
3825
3826 2003-03-16 Neil Booth <neil@daikokuya.co.uk>
3827
3828 * doc/cppopts.texi: Remove documentation of -A-.
3829
3830 2003-03-15 Zack Weinberg <zack@codesourcery.com>
3831
3832 * doc/libgcc.texi: Remove @tie.
3833
3834 2003-03-15 Josef Zlomek <zlomekj@suse.cz>
3835
3836 * rtl.h (subrtx_p): Renamed to rtx_referenced_p.
3837 (rtx_pair): Added new element update_label_nuses, renamed to
3838 replace_label_data.
3839 * cfgcleanup.c (outgoing_edges_match, try_crossjump_to_edge): Use
3840 replace_label_data instead of rtx_pair.
3841 * loop.c (load_mems): Likewise.
3842 * rtlanal.c (replace_label): Replace label in pool constants and in
3843 INSN_LIST (in REG_LABEL note).
3844 (subrtx_p): Renamed to rtx_referenced_p.
3845 (subrtx_p_1): Renamed to rtx_referenced_p_1, compare the interior of
3846 LABEL_REF with CODE_LABEL, traverse constants from pool.
3847
3848 2003-03-15 Aldy Hernandez <aldyh@redhat.com>
3849 Zack Weinberg <zack@codesourcery.com>
3850
3851 * Makefile.in (TEXI_GCCINT_FILES): Add libgcc.texi.
3852 * doc/libgcc.texi: New file.
3853 * doc/interface.texi: Delete paragraph about libgcc interface.
3854 * doc/gccint.texi: Add libgcc menu entry and @include libgcc.texi.
3855
3856 2003-03-15 Jason Merrill <jason@redhat.com>
3857
3858 PR debug/9039
3859 * dwarf2out.c (gen_decl_die): Ignore frontend tree codes.
3860
3861 PR debug/6387
3862 * dwarf2out.c (dwarf2out_decl): If we're at -g1, just stick nested
3863 function DIEs at toplevel.
3864 (decls_for_scope): At -g1, don't descend into subblocks.
3865
3866 2003-03-15 Ulrich Weigand <uweigand@de.ibm.com>
3867
3868 * varasm.c (struct rtx_const): Change type of un.addr member
3869 to struct holding an additional 'symbol' member.
3870 (decode_rtx_const): Re-enable optimization to count SYMBOL_REFs
3871 with equal string addresses as equal.
3872 (simplify_subtraction): Adapt to struct rtx_const change.
3873
3874 2003-03-15 Neil Booth <neil@daikokuya.co.uk>
3875
3876 * fix-header.c (read_scan_file): Read main file before handling -D.
3877
3878 2003-03-15 Roger Sayle <roger@eyesopen.com>
3879
3880 * c-cppbuiltin.c (builtin_define_with_value_n): Fix whitespace.
3881 * c-typeck.c (c_tree_expr_nonnegative_p): Likewise.
3882 * cfgbuild.c (find_many_sub_basic_blocks): Likewise.
3883 (find_sub_basic_blocks): Likewise.
3884 * cgraphunit.c (cgraph_expand_functions): Likewise.
3885 * dwarf2out.c (prune_unused_types): Likewise.
3886 * expr.c (store_field): Likewise.
3887 * genextract.c (print_path): Likewise.
3888 * haifa-sched.c (schedule_insn): Likewise.
3889 * lcm.c (compute_antinout_edge): Likewise.
3890 * loop-unroll.c (decide_peel_once_rolling): Likewise.
3891 * ra-colorize.c (ra_colorize_free_all): Likewise.
3892 * ra-debug.c (dump_igraph): Likewise.
3893 (debug_hard_reg_set): Likewise.
3894 * reg-stack.c (reg_to_stack): Likewise.
3895 * rtlanal.c (refers_to_regno_p): Likewise.
3896 * tracer.c (layout_superblocks): Likewise.
3897
3898 2003-03-15 Neil Booth <neil@daikokuya.co.uk>
3899
3900 * fix-header.c (read_scan_file): Fix thinko.
3901
3902 2003-03-15 Glen Nakamura <glen@imodulo.com>
3903
3904 * reload1.c (choose_reload_regs): Use && instead of ||
3905 with REG_CANNOT_CHANGE_MODE_P condition.
3906
3907 2003-03-15 Neil Booth <neil@daikokuya.co.uk>
3908
3909 * Makefile.in: Update.
3910 * c-common.h (cb_register_builtins): Rename c_cpp_builtins.
3911 * c-lex.c (init_c_lex): Register builtins hook is dead.
3912 * c-opts.c (COMMAND_LINE_OPTIONS, missing_arg): Handle -A, -D and -U.
3913 (c_common_decode_option): Don't call cpp_handle_option.
3914 Handle -A, -D and -U.
3915 (handle_deferred_opts): Simplify.
3916 (finish_options): Define builtins and command line macros.
3917 * c-ppoutput.c (init_pp_output): Register builtins hook is dead.
3918 * cppinit.c: Don't include intl.h.
3919 (init_builtins): Rename cpp_init_builtins. No hook to call.
3920 (init_library): Don't need to sort options.
3921 (cpp_create_reader): Don't set pending.
3922 (cpp_destroy): Don't free pending.
3923 (struct pending_option, cl_directive_handler, struct cpp_pending,
3924 APPEND, free_chain, new_pending_directive, parse_option, opt_comp,
3925 cpp_finish_options, COMMAND_LINE_OPTIONS, DEF_OPT, struct cl_option,
3926 cl_options, cpp_handle_option): Remove.
3927 * cpplib.h (struct cpp_pending, register_builtins, cpp_handle_option,
3928 cpp_finish_options): Remove.
3929 (cpp_init_builtins): New.
3930 * fix-header.c (read_scan_file): Update to handle -D. Fix
3931 handling of -I. Replace call to cpp_finish_options.
3932
3933 2003-03-15 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
3934
3935 PR optimization/9387
3936 * function.c (thread_prologue_and_epilogue_insns): Use redirect_jump
3937 for conditional returns.
3938
3939 2003-03-14 Jason Merrill <jason@redhat.com>
3940
3941 PR optimization/6871
3942 * varasm.c (assemble_variable): Leave constant zeroes in .rodata.
3943
3944 2003-03-14 Neil Booth <neil@daikokuya.co.uk>
3945
3946 * c-opts.c (finish_options): New.
3947 (COMMAND_LINE_OPTIONS, c_common_decode_option): Add -imacros.
3948 (missing_arg): Handle OPT_include and OPT_imacros.
3949 (c_common_init, c_common_parse_file): Use finish_options.
3950 (handle_deferred_opts): Update.
3951 * cppinit.c (struct cpp_pending): Remove imacros_head and imacros_tail.
3952 (cpp_finish_options): Don't handle -imacros here.
3953 (no_fil): Remove.
3954 (COMMAND_LINE_OPTIONS, cpp_handle_option): Don't handle -imacros.
3955
3956 2003-03-14 Jakub Jelinek <jakub@redhat.com>
3957
3958 * config/rs6000/rs6000.c (rs6000_emit_load_toc_table): Don't call
3959 rs6000_maybe_dead if !fromprolog.
3960
3961 2003-03-14 Neil Booth <neil@daikokuya.co.uk>
3962
3963 * Makefile.in: Update.
3964 * c-common.h (fe_file_change, pp_file_change): New.
3965 * c-lex.c (init_c_lex): Don't set cb_file_change.
3966 (c_common_parse_file): Move to c-opts.c.
3967 (cb_file_change): Rename fe_file_change.
3968 * c-opts.c: Include debug.h.
3969 (warn_unused_macros, include_cursor): New.
3970 (push_command_line_include, cb_file_change): New.
3971 (COMMAND_LINE_OPTIONS): Handle -include.
3972 (c_common_decode_option): Use local warn_unused_macros.
3973 Handle OPT_include.
3974 (c_common_post_options): Set file change callback.
3975 (handle_deferred_opts): Skip -include. Don't free the array.
3976 (c_common_init): Call cpp_finish_options here, and push an
3977 initial -include file.
3978 * c-ppoutput.c (cb_file_change): Rename pp_file_change.
3979 (preprocess_file): Don't call cpp_finish_options.
3980 (init_pp_output): Don't set the file change callback.
3981 (pp_file_change): Return if no line commands or no output.
3982 * cpphash.h (next_include_file, first_unused_line): Remove.
3983 * cppinit.c (include_head, include_tail): Remove.
3984 (cpp_destroy): Don't free -include chain.
3985 (cpp_finish_options): Don't handle -include, or worry about
3986 -Wunused-macros.
3987 (_cpp_maybe_push_include_file): Remove.
3988 (COMMAND_LINE_OPTIONS, cpp_handle_option): Don't handle -include.
3989 * cpplib.c (_cpp_pop_buffer): Don't handle -include.
3990 * cppmacro.c (_cpp_warn_if_unused_macro, _cpp_create_definition):
3991 Used flag is set based upon the state of the warn_unused_macros
3992 flag, and so use of first_unused_line is unnecessary.
3993
3994 2003-03-13 Jan Hubicka <jh@suse.cz>
3995
3996 * cselib.c (clear_table): Do not take argument; always clear just
3997 used slots.
3998 (cselib_process_insn): Update call of clear_table
3999 (cselib_init): Do not call clear_table.
4000 (cselib_finish): Clear table.
4001
4002 * cse.c (count_reg_usage): Do not check side_effects_p.
4003 * rtlanal.c (set_noop_p): Check side_effects_p only when set looks
4004 like noop.
4005 (find_reg_equal_equiv_note): Do not use find_reg_note.
4006
4007 2003-03-14 Richard Henderson <rth@redhat.com>
4008
4009 PR target/9700
4010 * config/alpha/alpha.c (alpha_va_start): Account for
4011 current_function_pretend_args_size in the AP offset.
4012
4013 * config/alpha/alpha.h (SETUP_INCOMING_VARARGS): Move out of line.
4014 (INITIAL_ELIMINATION_OFFSET): Move out of line.
4015 * config/alpha/alpha.c (alpha_setup_incoming_varargs): New.
4016 (alpha_initial_elimination_offset) New.
4017 * config/alpha/alpha-protos.h: Update.
4018
4019 2003-03-14 Jakub Jelinek <jakub@redhat.com>
4020
4021 * stmt.c (expand_start_case): Call emit_queue ().
4022
4023 2003-03-14 Chris Demetriou <cgd@broadcom.com>
4024 Alexandre Oliva <aoliva@redhat.com>
4025
4026 * config/mips/mips.h (FUNCTION_PROFILER): _mcount() doesn't pop 2
4027 words in new abis.
4028
4029 2003-03-14 Eric Botcazou <ebotcazou@libertysurf.fr>
4030
4031 PR optimization/8396
4032 * tree-inline.c (initialize_inlined_parameters): Make sure the value
4033 of read-only constant arguments is passed with the right type.
4034
4035 2003-03-14 Steven Bosscher <steven@gcc.gnu.org>
4036
4037 * doc/extend.texi (Function Names): Make the example compilable.
4038
4039 2003-03-13 David Edelsohn <edelsohn@gnu.org>
4040
4041 * config/rs6000/rs6000.c (processor_target_table): Really allow
4042 GP optional instructions on Power4.
4043
4044 2003-03-13 Roger Sayle <roger@eyesopen.com>
4045
4046 * calls.c (flags_from_decl_or_type): Factor and remove redundant
4047 conditional tests.
4048
4049 2003-03-13 Mike Stump <mrs@apple.com>
4050
4051 * ggc-page.c (struct page_entry): Remove varray.h header.
4052 Add index_by_depth field.
4053 Remove save_in_use_p field.
4054 (struct globals): Add depth_in_use, depth_max, by_depth_in_use,
4055 by_depth_max, by_depth, and save_in_use fields.
4056 (INITIAL_PTE_COUNT): Add.
4057 (save_in_use_p_i): Add.
4058 (save_in_use_p): Add.
4059 (adjust_depth): Add.
4060 (move_ptes_to_front): Add.
4061 (push_depth): Add.
4062 (push_by_depth): Add.
4063 (prefetch): Add.
4064 (free_page): Add support for and use faster data structures.
4065 (ggc_alloc): Likewise.
4066 (init_ggc): Likewise.
4067 (ggc_recalculate_in_use_p): Likewise.
4068 (ggc_pop_context): Likewise.
4069 (clear_marks): Likewise.
4070 (ggc_pch_read): Likewise.
4071 * Makefile.in (ggc-page.o): Remove varray.h.
4072
4073 2003-03-13 Nathanael Nerode <neroden@gcc.gnu.org>
4074
4075 * ChangeLog: Rotated last year's entries to...
4076 * ChangeLog.8: New.
4077
4078 * config/ia64/fde-glibc.c, config/ia64/freebsd.h,
4079 config/ia64/hpux.h, config/ia64/hpux_longdouble.h,
4080 config/ia64/ia64-c.c, config/ia64/ia64-modes.def,
4081 config/ia64/ia64-protos.h, config/ia64/ia64.c,
4082 config/ia64/ia64.h, config/ia64/ia64.md,
4083 config/ia64/itanium1.md, config/ia64/itanium2.md,
4084 config/ia64/quadlib.c, config/ia64/unwind-ia64.c,
4085 config/ia64/unwind-ia64.h: It's GCC, not GNU CC.
4086
4087 2003-03-13 Aldy Hernandez <aldyh@redhat.com>
4088
4089 * config/rs6000/rs6000.c (rs6000_dwarf_register_span):
4090 Differentiate endianness.
4091 (s6000_override_options): Use cpu type instead of TARGET_SPE.
4092
4093 2003-03-13 Nick Clifton <nickc@redhat.com>
4094
4095 * config/arm/arm.c (print_multi_reg): Do not generate a type 2
4096 LDM instructions with writeback enabled.
4097 (output_return_instruction): Likewise.
4098
4099 * config/arm/pe.h (FIXED_REGISTERS): Remove definition.
4100 (CALL_USED_REGISTERS): Remove definition.
4101 (SUBTARGET_CONDITIONAL_REGISTER_USAGE): Define.
4102
4103 2003-03-13 Alan Modra <amodra@bigpond.net.au>
4104
4105 * config/rs6000/rs6000.c (rs6000_flag_pic): Delete.
4106 (rs6000_xcoff_encode_section_info): #ifdef TARGET_XCOFF.
4107 (rs6000_binds_local_p, TARGET_BINDS_LOCAL_P): #if TARGET_MACHO.
4108 (rs6000_override_options): Don't clear flag_pic for ABI_AIX.
4109 (rs6000_legitimize_address): Formatting.
4110 (rs6000_emit_move): Likewise.
4111 (rs6000_return_addr): Test ABI_AIX as well as flag_pic.
4112 (rs6000_emit_prologue <save_LR_around_toc_setup>): Likewise.
4113 (rs6000_elf_select_section): Comment reason for shlib being
4114 set for ABI_AIX.
4115 (rs6000_elf_unique_section): Likewise.
4116 (rs6000_elf_encode_section_info): Test !TARGET_AIX as well as ABI_AIX.
4117 * config/rs6000/rs6000.h (LEGITIMATE_LO_SUM_ADDRESS_P): Test ABI_AIX
4118 as well as flag_pic.
4119 * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Likewise.
4120 (MINIMAL_TOC_SECTION_ASM_OP): Likewise.
4121 * config/rs6000/linux64.h (TARGET_ENCODE_SECTION_INFO): Don't define.
4122
4123 2003-03-13 Richard Henderson <rth@redhat.com>
4124
4125 * emit-rtl.c (try_split): Handle 1-1 splits of call insns properly.
4126
4127 * config/ia64/ia64.c (TARGET_FUNCTION_OK_FOR_SIBCALL): New.
4128 (ia64_gp_save_reg): Remove.
4129 (struct ia64_frame_info): Move to the beginning of the file;
4130 add reg_save_gp.
4131 (ia64_expand_call): Rearrange for new call patterns.
4132 (ia64_reload_gp): New.
4133 (ia64_split_call): New.
4134 (ia64_compute_frame_size): Allocate reg_save_gp.
4135 (ia64_expand_prologue): Save reg_save_gp.
4136 (ia64_expand_epilogue): Don't restore gp.
4137 (ia64_hard_regno_rename_ok): Remove R4 hack.
4138 (ia64_function_ok_for_sibcall): New.
4139 (ia64_output_mi_thunk): Set reload_completed, no_new_pseudos;
4140 call try_split on sibcall pattern.
4141 * config/ia64/ia64-protos.h: Update.
4142 * config/ia64/ia64.md (call_nogp, call_value_nogp, sibcall_nogp):
4143 Rename from nopic versions. Confiscate 2nd argument to call as
4144 a marker.
4145 (call_pic, call_value_pic, sibcall_pic): Remove.
4146 (call_gp, call_value_gp, sibcall_gp): New.
4147 (builtin_setjmp_setup): Remove.
4148 (builtin_setjmp_receiver): Call ia64_reload_gp.
4149
4150 2003-03-12 Nathanael Nerode <neroden@gcc.gnu.org>
4151
4152 * config/dsp16xx/dsp16xx-protos.h, config/dsp16xx/dsp16xx.c,
4153 config/dsp16xx/dsp16xx.h, config/dsp16xx/dsp16xx.md: Replace
4154 "GNU CC" with "GCC".
4155
4156 * config/c4x/c4x-c.c, config/c4x/c4x-modes.def,
4157 config/c4x/c4x-protos.h, config/c4x/c4x.c, config/c4x/c4x.h,
4158 config/c4x/c4x.md, config/c4x/libgcc.S, config/c4x/rtems.h:
4159 GCC, not GNU CC.
4160
4161 * genattrtab.h, hosthooks-def.h, hosthooks.h, langhooks-def.h,
4162 langhooks.h, tree-inline.h: Replace "GNU CC" with "GCC".
4163
4164 * c-pch.c, dummy-conditions.c, genautomata.c, genconditions.c,
4165 langhooks.c, tree-inline.c, unwind-dw2-fde-darwin.c,
4166 unwind-dw2-fde-glibc.c, unwind-libunwind.c, vmsdbgout.c: Replace
4167 "GNU CC" with "GCC".
4168
4169 * config/v850/lib1funcs.asm, config/v850/rtems.h,
4170 config/v850/v850-c.c, config/v850/v850-protos.h,
4171 config/v850/v850.c, config/v850/v850.h, config/v850/v850.md:
4172 GCC, not GNU CC.
4173
4174 * config/vax/bsd.h, config/vax/elf.h, config/vax/netbsd-elf.h,
4175 config/vax/netbsd.h, config/vax/openbsd.h, config/vax/openbsd1.h,
4176 config/vax/ultrix.h, config/vax/vax-protos.h, config/vax/vax.c,
4177 config/vax/vax.h, config/vax/vax.md, config/vax/vaxv.h: GCC, not
4178 GNU CC.
4179
4180 2003-03-12 Benjamin Kosnik <bkoz@redhat.com>
4181
4182 * cpppch.c (cpp_valid_state): Use DL_WARNING_SYSHDR, not DL_WARNING.
4183
4184 2003-03-12 Nathanael Nerode <neroden@gcc.gnu.org>
4185
4186 * fixinc/fixinc.interix: Remove dead code (most of it).
4187 * fixinc/fixinc.dgux: Remove.
4188
4189 * ginclude/float.h, ginclude/iso646.h, ginclude/stdarg.h,
4190 ginclude/stdbool.h, ginclude/stddef.h: GCC, not GNU CC.
4191
4192 2003-03-12 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
4193
4194 * pa.c (pa_init_builtins): Fix warning.
4195
4196 2003-03-12 Steve Ellcey <sje@cup.hp.com>
4197
4198 * config/ia64/ia64.h (ASM_OUTPUT_XDATA_CHAR): Remove.
4199 (ASM_OUTPUT_XDATA_SHORT): Remove.
4200 (ASM_OUTPUT_XDATA_INT): Remove.
4201 (ASM_OUTPUT_XDATA_DOUBLE_INT): Remove.
4202 (ASM_OUTPUT_ADDR_DIFF_ELT): Handled 32 bit address diffs.
4203 (ASM_PREFERRED_EH_DATA_FORMAT): Handle 32 bit EH pointers.
4204 (CASE_VECTOR_MODE): Handle 32 bit pointers in case statement.
4205
4206 2003-03-12 Andrew Lewycky <andrew@mxc.ca>
4207
4208 PR c++/7050
4209 * expr.c (store_expr): Don't attempt to store void-typed trees,
4210 just evaluate them for side effects.
4211
4212 2003-03-12 Neil Booth <neil@daikokuya.co.uk>
4213
4214 * cppfiles.c (cpp_rename_file, cpp_push_include): New.
4215 * cppinit.c (push_include): Move with changes to cppfiles.c.
4216 (cpp_read_main_file): Mark named operators here...
4217 (cpp_finish_options): ...not here. Update.
4218 (_cpp_maybe_push_include_file): Update.
4219 * cpplib.h (cpp_push_include, cpp_rename_file): New.
4220
4221 2003-03-12 Nathanael Nerode <neroden@gcc.gnu.org>
4222
4223 * aclocal.m4: Introduce gcc_GAS_VERSION_GTE_IFELSE,
4224 _gcc_COMPUTE_GAS_VERSION.
4225 * configure.in: Use them.
4226 * configure: Regenerate.
4227
4228 2003-03-12 Bob Wilson <bob.wilson@acm.org>
4229
4230 * config/xtensa/xtensa.md (adddi3): Don't clobber source operand used
4231 to detect carry.
4232 (subdi3): Reorder emitted instructions.
4233
4234 2003-03-12 Andreas Jaeger <aj@suse.de>
4235
4236 * config/i386/netbsd64.h (TARGET_OS_CPP_BUILTINS): Remove call to
4237 NETBSD_OS_CPP_BUILTINS_LP64.
4238
4239 2003-03-12 Nathanael Nerode <neroden@gcc.gnu.org>
4240
4241 * Makefile.in: Eliminate all.indirect. Update and clean up comments.
4242 Rearrange. Reorganize.
4243 * configure.in: Rearrange.
4244 * configure: Regenerate.
4245
4246 2003-03-12 Andreas Jaeger <aj@suse.de>
4247
4248 * c-cppbuiltin.c (cb_register_builtins): Define LP64 builtins for
4249 LP64 targets.
4250
4251 * doc/cpp.texi (Common Predefined Macros): Document __LP64__ and
4252 _LP64.
4253
4254 * config/ia64/ia64.h (TARGET_CPU_CPP_BUILTINS): Do not define
4255 _LP64 macros here.
4256 * config/pa/pa.h (TARGET_CPU_CPP_BUILTINS): Likewise.
4257
4258 * config/alpha/netbsd.h (TARGET_OS_CPP_BUILTINS): Remove call to
4259 NETBSD_OS_CPP_BUILTINS_LP64.
4260 * config/sh/netbsd-elf.h (TARGET_OS_CPP_BUILTINS): Likewise.
4261 * config/sparc/netbsd-elf.h (TARGET_OS_CPP_BUILTINS): Likewise.
4262
4263 * config/netbsd.h (NETBSD_OS_CPP_BUILTINS_LP64): Remove.
4264
4265 2003-03-12 Jan Hubicka <jh@suse.cz>
4266
4267 * i386.c (ix86_setup_incoming_varargs): Set stack_alignment_needed to 128.
4268
4269 2003-03-12 Daniel Jacobowitz <drow@mvista.com>
4270
4271 Fix PR target/9797 and PR c/9853.
4272 * stmt.c (expand_decl_init): Call push_temp_slots () and
4273 pop_temp_slots ().
4274
4275 2003-03-12 J"orn Rennecke <joern.rennecke@superh.com>
4276
4277 * sh.c: Include basic-block.h.
4278 (sh_output_mi_thunk, emit_load_ptr): New functions.
4279 (TARGET_ASM_OUTPUT_MI_THUNK, TARGET_ASM_CAN_OUTPUT_MI_THUNK): Redefine.
4280
4281 2003-03-12 Nick Clifton <nickc@redhat.com>
4282
4283 * config/arm/pe.h (FIXED_REGISTERS): Add Maverick registers.
4284 (CALL_USED_REGISTERS): Likewise.
4285 * config/arm/arm.h (FIRST_PSEUDO_REGISTER): Update comment
4286 describing how this value is calculated.
4287
4288 2003-03-12 Hans-Peter Nilsson <hp@bitrange.com>
4289
4290 * configure.in (rlim_t): Define to long if no valid definition
4291 found in sys/resource.h.
4292 * config.in, configure: Regenerate.
4293
4294 2003-03-12 Neil Booth <neil@daikokuya.co.uk>
4295
4296 * config/mcore/mcore-elf.h (CPP_PREDEFINES): Replace with
4297 TARGET_OS_CPP_BUILTINS.
4298 * config/mcore/mcore-pe.h: Similarly.
4299 * config/mcore/mcore.h: Replace CPP_PREDEFINES and part of
4300 CPP_SPEC with TARGET_CPU_CPP_BUILTINS.
4301
4302 2003-03-12 Eric Botcazou <ebotcazou@libertysurf.fr>
4303
4304 PR c/9928
4305 * c-decl.c (duplicate_decls): Discard the initializer of the new decl
4306 only if it is a VAR_DECL.
4307
4308 2003-03-12 Eric Botcazou <ebotcazou@libertysurf.fr>
4309
4310 PR optimization/9888
4311 * config/i386/i386.md (jcc_1): Fix range.
4312 (jcc_2): Likewise.
4313 (jump): LIkewise.
4314 (doloop_end_internal): Likewise.
4315
4316 2003-03-12 Danny Smith <dannysmith@users.sourceforge.net>
4317
4318 * config/i386/winnt.c (DLL_IMPORT_PREFIX): New define.
4319 Use throughout instead of DLL_IMPORT_EXPORT_PREFIX and "e."
4320 (DLL_EXPORT_PREFIX): New define. Use throughout instead of
4321 DLL_IMPORT_EXPORT_PREFIX and "i."
4322 (i386_pe_dllexport_name_p): Here.
4323 (i386_pe_dllimport_name_p): Here.
4324 (i386_pe_mark_dllexport): Here. Remove DLL_IMPORT_PREFIX,
4325 not 9 chars when getting identifier name.
4326 (i386_pe_mark_dllimport): Here.
4327 (i386_pe_encode_section_info): Here. Remove DLL_IMPORT_PREFIX,
4328 not 9 chars when getting identifier name. Correct comment.
4329 (i386_pe_strip_name_encoding): Here. Add comments for different
4330 cases.
4331 (gen_fastcall_suffix): Break down xmalloc() argument to
4332 components.
4333 (gen_stdcall_suffix): Likewise.
4334 Update copyright year.
4335
4336 2003-03-12 Eric Botcazou <ebotcazou@libertysurf.fr>
4337
4338 PR optimization/9888
4339 * config/i386/i386.md (movsi_1): Remove special alternatives
4340 for %eax register.
4341 (movsi_1_nointernunit): Likewise.
4342 (movhi_1): Likewise.
4343 * config/i386/i386.c (memory_address_length): Do not use
4344 short displacement when there is no base.
4345 (ix86_attr_length_address_default): Handle LEA instructions.
4346
4347 2003-03-12 Neil Booth <neil@daikokuya.co.uk>
4348
4349 * c-cppbuiltin.c (builtin_define_std): Make non-static.
4350
4351 2003-03-11 Loren James Rittle <ljrittle@acm.org>
4352
4353 * config/freebsd-spec.h (FBSD_CPP_PREDEFINES): Remove.
4354 (FBSD_TARGET_OS_CPP_BUILTINS): New port-specific macro.
4355 (FBSD_TARGET_CPU_CPP_BUILTINS): New port-specific macro.
4356 * config/freebsd.h (CPP_PREDEFINES): Remove.
4357 (TARGET_OS_CPP_BUILTINS): New.
4358 * config/alpha/freebsd.h: Use overridden FBSD_TARGET_CPU_CPP_BUILTINS
4359 instead of TARGET_OS_CPP_BUILTINS.
4360 * config/sparc/freebsd.h (CPP_PREDEFINES): Remove.
4361
4362 2003-03-11 Geoffrey Keating <geoffk@apple.com>
4363
4364 * c-cppbuiltin.c (builtin_define_std): Add ATTRIBUTE_UNUSED.
4365
4366 2003-03-11 Aldy Hernandez <aldyh@redhat.com>
4367
4368 * config/rs6000/rs6000.c (rs6000_stack_info): Remove
4369 insn_chain_scanned. Use insn_chain_scanned_p in machine_function.
4370
4371 * config/rs6000/rs6000.h (machine_function): Add insn_chain_scanned_p.
4372
4373 2003-03-11 Alexandre Oliva <aoliva@redhat.com>
4374
4375 * toplev.c (independent_decode_option): Return success for --help,
4376 --target-help and --version.
4377
4378 2003-03-11 Alexandre Oliva <aoliva@redhat.com>
4379
4380 * config/mips/linux64.h (DRIVER_SELF_SPECS): Add endian_spec.
4381 Default to -mips3 on -mabi=64. Don't add -mips* flag if -march is
4382 specified.
4383 (SUBTARGET_ASM_SPEC): Remove -mips*-adding code obviated by
4384 DRIVER_SELF_SPECS.
4385 (LINK_SPEC): Let endian options affect the linker emulation name.
4386
4387 2003-03-11 J"orn Rennecke <joern.rennecke@superh.com>
4388
4389 * sh.md (reload_inqi): Fix mode for source in second set.
4390
4391 2003-03-11 Jan Hubicka <jh@suse.cz>
4392
4393 * cselib.c (cselib_invalidate_mem_1): Move too ...
4394 (cselib_invalidate_mem): ... here; use new list
4395 (dummy_val, first_containing_mem): New static variables.
4396 (clear_table): Initialize first_containing_mem.
4397 (discard_useless_values): Compact the containing_mem list.
4398 (add_mem_for_addr): Add to the list.
4399 * cselib.h (cselib_val): Add next_containing_mem.
4400
4401 2003-03-11 Aldy Hernandez <aldyh@redhat.com>
4402
4403 * config/rs6000/rs6000.c (rs6000_override_options): Disable string
4404 instructions for e500.
4405
4406 2003-03-11 Neil Booth <neil@daikokuya.co.uk>
4407
4408 * Makefile.in: Update.
4409 * c-cppbuiltin.c: Include tm_p.h.
4410
4411 2003-03-11 Aldy Hernandez <aldyh@redhat.com>
4412
4413 * doc/tm.texi (Frame Registers): Document DWARF_REG_TO_UNWIND_COLUMN.
4414
4415 * unwind-dw2.c (DWARF_REG_TO_UNWIND_COLUMN): Define.
4416 (_Unwind_GetGR): Use DWARF_REG_TO_UNWIND_COLUMN.
4417 (_Unwind_SetGR): Same.
4418 (_Unwind_GetGRPtr): New.
4419 (_Unwind_SetGRPtr): New.
4420 (uw_update_context_1): Use accesor functions instead of accessing
4421 context->reg[] directly.
4422 (uw_install_context_1): Same.
4423 (execute_cfa_program): Same.
4424 (__frame_state_for): Same.
4425
4426 * config/rs6000/rs6000.c (spe_synthesize_frame_save): Use 1200 as
4427 the synthetic register offset.
4428
4429 * config/rs6000/rs6000.h (DWARF_REG_TO_UNWIND_COLUMN): New.
4430
4431 2003-03-11 Hans-Peter Nilsson <hp@axis.com>
4432
4433 * config/cris/cris.md: Remove lingering EGCS reference.
4434 ("*extopqihi_side_biap"): For HI operation, match
4435 cris_additive_operand_extend_operator, not
4436 cris_operand_extend_operator. Adjust condition.
4437 ("*extopqihi_side", "*extopqihi"): Ditto.
4438 ("*extopqisi_side_biap"): Correct operand numbers in condition.
4439 ("*extophisi_side_biap", "*extopqisi_swap_side_biap"): Ditto.
4440 ("*extophisi_swap_side_biap", "*extopqisi_swap"): Ditto.
4441 ("*extophisi_swap"): Ditto.
4442 ("*extopqihi_swap_side_biap"): For HI operation, match a simple
4443 PLUS, not cris_operand_extend_operator. Adjust condition and
4444 output template.
4445 ("*extopqihi_swap_side", "*extopqihi_swap"): Ditto.
4446 * config/cris/cris.h (PREDICATE_CODES): Add
4447 cris_additive_operand_extend_operator.
4448 * config/cris/cris.c (cris_additive_operand_extend_operator):
4449 New predicate.
4450
4451 2003-03-11 Hartmut Penner <hpenner@de.ibm.com>
4452
4453 * df.c (read_modify_subreg_p): Change from static to global.
4454 * df.h (read_modify_subreg_p): Add prototype.
4455 * sched-deps.c (sched_analyze_1): Generate true dependency for
4456 strict_low_part, certain subregs and zero/sign_extract.
4457
4458 2003-03-11 Neil Booth <neil@daikokuya.co.uk>
4459
4460 * Makefile.in: Update.
4461 * c-common.c: Don't include real.h or except.h.
4462 (REGISTER_PREFIX): Remove.
4463 (builtin_define_std, builtin_define_with_value,
4464 builtin_define_with_int_value, builtin_define_with_hex_fp_value,
4465 builtin_define_type_max, builtin_define_type_precision,
4466 builtin_define_float_constants): Move to c-cppbuiltin.c.
4467 (c_stddef_cpp_builtins): New.
4468 * c-common.h (builtin_define_with_value, c_stddef_cpp_builtins): New.
4469 * c-cppbuiltin.c: New, extracted from c-common.c.
4470 (define__GNUC__): New.
4471 * cppspec.c (lang_specific_driver): Remove support of -no-gcc.
4472 * gcc.c: Remove support of %v1, %v2 and %v3 specs.
4473 (cpp_unique_options): Don't support no-gcc.
4474 (do_spec_1): Remove support of version specs.
4475 * doc/invoke.texi: Remove documentation of %v1, %v2 and %v3.
4476 * doc/passes.texi: Update.
4477 * doc/tm.texi: Update.
4478
4479 2003-03-10 Aldy Hernandez <aldyh@redhat.com>
4480
4481 * dwarf2out.c (multiple_reg_loc_descriptor): Fix thinko.
4482
4483 2003-03-10 Andrew Pinski <apinski@apple.com>
4484
4485 * config/darwin.c (machopic_function_base_name): If dynamic-no-pic
4486 is on should not get here.
4487 (machopic_indirect_data_reference): If dynamic-no-pic is on just
4488 generate high/low parts of the address.
4489 (machopic_legitimize_pic_address): Change MACHOPIC_PURE to
4490 MACHOPIC_INDIRECT. Dynamic-no-pic uses 0 as the pic base. Generate
4491 symbol and labels with a new reg. Dynamic-no-pic does not have a
4492 pic_offset_table_rtx.
4493 (machopic_select_section): Change references of flag_pic to
4494 MACHOPIC_INDIRECT.
4495 (machopic_asm_out_destructor): Likewise.
4496 * config/darwin.h (ASM_DECLARE_UNRESOLVED_REFERENCE): Change
4497 reference of flag_pic to MACHOPIC_INDIRECT.
4498 (MACHO_DYNAMIC_NO_PIC_P): Define as TARGET_DYNAMIC_NO_PIC.
4499 (MACHOPIC_INDIRECT): Is also true when dynamic-no-pic is on.
4500 (MACHOPIC_JUST_INDIRECT): Is also true when dynamic-no-pic is on.
4501 (MACHOPIC_PURE): Is not pure when dynamic-no-pic is on.
4502 * config/i386/darwin.h (MASK_MACHO_DYNAMIC_NO_PIC): Define as
4503 0 for right now as dynamic-no-pic is not implemented on Darwin/ia32.
4504 * config/rs6000/darwin.h (MASK_MACHO_DYNAMIC_NO_PIC): Define.
4505 (TARGET_DYNAMIC_NO_PIC): Define.
4506 (SUBTARGET_SWITCHES): Define, have sub-target switches for
4507 dynamic-no-pic.
4508 (SUBTARGET_OVERRIDE_OPTIONS): Move check for -fpic from
4509 rs6000_override_options to here. Dynamic-no-pic overrides
4510 pic.
4511 (CC1_SPEC): Change from not static then pic to not static and not
4512 dynamic-no-pic then pic.
4513 * config/rs6000/rs6000.c (rs6000_override_options): Move the
4514 check for -fpic and DARWIN_ABI to config/rs6000/darwin.h
4515 (rs6000_legitimize_reload_address): Add case for loading floating in
4516 dynamic-no-pic.
4517 (rs6000_emit_move): Add case for dynamic-no-pic. Change reference
4518 of flag_pic to MACHOPIC_INDIRECT.
4519 (secondary_reload_class): Conditional change the reference of
4520 flag_pic to MACHOPIC_INDIRECT.
4521 (rs6000_output_mi_thunk): Change reference of flag_pic to
4522 MACHOPIC_INDIRECT.
4523 (output_profile_hook): Likewise.
4524 (machopic_output_stub): Non-pure (dynamic-no-pic) is now supported.
4525 * config/rs6000/rs6000.md (movdf_low): Add the case for
4526 MACHO_DYNAMIC_NO_PIC_P.
4527 (call): Change references for flag_pic in TARGET_MACHO to
4528 MACHOPIC_INDIRECT.
4529 (SUBTARGET_OVERRIDE_OPTIONS): Add case where -fpic is on and
4530 -mdynamic-no-pic is on. Also move case for -fpic from rs6000.c.
4531 * doc/invoke.texi (-mdynamic-no-pic): Document.
4532
4533 2003-03-10 Devang Patel <dpatel@apple.com>
4534
4535 PR c++/9394
4536 * gcc.c (DEFAULT_SWITCH_TAKES_ARG): Remove.
4537 (DEFAULT_WORD_SWITCH_TAKES_ARG): Remove.
4538 * gcc.h (DEFAULT_SWITCH_TAKES_ARG): Add.
4539 (DEFAULT_WORD_SWITCH_TAKES_ARG): Add.
4540 * cppspec.c (DEFAULT_SWITCH_TAKES_ARG): Remove.
4541 (DEFAULT_WORD_SWITCH_TAKES_ARG): Remove.
4542
4543 2003-03-10 Steven Bosscher <s.bosscher@student.tudelft.nl>
4544
4545 PR optimization/7189
4546 * toplev.c (rest_of_compilation): Move
4547 check_function_return_warnings up to just after
4548 delete_unreachable_blocks.
4549
4550 2003-03-10 Stephane Carrez <stcarrez@nerim.fr>
4551
4552 * config/m68hc11/m68hc11.h (HARD_REGNO_RENAME_OK): Define.
4553 * config/m68hc11/m68hc11-protos.h (m68hc11_hard_regno_rename_ok):
4554 Declare.
4555 * config/m68hc11/m68hc11.c (m68hc11_hard_regno_rename_ok): New function
4556 for reg rename optimization to avoid using Z and Y registers.
4557
4558 2003-03-10 Stephane Carrez <stcarrez@nerim.fr>
4559
4560 * config/m68hc11/m68hc11.md ("*addhi3_68hc12"): Accept any constant
4561 when adding to X and Y since leax/leay are fast.
4562 ("*addhi3"): Accept 'I' constraint when adding to address register.
4563 ("rotlhi3"): Operand 1 must be a register_operand.
4564 (peephole2): New peephole to optimize some adds.
4565 * config/m68hc11/m68hc11.h (CONST_OK_FOR_LETTER_P): Use 'I' constraint
4566 to represent -2 .. 2 small integer range.
4567
4568 2003-03-10 Stephane Carrez <stcarrez@nerim.fr>
4569
4570 * config/m68hc11/m68hc11.c (m68hc11_gen_rotate): Set carry before
4571 each 16-bit rotation.
4572
4573 2003-03-10 Zack Weinberg <zack@codesourcery.com>
4574
4575 * c-opts.c (add_prefixed_path): Don't use concat. When
4576 prefixing with cpp_GCC_INCLUDE_DIR, copy only the first
4577 cpp_GCC_INCLUDE_DIR_len characters.
4578
4579 2003-03-10 Segher Boessenkool <segher@koffie.nl>
4580
4581 * testsuite/gcc.dg/altivec-9.c: New file.
4582
4583 * config/rs6000/rs6000.c (altivec_frame_fixup): Remove.
4584 (rs6000_emit_prologue): Use rs6000_frame_related instead.
4585
4586 2003-03-10 Aldy Hernandez <aldyh@redhat.com>
4587
4588 * config/rs6000/spe.h: Define __ev64_*64__ to use single element
4589 vectors.
4590 (__ev_convert_u64): Remove macro. Define as inline.
4591 (__ev_convert_s64): Same.
4592
4593 2003-03-10 Aldy Hernandez <aldyh@redhat.com>
4594
4595 * config/rs6000/rs6000.h (DWARF_FRAME_REGISTERS): Define.
4596 (rs6000_stack_t): Add spe_64bit_regs_used.
4597
4598 * config/rs6000/rs6000.c (rs6000_stack_info): Calculate
4599 spe_64bit_regs_used, and use it to determine the size of the
4600 frame.
4601 (spe_func_has_64bit_regs_p): New.
4602 (spe_synthesize_frame_save): New.
4603 (rs6000_frame_related): Handle SPE synthetic registers.
4604 (rs6000_emit_prologue): Only save in 64-bits if the function used
4605 any registers in 64-bit mode.
4606 (rs6000_emit_epilogue): Same, but for restore.
4607
4608 2003-03-10 Richard Earnshaw <rearnsha@arm.com>
4609
4610 * arm.h (enum floating_point_type): Delete. Replace with...
4611 (enum fputype): ... new.
4612 (FPUTYPE_DEFAULT): Renamed from FP_DEFAULT. Values reworked.
4613 * linux-elf.h (FPUTYPE_DEFAULT): Likewise.
4614 * arm.md (attr fpu): Reworked for new underlying enum values.
4615 * arm.c (arm_fpu_arch): Now enum fputype.
4616 (arm_fpu_tune): Renamed from arm_fpu. Now enum fputype.
4617 (arm_override_options, arm_output_epilogue, arm_expand_prologue):
4618 Update uses of arm_fpu_arch and arm_fpu_tune.
4619
4620 2003-03-10 Josef Zlomek <zlomekj@suse.cz>
4621
4622 * cfgcleanup.c (outgoing_edges_match): Compare the jump tables.
4623 (try_crossjump_to_edge): Replace refereces to one jump table by
4624 references to identical jump table.
4625 * loop.c (load_mems): Moved setting the JUMP_LABEL to replace_label.
4626 (replace_label): Moved to rtlanal.c.
4627 (struct rtx_pair): Moved to rtl.h.
4628 * rtl.h (struct rtx_pair): Moved from loop.c.
4629 (replace_label): New extern function.
4630 (subrtx_p): New extern function.
4631 (tablejump_p): New extern function.
4632 * rtlanal.c (replace_label): Moved from loop.c.
4633 (subrtx_p_1): New static function.
4634 (subrtx_p): New function.
4635 (tablejump_p): New function.
4636
4637 2003-03-10 Jan Hubicka <jh@suse.cz>
4638
4639 * cfgcleanup.c (try_optimize_cfg): Fix thinko in previous patch.
4640
4641 * cfgcleanup.c (merge_blocks): Return where to iterate next.
4642 (try_optimize_cfg): Use return value of merge_blocks
4643
4644 2003-03-10 Michael Matz <matz@suse.de>
4645
4646 * cfg.c (unchecked_make_edge): New.
4647 (cached_make_edge): Use it.
4648 * basic-block.h (unchecked_make_edge): Declare.
4649 * cfglayout.c (cfg_layout_duplicate_bb): Use it.
4650
4651 2003-03-10 Richard Earnshaw <rearnsha@arm.com>
4652
4653 * fpa.md: New file. Move all patterns relating to FPA co-processor
4654 to here...
4655 * arm.md: ... from here.
4656 (cirrus.md, fpa.md): Include at end of description.
4657 (divsf3, divdf3, modsf3, movdf3, sqrtsf2, sqrtdf2): New expands.
4658 (pic_load_addr_based): Remove register constraint from expander.
4659 (seq, sne, sgt, sle, slt, sge, sgeu, sleu, sgtu, sltu, sunordered)
4660 (sordered, sungt, sunle, sunge, sunlt): Likewise.
4661 (eh_epilogue, tablejump): Likewise.
4662
4663 2003-03-09 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
4664
4665 * tree.c (substitute_in_expr, case 'e'): Only make recursive call
4666 on operands if it has a PLACEHOLDER_EXPR.
4667
4668 2003-03-09 David Edelsohn <edelsohn@gnu.org>
4669 Mostafa Hagog
4670
4671 * config/rs6000/rs6000.md (movsi_update1): Add TARGET_UPDATE final
4672 condition.
4673
4674 2003-03-09 Neil Booth <neil@daikokuya.co.uk>
4675
4676 * config/frv/frv.h: Use TARGET_CPU_CPP_BUILTINS, not CPP_PREDEFINES.
4677 * config/ip2k/ip2k.h: Similarly.
4678 * config/m32r/m32r.h: Similarly.
4679 * config/m68hc11/m68hc11.h: Similarly.
4680 * config/mn10200/mn10200.h: Similarly.
4681 * config/mn10300/mn10300.h: Similarly.
4682 * config/pdp11/pdp11.h: Similarly.
4683 * config/v850/v850.h: Similarly.
4684 * config/rs6000/vxworks.h: Similarly for TARGET_OS_CPP_BUILTINS.
4685 * config/v850/retms.h: Similarly for TARGET_OS_CPP_BUILTINS.
4686 * config/mips/iris3.h: Remove #if 0 block.
4687
4688 2003-03-09 Roger Sayle <roger@eyesopen.com>
4689 Joern Rennecke <joern.rennecke@superh.com>
4690
4691 * gcc.c (do_spec_1) ['{']: Revert 2003-02-24 patch. Don't handle
4692 pending argument upon return from handle_braces here.
4693 (do_spec_2): Instead handle it upon return from do_spec_1 here.
4694
4695 2003-03-09 Roger Sayle <roger@eyesopen.com>
4696 Joern Rennecke <joern.rennecke@superh.com>
4697
4698 * gcc.c (do_spec_1) ['{']: Revert 2003-02-24 patch. Don't handle
4699 pending argument upon return from handle_braces here.
4700 (do_spec_2): Instead handle it upon return from do_spec_1 here.
4701
4702 2003-03-09 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
4703
4704 * varasm.c (make_decl_one_only): Use declare_weak().
4705
4706 2003-03-09 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
4707
4708 PR middle-end/9986
4709 * c-common.c (c_common_nodes_and_builtins): Initialize target builtins
4710 after the common builtins.
4711 * pa-hpux.h (DONT_HAVE_FPUTC_UNLOCKED): Define.
4712 * pa.c (TARGET_INIT_BUILTINS): Define.
4713 (pa_init_builtins): New function.
4714
4715 * pa.md (call, call_value, sibcall, sibcall_value): When sufficient
4716 space has been allocated for the outgoing arguments, set the arg
4717 pointer for a call emitted after virtuals have been instantiated
4718 using the stack pointer offset, otherwise abort.
4719
4720 2003-03-09 DJ Delorie <dj@redhat.com>
4721
4722 * config/stormy16/stormy16.h (DWARF_LINE_MIN_INSTR_LENGTH): Revert.
4723
4724 2003-03-09 Richard Earnshaw <rearnsha@arm.com>
4725
4726 * arm.md (fix_truncsfsi2, fix_truncdfsi2, arm_fix_truncsfsi2)
4727 (arm_fix_truncdfsi2): Add missing fix in floating point mode before
4728 conversion to integer.
4729 * cirrus.md (cirrus_truncsfsi2, cirrus_truncdfsi2): Likewise.
4730
4731 2003-03-09 Roger Sayle <roger@eyesopen.com>
4732
4733 * builtins.def: Fix typo and improve grammar.
4734 * loop-unroll.c (decide_peel_completely): Tidy log message.
4735
4736 2003-03-09 Kazu Hirata <kazu@cs.umass.edu>
4737
4738 * config/h8300/h8300.md (*tstsi_upper_bit): New.
4739 (*iorsi3_e2f): Likewise.
4740
4741 2003-03-08 Kazu Hirata <kazu@cs.umass.edu>
4742
4743 * config/h8300/h8300.c (h8300_and_costs): Return the number of
4744 assembly instructions needed.
4745 (h8300_shift_costs): Likewise.
4746
4747 2003-03-09 Hans-Peter Nilsson <hp@bitrange.com>
4748
4749 * config/cris/aout.h (ENDFILE_SPEC): Undef.
4750
4751 * optabs.c (gen_move_insn): Move logic for synthesizing MODE_CC
4752 moves from here ...
4753 * expr.c (emit_move_insn_1): ... to here.
4754
4755 * config/cris/aout.h (CRIS_CPP_SUBTARGET_SPEC): Move -D__AOUT__ to...
4756 (TARGET_OS_CPP_BUILTINS): New macro.
4757 * config/cris/cris.h (CRIS_CPP_SUBTARGET_SPEC): Move -D__ELF__ to...
4758 (TARGET_OS_CPP_BUILTINS): New macro.
4759 (CPP_PREDEFINES): Don't define. Move old definitions and...
4760 (CPP_SPEC): ...move -D__CRIS_ABI_version=2 to...
4761 (TARGET_CPU_CPP_BUILTINS): New macro.
4762 * config/cris/linux.h (CRIS_CPP_SUBTARGET_SPEC): Move constant
4763 definitions and the optional __PIC__, __pic__ and
4764 __NO_UNDERSCORES__ definitions to...
4765 (TARGET_OS_CPP_BUILTINS): New macro.
4766
4767 * flags.h (flag_leading_underscore): Declare.
4768
4769 * c-opts.c (c_common_post_options): On fopen failure, return
4770 false, not NULL.
4771
4772 2003-03-08 Hans-Peter Nilsson <hp@bitrange.com>
4773
4774 * config/cris/cris_abi_symbol.c: #include tconfig.h and tm.h, not
4775 config.h.
4776 * config/cris/cris.h (HAVE_GAS_HIDDEN): Don't define here.
4777 * config/cris/aout.h (HAVE_GAS_HIDDEN): Undef.
4778
4779 2003-03-08 Neil Booth <neil@daikokuya.co.uk>
4780
4781 * config/sh/rtemself.h (TARGET_OS_CPP_BUILTINS): Use instead of
4782 CPP_PREDEFINES.
4783 * config/sh/rtems.h (TARGET_OS_CPP_BUILTINS): Use instead of
4784 CPP_PREDEFINES.
4785
4786 2003-03-08 Neil Booth <neil@daikokuya.co.uk>
4787
4788 * c-common.h (c_common_init, c_common_post_options): Update.
4789 * c-objc-common.c (c_objc_common_init): Update for new prototype.
4790 * c-opts.c (saved_lineno): New.
4791 (c_common_post_options, c_common_init): Update prototypes,
4792 move call to cpp_read_main_file from latter to former.
4793 * c-tree.h (c_ojbc_common_init): Update.
4794 * langhooks-def.h (lhd_post_options): New.
4795 (LANG_HOOKS_INIT, LANG_HOOKS_POST_OPTIONS): Update.
4796 * langhooks.c (lhd_post_options): New.
4797 * langhooks.h (struct lang_hooks): Update post_options and init hooks.
4798 * toplev.c (no_backend): New.
4799 (process_options): Call post_options hook and set main_input_filename
4800 and input_filename here.
4801 (lang_dependent_init, do_compile): post_options hook moved to
4802 process_options.
4803 * objc/objc-act.c (objc_init): Update prototype.
4804 * objc/objc-act.h (objc_init): Update prototype.
4805
4806 2003-03-08 Roger Sayle <roger@eyesopen.com>
4807
4808 * emit-rtl.c (gen_lowpart): Don't attempt to load a part of
4809 a complex or vector type, using a load in the original mode.
4810
4811 2003-03-08 Jan Hubicka <jh@suse.cz>
4812
4813 * Makefile.in (cgraph.o): Depend on gt-cgraph.h and varray.h.
4814 * gt-cgraph.h: New GC file.
4815 * cgraph.c (known_fns): New static variable.
4816 (cgraph_node): Add the decl into varray.
4817
4818 2003-03-08 Hans-Peter Nilsson <hp@bitrange.com>
4819
4820 * config/mmix/mmix.md ("*movcc_expanded"): Add missing alternatives.
4821
4822 2003-03-08 Richard Earnshaw <rearnsha@arm.com>
4823
4824 * arm.c (fpa_rhs_operand, fpa_add_operand, const_double_rtx_ok_for_fpa)
4825 (neg_const_double_ok_for_fpa, output_mov_long_double_fpa_from_arm)
4826 (output_mov_long_double_arm_from_fpa, output_mov_double_fpa_from_arm)
4827 (output_mov_double_arm_from_fpa): Renamed to use fpa instead of fpu.
4828 All callers changed.
4829 * arm.md, arm.h, arm-protos.h: Updated.
4830
4831 * arm.h (enum reg_class FPA_REGS): Renamed from FPU_REGS.
4832 (CLASS_MAX_NREGS, REGISTER_MOVE_COST, REG_CLASS_FROM_LETTER): Updated.
4833 * arm.c (arm_regno_class, f_register_operand): Updated.
4834
4835 2003-03-08 Hans-Peter Nilsson <hp@bitrange.com>
4836
4837 * config/cris/cris.h: Remove EGCS references.
4838 (CPP_SPEC): Remove "-$".
4839 (INIT_CUMULATIVE_ARGS): Adjust parameter name to FNDECL.
4840
4841 2003-03-08 Neil Booth <neil@daikokuya.co.uk>
4842
4843 * config/stormy16/stormy16.h (TARGET_CPU_CPP_BUILTINS): Use in
4844 preference to CPP_PREDEFINES.
4845
4846 2003-03-08 Neil Booth <neil@daikokuya.co.uk>
4847
4848 * cppinit.c (cpp_finish_options): Set first_unused_line to -1.
4849
4850 2003-03-08 Kazu Hirata <kazu@cs.umass.edu>
4851
4852 * config/h8300/h8300.md (*extzv_16_8): New.
4853
4854 2003-03-08 Jan Hubicka <jh@suse.cz>
4855
4856 * c-decl.c: (finish_function): Update call of tree_inlinable_function_p.
4857 * cgraph.h: (cgraph_local_info): Add can_inline_once
4858 (cgraph_global_info): Add inline_once.
4859 (cgraph_node): Add previous.
4860 (cgraph_remove_node): New.
4861 * cgraphunit.c (cgraph_mark_functions_to_inline_once): New static
4862 function.
4863 (cgraph_optimize): Call it.
4864 (cgraph_finalize_function): Set inlinable flags.
4865 (cgraph_finalize_compilation_unit): Actually remove the reclaimed nodes.
4866 (cgraph_mark_functions_to_output): Use new inlining heuristics flags.
4867 (cgraph_expand_function): Likewise.
4868 * cgraph.c
4869 (cgraph_node): Put nodes into doubly linked chain.
4870 (cgraph_remove_node): New function.
4871 * flags.h (flag_inline_functions_called_once): Declare.
4872 * tree-inline.c: Include cgraph.h
4873 (inlinable_functions_p): Add extra argument to bypass limits.
4874 (expand_call_inline): Obey cgraph flag.
4875 * tree-inline.h (tree_inlinable_function_p): Update prototype.
4876
4877 2003-03-08 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
4878
4879 * gcse.c (bypass_block, bypass_conditional_jumps): Do not create
4880 irreducible loops.
4881
4882 * loop-unroll.c (unroll_loop_runtime_iterations): Update irreducible
4883 loops info correctly.
4884
4885 2003-03-08 Eric Botcazou <ebotcazou@libertysurf.fr>
4886
4887 PR middle-end/7796
4888 * unroll.c (calculate_giv_inc): Handle constants being
4889 loaded with LSHIFTRT.
4890
4891 2003-03-07 David Edelsohn <edelsohn@gnu.org>
4892
4893 * config/rs6000/rs6000.c (processor_target_table): Do not disable
4894 GP optional instructions on Power3, Power4, 620, and 630.
4895
4896 2003-03-07 Kazu Hirata <kazu@cs.umass.edu>
4897
4898 * calls.c: Fix comment formatting.
4899 * cfgloopanal.c: Likewise.
4900 * cfgloopmanip.c: Likewise.
4901 * combine.c: Likewise.
4902 * dwarf2out.c: Likewise.
4903 * ggc-common.c: Likewise.
4904 * langhooks.c: Likewise.
4905 * loop-unroll.c: Likewise.
4906 * loop.c: Likewise.
4907 * ra-build.c: Likewise.
4908 * sbitmap.c: Likewise.
4909 * toplev.c: Likewise.
4910
4911 2003-03-07 James E Wilson <wilson@tuliptree.org>
4912
4913 * config/sh/sh.h (HARD_REGNO_NREGS): Round up the XD register count.
4914
4915 2003-03-07 Geoffrey Keating <geoffk@apple.com>
4916
4917 * objc/lang-specs.h (objective-c-header): Use .gch not .pch;
4918 support -no-integrated-cpp.
4919
4920 * c-pch.c (get_ident): Use c_language_kind and flag_objc rather
4921 than langhooks.name.
4922
4923 2003-03-07 Michael Matz <matz@suse.de>
4924
4925 * df.h (enum df_ref_flags.DF_REF_STRIPPED): New.
4926 (DF_FOR_REGALLOC): New.
4927 * df.c (df_ref_record): Set DF_REF_STRIPPED.
4928 (read_modify_subreg_p): Simplify.
4929 (df_def_record_1, df_uses_record): Set DF_REF_MODE_CHANGE more often.
4930 Use DF_FOR_REGALLOC.
4931 * ra.h (struct web): New member subreg_stripped.
4932 (invalid_mode_change_regs): Declare.
4933 * ra.c (invalid_mode_change_regs): New.
4934 (init_ra): Initialize it.
4935 * ra-build.c (init_one_web_common, remember_web_was_spilled): Use it.
4936 Use CANNOT_CHANGE_MODE_CLASS as ifdef guard.
4937 (reinit_one_web, parts_to_web_1): Deal with subreg_stripped.
4938 * ra-colorize.c (colorize_one_web): Use invalid_mode_change_regs.
4939 Use CANNOT_CHANGE_MODE_CLASS as ifdef guard.
4940
4941 2003-03-07 Richard Earnshaw <rearnsha@arm.com>
4942
4943 * arm.md (addsf3, adddf3, subsf3, subdf3, mulsf3, muldf3, negsf2)
4944 (negdf2, abssi2, abssf2, absdf2, floatsisf2, floatsidf2)
4945 (fix_truncsfsi2, fix_truncdfsi2, truncdfsf2): Moved back into main
4946 machine description file from ...
4947 * cirrus.md: ... here.
4948
4949 2003-03-06 Kazu Hirata <kazu@cs.umass.edu>
4950
4951 * config/h8300/h8300.md (a peephole2): Don't use
4952 reg_overlap_mentioned_p.
4953
4954 2003-03-06 Geoffrey Keating <geoffk@apple.com>
4955
4956 * c-pch.c: Include langhooks.h.
4957 (IDENT_LENGTH): New.
4958 (get_ident): New.
4959 (pch_ident): Delete.
4960 (pch_init): Use get_ident, IDENT_LENGTH.
4961 (c_common_valid_pch): Likewise. Also, use actual language
4962 in warning message.
4963 * Makefile.in (c-pch.o): Add langhooks.h to dependencies.
4964
4965 * objc/config-lang.in (gtfiles): Add objc-act.c. Remove duplicate
4966 c-parse.in.
4967 * objc/Make-lang.in (objc/objc-act.o): Add dependency on
4968 gt-objc-objc-act.h.
4969 (gt-objc-objc-act.h): New rule.
4970 * objc/lang-specs.h: Support PCH.
4971 * objc/objc-act.c: Include gt-objc-objc-act.h.
4972 (objc_add_static_instance): Move num_static_inst out, mark for PCH.
4973 (build_selector_reference_decl): Move idx out, mark for PCH.
4974 (build_class_reference_decl): Likewise.
4975 (build_objc_string_decl): Move *_idx out, mark for PCH.
4976 (build_tmp_function_decl): Move xxx out, mark for PCH.
4977
4978 2003-03-06 Dale Johannesen <dalej@apple.com>
4979
4980 * config/rs6000/rs6000.c (rs6000_binds_local_p): Consider
4981 global functions for inlining on Darwin.
4982
4983 2003-03-06 Vladimir Makarov <vmakarov@redhat.com>
4984
4985 * haifa-sched.c (schedule_block): Don't call reorder when sorting
4986 is prohibited.
4987
4988 2003-03-06 Neil Booth <neil@daikokuya.co.uk>
4989
4990 * Makefile.in (c-ppoutput.o): Update.
4991 * c-common.h (init_pp_output): New.
4992 (preprocess_file): Update.
4993 * c-lex.c (init_c_lex): Move mbchar initialization to cpplib.
4994 Register builtins.
4995 * c-opts.c (c_common_init): Call init_pp_output if preprocessing.
4996 Make call to cpp_read_main_file common to whether preprocessing
4997 or not. Don't register builtins.
4998 * c-ppoutput.c: Include c-pragma.h.
4999 (setup_callbacks): Rename init_pp_output.
5000 (preprocess_file): No longer setup callbacks or call
5001 cpp_read_main_file.
5002 * cpphash.h (_cpp_init_mbchar): New.
5003 * cppinit.c (init_library): Call _cpp_init_mbchar.
5004 * cpplex.c (_cpp_init_mbchar): New.
5005
5006 2003-03-06 Roger Sayle <roger@eyesopen.com>
5007
5008 * emit-rtl.c (gen_lowpart): When requesting the low-part of a
5009 MEM, try loading the MEM into a register and taking the low-part
5010 of that, to help CSE see the use of the MEM in its true mode.
5011
5012 2003-03-05 Tom Tromey <tromey@redhat.com>
5013
5014 * config/stormy16/stormy16.h (DWARF_LINE_MIN_INSTR_LENGTH):
5015 Define.
5016
5017 2003-03-05 Nick Clifton <nickc@cambridge.redhat.com>
5018
5019 * config/stormy16/stormy16.md ("*eqbranchsi"): Remove '+' on
5020 operand 2.
5021 ("*ineqbranchsi"): Likewise.
5022
5023 2003-03-05 Andrew Haley <aph@cambridge.redhat.com>
5024
5025 * config/stormy16/stormy16.c (xstormy16_expand_prologue): Delete
5026 mem_fake_push_rtx. Instead construct a SEQUENCE to show the
5027 register store followed by a stack increment.
5028
5029 2003-03-05 Chris Moller <cmoller@redhat.com>
5030
5031 * config/stormy16/stormy16.c (REG_NEEDS_SAVE): added a term
5032 to inhibit saving CARRY_REGS.
5033
5034 * config/stormy16/stormy16.c (xs_hi_general_operand):
5035 added predicate to detect and error-out on out-of-range
5036 const_ints for movhi.
5037 * config/stormy16/stormy16.md (movhi): use
5038 xs_hi_general_operand.
5039
5040 * config/stormy16/stormy16.c (xstormy16_expand_prologue):
5041 added a check for local vbl size overflow.
5042 * config/stormy16/stormy16.c (xs_hi_nonmemory_operand):
5043 added predicate to detect and error-out on out-of-range
5044 const_ints for addhi and subhi.
5045 * config/stormy16/stormy16.md (addhi3, addchi4, addchi5,
5046 subhi3, subchi4, subchi5): used xs_hi_nonmemory_operand.
5047
5048 * config/stormy16/stormy16.c (xstormy16_legitimate_address_p):
5049 add a term to accept PRE_MODIFY addresses.
5050 * config/stormy16/stormy16.c (xstormy16_expand_move):
5051 add code to expand PRE_MODIFY addresses to an add followed
5052 by a move.
5053
5054 2003-03-06 Jason Merrill <jason@redhat.com>
5055
5056 * tree-inline.c (inlinable_function_p): Revert earlier change
5057 pending investigation.
5058
5059 2003-03-06 Kazu Hirata <kazu@cs.umass.edu>
5060
5061 * config/h8300/h8300.md (a new peephole2): New.
5062
5063 2003-03-06 Jan Hubicka <jh@suse.cz>
5064
5065 * cgraph.c (cgraph_node): Do not confuse nested functions and methods.
5066
5067 2003-03-06 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
5068
5069 * dwarf2out.c (size_of_die): Compute size of external reference to
5070 die correctly.
5071
5072 2003-03-06 Hans-Peter Nilsson <hp@bitrange.com>
5073
5074 * config/mmix/mmix.md ("*movcc_expanded"): New pattern.
5075 ("movcc", "movcc_uns", "movcc_fp", "movcc_fpeq", "movcc_fun"): New
5076 expanders.
5077
5078 2003-03-05 Roger Sayle <roger@eyesopen.com>
5079
5080 * expr.h (lang_expand_expr): Delete obsolete prototype.
5081
5082 2003-03-05 Kazu Hirata <kazu@cs.umass.edu>
5083
5084 * emit-rtl.c (gen_highpart_mode): Fix a comment typo.
5085
5086 2003-03-05 Kazu Hirata <kazu@cs.umass.edu>
5087
5088 * config/h8300/h8300.md (a peephole2): Generalize to
5089 accept a memory operand.
5090
5091 2003-03-05 Olivier Hainque <hainque@act-europe.fr>
5092
5093 * config/alpha/alpha.h (PRINT_OPERAND_PUNCT_VALID_P): Add '+'.
5094 * config/alpha/alpha.c (print_operand, case '+'): New.
5095 * config/alpha/alpha.md (call_osf_1_noreturn): Document and use.
5096 (call_value_osf_1_noreturn): Likewise.
5097
5098 2003-03-05 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
5099
5100 * stmt.c (fixup_gotos): Change meaning of DONT_JUMP_IN.
5101 (expand_end_bindings): Likewise.
5102
5103 2003-03-05 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5104
5105 * pa.md (return_external_pic): Add !TARGET_PA_20 to constraint.
5106 (epilogue): Don't generate return_external_pic when emitting PA 2.0
5107 code.
5108
5109 2003-03-05 Aldy Hernandez <aldyh@redhat.com>
5110
5111 * doc/tm.texi: Document TARGET_DWARF_REGISTER_SPAN.
5112
5113 * config/rs6000/rs6000.c (rs6000_dwarf_register_span): New.
5114
5115 * hooks.c (hook_rtx_rtx_null): New.
5116
5117 * hooks.h (hook_rtx_rtx_null): Protoize.
5118
5119 * target-def.h (TARGET_DWARF_REGISTER_SPAN): New macro.
5120 (TARGET_INITIALIZER): Add TARGET_DWARF_REGISTER_SPAN.
5121
5122 * target.h (struct gcc_target): Add dwarf_register_span.
5123
5124 * dwarf2out.c (multiple_reg_loc_descriptor): New.
5125 (one_reg_loc_descriptor): New.
5126 (reg_loc_descriptor): Add support for values that span more than
5127 one register.
5128
5129 2003-03-05 Jan Hubicka <jh@suse.cz>
5130
5131 * Makefile.in (calls.o, toplev.o alias.o): Depend on cgraph.h
5132 * alias.c: Include cgraph.h
5133 (mark_constant_function): Use cgraph_rtl_info.
5134 * calls.c: Include cgraph.h
5135 (flags_from_decl_or_type): Use cgraph_rtl_info to find pure and const
5136 calls.
5137 (expand_call): Use cgraph_rtl_info to set preferred stack boundary.
5138 * cgraph.c (cgraph_rtl_info): New function.
5139 * cgraph.h (cgraph_rtl_info): Declare
5140 (cgraph_rtl_info): Likewise.
5141 * function.h (struct function): Add recursive_call_emit.
5142 * toplev.c: Include cgraph.h.
5143 (rest_of_compilation): Set preferred_incoming_stack_boundary.
5144
5145 2003-03-05 Kazu Hirata <kazu@cs.umass.edu>
5146
5147 * config/h8300/h8300.c (output_simode_bld): Clear the
5148 destination first if possible.
5149 * config/h8300/h8300.md (extzv_1_r_h8300hs): Add an
5150 alternative.
5151 (extzv_1_r_inv_h8300hs): Likewise.
5152
5153 2003-03-05 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
5154
5155 * basic-block.h (EDGE_IRREDUCIBLE_LOOP, EDGE_ALL_FLAGS): New.
5156 * cfg.c (dump_edge_info): Add EDGE_IRREDUCIBLE_LOOP flag dump.
5157 * cfgloop.c (flow_loop_free): Made global.
5158 (establish_preds): New static function.
5159 (flow_loop_tree_node_add): Handle subloops of added loop correctly.
5160 (get_loop_exit_edges): New.
5161 (verify_loop_structure): Verify EDGE_IRREDUCIBLE_LOOP flags.
5162 * cfgloop.h (flow_loop_free, get_loop_exit_edges, unloop): Declare.
5163 * cfgloopanal.c (mark_irreducible_loops): Mark edges in irreducible
5164 loops.
5165 * cfgloopmanip.c (loop_delete_branch_edge): Allow to test for
5166 removability of an edge.
5167 (fix_irreducible_loops): New static function.
5168 (find_path, remove_path): Add ability to remove enclosing loops.
5169 (unloop): New.
5170 (copy_bbs, duplicate_loop_to_header_edge): Use EDGE_IRREDUCIBLE_LOOP
5171 flags.
5172 * cfgrtl.c (verify_flow_info): Handle EDGE_IRREDUCIBLE_LOOP flag.
5173 * loop-unroll.c (peel_loops_completely): Do not duplicate loop if
5174 not neccessary.
5175 (decide_peel_completely, peel_loops_completely): Allow complete peeling
5176 of non-duplicable once rolling loops.
5177 * loop-unswitch.c (unswitch_loop): Update EDGE_IRREDUCIBLE_LOOP flags.
5178
5179 2003-03-05 J"orn Rennecke <joern.rennecke@superh.com>
5180
5181 * sh.h (OVERRIDE_OPTIONS): For TARGET_SHMEDIA, the minimum value
5182 for align_jumps is 4.
5183
5184 (SECONDARY_INPUT_RELOAD_CLASS): If reloading a PLUS into FPUL,
5185 use GENERAL_REGS.
5186
5187 2003-03-05 Stephane Carrez <stcarrez@nerim.fr>
5188
5189 * config/m68hc11/m68hc11.h (PAD_VARARGS_DOWN): Define and return
5190 according to va_arg type.
5191 (EXPAND_BUILTIN_VA_ARG): Remove.
5192 * config/m68hc11/m68hc11.c (m68hc11_va_arg): Remove.
5193 * config/m68hc11/m68hc11-protos.h (m68hc11_va_arg): Remove.
5194
5195 2003-03-05 David Edelsohn <edelsohn@gnu.org>
5196
5197 * config/rs6000/rs6000.c (rs6000_variable_issue): Remove unnecessary
5198 else clauses.
5199
5200 2003-03-05 Michael Matz <matz@suse.de>
5201
5202 * i386/i386.c (ix86_save_reg): Also test
5203 current_function_uses_const_pool.
5204
5205 2003-03-05 Michael Matz <matz@suse.de>
5206
5207 * unwind.h: Add the GPL exception.
5208 * Makefile.in (USER_H): Add unwind.h.
5209
5210 2003-03-05 Eric Botcazou <ebotcazou@libertysurf.fr>
5211
5212 PR c/9799
5213 * c-typeck.c (push_init_level): Add sanity check.
5214
5215 2003-03-05 Jan Hubicka <jh@suse.cz>
5216
5217 * toplev.c (rest_of_compilation): Deffer RTL compilation only when
5218 RTL inlining is done.
5219
5220 * cgraphunit.c (cgraph_mark_local_functions): New local function.
5221 (cgraph_optimize): Mark local functions.
5222 * i386-protos.h (init_cumulative_args): Update prototype.
5223 * i386.c (init_cumulative_args): Use register passing convention for
5224 local functions.
5225
5226 * cgraph.c (cgraph_global_info_ready): New global variable
5227 (cgraph_local_info, cgraph_global_info): New functions.
5228 * cgraph.h (struct cgraph_local_info, cgraph_global_info): New
5229 structures.
5230 (cgraph_local_info, cgraph_global_info, cgraph_global_info_ready):
5231 Declare.
5232 * cgraphunit.c (cgraph_finalize_function): Set inline_many.
5233 (cgraph_mark_functions_to_output): Use inline_many.
5234 (cgraph_expand_function): Free DECL_SAVED_TREE uncondtionally.
5235 (cgraph_expand_functions): Expand inline functions last.
5236 (cgraph_optimize): Do not emit uneeded functions.
5237
5238 2003-03-04 Steve Ellcey <sje@cup.hp.com>
5239
5240 * expr.c (convert_modes): Check for legal hard register.
5241
5242 2003-03-04 Tom Tromey <tromey@redhat.com>
5243
5244 * doc/sourcebuild.texi (Front End Directory): Document tags.
5245 * configure: Rebuilt.
5246 * configure.in (target_list): Added tags.
5247 * Makefile.in (TAGS): Depend on lang.clean. Include subdirectory
5248 TAGS files by reference.
5249 * objc/Make-lang.in (objc.tags): New target.
5250
5251 2003-03-04 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
5252
5253 * gcov-io.h (gcov_save_position, gcov_reserve_length, gcov_resync,
5254 gcov_skip, gcov_skip_string, gcov_write_unsigned, gcov_write_counter,
5255 gcov_write_string, gcov_read_unsigned, gcov_read_counter,
5256 gcov_read_string, gcov_write_length): Modified to enable reading/
5257 writing of whole .da file just once.
5258 (da_file_open, da_file_close, da_file_eof, da_file_error,
5259 da_file_position, da_file_seek, da_file_write, da_file_read): New
5260 functions.
5261 (actual_da_file, actual_da_file_position, actual_da_file_length,
5262 actual_da_file_buffer, actual_da_file_buffer_size): New static
5263 functions.
5264 * libgcov.c (gcov_exit): Modified to read/write the whole .da file at
5265 just once.
5266
5267
5268 2003-03-04 Andreas Schwab <schwab@suse.de>
5269
5270 * config/m68k/m68k.c (m68k_output_function_prologue): Fix CFA
5271 offset without frame pointer.
5272
5273 2003-03-04 Steve Ellcey <sje@cup.hp.com>
5274
5275 * expr.c (expand_expr): Call promote_mode to set unsignedp.
5276
5277 2003-03-04 Daniel Jacobowitz <drow@mvista.com>
5278
5279 * configure.in: Don't always define TARGET_SYSTEM_ROOT.
5280 * configure: Regenerated.
5281 * gcc.c: Check whether TARGET_SYSTEM_ROOT is defined.
5282
5283 2003-03-04 Andreas Jaeger <aj@suse.de>
5284
5285 * configure.in: Check for <memcheck.h>.
5286 * configure: Regenerated.
5287
5288 * config.in: Define HAVE_MEMCHECK_H.
5289
5290 * ggc-common.c: Use <memcheck.h> if available instead of
5291 <valgrind.h>.
5292 * ggc-page.c: Likewise.
5293 * cppfiles.c: Likewise.
5294
5295 2003-03-04 Kazu Hirata <kazu@cs.umass.edu>
5296
5297 * config/h8300/h8300.md (*extzv_8_8): Fix cc and lengths.
5298
5299 2003-03-04 Eric Botcazou <ebotcazou@libertysurf.fr>
5300
5301 PR c/9262
5302 * c-typeck.c (do_case): Attach the first case label to the SWITCH_BODY.
5303 (c_finish_case): Rechain the next statements to the SWITCH_STMT.
5304
5305 2003-03-04 Jan Hubicka <jh@suse.cz>
5306
5307 * doc/invoke.texi: Document that unit-at-a-time is enabled for -O3
5308 * toplev.c (parse_options_and_default_flags): Enable flag_unit_at_a_time
5309 for -O3.
5310
5311 2003-03-04 Nathanael Nerode <neroden@gcc.gnu.org>
5312
5313 * configure.in: Delete three unused variables. Move a variable
5314 definition closer to its use. Simplify use_collect2 logic. Start to
5315 organize. Simplify tests for in-tree gas and ld.
5316 * configure: Regenerate.
5317
5318 2003-03-04 Neil Booth <neil@daikokuya.co.uk>
5319
5320 * Makefile.in: Update.
5321 * c-common.c (flag_no_line_commands, flag_no_output,
5322 flag_dump_macros, flag_dump_includes): New.
5323 * c-common.h (flag_no_line_commands, flag_no_output,
5324 flag_dump_macros, flag_dump_includes, preprocess_file): New.
5325 (init_c_lex): Update prototype.
5326 * c-lex.c (init_c_lex): Update prototype; move some code to
5327 c_common_init.
5328 * c-opts.c (preprocess_file): Subsume into c_common_init.
5329 (c_common_decode_option): Update flags.
5330 (c_common_init): Move code from preprocess_file and init_c_lex.
5331 (sanitize_cpp_opts): Update.
5332 * c-ppoutput.c: New, cppmain.c almost verbatim.
5333 * cpphash.h (struct printer): Remove.
5334 (struct cpp_reader): Remove print.
5335 * cpplib.h (dump_none, dump_only, dump_names, dump_definitions,
5336 cpp_preprocess_file): Remove.
5337 (struct cpp_options): Remove no_output, no_line_commands, dump_macros
5338 and dump_includes.
5339 * cppmain.c: Remove.
5340 * doc/passes.texi: Update.
5341
5342 2003-03-04 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5343
5344 * function.c (STACK_ALIGNMENT_NEEDED): New macro. Default to 1.
5345 (assign_stack_local_1): Perform overall stack alignment only when
5346 STACK_ALIGNMENT_NEEDED is non-zero.
5347 * doc/tm.texi (STACK_ALIGNMENT_NEEDED): Document.
5348
5349 * pa.c (compute_frame_size): Rename fsize to size. Account for
5350 alignment to a word boundary before general register save block. Only
5351 account for double-word alignment before floating point register save
5352 block if one or more are saved. Don't allocate space for %r3 when
5353 frame pointer is needed.
5354 (hppa_expand_prologue): Include alignment to word boundary in local
5355 frame size.
5356 * pa.h (STARTING_FRAME_OFFSET): Define to 8 on both 32 and 64-bit ports.
5357 (STACK_ALIGNMENT_NEEDED): Define.
5358
5359 2003-03-04 Kevin Buettner <kevinb@redhat.com>
5360
5361 * dwarf2out.c (rtl_for_decl_location): Don't return NULL_RTX for
5362 global register variables.
5363
5364 2003-03-04 Alexandre Oliva <aoliva@redhat.com>
5365
5366 * reload.c (reload_adjust_reg_for_mode): New function.
5367 (subst_reloads): Call it.
5368 (operands_match_p): Adjust registers using HARD_REGNO_NREGS.
5369 * reload.h (reload_adjust_reg_for_mode): Declare.
5370 * reload1.c (emit_input_reload_insns, emit_output_reload_insns):
5371 Call it.
5372
5373 2003-03-03 James E Wilson <wilson@tuliptree.org>
5374
5375 * optabs.c (add_equal_note): Delete SUBREG_REG use.
5376 Fixes PR c/7872.
5377
5378 2003-03-03 Kazu Hirata <kazu@cs.umass.edu>
5379
5380 * config/h8300/h8300.md (*ixorsi3_ashift_16): New.
5381 (*ixorsi3_lshiftrt_16): New.
5382 (*iorsi3_ashift_16): Remove.
5383
5384 2003-03-03 Kazu Hirata <kazu@cs.umass.edu>
5385
5386 * config/h8300/h8300.md (*extzv_8_8): Use '?' to simplify the
5387 pattern.
5388
5389 2003-03-03 Geoffrey Keating <geoffk@apple.com>
5390
5391 * doc/install.texi (Specific): Update entry for powerpc-darwin.
5392
5393 2003-03-03 Richard Henderson <rth@redhat.com>
5394
5395 * config/ia64/ia64.h (HAVE_AS_LTOFFX_LDXMOV_RELOCS): Default to 0.
5396
5397 2003-03-03 David Edelsohn <edelsohn@gnu.org>
5398
5399 * config/rs6000/rs6000.c (rs6000_multipass_dfa_lookahead): Delete.
5400 (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD): Delete.
5401 (rs6000_variable_issue): Do not return negative value.
5402 (rs6000_issue_rate): Uniformly set issue rate to 1 for first
5403 scheduling pass.
5404
5405 2003-03-03 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
5406
5407 * dwarf2out.c (dwarf2out_finish): Swap order of break_out_includes and
5408 prune_unused_types calls.
5409
5410 2003-03-03 Jason Merrill <jason@redhat.com>
5411
5412 * tree-inline.c (find_builtin_longjmp_call): Save and restore
5413 lineno and input_filename.
5414 (find_alloca_call): Likewise.
5415 (inlinable_function_p): Run the langhook earlier.
5416
5417 * calls.c (compute_argument_addresses): Give the new MEMs a
5418 minimum alignment of PARM_BOUNDARY.
5419
5420 2003-03-03 J"orn Rennecke <joern.rennecke@superh.com>
5421
5422 * config/sh/sh.h (EXTRA_SPECS): Add subtarget_asm_relax_spec and
5423 subtarget_asm_isa_spec.
5424 (SUBTARGET_ASM_RELAX_SPEC, SUBTARGET_ASM_ISA_SPEC): Define.
5425 (ASM_SPEC): Define as SH_ASM_SPEC.
5426 (SH_ASM_SPEC): New; take the role of ASM_SPEC, but safe from svr4.h.
5427 Use subtarget_asm_relax_spec and subtarget_asm_isa_spec.
5428 * config/sh/elf.h (ASM_SPEC): Use SH_ASM_SPEC.
5429 (SUBTARGET_ASM_ISA_SPEC): Undef / define.
5430
5431 * sh.h (OVERRIDE_OPTIONS): Set default values for align_loops
5432 and align_jumps if not set.
5433 Force align_jumps to be at least 2.
5434 When relaxing, force align_functions to be at least the maximum of
5435 align_loops, align_jumps and 4.
5436 * sh.c (find_barrier, barrier_align): Honour align_jumps_log.
5437 (sh_loop_align): Honour align_loops_log.
5438
5439 * sh.md (length attribute): Use prev_nonnote_insn instead of PREV_INSN
5440 to check for indirect_jump_scratch.
5441 (indirect_jump_scratch): Add second set.
5442 * sh.c (output_far_jump): Use prev_nonnote_insn instead of PREV_INSN
5443 when looking for indirect_jump_scratch.
5444 Extract scratch register taking new structure of indirect_jump_scratch
5445 into account.
5446 (gen_block_redirect): Set INSN_SCOPE for indirect_jump_scratch.
5447
5448 2003-03-03 Jan Hubicka <jh@suse.cz>
5449
5450 * calls.c (rtx_for_function_call): Take the address as an argument
5451 (expand_call): Do not modify the expression.
5452
5453 * toplev.c (rest_of_compilation): Avoid cfg_cleanup calls when not
5454 optimizing.
5455
5456 2003-03-03 Kazu Hirata <kazu@cs.umass.edu>
5457
5458 * config/h8300/h8300.md (*ixorsi3_zext_hi): Restrict to
5459 TARGET_H8300H and TARGET_H8300S.
5460
5461 2003-03-03 Kazu Hirata <kazu@cs.umass.edu>
5462
5463 * config/h8300/h8300.md (a peephole2): New.
5464
5465 2003-03-03 Kazu Hirata <kazu@cs.umass.edu>
5466
5467 * config/h8300/h8300.md (*extzv_8_8): Use shorter code when
5468 operands[0] and operands[1] are different.
5469
5470 2003-03-03 Kazu Hirata <kazu@cs.umass.edu>
5471
5472 * reload1.c (reload_cse_move2add): Remove variable success.
5473
5474 2003-03-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5475
5476 * ggc-common.c (ggc_rlimit_bound): Cast RLIM_INFINITY to avoid
5477 warnings.
5478
5479 2003-03-02 Richard Henderson <rth@redhat.com>
5480
5481 * configure.in (HAVE_AS_LTOFFX_LDXMOV_RELOCS): New ia64 test.
5482 * config.in, configure: Rebuild.
5483 * config/ia64/ia64.c (ia64_ld_address_bypass_p): Accept lo_sum.
5484 * config/ia64/ia64.md (load_symptr): Use high/lo_sum for the
5485 paired ldtoffx and ldxmov annotations.
5486 (load_symptr_internal1): Remove.
5487 (load_symptr_high, load_symptr_low): New.
5488
5489 2003-03-02 Neil Booth <neil@daikokuya.co.uk>
5490
5491 * c-incpath.c (add_path): Fix sysp assignment.
5492
5493 2003-03-02 Kurt Garloff <garloff@suse.de>
5494
5495 * params.def: Introduce parameter max-inline-insns-rtl for
5496 a separate limit for the RTL inliner.
5497 * params.h: Likewise.
5498 * integrate.c (function_cannot_inline_p): Use it.
5499 * toplev.c (decode_f_option): Set multiple parameters
5500 controlling inlining with -finline-limit.
5501 * params.def: Fix orthographic and typographic errors.
5502 * doc/invoke.texi: Document parameters controlling inlining
5503 and the way -finline-limit sets multiple of them.
5504
5505 * tree.h (struct tree_decl): Introduce inlined_function_flag,
5506 recording whether the function became eligible for inlining
5507 by a compiler flag rather than the declaration.
5508 Provide DID_INLINE_FUNC macro to access it.
5509 * c-decl.c (grokdeclarator): Set DID_INLINE_FUNC.
5510 * cp/decl.c (grokfndecl): Likewise.
5511 * toplev.c (rest_of_compilation): Likewise.
5512 * cp/optimize (maybe_clone_body): Copy DID_INLINE_FUNC.
5513 * print-tree.c (print_node): Report it.
5514 * params.def: Introduce new max-inline-insns-auto limit.
5515 * params.h: Likewise.
5516 * tree-inline.c (inlinable_function_p): Apply it to functions
5517 with DID_INLINE_FUNC set.
5518 * toplev.c (decode_f_option): Initialize it from -finline-limit
5519 value.
5520 * doc/invoke.texi: Document new parameter.
5521
5522 2003-03-02 Geoffrey Keating <geoffk@apple.com>
5523
5524 * fix-header.c (read_scan_file): Don't reference simplify_path.
5525
5526 2003-03-02 Stephane Carrez <stcarrez@nerim.fr>
5527
5528 * config/m68hc11/m68hc11.c (m68hc11_override_options): Don't enable
5529 min/max instructions by default as may result in reload errors.
5530
5531 2003-03-02 Stephane Carrez <stcarrez@nerim.fr>
5532
5533 * config/m68hc11/m68hc11.md ("mulqi3"): Allow address register to
5534 avoid reload problems; define split for it.
5535
5536 2003-03-02 Stephane Carrez <stcarrez@nerim.fr>
5537
5538 * config/m68hc11/m68hc11.c (m68hc11_shift_operator): New function.
5539 * config/m68hc11/m68hc11-protos.h (m68hc11_shift_operator): Declare.
5540 * config/m68hc11/m68hc11.h (PREDICATE_CODES): Register.
5541 * config/m68hc11/m68hc11.md ("rotrhi3", "rotlhi3"): New patterns for
5542 rotatert and rotate.
5543 ("rotrhi3_const", "rotlhi3_const"): Rename of old 'rotrhi3' insns.
5544 ("*rotrhi3", "*rotlhi3"): New insn pattern for non-const rotatert.
5545 ("*rotrhi3_addr"): New split for shift insns on address register.
5546 ("*lshrhi3", "*ashrhi3", "*ashlhi3_2"): Use new split.
5547 * config/m68hc11/larith.asm (___rotlhi3): New asm function.
5548 (___rotrhi3): Likewise.
5549 * config/m68hc11/t-m68hc11-gas (LIB1ASMFUNCS): Build them.
5550
5551 2003-03-02 Neil Booth <neil@daikokuya.co.uk>
5552
5553 * toplev.c (aux_base_name): Moved from toplev.h.
5554 (filename): Constify.
5555 (lang_dependent_init): Don't duplicate name.
5556 (process_options): Set aux_base_name here, not...
5557 (do_compile): ...here. Change protoype.
5558 (toplev_main): Move some code from do_compile.
5559 * toplev.h: Remove aux_base_name.
5560
5561 2003-03-02 Kazu Hirata <kazu@cs.umass.edu>
5562
5563 * config/h8300/h8300-protos.h: Add a prototype for
5564 iorxor_operator.
5565 * config/h8300/h8300.c (print_operand): Handle 'c'.
5566 (iorxor_operator): New.
5567 * config/h8300/h8300.h (PREDICATE_CODES): Add iorxor_operator.
5568 * config/h8300/h8300.md (*iorhi3_zext): Remove.
5569 (*iorsi3_zexthi): Likewise.
5570 (*iorsi3_zextsi): Likewise.
5571 (*xorhi3_zextqi): Likewise.
5572 (*xorsi3_zexthi): Likewise.
5573 (*xorsi3_zextsi): Likewise.
5574 (*ixorhi3_zext): New.
5575 (*ixorsi3_zext_qi): Likewise.
5576 (*ixorsi3_zext_hi): Likewise.
5577
5578 2003-03-02 Neil Booth <neil@daikokuya.co.uk>
5579
5580 * c-incpath.c (remove_component_p, simplify_path): Move back to
5581 cppfiles.c.
5582 (remove_duplicates): Use cpp_simplify_path.
5583 * c-incpath.h (simplify_path): Remove.
5584 * c-lex.c: Don't include c-incpath.h.
5585 (init_c_lex): Remove simplify_path.
5586 * cppfiles.c (remove_component_p, cpp_simplify_path): Restore.
5587 (find_or_create_entry, validate_pch): Revert.
5588
5589 2003-03-02 Ashif Harji <asharji@uwaterloo.ca>
5590
5591 * gcc.c (default_compilers): Add -no-integrated-cpp flag to invoke
5592 an external cpp during compilation.
5593 (option_map): Likewise.
5594 * objc/lang-specs.h (default_compilers): Similarly.
5595 * doc/invoke.texi: Document -no-integrated-cpp flag.
5596
5597 2003-03-02 Kazu Hirata <kazu@cs.umass.edu>
5598
5599 * config/h8300/h8300.md (zero_extendqisi2): Change to an
5600 expander.
5601 (*zero_extendqisi2_h8300): New.
5602 (*zero_extendqisi2_h8300hs): New.
5603 (two splitters): New.
5604
5605 2003-03-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5606
5607 * fp-bit.h (float_to_usi): Fix condition wrapping prototype.
5608
5609 2003-03-01 Kazu Hirata <kazu@cs.umass.edu>
5610
5611 * config/h8300/h8300.md (a peephole2): Remove dead code.
5612
5613 2003-03-01 Roger Sayle <roger@eyesopen.com>
5614
5615 PR c++/9367
5616 * builtin-types.def (DEF_FUNCTION_TYPE_VAR_3): New macro.
5617 (BT_FN_INT_CONST_STRING_VALIST_ARG,
5618 BT_FN_INT_STRING_CONST_STRING_VALIST_ARG,
5619 BT_FN_INT_CONST_STRING_CONST_STRING_VALIST_ARG,
5620 BT_FN_INT_STRING_SIZE_CONST_STRING_VALIST_ARG,
5621 BT_FN_INT_STRING_CONST_STRING_VAR,
5622 BT_FN_INT_CONST_STRING_CONST_STRING_VAR,
5623 BT_FN_INT_STRING_SIZE_CONST_STRING_VAR): New built-in types.
5624 * builtin-attrs.def (ATTR_NONNULL_1, ATTR_NONNULL_2,
5625 ATTR_NONNULL_3): Also include the nothrow attribute.
5626 (sprintf, scanf, sscanf, vprintf, vsprintf, snprintf,
5627 vsnprintf, vscanf, vsscanf): Don't define attributes here.
5628 * builtins.def (putchar, puts): Make full C89 built-ins.
5629 (snprintf, sprintf, scanf, sscanf, vprintf, vscanf,
5630 vsscanf, vsnprintf, vsprintf): New built-ins.
5631 * c-common.c (c_common_nodes_and_builtins): Handle new macro
5632 DEF_FUNCTION_TYPE_VAR_3.
5633
5634 * doc/extend.texi: Document these new built-in functions.
5635
5636 2003-03-01 Kazu Hirata <kazu@cs.umass.edu>
5637
5638 * config/h8300/h8300.md (a peephole2): New.
5639
5640 2003-03-01 Richard Earnshaw <rearnsha@arm.com>
5641
5642 * predict.c (estimate_bb_frequencies): Correctly set
5643 real_values_initialized after initialization.
5644
5645 2003-03-01 Neil Booth <neil@daikokuya.co.uk>
5646
5647 * Makefile.in (C_AND_OBJC_OBJS, c-incpath.o, c-lex.o, LIBCPP_OBJS,
5648 cppinit.o, cppdefault.o, fix-header): Update.
5649 * c-incpath.c: New file.
5650 * c-incpath.h: New file.
5651 * c-lex.c: Include c-incpath.h.
5652 (init_c_lex): Register path simplifier.
5653 * c-opts.c: Include cppdefault.h and c-incpath.h.
5654 (TARGET_SYSTEM_ROOT, verbose, iprefix, sysroot, std_inc,
5655 std_cxx_inc, quote_chain_split, add_prefixed_path): New.
5656 (COMMAND_LINE_OPTIONS): Add more options from cpplib.
5657 (missing_arg, c_common_decode_option): Handle them.
5658 (c_common_post_options): Register include chains.
5659 (print_help): Update.
5660 * cppdefault.h (struct default include): Update.
5661 Move some macros to ...
5662 * cppdefault.c: ... here.
5663 (cpp_include_defaults): Add extra field add_sysroot.
5664 * cppfiles.c (include_file, search_from, find_or_create_entry,
5665 cpp_included, find_include_file, remap_filename): Update for
5666 renaming of search_path to cpp_path, and of the chain headers.
5667 (remove_component_p, _cpp_simplify_pathname): Move to c-incpath.c.
5668 * cpphash.h (struct search_path): Move to cpplib.h.
5669 (struct cpp_buffer, struct cpp_reader): Update.
5670 (_cpp_simplify_pathname): Remove.
5671 * cppinit.c: Don't include prefix.h and cppdefault.h.
5672 (INO_T_EQ, INO_T_COPY, path_include, append_include_chain,
5673 remove_dup_dir, remove_dup_nonsys_dirs, remove_dup_dirs,
5674 init_standard_includes, BRACKET, SYSTEM, AFTER, no_dir,
5675 no_pth, cpp_handle_options): Remove.
5676 (struct pending_option): Remove chain members.
5677 (cpp_destroy, cpp_read_main_file, COMMAND_LINE_OPTIONS,
5678 cpp_handle_option): Update.
5679 * cpplib.h (struct cpp_path, cpp_set_include_chains): New.
5680 (struct cpp_options): Remove quote_include, bracket_include,
5681 include_prefix, include_prefix_len, verbose, ignore_srcdir,
5682 no_standard_includes, no_standard_cplusplus_includes.
5683 (struct cpp_callbacks): Add simplify_path.
5684 (cpp_handle_options): Remove.
5685 * fix-header.c: Include c-incpath.h.
5686 (read_scan_file): Update to use c-incpath functionality.
5687 * doc/passes.texi: Update.
5688
5689 2003-03-01 Kazu Hirata <kazu@cs.umass.edu>
5690
5691 * config/h8300/h8300.c (bit_operand): Accept MEM only if it
5692 satisfies EXTRA_CONSTRAINT 'U'.
5693
5694 2003-03-01 Kazu Hirata <kazu@cs.umass.edu>
5695
5696 * config/h8300/h8300.md (*tst_extzv_bitqi_1_n): Take a scratch
5697 register.
5698 (*tst_extzv_memqi_1_n): Change to a splitter.
5699 (a peephole2): Update.
5700
5701 2003-03-01 Richard Earnshaw <rearnsha@arm.com>
5702
5703 * predict.c (estimate_bb_frequencies): Initialize the sreal
5704 constants once per compilation.
5705
5706 2003-02-28 Richard Henderson <rth@redhat.com>
5707
5708 * toplev.c (flag_eliminate_unused_debug_types): Enable by default.
5709
5710 2003-02-28 scott snyder <snyder@fnal.gov>
5711
5712 * flags.h: Add flag_eliminate_unused_debug_types.
5713 * toplev.c: Add flag_eliminate_unused_debug_types.
5714 (f_options): Add -feliminate-unused-debug-types.
5715 * dwarf2out.c (struct file_table): Add emitted member.
5716 (splice_child_die): Fix the parent pointer for the child being
5717 spliced.
5718 (lookup_filename): Maintain file_table.emitted array. Don't
5719 output .file directive here.
5720 (maybe_emit_file): (new)
5721 (init_file_table): Set up file_table.emitted.
5722 (dwarf2out_source_line): Use maybe_emit_file.
5723 (dwarf2out_start_source_file): Use maybe_emit_file.
5724 (dwarf2out_init): Use maybe_emit_file.
5725 (prune_unused_types_walk_attribs): (new)
5726 (prune_unused_types_mark): (new)
5727 (prune_unused_types_walk): (new)
5728 (prune_unused_types_prune): (new)
5729 (prune_unused_types): (new)
5730 (dwarf2out_finish): Call prune_unused_types if
5731 flag_eliminate_unused_debug_types is set.
5732 * doc/invoke.texi (Option Summary): Add
5733 -feliminate-unused-debug-types.
5734 (Debugging Options): Likewise.
5735
5736 2003-02-28 Geoffrey Keating <geoffk@apple.com>
5737
5738 * doc/invoke.texi: Change .pch to .gch.
5739 * cppfiles.c (open_file_pch): Likewise.
5740 * gcc.c (default_compilers): Likewise.
5741
5742 2003-02-28 Aldy Hernandez <aldyh@redhat.com>
5743
5744 * floatlib.c: Remove.
5745
5746 2003-02-28 Jason Merrill <jason@redhat.com>
5747
5748 * stor-layout.c (variable_size): Leave a "minus 1" outside the
5749 SAVE_EXPR.
5750
5751 2003-02-28 David Edelsohn <edelsohn@gnu.org>
5752
5753 * config/rs6000/power4.md: Add compare bypass.
5754
5755 2003-02-28 Jason Thorpe <thorpej@wasabisystems.com>
5756
5757 * config/netbsd.h: Update copyright years.
5758 (NETBSD_CPP_SPEC): Define _REENTRANT and _PTHREADS if
5759 -pthread is specified on the command line.
5760
5761 2003-02-28 Dale Johannesen <dalej@apple.com>
5762
5763 * loop.c (struct movable): Add insert_temp, shrink savemode.
5764 (scan_loop): Accept invariants that require copying; mark as
5765 insert_temp.
5766 (combine_movables): Don't combine insert_temp movables.
5767 (move_movables): Insert copies for insert_temp movables.
5768 Don't record the info based on regno for insert_temp's.
5769
5770 2003-02-28 Joel Sherrill <joel@OARcorp.com>
5771
5772 PR 9638/other
5773 * config/i386/i386.c (DEFAULT_PCC_STRUCT_RETURN): Ensure the
5774 this constant defaults to 1.
5775
5776 2003-02-28 Bob Wilson <bob.wilson@acm.org>
5777
5778 * config.gcc (xtensa-*-linux*): Add t-slibgcc-elf-ver to tmake_file.
5779
5780 2003-02-28 Richard Earnshaw <rearnsha@arm.com>
5781
5782 * arm.md (mulhisi3, mulhisi3addsi, mulhidi3adddi): Enable for any
5783 ARMv5e processor, not just for XScale. Instructions are predicable.
5784 (mulhisi3tb, mulhisi3bt, mulhisi3tt): New patterns for ARMv5e.
5785
5786 2003-02-28 Nick Clifton <nickc@redhat.com>
5787
5788 * config/arm/arm.c (note_invalid_constants): Change parameter type
5789 from bool to int.
5790
5791 2003-02-28 Kazu Hirata <kazu@cs.umass.edu>
5792
5793 * config/h8300/h8300.md (*tst_extzv_bitqi_1_n): Accept the
5794 test of bit 7.
5795 (*tst_extzv_memqi_1_n): Likewise.
5796 (a peephole2): New.
5797
5798 2003-02-28 Richard Sandiford <rsandifo@redhat.com>
5799
5800 * config/mips/mips.h (CRT_CALL_STATIC_FUNCTION): Wrap in
5801 #ifndef __mips16.
5802
5803 2003-02-28 Jan Hubicka <jh@suse.cz>
5804
5805 * combine.c (gen_lowpart_for_combine): Update handling of
5806 subregs_of_mode
5807 * flow.c (life_analysis, mark_used_regs): Likewise.
5808 * regclass.c (subregs_of_mode): Turn into single bitmap.
5809 (cannot_change-mode_set_regs, invalid_mode_change_p): Update
5810 dealing with subregs_of_mode
5811 * regs.h (subregs_of_mode): Update prototype.
5812
5813 2003-02-28 Josef Zlomek <zlomekj@suse.cz>
5814
5815 * emit-rtl.c (set_reg_attrs_for_parm): New function.
5816 * rtl.h (set_reg_attrs_for_parm): New exported function.
5817 * function.c (assign_parms): Use set_reg_attrs_for_parm instead of
5818 set_reg_attrs_from_mem.
5819
5820 2003-02-27 Roger Sayle <roger@eyesopen.com>
5821 Zack Weinberg <zack@codesourcery.com>
5822
5823 * gcc.c (do_spec_1): Treat %U like %u for unique associations.
5824
5825 2003-02-27 Kazu Hirata <kazu@cs.umass.edu>
5826
5827 * reload1.c (sext_for_mode): Remove.
5828 (reload_cse_move2add): Use trunc_int_for_mode instead of
5829 sext_for_mode.
5830 (move2add_note_store): Likewise.
5831 Reset register information if we see a set in non-integer
5832 mode.
5833
5834 2003-02-27 David Edelsohn <edelsohn@gnu.org>
5835
5836 * config/rs6000/aix43.h (ASM_SPEC): Only emit -mppc64 if no -mcpu
5837 option.
5838 (ASM_CPU_SPEC): Use -m620 for Power3, Power4, 620, 630.
5839 * config/rs6000/aix51.h: Same.
5840 * config/rs6000/aix52.h: Same.
5841 * config/rs6000/power4.md: Additional VMX bypasses.
5842
5843 2003-02-27 Geert Bosch <bosch@gnat.com>
5844
5845 * toplev.c (print_version): Add indentation for GGC heuristics and
5846 output after printing version information.
5847
5848 2003-02-27 James E Wilson <wilson@tuliptree.org>
5849
5850 * combine.c (simplify_comparison): Require integral mode when
5851 permuting SUBREG with AND.
5852
5853 2003-02-27 Steve Ellcey <sje@cup.hp.com>
5854
5855 * config/ia64/hpux.h (STARTFILE_PREFIX_SPEC): Remove.
5856
5857 2003-02-27 Nick Clifton <nickc@redhat.com>
5858
5859 * config/arm/arm.md (extendsfdf2): Add pattern accidentally
5860 deleted when cirrus instructions were added.
5861
5862 2003-02-27 Jason Thorpe <thorpej@wasabisystems.com>
5863
5864 * config.gcc (*-*-netbsd[2-9]*, *-*-netbsdelf[2-9]*): Enable
5865 POSIX thread support by default.
5866
5867 2003-02-27 Roger Sayle <roger@eyesopen.com>
5868
5869 * config/i386/cygwin.h: Don't include any other files directly.
5870 * config/i386/mingw32.h: Don't include cygwin.h directly.
5871 * config.gcc (cygwin, mingw32, uwin): Instead make these files
5872 explicit in the tm_files variable.
5873
5874 2003-02-27 Alan Modra <amodra@bigpond.net.au>
5875
5876 * config/rs6000/rs6000.md: Add TI constant splitter.
5877
5878 2003-02-26 Alexandre Oliva <aoliva@redhat.com>
5879
5880 * builtins.c (purge_builtin_constant_p): Handle subreg of
5881 constant_p_rtx too.
5882
5883 * function.c (assign_stack_local_1): Truncate constant added to
5884 frame_pointer_rtx or virtual_stack_vars_rtx for Pmode.
5885
5886 2003-02-26 David Edelsohn <edelsohn@gnu.org>
5887
5888 * config.gcc: Add power4 to PowerPC with_cpu list.
5889
5890 2003-02-26 Jan Hubicka <jh@suse.cz>
5891
5892 * objc-act.c: (mark_referenced_methods): Fix compilation problem.
5893
5894 2003-02-26 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
5895
5896 * gcov-dump.c (print_prefix): Fix signedness warning.
5897 * gcov-io.h (struct counter_section, struct counter_section_data): New.
5898 (struct function_info): n_arc_counts field removed, n_counter_sections,
5899 counter_sections fields added.
5900 (struct gcov_info): arc_counts, n_arc_counts fields removed,
5901 n_counter_sections, counter_sections fields added.
5902 * libgcov.c (gcov_exit, __gcov_flush): Add support for multiple
5903 profile sections.
5904 * profile.h (MAX_COUNTER_SECTIONS): New.
5905 (struct section_info): New.
5906 (struct profile_info): count_instrumented_edges,
5907 count_edges_instrumented_now fields removed, n_sections, section_info
5908 fields added.
5909 (find_counters_section): Declare.
5910 * profile.c (struct function_list): count_edges field removed,
5911 n_counter_sections, counter_sections fields added.
5912 (set_purpose, label_for_tag, build_counter_section_fields,
5913 build_counter_section_value, build_counter_section_data_fields,
5914 build_counter_section_data_value, build_function_info_fields,
5915 build_function_info_value, build_gcov_info_fields,
5916 build_gcov_info_value): New static functions.
5917 (find_counters_section): New function.
5918 (instrument_edges, get_exec_counts, compute_branch_probabilities,
5919 branch_prob, create_profiler): Modified to support multiple profile
5920 sections.
5921
5922 2003-02-26 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
5923
5924 * pa.c (compute_frame_size): Don't assume PREFERRED_STACK_BOUNDARY
5925 is 8 * STACK_BOUNDARY.
5926 * pa.h (PREFERRED_STACK_BOUNDARY): Change to 128 on 64-bit port.
5927
5928 2003-02-26 Michael Matz <matz@suse.de>
5929
5930 * ra-colorize.c (merge_moves): Fix list handling.
5931
5932 2003-02-26 Nick Clifton <nickc@redhat.com>
5933
5934 * config/arm/arm.c (is_load_address): Rename to...
5935 (arm_memory_load_p) ... this and make it check for SUBREGs and
5936 constant loads that will be converted into loads from the
5937 minipool.
5938 (is_cirrus_insn): Rename to ...
5939 (arm_cirrus_insn_p): ... this, for consistency. Replace test
5940 of CIRRUS_NO with CIRRUS_NOT.
5941 (cirrus_reorg): Use renamed functions.
5942 (note_invalid_constants): Change from a void function to bool.
5943 Add an extra parameter, saying whether the fixups should be
5944 pushed. Return true if fixups are needed.
5945 (arm_reorg): Use renamed functions. Use INSN_P. Replace test
5946 of CIRRUS_NO with CIRRUS_NOT.
5947 * config/arm/arm.h (FLOAT_WORDS_BIG_ENDIAN): Mention that
5948 other floating point co-processors can also affect this.
5949 * config/arm/arm.md ("type" attribute): Add mav_farith and
5950 mav_dmult. Replace references to "cirrus_type" attribute with
5951 "type".
5952 * config/arm/cirrus.md ("cirrus_fpu" attribute): Delete.
5953 ("cirrus_type" attribute): Delete - use "type" instead.
5954 ("cirrus" attribute): Replace 'no' with 'not' and 'yes' with
5955 'normal'.
5956
5957 2003-02-25 Jan Hubicka <jh@suse.cz>
5958
5959 * objc-act.c: Include cgraph.h
5960 (mark_referenced_methods): New function.
5961 (objc_init): Call it.
5962 * objc-lang.c (LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION): Set.
5963
5964 * c-decl.c (finish_function): Honor can_defer_p even in unit-at-a-time
5965 mode.
5966
5967 * optabs.c (expand_fix): Do not widen the input operand.
5968
5969 * expr.c (emit_group_store): Fix crash when converting single
5970 register into complex register.
5971
5972 * Makefile.in (jump.o, regclass.o, alias.o): Add dependency on timevar.h
5973 * alias.c: Include timevar.h
5974 (init_alias_analysis): Set timevar
5975 * jump.c: Include timevar.h
5976 (rebuild_jump_labels): Set timevar
5977 * regcalss.c: Include timevar.h
5978 (reg_scan): Set timevar
5979 * timevar.def (TV_ALIAS_ANALYSIS, TV_REG_SCAN, TV_REBUILD_JUMP): New
5980
5981 2003-02-26 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
5982
5983 * cse.c (count_reg_usage): Fix handling of REG_EQUAL notes.
5984
5985 * Makefile.in (loop-unroll.o): New.
5986 * cfgloop.h (UAP_PEEL, UAP_UNROLL, UAP_UNROLL_ALL): New.
5987 (unroll_and_peel_loops): Declare.
5988 * alias.c (init_alias_analysis): Flag_unroll_loops renamed to
5989 flag_old_unroll_loops.
5990 * loop.c (loop_invariant_p): Ditto.
5991 * unroll.c (unroll_loop): Flag_unroll_all_loops renamed to
5992 flag_old_unroll_all_loops.
5993 * flags.h (flag_unroll_loops): Renamed to flag_old_unroll_loops.
5994 (flag_unroll_all_loops): Renamed to flag_old_unroll_all_loops.
5995 * params.def (PARAM_MAX_UNROLLED_INSNS): Default value changed.
5996 (PARAM_MAX_AVERAGE_UNROLLED_INSNS, PARAM_MAX_UNROLL_TIMES,
5997 PARAM_MAX_PEELED_INSNS, PARAM_MAX_PEEL_TIMES,
5998 PARAM_MAX_COMPLETELY_PEELED_INSNS, PARAM_MAX_COMPLETELY_PEEL_TIMES,
5999 PARAM_MAX_ONCE_PEELED_INSNS): New.
6000 * toplev.h (flag_old_unroll_loops, flag_old_unroll_all_loops): New.
6001 (flag_unroll_loops, flag_unroll_all_loops): Used for new unroller
6002 instead of old one.
6003 (flag_peel_loops): New.
6004 (lang_independent_options): The new flags added.
6005 (rest_of_compilation): Call new unroller.
6006 (process_options): Setup flags for coexistence of old and new unroller.
6007 * doc/invoke.texi: Document new options.
6008 * doc/passes.texi: Document new unroller pass.
6009
6010 2003-02-26 David Billinghurst <David.Billinghurst@riotinto.com>
6011
6012 * fixinc/fixincl.x: Regenerate
6013
6014 2003-02-26 Josef Zlomek <zlomekj@suse.cz>
6015
6016 * function.c (assign_parms): Set reg_attrs for parameters passed in
6017 registers.
6018
6019 2003-02-26 Alan Modra <amodra@bigpond.net.au>
6020
6021 PR target/9681
6022 * tlink.c (scan_linker_output): Drop leading '.' from symbol names.
6023
6024 2003-02-25 David Edelsohn <edelsohn@gnu.org>
6025
6026 * config/rs6000/xcoff.h (ASM_FILE_START): Do not emit machine
6027 pseudo-op.
6028
6029 2003-02-25 Roger Sayle <roger@eyesopen.com>
6030
6031 * combine.c (combine_simplify_rtx, simplfy_comparison): Use CC0_P.
6032 * cse.c (invalidate_skipped_set): Likewise.
6033 * integrate.c (subst_constants): Likewise.
6034 * jump.c (reversed_comparison_code_parts): Likewise.
6035 * loop.c (canonicalize_condition): Likewise.
6036 * simplify-rtx.c (simplify_relational_operation): Likewise.
6037
6038 2003-02-25 Roger Sayle <roger@eyesopen.com>
6039
6040 * builtins.def (DEF_LIB_ALWAYS_BUILTIN, DEF_UNUSED_BUILTIN): Delete.
6041 (abs, labs, fabs, fabsf, fabsl, abort, exit, _exit, _Exit): Use
6042 the appropriate macro to define built-in function.
6043 (fmod,fmodf,fmodl): New built-in functions.
6044
6045 * doc/extend.texi (fmod,fmodf,fmodl): Document new built-ins.
6046
6047 2003-02-25 Richard Henderson <rth@redhat.com>
6048
6049 * config/i386/i386.c (function_arg): Pass variable sized
6050 structures correctly on the stack.
6051
6052 2003-02-25 Kazu Hirata <kazu@cs.umass.edu>
6053
6054 * reload1.c (reload_cse_move2add): Use STRICT_LOW_PART if PLUS
6055 does not reduce the cost of SET.
6056
6057 2003-02-25 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
6058
6059 PR target/9732
6060 * config/rs6000/rs6000.c (first_reg_to_save): Handle
6061 PIC_OFFSET_TABLE_REGNUM for -fPIC too.
6062 (rs6000_emit_prologue): Likewise.
6063 (rs6000_emit_epilogue): Likewise.
6064 * config/rs6000/rs6000.h (CONDITIONAL_REGISTER_USAGE): Make
6065 PIC_OFFSET_TABLE_REGNUM a fixed register for -fPIC.
6066
6067 2003-02-25 Richard Henderson <rth@redhat.com>
6068
6069 * real.c (real_to_integer2): Force overflow result only for
6070 unsigned overflow.
6071
6072 2003-02-25 Kazu Hirata <kazu@cs.umass.edu>
6073
6074 * gcse.c (cprop_jump): Revert the 2003-02-23 change.
6075
6076 2003-02-25 Vladimir Makarov <vmakarov@toke.toronto.redhat.com>
6077 Richard Henderson <rth@redhat.com>
6078
6079 * sched-ebb.c (add_deps_for_risky_insns): Add the dependence when
6080 there is no similar load.
6081
6082 2003-02-25 Vladimir Makarov <vmakarov@redhat.com>
6083 Richard Henderson <rth@redhat.com>
6084
6085 * sched-int.h (INSN_TRAP_CLASS, WORST_CLASS): Move them from
6086 sched-rgn.c.
6087 (add_forward_dependence): New function prototype.
6088
6089 * sched-rgn.c (INSN_TRAP_CLASS, WORST_CLASS): Move them to
6090 sched-init.h.
6091 (CONST_BASED_ADDRESS_P, may_trap_exp, haifa_classify_insn): Move
6092 them to haifa-sched.c.
6093
6094 * haifa-sched.c (CONST_BASED_ADDRESS_P, may_trap_exp,
6095 haifa_classify_insn): Move them from sched-rgn.c.
6096
6097 * sched-deps.c (add_dependence): Return flag of creating a new
6098 entry.
6099 (add_forward_dependence): New function.
6100 (compute_forward_dependences): Use the function.
6101
6102 * sched-ebb.c (earliest_block_with_similiar_load): New function.
6103 (add_deps_for_risky_insns): New function.
6104 (schedule_ebb): Call the function.
6105
6106 2003-02-20 Aldy Hernandez <aldyh@redhat.com>
6107
6108 * doc/tm.texi: Document Rename TARGET_VECTOR_TYPES_COMPATIBLE to
6109 TARGET_VECTOR_OPAQUE_P. Document accordingly.
6110
6111 * testsuite/gcc.dg/20030218-1.c: Check that initialization of
6112 opaque types fail.
6113
6114 * c-typeck.c (comptypes): Change call to vector_types_compatible
6115 to vector_opaque_p.
6116 (convert_for_assignment): Call vector_opaque_p instead of
6117 vector_types_compatible.
6118 (really_start_incremental_init): Disallow initialization of opaque
6119 types.
6120
6121 * target-def.h: Remove TARGET_VECTOR_TYPES_COMPATIBLE.
6122 Define TARGET_VECTOR_OPAQUE_P.
6123 (TARGET_INITIALIZER): Same.
6124
6125 * target.h (struct gcc_target): Remove vector_types_compatible.
6126 Add vector_opaque_p.
6127
6128 * config/rs6000/rs6000.c (rs6000_spe_vector_types_compatible):
6129 Remove.
6130 (is_ev64_opaque_type): Check for TARGET_SPE and make sure type is
6131 a vector type. Change return type to bool.
6132 (TARGET_VECTOR_TYPES_COMPATIBLE): Remove.
6133 (TARGET_VECTOR_OPAQUE_P): Define.
6134
6135 * cp/parser.c (cp_parser_init_declarator): Call vector_opaque_p
6136 target hook.
6137 Include target.h.
6138 (cp_parser_init_declarator): Fix typo in function comments.
6139
6140 2003-02-25 Jan Hubicka <jh@suse.cz>
6141
6142 * Makefile.in (lcm.o): Add dependency on function.h
6143 * lcm.c (function.h): Include.
6144 * i386.c (machine_function, ix86_stack_locals,
6145 * ix86_save_varrargs_registers) : Move to
6146 ...
6147 * i386.h (machine_function, ix86_stack_locals,
6148 ix86_save_varrargs_registers): ... here; add optimize_mode_switching
6149 (ix86_optimize_mode_switching): New.
6150 * i386.md (fix patterns): Set ix86_optimize_mode_switching
6151
6152 2003-02-25 Nick Clifton <nickc@redhat.com>
6153
6154 * config/d30v/d30v.c (d30v_init_cumulative_args): Fix typo. Name
6155 of fourth arg is 'fndecl' not 'indirect'. Update comment
6156 describing the function's parameters.
6157
6158 2003-02-24 Jan Hubicka <jh@suse.cz>
6159
6160 * combine.c (simplify_shift_const): Fix previous patch.
6161
6162 2003-02-24 Jeff Law <law@redhat.com>
6163
6164 * i386.md (testdi_1_rex64): Discourage reload from using the %eax
6165 alternative.
6166 (testsi_1, testhi_1, testqi_1): Likewise.
6167
6168 2003-02-24 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
6169
6170 * config/alpha/osf.h (TARGET_OS_CPP_BUILTINS): Rename
6171 __EXTERN_PREFIX to __PRAGMA_EXTERN_PREFIX.
6172 * doc/extend.texi (Tru64 Pragmas): Reflect this.
6173
6174 * fixinc/inclhack.def (alpha___extern_prefix): Indicate #pragma
6175 extern_prefix support for Tru64 UNIX V5 <sys/stat.h>.
6176 * fixinc/fixincl.x: Regenerate.
6177 * fixinc/tests/base/sys/stat.h [ALPHA___EXTERN_PREFIX_CHECK]: New
6178 testcase.
6179 Fixes PR c/5059, c/6126, other/9671.
6180
6181 2003-02-24 Roger Sayle <roger@eyesopen.com>
6182
6183 * gcc.c (do_spec_1) ['{']: Handle pending argument upon return
6184 from handle_braces in "%{...}".
6185
6186 2003-02-24 Kaz Kojima <kkojima@gcc.gnu.org>
6187
6188 * config/sh/sh.c (TARGET_HAVE_TLS): Conditionally define.
6189 (prepare_move_operands): Handle TLS operands.
6190 (tls_symbolic_operand): New.
6191 (nonpic_symbol_mentioned_p): Handle TLS UNSPECs.
6192 (legitimize_pic_address): Do nothing for the TLS symbol.
6193 (sh_encode_section_info): Handle TLS case.
6194 (sh_strip_name_encoding): Drop TLS encoding.
6195 * config/sh/sh-protos.h (tls_symbolic_operand): Add prototype.
6196 * config/sh/sh.h (SH_TLS_ENCODING): Define.
6197 (TLS_SYMNAME_P, STRIP_TLS_ENCODING): Likewise.
6198 (ASM_OUTPUT_LABELREF): Drop TLS encoding.
6199 (OUTPUT_ADDR_CONST_EXTRA): Handle TLS UNSPECs.
6200 * config/sh/sh.md: Define TLS UNSPEC constants.
6201 (type): Add tls_load.
6202 ("tls_global_dynamic", "tls_local_dynamic"): New insns.
6203 ("sym2DTPOFF", "symDTPOFF2reg", "sym2GOTTPOFF"): New expanders.
6204 ("tls_initial_exec"): New insn.
6205 ("sym2TPOFF", "symTPOFF2reg"): New expanders.
6206 ("load_gbr"): New insn.
6207
6208 * configure.in (HAVE_AS_TLS): Add sh-*-* and sh[34]*-*-* cases.
6209 * configure: Regenerate.
6210
6211 2003-02-24 Alan Modra <amodra@bigpond.net.au>
6212
6213 PR 9297, PR 9722
6214 * calls.c (store_one_arg): Revert 1999-02-16 change. Revert
6215 2000-12-17 change. Pass EXPAND_STACK_PARM to expand_expr.
6216 * expr.h (enum expand_modifier): Define EXPAND_STACK_PARM.
6217 (enum block_op_methods): Reorder for better store_expr optimization.
6218 * expr.c (store_expr): Test bit 1 of "want_value" for call param
6219 stores, test bit 0 for original want_value meaning. Pass
6220 BLOCK_OP_CALL_PARM to emit_block_move when bit 1 set. Adjust
6221 recursive calls, and calls to expand_param.
6222 (expand_expr): Handle EXPAND_STACK_PARM modifier. When cse
6223 expected, set target to 0 rather than to subtarget. Formatting.
6224
6225 2003-02-23 Kazu Hirata <kazu@cs.umass.edu>
6226
6227 * gcse.c (cprop_jump): Use the REG_EQUAL note if available.
6228
6229 2003-02-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6230
6231 * doc/invoke.texi (ggc-min-expand, ggc-min-heapsize): Document
6232 new default behavior.
6233 * ggc-common.c: Include sys/resource.h.
6234 (ggc_rlimit_bound): New function.
6235 (ggc_min_expand_heuristic, ggc_min_heapsize_heuristic): Update
6236 defaults to account for rlimits.
6237
6238 2003-02-22 Richard Henderson <rth@redhat.com>
6239
6240 * i386.c, i386.h (TUNEMASK): Rename from CPUMASK.
6241
6242 2003-02-22 Kelley Cook <kelley@dwhoops.info>
6243
6244 * i386.h, i386.c, i386.md (ix86_tune): Rename from ix86_cpu.
6245 (ix86_tune_string): Rename from ix86_cpu_string.
6246
6247 2003-02-22 Kelley Cook <kelleycook@comcast.net>
6248
6249 * config/i386/i386.c: Replace "mcpu" with "mtune".
6250 * config/i386/i386.h (TARGET_OPTIONS): Likewise.
6251 (CC1_CPU_SPEC): Likewise. New warning for "-mcpu".
6252 * doc/invoke.texi (i386 and x86-64 Options): Replace "mcpu"
6253 with "mtune". Note that "mcpu" is a deprecated synonym for "mtune".
6254
6255 2003-02-23 Andreas Schwab <schwab@suse.de>
6256
6257 * config.gcc: Delete references to m68k/t-linux and
6258 m68k/t-linux-aout.
6259 * config/m68k/t-linux, config/m68k/t-linux-aout: Removed.
6260
6261 2003-02-22 Jan Hubicka <jh@suse.cz>
6262
6263 * toplev.c (rest_of_compilation): Apply fotgotten hunk
6264 of track scheduling patch.
6265
6266 2003-02-22 Jan Hubicka <jh@suse.cz>
6267
6268 * config/linux.h (TARGET_HAS_F_SETLKW): Define.
6269 * config/alpha/linux.h (TARGET_HAS_F_SETLKW): Likewise
6270
6271 2003-02-22 Jan Hubicka <jh@suse.cz>
6272
6273 * c-decl.c (c_expand_body_1): Fix.
6274
6275 2003-02-22 Jan Hubicka <jh@suse.cz>
6276
6277 * expmed.c (expand_divmod): Undo sign extensions for unsigned operands
6278
6279 * cfgcleanup.c (try_forward_edges): Don't check loop structures
6280 when not optimizing.
6281 (cleanup_cfg): Do not iterate trought delete_trivially_dead_insns
6282 when not expensive.
6283 * toplev.c (rest_of_compilation): Duplicate loop headers only when
6284 optimizing; Delete trivially dead insns early; fix optimize check.
6285
6286 * Makefile.in (c-decl.o, c-objc-common.o, cgraph.o, tree-inline.o): Add
6287 dependency on cgraph.h
6288 * c-decl.c: Include cgraph.h
6289 (finish_function): Update call of tree_inlinable_function_p.
6290 * c-objc-common.c: Include cgraph.h
6291 * cgraph.h: New file.
6292 * cgraphunit.c: New file.
6293 * cgraph.c (cgraph_node, cgraph_edge): Move into cgraph.h
6294 (cgraph_nodes, cgraph_n_nodes): Globalize.
6295 (cgraph_finalize_function, cgraph_finalize_compilation_unit
6296 cgraph_create_edges, cgraph_optimize, cgraph_mark_needed_node):
6297 Move into cgraphunit.c
6298 * tree-inline.c: Include cgraph.h
6299 * tree-inline.c: Include cgraph.h
6300
6301 2003-02-22 Josef Zlomek <zlomekj@suse.cz>
6302
6303 * config/i386/i386.md: Use gen_lowpart instead of gen_rtx_REG
6304 for copying a register.
6305
6306 2003-02-22 Steven Bosscher <s.bosscher@student.tudelft.nl>
6307
6308 PR other/3782
6309 * toplev.c (process_options): If flag_detailed_statistics is set,
6310 then set time_report as well.
6311
6312 PR c/8828
6313 * jump.c (never_reached_warning): Don't fall through BARRRIER
6314 insns. Update comments to reflect what the function really does.
6315
6316 2003-02-21 Roger Sayle <roger@eyesopen.com>
6317
6318 * fold-const.c (omit_one_operand): No longer static.
6319 * tree.h (omit_one_operand): Prototype here.
6320 (div_and_round_double): Keep fold-const.c prototypes together.
6321 * builtins.c (builtin_mathfn_code): Handle binary built-in
6322 funtions, such as "pow" and "atan2".
6323 (fold_builtin): Optimize both pow(x,0.0) and pow(1.0,y) to 1.0.
6324 Simplify optimizations using "type" the builtin's return type.
6325
6326 2003-02-22 Hans-Peter Nilsson <hp@axis.com>
6327
6328 * config/cris/cris.c (cris_rtx_costs): Blockify dangling else.
6329 Fix functionalization typo.
6330
6331 * regmove.c (optimize_reg_copy_1): Do not replace a hard register
6332 in an asm.
6333
6334 2003-02-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6335
6336 * Makefile.in (ggc-common.o): Depend on $(PARAMS_H)
6337 * doc/invoke.texi (ggc-min-expand, ggc-min-heapsize): Update
6338 documentation.
6339 * ggc-common.c: Include params.h
6340 (ggc_min_expand_heuristic, ggc_min_heapsize_heuristic,
6341 init_ggc_heuristics): New functions.
6342 * ggc.h (ggc_min_expand_heuristic, ggc_min_heapsize_heuristic,
6343 init_ggc_heuristics): Prototype.
6344 * toplev.c (print_version): Output GGC heuristics.
6345 (parse_options_and_default_flags): Call init_ggc_heuristics.
6346
6347 2003-02-22 Jan Hubicka <jh@suse.cz>
6348
6349 * i386.c (def_builtin): Special case 64bit builtins.
6350 (MASK_SSE164, MASK_SSE264): New constants.
6351 (builtin_description): Add 64bit builtins.
6352 (ix86_init_mmx_sse_builtins): Likewise.
6353 * i386.h (enum ix86_builtins): Likewise.
6354 * i386.md (cvtss2siq, cvttss2siq, cvtsd2siq, cvttsd2siq, cvtsi2sdq,
6355 sse2_movq2dq_rex64, sse2_movsq2q_rex64): New.
6356 (sse2_movq2dq, sse2_movsq2q): Disable for 64bit.
6357 * mmintrin.h (_mm_cvtsi64x_si64, _mm_set_pi64x, _mm_cvtsi64_si64x): New.
6358 * xmmintrin.h (_mm_cvtss_si64x, _mm_cvttss_si64x, _mm_cvtsi64x_ss,
6359 _mm_set_epi64x, _mm_set1_epi64x, _mm_cvtsd_si64x, _mm_cvttsd_si64x,
6360 _mm_cvtsi64x_sd, _mm_cvtsi64x_si128, _mm_cvtsi128_si64x): New.
6361
6362 2003-02-22 Jan Hubicka <jh@suse.cz>
6363
6364 * i386.c (builtin_description): Add __builtin_ia32_paddq and
6365 __builtin_ia32_psubq. Fix __builtin_ia32_paddq128
6366 and __builtin_ia32_psubq128.
6367 * i386.h (IX86_BUILTIN_PADDQ, IX86_BUILTIN_PSUBQ): New.
6368 * i386.md (addv*, mmx_ior*, mmx_xoe*, mmx_and*): Add missing '%'.
6369 (mmx_adddi3, mmx_subdi3): New.
6370 * mmintrin.h (_mm_add_si64, _mm_sub_si64): New.
6371 * xmmintrin.h (_mm_movepi64_pi64): New.
6372 (_mm_add_epi64, _mm_sub_epi64): fix.
6373 (_mm_mul_pu16): Rename to...
6374 (_mm_mul_su32): ... this one.
6375
6376 * builtins.c (expand_builtin_expect): Do not predict
6377 flag_guess_branch_prob is not set.
6378 * c-semantics.c (expand_stmt): Likewise.
6379 * predict.c (predict_insn): Likewise.
6380 * stmt.c (expand_continue_loop): Likewise.
6381 * toplev.c (rest_of_compilation): Do not call
6382 note_prediction_to_br_prob and note_prediction_to_br_prob
6383 when not optimizing.
6384
6385 2003-02-21 Jan Hubicka <jh@suse.cz>
6386
6387 * cfgrtl.c (commit_edge_insertions): Call
6388 find_many_sub_basic_block only when some code has been emitted.
6389 (commit_edge_insertions_watch_calls): Bring into sync with
6390 commit_edge_insertions
6391
6392 2003-02-21 J"orn Rennecke <joern.rennecke@superh.com>
6393
6394 * sh.h (OVERRIDE_OPTIONS): Fix code that clears 'e' register class.
6395
6396 * sh.md (binary_sf_op): Use extra constant operand instead of
6397 negating constant operand 4.
6398 * sh.c (sh_expand_binop_v2sf): Supply it.
6399
6400 2003-02-21 Zack Weinberg <zack@codesourcery.com>
6401
6402 * cpphash.h (struct lexer_state): Add directive_wants_padding.
6403 * cpplib.c (_cpp_handle_directive): Set directive_wants_padding
6404 for directives of type INCL.
6405 (glue_header_name, parse_include): Use get_token_no_padding.
6406 * cppmacro.c (replace_args): If directive_wants_padding,
6407 provide padding tokens.
6408
6409 2003-02-21 Kazu Hirata <kazu@cs.umass.edu>
6410
6411 * config/h8300/h8300.md (a peephole2): New.
6412
6413 2003-02-21 Jan Hubicka <jh@suse.cz>
6414
6415 * cfgrtl.c (commit_one_edge_insertion): Only mark BB for splitting.
6416 (commit_edge_insertions): Call find_many_sub_basic_blocks
6417
6418 * reg-stack.c (convert_regs): Cleax aux for blocks.
6419
6420 2003-02-21 Jan Hubicka <jh@suse.cz>
6421
6422 * toplev.c (parse_options_and_default_flags): Undo accidental commit.
6423
6424 2003-02-21 Glen Nakamura <glen@imodulo.com>
6425
6426 PR optimization/8613
6427 * builtins.c (expand_builtin): Emit postincrements before expanding
6428 builtin functions.
6429
6430 2003-02-21 Ben Elliston <bje@redhat.com>
6431
6432 PR other/5634
6433 * doc/install.texi (Configuration): Explain using $HOME instead of
6434 the ~ metacharacter when referring to home directories.
6435
6436 2003-02-20 Alexandre Oliva <aoliva@redhat.com>
6437
6438 * configure.in (TARGET_SYSTEM_ROOT): Set default to
6439 ${exec_prefix}/${target_alias}/sys-root. Match explicit
6440 '${exec_prefix}' (in addition to the expansion thereof) as
6441 relocatable.
6442 * configure: Rebuilt.
6443
6444 2003-02-20 Kazu Hirata <kazu@cs.umass.edu>
6445
6446 * config/h8300/h8300.md (addhi3_incdec): Change the name to
6447 *addhi3_incdec.
6448 (addsi3_incdec): Change the name to *addsi3_incdec.
6449
6450 2003-02-20 Roger Sayle <roger@eyesopen.com>
6451
6452 * explow.c (force_reg): Avoid useless REG_EQUAL notes.
6453
6454 2003-02-20 Toon Moene <toon@moene.indiv.nluug.nl>
6455
6456 PR fortran/9038
6457 * c-opts.c (sanitize_cpp_opts): Add Fortran front end
6458 options to be ignored.
6459 (c_common_decode_option): Ignore them when preprocessing.
6460
6461 2003-02-20 Jan Hubicka <jh@suse.cz>
6462
6463 * toplev.c (flag_sched2_use_superblocks, flag_sched2_use_traces): New
6464 global variables.
6465 (lang_independent_options): Add -fsched2-use-superblocks
6466 -fsced2-use-traces.
6467 (rest_of_compilation): Deal with it.
6468 * invoke.texi (-fsched2-use-traces, fsched2-use-superblocks): Declare.
6469 * flags.h (flag_sched2_use_superblocks, flag_sched2_use_traces):
6470 Declare.
6471 * rtl.h (reg_to_stack): Update prototype.
6472 * reg-stack.c (reg_to_stack): Return when something has changed;
6473 update liveness when executing after superblock scheduling.
6474
6475 * combine.c (simplify_shift_const): Simplify few special cases
6476 into constants.
6477
6478 2003-02-20 David Edelsohn <edelsohn@gnu.org>
6479
6480 * config/rs6000/rs6000.md: (attr "type"): Add fast_compare.
6481 (add.,subf.,neg.): Change attribute to fast_compare.
6482 All DFA descriptions updated.
6483
6484 2003-02-20 Nathan Sidwell <nathan@codesourcery.com>
6485
6486 Change base class access representation.
6487 * tree.h (TREE_VIA_PUBLIC, TREE_VIA_PROTECTED,
6488 TREE_VIA_PRIVATE): Remove.
6489 (BINFO_BASEACCESSES): New binfo elt.
6490 (BINFO_BASEACCESS): New accessor.
6491 (BINFO_ELTS): Increase.
6492 (TI_ACCESS_PUBLIC, TI_ACCESS_PROTECTED, TI_ACCESS_PRIVATE): New.
6493 (access_public_node, access_protected_node,
6494 access_private_node): New global nodes.
6495 * tree.c (build_common_tree_nodes_2): Initialize access nodes.
6496 * dbxout.c (dbxout_type): Adjust.
6497 * dwarf2out.c (gen_inheritance_die): Add access parameter.
6498 (gen_member_die): Adjust.
6499 * dwarfout.c (output_inheritance_die): ARG is array of two trees.
6500 (output_type): Adjust.
6501 * tree-dump.c (dequeue_and_dump): Adjust binfo dumping.
6502
6503 Change base class access representation. Share virtual base
6504 binfos.
6505 * cp/call.c (build_special_member_call): Remove binfo_for_vbase
6506 call.
6507 * cp/class.c (build_base_path): Likewise.
6508 (build_primary_vtable): Adjust BINFO_NEW_VTABLE_MARKED use.
6509 (build_secondary_vtable): Remove FOR_TYPE arg. Adjust.
6510 (make_new_vtable): Adjust.
6511 (force_canonical_binfo_r): Delete.
6512 (force_canonical_binfo): Delete.
6513 (mark_primary_virtual_base): Delete.
6514 (dfs_unshared_virtual_bases): Delete.
6515 (mark_primary_bases): Adjust.
6516 (maybe_warn_about_overly_private_class): Adjust.
6517 (dfs_base_derived_from): Delete.
6518 (base_derived_from): Follow the inheritance chain.
6519 (struct find_final_overrider_data): Add vpath member.
6520 (dfs_find_final_overrider): Adjust.
6521 (dfs_find_final_overrider_q, dfs_find_final_overrider_post): New.
6522 (find_final_overrider): Adjust.
6523 (update_vtable_entry_for_fn): Adjust.
6524 (modify_all_vtables): Adjust.
6525 (walk_subobject_offsets): Adjust.
6526 (layout_nonempty_base_or_field): Adjust.
6527 (layout_empty_base): Remove last parameter. Adjust.
6528 (build_base_field): Adjust.
6529 (build_base_fields): Adjust.
6530 (propagate_binfo_offsets): Remove last parameter. Adjust.
6531 (dfs_set_offset_for_unshared_vbases): Delete.
6532 (layout_virtual_bases): Adjust.
6533 (finish_struct_1): Adjust.
6534 (init_class_processing): Don't init access nodes.
6535 (dfs_get_primary_binfo): Delete.
6536 (get_primary_binfo): Adjust.
6537 (dump_class_hierarchy_r): Remove most derived arg, add IGO
6538 parameter. Adjust.
6539 (dump_class_hierarchy): Adjust.
6540 (finish_vtbls): Adjust.
6541 (get_original_base): Delete.
6542 (build_vtt_inits): Adjust.
6543 (dfs_build_secondary_vptr_vtt_inits): Adjust.
6544 (dfs_ctor_vtable_bases_queue_p): Adjust.
6545 (build_ctor_vtbl_group): Adjust.
6546 (dfs_accumulate_vtbl_inits): Adjust.
6547 (build_vtbl_initializer): Adjust.
6548 (build_vbase_offset_vtbl_entries): Adjust.
6549 (add_vcall_offset_vtbl_entries_1): Adjust.
6550 * cp/cp-tree.h (CPTI_ACCESS_*): Remove.
6551 (access_*_node): Remove.
6552 (CANONICAL_BINFO): Delete.
6553 (BINFO_UNSHARED_MARKED): Remove.
6554 (BINFO_MARKED): Set LANG_FLAG_0 directly.
6555 (SET_BINFO_MARKED, CLEAR_BINFO_MARKED): Delete.
6556 (BINFO_VTABLE_PATH_MARKED): Set LANG_FLAG_3 directly.
6557 (SET_BINFO_VTABLE_PATH_MARKED, CLEAR_BINFO_VTABLE_PATH_MARKED):
6558 Delete.
6559 (BINFO_NEW_VTABLE_MARKED): Set LANG_FLAG_4 directly.
6560 (SET_BINFO_NEW_VTABLE_MARKED): Adjust.
6561 (SET_BINFO_PUSHDECLS_MARKED, CLEAR_BINFO_PUSHDECLS_MARKED):
6562 Delete.
6563 (BINFO_DEPENDENT_BASE_P): New.
6564 (dfs_walk, dfs_walk_real): Queue function takes derived binfo and
6565 index.
6566 (markedp, unmarkedp): Adjust.
6567 (dfs_unmarked_real_bases_queue_p, dfs_marked_real_bases_queue_p,
6568 dfs_skip_vbases, marked_vtable_pathp, unmarked_vtable_pathp,
6569 find_vbase_instance, binfo_for_vbase): Delete.
6570 (copied_binfo, original_binfo): Declare.
6571 (finish_base_specifier): Add virtual_p arg.
6572 (unshare_base_binfos): Delete.
6573 (copy_base_binfos): Declare.
6574 (reverse_path): Delete.
6575 * cp/decl.c (xref_basetypes): Access and virtuality passed
6576 differently. Don't copy direct base binfos here. Call
6577 copy_base_binfos.
6578 * cp/init.c (dfs_initialize_vtbl_ptrs): Adjust.
6579 (initialize_vtbl_ptrs): Adjust.
6580 (expand_member_init): Adjust.
6581 * cp/parser.c (cp_parser_base_specifier): Adjust.
6582 * cp/pt.c (instantiate_class_template): Adjust.
6583 (get_template_base_recursive): Adjust.
6584 * cp/rtti.c (get_pseudo_ti_init): Adjust.
6585 (get_pseudo_ti_desc): Adjust.
6586 * cp/tree.c (unshare_base_binfos): Rename to ...
6587 (copy_base_binfos): ... here, reimplement.
6588 (make_binfo): Set BINFO_DEPENDENT_BASE_P.
6589 (reverse_path): Remove.
6590 * cp/typeck.c (get_delta_difference): Adjust error messages.
6591 * cp/semantics.c (finish_base_specifier): Add virtual arg, adjust.
6592 * cp/search.c (lookup_base_r): Adjust.
6593 (dynamic_cast_base_recurse): Adjust.
6594 (canonical_binfo): Remove.
6595 (dfs_canonical_queue): Remove.
6596 (dfs_assert_unmarked_p): Remove.
6597 (assert_canonical_unmarked): Remove.
6598 (shared_marked_p, shared_unmarked_p): Remove.
6599 (BINFO_ACCESS, SET_BINFO_ACCESS): Use TREE_PUBLIC & TREE_PRIVATE.
6600 (dfs_access_in_type): Adjust.
6601 (access_in_type): Adjust.
6602 (dfs_accessible_queue_p): Adjust.
6603 (dfs_accessible_p): Adjust.
6604 (is_subobject_of_p_1, is_subobject_of_p): Remove.
6605 (struct lookup_field_info): Remove from_dep_base_p field.
6606 (lookup_field_queue_p): Adjust, test BINFO_DEPENDENT_BASE_P.
6607 (lookup_field_r): Remove dependent base code.
6608 (lookup_member): Likewise.
6609 (dfs_walk, dfs_walk_real): Add access arg to queue fn.
6610 (dfs_unmarked_real_bases_queue_p): Remove.
6611 (dfs_marked_real_bases_queue_p): Remove.
6612 (dfs_skip_vbases): Remove.
6613 (dfs_get_pure_virtuals): Adjust.
6614 (markedp, unmarkedp): Adjust.
6615 (marked_vtable_pathp, unmarked_vtable_pathp): Remove.
6616 (marked_pushdecls_p, unmarked_pushdecls_p): Adjust.
6617 (dfs_unmark): Adjust.
6618 (dfs_get_vbase_types):Remove.
6619 (dfs_build_inheritance_graph_order): Remove.
6620 (get_vbase_types): Remove
6621 (dfs_find_vbase_instance): Remove.
6622 (find_vbase_instance): Remove.
6623 (dfs_debug_unmarkedp): Adjust.
6624 (dependent_base_p): Remove.
6625 (dfs_push_type_decls): Adjust.
6626 (dfs_push_decls): Adjust.
6627 (dfs_no_overlap_yet): Adjust.
6628 (copied_binfo): New function.
6629 (original_binfo): New function.
6630 (binfo_for_vbase): Remove.
6631
6632 Change base class access representation.
6633 * java/class.c (set_super_info): Don't set TREE_VIA_PUBLIC.
6634 (add_interface_do): Likewise.
6635
6636 2003-02-20 David Edelsohn <edelsohn@gnu.org>
6637
6638 * config/rs6000/sysv4.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Define.
6639 * config/rs6000/power4.md (power4-store,power4-vecstore): New
6640 insn reservations.
6641 (power4-fpstore): Compact.
6642
6643 2003-02-20 Kazu Hirata <kazu@cs.umass.edu>
6644
6645 * config/h8300/h8300.md (*iorsi3_w): New.
6646
6647 2003-02-20 Josef Zlomek <zlomekj@suse.cz>
6648
6649 * combine.c (distribute_notes): Kill REG_EXEC_COUNT.
6650 * rtl.c (reg_note_name): Likewise.
6651 * rtl.h (enum reg_note): Likewise.
6652 * doc/invoke.texi: Likewise.
6653 * doc/rtl.texi: Likewise.
6654
6655 2003-02-20 Josef Zlomek <zlomekj@suse.cz>
6656
6657 * bb-reorder.c (find_traces_1_round): Fix comment typo.
6658
6659 2003-02-19 Roger Sayle <roger@eyesopen.com>
6660
6661 * fold-const.c (fold_real_zero_addition_p): Don't fold a zero
6662 addition in the presence of signaling NaNs.
6663
6664 2003-02-19 Krister Walfridsson <cato@df.lth.se>
6665
6666 * tm.texi (INIT_CUMULATIVE_ARGS): Fix typo.
6667
6668 2003-02-19 Kazu Hirata <kazu@cs.umass.edu>
6669
6670 * config/h8300/h8300.c (output_logical_op): Optimize or.l when
6671 ORing with 0xffff??00 with the highest bit of the ?? part set.
6672 (compute_logical_op_length): Update.
6673 (compute_logical_op_cc): Likewise.
6674
6675 2003-02-19 Josef Zlomek <zlomekj@suse.cz>
6676
6677 * bb-reorder.c (find_traces_1_round): Fixed condition for small
6678 destination block with multiple predecessors.
6679 (connect_traces): Check whether the block is a start of trace.
6680
6681 2003-02-19 Jan Hubicka <jh@suse.cz>
6682
6683 * calls.c (expand_call): Update call of INIT_CUMULATIVE_ARGS
6684 * function.c (assign_params): Likewise.
6685 * arm-protos.h (arm_init_cumulative_args): Update prototype.
6686 * arm.c (arm_init_cumulative_args): Update function.
6687 * arm.h (INIT_CUMULATIVE_ARGS): Update.
6688 * avr-protos.h (init_cumulative_args): Update prototype.
6689 * avr.c (init_cumulative_args): Update function.
6690 * avr.h (INIT_CUMULATIVE_ARGS): Update.
6691 * d30v-protos.h (d30v_init_cumulative_args): Update prototype.
6692 * d30v.c (d30v_init_cumulative_args): Update function.
6693 * d30v.h (INIT_CUMULATIVE_ARGS): Update.
6694 * frv-protos.h (frv_init_cumulative_args): Update prototype.
6695 * frv.c (frv_init_cumulative_args): Update function.
6696 * frv.h (INIT_CUMULATIVE_ARGS): Update.
6697 * mips.c (mips_expand_prolgue): Update call of INIT_CUMULATIVE_ARGS.
6698 * pa.h (INIT_CUMULATIVE_ARGS): Update.
6699 * sparc-protos.h (init_cumulative_args): Update prototype.
6700 * sparc.c (init_cumulative_args): Update function.
6701 * sparc.h (INIT_CUMULATIVE_ARGS): Update.
6702 * tm.texi (INIT_CUMULATIVE_ARGS): Update documentation.
6703
6704 2003-02-19 Kazu Hirata <kazu@cs.umass.edu>
6705
6706 * config/h8300/h8300.md (*iorsi3_two_qi_sext): New.
6707 (*ashiftsi_sextqi_7): Likewise.
6708
6709 2003-02-19 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
6710
6711 * config/mips/iris6.h (TARGET_OS_CPP_BUILTINS): Define __c99 for
6712 ISO C99 and C++.
6713
6714 * fixinc/inclhack.def (irix___restrict): Don't change __restrict
6715 for C++ on IRIX 6.5.1[89].
6716 * fixinc/tests/base/internal/sgimacros.h: New file.
6717
6718 * fixinc/inclhack.def (irix_wcsftime): Use XPG5 variant for C99.
6719 * fixinc/tests/base/internal/wchar_core.h: New file.
6720
6721 * fixinc/inclhack.def (irix_socklen_t): Fix broken IRIX 6.5.1[78]
6722 socklen_t definition.
6723 * fixinc/fixincl.x: Regenerate.
6724 * fixinc/tests/base/sys/socket.h: New file.
6725 Fixes PR libgcj/9652.
6726
6727 2003-02-19 Jan Hubicka <jh@suse.cz>
6728
6729 * i386.md (movsfcc_1, movdfcc_1): Fix constrains.
6730
6731 2003-02-19 David Edelsohn <edelsohn@gnu.org>
6732
6733 * config/rs6000/rs6000.c (rs6000_override_options): Initialize
6734 align_jumps_max_skip and align_loops_max_skip.
6735
6736 2003-02-19 Thierry Moreau <thierry.moreau@connotech.com>
6737
6738 * config/rs6000/rs6000.c (rs6000_encode_section_info): Do not
6739 test size if named section.
6740
6741 2003-02-19 Daniel Jacobowitz <drow@mvista.com>
6742
6743 * expr.c (expand_expr): Use gen_int_mode for the argument
6744 to gen_rtx_MULT.
6745
6746 2003-02-19 Jan Hubicka <jh@suse.cz>
6747
6748 * i386.md (cosxf2): Fix conditional.
6749
6750 2003-02-19 Kazu Hirata <kazu@cs.umass.edu>
6751
6752 * config/h8300/h8300.md (extendqisi2): Change to an expander.
6753 (*extendqisi2_h8300): New.
6754 (*extendqisi2_h8300hs): Likewise.
6755
6756 2003-02-19 Kazu Hirata <kazu@cs.umass.edu>
6757
6758 * config/h8300/h8300-protos.h: Update the prototype for
6759 split_adds_subs. Remove the prototypes for
6760 const_int_le_2_operand and const_int_le_6_operand.
6761 * config/h8300/h8300.c (split_adds_sub): Don't output inc/dec.
6762 (const_int_le_2_operand): Remove.
6763 (const_int_le_6_operand): Likewise.
6764 * config/h8300/h8300.h (PREDICATE_CODES): Remove the entries
6765 for const_int_le_2_operand and const_int_le_6_operand.
6766 * config/h8300/h8300.md: Update all uses of split_adds_subs.
6767 (a peephole2): New.
6768
6769 2003-02-18 Jan Hubicka <jh@suse.cz>
6770
6771 * cgraph.c (NPREDECESORC, SET_NPREDECESORS): Kill.
6772 (cgraph_expand_function): Rewrite.
6773
6774 2003-02-18 Matt Austern <austern@apple.com>
6775
6776 * toplev.c, langhooks.c, langhooks-def.h: Move
6777 write_global_declarations from toplev.c to langhooks.c.
6778
6779 2003-02-18 Kazu Hirata <kazu@cs.umass.edu>
6780
6781 * config/h8300/h8300.c (general_operand_src): Always check
6782 MODE.
6783 (general_operand_dst): Likewise.
6784
6785 2003-02-18 Roger Sayle <roger@eyesopen.com>
6786
6787 * convert.c (convert_to_real): Also optimize (float)log(x) into
6788 logf(x) where x is a float, i.e. also handle BUILT_IN_LOG{,L}.
6789
6790 2003-02-18 Kaz Kojima <kkojima@gcc.gnu.org>
6791
6792 * config/sh/sh.c (unspec_caller_rtx_p): New.
6793 (sh_cannot_copy_insn_p): New.
6794 (TARGET_CANNOT_COPY_INSN_P): New.
6795
6796 2003-02-18 Richard Henderson <rth@redhat.com>
6797
6798 * c-common.c (handle_used_attribute): Accept static data too.
6799
6800 2003-02-18 Nick Clifton <nickc@redhat.com>
6801 Aldy Hernandez <aldyh@redhat.com>
6802
6803 * testsuite/gcc.dg/20030218-1.c: New.
6804
6805 * doc/tm.texi: Document TARGET_VECTOR_TYPES_COMPATIBLE.
6806
6807 * target-def.h (TARGET_INITIALIZER): Add
6808 TARGET_VECTOR_TYPES_COMPATIBLE.
6809 (TARGET_VECTOR_TYPES_COMPATIBLE): New macro.
6810
6811 * target.h (struct gcc_target): Add field vector_types_compatible.
6812
6813 * c-typeck.c (comptypes): Take into account
6814 TARGET_VECTOR_TYPES_COMPATIBLE.
6815 (convert_for_assignment): Same.
6816
6817 * config/rs6000/rs6000.c (is_ev64_opaque_type): New.
6818 (rs6000_spe_vector_types_compatible): New.
6819 (TARGET_VECTOR_TYPES_COMPATIBLE): Define.
6820
6821 2003-02-19 Andreas Schwab <schwab@suse.de>
6822
6823 * Makefile.in (toplev.o): Depend on $(LANGHOOKS_DEF_H).
6824 * toplev.c: Include langhooks-def.h.
6825
6826 2003-02-18 Chris Demetriou <cgd@broadcom.com>
6827
6828 * config/mips/mips.h (enum processor_type): Sort entries
6829 alphabetically.
6830 * config/mips/mips.md (define_attr cpu): Sync with processor_type
6831 enum values, including adding entries that were missing.
6832
6833 2003-02-18 J"orn Rennecke <joern.rennecke@superh.com>
6834
6835 * sh.c (calc_live_regs): Also check GET_CODE when checking if
6836 initial value for PR_REG is still the PR_REG register.
6837
6838 2003-02-18 Jim Wilson <wilson@redhat.com>
6839
6840 * config/ia64/ia64.md (floatdidf2, floatdisf2): Add %, before second
6841 instruction in output template.
6842 (bsp_value): Change output template from string to C code, add %,
6843 before actual instruction.
6844 (flushrs): Mark as not predicable.
6845
6846 2003-02-18 Krister Walfridsson <cato@df.lth.se>
6847
6848 * inclhack.def (netbsd_bogus_semicolon): New fix.
6849 * fixincl.x: Rebuilt.
6850 * tests/base/ctype.h: Update.
6851
6852 2003-02-18 Roger Sayle <roger@eyesopen.com>
6853
6854 * fold-const.c (negate_expr_p): New function to determine whether
6855 an expression can be negated cheaply.
6856 (fold) [MINUS_EXPR]: Use it to determine whether to transform
6857 -A - B into -B - A for floating point types.
6858
6859 2003-02-18 Roger Sayle <roger@eyesopen.com>
6860
6861 * sbitmap.c (sbitmap_resize): New function.
6862 * sbitmap.h (sbitmap_resize): Prototype here.
6863 * recog.c (split_all_insns): Use sbitmap_resize.
6864
6865 2003-02-18 Kazu Hirata <kazu@cs.umass.edu>
6866
6867 * config/h8300/h8300.md (*zero_extendhisi2_h8300): Fix the
6868 insn length.
6869 (extendqisi2): Likewise.
6870 (*extendhisi2_h8300): Likewise.
6871
6872 2003-02-18 Matt Austern <austern@apple.com>
6873
6874 * langhooks.h, langhooks-def.h: introduce new langhook,
6875 final_write_globals, with write_global_declarations as default.
6876 * toplev.c: Move invocation of wrapup_global_declarations from
6877 compile_file to new function, write_global_declarations. Change
6878 compile_file to use final_write_globals hook. Change
6879 wrapup_global_declarations so writing to DECL_DEFER_OUTPUT is
6880 conditional.
6881
6882 2003-02-18 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
6883
6884 * pa.md: Correct and enhance comment.
6885
6886 2003-02-18 Geoffrey Keating <geoffk@apple.com>
6887
6888 * gcc.c (validate_switches): Don't scan past closing '}'.
6889
6890 2003-02-18 Ben Elliston <bje@redhat.com>
6891
6892 PR c++/1607
6893 * doc/extend.texi (Function Attributes): Document the effect of
6894 the C++ "this" parameter on the counting of arguments for the
6895 "format" and "format_arg" attributes.
6896
6897 2003-02-17 Aldy Hernandez <aldyh@redhat.com>
6898
6899 * config/rs6000/spe.h (__ev_stdd): Cast 2nd arg.
6900 (__ev_stdw): Same.
6901 (__ev_stdh): Same.
6902
6903 2003-02-17 Jan Hubicka <jh@suse.cz>
6904
6905 * recog.c (split_all_insns): Fix memory overflow.
6906
6907 2003-02-17 Kazu Hirata <kazu@cs.umass.edu>
6908
6909 * config/h8300/h8300.md (cmpqi): Remove mode from compare.
6910 (cmphi): Likewise.
6911 (*cmphi_h8300): Likewise.
6912 (*cmphi_h8300hs): Likewise.
6913 (cmpsi): Likewise.
6914 (7 peephole2): Likewise.
6915
6916 2003-02-16 Jan Hubicka <jh@suse.cz>
6917
6918 * c-typeck.c (build_c_cast): Fold constant variables into
6919 initial values.
6920
6921 2003-02-16 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
6922
6923 * doc/install.texi (Specific): Fix link for m68k-att-sysv.
6924 (Binaries): Ditto for Sinix/Reliant Unix.
6925
6926 2003-02-16 Richard Earnshaw <rearnsha@arm.com>
6927
6928 * arm.c (arm_reload_in_hi): Ensure that the scratch register does
6929 not overlap the final result register.
6930
6931 2003-02-16 Arend Bayer <arend.bayer@web.de>
6932 Richard Henderson <rth@redhat.com>
6933
6934 PR c/8068
6935 * fold-const.c (extract_muldiv_1): Rename from extract_muldiv;
6936 rearrange mult arguments for less recursion.
6937 (extract_muldiv): New. Prevent runaway recursion.
6938
6939 2003-02-16 Danny Smith <dannysmith@users.sourceforge.net>
6940
6941 * config/i386/cygwin.h (TARGET_SUBTARGET_DEFAULT): Set
6942 MASK_ALIGN_DOUBLE.
6943
6944 2003-02-15 Roger Sayle <roger@eyesopen.com>
6945
6946 * config/i386/i386.c (x86_ext_80387_constants): Use 80387 insns
6947 to load mathematical constants on K6, Athlon, Pentium 4 and PPro.
6948 (ext_80387_constants_table): Global table of 80387 special constants
6949 guarded by ext_80387_constants_init flag when not initialized.
6950 (init_ext_80387_constants): New function to initialize this table.
6951 (standard_80387_constant_p): Extend to recognize extra 80387
6952 constants, in XFmode, on processors where this is a win.
6953 (standard_80387_constant_opcode): New function to return the
6954 opcode associated with standard_80387_constant_p.
6955 (standard_80387_constant_rtx): New function to return the XFmode
6956 CONST_DOUBLE associated with standard_80387_constant_p.
6957 (ix86_rtx_costs): Give the new constants the same cost as 1.0.
6958
6959 * config/i386/i386-protos.h (standard_80387_constant_opcode):
6960 Prototype here.
6961 (standard_80387_constant_rtx): Likewise.
6962
6963 * config/i386/i386.md (*movsf1, *movsf1_nointerunit, *movdf_nointeger,
6964 *movdf_integer, *movxf_nointeger, *movtf_nointeger, *movxf_integer,
6965 *movtf_integer): Simplify using new standard_80387_constant_opcode.
6966
6967 2003-02-15 Geoffrey Keating <geoffk@apple.com>
6968
6969 * doc/invoke.texi (Optimize Options): Correct @option syntax.
6970
6971 2003-02-15 Richard Henderson <rth@redhat.com>
6972
6973 * Makefile.in (cfglayout.o): Depend on TARGET_H.
6974 * cfglayout.c: Include target.h.
6975 (cfg_layout_can_duplicate_bb_p): Check targetm.cannot_copy_insn_p.
6976 * target-def.h (TARGET_CANNOT_COPY_INSN_P): New.
6977 * target.h (struct gcc_target): Add cannot_copy_insn_p.
6978
6979 * config/alpha/alpha.c (alpha_cannot_copy_insn_p): New.
6980 (TARGET_CANNOT_COPY_INSN_P): New.
6981 (override_options): Revert 2003-02-08 hack.
6982
6983 2003-02-15 Richard Henderson <rth@redhat.com>
6984
6985 * gcse.c (bypass_block): Use BLOCK_FOR_INSN for resolving LABEL_REFs.
6986 (bypass_conditional_jumps): Accept computed_jump_p insns as well.
6987
6988 2003-02-15 David Edelsohn <edelsohn@gnu.org>
6989
6990 * config/rs6000/rs6000.h (processor_type): Add PPC440.
6991 * config/rs6000/rs6000.c (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE,
6992 TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD,
6993 TARGET_SCHED_VARIABLE_ISSUE): Define.
6994 (rs6000_use_dfa_pipeline_interface): New function.
6995 (rs6000_multipass_dfa_lookahead): New Function.
6996 (rs6000_variable_issue): New function.
6997 (rs6000_adjust_cost): Add CMP and DELAYED_CR types.
6998 (rs6000_issue_rate): Add PPC440.
6999 * config/rs6000/rs6000.md (unspec list): Correct typo.
7000 (attr "type"): Add load_ext, load_ext_u, load_ext_ux, load_u,
7001 store_ux, store_u, fpload_ux, fpload_u, fpstore_ux, fpstore_u,
7002 cmp, delayed_cr, mfcr, mtcr.
7003 (automata_option): Set "ndfa".
7004 (extendMMNN2): Update attributes.
7005 (movcc_internal1): Discourage move to non-cr0. Update
7006 attributes.
7007 (movMM_update): Update attributes.
7008 (cmpMM_internal): Update attributes.
7009 (sCC CR materialization): Update attributes.
7010 (branch patterns): Do not discourage non-cr0.
7011 (cr logical patterns): Prefer destructive register allocation.
7012 Update attributes.
7013 (movesi_from_cr): Update attribute.
7014 (mtcrf_operation): Update attribute.
7015 (mtcrfsi): Update attribute.
7016 * config/rs6000/40x.md: New file.
7017 * config/rs6000/603.md: New file.
7018 * config/rs6000/6xx.md: New file.
7019 * config/rs6000/7450.md: New file.
7020 * config/rs6000/7xx.md: New file.
7021 * config/rs6000/mpc.md: New file.
7022 * config/rs6000/power4.md: New file.
7023 * config/rs6000/rios1.md: New file.
7024 * config/rs6000/rios2.md: New file.
7025 * config/rs6000/rs64.md: New file.
7026 [Some DFA descriptions based on work by Michael Hayes]
7027
7028 2003-02-15 Richard Henderson <rth@redhat.com>
7029
7030 * bb-reorder.c (find_traces_1_round): Don't connect easy to copy
7031 successors with multiple predecessors.
7032 (connect_traces): Try harder to copy traces of length 1.
7033
7034 * function.h (struct function): Add computed_goto_common_label,
7035 computed_goto_common_reg.
7036 * function.c (free_after_compilation): Zap them.
7037 * stmt.c (expand_computed_goto): Use them to produce one
7038 indirect branch per function.
7039
7040 2003-02-15 Richard Henderson <rth@redhat.com>
7041
7042 * cfgcleanup.c: Include params.h.
7043 (try_crossjump_bb): Use PARAM_MAX_CROSSJUMP_EDGES. Fix test for
7044 too many outgoing edges from a block.
7045 * Makefile.in (cfgcleanup.o): Depend on PARAMS_H.
7046 * params.def (max-crossjump-edges): New.
7047 * doc/invoke.texi: Document it.
7048
7049 2003-02-15 Richard Henderson <rth@redhat.com>
7050
7051 * recog.c (split_all_insns): Include new blocks in life update;
7052 do a global life update.
7053
7054 2003-02-15 Danny Smith <dannysmith@users.sourceforge.net>
7055
7056 * config/i386/mingw32.h (LIBGCC_SPEC): Add libmingwex.a.
7057 Update copyright.
7058 * config/i386/cygwin.h (LIBGCC_SPEC): Add libmingwex.a for
7059 -mno-cygwin case.
7060
7061 2003-02-14 Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
7062
7063 PR optimization/7702
7064 * reload1.c (reload_cse_simplify_set): Honor
7065 CANNOT_CHANGE_MODE_CLASS.
7066
7067 2003-02-14 Alexandre Oliva <aoliva@redhat.com>
7068
7069 * config/mn10300/mn10300.c (mn10300_wide_const_load_uses_clr): New
7070 function.
7071 * config/mn10300/mn10300-protos.h: Declare it.
7072 * config/mn10300/mn10300.md (movdi, movdf): Use it to compute
7073 attribute cc of instructions that may use clr.
7074
7075 2003-02-14 Kazu Hirata <kazu@cs.umass.edu>
7076
7077 * simplify-rtx.c (simplify_binary_operation): Simplify ~y when
7078 (x - (x & y)) is found.
7079
7080 2003-02-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7081
7082 * configure.in: Fix typo.
7083 * configure: Regenerate.
7084
7085 2003-02-14 Kazu Hirata <kazu@cs.umass.edu>
7086
7087 * config/h8300/h8300.md (*iorsi2_and_1_lshiftrt_1): New.
7088
7089 2003-02-13 Adam Nemet <anemet@lnxw.com>
7090
7091 PR opt/2391
7092 * combine.c: Fix spelling in comment.
7093 (cached_nonzero_bits): New function.
7094 (cached_num_sign_bit_copies): New function.
7095 (nonzero_bits_with_known): New macro.
7096 (num_sign_bit_copies_with_known): New macro.
7097 (nonzero_bits1): Rename from nonzero_bits. Add three new
7098 arguments. Change calls from nonzero_bits to
7099 nonzero_bits_with_known.
7100 (num_sign_bit_copies1): Rename from num_sign_bit_copies. Add
7101 three new arguments. Change calls from num_sign_bit_copies to
7102 num_sign_bit_copies_with_known.
7103 (nonzero_bits): New macro.
7104 (num_sign_bit_copies): New macro.
7105 (update_table_tick): Don't traverse identical subexpression more
7106 than once.
7107 (get_last_value_validate): Likewise.
7108
7109 2003-02-13 Zack Weinberg <zack@codesourcery.com>
7110
7111 * emit-rtl.c (init_emit): Use ggc_alloc for regno_reg_rtx.
7112 * function.h (struct emit_status): Length of regno_pointer_align
7113 and x_regno_reg_rtx as seen by gengtype is only x_reg_rtx_no,
7114 not regno_pointer_align_length (i.e. length actually used, not
7115 length as allocated)
7116
7117 * config/i386/i386.c (struct stack_local_entry): New.
7118 (struct machine_function): Replace huge array with alist.
7119 (assign_386_stack_local): Change to match.
7120
7121 2003-02-13 John David Anglin <dave.anglin@nrc-crnc.gc.ca>
7122
7123 * inclhack.def (hpux_long_double): Tighten select and add bypass
7124 regexp.
7125 * fixincl.x: Rebuilt.
7126
7127 2003-02-13 Josef Zlomek <zlomekj@suse.cz>
7128
7129 * cfgcleanup.c (outgoing_edges_match): When there is single outgoing
7130 edge and block ends with a jump insn it must be simple jump.
7131
7132 2003-02-13 Daniel Jacobowitz <drow@mvista.com>
7133
7134 * Makefile.in (PREPROCESSOR_DEFINES): Add
7135 @TARGET_SYSTEM_ROOT_DEFINE@.
7136 * configure.in (PREFIX_INCLUDE_DIR): Don't define if $with_sysroot
7137 is specified or if building a cross compiler.
7138 (TARGET_SYSTEM_ROOT_DEFINE): Add TARGET_SYSTEM_ROOT_RELOCATABLE
7139 if the sysroot is under $exec_prefix.
7140 * configure: Regenerated.
7141 * cppdefault.h: Use native include paths if TARGET_SYSTEM_ROOT is
7142 defined.
7143 (struct default_include): Add add_sysroot field.
7144 (cpp_SYSROOT): Declare.
7145 * cppdefault.c (cpp_include_defaults): Fill in add_sysroot
7146 field.
7147 (cpp_SYSROOT): New variable.
7148 * cppinit.c (cpp_create_reader): Initialize
7149 CPP_OPTION (pfile, sysroot).
7150 (init_standard_includes): Handle add_sysroot. Do not
7151 add unrelocated copies of relocated directories.
7152 (COMMAND_LINE_OPTIONS): Add -isysroot.
7153 (cpp_handle_option): Handle -isysroot.
7154 * cpplib.h (struct cpp_options): Add sysroot member.
7155 * gcc.c (The Specs Language): Update description of %I.
7156 (target_system_root_changed): New variable.
7157 (process_command): Conditionalize make_relative_prefix call
7158 on !VMS and TARGET_SYSTEM_ROOT_RELOCATABLE. Set
7159 target_system_root_changed.
7160 (do_spec_1): Add -isysroot to %I.
7161 * doc/invoke.texi (Spec Files): Update description of %I.
7162 * doc/install.texi (--with-sysroot): Update comment about
7163 relocation.
7164
7165 2003-02-13 Kazu Hirata <kazu@cs.umass.edu>
7166
7167 * config/h8300/h8300.md (a peephole2): New.
7168
7169 2003-02-13 Robert Lipe <robertlipe@usa.net>
7170 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
7171
7172 * doc/install.texi (Specific): Update three SCO-related URLs.
7173
7174 2003-02-13 Andreas Schwab <schwab@suse.de>
7175
7176 * cgraph.c (SET_NPREDECESORS): Add intermediate cast to size_t.
7177 Parenthesize properly.
7178 (NPREDECESORS): Parenthesize properly.
7179
7180 2003-02-13 Gabriel Dos Reis <gdr@integrable-solutions.net>
7181
7182 * timevar.h (POP_TIMEVAR_AND_RETURN): New macro.
7183
7184 2003-02-12 Roger Sayle <roger@eyesopen.com>
7185
7186 * config/i386/i386.md (UNSPEC_FPATAN): New UNSPEC constant.
7187 (atan2sf3, atan2df3, atan2xf3, atan2tf3): New patterns.
7188
7189 * reg-stack.c (subst_stack_regs_pat): Add support for binary
7190 UNSPEC instructions (e.g. "fpatan").
7191
7192 2003-02-12 Mike Stump <mrs@apple.com>
7193
7194 * varray.c (element_size): Remove.
7195 (uses_ggc): Remove.
7196 (element): Add.
7197 (varray_init): Use new interface.
7198 (varray_grow): Use new interface.
7199 (varray_clear): Use new interface.
7200
7201 2003-02-12 Aldy Hernandez <aldyh@redhat.com>
7202
7203 * config/rs6000/spe.h: Add casts to the arguments of the following
7204 macros: evfsabs, evfsnabs, evfsneg, evfsadd, evfssub, evfsmul,
7205 evfsdiv, evfscfui, evfscfsi evfscfuf evfscfsf, evfsctui, evfsctsi,
7206 evfsctuf, evfsctsf, evfsctuiz, evfsctsiz, __ev_get_upper*,
7207 __ev_get_lower*, __ev_get_u32, __ev_get_s32, __ev_get_fs,
7208 __ev_get_u16, __ev_get_s16.
7209
7210 2003-02-12 Kazu Hirata <kazu@cs.umass.edu>
7211
7212 * config/h8300/h8300.md (a peephole2): New.
7213
7214 2003-02-12 Jan Hubicka <jh@suse.cz>
7215
7216 * Makefile.in (CRTSTUFF_CFLAGS): Add -fno-unit-at-a-time
7217 (OBJS): Add callgraph.o
7218 (callgraph.o): New.
7219 * c-decl.c (expand_body_1): Break out from ...
7220 (expand_body): This one; change calling convention
7221 (finish_function): Move some of expand_body logic here.
7222 (c_expand_deferred_function): Update call of expand_body
7223 (c_expand_stmt): Use c_expand_body_1.
7224 * c-lang.c (LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION): Define.
7225 * c-objc-commin.c (c_objc_common_finish_file): Use callgraph code.
7226 * c-tree.h (c_expand_body): Declare.
7227 * callgraph.c: New file.
7228 * flags.h (flag_unit_at_a_time): Declare.
7229 * langhooks.h (LANG_HOOKS_CALLGRAPH_LOWER_FUNCTION,
7230 LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION,
7231 LANG_HOOKS_CALLGRAPH_INITIALIZER): New macros.
7232 * langhooks.h (struct lang_hooks_for_callgraph): New.
7233 (struct lang_hooks): Add callgraph field.
7234 * toplev.c (flag_unit_at_a_time): New.
7235 (lang_independent_options): Add flag_unit_at_a_time.
7236 (process_options): Disable unit-at-a-time mode for frontends not
7237 supporting callgraph.
7238 * tree-inline.c (typedef struct inline_data): Add "decl"
7239 (expand_call_inline): Update callgraph.
7240 (optimize_inline_calls): Set id.decl.
7241 * tree.h (cgraph_finalize_function, cgraph_finalize_compilation_unit,
7242 cgraph_create_edges, dump_cgraph, cgraph_optimize, cgraph_remove_call
7243 cgraph_calls_p): Declare.
7244 * invoke.texi (-funit-at-a-time): Document
7245
7246 2003-02-12 Aldy Hernandez <aldyh@redhat.com>
7247
7248 * config/rs6000/spe.h: Fix misc formatting.
7249 (__ev_create_ufix32_fs): Cast ev argument.
7250 (__ev_create_sfix32_fs): Same.
7251 (__ev_get_sfix32_fs_internal): Cast arguments to builtins.
7252 (__ev_get_ufix32_fs_internal): Same.
7253
7254 2003-02-12 Ranjit Mathew <rmathew@hotmail.com>
7255
7256 * doc/tm.texi (MODIFY_JNI_METHOD_CALL): Document.
7257 * config/i386/cygwin.h (MODIFY_JNI_METHOD_CALL): New macro.
7258
7259 2003-02-12 Zack Weinberg <zack@codesourcery.com>
7260
7261 * cpplib.c (do_include_common): Move warnings for
7262 #include_next and #import out to callers. Use early-return
7263 instead of nested ifs. Don't do check_eol here.
7264 (parse_include): Do check_eol here with the rest of the
7265 parsing stuff.
7266 (do_include_next, do_import): Now handle warnings.
7267
7268 2003-02-11 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
7269
7270 * doc/install.texi (Specific): Update AVR- and Darwin-related URLs.
7271
7272 2003-02-12 Jan Hubicka <jh@suse.cz>
7273
7274 * predict.c (estimate_probability): Fix roundoff error.
7275
7276 2003-02-12 Kazu Hirata <kazu@cs.umass.edu>
7277
7278 * config/h8300/h8300.md (a peephole2): Don't handle 65535.
7279 (two peephole2): New.
7280
7281 2003-02-12 Kazu Hirata <kazu@cs.umass.edu>
7282
7283 * config/h8300/h8300.md (several peephole2): Replace
7284 find_regno_note with peep2_reg_dead_p.
7285
7286 2003-02-11 Richard Henderson <rth@redhat.com>
7287
7288 * gcse.c (lookup_set): Remove unused argument PAT. Update
7289 both callers.
7290
7291 2003-02-11 Geoffrey Keating <geoffk@apple.com>
7292
7293 * diagnostic.c (real_abort): New.
7294 (diagnostic_report_diagnostic): Call real_abort on error.
7295 * diagnostic.h (diagnostic_abort_on_error): New.
7296 (struct diagnostic_context): Add abort_on_error field.
7297 * toplev.c (setup_core_dumping): New.
7298 (decode_d_option): Handle 'H' case.
7299 * doc/invoke.texi (Debugging Options): Document -dH.
7300
7301 2003-02-11 Nathanael Nerode <neroden@gcc.gnu.org>
7302
7303 * Makefile.in: Remove pointless setting of CXXFLAGS for dejagnu
7304 which refers to obsolete directories.
7305
7306 2003-02-11 Richard Henderson <rth@redhat.com>
7307
7308 * config/alpha/linux.h (TARGET_C99_FUNCTIONS): New.
7309
7310 2002-10-21 Jan Hubicka <jh@suse.cz>
7311
7312 * i386.c (contains_128bit_aligned_vector_p): New function.
7313 (ix86_function_arg_boundary): Properly align vector modes.
7314
7315 2003-02-11 Bob Wilson <bob.wilson@acm.org>
7316
7317 * config/xtensa/xtensa.md (set_frame_ptr): Change rtl to set reg a7.
7318 * config/xtensa/xtensa.c (xtensa_reorg): Search for UNSPECV_SET_FP
7319 as a SET pattern.
7320
7321 2003-02-11 Roger Sayle <roger@eyesopen.com>
7322
7323 * builtins.c: Fix failure caused by commiting wrong patch.
7324
7325 2003-02-11 Dale Johannesen <dalej@apple.com>
7326 * ra-build.c (compare_and_free_webs): Relax checking.
7327 * config/rs6000/darwin.h (HOT_TEXT_SECTION_NAME): Define.
7328 (UNLIKELY_EXECUTED_TEXT_SECTION_NAME): Define.
7329
7330 2003-02-11 Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
7331
7332 PR optimization/9651
7333 * rtlanal.c (may_trap_p): Handle FIX.
7334
7335 2003-02-11 Dave Jones <davej@codemonkey.org.uk>
7336
7337 * config/i386/i386.c (override_options): Define c3-2 as a 686 with SSE.
7338 * doc/invoke.texi: Extra alias.
7339
7340 2003-02-11 Geoffrey Keating <geoffk@apple.com>
7341
7342 * config/rs6000/host-darwin.c: Fix comment.
7343
7344 2003-02-11 David Edelsohn <edelsohn@gnu.org>
7345
7346 * config/rs6000/rs6000.md (divmodsi4): Use register_operand
7347 predicate for mod result.
7348
7349 2003-02-11 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
7350
7351 * inclhack.def (hpux_long_double, hpux10_ctype_declarations1,
7352 hpux10_ctype_declarations2, hpux_ctype_macros): New hacks.
7353 * fixincl.x: Rebuilt.
7354 * tests/base/stdlib.h: Update.
7355 * tests/base/ctype.h: New file.
7356
7357 2003-02-11 Jan Hubicka <jh@suse.cz>
7358
7359 * emit-rtl.c (emit_copy_of_insn_after): Copy insn recog cache too.
7360
7361 2003-02-11 Richard Henderson <rth@redhat.com>
7362
7363 * config/i386/i386.c (ix86_expand_movstr): Fail if esi or edi
7364 appropriated as globals.
7365 (ix86_expand_clrstr): Similarly.
7366 * config/i386/i386.md (cmpstrsi): Similarly.
7367
7368 2003-02-11 Kazu Hirata <kazu@cs.umass.edu>
7369
7370 * config/h8300/h8300.md (a peephole2): Add a case of 255.
7371
7372 2003-02-11 Roger Sayle <roger@eyesopen.com>
7373
7374 * optabs.h (enum optab_index): Add new OTI_pow and OTI_atan2.
7375 (pow_optab, atan2_optab): Define corresponding macros.
7376 * optabs.c (init_optabs): Initialize pow_optab and atan2_optab.
7377 * genopinit.c (optabs): Implement pow_optab and atan2_optab
7378 using pow?f3 and atan2?f3 patterns.
7379 * builtins.c (expand_errno_check): New function to update errno
7380 if necessary, split out from expand_builtin_mathfn.
7381 (expand_builtin_mathfn): Use expand_errno_check.
7382 (expand_builtin_mathfn_2): New function to handle expanding binary
7383 math functions, reusing the code in expand_errno_check.
7384 (expand_builtin): Handle the pow and atan2 math built-ins,
7385 BUILT_IN_{POW,POWF,POWL,ATAN2,ATAN2F,ATAN2L} via the new function
7386 expand_builtin_mathfn_2.
7387
7388 * doc/md.texi: Document new pow?f3 and atan2?f3 patterns.
7389
7390 2003-02-11 Jan Hubicka <jh@suse.cz>
7391
7392 * combine.c (combine_simplify_rtx): Fix folding of
7393 nested float_truncates.
7394
7395 2003-02-11 Kazu Hirata <kazu@cs.umass.edu>
7396
7397 * config/h8300/h8300.md (a peephole2): Fix a typo.
7398
7399 2003-02-11 Richard Earnshaw <rearnsha@arm.com>
7400
7401 * arm.mc (return_address_mask): Use CC_REGNUM for the condition code
7402 register number.
7403
7404 2003-02-11 Kazu Hirata <kazu@cs.umass.edu>
7405
7406 * config/h8300/h8300-protos.h: Add a prototype for
7407 gtuleu_operator.
7408 * config/h8300/h8300.c (gtuleu_operator): New.
7409 * config/h8300/h8300.h (PREDICATE_CODES): Add gtuleu_operator.
7410 * config/h8300/h8300.md (a peephole2): New.
7411
7412 2003-02-11 Jan Hubicka <jh@suse.cz>
7413
7414 * sched-ebb.c (schedule_ebbs): Do not verify_flow_info.
7415
7416 2003-02-11 Jan Hubicka <jh@suse.cz>
7417
7418 * predict.c (choose_function_section): Choose sections correctly.
7419
7420 2003-02-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
7421
7422 * reload1.c (first_label_num): New.
7423 (reload): Index offsets_known_at and offsets_at using difference of
7424 label number and first label number. Don't use offset pointers.
7425 (set_label_offsets, set_initial_label_offsets): Likewise.
7426
7427 2003-02-10 Roger Sayle <roger@eyesopen.com>
7428
7429 * mips-tfile.c (init_file): Add missing initializers in the
7430 "#ifdef __alpha" case.
7431 (file_offset, max_file_offset): Declare as unsigned long.
7432 (write_varray): Cast to "unsigned long" in comparisons against
7433 either file_offset or max_file_offset.
7434 (write_object): Likewise.
7435 (read_seek): Likewise.
7436 (copy_object): Likewise. Declare "ifd" as int to match its use
7437 in add_ext_symbol, and avoid signed/unsigned conditional warning.
7438
7439 2003-02-10 Nick Clifton <nickc@redhat.com>
7440 Aldy Hernandez <aldyh@redhat.com>
7441
7442 * config/rs6000/eabispe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Do not
7443 override options which have been specified on the command line.
7444
7445 2003-02-10 Kazu Hirata <kazu@cs.umass.edu>
7446
7447 * config/h8300/h8300.md (abssf2): New.
7448 (*abssf2_h8300): Likewise.
7449 (*abssf2_h8300hs): Likewise.
7450
7451 2003-02-10 Phil Edwards <pme@gcc.gnu.org>
7452
7453 * tree.c (build_tree_list): Fix parameter names in comment.
7454
7455 2003-02-10 Janis Johnson <janis187@us.ibm.com>
7456
7457 * config/rs6000/ppc64-fp.c: New file.
7458 * config/rs6000/t-linux64 (LIB2FUNCS_EXTRA): Add ppc64-fp.c.
7459
7460 2003-02-10 Josef Zlomek <zlomekj@suse.cz>
7461
7462 * Makefile.in (bb-reorder.o): Add dependency on $(FIBHEAP_H).
7463 * bb-reorder.c (make_reorder_chain): Deleted.
7464 (make_reorder_chain_1): Deleted.
7465 (find_traces): New function.
7466 (rotate_loop): New function.
7467 (mark_bb_visited): New function.
7468 (find_traces_1_round): New function.
7469 (copy_bb): New function.
7470 (bb_to_key): New function.
7471 (better_edge_p): New function.
7472 (connect_traces): New function.
7473 (copy_bb_p): New function.
7474 (get_uncond_jump_length): New function.
7475 (reorder_basic_blocks): Use new functions (Software Trace Cache).
7476 * cfgcleanup.c (outgoing_edges_match): Enable crossjumping across loop
7477 boundaries.
7478
7479 2003-02-10 Aldy Hernandez <aldyh@redhat.com>
7480
7481 * config/rs6000/rs6000.c (bdesc_2arg): Change spe_evxor to xorv2si3.
7482
7483 2003-02-09 Dan Nicolaescu <dann@ics.uci.edu>
7484
7485 * tree.h (struct tree_decl): Remove unused live_range_rtl field.
7486 (DECL_LIVE_RANGE_RTL): Remove.
7487
7488 2003-02-10 Nick Clifton <nickc@redhat.com>
7489
7490 * config/arm/aof.h, config/arm/aout.h, config/arm/arm-modes.def,
7491 config/arm/arm-protos.h, config/arm/arm.c, config/arm/arm.h,
7492 config/arm/arm.md, config/arm/cirrus.md, config/arm/coff.h,
7493 config/arm/conix-elf.h, config/arm/ecos-elf.h, config/arm/elf.h,
7494 config/arm/freebsd.h, config/arm/linux-elf.h,
7495 config/arm/linux-gas.h, config/arm/netbsd-elf.h,
7496 config/arm/netbsd.h, config/arm/pe.c, config/arm/pe.h,
7497 config/arm/rtems-elf.h, config/arm/semi.h, config/arm/semiaof.h,
7498 config/arm/strongarm-coff.h, config/arm/strongarm-elf.h,
7499 config/arm/strongarm-pe.h, config/arm/uclinux-elf.h,
7500 config/arm/unknown-elf-oabi.h, config/arm/unknown-elf.h,
7501 config/arm/xscale-elf.h: Replace occurances of "GNU CC" with "GCC"
7502 and reformat as appropriate.
7503
7504 2003-02-10 Kazu Hirata <kazu@cs.umass.edu>
7505
7506 * config/h8300/clzsi2.c: Remove.
7507 * config/h8300/ctzsi2.c: Likewise.
7508 * config/h8300/paritysi2.c: Likewise.
7509 * config/h8300/popcountsi2.c: Likewise.
7510 * config/h8300/t-h8300 (LIB2FUNCS_EXTRA): Remove clzsi2,
7511 ctzsi2, paritysi2, and popcountsi2.
7512
7513 2003-02-10 Eric Botcazou <ebotcazou@libertysurf.fr>
7514 Christian Ehrhardt <ehrhardt@mathematik.uni-ulm.de>
7515
7516 PR c/7741
7517 * c-decl.c (duplicate_decls): Discard the initializer of the
7518 new decl when the types are conflicting.
7519
7520 2003-02-10 Josef Zlomek <zlomekj@suse.cz>
7521
7522 * Makefile.in (sreal.o): Added.
7523 (predict.o): Depends on sreal.h instead of real.h.
7524 * sreal.c: New file.
7525 * sreal.h: New file.
7526 * predict.c: Use sreal.c instead of real.c.
7527
7528 2003-02-10 Nick Clifton <nickc@redhat.com>
7529
7530 * Contributed support for the Cirrus EP9312 "Maverick"
7531 floating point co-processor. Written by Aldy Hernandez
7532 <aldyh@redhat.com>.
7533 (config/arm/arm.c): Add Cirrus support.
7534 (config/arm/arm.h): Likewise.
7535 (config/arm/aout.h): Likewise.
7536 (config/arm/arm.md): Likewise.
7537 (config/arm/arm-protos.h): Likewise.
7538 (config.gcc): Likewise.
7539 (doc/invoke.texi): Describe new -mcpu value and new
7540 -mcirrus-fix-invalid-insns switch,
7541 (cirrus.md): New file.
7542
7543 2003-02-10 Jan Hubicka <jh@suse.cz>
7544
7545 * combine.c (combine_simplify_rtx): Simplify using
7546 (float_truncate (float x)) is (float x)
7547 (float_extend (float_extend x)) is (float_extend x).
7548
7549 2003-02-10 Alan Modra <amodra@bigpond.net.au>
7550
7551 * calls.c (try_to_integrate): Tidy stack_usage_map access.
7552 (emit_library_call_value_1): Likewise. Formatting.
7553 (store_one_arg): Likewise.
7554
7555 2003-02-09 Nick Clifton <nickc@redhat.com>
7556 Aldy Hernandez <aldyh@redhat.com>
7557
7558 * config/rs6000/spe.md: spe_evlhhesplat, spe_evlhhossplat,
7559 spe_evlhhousplat, spe_evlwhsplat, spe_evlwwsplat, spe_evldd,
7560 spe_evldh, spe_evldw, spe_evlwhe, spe_evlwhos, spe_evlwhou,
7561 spe_evstdd, spe_evstdh, spe_evstdw, spe_evstdwx, spe_evstwhe,
7562 spe_evstwho, spe_evstwwe, spe_evstwwo: Fix syntax to match newest
7563 docs. Add range test for immediate value.
7564
7565 2003-02-09 Aldy Hernandez <aldyh@redhat.com>
7566
7567 Rename spe_evxor to xorv2si3.
7568 (xorv4hi3): New.
7569 (xorv1di3): New.
7570
7571 2003-02-10 Glen Nakamura <glen@imodulo.com>
7572
7573 * doc/extend.texi (C++98 Thread-Local Edits): Add missing @item
7574 tag.
7575
7576 2003-02-10 Jan Hubicka <jh@suse.cz>
7577
7578 * i386.c (vector_move_operand): New predicate.
7579 (ix86_expand_vector_move): Be happy about 0.
7580 * i386.h (PREDICATE_CODES): Add sse-move_operand.
7581 * i386.md (mov*_internal): Add 'C' alternative.
7582
7583 2003-02-09 Jan Hubicka <jh@suse.cz>
7584
7585 * i386.md (floathi*): Deal with SSE.
7586
7587 2003-02-09 Jan Hubicka <jh@suse.cz>
7588
7589 * simplify-rtx.c (simplify_unary_operation,
7590 simplify_binary_operation): Deal with vector modes
7591 (simplify_ternary_operation): Deal with no-op VEC_MERGE.
7592
7593 2003-02-09 Richard Sandiford <rsandifo@redhat.com>
7594
7595 * toplev.c (rest_of_compilation): Recompute register usage after
7596 split_all_insns.
7597
7598 2003-02-09 Richard Henderson <rth@redhat.com>
7599
7600 * libgcc-std.ver (__clztf2): New.
7601 (__ctztf2, __popcounttf2, __paritytf2): New.
7602 * libgcc2.c (__clzSI2, __clzDI2, __ctzSI2, __ctzDI2, __popcountSI2,
7603 __popcountDI2, __paritySI2, __parityDI2): Use UWmode and UDWmode;
7604 adjust code to match the different type sizes.
7605 * libgcc2.h (__clzSI2, __ctzSI2, __popcountSI2, __paritySI2,
7606 __clzDI2, __ctzDI2, __popcountDI2, __parityDI2): New macros.
7607
7608 * optabs.c (init_integral_libfuncs): Don't hard-code SImode and
7609 TImode; select word_mode and twice that.
7610 (init_floating_libfuncs): Don't hard-code SFmode and TFmode;
7611 select the modes from float, double, and long double.
7612 (init_optabs): Remove duplicate initializations.
7613
7614 2003-02-09 Wolfgang Bangerth <bangerth@ticam.utexas.edu>
7615
7616 * doc/install.texi: Squeeze and streamline section on
7617 testing and regression checking.
7618
7619 2003-02-09 Jan Hubicka <jh@suse.cz>
7620
7621 * i386.md (ahi?v*3): Set third operand type to TImode.
7622 * i386.c (ix86_expand_binop_builtin): Extend operand when needed.
7623
7624 * simplify-rtx.c (simplify_subreg): Fix conversion from vector into
7625 integer mode.
7626
7627 * rtl.def (VEC_MERGE, VEC_SELECT, VEC_CONCAT, VEC_DUPLICATE):
7628 Change code so they are arithmetic expressions now.
7629 * simplify-rtx.c (simplify_unary_operation, simplify_binary_operation,
7630 simplify_ternary_operation): Deal with VEC_* expressions.
7631
7632 * i386.md (vmaskcmp, pinsrw, movd patterns): Fix RTL representation.
7633
7634 2003-02-08 Jan Hubicka <jh@suse.cz>
7635
7636 * cfgrtl.c (verify_flow_info): Use control_flow_insn_p.
7637 * reload1.c (fixup_abnormal_edges): Split basic blocks when EH edges
7638 possibly got duplicated.
7639
7640 2003-02-08 Richard Henderson <rth@redhat.com>
7641
7642 * config/alpha/alpha.c (override_options): Turn off explicit
7643 relocs until post-peep2 code duplication resolved.
7644
7645 2003-02-08 Kazu Hirata <kazu@cs.umass.edu>
7646
7647 * optabs.c (expand_unop): Widen clz properly when clz is done
7648 via libcall.
7649
7650 2003-02-08 Kazu Hirata <kazu@cs.umass.edu>
7651
7652 * config/h8300/clzsi2.c: Replace "GNU CC" with "GCC".
7653 * config/h8300/crti.asm: Likewise.
7654 * config/h8300/crtn.asm: Likewise.
7655 * config/h8300/ctzsi2.c: Likewise.
7656 * config/h8300/fixunssfsi.c: Likewise.
7657 * config/h8300/h8300-protos.h: Likewise.
7658 * config/h8300/h8300.c: Likewise.
7659 * config/h8300/h8300.h: Likewise.
7660 * config/h8300/h8300.md: Likewise.
7661 * config/h8300/paritysi2.c: Likewise.
7662 * config/h8300/popcountsi2.c: Likewise.
7663 * config/h8300/rtems.h: Likewise.
7664
7665 2003-02-08 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
7666
7667 * doc/invoke.texi: Documentation for my previous commit.
7668 * doc/passes.texi: Ditto.
7669
7670 2003-02-08 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
7671
7672 * cfgloop.h (fix_loop_placement, can_duplicate_loop_p,
7673 duplicate_loop_to_header_edge, loopify, remove_path, split_loop_bb):
7674 Declare.
7675 (DLTHE_FLAG_UPDATE_FREQ): New.
7676 * cfgloopmanip.c (duplicate_loop, duplicate_subloops, copy_loops_to,
7677 loop_redirect_edge, loop_delete_branch_edge, copy_bbs, remove_bbs,
7678 rpe_enum_p, find_branch, alp_enum_p, add_loop, fix_loop_placements,
7679 fix_bb_placement, fix_bb_placements, place_new_loop,
7680 scale_loop_frequencies, scale_bbs_frequencies, record_exit_edges):
7681 New static functions.
7682 (fix_loop_placement, can_duplicate_loop_p,
7683 duplicate_loop_to_header_edge, loopify, remove_path, split_loop_bb):
7684 New functions.
7685
7686 * cfgloop.h (loop_optimizer_init, loop_optimizer_finalize,
7687 unswitch_loops): Declare.
7688 * loop-init.c: New file.
7689 * loop-unswitch.c: New file.
7690 * Makefile.in (loop-init.o, loop-unswitch.o): New.
7691 * params.def (PARAM_MAX_UNSWITCH_INSNS, PARAM_MAX_UNSWITCH_LEVEL): New.
7692 * toplev.c (DFI_loop2): New dump.
7693 (flag_unswitch_loops): New.
7694 (lang_independent_options): Add it.
7695 (rest_of_compilation): Call new loop optimizer.
7696 (parse_options_and_default_flags): Turn flag_unswitch_loops on with -O3.
7697
7698 2003-02-08 Kazu Hirata <kazu@cs.umass.edu>
7699
7700 * config/h8300/clzsi2.c: New.
7701 * config/h8300/ctzsi2.c: Likewise.
7702 * config/h8300/paritysi2.c: Likewise.
7703 * config/h8300/popcountsi2.c: Likewise.
7704 * config/h8300/t-h8300 (LIB2FUNCS_EXTRA): Add above files.
7705
7706 2003-02-07 David Edelsohn <edelsohn@gnu.org>
7707
7708 * config/rs6000/rs6000.h (CLZ_DEFINED_VALUE_AT_ZERO): Define.
7709 * config/rs6000/rs6000.md (clzsi2): Rename from cntlzw2.
7710 (ctzsi2): New pattern.
7711 (ffssi2): Use clz instead of unspec.
7712 (clzdi2): Rename from cntlzd2.
7713 (ctzdi2): New pattern.
7714 (ffsdi2): Use clz instead of unspec.
7715
7716 2003-02-07 Loren James Rittle <ljrittle@acm.org>
7717
7718 * config/alpha/freebsd.h (LINK_SPEC): Weaken error to notice.
7719 * config/ia64/freebsd.h (LINK_SPEC): Likewise.
7720 * config/sparc/freebsd.h (LINK_SPEC): Likewise.
7721 * config/i386/freebsd.h (LINK_SPEC): Add clause to mirror other arches.
7722
7723 2003-02-07 Wolfgang Bangerth <bangerth@ticam.utexas.edu>
7724
7725 * doc/trouble.texi: Document pitfalls of two-stage name lookup.
7726
7727 2003-02-07 Richard Henderson <rth@redhat.com>
7728
7729 PR 9226
7730 * gcse.c (local_cprop_find_used_regs): New.
7731 (local_cprop_pass): Use it.
7732
7733 2003-02-07 Fred Fish <fnf@intrinsity.com>
7734
7735 * mips-tfile.c (parse_def): Parenthesize assignments to fix
7736 precedence bugs.
7737
7738 2003-02-07 Segher Boessenkool <segher@koffie.nl>
7739
7740 * genoutput.c (output_get_insn_name): Handle NOOP_MOVE_INSN_CODE.
7741
7742 2003-02-07 Roger Sayle <roger@eyesopen.com>
7743
7744 * builtin-types.def (BT_FN_FLOAT_FLOAT_FLOAT): New built-in type.
7745 (BT_FN_LONG_DOUBLE_LONG_DOUBLE_LONG_DOUBLE): Likewise.
7746 (BT_FN_DOUBLE_DOUBLE_DOUBLE): Likewise.
7747 * builtins.def: Define pow, powf, powl, atan2, atan2f and atan2l
7748 builtin functions (and their __builtin_* variants).
7749 * builtins.c (mathfn_built_in): Handle missing log{,f,l} cases.
7750 (expand_builtin): Don't expand log{,f,l}, pow{,f,l} or atan2{,f,l}
7751 when not optimizing.
7752
7753 * doc/extend.texi: Document new pow and atan2 builtins, and
7754 their float and long double variants. Realphabetize builtins.
7755
7756 2003-02-07 Jan Hubicka <jh@suse.cz>
7757
7758 * i386.md (sse2_nandv2di3): Fix.
7759
7760 2003-03-07 Danny Smith <dannysmith@users.sourceforge.net>
7761
7762 * config/i386/i386.h (MS_AGGREGATE_RETURN): New define.
7763 * config/i386/cygwin.h (MS_AGGREGATE_RETURN): Override default
7764 definition.
7765 * config/i386/i386.h (ix86_return_in_memory): Return aggregate
7766 types of up to 8 bytes via registers if MS_AGGREGATE_RETURN.
7767
7768 2003-02-07 Jan Hubicka <jh@suse.cz>
7769
7770 * i386.md (movdi_rex64_1): Fix mmx<->int move opcode.
7771
7772 2003-02-07 Daniel Berlin <dberlin@dberlin.org>
7773
7774 * cfg.c (dump_flow_info): Add back accidently deleted line.
7775
7776 2003-02-07 Andrey Petrov <petrov@netbsd.org>
7777
7778 * optabs.c (expand_float): Search wider integer modes first.
7779
7780 2003-02-07 Bob Wilson <bob.wilson@acm.org>
7781
7782 * config/xtensa/xtensa.h (LIBGCC2_WORDS_BIG_ENDIAN): Set this
7783 based on preprocessor flag.
7784
7785 2003-02-07 Roger Sayle <roger@eyesopen.com>
7786 Richard Henderson <rth@redhat.com>
7787
7788 * gcse.c (implicit_sets): New.
7789 (compute_hash_table_work): Include them in hash table.
7790 (find_implicit_sets, fis_get_condition): New.
7791 (one_cprop_pass): Allocate and free implicit_sets; call
7792 find_implicit_sets before building hash table.
7793
7794 2003-02-07 Jason Thorpe <thorpej@wasabisystems.com>
7795
7796 * config/t-netbsd (USER_H): Revert previous change.
7797
7798 2003-02-07 Gabor Greif <ggreif@lucent.com>
7799
7800 * doc/c-tree.texi (Namespaces): Fix typo.
7801
7802 2003-02-07 Jan Hubicka <jh@suse.cz>
7803
7804 * regrename.c (do_replace, find_oldest_value_reg,
7805 copyprop_hardreg_forward_1): Update register attributes.
7806
7807 2003-02-06 Vladimir Makarov <vmakarov@redhat.com>
7808
7809 * genautomata.c (VLA_PTR_CREATE, VLA_PTR_EXPAND, VLA_PTR_ADD,
7810 VLA_HWINT_CREATE, VLA_HWINT_EXPAND, VLA_HWINT_ADD): Use temporay
7811 variables starting with underscore.
7812 (struct unit_usage): New structure.
7813 (unit_usages, cycle_alt_unit_usages): New global variables.
7814 (check_unit_distribution_in_reserv): Remove it.
7815 (store_alt_unit_usage): New function.
7816 (check_regexp_units_distribution): Rewrite it.
7817
7818 2003-02-06 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
7819
7820 * config.gcc (hppa*-*-linux*): Set MASK_NO_SPACE_REGS in
7821 target_cpu_default.
7822 * pa.c (attr_length_call): Add 8 to call length (long indirect PA 1.X)
7823 if not MASK_NO_SPACE_REGS.
7824 (output_call): Adjust return pointer, don't load new space register
7825 into %sr0, and use %sr4 for call if TARGET_NO_SPACE_REGS is true.
7826 (pa_asm_output_mi_thunk): Don't load new space register into %sr0 if
7827 TARGET_NO_SPACE_REGS is true.
7828 * pa.md (return_external_pic): Add TARGET_NO_SPACE_REGS to insn
7829 conditions.
7830 (epilogue): Always use return_internal if TARGET_NO_SPACE_REGS is true.
7831 (interspace_jump): Add new pattern for when TARGET_NO_SPACE_REGS is
7832 true. Use bve when TARGET_64BIT is true.
7833
7834 2003-02-06 Richard Henderson <rth@redhat.com>
7835
7836 * combine.c (nonzero_bits): Fix double break.
7837
7838 2003-02-06 Eric Botcazou <ebotcazou@libertysurf.fr>
7839 Richard Henderson <rth@redhat.com>
7840
7841 PR c/9530
7842 * config/i386/i386.c (ix86_function_ok_for_sibcall): Forbid sibcalls
7843 from functions that return a float to functions that don't.
7844
7845 2003-02-06 Jan Hubicka <jh@suse.cz>
7846
7847 * i386.c (x86_inter_unit_moves): New variable.
7848 (ix86_secondary_memory_needed): Fix 64bit case, honor
7849 TARGET_INTER_UNIT_MOVES
7850 * i386.h (x86_inter_unit_moves): Declare.
7851 (TARGET_INTER_UNIT_MOVES): New macro.
7852 * i386.md (movsi_1): Cleanup constraints; disable
7853 when not doing inter-unit moves.
7854 (movsi_1_nointernunit): New.
7855 (movdi_1_rex64): Fix constraints; deal with SSE->GPR moves.
7856 (movdi_1_rex64_nointerunit): New.
7857 (mivsf_1): disable when not doing inter-unit moves.
7858 (movsf_1_nointerunit): New.
7859
7860 * basic-block.h (inside_basic_block_p): Declare.
7861 * cfgbuild.c (inside_basic_block_p): Make global.
7862 * haifa-sched.c (unlink_other_notes0: Deal with NOT_INSN_BASIC_BLOCK.
7863 * scheudle-ebb.c (schedule_ebb): Return last basic block of trace;
7864 update CFG.
7865 (fix_basic_block_boundaries, add_missing_bbs): New.
7866 (rank): Use profile.
7867 (scheudle_ebbs): Rely on CFG; update coments.
7868
7869 2003-02-05 Geoffrey Keating <geoffk@apple.com>
7870
7871 * Makefile.in (host_hook_obj): New.
7872 (OBJS): Add $(host_hook_obj).
7873 (host_default.o): New rule.
7874 * config.gcc (host_hook_obj): New, default to host-default.o.
7875 (powerpc-*-darwin*): Use host-darwin.o.
7876 (out_host_hook_obj): New.
7877 * configure: Regenerate.
7878 * configure.in: Print information about out_host_hook_obj, substitute
7879 into output files.
7880 * host-default.c: New file.
7881 * hosthooks.h: New file.
7882 * toplev.c (general_init): Call host_hooks.extra_signals.
7883 * config/rs6000/host-darwin.c: New file.
7884 * config/rs6000/x-darwin: New file.
7885 * doc/hostconfig.texi: Add documentation for new host hook.
7886 Rearrange existing documentation.
7887
7888 2003-02-05 Roger Sayle <roger@eyesopen.com>
7889
7890 * dwarf2out.c (mem_loc_descriptor): Replace ASM_SIMPLIFY_DWARF_ADDR
7891 with *targetm.delegitimize_address.
7892 (rtl_for_decl_location): Likewise.
7893 * dwarfout.c (output_mem_loc_descriptor): Likewise. Include target.h.
7894 * Makefile.in (dwarf2out.c, dwarfout.c): Depend upon $(TARGET_H)
7895
7896 * config/i386/i386.h (ASM_SIMPLIFY_DWARF_ADDR): Remove definition.
7897 * config/i386/i386-protos.h (i386_simplify_dwarf_addr): Remove
7898 prototype.
7899 * config/i386/i386.c (ix86_delegitimize_address): Renamed from
7900 i386_simplify_dwarf_addr. Made static. Prototyped.
7901 (TARGET_DELEGITIMIZE_ADDRESS): Update definition from
7902 i386_simplify_dwarf_addr to ix86_delegitimize_address.
7903 (ix86_find_base_term): Likewise.
7904 (maybe_get_pool_constant): Likewise.
7905
7906 * config/s390/s390.h (ASM_SIMPLIFY_DWARF_ADDR): Remove definition.
7907 * config/s390/s390-protos.h (s390_simplify_dwarf_addr): Remove
7908 prototype.
7909 * config/s390/s390.c (s390_delegitimize_address): Renamed from
7910 s390_simplify_dwarf_addr. Made static. Prototyped.
7911 (TARGET_DELEGITIMIZE_ADDRESS): Define as s390_delegitimize_address.
7912
7913 2003-02-05 Richard Henderson <rth@redhat.com>
7914
7915 PR c/8602
7916 * integrate.c (output_inline_function): Reset input_filename
7917 and lineno from the decl before rest_of_compilation.
7918
7919 2003-02-05 Richard Henderson <rth@redhat.com>
7920
7921 * defaults.h (CLZ_DEFINED_VALUE_AT_ZERO): New.
7922 (CTZ_DEFINED_VALUE_AT_ZERO): New.
7923 * doc/rtl.texi, doc/tm.texi: Document them.
7924
7925 * combine.c (nonzero_bits) [CLZ, CTZ]: Handle the definedness
7926 of the value at zero properly.
7927 * fold-const.c (tree_expr_nonnegative_p): Likewise.
7928 * simplify-rtx.c (simplify_unary_operation): Likewise.
7929
7930 * config/alpha/alpha.h (CLZ_DEFINED_VALUE_AT_ZERO): New.
7931 (CTZ_DEFINED_VALUE_AT_ZERO): New.
7932
7933 * config/arm/arm.c (TARGET_INIT_BUILTINS): Remove.
7934 (TARGET_EXPAND_BUILTIN): Remove.
7935 (def_builtin, arm_init_builtins, arm_expand_builtin): Remove.
7936 * config/arm/arm.h (CLZ_DEFINED_VALUE_AT_ZERO): New.
7937 (enum arm_builtins): Remove.
7938 * config/arm/arm.md (UNSPEC_CLZ): Remove.
7939 (clzsi2): Rename from clz; use clz instead of unspec.
7940 (ctzsi2): New.
7941 * config/arm/arm-protos.h: Update.
7942
7943 2003-02-05 Jan Hubicka <jh@suse.cz>
7944
7945 * i386-protos.h (x86_emit_floatuns): Declare.
7946 * i386.c (x86_emit_floatuns): New global function.
7947 * i386.md (floatunssisf2, floatunsdisf2,
7948 floatunsdidf2): New patterns.
7949
7950 2003-01-25 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
7951
7952 * cfgloopmanip.c (force_single_succ_latches): Fix missindentation.
7953
7954 2003-02-05 Hans Boehm <Hans.Boehm@hp.com>
7955
7956 * config/ia64/unwind-ia64.c: include coretypes.h, tm.h to get
7957 config/ia64/linux.h
7958
7959 2003-02-05 Roger Sayle <roger@eyesopen.com>
7960
7961 * cfgloop.h (flow_bb_inside_loop_p): Correct prototype again.
7962
7963 2003-02-05 Jakub Jelinek <jakub@redhat.com>
7964
7965 PR optimization/8555
7966 * config/i386/i386.md (sse_mov?fcc split): Handle op2 == op3 case
7967 instead of aborting.
7968
7969 2003-02-04 Richard Henderson <rth@redhat.com>
7970
7971 * config/i386/i386.md (UNSPEC_BSF): Remove.
7972 (ffssi2): Split into cmove and no_cmove insns and splitters;
7973 lose pentium float trick for now.
7974 (ffssi_1): Add * to name; use CTZ instead of UNSPEC.
7975 (ctzsi2, clzsi2, bsr): New.
7976
7977 2003-02-04 Richard Henderson <rth@redhat.com>
7978
7979 * config/ia64/ia64.c (rtx_needs_barrier): Handle POPCOUNT,
7980 UNSPEC_GETF_EXP; remove UNSPEC_POPCNT.
7981 * config/ia64/ia64.md (UNSPEC_POPCNT): Remove.
7982 (ffsdi2): Use popcount instead of unspec.
7983 (popcountdi2): Rename from *popcnt.
7984 (ctzdi2, clzdi2, getf_exp_tf): New.
7985
7986 2003-02-04 Kazu Hirata <kazu@cs.umass.edu>
7987
7988 * genconfig.c (main): Generate CC0_P.
7989 * rtl.h (CC0_P): Remove.
7990
7991 2003-02-04 Richard Henderson <rth@redhat.com>
7992
7993 * libgcc2.h, libgcc2.c (__ffsSI2): New.
7994 (__ffsDI2): Rename from __ffsdi2.
7995 * mklibgcc.in (lib2funcs): Add _ffssi2.
7996
7997 2003-02-04 Richard Henderson <rth@redhat.com>
7998
7999 * libgcc2.c (__paritysi2, __paritydi2): Replace last two reduction
8000 rounds with a "bit table" lookup.
8001
8002 2003-02-04 Ulrich Weigand <uweigand@de.ibm.com>
8003
8004 * reload.c (find_reloads): Do not use the mode specified in the insn
8005 pattern as reload mode for address operands. Do not generate optional
8006 reloads for operands where a mandatory reload was already pushed.
8007
8008 2003-02-04 Richard Henderson <rth@redhat.com>
8009
8010 * longlong.h [alpha] (count_leading_zeros, count_trailing_zeros): Use
8011 builtins instead of inline assembly.
8012
8013 2003-02-04 Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
8014
8015 PR c/9376
8016 * libgcc2.c (__subvdi3): Fix typo.
8017
8018 2003-02-04 Jan Hubicka <jh@suse.cz>
8019
8020 * i386.md (movti_rex64): Fix constraint.
8021
8022 2003-02-04 Jan Hubicka <jh@suse.cz>
8023
8024 * i386.md (vector push splitters): Fix typo in resolving conflict.
8025
8026 2003-02-04 Rodney Brown <rbrown64@csc.com.au>
8027
8028 * config/i386/i386.c (x86_function_profiler): Fix typo in format.
8029
8030 2003-02-04 Phil Edwards <pme@gcc.gnu.org>
8031
8032 * doc/install.texi (*-*-linux-gnu): Mention glibc requirements
8033 for recent libstdc++. Remove formatting cruft.
8034
8035 2003-02-04 Jakub Jelinek <jakub@redhat.com>
8036
8037 * dwarf2out.c (dwarf2out_finish): Add AT_comp_dir
8038 attribute even if input file name is absolute, but one of the
8039 includes is relative.
8040
8041 2003-02-04 Joseph S. Myers <jsm@polyomino.org.uk>
8042
8043 * doc/gcc.texi, doc/gccint.texi, doc/gcov.texi,
8044 doc/include/fdl.texi, doc/invoke.texi: Update to GFDL 1.2.
8045 * doc/install.texi: Update copyright dates. Update to GFDL 1.2.
8046
8047 2003-02-03 Richard Henderson <rth@redhat.com>
8048
8049 * libgcc2.c (__ffsdi2, __clzsi2, __clzdi2, __ctzsi2, __ctzdi2,
8050 __popcountsi2, __popcountdi2, __paritysi2, __paritydi2): Change
8051 return type to "int". Shuffle declarations and undef int trap.
8052 * libgcc2.h: Remove their declarations.
8053 * optabs.c (expand_unop): Force outmode to int for bitops.
8054
8055 2003-02-03 Bob Wilson <bob.wilson@acm.org>
8056
8057 * config/xtensa/xtensa.c (order_regs_for_local_alloc): Order the
8058 coprocessor registers before floating-point registers.
8059 * config/xtensa/xtensa.h (REG_ALLOC_ORDER): Adjust register numbers
8060 to account for a previously removed register.
8061 (SPEC_REG_FIRST, SPEC_REG_LAST, SPEC_REG_NUM, COUNT_REGISTER_REGNUM):
8062 Delete unused macros.
8063
8064 2003-02-03 Jan Hubicka <jh@suse.cz>
8065
8066 * i386.c (ix86_expand_store_builtin): Always force op1 to register.
8067 (mov*_internal): Fix predicates; require one of operands to not be
8068 memory.
8069 (SSE?MMX move expanders): Fix predicates; force one of operands to
8070 register.
8071 (SSE/MMX push patterns): Reorganize; fix x86-64 code generation.
8072 (movups/movupd/movdqu patterns): Force one of operands to not be
8073 memory.
8074
8075 2003-02-03 Roger Sayle <roger@eyesopen.com>
8076
8077 * hooks.c (hook_rtx_rtx_identity): Generic hook function that
8078 takes a single rtx and returns it unmodified.
8079 * hooks.h (hook_rtx_rtx_identity): Prototype here.
8080 * target.h (struct gcc_target): Add "delegitimize_address"
8081 field to target structure.
8082 * target-def.h (TARGET_DELEGITIMIZE_ADDRESS): Provide default
8083 for delegitimize_address target using hook_rtx_rtx_identity.
8084 (TARGET_INITIALIZER): Initialize delegitimize_address field
8085 using TARGET_DELEGITIMIZE_ADDRESS macro.
8086 * simplify-rtx.c (avoid_constant_pool_reference): Handle float
8087 extensions of constant pool references. Use delegitimize_address
8088 to undo the obfuscation of "-fpic".
8089 * Makefile.in (simplify-rtx.o): Add dependency on target.h.
8090
8091 * config/i386/i386.c (TARGET_DELEGITIMIZE_ADDRESS): Define as
8092 i386_simplify_dwarf_addr.
8093 (ix86_find_base_term): Simplify using i386_simplify_dwarf_addr.
8094 (maybe_get_pool_constant): Likewise.
8095
8096 2003-02-03 Jan Hubicka <jh@suse.cz>
8097
8098 * i386.c (ix86_expand_int_movcc): Fix setcc sign bit case.
8099
8100 2003-02-03 Jan Hubicka <jh@suse.cz>
8101
8102 * regclass.c (cannot_change_mode_set_regs): Correct argument order.
8103
8104 2003-02-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8105
8106 * mips/_tilib.c: Don't include tsystem.h or defaults.h. Don't
8107 define LIBGCC2_WORDS_BIG_ENDIAN. Include coretypes.h and tm.h.
8108
8109 2003-02-02 Andreas Schwab <schwab@suse.de>
8110
8111 * varasm.c (asm_output_aligned_bss): Declare as possibly unused.
8112
8113 2003-02-02 Richard Earnshaw <rearnsha@arm.com>
8114
8115 * arm.md (sibcall_epilogue): Set the "conds" to "clob".
8116 (epilogue_insns): Likewise.
8117
8118 2003-02-02 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
8119
8120 * doc/install.texi (hppa*-hp-hpux11*): Update installation notes.
8121
8122 2003-02-02 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
8123
8124 * pa-protos.h (attr_length_millicode_call): Remove second argument.
8125 (attr_length_indirect_call, attr_length_indirect_call,
8126 attr_length_save_restore_dltp): New prototypes.
8127 * pa.c (attr_length_millicode_call): Remove second argument. Check
8128 INSN_ADDRESSES_SET_P in distance calculation.
8129 (output_millicode_call): Check INSN_ADDRESSES_SET_P before using
8130 INSN_ADDRESSES.
8131 (attr_length_call): Check INSN_ADDRESSES_SET_P in distance calculation.
8132 (output_call): Check INSN_ADDRESSES_SET_P before using INSN_ADDRESSES.
8133 Call attr_length_call directly.
8134 (attr_length_indirect_call, output_indirect_call,
8135 attr_length_save_restore_dltp): New functions.
8136 * pa.md (attr_length_millicode_call): Drop second argument from all
8137 patterns.
8138 (return_internal_pic): Delete.
8139 (return_external_pic): Remove use of PIC register and pic operand and
8140 flag checks.
8141 (epilogue): Use return_internal for both normal and pic code.
8142 (call, call_value): Emit new 32-bit pic patterns for symref and
8143 indirect calls. Remove uses for arg pointer and pic register.
8144 (call_symref_pic, call_symref_pic_post_reload, call_reg_pic,
8145 call_reg_pic_post_reload, call_val_symref_pic,
8146 call_val_symref_pic_post_reload, call_val_reg_pic,
8147 call_val_reg_pic_post_reload): New pre and post reload insn patterns.
8148 Implement define_split and define_peephole2 patterns for pre reload
8149 patterns.
8150 (call_symref_64bit, call_internal_reg_64bit, call_value_symref_64bit,
8151 call_value_internal_reg_64bit): Shorten names.
8152 (all call patterns): Explicitly indicate registers used and clobbered.
8153 Use attr_length_indirect_call and attr_length_save_restore_dltp for
8154 attribute length calculation. Move code generation for indirect calls
8155 to output_indirect_call.
8156 (sibcall, sibcall_value): Don't restore PIC register.
8157 (exception_receiver, builtin_setjmp_receiver): Add blockage after PIC
8158 register retore.
8159
8160 2003-02-02 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
8161
8162 * doc/install.texi (Testing): Simplify and compress instructions
8163 concerning Dejagnu.
8164
8165 2003-02-01 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
8166
8167 * collect2.c (pexecute_pid): Rename to pid.
8168 (collect_wait, collect_execute, scan_prog_file, scan_libraries): Use
8169 pid.
8170
8171 2003-02-01 Geoffrey Keating <geoffk@apple.com>
8172
8173 * doc/extend.texi (Function Attributes): Remove documentation
8174 for PowerPC Windows NT function attributes..
8175
8176 2003-02-01 Daniel Jacobowitz <drow@mvista.com>
8177
8178 * dwarf2out.c (gen_type_die): Check for typedefs before calling
8179 for TYPE_MAIN_VARIANT.
8180
8181 2003-02-01 Richard Henderson <rth@redhat.com>
8182
8183 * libgcc2.c: Include auto-host.h.
8184 (ATTRIBUTE_HIDDEN): New.
8185 (__clz_tab): Don't declare here for clz and ctz.
8186 (__clzsi2, __clzdi2): Use count_leading_zeros.
8187 (__ctzsi2, __ctzdi2): Use count_trailing_zeros.
8188 (__popcount_tab): Mark ATTRIBUTE_HIDDEN.
8189 (__paritysi2, __paritydi2): Use shifts instead of __popcount_tab.
8190 * longlong.h (__clz_tab): Mark ATTRIBUTE_HIDDEN.
8191
8192 2003-02-01 Richard Henderson <rth@redhat.com>
8193
8194 * config/i386/i386.md (addsi_1_zext splitter): Add TARGET_64BIT
8195 to the conditional.
8196 (ashlsi3_1_zext splitter): Likewise.
8197
8198 2003-02-01 Richard Henderson <rth@redhat.com>
8199
8200 * optabs.c (expand_unop): Use word_mode for outmode of bit scaners.
8201 * libgcc2.c (__ffsdi2, __clzsi2, __clzdi2, __ctzsi2, __ctzdi2,
8202 __popcountsi2, __popcountdi2, __paritysi2 __paritydi2): Change
8203 return type to Wtype.
8204
8205 * libgcc-std.ver (GCC_3.4): Fix inheritance.
8206
8207 * config/i386/i386.md (ffssi2): Use nonimmediate_operand for
8208 expander input constraint.
8209
8210 2003-02-01 Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
8211
8212 * optabs.h (optab_index): Add OTI_clz, OTI_ctz, OTI_popcount and
8213 OTI_parity.
8214 (clz_optab, ctz_optab, popcount_optab, parity_optab): New.
8215 * optabs.c (widen_clz, expand_parity): New.
8216 (expand_unop): Handle clz and parity. Hardcode SImode as outmode
8217 for libcalls to clz, ctz, popcount, and parity.
8218 (init_optabs): Init clz_optab, ctz_optab, popcount_optab and
8219 parity_optab, and set up libfunc handlers.
8220 * libgcc2.c (__clzsi2, __clzdi2, __ctzsi2, __ctzdi2,
8221 __popcountsi2, __popcountdi2, __paritysi2 __paritydi2,
8222 __popcount_tab): New.
8223 * libgcc2.h: Declare them.
8224 * libgcc-std.ver (GCC_3.4): Add new functions from libgcc2.c.
8225 * genopinit.c (optabs): Add clz_optab, ctz_optab, popcount_optab
8226 and parity_optab.
8227 * builtin-types.def (BT_FN_INT_LONG, BT_FN_INT_LONGLONG): New.
8228 * builtins.def (BUILT_IN_CLZ, BUILT_IN_CTZ, BUILT_IN_POPCOUNT,
8229 BUILT_IN_PARITY, BUILT_IN_FFSL, BUILT_IN_CLZL, BUILT_IN_CTZL,
8230 BUILT_IN_POPCOUNTL, BUILT_IN_PARITYL, BUILT_IN_FFSLL,
8231 BUILT_IN_CLZLL, BUILT_IN_CTZLL, BUILT_IN_POPCOUNTLL,
8232 BUILT_IN_PARITYLL): New.
8233 * builtins.c (expand_builtin_unop): Rename from expand_builtin_ffs
8234 and add optab argument.
8235 (expand_builtin): Expand BUILT_IN_{FFS,CLZ,POPCOUNT,PARITY}*.
8236 * tree.def (CLZ_EXPR, CTZ_EXPR, POPCOUNT_EXPR, PARITY_EXPR): New.
8237 * expr.c (expand_expr): Handle them.
8238 * fold-const.c (tree_expr_nonnegative_p): Likewise.
8239 * rtl.def (CLZ, CTZ, POPCOUNT, PARITY): New.
8240 * reload1.c (eliminate_regs): Handle them.
8241 (elimination_effects): Likewise.
8242 * function.c (instantiate_virtual_regs_1): Likewise
8243 * genattrtab.c (check_attr_value): Likewise.
8244 * simplify-rtx.c (simplify_unary_operation): Likewise.
8245 * c-common.c (c_common_truthvalue_conversion): Handle POPCOUNT_EXPR.
8246 * combine.c (combine_simplify_rtx): Handle POPCOUNT and PARITY.
8247 (nonzero_bits): Handle CLZ, CTZ, POPCOUNT and PARITY.
8248 * config/alpha/alpha.md (clzdi2, ctzdi2, popcountdi2): New.
8249 * config/arm/arm.c (arm_init_builtins): Rename __builtin_clz to
8250 __builtin_arm_clz.
8251 * Makefile.in (LIB2FUNCS_1, LIB2FUNCS_2): Move...
8252 * mklibgcc.in (lib2funcs): ...here and merge. Add new members.
8253 * doc/extend.texi (Other Builtins): Add new builtins.
8254 * doc/md.texi (Standard Names): Add new patterns.
8255
8256 2003-02-01 Ulrich Weigand <uweigand@de.ibm.com>
8257
8258 * reload.c: Revert 2003-01-31 change.
8259
8260 2003-02-01 Jan Hubicka <jh@suse.cz>
8261
8262 * combine.c (combine_simplify_rtx): Use reversed_comparison_code_parts.
8263
8264 2003-02-01 Richard Sandiford <rsandifo@redhat.com>
8265
8266 * flags.h (flag_volatile): Remove declaration.
8267 (flag_volatile_global, flag_volatile_static): Likewise.
8268 * c-typeck.c (build_indirect_ref): Don't check flag_volatile.
8269 * toplev.c (flag_volatile): Remove definition.
8270 (flag_volatile_global, flag_volatile_static): Likewise.
8271 (f_options): Remove corresponding entries here.
8272 * varasm.c (make_decl_rtl): Don't check flag_volatile_global
8273 or flag_volatile_static.
8274 * doc/invoke.texi: Remove documentation of -fvolatile,
8275 -fvolatile-global and -fvolatile-static.
8276
8277 2003-01-31 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
8278
8279 * pa.c (pa_output_function_prologue, pa_output_function_epilogue): Move
8280 updating of total_code_bytes from prologue to epilogue.
8281
8282 2003-01-31 Ulrich Weigand <uweigand@de.ibm.com>
8283
8284 * reload.c (find_reloads): Do not use the mode specified in the insn
8285 pattern as reload mode for address operands. Do not generate optional
8286 reloads for operands where a mandatory reload was already pushed.
8287 Generate optional reloads only in the final pass though find_reloads.
8288 (have_replacement_p): New function.
8289
8290 2003-01-31 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
8291
8292 * doc/install.texi (Testing): Remove a reference to our obsolete
8293 /testresults web pages and strip redundant information concerning
8294 test results.
8295 (Binaries): Refer to Microsoft Windows instead of listing all
8296 possible variants.
8297
8298 2003-02-01 Jan Hubicka <jh@suse.cz>
8299
8300 * loop.c (emit_prefetch_instructions): Do conversion at right place in
8301 RTL chain.
8302
8303 * combine.c (simplify_set): Reverse order of ragumetns to
8304 REG_CANNOT_CHANGE_MODE_P
8305 * df.c (df_def_record_1): Likewise.
8306 * recog.c (register_operand): Likewise.
8307 * simplify-rtx.c (simplify_subreg): Likewise.
8308 * hard-reg-set.h (REG_CANNOT_CHANGE_MODE_P): Update use of
8309 CANNOT_CHANGE_MODE_CLASS.
8310 * regclass.c (cannot_change_mode_set_regs, invalid_mode_change_p):
8311 Likewise.
8312 * reload.c (push_reload): Likewise.
8313 * alpha.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
8314 * ia64.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
8315 * mips.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
8316 * mips-protos.h (mips_cannot_change_mode_class): Update prototype.
8317 * mips.c (mips_cannot_change_mode_class): Update.
8318 * pa64-regs.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
8319 * rs6000.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
8320 * s390.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
8321 * sh.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
8322 * sh-protos.h (sh_cannot_change_mode_class): Update prototype.
8323 * sh.c (sh_cannot_change_mode_class): Update.
8324 * i386.h (CANNOT_CHANGE_MODE_CLASS): New.
8325 * tm.texi (CANNOT_CHANGE_MODE_CLASS): Update documentation.
8326
8327 2003-01-31 Geoffrey Keating <geoffk@apple.com>
8328
8329 * config/darwin.h (LINK_COMMAND_SPEC): Update for Nathan's recent
8330 change to LINK_COMMAND_SPEC in gcc.c.
8331
8332 2003-01-31 Jan Hubicka <jh@suse.cz>
8333
8334 PR c/9506
8335 * i386.c (override_options): Use DEFAULT_PCC_STRUCT_RETURN.
8336
8337 2003-01-31 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
8338
8339 * pa32-regs.h (REGNO_REG_CLASS, REG_CLASS_FROM_LETTER): Delete
8340 duplicated code.
8341
8342 2003-01-31 Nathan Sidwell <nathan@codesourcery.com>
8343
8344 * tree.h (TYPE_BINFO_SIZE, TYPE_BINFO_SIZE_UNIT): Remove.
8345 (BINFO_ELTS): New #define.
8346 * stor-layout.c (finalize_record_size): Don't set them.
8347 * cp/cp-tree.h (BINFO_SUBVTT_INDEX, BINFO_VPTR_INDEX,
8348 BINFO_PRIMARY_BASE_OF): Use BINFO_ELTS.
8349 (BINFO_LANG_ELTS): New #define.
8350 * cp/tree.c (make_binfo): Use BINFO_LANG_ELTS.
8351 * java/class.c (make_class): Use BINFO_ELTS.
8352 (set_super_info): Likewse.
8353 (add_interface_do): Likewise.
8354 * objc/objc-act.c (start_class): Use BINFO_ELTS.
8355
8356 2003-01-31 Danny Smith <dannysmith@users.sourceforge.net>
8357
8358 * timevar.c (getrusage): Don't ever declare if not HAVE_GETRUSAGE.
8359 (times): Don't ever declare if not HAVE_TIMES.
8360 (clock): Don't ever declare if not HAVE_CLOCK.
8361
8362 2003-01-30 Richard Henderson <rth@redhat.com>
8363
8364 * flow.c (update_life_info): Zap life info after cleanup_cfg.
8365 (regno_uninitialized): Use correct live at function entry set.
8366 (regno_clobbered_at_setjmp): Likewise.
8367
8368 * expr.c (store_expr): Promote all MEM intermediates to regs.
8369
8370 2003-01-30 Kazu Hirata <kazu@cs.umass.edu>
8371
8372 * config/arm/arm.c: Fix comment typos.
8373 * config/arm/arm.h: Likewise.
8374 * config/arm/netbsd-elf.h: Likewise.
8375 * config/arm/netbsd.h: Likewise.
8376
8377 2003-01-30 Geoffrey Keating <geoffk@apple.com>
8378
8379 * gengtype.c (struct walk_type_data): Add needs_cast_p.
8380 (walk_type): Set needs_cast_p in walk_type_data.
8381 (write_types_process_field): Supply casts when required to suppress
8382 warnings.
8383 (write_root): Cast gt_pch_n_S to suppress warning.
8384 * Makefile.in: Remove -Wno-error from gtype-desc.o and c-decl.o.
8385 * config/rs6000/rs6000.c (print_operand): Mask off high bits only
8386 when they might exist.
8387 * config/rs6000/t-rs6000: Remove -Wno-error from varasm.o,
8388 insn-conditions.o, and rs6000.o.
8389
8390 2003-01-30 Richard Henderson <rth@redhat.com>
8391
8392 * ggc-page.c (G.context_depth_allocations): New.
8393 (G.context_depth_collections): New.
8394 (alloc_page): Set G.context_depth_allocations.
8395 (ggc_collect): Set G.context_depth_collections.
8396 (ggc_push_context): Limit to HOST_BITS_PER_LONG contexts.
8397 (ggc_pop_context): Early exit for no allocations or collections.
8398
8399 2003-01-30 Richard Henderson <rth@redhat.com>
8400
8401 * tree-inline.c (walk_tree): Streamline duplicate hash table lookup.
8402
8403 2003-01-30 Richard Earnshaw <rearnsha@arm.com>
8404
8405 * arm.c (arm_compute_initial_elimination_offset): If optimizing for
8406 size, the link register is always saved if any other register is
8407 saved.
8408
8409 2003-01-30 Kazu Hirata <kazu@cs.umass.edu>
8410
8411 * config/h8300/h8300-protos.h: Update the prototype for
8412 compute_plussi_cc.
8413 (cpp_reader): Declare before it is used.
8414 * config/h8300/h8300.c (compute_plussi_cc): Change the return
8415 type to int.
8416 * config/h8300/h8300.md (monitor_prologue): Call abort() if we
8417 see an unknown H8 variant.
8418
8419 2003-01-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
8420
8421 PR target/9316
8422 * config/rs6000/rtems.h: Add CPP_OS_DEFAULT_SPEC.
8423 * config/rs6000/sysv4.h: Add CPP_OS_RTEMS_SPEC.
8424 * config/rs6000/t-rtems: New file. multilib variants to match OS.
8425 * config.gcc (powerpc-*-rtems*): Use rs6000/t-rtems instead of
8426 rs6000/t-ppcgas so we get the desired multilibs.
8427
8428 2003-01-30 Nick Clifton <nickc@redhat.com>
8429
8430 * config/arm/arm.c (arm_output_epilogue): Update stack pointer
8431 when popping saved IP register off the stack.
8432
8433 2003-01-30 Kazu Hirata <kazu@cs.umass.edu>
8434
8435 * config/rs6000/aix43.h: Fix comment typos.
8436 * config/rs6000/aix51.h: Likewise.
8437 * config/rs6000/aix52.h: Likewise.
8438 * config/rs6000/altivec.h: Likewise.
8439 * config/rs6000/rs6000.c: Likewise.
8440 * config/rs6000/rs6000.h: Likewise.
8441 * config/rs6000/rs6000.md: Likewise.
8442 * config/rs6000/spe.md: Likewise.
8443
8444 2003-01-29 Mark Mitchell <mark@codesourcery.com>
8445
8446 * c-common.c (builtin_define_float_constants): Define
8447 __<TYPE>_HAS_INFINITY__ and __<TYPE>_HAS_QUIET_NAN__.
8448
8449 2003-01-30 Kazu Hirata <kazu@cs.umass.edu>
8450
8451 * config/sh/lib1funcs.asm: Fix comment typos.
8452 * config/sh/linux.h: Likewise.
8453 * config/sh/sh.c: Likewise.
8454 * config/sh/sh.md: Likewise.
8455
8456 2003-01-30 Loren James Rittle <ljrittle@acm.org>
8457
8458 * objc/Make-lang.in (objc-parse.y): Find c-parse.in in $(srcdir).
8459
8460 2003-01-30 Alexandre Oliva <aoliva@redhat.com>
8461
8462 * config/fp-bit.h (__make_dp): Declare if TMODES.
8463
8464 2003-01-29 Kazu Hirata <kazu@cs.umass.edu>
8465
8466 * config/h8300/h8300.h (PREDICATE_CODES): Add entries for
8467 general_operand_src and general_operand_dst.
8468
8469 2003-01-29 David Edelsohn <edelsohn@gnu.org>
8470
8471 * config/rs6000/rs6000.c (function_arg_pass_by_reference):
8472 Return true for variable sized types.
8473 (rs6000_va_arg): Handle variable sized types passed by reference
8474 on non-SVR4 ABI.
8475
8476 2003-01-29 Richard Earnshaw <rearnsha@arm.com>
8477
8478 * arm.c (arm_legtimize_address): New function.
8479 * arm-protos.h (arm_legtimize_address): Add prototype.
8480 * arm.h (ARM_LEGITIMIZE_ADDRESS): Use arm_legitimize_address.
8481 (LEGITIMIZE_ADDRESS, THUMB_LEGITIMIZE_ADDRESS): Wrap with
8482 do ... while (0)
8483
8484 2003-01-29 Joel Sherrill <joel@OARcorp.com>
8485
8486 PR bootstrap/9296
8487 * gthr-rtems.h: Define __GTHREAD_MUTEX_INIT. Apparently no code
8488 depended on it being defined until now.
8489
8490 2003-01-29 Joel Sherrill <joel@OARcorp.com>
8491
8492 PR target/9295
8493 * config/mips/rtems.h: Predefine __USE_INIT_FINI__ so generic
8494 RTEMS code knows which C++ initialization style the toolset
8495 configuration is using.
8496
8497 2003-01-29 Joel Sherrill <joel@OARcorp.com>
8498
8499 PR bootstrap/9293
8500 * config/m68k/t-crtstuff: Replace spaces with tabs, add
8501 $(MULTILIB_CFLAGS) as compiler option and multilib crtbegin/end.o.
8502
8503 2003-01-29 Joel Sherrill <joel@OARcorp.com>
8504
8505 PR bootstrap/9292
8506 * config.gcc (hppa1.1-rtems): Did not include t-rtems nor enable
8507 RTEMS threads.
8508 * config/pa/rtems.h (LIB_SPEC): Use -N when linking.
8509
8510 2003-01-29 Nick Clifton <nickc@redhat.com>
8511
8512 * Makefile.in (c-parse.o): Locate source file in $(parsedir)
8513 not $(srcdir).
8514
8515 2003-01-29 Andrew Haley <aph@redhat.com>
8516
8517 * tree-inline.c (walk_tree): Add CHAR_TYPE.
8518
8519 2003-01-29 Jan Hubicka <jh@suse.cz>
8520
8521 * i386.md (subdi3_carry_rex64): Fix typo.
8522
8523 2003-01-28 Stan Shebs <shebs@apple.com>
8524
8525 * coretypes.h (cpp_reader): Forward declare struct.
8526 * c-pragma.h (cpp_reader): Remove forward declaration.
8527 * hashtable.h (cpp_reader): Likewise.
8528 * scan.h (cpp_reader): Likewise.
8529 * tree.h (cpp_reader): Likewise.
8530 * config/darwin-protos.h (cpp_reader): Likewise.
8531 * config/arm/arm-protos.h (cpp_reader): Likewise.
8532 * config/rs6000/rs6000-protos.h: Remove GCC_CPPLIB_H ifdef, use
8533 struct cpp_reader in prototypes.
8534
8535 2003-01-28 Christian Cornelssen <ccorn@cs.tu-berlin.de>
8536
8537 * doc/install.texi: Add documentation for installation into
8538 tooldirs and with DESTDIR.
8539
8540 2003-01-28 Richard Henderson <rth@redhat.com>
8541
8542 * config.gcc (ia64*-*-aix*): Remove.
8543 * config/ia64/aix.h, config/ia64/t-aix: Remove file.
8544 * config/ia64/unwind-aix.c: Remove file.
8545
8546 2003-01-28 Andreas Schwab <schwab@suse.de>
8547
8548 * config/m68k/m68k.md (tablejump+2): Don't sign extend an address
8549 register.
8550 * config/m68k/apollo68.h (ASM_RETURN_CASE_JUMP): Likewise.
8551 * config/m68k/coff.h (ASM_RETURN_CASE_JUMP): Likewise.
8552 * config/m68k/linux.h (ASM_RETURN_CASE_JUMP): Likewise.
8553 * config/m68k/m68kelf.h (ASM_RETURN_CASE_JUMP): Likewise.
8554 * config/m68k/mot3300.h (ASM_RETURN_CASE_JUMP): Likewise.
8555 * config/m68k/netbsd-elf.h (ASM_RETURN_CASE_JUMP): Likewise.
8556 * config/m68k/pbb.h (ASM_RETURN_CASE_JUMP): Likewise.
8557
8558 2003-01-28 Richard Sandiford <rsandifo@redhat.com>
8559
8560 * combine.c (nonzero_bits): Fix check for negative divide operands.
8561
8562 2003-01-28 Richard Henderson <rth@redhat.com>
8563
8564 * config/ia64/ia64.c (ia64_rwreloc_section_type_flags): New.
8565 * config/ia64/hpux.h (TARGET_SECTION_TYPE_FLAGS): New.
8566
8567 2003-01-28 Richard Henderson <rth@redhat.com>
8568
8569 * cse.c (find_best_addr): Kill !ADDRESS_COST code.
8570
8571 * config/cris/cris.c (cris_address_cost): Make static.
8572 (TARGET_RTX_COSTS, TARGET_ADDRESS_COST): New.
8573 * config/cris/cris.h (ADDRESS_COST): Remove.
8574 * config/cris/cris-protos.h: Update.
8575
8576 2003-01-23 Mike Stump <mrs@apple.com>
8577
8578 * regclass.c (init_reg_autoinc): New function.
8579 (regclass): Move initialization of forbidden_inc_dec_class from
8580 here...
8581 (init_regs): to here. Avoids reinitialization for each function,
8582 saving compilation time.
8583
8584 2003-01-28 Jason Merrill <jason@redhat.com>
8585
8586 * cpplib.h (struct cpp_options): Add warn_deprecated field.
8587 * cppinit.c (cpp_create_reader): Turn it on by default.
8588 * c-opts.c (c_common_decode_option): Set it.
8589 * cpplib.c (do_pragma_once): Only complain about #pragma once
8590 if warn_deprecated is set.
8591
8592 2003-01-28 Dale Johannesen <dalej@apple.com>
8593
8594 * emit-rtl.c (const_double_htab_hash): Use mode in the hash.
8595 * loop.c (scan_loop): Move movables on -Os rich-register targets.
8596 * config/rs6000/rs6000.md (sibcall*): Use match_operand for LR.
8597
8598 2003-01-28 Richard Henderson <rth@redhat.com>
8599
8600 * target.h (targetm.address_cost): New.
8601 * target-def.h (TARGET_ADDRESS_COST): New.
8602 (TARGET_RTX_COSTS): Uncomment. Oops.
8603 * cse.c (address_cost): Use new target hook.
8604 (default_address_cost): New.
8605 * output.h (default_address_cost): Declare.
8606 * hooks.c (hook_int_rtx_0): New.
8607 * hooks.h (hook_int_rtx_0): Declare.
8608 * loop.c (combine_givs_p): Remove if 0 code.
8609 * system.h (ADDRESS_COST): Poison.
8610
8611 * config/alpha/alpha.c, config/alpha/alpha.h, config/d30v/d30v.c,
8612 config/d30v/d30v.h, config/ia64/ia64.c, config/ia64/ia64.h,
8613 config/m32r/m32r.c, config/m32r/m32r.h, config/mcore/mcore.c,
8614 config/mcore/mcore.h, config/mmix/mmix.c, config/mmix/mmix.h,
8615 config/rs6000/rs6000.c, config/rs6000/rs6000.h, config/sparc/sparc.c,
8616 config/sparc/sparc.h, config/v850/v850.c, config/v850/v850.h,
8617 config/xtensa/xtensa.c, config/xtensa/xtensa.h
8618 (TARGET_ADDRESS_COST): Define as hook_int_rtx_0.
8619 (ADDRESS_COST): Remove.
8620
8621 * config/arc/arc-protos.h, config/arc/arc.c, config/arc/arc.h,
8622 config/avr/avr-protos.h, config/avr/avr.c, config/avr/avr.h,
8623 config/c4x/c4x-protos.h, config/c4x/c4x.c, config/c4x/c4x.h,
8624 config/dsp16xx/dsp16xx-protos.h, config/dsp16xx/dsp16xx.c,
8625 config/dsp16xx/dsp16xx.h, config/i386/i386-protos.h,
8626 config/i386/i386.c, config/i386/i386.h, config/i960/i960-protos.h,
8627 config/i960/i960.c, config/i960/i960.h, config/ip2k/ip2k-protos.h,
8628 config/ip2k/ip2k.c, config/ip2k/ip2k.h, config/mips/mips-protos.h,
8629 config/mips/mips.c, config/mips/mips.h,
8630 config/m68hc11/m68hc11-protos.h, config/m68hc11/m68hc11.c,
8631 config/m68hc11/m68hc11.h, config/ns32k/ns32k-protos.h,
8632 config/ns32k/ns32k.c, config/ns32k/ns32k.h, config/pa/pa-protos.h,
8633 config/pa/pa.c, config/pa/pa.h, config/s390/s390-protos.h,
8634 config/s390/s390.c, config/s390/s390.h, config/vax/vax-protos.h,
8635 config/vax/vax.c, config/vax/vax.h
8636 (foo_address_cost): Make static.
8637 (TARGET_ADDRESS_COST): New.
8638 (ADDRESS_COST): Remove.
8639
8640 * config/arm/arm.h, config/arm/arm.c, config/m88k/m88k.h,
8641 config/m88k/m88k.c, config/romp/romp.h, config/romp/romp.c,
8642 config/sh/sh.c, config/sh/sh.h, config/stormy16/stormy16.c,
8643 config/stormy16/stormy16.h
8644 (ADDRESS_COST): Move code ...
8645 (foo_address_cost): ... here.
8646 (TARGET_ADDRESS_COST): New.
8647
8648 * config/m32r/m32r.c (m32r_address_cost): Remove.
8649 * config/m32r/m32r-protos.h: Update.
8650
8651 * config/mmix/mmix.c (mmix_address_cost): Remove.
8652 * config/mmix/mmix-protos.h: Update.
8653
8654 * config/mn10300/mn10300.c (mn10300_address_cost_1): Rename from
8655 mn10300_address_cost; move unsig allocation ...
8656 (mn10300_address_cost): ... here.
8657 (TARGET_ADDRESS_COST): New.
8658 * config/mn10300/mn10300-protos.h: Update.
8659 * config/mn10300/mn10300.h (ADDRESS_COST): Remove.
8660
8661 * doc/tm.texi: Update.
8662
8663 2003-01-28 Vladimir Makarov <vmakarov@redhat.com>
8664
8665 * haifa-sched.c (schedule_insn): Return necessary cycle advance
8666 after issuing the insn.
8667 (rank_for_schedule): Make a insn with /S the highest priority
8668 insn.
8669 (move_insn): Ignore schedule groups. Clear SCHED_GROUP_P.
8670 (choose_ready): Check SCHED_GROUP_P.
8671 (schedule_block): Advance cycle after issuing insn if it is
8672 necessary. Don't reorder insns if there is an insn with /S.
8673 (set_priorities): Ignore schedule groups.
8674
8675 * sched-deps.c (remove_dependence, group_leader): Remove the
8676 functions.
8677 (add_dependence): Ignore schedule groups.
8678 (set_sched_group_p): Don't make copy of dependencies from previous
8679 insn of the schedule group. Add anti-dependency to the previous
8680 insn of the schedule group.
8681 (compute_forward_dependences): Ignore schedule groups.
8682
8683 * sched-ebb.c (init_ready_list): Ignore schedule groups.
8684
8685 * sched-rgn.c (init_ready_list): Ditto.
8686 (can_schedule_ready_p): Ditto.
8687
8688 2003-01-28 Vladimir Makarov <vmakarov@redhat.com>
8689
8690 * config/i386/i386.md (*movsi_1): Use movdqa to move one xmm
8691 register to another one.
8692
8693 2003-01-28 Richard Henderson <rth@redhat.com>
8694
8695 * calls.c (default_must_pass_in_stack): Fix typo in !type case.
8696
8697 2003-01-28 Roger Sayle <roger@eyesopen.com>
8698
8699 * cse.c (cse_insn): Avoid redundant REG_EQUAL notes.
8700
8701 2003-01-28 Richard Sandiford <rsandifo@redhat.com>
8702
8703 * config/sh/sh.h (CLASS_MAX_NREGS): If TARGET_SHMEDIA, and the given
8704 class contains a floating-point register, return the size of the
8705 mode in half words.
8706
8707 2003-01-28 Jan Hubicka <jh@suse.cz>
8708
8709 * i386.c (ix86_carry_flag_operator): New predicate.
8710 (fcmov_operator): Fix whitespace.
8711 (ix86_expand_carry_flag_compare): Deal with floating point.
8712 (ix86_expand_int_movcc): Deal with fp; update insn expansion
8713 (ix86_expand_int_addcc): Likewise.
8714 (ix86_expand_strlensi_unroll_1): likewsie.
8715 * i386.h (PREDICATE_CODES): Add ix86_carry_flag_operator.
8716 * i386.md (add?i_carry_rex64): Use new predicate.
8717 (sub?i3_carry_rex64): Likewise.
8718 (x86_mov?icc_0_m1*): Likewise.
8719
8720 2003-01-28 Andreas Schwab <schwab@suse.de>
8721
8722 * cfgloopmanip.c (create_preheader): Initialize src to avoid
8723 warning.
8724
8725 * expmed.c (emit_store_flag): Fix cast to avoid sign
8726 comparison warning.
8727
8728 * combine.c (force_to_mode): Add cast to fix warning when
8729 STORE_FLAG_VALUE is negative.
8730
8731 2003-01-27 Richard Henderson <rth@redhat.com>
8732
8733 * Makefile.in (cse.o): Depend on TARGET_H.
8734 * cse.c (rtx_cost): Use targetm.rtx_costs.
8735 * system.h (CONST_COSTS RTX_COSTS DEFAULT_RTX_COSTS): Poison.
8736 * doc/tm.texi: Update.
8737
8738 * target.h (targetm.rtx_costs): New.
8739 * target-def.h (TARGET_RTX_COSTS): New.
8740 * hooks.c (hook_bool_rtx_int_int_intp_false): New.
8741 * hooks.h: Update.
8742
8743 * config/alpha/alpha.c (alpha_rtx_cost_data): New.
8744 (alpha_rtx_costs, TARGET_RTX_COSTS): New.
8745 * config/alpha/alpha.h (PROCESSOR_MAX): New.
8746 (CONST_COSTS, RTX_COSTS): Remove.
8747
8748 * config/arc/arc.c, config/arc/arc.h, config/c4x/c4x.c,
8749 config/c4x/c4x.h, config/cris/cris.c, config/cris/cris.h,
8750 config/d30v/d30v.c, config/d30v/d30v.h, config/dsp16xx/dsp16xx.c,
8751 config/dsp16xx/dsp16xx.h, config/frv/frv.c, config/frv/frv.h,
8752 config/h8300/h8300.c, config/h8300/h8300.h, config/i370/i370.c,
8753 config/i370/i370.h, config/i386/i386.c, config/i386/i386.h,
8754 config/i960/i960.c, config/i960/i960.h, config/ia64/ia64.c,
8755 config/ia64/ia64.h, config/m32r/m32r.c, config/m32r/m32r.h,
8756 config/m68k/m68k.c, config/m68k/m68k.h, config/m88k/m88k.c,
8757 config/m88k/m88k.h, config/mcore/mcore.c, config/mcore/mcore.h,
8758 config/mips/mips.c, config/mips/mips.h, config/mn10200/mn10200.c,
8759 config/mn10200/mn10200.h, config/mn10300/mn10300.c,
8760 config/mn10300/mn10300.h, config/ns32k/ns32k.c, config/ns32k/ns32k.h,
8761 config/pa/pa.c, config/pa/pa.h, config/pdp11/pdp11.c,
8762 config/pdp11/pdp11.h, config/romp/romp.c, config/romp/romp.h,
8763 config/rs6000/rs6000.c, config/rs6000/rs6000.h, config/s390/s390.c,
8764 config/s390/s390.h, config/sh/sh.c, config/sh/sh.h,
8765 config/stormy16/stormy16.c, config/stormy16/stormy16.h,
8766 config/v850/v850.c, config/v850/v850.h,
8767 config/xtensa/xtensa.c, config/xtensa/xtensa.h
8768 (CONST_COSTS, RTX_COSTS): Move code ...
8769 (foo_rtx_costs, TARGET_RTX_COSTS): ... here.
8770
8771 * config/arm/arm.c (arm_rtx_costs_1): Rename from arm_rtx_costs.
8772 (arm_rtx_costs, TARGET_RTX_COSTS): New.
8773 * config/arm/arm-protos.h: Update.
8774 * config/arm/arm.h (DEFAULT_RTX_COSTS): Remove.
8775
8776 * config/avr/avr.h (CONST_COSTS): Move code ...
8777 * config/avr/avr.c (avr_rtx_costs): ... here.
8778 (default_rtx_costs): Make static.
8779 * config/avr/avr-protos.h: Update.
8780
8781 * config/h8300/h8300.c (const_costs): Make static.
8782 (h8300_and_costs, h8300_shift_costs): Likewise.
8783 * config/h8300/h8300-protos.h: Update.
8784
8785 * config/ip2k/ip2k.h (DEFAULT_RTX_COSTS): Remove.
8786 (CONST_COSTS): Move code ...
8787 * config/ip2k/ip2k.c (ip2k_rtx_costs): ... here. Rename from
8788 default_rtx_costs; update for signature change.
8789 * config/ip2k/ip2k-protos.h: Update.
8790
8791 * config/m68hc11/m68hc11.h (RTX_COSTS): Remove.
8792 (CONST_COSTS): Move code ...
8793 * config/m68hc11/m68hc11.c (m68hc11_rtx_costs): ... here.
8794 (TARGET_RTX_COSTS): New.
8795 (m68hc11_rtx_costs_1): Rename from m68hc11_rtx_costs; make static.
8796 * config/m68hc11/m68hc11-protos.h: Update.
8797
8798 * config/m68k/m68k.c (const_int_cost): Make static.
8799 * config/m68k/m68k-protos.h: Update.
8800
8801 * config/mcore/mcore.c (mcore_const_costs): Make static.
8802 (mcore_and_cost, mcore_ior_cost): Likewise.
8803 * config/mcore/mcore-protos.h: Update.
8804
8805 * config/mmix/mmix.c (mmix_rtx_costs, TARGET_RTX_COSTS): New.
8806 (mmix_rtx_cost_recalculated): Remove.
8807 * config/mmix/mmix.h (DEFAULT_RTX_COSTS): Remove.
8808 * config/mmix/mmix-protos.h: Update.
8809
8810 * config/sh/sh.c (shiftcosts): Make static.
8811 (addsubcosts, andcosts, multcosts): Likewise.
8812 * config/sh/sh-protos.h: Update.
8813
8814 * config/sparc/sparc.c (TARGET_RTX_COSTS): New.
8815 (sparc_rtx_costs): Make static; update for change in signature.
8816 * config/sparc/sparc.h (RTX_COSTS_CASES, RTX_COSTS): Remove.
8817 * config/sparc/sparc-protos.h: Update.
8818
8819 * config/v850/v850.c (const_costs): Make static.
8820 * config/v850/v850-protos.h: Update.
8821
8822 * config/vax/vax.h (RTX_COSTS): Remove.
8823 (CONST_COSTS): Move code ...
8824 * config/vax/vax.c (vax_rtx_costs_1): ... here; rename
8825 from vax_rtx_cost.
8826 (vax_rtx_costs, TARGET_RTX_COSTS): New.
8827
8828 2003-01-27 Richard Henderson <rth@redhat.com>
8829
8830 * config/vax/vax.h (ASM_OUTPUT_MI_THUNK): Remove. Really.
8831 * config/vax/vax-protos.h: Update. Really.
8832
8833 2003-01-28 Alexandre Oliva <aoliva@redhat.com>
8834
8835 * config/mips/mips.h (UNITS_PER_HWFPVALUE): Renamed from...
8836 (UNITS_PER_FPVALUE): Defined as the width of a long double, or
8837 zero if no hardware floating point.
8838 (LONG_DUBLE_TYPE_SIZE): Set to 128 on N32 and N64.
8839 (MAX_FIXED_MODE_SIZE): Define to LONG_DOUBLE_TYPE_SIZE.
8840 (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Define.
8841 (BIGGEST_ALIGNMENT): Same as LONG_DOUBLE_TYPE_SIZE.
8842 (FUNCTION_VALUE_REGNO_P): Set for FP_RETURN+2 on N32 and N64.
8843 * config/mips/mips.c (mips_arg_info): Pass TFmode values in
8844 even FP registers on N32 and N64.
8845 (mips_setup_incoming_varargs): Use UNITS_PER_HWFPVALUE.
8846 (mips_va_start): Adjust alignment of ARG_POINTER_REGNUM.
8847 (mips_va_arg): Use UNITS_PER_HWFPVALUE. Impose additional
8848 even-register-like alignment to 128-bit arguments.
8849 (save_restore_insns): Use UNITS_PER_HWFPVALUE.
8850 (mips_function_value): Likewise. Return TFmode in $f0 and $f2
8851 on N32 or N64.
8852 * config/mips/_tilib.c (__negti2, __ashlti3, __lshrti3): New.
8853 * config/mips/t-iris6 (LIB2FUNCS_EXTRA): Add _tilib.c.
8854 (TPBIT): Set to tp-bit.c.
8855 (tp-bit.c): Create out of fp-bit.c.
8856
8857 2003-01-28 Gabriel Dos Reis <gdr@integrable-solutions.net>
8858
8859 * c-parse.in: Remove '%expect 32' directive in objc mode.
8860
8861 2003-01-27 Nathan Sidwell <nathan@codesourcery.com>
8862
8863 * Makefile.in (LIB2FUNCS_ST): Remove _gcov.
8864 (LIBGCOV): New variable.
8865 (libgcc.mk): Add LIBGCOV.
8866 (LIBGCC_DEPS): Add libgcov.c.
8867 (libgcov.a): New target.
8868 (clean): Remove libgcov.a.
8869 (install-libgcc): Do libgcov too.
8870 (stage1-start, stage2-start, stage3-start, stage4-start): Deal
8871 with libgcov.a.
8872 * libgcc2.c (L_gcov): Move into ...
8873 * libgcov.c: ... here. New file.
8874 * mklibgcc.in: Add libgcov rules.
8875 * gcc.c (LINK_COMMAND_SPEC): Add -lgcov when profiling.
8876
8877 * doc/invoke.texi (profile-arcs, test-coverage): Update and
8878 clarify.
8879
8880 * profile.c (index_counts_file): Remove duplicate check for open file.
8881
8882 2003-01-27 Jerry Quinn <jlquinn@optonline.net>
8883
8884 * gcc/doc/invoke.texi (Optimization Options): Group together
8885 optional and experimental flags. Move trapv and bounds-check
8886 out of this section. Group floating point flags together.
8887 (Code Gen Options): Move trapv and bounds-check to here.
8888
8889 2003-01-27 Josef Zlomek <zlomekj@suse.cz>
8890
8891 * gcse.c (constprop_register): Check NEXT_INSN (insn) != NULL.
8892
8893 2003-01-27 Richard Earnshaw <rearnsha@arm.com>
8894
8895 PR optimization/9090
8896 * function.c (purge_addressof_1): After pushing an addressed register
8897 onto the stack, simplify the result.
8898
8899 2003-01-27 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
8900
8901 * doc/extend.texi: Fix typo.
8902
8903 2003-01-27 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
8904
8905 * doc/cppopts.texi: Fix typo.
8906 * doc/objc.texi: Likewise.
8907 * doc/passes.texi: Likewise.
8908
8909 2003-01-27 Alexandre Oliva <aoliva@redhat.com>
8910
8911 * real.c (ibm_extended_format): Add 53 to minimum exponent.
8912 (encode_ibm_extended): Adjust.
8913
8914 2003-01-26 Gabriel Dos Reis <gdr@soliton.integrable-solutions.net>
8915
8916 * timevar.def (TV_OVERLOAD, TV_TEMPLATE_INSTANTIATION): New
8917 timevar_id enumerations.
8918
8919 2003-01-26 Kazu Hirata <kazu@cs.umass.edu>
8920
8921 * combine.c: Fix formatting.
8922
8923 2003-01-26 Kazu Hirata <kazu@cs.umass.edu>
8924
8925 * doc/gccint.texi: Update the copyright.
8926
8927 2003-01-26 Kazu Hirata <kazu@cs.umass.edu>
8928
8929 * doc/cpp.texi: Fix typos.
8930 * doc/extend.texi: Likewise.
8931 * doc/gty.texi: Likewise.
8932 * doc/install.texi: Likewise.
8933 * doc/passes.texi: Likewise.
8934 * doc/rtl.texi: Likewise.
8935 * doc/tm.texi: Likewise.
8936
8937 2003-01-26 Kazu Hirata <kazu@cs.umass.edu>
8938
8939 * config/ia64/fde-glibc.c: Fix comment typos.
8940 * config/ia64/hpux.h: Likewise.
8941 * config/ia64/ia64.c: Likewise.
8942 * config/ia64/ia64.h: Likewise.
8943 * config/ia64/unwind-ia64.c: Likewise.
8944
8945 2003-01-26 Kazu Hirata <kazu@cs.umass.edu>
8946
8947 * config/i386/i386-modes.def: Fix comment typos.
8948 * config/i386/i386.c: Likewise.
8949 * config/i386/i386.md: Likewise.
8950
8951 2003-01-26 Steven Bosscher <s.bosscher@student.tudelft.nl>
8952
8953 * config/avr/avr.h, config/cris/aout.h, config/elfos.h,
8954 config/i386/freebsd-aout.h, config/mips/iris6.h: Undefine
8955 ASM_FINISH_DECLARE_OBJECT before defining it.
8956 * toplev.c (rest_of_decl_compilation): Don't define
8957 ASM_FINISH_DECLARE_OBJECT. Only use it if it is defined.
8958 (rest_of_type_compilation): Don't ATTRIBUTE_UNUSED function
8959 parameters for DWARF2 targets because they _are_ used.
8960
8961 2003-01-26 Alexandre Oliva <aoliva@redhat.com>
8962
8963 * fp-bit.h: Define macros for TFmode floating-point constants
8964 in IBM-extended TFmode types.
8965 (TMODES): Define if __LDBL_MANT_DIG__ has the newly-supported
8966 widths.
8967 * config/fp-bit.c (pack_d, unpack_d): Support IBM-extended
8968 TFmode type.
8969
8970 * config/fp-bit.h: Define macros for TFmode floating-point
8971 constants in IEEE quad TFmode type. Declare functions according
8972 to L_ macros.
8973 (TMODES): Define if __LDBL_MANT_DIG__ is 113.
8974 (TFtype, TItype, UTItype): Define if TMODES is defined.
8975 (MAX_UDI_INT, MAX_DI_INT, BITS_PER_DI): Likewise.
8976 (F_T_BITOFF, D_T_BITOFF): Define.
8977 (IMPLICIT_1, IMPLICIT_2): Cast constants to types that are
8978 guaranteed to be wide enough.
8979 * config/fp-bit.c: Check for L_ macros for tf functions.
8980 (__thenan_tf): New.
8981 (nan): Adjust.
8982 (pack_d, unpack_d): Support IEEE 854 quad type.
8983 (_fpmul_parts): Support TFmode. Compute exponent adjustment
8984 from FRAC_NBITS, FRAC_BITS and NGARDS.
8985 (usi_to_float): Cast constants to be shifted to fractype
8986 instead of assuming long long is wide enough.
8987 (sf_to_tf, df_to_tf, __make_tp, tf_to_df, tf_to_sf): New.
8988
8989 2003-01-26 Andreas Jaeger <aj@suse.de>
8990
8991 * df.c: Remove prototype of unused function df_regno_rtl_debug.
8992
8993 2003-01-26 Alexandre Oliva <aoliva@redhat.com>
8994
8995 * Makefile.in (FPBIT_FUNCS): Added _sf_to_tf.
8996 (DBBIT_FUNCS): Added _df_to_tf.
8997 (TPBIT_FUNCS): New.
8998 (libgcc.mk): Pass TPBIT and TPBIT_FUNCS down.
8999 (LIBGCC_DEPS): Added TPBIT.
9000 * mklibgcc.in: Support TPBIT and TPBIT_FUNCS.
9001
9002 * optabs.c (expand_binop) <add, sub>: Return xtarget if we haven't
9003 been able to move the result to target.
9004
9005 * expr.c (emit_group_store): Initialize dst with CONST0_RTX
9006 for the appropriate mode.
9007
9008 * calls.c (emit_library_call_value_1): Handle return values
9009 in a PARALLEL.
9010
9011 * rtl.c (get_mode_alignment): Moved to...
9012 * stor-layout.c: ... here.
9013
9014 * print-rtl.c (print_rtx): Don't print MEM details in
9015 GENERATOR_FILEs.
9016
9017 2003-01-26 Michael Hayes <mph@paradise.net.nz>
9018
9019 * df.h: Update comments, tidy formatting.
9020 (DF_FORWARD, DF_REVERSE, DF_UNION, DF_INTERSECTION): Rename from FORWARD,
9021 REVERSE, UNION, INTERSECTION. All uses updated.
9022 (OLD_DF_INTERFACE): Remove.
9023 (struct insn_info): Remove commented out insn field.
9024 * df.c: Update comments, tidy formatting.
9025 (df_def_table_realloc): Remove.
9026
9027
9028 2003-01-26 Alan Modra <amodra@bigpond.net.au>
9029
9030 * calls.c (save_fixed_argument_area): Tidy.
9031 (restore_fixed_argument_area): Tidy. Set alignment of stack_area.
9032 (expand_call): Comment typo fixes. Don't init low_to_save. Start
9033 call chain loop at 1 if !try_tail_call. Formatting.
9034 (emit_library_call_value_1): Don't init low_to_save or high_to_save.
9035 Use save_fixed_argument_area and restore_fixed_argument_area.
9036
9037 2003-01-26 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
9038
9039 * df.c (df_uses_record): Handle CC0.
9040
9041 2003-01-25 Ulrich Weigand <uweigand@de.ibm.com>
9042
9043 * reload.c (maybe_memory_address_p): New function.
9044 (find_reloads_address): Use it instead of memory_address_p.
9045
9046 2003-01-25 Kaz Kojima <kkojima@gcc.gnu.org>
9047
9048 * final.c (shorten_branches): Align the address of code label
9049 when computing initial lengths and addresses.
9050
9051 2003-01-25 Kazu Hirata <kazu@cs.umass.edu>
9052
9053 * config/m68hc11/m68hc11.md: Fix a comment typo.
9054
9055 2003-01-25 Andreas Jaeger <aj@suse.de>
9056
9057 * config/i386/i386.c (x86_output_mi_thunk): Correct test for
9058 TARGET_MACHO.
9059
9060 2003-01-25 Roger Sayle <roger@eyesopen.com>
9061
9062 * gcse.c (bypass_last_basic_block): New global variable.
9063 (bypass_block): Use redirect_edge_and_branch_force to redirect
9064 fall-through edges. Use bypass_last_basic_block to determine
9065 which blocks have valid PRE information.
9066 (bypass_conditional_jumps): Initialize bypass_last_basic_block.
9067
9068 2003-01-25 Jan Hubicka <jh@suse.cz>
9069
9070 * gcse.c (local_cprop_pass): Update reg_sets table when needed.
9071
9072 2003-01-25 Jan Hubicka <jh@suse.cz>
9073 Eric Botcazou <ebotcazou@libertysurf.fr>
9074 PR opt/8492
9075 * gcse.c (one_cprop_pass): Delete unreachable blocks.
9076
9077 2003-01-25 Richard Henderson <rth@redhat.com>
9078
9079 * config/ia64/ia64.c (ia64_rwreloc_select_rtx_section): Rename
9080 from ia64_aix_select_rtx_section.
9081 (ia64_rwreloc_select_section): Simlarly; use default*_1 function
9082 instead of saving and restoring flag_pic.
9083 (ia64_rwreloc_unique_section): Similarly.
9084 * config/ia64/aix.h (TARGET_ASM_SELECT_SECTION,
9085 TARGET_ASM_UNIQUE_SECTION, TARGET_ASM_SELECT_RTX_SECTION): Update.
9086 * config/ia64/hpux.h (TARGET_ASM_SELECT_SECTION,
9087 TARGET_ASM_UNIQUE_SECTION, TARGET_ASM_SELECT_RTX_SECTION): New.
9088
9089 2003-01-25 Kazu Hirata <kazu@cs.umass.edu>
9090
9091 * config/h8300/h8300.c (h8300_shift_needs_scratch_p): Update a
9092 comment.
9093
9094 2003-01-25 Richard Henderson <rth@redhat.com>
9095
9096 * config/m68k/m68k-none.h (ASM_SPEC): Adjust inter-option spacing.
9097
9098 2003-01-25 Kelley Cook <kelleycook@comcast.net>
9099
9100 * ggc-simple.c (debug_ggc_tree): Add PTR cast.
9101
9102 2003-01-25 Segher Boessenkool <segher@koffie.nl>
9103
9104 * bitmap.h (BITMAP_WORD): New typedef: fundamental storage
9105 type for bitmaps. Use unsigned long.
9106 (nBITMAP_WORD_BITS): New macro.
9107 (BITMAP_WORD_BITS): New macro.
9108 (rest of file): Use it.
9109 * bitmap.c: Use it.
9110
9111 2003-01-25 Richard Henderson <rth@redhat.com>
9112
9113 2002-02-19 Robert Lipe <robertlipe@usa.net>
9114 * config/i386/t-sco5gas: (CRTSTUFF_T_CFLAGS_S): Delete -mcoff.
9115
9116 2003-01-25 Roger Sayle <roger@eyesopen.com>
9117
9118 * builtins.c (purge_builtin_constant_p): Scan insn stream
9119 sequentially rather than by basic block.
9120 * function.c (purge_addressof): Simplify test with INSN_P.
9121
9122 2003-01-25 Kazu Hirata <kazu@cs.umass.edu>
9123
9124 * combine.c (simplify_comparison, case AND): Remove a redundant test.
9125
9126 2003-01-25 Roger Sayle <roger@eyesopen.com>
9127
9128 * function.h (struct function): New field calls_constant_p.
9129 (current_function_calls_constant_p): New macro for above.
9130 * function.c (prepare_function_start): Initialize calls_eh_return
9131 and calls_constant_p.
9132 * builtins.c (expand_builtin_constant_p): Set calls_constant_p.
9133 * toplev.c (rest_of_compilation): Only call purge_builtin_constant_p
9134 when the current_function_calls_constant_p.
9135 * integrate.c (expand_inline_function): Set calls_constant_p if
9136 the function being inlined has calls_constant_p set.
9137
9138 2003-01-25 Roger Sayle <roger@eyesopen.com>
9139
9140 * cse.c (fold_rtx): Instantiate CONSTANT_P_RTX to 0 when not
9141 optimizing, even if flag_gcse is true.
9142 * toplev.c (rest_of_compilation): purge_builtin_constant_p
9143 only needs to be called when "optimize > 0 && flag_gcse".
9144
9145 2003-01-25 Roger Sayle <roger@eyesopen.com>
9146
9147 * stmt.c (emit_case_bit_tests): New routine to implement suitable
9148 switch statements using the equivalent of "if ((1<<x) & cst) ... ".
9149 (case_bit_test_cmp): New comparison function for "qsort" to order
9150 case_bit_tests by decreasing number of destination nodes.
9151 (lshift_cheap_p): New function to determine if "1 << x" is cheap.
9152 (expand_end_case_type): Use emit_case_bit_tests to implement
9153 suitable switch statments.
9154 (CASE_USE_BIT_TESTS): New target macro to disable the above.
9155 * Makefile.in (stmt.o): Add dependency on optab.h.
9156 * doc/tm.texi (CASE_USE_BIT_TESTS): Document new target macro.
9157
9158 2003-01-23 Andreas Schwab <schwab@suse.de>
9159
9160 * config/ia64/crtend.asm [HAVE_INITFINI_ARRAY]: Make
9161 __do_global_ctors_aux hidden global and don't put it in
9162 .init_array.
9163 * config/ia64/crtbegin.asm [HAVE_INITFINI_ARRAY]: Put it here
9164 instead so that it comes first.
9165
9166 2003-01-25 Jan Hubicka <jh@suse.cz>
9167
9168 * df.c (read_modify_subreg_p): When osize == UNITS_PER_WORD,
9169 subreg is read/modify.
9170
9171 2003-01-25 Jan Hubicka <jh@suse.cz>
9172
9173 * i386.c (ix86_expand_movstr, ix86_expand_clrstr): Consistently
9174 do libcall for large blocks.
9175 * i386.md (comi patterns): Set type to ssecomi.
9176 (sse2_unpck?pd): Fix mode of vec_select.
9177
9178 * cse.c: Include except.h
9179 (cse_set_around_loop): Do not create new basic blocks.
9180 * Makefile.in (cse.o): Add dependnecy on except.h
9181
9182 2003-01-25 Jan Hubicka <jh@suse.cz>
9183
9184 * builtins.c (fold_trunc_transparent_mathfn): New function.
9185 (fold_builtin): Use it.
9186 * convert.c (convert_to_real): Re-enable code to convert
9187 math functions; add support for floor familly functions.
9188
9189 2003-01-25 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
9190
9191 * Makefile.in (cfgloop.o, cfgloopanal.o, cfgloopmanip.o): Add
9192 dependencies on coretypes.h and $(TM_H).
9193
9194 2003-01-25 Jan Hubicka <jh@suse.cz>
9195
9196 * builtins.c (fold_trunc_transparent_mathfn): Undo accidental commit.
9197
9198 2003-01-24 Stuart Hastings <stuart@apple.com>
9199
9200 * config/i386/i386.c (x86_output_mi_thunk): Add Darwin/x86 support.
9201
9202 2003-01-25 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
9203
9204 * config/c4x/c4x.md (UNSPEC_BU): New constants.
9205 (UNSPEC_RPTS, UNSPEC_LSH, UNSPEC_CMPHI, UNSPEC_RCPF): Likewise.
9206 (UNSPEC_RND, UNSPEC_RPTB_FILL, UNSPEC_LOADHF_INT): Likewise.
9207 (UNSPEC_STOREHF_INT, UNSPEC_RSQRF, UNSPEC_LOADQF_INT): Likewise.
9208 (UNSPEC_STOREQF_INT, UNSPEC_LDIV, UNSPEC_PUSH_ST): Likewise.
9209 (UNSPEC_POP_ST, UNSPEC_PUSH_DP, UNSPEC_POP_DP): Likewise.
9210 (UNSPEC_POPQI, UNSPEC_POPQF, UNSPEC_ANDN_ST): Likewise.
9211 (UNSPEC_RPTB_INIT, UNSPEC_TOIEEE, UNSPEC_FRIEEE): Likewise.
9212
9213 2003-01-24 Jan Hubicka <jh@suse.cz>
9214
9215 * emit-rtl.c (reg_attrs_htab): New static variable.
9216 (reg_attrs_htab_hash, reg_attrs_htab_eq, get_reg_attrs): New static
9217 functions.
9218 (reg_rtx): Do not maintain regno_decl.
9219 (gen_rtx_REG_offset, set_reg_attrs_from_mem, set_delc_rtx,
9220 set_mem_attrs_from_reg): New global function.
9221 (init_emit): Do not initialize regno_decl.
9222 (init_emit_once): initialize reg_attrs_htab.
9223 * final.c (alter_subreg): Do not replace REG by SUBREG.
9224 (gen_mem_expr_from_op): Improve output.
9225 (output_asm_operands): Likewise.
9226 * function.c (assign_params): Do not set REGNO_DECL.
9227 * function.h (struct function): Kill regno_decl.
9228 (REGNO_DECL): Kill.
9229 * gengtype.c (adjust_field_rtx_def): Handle new field of reg.
9230 * print_rtl.c (print_rtx): Output REG information.
9231 * regclass.c (reg_scan_mark_refs): Update attrs.
9232 * reload1.c (alter_reg): Likewise.
9233 * simplify_rtx.c (simplify_subreg): Likewise.
9234 * stmt.c (expand_decl): Likewise.
9235 * rtl.def (REG): Add new field.
9236 * rtl.h (struct reg_attrs): New.
9237 (rtunion_def): At rtreg.
9238 (X0MEMATTR): Add checking.
9239 (X0REGATTR, REG_ATTRS, REG_EXPR, REG_OFFSET): New macro.
9240 (set_reg_attrs_from_mem, set_mem_attrs_from_reg, gen_rtx_REG_offset):
9241 Declare.
9242 * tree.h (SET_DECL_RTL): Call set_decl_rtl.
9243
9244 2003-01-24 Bob Wilson <bob.wilson@acm.org>
9245
9246 * config/xtensa/xtensa.c: Remove unused include of machmode.h.
9247 (xtensa_emit_call, print_operand): Fix printf format strings
9248 to avoid compile warnings.
9249 (xtensa_function_prologue, xtensa_function_epilogue): Change type
9250 of "size" argument to HOST_WIDE_INT to fix compile warnings.
9251 * config/xtensa/xtensa-protos.h
9252 (xtensa_function_prologue, xtensa_function_epilogue): Ditto.
9253
9254 2003-01-24 Jan Hubicka <jh@suse.cz>
9255
9256 * builtins.c (DEF_BUILTIN): Accept 10 arguments.
9257 (implicit_built_in_decls): New global array.
9258 (mathfn_built_in): New global function.
9259 (fold_trunc_transparent_mathfn): New static function
9260 (expand_builtin_strstr, expand_bultin_strchr,
9261 expand_builtin_strpbrk, expand_builtin_strcpy,
9262 expand_builtin_strncpy, expand_bultin_strcmp,
9263 expand_bultin_strncat, expand_builtin_fputs): Use
9264 implicint_built_in_decls.
9265 (fold_builtin): Fold floor/trunc/round/ceil/nearbyint.
9266 * builtins.def: Fix comments.
9267 (DEF_GCC_BUILTIN, DEF_FALLBACK_BUILTIN, DEF_EXT_FALLBACK_BUILTIN,
9268 DEF_LIB_BUILTIN, DEF_LIB_ALWAYS_BUILTIN, DEF_EXT_LIB_BUILTIN,
9269 DEF_C99_BULTIN, DEF_FRONT_END_LIB_BUILTIN,
9270 DEF_EXT_FRONT_END_LIB_BUILTIN): Pass implicit as needed.
9271 (DEF_C99_C90RES_BULTIN): New.
9272 (*f, *l builtins): Update.
9273 * c-common.c (DEF_BUILTIN): Initialize implicit array.
9274 (c_expand_builtin_printf, c_expand_builtin_fprintf): Update.
9275 * convert.c (strip_float_extensions): New global function.
9276 * tree.h (DEF_BUILTIN): Accept 10 arguments.
9277 (implicit_built_in_decls, mathfn_built_in, strip_float_extension):
9278 Declare.
9279 * java/builtins.c (define_builtin): Handle implicit.
9280 (DEF_BUILTIN): Update.
9281 * tm.texi (TARGET_C99_FUNCTIONS): Document.
9282 * defaults.h (TARGET_C99_FUNCTIONS): Default to 0.
9283 * config/linux.h (TARGET_C99_FUNCTIONS): Default to 1
9284 when using glibc2.
9285
9286 2003-01-24 Bob Wilson <bob.wilson@acm.org>
9287
9288 * config.gcc (xtensa-*-elf*): Removed assignments to with_newlib,
9289 extra_parts, and fixincludes. Add xtensa/t-elf tmake_file.
9290 (xtensa-*-linux*): Add xtensa/t-linux tmake_file.
9291 * config/xtensa/crti.asm: New file.
9292 * config/xtensa/crtn.asm: New file.
9293 * config/xtensa/t-elf: New file.
9294 * config/xtensa/t-linux: New file.
9295 * config/xtensa/t-xtensa: Add rules for crti.o and crtn.o.
9296 Move various CFLAGS settings to new t-elf file.
9297
9298 2003-01-24 Richard Henderson <rth@redhat.com>
9299
9300 PR optimization/4382
9301 * tree-inline.c (find_builtin_longjmp_call_1): New.
9302 (find_builtin_longjmp_call): New.
9303 (inlinable_function_p): Use it.
9304
9305 2003-01-24 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
9306
9307 * config/i386/i386-protos.h (function_arg_pass_by_reference): Declare.
9308 * config/i386/i386.h (FUNCTION_ARG_PASS_BY_REFERENCE): Use it.
9309 * config/i386/i386.c (function_arg_pass_by_reference): New.
9310 (ix86_va_arg): Support arguments passed by reference.
9311
9312 2003-01-24 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
9313
9314 * cfgloopanal.c: New file.
9315 * cfgloopmanip.c: New file.
9316 * Makefile.in (cfgloopanal.o, cfgloopmanip.o): New.
9317 (toplev.o, loop.o, doloop.o, unroll.o, cfgloop.o, predict.o,
9318 cfglayout.o): Add dependency on cfgloop.h.
9319 (cfgloop.o): Add flags.h dependency.
9320 * basic-block.h (BB_IRREDUCIBLE_LOOP, BB_SUPERBLOCK): New flags.
9321 (VLS_EXPECT_PREHEADERS, VLS_EXPECT_SIMPLE_LATCHES): Removed.
9322 (struct loop, struct loops, flow_loops_find, flow_loops_update,
9323 flow_loops_free, flow_loops_dump, flow_loop_dump,
9324 flow_loop_scan, flow_loop_tree_node_add, flow_loop_tree_node_remove,
9325 LOOP_TREE,,LOOP_PRE_HEADER, LOOP_ENTRY_EDGES, LOOP_EXIT_EDGES,
9326 LOOP_ALL, flow_loop_outside_edge_p, flow_loop_nested_p,
9327 flow_bb_inside_loop_p, get_loop_body, loop_preheader_edge,
9328 loop_latch_edge, add_bb_to_loop, remove_bb_from_loops,
9329 find_common_loop, verify_loop_structure): Declarations moved to ...
9330 * cfgloop.h: New file.
9331 * bb-reorder.c (reorder_basic_blocks): Modified.
9332 * cfglayout.c: Include cfgloop.h.
9333 (cleanup_unconditional_jumps, cfg_layout_redirect_edge,
9334 cfg_layout_duplicate_bb, cfg_layout_initialize): Update loop structure.
9335 (break_superblocks): New static function.
9336 (cfg_layout_finalize): Use it.
9337 (cfg_layout_split_block): New function.
9338 * cfglayout.h (struct reorder_block_def): Add copy and duplicated
9339 fields.
9340 (cfg_layout_initialize, cfg_layout_redirect_edge): Declaration
9341 changed.
9342 (cfg_layout_split_block): Declare.
9343 * cfgloop.c: Include cfgloop.h and flags.h.
9344 (flow_loop_dump, flow_loops_free, flow_loop_exit_edges_find,
9345 get_loop_body): Avoid signed versus unsigned comparison warnings.
9346 (make_forwarder_block, flow_loops_find, loop_preheader_edge,
9347 loop_latch_edge): Modified.
9348 (verify_loop_structure): Modified to use flags stored in loop structure;
9349 check irreducible loops.
9350 (cancel_loop, cancel_loop_tree): New functions.
9351 (estimate_probability): Use loop analysis code for predictions.
9352 (estimate_loops_at_level): Avoid signed versus unsigned comparison
9353 warnings.
9354 * doloop.c: Include cfgloop.h.
9355 * loop.c: Include cfgloop.h.
9356 * predict.c: Include cfgloop.h.
9357 * toplev.c: Include cfgloop.h.
9358 * unroll.c: Include cfgloop.h.
9359 * tracer.c (tracer): Modified.
9360
9361 2003-01-24 Kazu Hirata <kazu@cs.umass.edu>
9362
9363 * config/h8300/h8300.c (get_shift_alg): Fix a typo.
9364
9365 2003-01-24 Ulrich Weigand <uweigand@de.ibm.com>
9366
9367 * configure.in (HAVE_AS_TLS): Add s390-*-* and s390x-*-* cases.
9368 * configure: Regenerate.
9369
9370 * config/s390/s390-protos.h (tls_symbolic_operand): Add prototype.
9371 (tls_symbolic_reference_mentioned_p): Add prototype.
9372 (s390_tls_get_offset): Add prototype.
9373 (emit_pic_move): Remove prototype, replace by ...
9374 (emit_symbolic_move): .. this new prototype.
9375
9376 * config/s390/s390.c (TARGET_HAVE_TLS): Conditionally define.
9377 (tls_model_chars): New global variable.
9378 (s390_encode_section_info): Encode TLS model.
9379 Use targetm.binds_local_p to check for local symbols.
9380 (s390_strip_name_encoding): New function.
9381 (TARGET_STRIP_NAME_ENCODING): Define.
9382
9383 (get_thread_pointer): New function.
9384 (legitimize_tls_address): New function.
9385 (legitimize_address): Call it.
9386 (emit_pic_move): Remove, replace by ...
9387 (emit_symbolic_move): ... this new function.
9388
9389 (larl_operand): Handle TLS operands.
9390 (legitimate_constant_p): Likewise.
9391 (s390_decompose_address): Likewise.
9392 (s390_cannot_force_const_mem): New function.
9393 (TARGET_CANNOT_FORCE_CONST_MEM): Define.
9394
9395 (s390_output_symbolic_const): Handle TLS unspecs.
9396 (print_operand): New code 'J'.
9397 (machine_function): Add struct member 'some_ld_name'.
9398 (get_some_local_dynamic_name, get_some_local_dynamic_name_1): New.
9399
9400 (enum s390_builtin): New type.
9401 (code_for_builtin_64, code_for_builtin_31): New global variables.
9402 (s390_init_builtins, s390_expand_builtin): New functions.
9403 (TARGET_INIT_BUILTINS, TARGET_EXPAND_BUILTIN): Define.
9404
9405 * config/s390/s390.h (TLS_SYMBOLIC_CONST): New macro.
9406 (ASM_OUTPUT_LABELREF): Define.
9407 (ASM_OUTPUT_SPECIAL_POOL_ENTRY): Handle TLS constants.
9408
9409 * config/s390/s390.md: Define TLS UNSPEC constants.
9410 ("movdi", "movsi"): Handle TLS operands.
9411 ("get_tp_64", "get_tp_31", "set_tp_64", "set_tp_31"): New insns.
9412 ("*tls_load_64", "*tls_load_31"): New insns.
9413 ("call_value_tls", "call_value_tls_exp"): New expanders.
9414 ("brasl_tls", "bras_tls", "basr_tls_64", "basr_tls_31",
9415 "bas_tls_64", "bas_tls_31"): New insns.
9416
9417 2003-01-24 Nathan Sidwell <nathan@codesourcery.com>
9418
9419 * config/rs6000/rs6000.c (rs6000_parse_abi_options): Make sure
9420 spe ABI is configured, if requested.
9421
9422 2003-01-24 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
9423
9424 * doc/passes.texi: Fix typo.
9425
9426 2003-01-24 Andreas Schwab <schwab@suse.de>
9427
9428 * stor-layout.c (excess_unit_span): Only define if used.
9429
9430 2003-01-24 Jerry Quinn <jlquinn@optonline.net>
9431
9432 * gcc/doc/invoke.texi (Optimization Options): List -O levels
9433 for each optimization flag.
9434
9435 2003-01-24 Kazu Hirata <kazu@cs.umass.edu>
9436
9437 * config/h8300/h8300.md (*andsi3_ashift_n_lower): New.
9438
9439 2003-01-24 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
9440
9441 * doc/bugreport.texi: Use @command instead of @code for commands.
9442 * doc/collect2.texi: Likewise.
9443 * doc/headerdirs.texi: Likewise.
9444 * doc/invoke.texi: Likewise.
9445 * doc/standards.texi: Likewise.
9446 * doc/tm.texi: Likewise.
9447 * doc/trouble.texi: Likewise.
9448
9449 2003-01-24 Nick Clifton <nickc@redhat.com>
9450
9451 * config/arm/arm.c (use_return_insn): Do not use a single return
9452 instruction for interrupt handelrs which have to create a stack
9453 frame.
9454 (arm_expand_prologue): Do not pre-bias the return address of
9455 interrupt handlers which create a stack frame.
9456
9457 2003-01-24 Nick Clifton <nickc@redhat.com>
9458
9459 * Add sh2e support:
9460
9461 2002-08-12 Alexandre Oliva <aoliva@redhat.com>
9462
9463 * config/sh/sh.c (output_branch) [TARGET_SH2E]: Handle
9464 med_cbranches. Fix logic in short_cbranches.
9465
9466 2002-04-03 Alexandre Oliva <aoliva@redhat.com>
9467
9468 * config/sh/sh.md (delay for cbranch): Don't annul delay
9469 slots on SH2e.
9470 * config/sh/sh.c (sh_insn_length_adjustment): Add 2 for
9471 cbranch with unfilled delay slot on SH2e.
9472 (output_branch): Fill with a nop the delay slot of a
9473 branch that required a delay slot but didn't get one.
9474
9475 2002-04-02 Alexandre Oliva <aoliva@redhat.com>
9476
9477 * doc/invoke.texi (SH options): Document -m2e.
9478 * config/sh/crt1.asm: Add __SH2E__ Next to __SH3E__.
9479 * config/sh/lib1funcs.asm: Likewise.
9480 * config/sh/sh.c: Replace all uses of TARGET_SH3E with SH2E.
9481 * config/sh/sh.h (CPP_SPEC): Define __SH2E__ for -m2e, and
9482 not __sh1__.
9483 (CONDITIONAL_REGISTER_USAGE): Don't disable FP regs from
9484 SH2E up.
9485 (SH3E_BIT): Renamed to...
9486 (SH_E_BIT): ... this. Replace all uses.
9487 (TARGET_SH2E): Define from SH_E_BIT and TARGET_SH2.
9488 Replace all uses of TARGET_SH3E with TARGET_SH2E.
9489 (TARGET_SWITCHES): Added 2e.
9490 (OVERRIDE_OPTIONS): Set sh_cpu for SH2E.
9491 (processor_type): Added PROCESSOR_SH2E.
9492 * config/sh/sh.md: Replace all uses of TARGET_SH3E with
9493 TARGET_SH2E, except in sqrtsf2_i.
9494 (attribute cpu): Added sh2e.
9495 * config/sh/t-sh (MULTILIB_OPTIONS): Replace m3e with m2e.
9496 (MULTILIB_MATCHES): Use m2e multilib for m3e.
9497 * config.gcc: Add sh2e target support.
9498
9499 2003-01-24 Phil Edwards <pme@gcc.gnu.org>
9500
9501 Rename -W to -Wextra.
9502 * c-decl.c: Update comments.
9503 * c-typeck.c: Likewise.
9504 * flags.h: Likewise.
9505 * function.c: Likewise.
9506 * stmt.c: Likewise.
9507 * toplev.c: Update comments.
9508 (W_options): Add 'extra'.
9509 (display_help): Remove '-W'.
9510 (decode_W_option): Special warn_uninitialized treatment in the case
9511 of -Wextra.
9512 * doc/invoke.texi: Update with new entries.
9513
9514 2003-01-23 Richard Henderson <rth@redhat.com>
9515
9516 * ifcvt.c (noce_process_if_block): Re-add check vs X being changed
9517 in no-else-block case. Add commentary.
9518
9519 2003-01-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9520
9521 * configure.in: Revert last change.
9522
9523 2003-01-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9524
9525 * configure.in: Don't include ansidecl.h in tconfig.h.
9526 * gcov-io.h (PARAMS, ATTRIBUTE_UNUSED: Define if IN_LIBGCC2.
9527 * unwind-dw2-fde.h (last_fde): Use __attribute__, not
9528 ATTRIBUTE_UNUSED.
9529
9530 * configure: Regenerate.
9531
9532 2003-01-23 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
9533
9534 PR java/6748
9535 * config/rs6000/linux.h (MD_FALLBACK_FRAME_STATE_FOR): Don't destroy
9536 regs->nip. Fix rt_sigreturn frame layout. Add support for newer
9537 kernels.
9538
9539 2003-01-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9540
9541 * cpplex.c (cpp_interpret_charconst): Squelch warning with cast.
9542
9543 2003-01-23 Ulrich Weigand <uweigand@de.ibm.com>
9544
9545 * genattrtab.c (write_attr_get): Mark 'insn' paramter
9546 as ATTRIBUTE_UNUSED.
9547
9548 2003-01-23 Richard Earnshaw <rearnsha@arm.com>
9549
9550 * arm.c (thumb_base_register_rtx_p): New function.
9551 (thumb_index_register_rtx_p): New function.
9552 (thumb_legitimate_address_p): New function.
9553 (thumb_legitimate_offset_p): New function.
9554 * arm.h (REG_STRICT_P): Define according to setting of REG_OK_STRICT.
9555 (ARM_GO_IF_LEGITIMATE_ADDRESS): Use REG_STRICT_P to avoid duplicate
9556 definitions.
9557 (THUMB_GO_IF_LEGITIMATE_ADDRESS): Use thumb_legitimate_address_p.
9558 (THUMB_LEGITIMATE_OFFSET): Delte.
9559 (THUMB_LEGITIMIZE_RELOAD_ADDRESS): Use thumb_legitimate_offset.
9560 * arm-protos.h (thumb_legitimate_address_p): Add prototype.
9561 (thumb_legitimate_offset_p): Likewise.
9562
9563 2003-01-23 Andreas Schwab <schwab@suse.de>
9564
9565 * unwind.h (_Unwind_GetTextRelBase): Mark parameter as unused.
9566
9567 2003-01-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9568
9569 * fixinc/Makefile.in (FL_LIST): Revert last change.
9570
9571 2003-01-23 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
9572
9573 PR other/7341
9574 * invoke.texi (ftest-coverage): Fix broken cross-reference.
9575 Change @code to @command for gcov command.
9576
9577 * gcc.texi: Adjust title of gcov section.
9578 Adjust copyright.
9579 * gcov.texi: Likewise.
9580
9581 2003-01-22 Roger Sayle <roger@eyesopen.com>
9582
9583 PR optimization/8423
9584 * cse.c (fold_rtx): Only eliminate a CONSTANT_P_RTX to 1 when
9585 its argument is constant, or 0 if !flag_gcse.
9586 * simplify-rtx.c (simplify_rtx): Convert CONSTANT_P_RTX to 1
9587 if it's argument is constant.
9588 * gcse.c (want_to_gcse_p): Ignore CONSTANT_P_RTX nodes.
9589 (hash_scan_set): Don't record CONSTANT_P_RTX expressions.
9590 (do_local_cprop): Don't propagate CONSTANT_P_RTX constants.
9591 * builtins.c (purge_builtin_constant_p): New function to force
9592 instantiation of any remaining CONSTANT_P_RTX nodes.
9593 * rtl.h (purge_builtin_constant_p): Prototype here.
9594 * toplev.c (rest_of_compilation): Invoke purge_builtin_constant_p
9595 pass after GCSE and before loop.
9596 (flag_gcse): No longer static.
9597 * flags.h (flag_gcse): Prototype here.
9598
9599 2003-01-22 Ulrich Weigand <uweigand@de.ibm.com>
9600
9601 * config/s390/s390.h (HARD_REGNO_MODE_OK): Fix warning regression
9602 introduced by last change.
9603
9604 2003-01-22 Andreas Schwab <schwab@suse.de>
9605
9606 * ra-rewrite.c (rewrite_program2): Initialize bb to avoid warning.
9607
9608 2003-01-22 Kazu Hirata <kazu@cs.umass.edu>
9609
9610 * config/h8300/h8300.c (h8300_shift_needs_scratch_p): Don't
9611 request a scratch reg on H8S when the shift count is 8.
9612
9613 2003-01-22 Ulrich Weigand <uweigand@de.ibm.com>
9614
9615 * config/s390/s390-protos.h (preferred_la_operand_p):
9616 Remove second parameter.
9617 * config/s390/s390.c (preferred_la_operand_p): Likewise.
9618 * config/s390/s390.h (FRAME_REGNO_P, FRAME_REG_P): New macros.
9619 (HARD_REGNO_MODE_OK): Use FRAME_REGNO_P.
9620 * config/s390/s390.md ("*la_cc_64", "*la_cc_31", splitters): Remove.
9621 Add peepholes to transform ADD to LOAD ADDRESS.
9622
9623 2003-01-22 Richard Earnshaw <rearnsha@arm.com>
9624
9625 * arm.c (arm_address_register_rtx_p): New function.
9626 (arm_legitimate_address_p): New function.
9627 (arm_legitimate_index_p): New function.
9628 (legitimize_pic_address): Use arm_legitimate_index_p.
9629 * arm-protos.h (arm_legtimate_address_p): Add prototype.
9630 * arm.h (ARM_GO_IF_LEGITIMATE_INDEX): Delete.
9631 (ARM_GO_IF_LEGITIMATE_ADDRESS): Call arm_legitimate_address_p.
9632
9633 2003-01-22 Hartmut Penner <hpenner@de.ibm.com>
9634
9635 * config/s390/s390.md (floatdfdi2): Insn has type 'itof'.
9636 * config/s390/2064.md (define_bypass): Correct 'Load' and
9637 'Load-address' bypass values.
9638
9639 2003-01-22 Andreas Schwab <schwab@suse.de>
9640
9641 * config/ia64/t-ia64 (insn-attrtab.o-warn): Define as -Wno-error.
9642
9643 2003-01-21 Zack Weinberg <zack@codesourcery.com>
9644
9645 * genautomata.c (output_internal_insn_latency_func,
9646 output_print_reservation_func): Short circuit when there is no
9647 automaton to generate code for.
9648
9649 2003-01-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9650
9651 * Makefile.in (ssa-ccp.o): Depend on coretypes.h $(TM_H).
9652 (df.o): Delete duplicate dependency on coretypes.h $(TM_H).
9653
9654 2003-01-21 Geoffrey Keating <geoffk@apple.com>
9655
9656 * config/rs6000/rs6000.md: Remove warning.
9657 (builtin_setjmp_receiver): Likewise.
9658 * config/darwin.c (update_stubs): Slightly improve terrible hack
9659 with identifiers. Add comment pointing out problems with it.
9660 (update_non_lazy_ptrs): Likewise.
9661
9662 2003-01-21 Richard Henderson <rth@redhat.com>
9663
9664 * dwarf2out.c (lookup_filename): Fix printf format warning.
9665 * system.h (fread_unlocked, fwrite_unlocked): Undef.
9666
9667 * fixinc/Makefile.in (FL_LIST): Add $($@-warn) hook.
9668 (fixincl.o-warn, gnu-regex.o-warn): New.
9669 * fixinc/fixfixes.c (FIX_PROC_HEAD): Mark parameters unused.
9670 * fixinc/fixtests.c (TEST_FOR_FIX_PROC_HEAD): Likewise.
9671 * fixinc/fixincl.c (process): Fix printf format warning.
9672
9673 2003-01-21 Ulrich Weigand <uweigand@de.ibm.com>
9674
9675 * dwarf2out (output_file_names): Don't crash if called
9676 with empty file_table.
9677
9678 2003-01-21 Zack Weinberg <zack@codesourcery.com>
9679
9680 * genautomata.c (output_internal_insn_latency_func): Add
9681 missing break statement to generated code.
9682
9683 2003-01-21 Roger Sayle <roger@eyesopen.com>
9684
9685 * stmt.c (same_case_target_p): New function to determine whether
9686 two case labels branch to the same target. Split out from...
9687 (group_case_nodes): ... here. Use same_case_target_p instead.
9688 (strip_default_case_nodes): Remove explicit case nodes
9689 that branch to the default destination.
9690 (expand_end_case_type): Call strip_default_case_nodes after
9691 group_case_nodes, to simplify the case-list before we count it.
9692 Only generate table_label RTX when actually needed. Try to share
9693 thiscase->exit_label and thiscase->data.case_stmt.default_label
9694 when a switch has no explicit default case. Simplify test for
9695 constant index.
9696
9697 2003-01-21 Kazu Hirata <kazu@cs.umass.edu>
9698
9699 * config/h8300/h8300.md (*negsf2_h8300): Use \\t instead of
9700 \t.
9701 (*negsf2_h8300hs): Likewise.
9702 (*addsi3_lshiftrt_16_zexthi): Likewise.
9703 (*iorhi3_lshiftrt_8): Likewise.
9704
9705 2003-01-21 Ulrich Weigand <uweigand@de.ibm.com>
9706
9707 * dwarf2out.c (fde_table_in_use): Mark GTY.
9708 (dwarf2out_cfi_label_num): New variable, marked GTY.
9709 (dwarf2out_cfi_label): Use it instead of static label_num.
9710 * emit-rtl.c (label_num): Mark GTY.
9711
9712 2003-01-21 Kazu Hirata <kazu@cs.umass.edu>
9713
9714 * config/h8300/h8300.c (output_plussi): Support H8/300.
9715 (compute_plussi_length): Likewise.
9716 (compute_plussi_cc): Likewise.
9717 * config/h8300/h8300.md (addsi_h8300): Use output_plussi to
9718 output assembly instructions.
9719
9720 2003-01-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9721
9722 * calls.c (fix_unsafe_tree): Prototype.
9723
9724 * Makefile.in (GCC_WARN_CFLAGS): Add $(WERROR) $($@-warn)
9725 (gtype-desc.o-warn, c-decl.o-warn, varasm.o-warn, gcc.o-warn,
9726 insn-conditions.o-warn, out_object_file, gengtype-yacc.o-warn,
9727 c-parse.o-warn): Add -Wno-error.
9728 (STAGE2_FLAGS_TO_PASS): Add WERROR="@WERROR@".
9729
9730 * configure.in (--enable-werror): Add new flag.
9731 * doc/install.texi (--enable-werror): Document.
9732 * configure: Regenerate.
9733
9734 * objc/Make-lang.in (objc/objc-parse.o-warn): Add -Wno-error.
9735
9736 2003-01-21 Andreas Schwab <schwab@suse.de>
9737
9738 * genautomata.c (output_internal_insn_latency_func): Fix missing
9739 close paren in output.
9740
9741 2003-01-21 Zack Weinberg <zack@codesourcery.com>
9742
9743 * genautomata.c: Space savings in generated code:
9744 (output_dfa_insn_code_func): Split out the table-enlargement
9745 path to an out-of-line static function, dfa_insn_code_enlarge.
9746 (output_internal_insn_latency_func): Use a lookup table for the
9747 default latencies.
9748 (output_print_reservation_func): Use a lookup table for the
9749 strings.
9750
9751 2003-01-21 Christian Ehrhardt <ehrhardt@mathematik.uni-ulm.de>
9752
9753 PR opt/7507
9754 * calls.c (fix_unsafe_tree): Split out from ...
9755 (expand_call): ... here. Use it on the function address too.
9756
9757 2003-01-20 Richard Henderson <rth@redhat.com>
9758
9759 * expr.h (default_must_pass_in_stack): Move decl outside ifdef.
9760
9761 2003-01-20 Richard Henderson <rth@redhat.com>
9762
9763 PR opt/7154
9764 * stmt.c (expand_asm_operands): Validize memory operands.
9765
9766 2003-01-20 Richard Henderson <rth@redhat.com>
9767
9768 PR opt/8848
9769 * ifcvt.c (noce_process_if_block): Correct arguments to
9770 modified_between_p for no-else-block case.
9771
9772 2003-01-20 Kazu Hirata <kazu@cs.umass.edu>
9773
9774 * config/h8300/h8300.c (const_costs): Remove a warning.
9775 (output_plussi): Likewise.
9776 (compute_plussi_length): Likewise.
9777 (compute_plussi_cc): Likewise.
9778
9779 2003-01-20 Kazu Hirata <kazu@cs.umass.edu>
9780
9781 * config/h8300/h8300.md (addsi_h8300): Remove the last
9782 alternative.
9783
9784 2003-01-20 Kazu Hirata <kazu@cs.umass.edu>
9785
9786 * config/h8300/h8300.c (get_shift_alg): Remove redundant code.
9787
9788 2003-01-20 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9789
9790 * system.h (__NO_STRING_INLINES): Define.
9791
9792 2003-01-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
9793
9794 * ifcvt.c (noce_emit_store_flag): Don't emit store flag if mode of x
9795 is not a scalar int mode.
9796
9797 2003-01-20 Roger Sayle <roger@eyesopen.com>
9798
9799 * cse.c (cse_insn): Avoid RTL sharing when updating the RETVAL
9800 insn's notes following a substitution inside a libcall.
9801
9802 2003-01-20 Zack Weinberg <zack@codesourcery.com>
9803
9804 * configure.in: Check for system-provided 'uchar' type.
9805 * configure, config.in: Regenerate.
9806 * cpphash.h: Only typedef 'uchar' if the system doesn't.
9807
9808 2003-01-20 Richard Henderson <rth@redhat.com>
9809
9810 * expr.h (MUST_PASS_IN_STACK): Move implementation...
9811 * calls.c (default_must_pass_in_stack): ... here.
9812
9813 2003-01-20 Vladimir Makarov <vmakarov@redhat.com>
9814
9815 * genattrtab.h (INSN_ALTS_FUNC_NAME): Move it from genautomata.c.
9816
9817 * genautomata.c (INSN_ALTS_FUNC_NAME): Move it into genattrtab.h.
9818
9819 * genattr.c (main): Output default definition of AUTOMATON_ALTS.
9820 Wrap up definition of `insn_alts'.
9821
9822 * genattrtab.c (main): Wrap up `insn_alts'.
9823
9824 2003-01-20 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9825
9826 * collect2.c (ldgetname): Check HAVE_DECL_LDGETNAME before
9827 prototyping.
9828 * configure.in: Check for <ldfcn.h> and ldgetname() prototype.
9829
9830 * config.in, configure: Regenerate.
9831
9832 2003-01-20 Nick Clifton <nickc@redhat.com>
9833
9834 * config/arm/arm.md (sibcall_epilogue): Add an
9835 UNSPEC_PROLOGUE_USE to prevent the link register from being
9836 considered dead.
9837
9838 2003-01-20 Jan Hubicka <jh@suse.cz>
9839
9840 * i386.md (SSE cmov splitter): Handle memory operand in operand 5.
9841
9842 2003-01-20 Andreas Schwab <schwab@suse.de>
9843
9844 * system.h: Don't declare strsignal if the decl test hasn't been
9845 run yet.
9846
9847 2003-01-20 Kazu Hirata <kazu@cs.umass.edu>
9848
9849 * config/h8300/h8300.c (notice_update_cc): Don't assume that
9850 recog_data.operands[0] is always associated with cc0.
9851
9852 2003-01-19 David Edelsohn <edelsohn@gnu.org>
9853
9854 * collect2.c (ldgetname): Expand declaration to prototype.
9855 * read-rtl.c (atoll): Add prototype.
9856 * system.h (strsignal): Also declare if no declaration found.
9857
9858 2003-01-19 Alexandre Oliva <aoliva@redhat.com>
9859
9860 * config.gcc (mips64*-*-linux*): Added.
9861 * config/mips/linux64.h, config/mips/t-linux64: New file.
9862 * config/mips/iris6.h (MIPS_TFMODE_FORMAT): Define.
9863 * config/mips/mips.c (override_options): Use it.
9864 * config/mips/mips.h (TARGET_SWITCHES): Added...
9865 (SUBTARGET_TARGET_SWITCHES): New, empty by default.
9866 * Makefile.in (SPECS): New.
9867 (STAGESTUFF, specs, mostlyclean, install-common): Use it.
9868 * gcc.c (process_command): Move self-spec processing past spec
9869 file loading.
9870 * doc/tm.texi (DRIVER_SELF_SPECS): Document the change.
9871 * doc/fragments.texi (MULTILIB_EXTRA_OPTS): Document need for
9872 CRTSTUFF_T_CFLAGS.
9873 (SPECS): Document.
9874 * doc/invoke.texi (-mabi-fake-default): Document.
9875
9876 2003-01-19 Stephane Carrez <stcarrez@nerim.fr>
9877
9878 * config/m68hc11/m68hc11.c (stack_push_word, stack_pop_word,
9879 z_reg, z_reg_qi): Declare static and GTY().
9880 (da_reg): Remove.
9881 (create_regs_rtx): Don't create da_reg.
9882 ("gt-m68hc11.h"): Include for GTY roots.
9883 * config/m68hc11/m68hc11.h (ix_reg, iy_reg, d_reg): Declare extern
9884 and GTY() here.
9885 (m68hc11_compare_op0, m68hc11_compare_op1): Likewise.
9886 (m68hc11_soft_tmp_reg): Likewise.
9887 * config/m68hc11/m68hc11-protos.h: Remove above declarations.
9888
9889 2003-01-18 Kazu Hirata <kazu@cs.umass.edu>
9890
9891 * basic-block.h: Fix comment formatting.
9892 * calls.c: Likewise.
9893 * combine.c: Likewise.
9894 * convert.c: Likewise.
9895 * gcov.c: Likewise.
9896 * haifa-sched.c: Likewise.
9897 * libgcc2.c: Likewise.
9898 * loop.c: Likewise.
9899 * profile.c: Likewise.
9900 * system.h: Likewise.
9901
9902 2003-01-18 Roger Sayle <roger@eyesopen.com>
9903
9904 * config/pa/pa.md (muldi3): Avoid invalid sharing of SUBREG RTXs.
9905
9906 2003-01-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9907
9908 * ra-build.c (undef_to_size_word): Avoid `switch' warning.
9909
9910 2003-01-17 Dale Johannesen <dalej@apple.com>
9911
9912 * config/rs6000/rs6000.md (*floatsidf2_internal): Add earlyclobbers.
9913 (*floatunssidf2_internal): Ditto.
9914
9915 2003-01-17 Kazu Hirata <kazu@cs.umass.edu>
9916
9917 * alias.c: Fix comment typos.
9918 * basic-block.h: Likewise.
9919 * c-common.c: Likewise.
9920 * c-common.h: Likewise.
9921 * c-decl.c: Likewise.
9922 * c-opts.c: Likewise.
9923 * c-pragma.c: Likewise.
9924 * c-pretty-print.h: Likewise.
9925 * cfg.c: Likewise.
9926 * cfganal.c: Likewise.
9927 * cfgbuild.c: Likewise.
9928 * cfgcleanup.c: Likewise.
9929 * cfglayout.c: Likewise.
9930 * cfgrtl.c: Likewise.
9931 * convert.c: Likewise.
9932 * cpphash.h: Likewise.
9933 * cpplex.c: Likewise.
9934 * cpplib.h: Likewise.
9935 * df.h: Likewise.
9936 * diagnostic.c: Likewise.
9937 * diagnostic.h: Likewise.
9938 * dwarf2.h: Likewise.
9939
9940 2003-01-17 Stan Shebs <shebs@apple.com>
9941
9942 * config/darwin-protos.h: Forward-declare struct cpp_reader.
9943
9944 2003-01-17 Douglas B Rupp <rupp@gnat.com>
9945
9946 * config/alpha/alpha.c (alpha_need_linkage): Fix obvious
9947 mistake in last checkin.
9948
9949 2003-01-17 Kazu Hirata <kazu@cs.umass.edu>
9950
9951 * et-forest.c: Fix comment typos.
9952 * et-forest.h: Likewise.
9953 * except.c: Likewise.
9954 * expr.c: Likewise.
9955 * flags.h: Likewise.
9956 * flow.c: Likewise.
9957 * gcc.c: Likewise.
9958 * gcse.c: Likewise.
9959 * genattrtab.c: Likewise.
9960 * genautomata.c: Likewise.
9961 * gengtype.c: Likewise.
9962 * genrecog.c: Likewise.
9963 * global.c: Likewise.
9964 * gthr-rtems.h: Likewise.
9965
9966 2003-01-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9967
9968 * i386.c (x86_function_profiler): Fix format specifier.
9969
9970 2003-01-17 Richard Henderson <rth@redhat.com>
9971
9972 * gengtype.c (walk_type): Allow paramN_is.
9973
9974 2003-01-17 Nick Clifton <nickc@redhat.com>
9975
9976 * config/i960/t-960bare (i960-c.o): Add missing newline escape.
9977
9978 2003-01-16 Richard Henderson <rth@redhat.com>
9979
9980 * config/alpha/linux-elf.h (LIB_SPEC): Adjust inter-option spacing.
9981
9982 2003-01-16 Richard Henderson <rth@redhat.com>
9983
9984 * config/alpha/alpha.c (alpha_sr_alias_set): Mark GTY.
9985 (alpha_next_sequence_number): Likewise.
9986 (alpha_this_literal_sequence_number): Likewise.
9987 (alpha_this_gpdisp_sequence_number): Likewise.
9988 (struct alpha_funcs, alpha_funcs_num): Likewise.
9989 (struct alpha_links): Fix branch merge error.
9990 (alpha_need_linkage, alpha_use_linkage): Use GC for alpha_funcs.
9991
9992 2003-01-17 Alexandre Oliva <aoliva@redhat.com>
9993
9994 * config/mips/mips.h: Don't use #elif. Reported by Kaveh
9995 R. Ghazi.
9996
9997 2003-01-16 Kazu Hirata <kazu@cs.umass.edu>
9998
9999 * ifcvt.c: Fix comment typos.
10000 * lcm.c: Likewise.
10001 * libgcc2.c: Likewise.
10002 * local-alloc.c: Likewise.
10003 * loop.c: Likewise.
10004 * predict.c: Likewise.
10005 * ra-build.c: Likewise.
10006 * ra.c: Likewise.
10007 * ra-colorize.c: Likewise.
10008 * ra.h: Likewise.
10009 * ra-rewrite.c: Likewise.
10010 * regmove.c: Likewise.
10011 * reload.h: Likewise.
10012 * rtlanal.c: Likewise.
10013 * toplev.c: Likewise.
10014 * tree.h: Likewise.
10015 * unwind-dw2-fde-glibc.c: Likewise.
10016 * vmsdbgout.c: Likewise.
10017
10018 2003-01-16 Richard Henderson <rth@redhat.com>
10019
10020 * dwarf2out.c (struct file_table): Remove.
10021 (FILE_TABLE_INCREMENT): Remove.
10022 (file_table): Make a varray; mark for GC. Update all users.
10023 (file_table_last_lookup_index): Extract from struct file_table.
10024 (output_file_names): Fix unsigned compare warnings.
10025 (add_name_attribute): Remove inline marker.
10026 (add_comp_dir_attribute): Split out from gen_compile_unit_die.
10027 (lookup_filename): Don't manage size of file_table.
10028 (init_file_table): Allocate file_table with GC.
10029 (dwarf2out_init): Don't record main_input_filename here.
10030 (dwarf2out_finish): Do it here instead.
10031
10032 2003-01-16 Bruce Korb <bkorb@gnu.org>
10033
10034 * gcc/fixinc/inclhack.def(limits_ifndef): QNX needs a bypass, too.
10035
10036 2003-01-16 Kaz Kojima <kkojima@gcc.gnu.org>
10037
10038 * config/sh/sh.c (sh_initialize_trampoline): Emit rotrdi3_mextr
10039 instead of rotldi3_mextr.
10040
10041 2003-01-16 Vladimir Makarov <vmakarov@redhat.com>
10042
10043 * haifa-sched.c (move_insn): Restore moving all schedule group.
10044 (set_priorities): Restore taking SCHED_GROUP_P into account.
10045
10046 * sched-deps.c (add_dependence): Restore processing the last group
10047 insn.
10048 (remove_dependence, group_leader): Restore the functions.
10049 (set_sched_group_p): Restore adding dependencies from previous insn
10050 in the group.
10051 (compute_forward_dependences): Restore usage of group_leader.
10052
10053 * sched-ebb.c (init_ready_list): Restore taking SCHED_GROUP_P into
10054 account.
10055
10056 * sched-rgn.c (init_ready_list): Restore taking SCHED_GROUP_P into
10057 account.
10058 (can_schedule_ready_p): Ditto.
10059 (add_branch_dependences): Restore skipping over the group insns.
10060
10061 2003-01-16 Stephane Carrez <stcarrez@nerim.fr>
10062
10063 * config/m68hc11/m68hc11.c (m68hc11_check_z_replacement): Fix handling
10064 68HC12 pre/post inc/dec side effects.
10065
10066 2003-01-16 Stephane Carrez <stcarrez@nerim.fr>
10067
10068 * config/m68hc11/m68hc11.h (MASK_M6812): Define.
10069
10070 2003-01-16 J"orn Rennecke <amylaar@onetel.net.uk>
10071
10072 * sh.md (mshflo_w_x): Fix description of operation.
10073
10074 2003-01-16 Zack Weinberg <zack@codesourcery.com>
10075
10076 * config/rs6000/rs6000.h: Mention Altivec registers in
10077 commentary. Fix typo.
10078
10079 2003-01-16 David Edelsohn <edelsohn@gnu.org>
10080
10081 * config/rs6000/rs6000.md (movti_string): Remove clobber.
10082 * config/rs6000/rs6000.c (rs6000_emit_move, TImode): Explicitly
10083 generate PARALLEL with clobber for TARGET_POWER.
10084
10085 2003-01-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10086
10087 * ra-colorize.c (colorize_one_web): Initialize variable.
10088 * regmove.c (fixup_match_1): Likewise.
10089 * reload1.c (reload_as_needed): Likewise.
10090 * sdbout.c (SET_KNOWN_TYPE_TAG): Add cast.
10091
10092 2003-01-16 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
10093
10094 * cfgloop.c (flow_loops_find): Fix handling of abnormal edges.
10095
10096 2003-01-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10097
10098 * dbxout.c (lastfile, cwd): Fix `unused' warning.
10099 * dwarf2out.c (fde_table_in_use, current_funcdef_fde,
10100 dw_cfi_oprnd1_desc, dw_cfi_oprnd2_desc, next_die_offset,
10101 is_main_source, file_table, decl_die_table_in_use,
10102 abbrev_die_table_in_use, line_info_table_in_use,
10103 separate_line_info_table_in_use, pubname_table_in_use,
10104 arange_table_in_use, ranges_table_in_use,
10105 current_function_has_inlines): Likewise.
10106 * flow.c (life_analysis): Likewise.
10107 * genemit.c (gen_insn): Likewise.
10108 * protoize.c (cplus_suffix): Likewise.
10109
10110 * arm.c (ROUND_UP_WORD): Renamed from ROUND_UP.
10111 * arm.h (ROUND_UP_WORD): Likewise.
10112
10113 * arm.h (CONDITIONAL_REGISTER_USAGE): Avoid signed/unsigned
10114 warning.
10115 * emit-rtl.c (gen_rtx_REG, set_mem_attributes_minus_bitpos,
10116 init_emit_once): Likewise.
10117 * flow.c (mark_regs_live_at_end, calculate_global_regs_live):
10118 Likewise.
10119 * function.c (assign_stack_temp_for_type): Likewise.
10120 * loop.c (loop_invariant_p): Likewise.
10121 * recog.c (push_operand): Likewise.
10122 * regclass.c (init_reg_sets_1): Likewise.
10123 * reload.c (update_auto_inc_notes): Likewise.
10124 * reload1.c (reload_as_needed, emit_input_reload_insns): Likewise.
10125 * stmt.c (expand_asm_operands): Likewise.
10126 * stor-layout.c (start_record_layout): Likewise.
10127
10128 2003-01-16 Herman A.J. ten Brugge <hermantenbrugge@home.nl>
10129
10130 * config/c4x/c4x.md (epilogue): Correct last patch.
10131
10132 2003-01-15 Richard Henderson <rth@redhat.com>
10133
10134 * config/alpha/alpha.c (find_lo_sum_using_gp): Rename from find_lo_sum;
10135 also check that GP is being used.
10136 (alpha_find_lo_sum_using_gp): New.
10137 (alpha_does_function_need_gp): Use get_attr_usegp.
10138 * config/alpha/alpha-protos.h: Update.
10139 * config/alpha/alpha.md (attr usegp): New. Annotate patterns
10140 as needed.
10141
10142 2003-01-15 Roger Sayle <roger@eyesopen.com>
10143
10144 * gcse.c (one_cprop_pass): Change function arguments to take both
10145 cprop_jumps and bypass_jumps flags instead of just alter_jumps.
10146 (gcse_main): Update calls to one_cprop_pass, disabling bypassing.
10147 (bypass_jumps): New function to perform separate jump bypassing pass.
10148 * rtl.h (bypass_jumps): Add function prototype.
10149 * timevar.def (TV_BYPASS): New timing variable.
10150 * toplev.c (enum dump_file_index): Add new entry DFI_bypass.
10151 (dump_file): New entry for the bypass RTL dump file.
10152 (rest_of_compilation): Insert new jump bypassing optimization
10153 pass after loop.
10154 * doc/passes.texi: Document new pass.
10155
10156 2003-01-15 John David Anglin <dave@hiauly1.hia.nrc.ca>
10157
10158 * som.h (SUPPORTS_WEAK, SUPPORTS_ONE_ONLY, MAKE_DECL_ONE_ONLY,
10159 ASM_WEAKEN_LABEL, GTHREAD_USE_WEAK): Define.
10160 * pa.h (TARGET_SOM_SDEF): Define.
10161 * pa-hpux11.h (TARGET_SOM_SDEF): Define.
10162
10163 2003-01-16 Stephane Carrez <stcarrez@nerim.fr>
10164
10165 * config/m68hc11/m68hc11.c (expand_prologue): Use push/pop to
10166 allocate 4-bytes of locals on 68HC11.
10167 (expand_epilogue): Likewise.
10168 (m68hc11_memory_move_cost): Increase cost of HI/QI soft registers.
10169
10170 2003-01-15 Stephane Carrez <stcarrez@nerim.fr>
10171
10172 * config/m68hc11/m68hc11.h (ASM_SPEC): Handle -m68hcs12; Pass -mshort
10173 and -mshort-double to the assembler to specify the ABI.
10174 (LINK_SPEC): Likewise.
10175 (CPP_SPEC): Pass HCS12 specific define.
10176 (MASK_M68S12): New define.
10177 (TARGET_M68S12): Likewise.
10178 (TARGET_SWITCHES): New options -m68hcs12 and -m68S12.
10179 (TARGET_VERSION): Update.
10180 * config/m68hc11/m68hc12.h (CPP_SPEC): Pass HCS12 specific define.
10181 (LINK_SPEC): Update.
10182 (ASM_SPEC): Update.
10183 * config/m68hc11/m68hc11.c (m68hc11_asm_file_start): Update.
10184 * doc/invoke.texi (M68hc1x Options): Document -m68hcs12.
10185
10186 2003-01-15 Stephane Carrez <stcarrez@nerim.fr>
10187
10188 * config/m68hc11/m68hc11.md ("return"): Use emit_jump_insn to emit
10189 the return code.
10190
10191 2003-01-15 Josef Zlomek <zlomekj@suse.cz>
10192
10193 * cfganal.c (set_edge_can_fallthru_flag): Clear the EDGE_CAN_FALLTHRU
10194 flag before setting it.
10195
10196 2003-01-15 Roger Sayle <roger@eyesopen.com>
10197
10198 * c-semantics.c (genrtl_while_stmt): Improve initial RTL generation
10199 when loop condition is known true, i.e. "while (1) { ... }".
10200 (genrtl_for_stmt): Similarly for "for" statements.
10201
10202 2003-01-15 Roger Sayle <roger@eyesopen.com>
10203
10204 * real.c (real_sqrt): Return a bool result indicating whether
10205 a floating point exception or trap should be raised.
10206 * real.h (real_sqrt): Update function prototype.
10207 * builtins.c (fold_builtin): Only fold non-trapping square
10208 roots unless we're ignoring errno and trapping math.
10209
10210 2003-01-15 John David Anglin <dave.anglin@nrc.gc.ca>
10211
10212 * expr.h (emit_conditional_add): Add PARAMS to declaration.
10213 * gengtype-lex.l (malloc, realloc): Move defines after include of
10214 system.h. Remove duplicate include of system.h.
10215
10216 2003-01-15 Roger Sayle <roger@eyesopen.com>
10217
10218 PR middle-end/9009
10219 * optabs.c (expand_unop): When manipulating the FP sign bit
10220 using integer operations, account for targets with different
10221 integer and FP word orders.
10222 (expand_abs): Likewise.
10223
10224 2003-01-15 David Edelsohn <edelsohn@gnu.org>
10225
10226 * config/rs6000/rs6000.c (rs6000_gen_section_name): Do not include
10227 file extension in section name.
10228
10229 2003-01-15 Richard Earnshaw <rearnsha@arm.com>
10230
10231 * flow.c (find_auto_inc): Also try to generate a PRE_MODIFY with
10232 constant offset.
10233
10234 2003-01-15 Richard Earnshaw <rearnsha@arm.com>
10235
10236 * arm.h (HAVE_PRE_MODIFY_DISP, HAVE_PRE_MODIFY_REG): Define.
10237 (HAVE_POST_MODIFY_DISP, HAVE_POST_MODIFY_REG): Define.
10238 (ARM_GO_IF_LEGITIMATE_ADDRESS): Handle pre/post-modify addresses.
10239 (ARM_PRINT_OPERAND_ADDRESS): Likewise.
10240
10241 2003-01-15 Jan Hubicka <jh@suse.cz>
10242
10243 PR f/9258
10244 * global.c (struct allocno): Add no_stack_reg.
10245 (global_conflicts): Set no_stack_reg.
10246 (find_reg): Use it.
10247
10248 * convert.c (convert_to_real): Fold - and abs only when profitable.
10249 * fold-const.c (fold): Fold truncates in - and abs.
10250
10251 2003-01-15 Josef Zlomek <zlomekj@suse.cz>
10252
10253 Segher Boessenkool <segher@koffie.nl>
10254
10255 * predict.c (real_inv_br_prob_base): New variable.
10256 (propagate_freq): Use multiply by reciprocal instead of
10257 division. Don't divide by 1.0 at all.
10258 (estimate_bb_frequencies): Similar.
10259
10260 2003-01-15 Alexandre Oliva <aoliva@redhat.com>
10261
10262 * configure.in (libgcc_visibility): Force disabled on IRIX 6 too.
10263 * configure: Rebuilt.
10264
10265 2003-01-15 Hartmut Penner <hpenner@de.ibm.com>
10266
10267 * config/s390/s390.c (s390_safe_attr_type): New function.
10268 (s390_use_dfa_pipeline_interface): New function, return true for z900.
10269 (s390_issue_rate): New function.
10270 (s390_agen_dep_p): New function.
10271 (addr_generation_dependency_p): Use 's390_safe_attr_type'.
10272 (s390_adjust_cost): Return 'cost' if new DFA is used.
10273 (s390_adjust_priority): Delete function.
10274 * config/s390/s390-protos.h: (s390_agen_dep_p): New prototype.
10275 * config/s390/s390.md (atype attribute): Attribute 'atype' default
10276 determined by 'op_type'.
10277 (type attribute): Added more type attributes.
10278 * config/s390/2064.md: New DFA description for z900 pipeline.
10279
10280 2003-01-15 Alexandre Oliva <aoliva@redhat.com>
10281
10282 * config/i386/i386.c (ix86_expand_vector_move): Validize constant
10283 forced to memory. Fixes PR bootstrap/9036.
10284
10285 * config/mips/mips.h (CRT_CALL_STATIC_FUNCTION): Define so as
10286 to set $gp before the call.
10287
10288 2003-01-14 Richard Henderson <rth@redhat.com>
10289
10290 * config/alpha/alpha.c (alpha_expand_mov): Use correct mode
10291 for force_const_mem.
10292
10293 2003-01-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10294
10295 * genattr.c (main): Rearrange output to avoid prototype warning.
10296 * genautomata.c (transform_3): Fix ambiguous-else warning.
10297 * local-alloc.c (requires_inout): Add parentheses around
10298 assignment used as truth-value.
10299 * timevar.c: Move system includes above local includes. Include
10300 toplev.h
10301 * Makefile.in (timevar.o): Depend on toplev.h.
10302
10303 2003-01-14 Denis Chertykov <denisc@overta.ru>
10304
10305 * config/ip2k/ip2k.h (VALID_MACHINE_DECL_ATTRIBUTE): Remove.
10306 (VALID_MACHINE_TYPE_ATTRIBUTE): Remove.
10307
10308 * config/ip2k/ip2k.c (ip2k_attribute_table): New table of
10309 attributes.
10310 (TARGET_ATTRIBUTE_TABLE): New macro.
10311 (valid_machine_type_attribute): Remove.
10312 (valid_machine_decl_attribute): Remove.
10313 (ip2k_handle_progmem_attribute): New function.
10314 (ip2k_handle_fndecl_attribute): New function.
10315
10316 2003-01-10 Andrew Haley <aph@redhat.com>
10317
10318 * config/i386/linux64.h (MD_FALLBACK_FRAME_STATE_FOR): Rename
10319 registers to be in correct order. Add rip.
10320
10321 2003-01-14 Kazu Hirata <kazu@cs.umass.edu>
10322
10323 * config/h8300/h8300.md (*andsi3_lshiftrt_9_sb): New.
10324 (*iorsi3_and_lshiftrt_9_sb): Likewise.
10325
10326 2003-01-14 Jan Hubicka <jh@suse.cz>
10327
10328 * convert.c (strip_float_extensions): Look for narrowest type handling
10329 FP constants.
10330
10331 * fold-const.c (fold): Fold (double)float1 CMP (double)float2 into
10332 float1 CMP float2.
10333 * convert.c (strip_float_extensions): Make global.
10334 * tree.h (strip_float_extensions): Declare.
10335
10336 2003-01-14 Gabriel Dos Reis <gdr@integrable-solutions.net>
10337
10338 * timevar.def: define TV_NAME_LOOKUP.
10339 * timevar.c (timevar_pop): Be verbose when aborting.
10340
10341 2003-01-13 Andreas Schwab <schwab@suse.de>
10342
10343 * Makefile.in ($(parsedir)/gengtype-lex.c): Don't change to
10344 $(parsedir), just move the temporary file at the end.
10345 ($(parsedir)/gengtype-yacc.c): Likewise.
10346
10347 2003-01-13 Alexandre Oliva <aoliva@redhat.com>
10348
10349 * aclocal.m4 (gcc_AC_PROG_GNAT): Don't try to prepend
10350 ${ac_tool_prefix} to ADAC or CC. Protect them from word
10351 splitting.
10352 * configure: Rebuilt.
10353
10354 2003-01-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10355
10356 * config/sparc/gmon-sol2.c (moncontrol, monstartup, _mcleanup,
10357 internal_mcount): Don't use PARAMS.
10358 (monstartup, _mcleanup, internal_mcount, moncontrol): Convert to
10359 ISO C style.
10360 (internal_mcount): Use __attribute__, not ATTRIBUTE_UNUSED.
10361
10362 2003-01-13 Andreas Schwab <schwab@suse.de>
10363
10364 * config/rs6000/sysv4.h (ASM_OUTPUT_ALIGNED_LOCAL): Output type
10365 directive.
10366
10367 2003-01-13 Kazu Hirata <kazu@cs.umass.edu>
10368
10369 * config/h8300/h8300.md (*andsi3_lshift_n_sb): New.
10370 (*iorsi3_and_lshiftrt_n_sb): Likewise.
10371
10372 2003-01-12 Mark Mitchell <mark@codesourcery.com>
10373
10374 PR c++/9264
10375 * c-lex.c (c_lex): Set the token value to error_mark_node for
10376 invalid numeric constants.
10377
10378 2003-01-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10379
10380 * c-pch.c (asm_file_startpos): Change to `long'.
10381 (pch_init): Use ftell, not ftello.
10382 (c_common_write_pch): Use ftell/fseek, not ftello/fseeko.
10383 Use `long' instead of `off_t'.
10384 (c_common_read_pch): Likewise.
10385 * ggc-common.c (gt_pch_save): Use long/ftell instead of
10386 off_t/ftello.
10387
10388 2003-01-12 Alan Modra <amodra@bigpond.net.au>
10389
10390 * expr.c (expand_expr <RDIV_EXPR>): Correct recursive call args.
10391
10392 2003-01-11 Richard Earnshaw (rearnsha@arm.com)
10393
10394 * arm-protos.h (struct cpp_reader): Add declaration.
10395
10396 2003-01-11 Jan Hubicka <jh@suse.cz>
10397
10398 PR target/9068
10399 * i386.c (output_fp_compare): Fix typo.
10400
10401 2003-01-10 David Edelsohn <edelsohn@gnu.org>
10402
10403 * config/rs6000/rs6000.c (common_mode_defined): Mark for PCH.
10404
10405 2003-01-10 Geoffrey Keating <geoffk@apple.com>
10406
10407 * Makefile.in (parsedir): New variable.
10408 (docobjdir): New variable.
10409 (c-parse.o, c-parse.c, c-parse.y, gengtype-lex.o, gengtype-yacc.o,
10410 gengtype-lex.c, gengtype-yacc.c): Use parsedir.
10411 (info, cpp.info, gcc.info, gccint.info, gccinstall.info,
10412 cppinternals.info, generated-manpages, gcov.1, cpp.1, gcc.1, gfdl.7,
10413 gpl.7, fsf-funding.7, maintainer-clean, install-info, install-man):
10414 Use docobjdir.
10415 * objc/Make-lang.in (objc/objc-parse.c, objc/objc-parse.y,
10416 objc.maintainer-clean): Use parsedir.
10417
10418 * varasm.c (struct constant_descriptor_rtx): Remove unused
10419 `label' field.
10420
10421 * toplev.c (documented_lang_options): Document -Winvalid-pch.
10422
10423 2003-01-10 Richard Henderson <rth@redhat.com>
10424
10425 * config/alpha/alpha.h (NO_PROFILE_COUNTERS): Set.
10426 (ASM_OUTPUT_REG_PUSH, ASM_OUTPUT_REG_POP): Kill.
10427
10428 2003-01-10 Richard Henderson <rth@redhat.com>
10429
10430 * combine.c (make_compound_operation): Use SCALAR_INT_MODE_P,
10431 not INTEGRAL_MODE_P when widening extensions.
10432
10433 2003-01-10 Richard Henderson <rth@redhat.com>
10434
10435 * config/alpha/alpha.c (decl_has_samegp): True for !TREE_PUBLIC.
10436
10437 2003-01-10 Geoffrey Keating <geoffk@apple.com>
10438
10439 * ggc-page.c (ggc_collect): Avoid overflow computing
10440 min_expand.
10441
10442 * Makefile.in (RANLIB_FOR_TARGET): Use RANLIB when native.
10443 (RANLIB_TEST_FOR_TARGET): Delete. Don't pass down to sub-makes.
10444 Remove calls.
10445 * mklibgcc.in: Remove uses of RANLIB_TEST_FOR_TARGET.
10446
10447 2003-01-10 Jan Hubicka <jh@suse.cz>
10448
10449 * ifcvt.c (noce_try_addcc): Do not call emit_conditional_add
10450 with weird operands.
10451
10452 2003-01-10 Dale Johannesen <dalej@apple.com>
10453
10454 * calls.c (load_register_parameters): Add is_sibcall, sibcall_failure
10455 parameters. Call check_sibcall_argument_overlap if indicated.
10456 (check_sibcall_argument_overlap): Add mark_stored_args_map
10457 parameter. Don't mark parameter area as clobbered if not set.
10458 (expand_call): Adjust calls to above.
10459
10460 2003-01-10 Kelley Cook <kelleycook@comcast.net>
10461
10462 * configure.in (linker read-only and read-write section mixing):
10463 Squelch some assembler warnings.
10464 * configure: Likewise.
10465
10466 2003-01-10 Hartmut Penner <hpenner@de.ibm.com>
10467
10468 * doc/invoke.texi: Document -mtune, delete -mcpu
10469 option for S/390 and zSeries.
10470 * config/s390/s390.c (s390_tune_string) New variable.
10471 (s390_cpu_string) Delete variable.
10472 (override_options): Use s390_tune_string instead of
10473 s390_cpu_string.
10474 * config/s390/s390.h: (TARGET_OPTIONS) '-mtune' instead of '-mcpu'.
10475
10476 2003-01-10 Kazu Hirata <kazu@cs.umass.edu>
10477
10478 * config/h8300/h8300.md (*iorsi3_ashift_31): New.
10479
10480 2003-01-10 Josef Zlomek <zlomekj@suse.cz>
10481
10482 * jump.c (next_nonnote_insn_in_loop): New function.
10483 (copy_loop_headers): Use next_nonnote_insn_in_loop instead of
10484 next_nonnote_insn.
10485 (duplicate_loop_exit_test). Likewise.
10486
10487 2003-01-09 Geoffrey Keating <geoffk@apple.com>
10488
10489 Merge from pch-branch:
10490
10491 2003-01-06 Geoffrey Keating <geoffk@apple.com>
10492
10493 * ggc-page.c (ggc_pch_read): Update the statistics after a PCH
10494 load.
10495
10496 2002-12-24 Geoffrey Keating <geoffk@apple.com>
10497
10498 * cpplib.c (count_registered_pragmas): New function.
10499 (save_registered_pragmas): New function.
10500 (_cpp_save_pragma_names): New function.
10501 (restore_registered_pragmas): New function.
10502 (_cpp_restore_pragma_names): New function.
10503 * cpphash.h (_cpp_save_pragma_names): Prototype.
10504 (_cpp_restore_pragma_names): Likewise.
10505 * cpppch.c (struct save_macro_item): Split from save_macro_data.
10506 (struct save_macro_data): New field 'saved_pragmas'.
10507 (save_macros): Update for changes to struct save_macro_data.
10508 (cpp_prepare_state): Call _cpp_save_pragma_names, update
10509 for changes to struct save_macro_data.
10510 (cpp_read_state): Call _cpp_restore_pragma_names, update
10511 for changes to struct save_macro_data.
10512
10513 * cpppch.c (cpp_read_state): Restore the hashtable references
10514 in the cpp_reader.
10515
10516 * tree.h (built_in_decls): Mark for PCH.
10517
10518 * dbxout.c (lastfile): Don't mark for PCH.
10519
10520 * ggc.h: Document PCH calls into memory managers.
10521
10522 2002-12-18 Geoffrey Keating <geoffk@apple.com>
10523
10524 * doc/invoke.texi (Precompiled Headers): Document the
10525 directory form of PCH.
10526 * cppfiles.c (validate_pch): New function.
10527 (open_file_pch): Search suitably-named directories for PCH files.
10528
10529 2002-12-14 Geoffrey Keating <geoffk@apple.com>
10530
10531 * doc/gty.texi (GTY Options): Document chain_next, chain_prev,
10532 reorder options.
10533 (Type Information): Mention that the information is also
10534 used to implement PCH.
10535 * doc/passes.texi (Passes): Improve documentation of
10536 language-specific files.
10537
10538 2002-12-11 Geoffrey Keating <geoffk@apple.com>
10539
10540 * gengtype.c (struct write_types_data): Add reorder_note_routine field.
10541 (struct walk_type_data): Add reorder_fn field.
10542 (walk_type): Process 'reorder' option.
10543 (write_types_process_field): Reorder parameters to gt_pch_note_object,
10544 call reorder_note_routine.
10545 (write_func_for_structure): Reorder parameters to gt_pch_note_object.
10546 (ggc_wtd): Update for change to struct write_types_data.
10547 (pch_wtd): Likewise.
10548 * ggc.h (gt_pch_note_object): Reorder parameters.
10549 (gt_handle_reorder): New definition.
10550 (gt_pch_note_reorder): New prototype.
10551 * ggc-common.c (struct ptr_data): Add reorder_fn.
10552 (gt_pch_note_object): Reorder parameters.
10553 (gt_pch_note_reorder): New.
10554 (gt_pch_save): Call reorder_fn.
10555 * stringpool.c (gt_pch_n_S): Update for change to gt_pch_note_object.
10556
10557 * dbxout.c (cwd): Don't mark for PCH.
10558
10559 2002-12-09 Geoffrey Keating <geoffk@apple.com>
10560
10561 * gengtype.c (finish_root_table): Fix some warnings.
10562 (write_root): Handle TYPE_STRING.
10563 * ggc.h (gt_ggc_m_S): Add prototype.
10564 * stringpool.c (gt_ggc_m_S): New function.
10565
10566 2002-11-30 Geoffrey Keating <geoffk@apple.com>
10567
10568 * dwarf2out.c (dw2_string_counter): New.
10569 (AT_string_form): Use it.
10570 (same_dw_val_p): Update for removal of hashtable.h hash tables.
10571
10572 2002-11-22 Geoffrey Keating <geoffk@apple.com>
10573
10574 * dbxout.c: Include gt-dbxout.h.
10575 (lastfile): Mark for PCH/GGC.
10576 (cwd): Likewise.
10577 (struct typeinfo): Likewise.
10578 (typevec): Likewise.
10579 (typevec_len): Likewise.
10580 (next_type_number): Likewise.
10581 (struct dbx_file): Likewise.
10582 (current_file): Likewise.
10583 (next_file_number): Likewise.
10584 (dbxout_init): Allocate typevec, struct dbx_file with GGC.
10585 (dbxout_start_source_file): Allocate struct dbx_file with GGC.
10586 (dbxout_end_source_file): Don't free struct dbx_file.
10587 (dbxout_type): Use GGC to allocate typevec.
10588 * Makefile.in (dbxout.o): Depend on gt-dbxout.h, $(GGC_H).
10589 (GTFILES): Add dbxout.c.
10590 (gt-dbxout.h): New rule.
10591
10592 * Makefile.in (c-pch.o): Add debug.h as dependency.
10593 * c-pch.c: Include debug.h.
10594 (pch_init): Call start_source_file to keep nesting right.
10595 (c_common_read_pch): Add orig_name parameter. Call
10596 start_source_file debug hook. Call end_source_file debug hook.
10597 * c-common.h (c_common_read_pch): Update prototype.
10598 * cpplib.h (struct cpp_callbacks): Add fourth field to read_pch
10599 callback.
10600 * cppfiles.c (struct include_file): Add new field `header_name'.
10601 (find_or_create_entry): Default it to `name'.
10602 (open_file_pch): Set it to the original header file searched for.
10603 (stack_include_file): Don't stack an empty buffer, just handle
10604 PCH files immediately. Pass header_name field to read_pch callback.
10605
10606 2002-11-19 Geoffrey Keating <geoffk@apple.com>
10607
10608 * function.c (funcdef_no): Mark to be saved in a PCH.
10609
10610 2002-11-15 Geoffrey Keating <geoffk@apple.com>
10611
10612 * ggc-page.c (ggc_pch_read): Remove unused 'bmap_size'.
10613
10614 * cpppch.c (cpp_read_state): Correct size reallocated for 'defn'.
10615
10616 2002-11-14 Geoffrey Keating <geoffk@apple.com>
10617
10618 * optabs.h (code_to_optab): Add GTY marker.
10619
10620 2002-11-13 Geoffrey Keating <geoffk@apple.com>
10621
10622 * Makefile.in (GTFILES): Add cpplib.h.
10623 * c-common.h (struct c_common_identifier): Don't skip 'node' field.
10624 * c-decl.c (build_compound_literal): Don't use var_labelno.
10625 * cpplib.h (struct cpp_hashnode): Use gengtype to mark.
10626 * dwarf2asm.c (dw2_force_const_mem): Don't use const_labelno.
10627 * varasm.c (const_labelno): Use gengtype to mark.
10628 (var_labelno): Likewise.
10629 (in_section): Likewise.
10630 (in_named_name): Likewise.
10631 (struct in_named_entry): Likewise.
10632 (in_named_htab): Likewise.
10633 (set_named_section_flags): Use GGC to allocate struct in_named_entry.
10634 (init_varasm_once): Use GGC to allocate in_named_htab.
10635 * config/darwin.c (current_pic_label_num): Mark for PCH.
10636
10637 2002-11-11 Geoffrey Keating <geoffk@apple.com>
10638
10639 * ggc-simple.c (init_ggc_pch): New stub procedure.
10640 (ggc_pch_count_object): Likewise.
10641 (ggc_pch_total_size): Likewise.
10642 (ggc_pch_this_base): Likewise.
10643 (ggc_pch_alloc_object): Likewise.
10644 (ggc_pch_prepare_write): Likewise.
10645 (ggc_pch_write_object): Likewise
10646 (ggc_pch_finish): Likewise.
10647 (ggc_pch_read): Likewise.
10648
10649 2002-11-08 Geoffrey Keating <geoffk@apple.com>
10650
10651 * c-pch.c (c_common_write_pch): Write the macro definitions after
10652 the GCed data.
10653 (c_common_read_pch): Call cpp_prepare_state. Restore the macro
10654 definitions after the GCed data.
10655 * cpplib.c (save_macros): New.
10656 (reset_ht): New.
10657 (cpp_write_pch_deps): Split out of cpp_write_pch.
10658 (cpp_write_pch_state): Split out of cpp_write_pch.
10659 (cpp_write_pch): Delete.
10660 (struct save_macro_data): Delete.
10661 (cpp_prepare_state): New.
10662 (cpp_read_state): Erase and restore initial macro definitions.
10663 * cpplib.h (struct save_macro_data): Forward-declare.
10664 (cpp_write_pch_deps): Prototype.
10665 (cpp_write_pch_state): Prototype.
10666 (cpp_write_pch): Delete prototype.
10667 (cpp_prepare_state): Prototype.
10668 (cpp_read_state): Add fourth argument.
10669
10670 2002-11-04 Geoffrey Keating <geoffk@apple.com>
10671
10672 * gengtype.c (adjust_field_rtx_def): Don't use skip on valid fields.
10673 (write_array): Remove warning.
10674
10675 * gengtype.c (contains_scalar_p): New.
10676 (finish_root_table): Add the table to all languages, even if it's
10677 empty.
10678 (write_roots): Output gt_pch_scalar_rtab.
10679 * ggc-common.c (gt_pch_save): Write out scalars.
10680 (gt_pch_restore): Read scalars back.
10681
10682 * ggc-page.c (OBJECTS_IN_PAGE): New macro.
10683 (struct page_entry): Delete pch_page field.
10684 (ggc_recalculate_in_use_p): Use OBJECTS_IN_PAGE.
10685 (clear_marks): Likewise.
10686 (sweep_pages): Likewise.
10687 (poison_pages): Likewise.
10688 (ggc_print_statistics): Likewise.
10689 (ggc_pch_read): Don't free objects read from a PCH.
10690 Properly set up in_use_p and page_tails.
10691
10692 2002-10-25 Geoffrey Keating <geoffk@apple.com>
10693
10694 * gengtype.c (struct write_types_data): New.
10695 (struct walk_type_data): Make `cookie' const; add extra
10696 prev_val item; add `orig_s' field.
10697 (walk_type): Update prev_val[3].
10698 (write_types_process_field): New.
10699 (write_func_for_structure): Take write_types_data structure.
10700 (write_types): New.
10701 (ggc_wtd): New.
10702 (pch_wtd): New.
10703 (write_types_local_process_field): New.
10704 (gc_mark_process_field): Delete.
10705 (write_local_func_for_structure): New.
10706 (gc_mark_func_name): Delete.
10707 (write_gc_types): Delete.
10708 (write_local): New.
10709 (finish_root_table): Don't include 'ggc_' in PFX.
10710 (write_root): Rename from write_root. Fill pchw field of structures.
10711 (write_array): New.
10712 (write_roots): Rename from write_gc_roots. Split out to write_array.
10713 Update to changes to other routines. Write gt_pch_cache_rtab table.
10714 (main): Write PCH walking routines.
10715 * ggc-common.c: Include toplev.h, sys/mman.h.
10716 (ggc_mark_roots): For cache hashtables, also mark the hash table
10717 and the array of entries.
10718 (saving_htab): New.
10719 (struct ptr_data): New.
10720 (POINTER_HASH): New.
10721 (gt_pch_note_object): New.
10722 (saving_htab_hash): New.
10723 (saving_htab_eq): New.
10724 (struct traversal_state): New.
10725 (call_count): New.
10726 (call_alloc): New.
10727 (compare_ptr_data): New.
10728 (relocate_ptrs): New.
10729 (write_pch_globals): New.
10730 (struct mmap_info): New.
10731 (gt_pch_save): New.
10732 (gt_pch_restore): New.
10733 * ggc-page.c (ROUND_UP_VALUE): New.
10734 (ROUND_UP): New.
10735 (struct page_entry): Add field `pch_page'.
10736 (init_ggc): Use ROUND_UP.
10737 (struct ggc_pch_data): Declare.
10738 (init_ggc_pch): New.
10739 (ggc_pch_count_object): New.
10740 (ggc_pch_total_size): New.
10741 (ggc_pch_this_base): New.
10742 (ggc_pch_alloc_object): New.
10743 (ggc_pch_prepare_write): New.
10744 (ggc_pch_write_object): New.
10745 (ggc_pch_finish): New.
10746 (ggc_pch_read): New.
10747 * ggc.h (gt_pointer_operator): New.
10748 (gt_note_pointers): New.
10749 (gt_pch_note_object): New prototype.
10750 (gt_pointer_walker): New.
10751 (struct ggc_root_tab): Use gt_pointer_walker, add `pchw' field.
10752 (LAST_GGC_ROOT_TAB): Update.
10753 (gt_pch_cache_rtab): Declare.
10754 (gt_pch_scalar_rtab): Declare.
10755 (struct ggc_cache_tab): Use gt_pointer_walker, add `pchw' field.
10756 (LAST_GGC_CACHE_TAB): Update.
10757 (gt_pch_save_stringpool): Declare.
10758 (gt_pch_restore_stringpool): Declare.
10759 (gt_pch_p_S): Declare.
10760 (gt_pch_n_S): Declare.
10761 (struct ggc_pch_data): Forward-declare.
10762 (init_ggc_pch): Declare.
10763 (ggc_pch_count_object): Declare.
10764 (ggc_pch_total_size): Declare.
10765 (ggc_pch_this_base): Declare.
10766 (ggc_pch_alloc_object): Declare.
10767 (ggc_pch_prepare_write): Declare.
10768 (ggc_pch_write_object): Declare.
10769 (ggc_pch_finish): Declare.
10770 (ggc_pch_read): Declare.
10771 (gt_pch_save): Declare.
10772 (gt_pch_restore): Declare.
10773 * fold-const.c (size_int_type_wide): Allocate size_htab using GGC.
10774 * emit-rtl.c (init_emit_once): Allocate const_int_htab,
10775 const_double_htab, mem_attrs_htab using GGC.
10776 * c-pch.c: Include ggc.h.
10777 (pch_init): Allow reading PCH file back.
10778 (c_common_write_pch): Call gt_pch_save.
10779 (c_common_read_pch): Call gt_pch_restore.
10780 * c-parse.in (init_reswords): Delete now-untrue comment.
10781 Allocate ridpointers using GGC.
10782 * c-objc-common.c (c_objc_common_finish_file): Write PCH before
10783 calling expand_deferred_fns.
10784 * c-common.h (ridpointers): Mark for GTY machinery.
10785 * Makefile.in (stringpool.o): Update dependencies.
10786 (c-pch.o): Update dependencies.
10787 (ggc-common.o): Update dependencies.
10788 * stringpool.c: Include gt-stringpool.h.
10789 (gt_pch_p_S): New.
10790 (gt_pch_n_S): New.
10791 (struct string_pool_data): New.
10792 (spd): New.
10793 (gt_pch_save_stringpool): New.
10794 (gt_pch_restore_stringpool): New.
10795 * tree.c (init_ttree): Make type_hash_table allocated using GC.
10796
10797 2002-10-04 Geoffrey Keating <geoffk@apple.com>
10798
10799 * gengtype.c (adjust_field_rtx_def): Don't pass size_t to printf.
10800 (output_mangled_typename): Don't pass size_t to printf.
10801
10802 * tree.h (union tree_type_symtab): Add tag to `address' field.
10803 (union tree_decl_u2): Add tag to 'i' field.
10804 * varasm.c (union rtx_const_un): Add tags to all fields.
10805 * gengtype.c (struct walk_type_data): New.
10806 (output_escaped_param): Take struct walk_type_data parameter.
10807 (write_gc_structure_fields): Delete.
10808 (walk_type): New.
10809 (write_gc_marker_routine_for_structure): Delete.
10810 (write_func_for_structure): New.
10811 (gc_mark_process_field): New.
10812 (gc_mark_func_name): New.
10813 (gc_counter): Delete.
10814 (write_gc_types): Use write_func_for_structure.
10815 (write_gc_roots): Use walk_type.
10816
10817 2002-10-02 Geoffrey Keating <geoffk@apple.com>
10818
10819 * ggc-common.c (ggc_mark_roots): Delete 'x'.
10820 (ggc_splay_dont_free): Fix warning about unused 'x'.
10821 (ggc_print_common_statistics): Remove warnings.
10822
10823 2002-10-01 Mike Stump <mrs@apple.com>
10824
10825 * ggc-common.c (ggc_splay_alloc): Actually return the allocated area.
10826 * gengtype.c (write_gc_structure_fields): Handle param[digit]_is.
10827
10828 2002-09-01 Geoffrey Keating <geoffk@redhat.com>
10829 Catherine Moore <clm@redhat.com>
10830
10831 * Makefile (c-pch.o): Update dependencies.
10832 (LIBCPP_OBJS): Add cpppch.o.
10833 (cpppch.o): New.
10834 * c-common.c (c_common_init): Don't call pch_init here.
10835 * c-common.h (c_common_read_pch): Update prototype.
10836 * c-lex.c (c_common_parse_file): Call pch_init here.
10837 * c-opts.c (COMMAND_LINE_OPTIONS): Add -Winvalid-pch, -fpch-deps.
10838 (c_common_decode_option): Handle them.
10839 * c-pch.c: Include c-pragma.h.
10840 (save_asm_offset): Delete.
10841 (pch_init): Move contents of save_asm_offset into here, call
10842 cpp_save_state.
10843 (c_common_write_pch): Call cpp_write_pch.
10844 (c_common_valid_pch): Warn only when -Winvalid-pch. Call
10845 cpp_valid_state.
10846 (c_common_read_pch): Add NAME parameter. Call cpp_read_state.
10847 * cppfiles.c (stack_include_file): Update for change to
10848 parameters of cb.read_pch.
10849 * cpphash.h (struct cpp_reader): Add `savedstate' field.
10850 * cpplib.h (struct cpp_options): Add `warn_invalid_pch' and
10851 `restore_pch_deps' fields.
10852 (struct cpp_callbacks): Add NAME parameter to `read_pch'.
10853 (cpp_save_state): Prototype.
10854 (cpp_write_pch): Prototype.
10855 (cpp_valid_state): Prototype.
10856 (cpp_read_state): Prototype.
10857 * cpppch.c: New file.
10858 * flags.h (version_flag): Remove prototype.
10859 * mkdeps.c (deps_save): New.
10860 (deps_restore): New.
10861 * mkdeps.h (deps_save): Prototype.
10862 (deps_restore): Prototype.
10863 * toplev.c (late_init_hook): Delete.
10864 (version_flag): Make static again.
10865 (compile_file): Don't call late_init_hook.
10866 * toplev.h (late_init_hook): Delete.
10867 * doc/cppopts.texi: Document -fpch-deps.
10868 * doc/invoke.texi (Warning Options): Document -Winvalid-pch.
10869
10870 2002-08-27 Geoffrey Keating <geoffk@redhat.com>
10871
10872 * c-pch.c (c_common_write_pch): Rename from c_write_pch, change
10873 callers.
10874 (c_common_valid_pch): Rename from c_valid_pch, change callers.
10875 (c_common_read_pch): Rename from c_read_pch, change callers.
10876
10877 * c-opts.c (COMMAND_LINE_OPTIONS): Allow -output-pch= to have
10878 a space between it and its argument.
10879
10880 2002-08-24 Geoffrey Keating <geoffk@redhat.com>
10881
10882 * c-pch.c: New file.
10883 * toplev.h (late_init_hook): Declare.
10884 * toplev.c (late_init_hook): Define.
10885 (version_flag): Make globally visible.
10886 (compile_file): Call late_init_hook.
10887 (init_asm_output): Make output file seekable.
10888 * gcc.c (default_compilers): Update c-header rule.
10889 * flags.h (version_flag): Declare.
10890 * cpplib.h (struct cpp_callbacks): Add 'valid_pch' and 'read_pch'
10891 fields.
10892 * cppfiles.c (struct include_file): Add 'pch' field.
10893 (INCLUDE_PCH_P): New.
10894 (open_file_pch): New.
10895 (stack_include_file): Handle PCH files specially.
10896 (find_include_file): Call open_file_pch instead of open_file.
10897 (_cpp_read_file): Explain why open_file is used instead of
10898 open_file_pch.
10899 * c-opts.c (c_common_decode_option): Correct OPT__output_pch case.
10900 * c-objc-common.c (c_objc_common_finish_file): Call c_write_pch.
10901 * c-lex.c (init_c_lex): Set valid_pch and read_pch fields
10902 in cpplib callbacks.
10903 * c-common.c (pch_file): Correct comment.
10904 (allow_pch): Define.
10905 (c_common_init): Call pch_init.
10906 * c-common.h (allow_pch): Declare.
10907 (pch_init): Declare.
10908 (c_valid_pch): Declare.
10909 (c_read_pch): Declare.
10910 (c_write_pch): Declare.
10911 * Makefile.in (c-pch.o): New.
10912 (C_AND_OBJC_OBJS): Add c-pch.o.
10913 * doc/invoke.texi (Precompiled Headers): Add index entries,
10914 complete truncated paragraph.
10915
10916 2002-08-17 Geoffrey Keating <geoffk@redhat.com>
10917
10918 * c-common.c: (pch_file): Define.
10919 * c-common.h (pch_file): Declare.
10920 * c-opts.c (COMMAND_LINE_OPTIONS): Add --output-pch=.
10921 (missing_arg): Require --output-pch= to have an argument.
10922 (c_common_decode_option): Handle --output-pch=.
10923 * gcc.c: Document new %V.
10924 (default_compilers): Handle compiling C header files.
10925 (do_spec_1): Implement %V.
10926 (main): Handle "gcc foo.h" without trying to run linker.
10927 * doc/invoke.texi (Invoking GCC): Add new menu item for PCH.
10928 (Overall Options): Document what the driver does with header files,
10929 document new -x option possibilities.
10930 (Invoking G++): More documentation for PCH.
10931 (Precompiled Headers): New.
10932
10933 2002-08-09 Geoffrey Keating <geoffk@redhat.com>
10934
10935 * ggc.h: Don't include varray.h. Rearrange functions to be more
10936 organized.
10937 (ggc_add_root): Delete.
10938 (ggc_mark_rtx): Delete.
10939 (ggc_mark_tree): Delete.
10940 (struct ggc_statistics): Remove contents.
10941 * ggc-common.c: Remove unneeded includes.
10942 (struct ggc_root): Delete.
10943 (roots): Delete.
10944 (ggc_add_root): Delete.
10945 (ggc_mark_roots): Don't mark `roots'. Call ggc_mark_stringpool.
10946 (ggc_print_common_statistics): Remove most of the contents.
10947 * Makefile.in (GGC_H): No longer uses varray.h.
10948 (ggc-common.o): Update dependencies.
10949 (c-parse.o): Add varray.h to dependencies.
10950 (c-common.o): Add varray.h.
10951 * stringpool.c (mark_ident): Use mangled name for tree marker routine.
10952 (mark_ident_hash): Rename to ggc_mark_stringpool.
10953 (init_stringpool): Don't use ggc_add_root.
10954 * c-parse.in: Include varray.h.
10955 * c-common.c: Include varray.h.
10956 * objc/Make-lang.in (objc-act.o): Add varray.h.
10957 * objc/objc-act.c: Include varray.h.
10958
10959 2002-07-25 Geoffrey Keating <geoffk@redhat.com>
10960
10961 * dwarf2out.c (dw_cfi_oprnd2_desc): Fix ISO-only function definition.
10962 (dw_cfi_oprnd1_desc): Likewise.
10963
10964 2002-07-17 Geoffrey Keating <geoffk@redhat.com>
10965
10966 * config/alpha/alpha.c (struct alpha_links): Use gengtype to mark;
10967 move out of ifdef.
10968 (alpha_links): Use gengtype to mark; move out of ifdef.
10969 (mark_alpha_links_node): Delete.
10970 (mark_alpha_links): Delete.
10971 (alpha_need_linkage): Use GGC to allocate splay tree, struct
10972 alpha_links, strings. Don't use ggc_add_root.
10973 * ggc-common.c (ggc_splay_alloc): New.
10974 (ggc_splay_dont_free): New.
10975 * ggc.h (ggc_mark_rtx): Update for changed name mangling.
10976 (ggc_mark_tree): Likewise.
10977 (splay_tree_new_ggc): New.
10978 (ggc_splay_alloc): Declare.
10979 (ggc_splay_dont_free): Declare.
10980 * dwarf2asm.c: Include gt-dwarf2asm.h.
10981 (mark_indirect_pool_entry): Delete.
10982 (mark_indirect_pool): Delete.
10983 (indirect_pool): Use gengtype to mark.
10984 (dw2_force_const_mem): Don't use ggc_add_root.
10985 * Makefile.in (dwarf2asm.o): Depend on gt-dwarf2asm.h.
10986 (GTFILES): Add SPLAY_TREE_H, dwarf2asm.c.
10987 (gt-dwarf2asm.h): Depend on s-gtype.
10988
10989 2002-07-08 Geoffrey Keating <geoffk@redhat.com>
10990
10991 * tree.h (union tree_type_symtab): Mark `die' field.
10992 * Makefile.in (dwarf2out.o): Update dependencies.
10993 * dwarf2out.c: Use GGC to allocate all structures. Convert to htab_t
10994 hash tables.
10995 (dw_cfi_oprnd1_desc): New function.
10996 (dw_cfi_oprnd2_desc): New function.
10997 (indirect_string_alloc): Delete.
10998 (debug_str_do_hash): New function.
10999 (debug_str_eq): New function.
11000 (mark_limbo_die_list): Delete.
11001 (dwarf2out_init): Don't call ggc_add_root.
11002
11003 2003-01-09 Vladimir Makarov <vmakarov@redhat.com>
11004
11005 The following changes are merged from itanium-sched-branch:
11006
11007 2003-01-08 David Edelsohn <edelsohn@gnu.org>
11008
11009 * doc/md.texi: Clarify assignment of units to automata description.
11010
11011 2003-01-08 Vladimir Makarov <vmakarov@redhat.com>
11012
11013 * genautomata.c (unit_decl): Remove members
11014 `the_same_automaton_unit' and
11015 `the_same_automaton_message_reported_p'.
11016 (process_unit_to_form_the_same_automaton_unit_lists,
11017 form_the_same_automaton_unit_lists_from_regexp,
11018 form_the_same_automaton_unit_lists, the_same_automaton_lists):
11019 Remove them.
11020 (annotation_message_reported_p): New global variable.
11021 (check_unit_distribution_in_reserv,
11022 check_regexp_units_distribution): New functions.
11023 (check_unit_distributions_to_automata): Rewrite it.
11024
11025 2003-01-04 Vladimir Makarov <vmakarov@redhat.com>
11026
11027 * genautomata.c (form_the_same_automaton_unit_lists_from_regexp):
11028 Use continue instead of break if cycle is too big.
11029
11030 2002-12-20 Vladimir Makarov <vmakarov@redhat.com>
11031
11032 * genautomata.c (check_unit_distributions_to_automata): Output at
11033 most one message for a unit.
11034 (process_unit_to_form_the_same_automaton_unit_lists): Check
11035 automaton of units instead of units themself.
11036
11037 * doc/md.texi: Describe the constraint about assigning unit to
11038 automata.
11039
11040 2002-12-20 Jan Hubicka <jH@suse.cz>
11041 Vladimir Makarov <vmakarov@redhat.com>
11042
11043 * genautomata.c (unit_decl): Add new members `min_occ_cycle_num'
11044 and `in_set_p'.
11045 (gen_cpu_unit): Initialize the new members.
11046 (process_regexp_cycles): Calculate minimal finish cycle too. Set
11047 up `min_occ_cycle_num'.
11048 (evaluate_max_reserv_cycles): Change the function call.
11049 (CLEAR_BIT): New macro.
11050 (states_union, state_shift): Use the mask.
11051 (initiate_excl_sets, form_reserv_sets_list): Set up `in_set_p'.
11052 (form_reservs_matter): New function.
11053 (make_automaton): Call the function and use the mask.
11054 (estimate_one_automaton_bound): Take `min_occ_cycle_num' into
11055 account.
11056
11057 2002-12-17 Vladimir Makarov <vmakarov@redhat.com>
11058
11059 * config/ia64/itanium2.md (lfetch): Change the insn reservation.
11060
11061 2002-12-17 Vladimir Makarov <vmakarov@redhat.com>
11062
11063 * config/ia64/ia64.c (bundling): Try to insert 2 nops for M insn
11064 for Itanium.
11065
11066 2002-12-17 Vladimir Makarov <vmakarov@redhat.com>
11067
11068 * config/ia64/ia64.c (ia64_override_options): Make itanium2 as
11069 default cpu.
11070
11071 2002-12-17 Vladimir Makarov <vmakarov@redhat.com>
11072 2002-10-31 Dale Johannesen <dalej@apple.com>
11073
11074 * haifa-sched.c (find_set_reg_weight): New function.
11075 (find_insn_reg_weight): Use the new function.
11076 (schedule_block): Do sorting ready queue always
11077 after insn issue.
11078
11079 2002-11-27 Vladimir Makarov <vmakarov@redhat.com>
11080
11081 * config/ia64/ia64.c (bundling): Use MFI template instead of MLX.
11082
11083 2002-11-19 Vladimir Makarov <vmakarov@redhat.com>
11084
11085 * haifa-sched.c (choice_entry): New structure.
11086 (choice_stack, cycle_issued_insns): New variables.
11087 (max_issue): Rewrite it.
11088 (choose_ready): Set up ready_try for unknown insns too.
11089 (schedule_block): Allocate and free choice_stack. Set up
11090 and modify cycle_issued_insns.
11091
11092 * config/ia64/ia64.c (issue_nops_and_insn): Combine insn issue
11093 with and without filling the bundle.
11094 (bundling): Combine calls of issue_nops_and_insn.
11095
11096 2002-10-17 Vladimir Makarov <vmakarov@redhat.com>
11097
11098 * config/ia64/itanium1.md: New file.
11099
11100 * config/ia64/itanium2.md: New file.
11101
11102 * config/ia64/ia64.md: Move DFA descriptions into the new files.
11103 Remove the old pipeline description.
11104
11105 * config/ia64/ia64.c (ia64_override_options): Add aliases of
11106 itanium processor names.
11107
11108 2002-10-16 Vladimir Makarov <vmakarov@redhat.com>
11109
11110 * config/ia64/ia64.c (bundling): Print states for Itanium2 too.
11111 (ia64_reorg): Set up queried unit codes for Itanium2 too.
11112
11113 * config/ia64/ia64.md: Add descriptions for Itanium2.
11114
11115 2002-10-08 Vladimir Makarov <vmakarov@redhat.com>
11116
11117 * config/ia64/ia64.h (processor_type): New enumeration.
11118 (ia64_tune, ia64_tune_string): New external declarations.
11119 (TARGET_OPTIONS): Add option `tune='.
11120
11121 * config/ia64/ia64.c (ia64_tune, ia64_tune_string): New global
11122 variables.
11123 (ia64_override_options): Set up `ia64_tune'.
11124 (ia64_sched_reorder2): Set up `clocks' only for Itanium.
11125 (ia64_dfa_new_cycle): Set up `add_cycles' only for Itanium.
11126 (bundling): Add nops for MM-insns only for Itanium.
11127 (ia64_reorg): Allocate and free `clocks' and `add_cycles' only for
11128 Itanium.
11129
11130 * config/ia64/ia64.md (cpu): New attribute.
11131 (DFA description): Enable it only for Itanium.
11132
11133 2002-10-08 Vladimir Makarov <vmakarov@redhat.com>
11134 Richard Henderson <rth@redhat.com>
11135
11136 * config/ia64/ia64.h (MASK_TUNE_STOP_BITS): Rename it to
11137 MASK_EARLY_STOP_BITS.
11138 (TARGET_TUNE_STOP_BITS): Rename it to TARGET_EARLY_STOP_BITS.
11139 (TARGET_SWITCHES): Rename option `tune-stop-bits' to
11140 `early-stop-bits'.
11141
11142 * config/ia64/ia64.c (ia64_dfa_new_cycle,
11143 final_emit_insn_group_barriers): Use TARGET_EARLY_STOP_BITS
11144 instead of TARGET_TUNE_STOP_BITS.
11145
11146 * doc/invoke.texi: Rename option `-mtune-stop-bits' to
11147 `-mearly-stop-bits'.
11148
11149 * config/ia64/ia64.c (automata_option "v"): Comment it.
11150
11151 2002-10-07 Vladimir Makarov <vmakarov@redhat.com>
11152
11153 * config/ia64/ia64.h (MASK_TUNE_STOP_BITS, TARGET_TUNE_STOP_BITS):
11154 New macros.
11155 (TARGET_SWITCHES): Add entries for the new option.
11156
11157 * config/ia64/ia64.c (dfa_stop_insn, last_scheduled_insn, rtx
11158 dfa_pre_cycle_insn, ia64_nop): Don't make them as roots for GC.
11159 (stops_p, stop_before_p, clocks_length, clocks, add_cycles): New
11160 global variables.
11161 (ia64_sched_reorder2): Set up `clocks'.
11162 (ia64_variable_issue): Set up `stops_p' and reset `stop_before_p'.
11163 (ia64_dfa_new_cycle): Set up add_cycle. Permit sorting ready
11164 queue when TARGET_TUNE_STOP_BITS.
11165 (bundling): Insert additional nops for MM-insns.
11166 (final_emit_insn_group_barriers): Add insertion of stop bits
11167 according `stops_p'.
11168 (ia64_reorg): Initiate the new varibales.
11169
11170 * doc/invoke.texi: Add description of option `-mtune-stop-bits'.
11171
11172 2002-10-02 Vladimir Makarov <vmakarov@redhat.com>
11173
11174 * haifa-sched.c (schedule_block): Modify INSN_TICK of depended
11175 insns at the end of block insn scheduling.
11176
11177 2002-09-30 Vladimir Makarov <vmakarov@redhat.com>
11178
11179 * sched-deps.c (remove_dependence, group_leader): Remove it.
11180 (add_dependence): Add dependence to group leader to.
11181 (set_sched_group_p): Add dependence to the first insn of the
11182 schedule group too.
11183 (sched_analyze_insn): Make dependence to jump as anti-dependence.
11184 Change true dependence by anti-dependence when
11185 `reg_pending_barrier'.
11186
11187 * sched-rgn.c (init_ready_list, can_schedule_ready_p,
11188 add_branch_dependences): Ignore schedule groups.
11189
11190 * sched-ebb.c (init_ready_list): Ditto.
11191
11192 * (move_insn, set_priorities): Ditto.
11193
11194 * config/ia64/ia64.c (ia64_sched_init): Check that schedule group
11195 flag is clear after reload.
11196 (adjust_cost): Change cost only for output dependencies.
11197
11198 * config/ia64/ia64.md: Add more insns into bypass for MM-insns.
11199
11200 2002-09-26 Vladimir Makarov <vmakarov@redhat.com>
11201
11202 * Makefile.in (sched-ebb.o): Add `$(TARGET_H)' to the entry.
11203
11204 * target.h (gcc_target): Add member
11205 `dependencies_evaluation_hook'.
11206
11207 * target-def.h (TARGET_SCHED_DEPENDENCIES_EVALUATION_HOOK): New
11208 macro.
11209 (TARGET_SCHED): Add initiatialization of the new member.
11210
11211 * sched-ebb.c: Include `target.h'.
11212 (schedule_ebb): Call `dependencies_evaluation_hook'.
11213
11214 * sched-rgn.c (schedule_region): Call
11215 `dependencies_evaluation_hook'.
11216
11217 * config/ia64/ia64.c (TARGET_SCHED_DEPENDENCIES_EVALUATION_HOOK):
11218 New macro.
11219 (ia64_dependencies_evaluation_hook): New function.
11220
11221 * doc/tm.texi (TARGET_SCHED_DEPENDENCIES_EVALUATION_HOOK):
11222 Describe the new hook.
11223
11224 2002-09-25 Vladimir Makarov <vmakarov@redhat.com>
11225
11226 * target.h (gcc_target): Add members
11227 `first_cycle_multipass_dfa_lookahead_guard' and `dfa_new_cycle'.
11228
11229 * target-def.h (TARGET_SCHED_DFA_NEW_CYCLE,
11230 TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD): New
11231 macros.
11232 (TARGET_SCHED): Add initiatialization of the new members.
11233
11234 * haifa-sched.c (schedule_insn): Update last_clock_var for the 1st
11235 insn scheduling too.
11236 (choose_ready): Use `first_cycle_multipass_dfa_lookahead_guard' to
11237 initialize `ready_try'.
11238 (schedule_block): Use `dfa_new_cycle'. Sort `ready' only unless
11239 `dfa_new_cycle' says not to do it.
11240
11241 * config/ia64/ia64.md: Add DFA Itanium 1 description for insn
11242 bundling.
11243
11244 * config/ia64/ia64.h (CPU_UNITS_QUERY): New macro.
11245
11246 * config/ia64/ia64.c: Include `hashtab.h'.
11247 (ia64_first_cycle_multipass_dfa_lookahead_guard,
11248 ia64_dfa_new_cycle, final_emit_insn_group_barriers,
11249 ia64_dfa_sched_reorder, get_free_bundle_state, free_bundle_state,
11250 initiate_bundle_states, finish_bundle_states, bundle_state_hash,
11251 bundle_state_eq_p, insert_bundle_state,
11252 initiate_bundle_state_table, finish_bundle_state_table,
11253 try_issue_nops, try_issue_insn, issue_nops_and_insn, get_max_pos,
11254 get_template, get_next_important_insn, bundling): New functions.
11255 (ia64_internal_sched_reorder): Remove it.
11256 (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD,
11257 TARGET_SCHED_DFA_NEW_CYCLE): New macros.
11258 (ia64_safe_itanium_requires_unit0): Remove it.
11259 (group_barrier_needed_p): Place group barrier right before a real
11260 insn.
11261 (bundle, ia64_packet, NR_PACKETS, type_names, packets, packets):
11262 Remove them.
11263 (bundle_name): New variable.
11264 (_0mii_, _0mmi_, _0mfi_, _0mmf_, _0bbb_, _0mbb_, _0mib_, _0mmb_,
11265 _0mfb_, _0mlx_, _1mii_, _1mmi_, _1mfi_, _1mmf_, _1bbb_, _1mbb_,
11266 _1mib_, _1mmb_, _1mfb_, _1mlx_, pos_1, pos_2, pos_3, pos_4, pos_5,
11267 pos_6, dfa_stop_insn, last_scheduled_insn, dfa_state_size,
11268 temp_dfa_state, prev_cycle_state): New global variables.
11269 (insn_matches_slot, maybe_rotate, finish_last_head,
11270 rotate_one_bundle, rotate_one_bundles, nop_cycles_until,
11271 cycle_end_fill_slots, packet_matches_p, get_split, find_best_insn,
11272 find_best_packet, itanium_reorder, dump_current_packet,
11273 schedule_stop, gen_nop_type, ia64_emit_nops): Remove them.
11274 (sched_data, sched_ready, sched_types): Remove them.
11275 (ia64_sched_init): Initiate only `last_scheduled_insn' and call
11276 `init_insn_group_barriers'.
11277 (ia64_sched_reorder, ia64_sched_reorder2): Call
11278 ia64_dfa_sched_reorder.
11279 (ia64_variable_issue): Rewrite it.
11280 (bundle_state): New structure.
11281 (index_to_bundle_states, bundle_states_num,
11282 allocated_bundle_states_chain, free_bundle_state_chain): New
11283 global variables.
11284 (ia64_sched_finish): Add stop bits and call `bundling' after the
11285 2nd insn scheduling.
11286 (ia64_use_dfa_pipeline_interface): Return zero always.
11287 (ia64_first_cycle_multipass_dfa_lookahead): Return 6 for the 2nd
11288 insn scheduling.
11289 (ia64_init_dfa_pre_cycle_insn): Initialize `dfa_state_size',
11290 `temp_dfa_state', `prev_cycle_state', and `dfa_stop_insn'.
11291 (ia64_reorg): Add bundling insns.
11292
11293 * doc/tm.texi
11294 (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD,
11295 TARGET_SCHED_DFA_NEW_CYCLE): Describe the new hooks.
11296
11297 2002-09-23 Vladimir Makarov <vmakarov@redhat.com>
11298
11299 * config/ia64/ia64.md: Add Itanium1 DFA description.
11300 (itanium_class): Add `nop' and `pre_cycle'. Add
11301 define_function_unit for `nop'.
11302 (nop): Change attribute `itanium_class'.
11303 (pre_cycle): New define_insn.
11304
11305 * config/ia64/ia64-protos.h (bundling_p): New external variable.
11306 (ia64_st_address_bypass_p, ia64_ld_address_bypass_p,
11307 ia64_produce_address_p): New function prototypes.
11308
11309 * config/ia64/ia64.c (bundling_p): New global variable.
11310 (ia64_use_dfa_pipeline_interface,
11311 ia64_first_cycle_multipass_dfa_lookahead,
11312 ia64_init_dfa_pre_cycle_insn, ia64_dfa_pre_cycle_insn): New
11313 functions.
11314 (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE,
11315 TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD,
11316 TARGET_SCHED_INIT_DFA_PRE_CYCLE_INSN,
11317 TARGET_SCHED_DFA_PRE_CYCLE_INSN): New macros.
11318 (ia64_sched_init, ia64_sched_reorder, ia64_sched_reorder2,
11319 ia64_variable_issue, ia64_sched_finish): Do nothing before reload.
11320 (dfa_pre_cycle_insn): New variable.
11321
11322 2002-09-20 Vladimir Makarov <vmakarov@redhat.com>
11323
11324 * rtl.def (FINAL_PRESENCE_SET, FINAL_ABSENCE_SET): New
11325 constructions.
11326
11327 * genattrtab.h (gen_final_presence_set, gen_final_absence_set):
11328 New function prototypes.
11329
11330 * genattrtab.c (main): Process the new constructions.
11331
11332 * genautomata.c (gen_presence_absence_set,
11333 process_presence_absence_names, process_presence_absence_patterns,
11334 add_presence_absence, check_absence_pattern_sets): Add parameter
11335 `final_p'.
11336 (unit_decl): Add new members `final_presence_list' and
11337 `final_absence_list'.
11338 (unit_pattern_rel_decl): Add new member `final_p'.
11339 (gen_final_presence_set, gen_final_absence_set): New functions.
11340 (process_decls): Use member `final_p'.
11341 (temp_reserv): New global variable.
11342 (reserv_sets_are_intersected): Add processing `final_presence_set'
11343 and `final_absence_set'.
11344 (initiate_states): Allocate `temp_reserv'.
11345 (unit_final_presence_set_table, unit_final_absence_set_table): New
11346 gloabal variables.
11347 (initiate_presence_absence_pattern_sets): Initiate them.
11348 (NDFA_to_DFA): Fix typo.
11349 (output_description): Output `final_presence_set' and
11350 `final_absence_set'.
11351
11352 * doc/md.texi (final_presence_set, final_absence_set): Describe
11353 them.
11354
11355 2002-09-20 Vladimir Makarov <vmakarov@redhat.com>
11356
11357 * genautomata.c (transform_3): Process a missing case (nothing on
11358 unit place).
11359
11360 2002-09-20 Vladimir Makarov <vmakarov@redhat.com>
11361
11362 * rtl.def (DEFINE_QUERY_CPU_UNIT, AUTOMATA_OPTION): Change
11363 comments about queried units and the minimization.
11364
11365 * doc/md.texi: Ditto.
11366
11367 * genautomata.c (create_composed_state): Return nonzero if the new
11368 state has been created.
11369 (first_cycle_unit_presence): New function.
11370 (state_is_differed): Add new parameter. Use the new function.
11371 Take queried units into account.
11372 (partition_equiv_class): Pass additional parameter to
11373 `state_is_differed'.
11374 (merge_states): Process composed states too.
11375 (build_automaton, create_automata, output_min_issue_delay_table,
11376 output_tables, output_statistics): Output more information.
11377 (output_reserved_units_table): Use function
11378 `first_cycle_unit_presence'.
11379 (output_tables): Output table of queried units even if the
11380 minimization is switched on.
11381 (write_automata): Output code for querying units even if the
11382 minimization is switched on.
11383
11384 2002-09-19 Vladimir Makarov <vmakarov@redhat.com>
11385
11386 * rtl.def (PRESENCE_SET, ABSENCE_SET): Add comments about extended
11387 syntax of the constructions.
11388
11389 * doc/md.texi (PRESENCE_SET, ABSENCE_SET): Add description of
11390 extended syntax of the constructions.
11391
11392 * genautomata.c (unit_rel_decl): Rename it to
11393 `unit_pattern_rel_decl'.
11394 (pattern_set_el, pattern_reserv): New structures.
11395 (pattern_set_el_t, pattern_reserv_t): New types.
11396 (gen_presence_absence_set): New function.
11397 (process_presence_absence): Remove it.
11398 (process_presence_absence_names,
11399 process_presence_absence_patterns): New functions.
11400 (get_presence_absence_set): Remove it.
11401 (initiate_presence_absence_sets): Rename it on
11402 `initiate_presence_absence_pattern_sets'. Use new function
11403 `form_reserv_sets_list'.
11404 (form_reserv_sets_list, check_presence_pattern_sets,
11405 check_absence_pattern_sets, output_pattern_set_el_list): New
11406 functions.
11407 (unit_decl): Change types of members `presence_list' and
11408 `absence_list'.
11409 (unit_rel_decl): Rename member `names_num' to `all_names_num'.
11410 (decl): Change types of members `excl', `presence', and `absence'.
11411 (get_str_vect): Rename `par_flag' to `paren_p'. Add null element
11412 at the end of the vector.
11413 (gen_cpu_unit, gen_query_cpu_unit, gen_bypass, gen_excl_set,
11414 gen_automaton, gen_regexp_repeat, gen_regexp_allof,
11415 gen_regexp_oneof, gen_regexp_sequence): Use boolean values.
11416 (gen_presence_set, gen_absence_set): Use new function
11417 `gen_presence_absence_set'.
11418 (add_presence_absence): Process `pattern_list' instead of
11419 `source_list'.
11420 (process_decls): USe new functions
11421 `process_presence_absence_names' and
11422 `process_presence_absence_patterns'.
11423 (reserv_sets_are_intersected): Use new function
11424 `check_presence_pattern_sets'.
11425 (presence_set, absence_set): Remove them.
11426 (unit_presence_set_table, unit_absence_set_table): New global
11427 variables.
11428 (output_description): Use new function
11429 `output_pattern_set_el_list'.
11430 (generate): Use `initiate_presence_absence_pattern_sets'.
11431
11432 2002-09-18 Vladimir Makarov <vmakarov@redhat.com>
11433
11434 * genattr.c (main): Add output of prototype of new interface
11435 function `dfa_clean_insn_cache'.
11436
11437 * genautomata.c (output_dfa_clean_insn_cache_func): New function.
11438 (DFA_CLEAN_INSN_CACHE_FUNC_NAME): New macro.
11439 (output_dfa_start_func): Use function `dfa_clean_insn_cache' in
11440 the generated code.
11441 (write_automata): Call the new function.
11442
11443 2003-01-09 Jan Hubicka <jh@suse.cz>
11444
11445 * i386.md (unit, prefix_0f, memory attributes): Hanlde sseicvt
11446 correctly.
11447
11448 2003-01-09 Paolo Carlini <pcarlini@unitus.it>
11449
11450 * doc/tm.texi (EXTRA_ADDRESS_CONSTRAINT): Fix typo.
11451
11452 2003-01-09 J"orn Rennecke <joern.rennecke@superh.com>
11453
11454 * defaults.h (EXTRA_MEMORY_CONSTRAINT): Add STR argument.
11455 (EXTRA_ADDRESS_CONSTRAINT): Likewise.
11456 (CONSTRAINT_LEN): Provide default definition.
11457 (CONST_OK_FOR_CONSTRAINT_P): Likewise.
11458 (CONST_DOUBLE_OK_FOR_CONSTRAINT_P): Likewise.
11459 (EXTRA_CONSTRAINT_STR): Likewise.
11460 (REG_CLASS_FROM_CONSTRAINT): Define.
11461 * genoutput.c (check_constraint_len, constraint_len): New functions.
11462 (validate_insn_alternatives): Check CONSTRAINT_LEN for each
11463 constraint / modifier.
11464 (gen_insn): Call check_constraint_len.
11465 * local-alloc.c (block_alloc): Update to use new macros / pass
11466 second argument to EXTRA_{MEMORY,ADDRESS}_CONSTRAINT.
11467 * ra-build.c (handle_asm_insn): Likewise.
11468 * recog.c (asm_operand_ok, preprocess_constraints): Likewise.
11469 (constrain_operands, peep2_find_free_register): Likewise.
11470 * regclass.c (record_operand_costs, record_reg_classes): Likewise.
11471 * regmove.c (find_matches): Likewise.
11472 * reload.c (push_secondary_reload, find_reloads): Likewise.
11473 (alternative_allows_memconst): Likewise.
11474 * reload1.c (maybe_fix_stack_asms): Likewise.
11475 (reload_cse_simplify_operands): Likewise.
11476 * stmt.c (parse_output_constraint, parse_input_constraint): Likewise.
11477 * doc/tm.texi (CONSTRAINT_LEN, REG_CLASS_FROM_CONSTRAINT): Document.
11478 (CONST_OK_FOR_CONSTRAINT_P): Likewise.
11479 (CONST_DOUBLE_OK_FOR_CONSTRAINT_P, EXTRA_CONSTRAINT_STR): Likewise.
11480 (EXTRA_MEMORY_CONSTRAINT, EXTRA_ADDRESS_CONSTRAINT): Add STR argument.
11481 * config/s390/s390.h (EXTRA_MEMORY_CONSTRAINT): Likewise.
11482
11483 * sh.h (OVERRIDE_OPTIONS): Allow first scheduling pass for SH5.
11484
11485 2003-01-09 Kazu Hirata <kazu@cs.umass.edu>
11486
11487 * config/h8300/h8300.md (*extzv_1_r_h8300): Correct the insn
11488 length.
11489 (*extzv_1_r_h8300hs): Likewise.
11490 (*extzv_1_r_inv_h8300): Likewise.
11491 (*extzv_1_r_inv_h8300hs): Likewise.
11492
11493 2003-01-09 Kazu Hirata <kazu@cs.umass.edu>
11494
11495 * config/h8300/h8300.h (PREDICATE_CODES): New.
11496
11497 2003-01-09 Kazu Hirata <kazu@cs.umass.edu>
11498
11499 * config/h8300/h8300.md (*addsi3_upper): New.
11500 (*iorsi3_shift): Likewise.
11501 (two splitters): Likewise.
11502 (*addsi3_shift): Likewise.
11503 (two splitters): Likewise.
11504
11505 2003-01-09 Josef Zlomek <zlomj9am@artax.karlin.mff.cuni.cz>
11506
11507 * Makefile.in (optabs.o): Add dependency on basic-block.h.
11508 * basic-block.h (control_flow_insn_p): Fuction was exported.
11509 * cfgbuild.c (control_flow_insn_p): Fuction was made non-static.
11510 * optabs.c (emit_libcall_block): Emit REG_LIBCALL and REG_RETVAL
11511 notes only when the region is contained in a single basic block.
11512
11513 2003-01-09 Eric Botcazou <ebotcazou@libertysurf.fr>
11514
11515 PR inline-asm/8832
11516 * tree.h (expand_asm): New prototype.
11517 * stmt.c (expand_asm): Set the MEM_VOLATILE_P flag if instructed
11518 to do so.
11519 * c-semantics (genrtl_asm_stmt): Pass the RID_VOLATILE qualifier
11520 down to expand_asm.
11521 * c-typeck.c (simple_asm_stmt): Set the RID_VOLATILE qualifier.
11522 * rtlanal.c (volatile_insn_p) [ASM_INPUT]: Test the MEM_VOLATILE_P flag.
11523 (volatile_refs_p) [ASM_INPUT]: Likewise.
11524 (side_effects_p) [ASM_INPUT]: Likewise.
11525
11526 2003-01-09 Jan Hubicka <jh@suse.cz>
11527
11528 * i386.md (*mul*): FIx constraints; remove confused comment; fix
11529 athlon_decode attributes
11530 (imul/k8 optimization peep2s): New.
11531
11532 * athlon.md (athlon_ssecmp*): Handle ssecomi as well.
11533 * i386.md (type attribute): Add ssecomi.
11534 (unit, memory, prefix attributes): Handle ssecomi.
11535 (cvt?2? patterns): Fix athlon_decode attribute
11536 (comi patterns): Set attribute to ssecomi.
11537
11538 PR target/8343
11539 * m68k.md (umulsidi, mulsidi expanders): Use register operand.
11540
11541 2003-01-09 Richard Sandiford <rsandifo@redhat.com>
11542
11543 * config/mips/mips.h (PREDICATE_CODES): Add ADDRESSOF for predicates
11544 that match register_operands.
11545 * config/mips/mips.c (reg_or_0_operand, true_reg_or_0_operand): Make
11546 register_operand the default case.
11547
11548 2003-01-09 Eric Botcazou <ebotcazou@libertysurf.fr>
11549
11550 PR c/8032
11551 * c-typeck.c (process_init_element) [RECORD_TYPE]: For
11552 an empty element, do not advance the pointer to unfilled
11553 fields if there are pending initializers.
11554
11555 2003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
11556
11557 * Makefile.in (ORDINARY_FLAGS_TO_PASS): Also pass DESTDIR.
11558 (install-gcc-tooldir, install-cpp, installdirs,
11559 install-common, install-driver, install-info, install-man,
11560 install-headers, install-include-dir, install-headers-tar,
11561 install-headers-cpio, install-headers-cp, install-mkheaders,
11562 install-collect2, uninstall): Prepend $(DESTDIR) to
11563 destination paths in all (un)installation commands.
11564 (install-driver): Rewrite $(LN) commands to support DESTDIR
11565 with "ln" as well as with "ln -s".
11566 (installdirs): Simply use mkinstalldirs.
11567 (install-libgcc, install-multilib): Also pass DESTDIR.
11568 * mklibgcc.in: Prepend $(DESTDIR) to $(libsubdir) in the
11569 installation destination variable ldir.
11570 * config/alpha/t-osf4, config/arm/t-netbsd,
11571 config/ia64/t-hpux, config/mips/t-iris5-6,
11572 config/pa/t-hpux-shlib, config/rs6000/t-aix43,
11573 config/rs6000/t-aix52, config/t-slibgcc-elf-ver,
11574 config/t-slibgcc-sld: Prepend $$(DESTDIR) to $$(slibdir)
11575 in the definition of SHLIB_INSTALL.
11576 * config/arc/t-arc (install-multilib-arc): Prepend $(DESTDIR) to
11577 $(libsubdir) in the installation commands.
11578
11579 2003-01-08 Kaz Kojima <kkojima@gcc.gnu.org>
11580
11581 * config/sh/sh.h (CASE_VECTOR_MODE): Use SImode for a
11582 non-optimizing compile.
11583 (ASM_OUTPUT_ADDR_VEC_ELT): Use .long for a non-optimizing
11584 compile.
11585
11586 2003-01-08 Douglas B Rupp <rupp@gnat.com>
11587
11588 * config/i386/i386.c (ix86_attribute_table): Add new attributes
11589 ms_struct and gcc_struct.
11590 (ix86_handle_struct_attribute): New function.
11591 (ix86_ms_bitfield_layout_p): Update to take new attributes
11592 into account.
11593 * doc/extend.texi: Document new attributes.
11594 * testsuite/gcc.dg/bf-ms-attrib.c: New test.
11595
11596 2003-01-08 Danny Smith <dannysmith@users.sourceforge.net>
11597
11598 PR optimization/8750
11599 * config/i386/i386.c (ix86_expand_prologue): Don't allow
11600 scheduling pass to move insns across __alloca call.
11601
11602 2003-01-08 Dale Johannesen <dalej@apple.com>
11603
11604 * config/rs6000/rs6000.md: Replace *store_multiple_string
11605 with *stmsi[3-8].
11606
11607 2003-01-08 Jeff Sturm <jsturm@one-point.com>
11608
11609 PR target/9210
11610 * config/rs6000/rs6000.c (rs6000_elf_encode_section_info):
11611 Set SYMBOL_REF_FLAG on local data sym_ref.
11612
11613 2003-01-08 Dale Johannesen <dalej@apple.com>
11614
11615 * function.c (assign_parms): Don't set pretend_args_size if
11616 REG_PARM_STACK_SPACE.
11617 config/rs6000/rs6000.c (setup_incoming_varargs): Don't set
11618 pretend_args_size.
11619
11620 2003-01-08 Nathanael Nerode <neroden@gcc.gnu.org>
11621
11622 * gcc.hlp: Delete.
11623
11624 2003-01-09 Jan Hubicka <jh@suse.cz>
11625
11626 * i386.c (ix86_expand_int_addcc): Fix thinko.
11627
11628 2003-01-08 David Edelsohn <edelsohn@gnu.org>
11629
11630 * config/rs6000/rs6000.h (FUNCTION_MODE): Always use SImode.
11631 * config/rs6000/rs6000.c (TARGET_ASM_CAN_OUTPUT_MI_THUNK): Redefine
11632 as hook_bool_tree_hwi_hwi_tree_true.
11633 (rs6000_emit_allocate_stack): Use TARGET_32BIT.
11634 (rs6000_emit_epilogue): Same.
11635 (rs6000_output_mi_thunk): Re-implement as RTL.
11636 * config/rs6000/xcoff.h (ASM_DECLARE_FUNCTION_NAME): Call
11637 xcoffout_declare_function if any debugging enabled.
11638
11639 2003-01-08 Chris Demetriou <cgd@broadcom.com>
11640
11641 * config.gcc (mipsisa32r2-*-elf*, mipsisa32r2el-*-elf*): New
11642 targets, to support MIPS32 Release 2 (MIPS32R2) configurations.
11643 * config/mips/mips.h (enum processor_type): Rename
11644 PROCESSOR_R4KC to PROCESSOR_4KC, PROCESSOR_R5KC to
11645 PROCESSOR_5KC, and PROCESSOR_R20KC to PROCESSOR_20KC.
11646 Add PROCESSOR_M4K.
11647 (TARGET_MIPS4KC, TARGET_MIPS5KC): Update for the renaming.
11648 (ISA_MIPS32R2): New define.
11649 (GENERATE_MULT3_SI, ISA_HAS_CONDMOVE, ISA_HAS_8CC)
11650 (ISA_HAS_MADD_MSUB, ISA_HAS_CLZ_CLO)
11651 (ISA_HAS_PREFETCH): Add support for MIPS32R2.
11652 (MIPS_ISA_DEFAULT): Likewise. Also, fix indentation.
11653 (TARGET_CPU_CPP_BUILTINS): Add support for MIPS32R2. Add new
11654 predefine __mips_isa_rev for MIPS32, MIPS32R2, and MIPS64.
11655 (ISA_HAS_ROTR_SI): Add support for MIPS32R2, and avoid if
11656 compiling MIPS16 code.
11657 (ISA_HAS_ROTR_DI): Do not use if compiling MIPS16 code, and fix
11658 comment.
11659 (ISA_HAS_SEB_SEH): New define.
11660 (ASM_SPEC, LINK_SPEC): Pass -mips32r2 to assembler and linker.
11661 * config/mips/mips.c (mips_cpu_info_table): Adjust for enum
11662 processor_type value renaming. Add support for MIPS32R2.
11663 Clean up comments, and move "sb1" entry with other MIPS64 CPU
11664 entries.
11665 (override_options): Reimplement -mipsN option handling so that
11666 it will work correctly for -mips32r2. Avoid branch-likely
11667 instructions on MIPS32R2.
11668 * config/mips/mips.md (mulsi3_mult3): Add support for MIPS32R2.
11669 (extendhisi2): Use extendhisi2_hw if ISA_HAS_SEB_SEH.
11670 (extendqisi2): Use extendqisi2_hw if ISA_HAS_SEB_SEH.
11671 (extendhisi2_hw, extendqisi2_hw): New.
11672 * config/mips/netbsd.h (TARGET_CPU_CPP_BUILTINS): Add support
11673 for MIPS32R2. Add new predefine __mips_isa_rev for MIPS32,
11674 MIPS32R2, and MIPS64.
11675 (LINK_SPEC): Pass -mips32r2 to linker.
11676 * config/mips/t-isa3264: Built -mips32r2 multilibs.
11677 * doc/invoke.texi (MIPS Options): Add -mips32r2, add support
11678 for mips32r2 in the -march description. Alphabetically sort
11679 CPU names in the -march description. Add long-missed -mips32
11680 and -mips64 to MIPS option summary.
11681
11682 * config.gcc: Update copyright years to include 2003.
11683 * config/mips/mips.c: Likewise.
11684 * config/mips/mips.h: Likewise.
11685 * config/mips/mips.md: Likewise.
11686 * config/mips/netbsd.h: Likewise.
11687 * doc/invoke.texi: Likewise.
11688
11689 2003-01-08 Andreas Schwab <schwab@suse.de>
11690
11691 * aclocal.m4 (gcc_AC_INITFINI_ARRAY): Fix spelling of cache
11692 variable.
11693 * configure: Regenerated.
11694
11695 2003-01-08 Kazu Hirata <kazu@cs.umass.edu>
11696
11697 * config/h8300/h8300.c (output_logical_op): Replace byte/word
11698 extraction of det with b0, b1, w0, w2, etc.
11699 (compute_logical_op_length): Likewise.
11700 (compute_logical_op_cc): Likewise.
11701
11702 2003-01-08 Kazu Hirata <kazu@cs.umass.edu>
11703
11704 * config/h8300/h8300.h (CONSTANT_ADDRESS_P): Allow CONST and
11705 HIGH on all variants.
11706
11707 2003-01-08 Josef Zlomek <zlomj9am@artax.karlin.mff.cuni.cz>
11708
11709 * Makefile.in (PARTITION_H): New.
11710 (BASIC_BLOCK_H): Added hard-reg-set.h and $(PARTITION_H).
11711 * basic-block.h: Include hard-reg-set.h.
11712
11713 2003-01-08 Richard Earnshaw <rearnsha@arm.com>
11714
11715 * arm.h (ENABLE_XF_PATTERNS): Delete.
11716 * arm.md (addxf3, subxf3, mulxf3, divxf3, modxf3, negxf2, absxf2)
11717 (sqrtxf2, floatsixf2, fix_truncxfsi2, truncxfsf2, truncxfdf2)
11718 (extendsfxf2, extenddfxf2, movxf, cmpxf, cmpxf_insn)
11719 (cmpxf_trap): Delete.
11720 (movxf_hard_insn): Remove test of ENABLE_XF_PATTERNS.
11721
11722 2003-01-08 Jan Hubicka <jh@suse.cz>
11723
11724 * i386.md (adddi3_carry_rex64, subdi3_carry_rex64): Name pattern.
11725 (addhi3_carry, addqi3_carry, subhi3_carry, subqi3_carry): New patterns.
11726 (add??cc): New expanders.
11727 * i386.c (expand_int_addcc): New function.
11728 * i386-protos.h (expand_int_addcc): Declare.
11729
11730 * alias.c (memory_modified_1): New static function.
11731 (memory_modified): New static varaible.
11732 (memory_modified_in_insn_p): New global function.
11733 * rtl.h (memory_modified_in_insn_p): Declare.
11734 * rtlanal.c (modified_between_p, modified_in_p): Be smart about memory
11735 references.
11736
11737 * expr.h (emit_conditional_add): Declare.
11738
11739 2003-01-07 Janis Johnson <janis187@us.ibm.com>
11740
11741 PR other/8947
11742 * doc/invoke.texi (-malign-double): Explain that the option breaks
11743 binary compatibility.
11744
11745 2003-01-08 Andreas Schwab <schwab@suse.de>
11746
11747 * config.gcc (m68k-*-linux*): Don't set extra_parts and gnu_ld,
11748 should come from the generic *-*-linux* entry.
11749
11750 2003-01-07 Jan Hubicka <jh@suse.cz>
11751
11752 * cselib.c (cselib_current_insn_in_libcall): New static variable.
11753 (new_elt_loc_list, cselib_process_insn, cselib_init): Keep track on whether
11754 we are inside libcall.
11755 * cselib.h (elt_loc_list): Add in_libcall.
11756 * gcse.c (do_local_cprop): Do not copy propagate using insns
11757 in libcalls.
11758
11759 2003-01-07 David Edelsohn <edelsohn@gnu.org>
11760
11761 * doc/tm.texi (TARGET_SCHED_VARIABLE_ISSUE): CLOBBER and USE do
11762 not normally affect to issue rate.
11763
11764 2003-01-07 Jan Hubicka <jh@suse.cz>
11765
11766 * genopinit.c (optabs): Add addc_optab.
11767 * ifcvt.c (noce_try_store_flag): Rename to ...
11768 (noce_try_addcc): ... this one; handle generic conditional increment.
11769 (noce_process_if_block): Update noce_try_addcc call.
11770 * optabs.c (emit_conditional_add): New.
11771 (init_obtabs): Initialize addc_optab.
11772 * optabs.h (optab_index): Add OTI_addcc.
11773 (addcc_optab): New macro.
11774 * md.texi: Document addMcc
11775
11776 PR target/8322
11777 * i386.c (ix86_init_mmx_sse_builtins): Constify arguments of loads.
11778 * xmmintrin.h (_mm_load*_si128. _mm_store*_si128): Add casts.
11779 * xmmintrin.h (_mm_load*_si128. _mm_store*_si128): Add casts.
11780
11781 * reload1.c (delete_output_reload): Avoid repeated attempts
11782 to delete insn.
11783
11784 2003-01-07 Andreas Schwab <schwab@suse.de>
11785
11786 * configure.in: Restore CFLAGS before gcc_AC_INITFINI_ARRAY.
11787 Move --enable-initfini-array check ...
11788 * aclocal.m4 (gcc_AC_INITFINI_ARRAY): ... here. Define
11789 HAVE_INITFINI_ARRAY also when --enable-initfini-array is given.
11790 Don't AC_SUBST gcc_cv_initfinit_array. Use AC_TRY_RUN.
11791 * configure: Rebuild.
11792
11793 2003-01-07 Richard Henderson <rth@redhat.com>
11794
11795 * alias.c (find_base_value): Only use new_reg_base_value shortcut
11796 if the register is set once.
11797
11798 2003-01-07 Sylvain Pion <Sylvain.Pion@mpi-sb.mpg.de>
11799
11800 * config/i386/i386.c (ix86_init_mmx_sse_builtins):
11801 __builtin_ia32_ldmxcsr and __builtin_ia32_stmxcsr are SSE, not MXX.
11802 * config/i386/i386.md (ldmxcsr, stmxcsr): SSE, not MMX.
11803
11804 2003-01-07 Benjamin Kosnik <bkoz@redhat.com>
11805 Sunil Davasam <sunil.k.davasam@intel.com>
11806
11807 PR libstdc++/9076
11808 * unwind-dw2.c (execute_cfa_program): DW_CFA_undefined,
11809 DW_CFA_same_value, read next and ignore.
11810
11811 2003-01-07 Richard Henderson <rth@redhat.com>
11812
11813 * cfganal.c (flow_call_edges_add): Don't crash on noreturn call.
11814
11815 2003-01-07 Daniel Berlin <dberlin@dberlin.org>
11816
11817 * cfg.c: Include alloc-pool.h
11818 (edge_pool): New pool.
11819 (bb_pool): New pool.
11820 (first_deleted_edge): Remove.
11821 (first_deleted_block): Remove.
11822 (init_flow): Alloc/free the pools.
11823 (free_edge): Use pools.
11824 (alloc_block): Ditto.
11825 (expunge_block): Ditto.
11826 (cached_make_edge): Ditto.
11827
11828 * Makefile.in (cfg.o): Add alloc-pool.h dependency.
11829
11830 2003-01-07 Daniel Berlin <dberlin@dberlin.org>
11831
11832 * et-forest.c: Include alloc-pool.h.
11833 (struct et_forest): Add node_pool and occur_pool.
11834 (et_forest_create): Create the new pools.
11835 (et_forest_delete): Delete them.
11836 (et_forest_add_node): Allocate and free using pools.
11837 (et_forest_add_edge): Ditto.
11838 (et_forest_remove_node): Ditto.
11839 (et_forest_remove_edge): Ditto.
11840
11841 * Makefile.in (et-forest.o): Add alloc-pool.h dependency.
11842
11843 2003-01-07 Kazu Hirata <kazu@cs.umass.edu>
11844
11845 * config/h8300/h8300.c (output_logical_op): Simplify and
11846 optimize the handling of SImode.
11847 * config/h8300/h8300.c (compute_logical_op_length): Update
11848 accordingly.
11849 * config/h8300/h8300.c (compute_logical_op_cc): Likewise.
11850
11851 2003-01-07 Richard Sandiford <rsandifo@redhat.com>
11852
11853 * config/mips/mips.c (mips_va_arg): In the EABI code, apply the
11854 big-endian correction to indirect arguments too.
11855
11856 2003-01-06 Aldy Hernandez <aldyh@redhat.com>
11857
11858 Segher Boessenkool <segher@koffie.nl>
11859
11860 * config/rs6000/rs6000.c (rs6000_reg_names): Add missing registers.
11861 (alt_reg_names): Ditto, fix formatting.
11862 * config/rs6000/rs6000.h (DEBUG_REGISTER_NAMES): Fix formatting.
11863
11864 2003-01-06 Kazu Hirata <kazu@cs.umass.edu>
11865
11866 * config/h8300/h8300.c (final_prescan_insn): Constify uid.
11867 (output_logical_op): Constify intval and det.
11868 (compute_logical_length): Likewise.
11869 (compute_logical_cc): Likewise.
11870 (output_a_shift): Constify mask.
11871 (h8300_encode_label): Constify len.
11872
11873 2003-01-06 Kazu Hirata <kazu@cs.umass.edu>
11874
11875 * config/h8300/h8300.c (h8300_expand_prologue): Remove fsize.
11876 (h8300_expand_epilogue): Likewise.
11877
11878 2003-01-06 Aldy Hernandez <aldyh@redhat.com>
11879
11880 Segher Boessenkool <segher@koffie.nl>
11881
11882 * config/rs6000/altivec.md: Remove spaces from assembler
11883 instruction argument lists.
11884
11885 2003-01-07 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
11886
11887 * config/c4x/c4x.c (c4x_naked_function_p): Rename from
11888 c4x_assembler_function_p.
11889 (c4x_null_epilogue_p): Complement return value, all uses updated.
11890 (c4x_insert_attributes): Add naked.
11891 * config/c4x/c4x.md (c4x_null_epilogue_p): Changes uses.
11892 * doc/extend.texi: Update C4x function attributes.
11893
11894 2003-01-06 Richard Henderson <rth@redhat.com>
11895
11896 * config/alpha/alpha.c (alpha_encode_section_info): Adjust symbol_str
11897 properly when changing "local-ness".
11898 * config/alpha/alpha.md (movdi_er_high_g): Allow all symbols.
11899
11900 2003-01-06 Dale Johannesen <dalej@apple.com>
11901
11902 * config/darwin-protos.h: Add prototypes for new section functions.
11903
11904 2003-01-06 Chris Demetriou <cgd@broadcom.com>
11905
11906 * config.gcc (mipsisa32-*-elf*, mipsisa32el-*-elf*): Default ABI
11907 to EABI.
11908
11909 2003-01-06 Zack Weinberg <zack@codesourcery.com>
11910
11911 * hwint.h: If the current compiler has no 64-bit type at all,
11912 make HOST_WIDEST_INT 32 bits.
11913
11914 2003-01-06 Eric Christopher <echristo@redhat.com>
11915
11916 * config/mips/mips.md (movdf_internal2): Fix constraints.
11917
11918 2003-01-06 Kazu Hirata <kazu@cs.umass.edu>
11919
11920 * config/h8300/h8300.md (*twoshifts_l16_r1): New.
11921
11922 2003-01-06 Richard Sandiford <rsandifo@redhat.com>
11923
11924 * config/mips/mips.md (leadi): Use dla rather than la.
11925
11926 2003-01-06 Svein E. Seldal <Svein.Seldal@solidas.com>
11927
11928 * config/c4x/c4x.h: Updated specs for new gas format. Fixed bug
11929 in C33_FLAG. Added proper C33 support in ASM_FILE_START macro.
11930
11931 2003-01-06 Herman A.J. ten Brugge <hermantenbrugge@home.nl>
11932
11933 * config/c4x/c4x.h: Remove hwint.h include and HOST_WIDE_INT_PRINT_HEX
11934 redefinition.
11935
11936 2003-01-05 Kazu Hirata <kazu@cs.umass.edu>
11937
11938 * config/h8300/h8300.md (*extzv_8_23): New.
11939
11940 2003-01-05 John David Anglin <dave@hiauly1.hia.nrc.ca>
11941
11942 * pa64-hpux.h (JCR_SECTION_NAME): Define.
11943 (PA_INIT_FRAME_DUMMY_ASM_OP): Check EH_FRAME_SECTION_NAME instead of
11944 USE_EH_FRAME_REGISTRY when defining.
11945
11946 2003-01-05 Kazu Hirata <kazu@cs.umass.edu>
11947
11948 * config/h8300/h8300.c (output_a_shift): Do not output a
11949 variable shift.
11950 * config/h8300/h8300.md (two splitters): New.
11951
11952 2003-01-05 Richard Sandiford <rsandifo@redhat.com>
11953
11954 * config/mips/mips.md: Disable the movstrsi define_split.
11955
11956 2003-01-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11957
11958 * alloc-pool.c: Don't include "libiberty.h".
11959 * config/sparc/gmon-sol2.c: Include <fcntl.h>.
11960 * convert.c (convert_to_real): Hide unused variable.
11961
11962 2003-01-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11963
11964 * Makefile.in (gtyp-gen.h): Const-ify.
11965 * gcov-dump.c (tag_table): Likewise.
11966
11967 2003-01-04 Bruce Korb <bkorb@gnu.org>
11968
11969 * fixinc/fixfixes.c(wrap_fix): the wrapper guard must be a function
11970 of *both* the file name and the fix name.
11971
11972 2003-01-04 John David Anglin <dave.anglin@nrc.ca>
11973
11974 * config.gcc (hppa*64*-*-hpux11*): Define extra_parts. Don't use
11975 collect2.
11976 * pa-hpux11.h (LDD_SUFFIX, PARSE_LDD_OUTPUT): Undefine.
11977 (HAS_INIT_SECTION, LD_INIT_SWITCH, LD_FINI_SWITCH): Define.
11978 * pa64-hpux.h (HP_INIT_ARRAY_SECTION_ASM_OP,
11979 GNU_INIT_ARRAY_SECTION_ASM_OP, HP_FINI_ARRAY_SECTION_ASM_OP,
11980 GNU_FINI_ARRAY_SECTION_ASM_OP): Define.
11981 (CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP): Define when not using
11982 elfos.h.
11983 (EH_FRAME_IN_DATA_SECTION): Delete define.
11984 (HAS_INIT_SECTION, LD_INIT_SWITCH, LD_FINI_SWITCH): Undefine.
11985 (STARTFILE_SPEC): Use crtbegin.o.
11986 (ENDFILE_SPEC): Use crtend.o.
11987 (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP, CRT_CALL_STATIC_FUNCTION,
11988 SUPPORTS_INIT_PRIORITY, PA_CXA_FINALIZE_STUB, PA_INIT_FINI_HACK,
11989 PA_INIT_FRAME_DUMMY_ASM_OP, PA_JV_REGISTERCLASSES_STUB,
11990 DTOR_LIST_BEGIN): Define.
11991 * pa.c (TARGET_ASM_CONSTRUCTOR): Define.
11992 (pa_asm_out_constructor, pa_asm_out_destructor): New functions.
11993 * som.h (SUPPORTS_INIT_PRIORITY): Delete define.
11994
11995 2002-12-31 Larin Hennessy <larin@science.oregonstate.edu>
11996
11997 * fixinc/fixinc.svr4: Remove references to i860, Sony NewsOS, and spur.
11998 * fixinc/inclhack.def: Remove tests for Apple A/UX, ARM/RISCiX, DG/UX,
11999 m88k-*-sysv3*, Sony NewsOS. Remove references to i860.
12000 Cleanup handling of replacement text.
12001 * fixinc/mkfixinc.sh: Remove reference to i?86-*-osf1*
12002
12003 2003-01-04 Bruce Korb <bkorb@gnu.org>
12004
12005 * fixinc/tests/base/math.h: removed obsolete results
12006 * fixinc/tests/base/stdlib.h: ditto
12007 * fixinc/tests/base/sys/param.h: ditto
12008 * fixinc/tests/base/sys/stat.h: ditto
12009 * fixinc/tests/base/time.h: ditto
12010 * fixinc/tests/base/X11/Intrinsic.h: removed obsolete file
12011 * fixinc/tests/base/sys/byteorder.h: ditto
12012 * fixinc/inclhack.def: Remove superfluous backslashes
12013
12014 2003-01-04 Kazu Hirata <kazu@cs.umass.edu>
12015
12016 * config/h8300/h8300-protos.h: Add prototypes for
12017 the new functions defined below.
12018 * config/h8300/h8300.c (TARGET_ASM_FUNCTION_PROLOGUE): Do not
12019 define.
12020 (dosize): Emit RTL instead of assembly code.
12021 (push): Likewise.
12022 (pop): Likewise.
12023 (h8300_output_function_prologue): Remove.
12024 (h8300_expand_prologue): New.
12025 (h8300_expand_epilogue): New.
12026 (h8300_output_function_epilogue): Do only the reset of
12027 pragma_saveall.
12028 * config/h8300/h8300.md (push_h8300): New.
12029 (push_h8300hs): Likewise.
12030 (pop_h8300): Likewise.
12031 (pop_h8300hs): Likewise.
12032 (*stm_h8300s_2): Change the name to stm_h8300s_2.
12033 (*stm_h8300s_3): Change the name to stm_h8300s_3.
12034 (*stm_h8300s_4): Change the name to stm_h8300s_4.
12035 (*ldm_h8300s_2): New.
12036 (*ldm_h8300s_3): Likewise.
12037 (*ldm_h8300s_4): Likewise.
12038 (return): Likewise.
12039 (*return_1): Likewise.
12040 (prologue): Likewise.
12041 (epilogue): Likewise.
12042 (monitor_prologue): Likewise.
12043
12044 2003-01-03 Dale Johannesen <dalej@apple.com>
12045
12046 * config/darwin.h: (EXTRA_SECTIONS): Add machopic_symbol_stub1,
12047 machopic_picsymbol_stub1.
12048 (EXTRA_SECTION_FUNCTIONS): Ditto.
12049 * rs6000/rs6000.c: Update copyright.
12050 (machopic_output_stub): Use them. Remove an insn from stub code.
12051
12052 2003-01-02 Jason Merrill <jason@redhat.com>
12053
12054 * fold-const.c (fold) [COND_EXPR]: Avoid NOP_EXPRs better.
12055
12056 * integrate.c (copy_decl_for_inlining): Don't clear the rtl for
12057 static/external decls.
12058
12059 * c-common.c (finish_fname_decls): Put the DECL_STMTs inside the
12060 outermost scope.
12061 * c-decl.c (c_make_fname_decl): Push the decls there, too.
12062
12063 2003-01-03 Kazu Hirata <kazu@cs.umass.edu>
12064
12065 * config/h8300/h8300-protos.h: Add a prototype for
12066 h8300_current_function_interrupt_function_p.
12067 * config/h8300/h8300.c (interrupt_handler): Remove.
12068 (os_task): Likewise.
12069 (monitor): Likewise.
12070 (pragma_interrupt): New.
12071 (WORD_REG_USED): Use
12072 h8300_current_function_interrupt_function_p.
12073 (dosize): Likewise.
12074 (h8300_output_function_prologue): Likewise.
12075 Do not set interrupt_handler, os_task, monitor.
12076 (h8300_output_function_prologue): Use
12077 h8300_current_function_interrupt_function_p.
12078 Do not set interrupt_handler, os_task, monitor.
12079 (h8300_current_function_interrupt_function_p): New.
12080 (h8300_pr_interrupt): Set pragma_interrupt.
12081 (h8300_insert_attributes): Reset pragma_interrupt.
12082
12083 2003-01-03 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
12084
12085 * doc/install.texi (Configuration): Fix markup for reference to
12086 gcc/config.gcc.
12087
12088 2003-01-02 Kazu Hirata <kazu@cs.umass.edu>
12089
12090 * config/h8300/h8300.md (*iorhi3_zext): Relax the condition.
12091 (*iorhi3_two_qi): Likewise.
12092 (*iorsi3_zexthi): Likewise.
12093 (*xorhi3_zextqi): Likewise.
12094 (*xorsi3_zexthi): Likewise.
12095 (*xorsi3_zextqi): Likewise.
12096
12097 2003-01-02 Kazu Hirata <kazu@cs.umass.edu>
12098
12099 * config/h8300/h8300.c (stack_pointer_operand): New.
12100 (const_int_gt_2_operand): Likewise.
12101 (const_int_ge_8_operand): Likewise.
12102 * config/h8300/h8300.md (a splitter): Likewise.
12103 (a peephole2): Likewise.
12104 * config/h8300/h8300-protos.h: Add prototypes for the new
12105 functions above.
12106
12107 2003-01-02 Steven Bosscher <s.bosscher@student.tudelft.nl>
12108
12109 * objc/Make-lang.in, objc/config-lang.in, objc/lang-specs.h,
12110 objc/objc-act.h: Fix copyright years.
12111
12112 2003-01-02 Steven Bosscher <s.bosscher@student.tudelft.nl>
12113
12114 * doc/passes.texi: Fix documentation for -fssa-ccp
12115
12116 2003-01-02 Neil Booth <neil@daikokuya.co.uk>
12117
12118 * gccbug.in: Update for new categories.
12119
12120 2003-01-01 Kazu Hirata <kazu@cs.umass.edu>
12121
12122 * config/h8300/h8300.md: Reorder some patterns.
12123
12124 2003-01-01 Kazu Hirata <kazu@cs.umass.edu>
12125
12126 * config/h8300/h8300.c (output_logical_op): Fix a warning.
12127
12128 2003-01-01 Neil Booth <neil@daikokuya.co.uk>
12129
12130 * config/darwin-protos.h, config/c4x/c4x-protos.h,
12131 config/cris/cris-protos.h, config/i370/i370-protos.h,
12132 config/i960/i960-protos.h, config/ia64/ia64-protos.h,
12133 config/v850/v850-protos.h: Use struct, and don't conditionally
12134 compile on GCC_C_PRAGMA_H.
12135
12136 2003-01-01 Kazu Hirata <kazu@cs.umass.edu>
12137
12138 * config/arm/arm-protos.h: Remove #ifdef GCC_C_PRAGMA_H.
12139 * config/h8300/h8300-protos.h: Likewise.
12140 * config/sh/sh-protos.h: Likewise.
12141
12142 2003-01-01 Kazu Hirata <kazu@cs.umass.edu>
12143
12144 * config/arm/arm-protos.h: Use struct cpp_reader instead of
12145 cpp_reader.
12146 * config/h8300/h8300-protos.h: Likewise.
12147 * config/sh/sh-protos.h: Likewise.
12148
12149 2003-01-01 Neil Booth <neil@daikokuya.co.uk>
12150
12151 * config/arm/arm.c (arm_pr_long_calls, arm_pr_no_long_calls,
12152 arm_pr_long_calls_off): Use struct.
12153 * config/h8300/h8300.c (h8300_pr-interrupt, h8300_pr_saveall)
12154 : Similarly.
12155 Don't include cpplib.h.
12156 * config/sh/sh.c (sh_pr_interrupt, sh_pr_trapa,
12157 sh_pr_nosave_low_regs): Similarly.
12158
12159 2003-01-01 Kazu Hirata <kazu@cs.umass.edu>
12160
12161 * config/h8300/h8300.c: Include cpplib.h.
12162
12163 2003-01-01 Steven Bosscher <s.bosscher@student.tudelft.nl>
12164
12165 * objc/Make-lang.in, objc/config-lang.in, objc/lang-options.h,
12166 objc/lang-specs.h, objc/objc-act.c, objc/objc-act.h,
12167 objc/objc-lang.c, objc/objc-tree.def: Replace "GNU CC" with
12168 "GCC" in the copyright header.
12169
12170 2003-01-01 Neil Booth <neil@daikokuya.co.uk>
12171
12172 * c-pragma.c (c_register_pragma): New.
12173 (init_pragma): Use it.
12174 * c-pragma.h (cpp_register_pragma): Don't declare.
12175 (c_register_pragma): New.
12176 * cpplib.h: Remove #ifdef GCC_C_PRAGMA_H.
12177 * config/darwin.h (REGISTER_TARGET_PRAGMAS): Update.
12178 * config/arm/arm.h (REGISTER_TARGET_PRAGMAS): Update.
12179 * config/c4x/c4x.h (REGISTER_TARGET_PRAGMAS): Update.
12180 * config/h8300/h8300.h (REGISTER_TARGET_PRAGMAS): Update.
12181 * config/i370/i370.h (REGISTER_TARGET_PRAGMAS): Update.
12182 * config/i960/i960.h (REGISTER_TARGET_PRAGMAS): Update.
12183 * config/ia64/hpux.h (REGISTER_TARGET_PRAGMAS): Update.
12184 * config/rs6000/rs6000.h (REGISTER_TARGET_PRAGMAS): Update.
12185 * config/sh/sh.h (REGISTER_TARGET_PRAGMAS): Update.
12186 * config/v850/v850.h (REGISTER_TARGET_PRAGMAS): Update.
12187 * doc/tm.texi (REGISTER_TARGET_PRAGMAS): Update
12188
12189 See ChangeLog.8 for earlier changes.