1 Tue Jun 11 21:53:37 CEST 2002 Jan Hubicka <jh@suse.cz>
3 * i386.c (x86_promote_QImode): Set for Athlon
4 (x86_fast_prefix): New global variable.
5 (x86_arch_always_fancy_math_387): Fix formating.
6 * i386.h (x86_fast_prefix): Declare
7 (TARGET_FAST_PREFIX): define.
8 * i386.md (and to strict_low_part, HI to SI
9 promoting splitter): Use new macro.
11 * i386.h (RTX_COSTS): float_extend is not for free for SSE.
13 2002-06-11 Zack Weinberg <zack@codesourcery.com>
15 * Makefile.in (distclean): Delete junk left in testsuite
18 2002-06-11 Jeffrey Law <law@redhat.com>
20 * loop.c (loop_regs_scan): Avoid useless generation of REG objects.
22 * mips.c (function_arg_advance): gen_ashldi3 returns an INSN now,
23 not the pattern. So extract the pattern from the insn.
25 * mips.c (embedded_pic_fnaddr_reg): Fix typo.
27 2002-06-11 Ulrich Weigand <uweigand@de.ibm.com>
29 * config/s390/s390.md (movsi): Only use floating point
30 register alternatives when operands are already fprs.
31 (movdi_31, movdi_64): Likewise.
33 2002-06-11 David S. Miller <davem@redhat.com>
35 * emit-rtl.c (try_split): Do not abort on non-INSN_P.
36 Only run RTX equality checks on INSN_P rtl.
38 2002-06-11 Ulrich Weigand <uweigand@de.ibm.com>
40 * config/s390/s390.md (reload_base, ltorg): Remove.
41 * s390.c (s390_stop_dump_lit_p, s390_dump_literal_pool,
42 s390_asm_output_pool_prologue, s390_pool_start_insn): Remove.
43 * s390-protos.h (s390_stop_dump_lit_p, s390_dump_literal_pool,
44 s390_asm_output_pool_prologue): Likewise.
45 * s390.h (s390_pool_start_insn): Likewise.
47 * s390.c (s390_output_symbolic_const): Remove support for
48 old-style pool chunks.
49 (s390_function_epilogue): Likewise.
50 (s390_output_constant_pool): Likewise. Also, fix incorrect
51 alignment for 64-bit literal pools.
52 (print_operand_address): Remove 'y' and 'Y' format flags.
53 * s390.h (ASM_OUTPUT_POOL_PROLOGUE): Remove support for
54 old-style pool chunks.
55 (ASM_OUTPUT_SPECIAL_POOL_ENTRY): Likewise.
56 (ASM_OUTPUT_POOL_EPILOGUE): Remove.
57 (S390_CHUNK_MAX, S390_CHUNK_OV, S390_POOL_MAX): Remove.
59 * s390.c (consttable_operand): New function.
60 * s390-protos.h (consttable_operand): Declare it.
61 * s390.h (PREDICATE_CODES): Add consttable_operand.
62 * s390.md (consttable_qi, consttable_hi, consttable_si, consttable_di,
63 consttable_sf, consttable_df, pool_start_31, pool_end_31,
64 pool_start_64, pool_end_64, reload_base, reload_base2): New insns.
65 * s390.c (struct constant, struct constant_pool): New data types.
66 (constant_modes, gen_consttable): New variables.
67 (s390_start_pool, s390_end_pool, s390_add_pool,
68 s390_dump_pool, s390_free_pool): New functions.
69 (s390_chunkify_pool): Completely reimplement literal pool
72 * s390.c (s390_pool_overflow): New variable.
73 * s390.h (s390_pool_overflow): Declare it.
74 * s390.md (cjump, icjump): Use it to adapt length for out-of-range
75 jumps in literal pool overflow situations.
77 * s390.c (s390_decompose_address): Accept new-style pool chunk offsets.
78 (s390_frame_info): Account for possible use of RETURN_REGNUM
79 by new literal pool overflow code.
80 (s390_emit_prologue): Likewise.
82 2002-06-05 David S. Miller <davem@redhat.com>
84 Delete SEQUENCE rtl usage outside of reorg and ssa passes.
85 * rtl.h (gen_sequence, emit_insns, emit_insns_before,
86 emit_insns_before_scope, emit_insns_after,
87 emit_insns_after_scope): Delete declaration.
88 * ada/misc.c (insert_code_for): Use emit_insn* instead of
90 * config/alpha/alpha.c (alpha_set_memflags_1): Abort on SEQUENCE.
91 (alpha_set_memflags): Fix comment.
92 (set_frame_related_p): Use get_insns instead of gen_sequence.
93 * config/alpha/alpha.md (setjmp receiver splitter): Avoid
95 * config/arm/arm.c (arm_finalize_pic): Use get_insns instead of
97 (arm_gen_load_multiple, arm_gen_store_multiple): Likewise.
98 * config/fr30/fr30.c (fr30_move_double): Likewise.
99 * config/i386/i386.c (ix86_expand_int_movcc, ix86_expand_movstr):
101 * config/ia64/ia64.c (spill_restore_mem): Likewise.
102 * config/ia64/ia64.md (conditional move spliiter): Avoid emitting
104 * config/m32r/m32r.c (gen_split_move_double): Use get_insns
105 instead of gen_sequence.
106 * config/mips/mips.c (embedded_pic_fnaddr_reg): Likewise.
107 (mips_expand_prologue, mips16_gp_pseudo_reg): Likewise.
108 * config/sh/sh.c (sh_need_epilogue): Likewise.
109 * config/sparc/sparc.md (current_function_calls_alloca, flat): New
111 (setjmp pattern and split): Use them to avoid splitter which emits
113 * genattrtab.c (main): Emit include of function.h
114 * config/stormy16/stormy16.c (xstormy16_split_cbranch): Use
115 get_insns instead of gen_sequence.
116 * config/cris/cris.c (cris_split_movdx): Likewise.
117 * emit-rtl.c (emit_insns*): Kill.
118 (try_split): Expect insn list instead of SEQUENCE.
119 (make_jump_insn_raw, make_call_insn_raw): Fix comments.
120 (emit_*insn*): Reimplement to work with INSN lists and PATTERNs.
121 Make them abort if a SEQUENCE is given and RTL checking is
123 (emit_*_scope): Don't forget to set scope on final insn.
124 (gen_sequence): Move from here...
125 * ssa.c (gen_sequence): To here as private function.
126 * builtins.c (expand_builtin_apply_args): Use emit_insn_foo, fix
128 (expand_builtin_return, expand_builtin_mathfn): Likewise.
129 (expand_builtin_strlen): Use get_insns instead of gen_sequence.
130 (expand_builtin_saveregs): Use emit_insn_foo, fix comments.
131 (expand_builtin_expect_jump): Use get_insns and fix comments.
132 * calls.c (try_to_integrate): Use emit_insn_foo.
133 (expand_call, emit_library_call_value_1): Likewise.
134 * expr.c (emit_queue): Handle insn lists instead of SEQUENCE.
135 (emit_move_insn_1): Use get_insns instead of gen_sequence.
136 (expand_expr): Use emit_insn_foo.
137 * cfgrtl.c (commit_one_edge_insertion): Use emit_insn_foo.
138 * except.c (build_post_landing_pads): Likewise.
139 * flow.c (attempt_auto_inc): Likewise.
140 * stmt.c (expand_fixup, fixup_gotos, expand_nl_handler_label,
141 expand_nl_goto_receivers, expand_decl_cleanup): Likewise.
142 * function.c (fixup_var_refs_insn): Use get_insns instead of
144 (fixup_var_refs_1): Likewise and expect insn list from gen_foo.
145 (fixup_memory_subreg): Use get_insns instead of gen_sequence.
146 (fixup_stack_1, purge_addressof_1, expand_main_function,
147 get_arg_pointer_save_area): Likewise.
148 (optimize_bit_field, instantiate_virtual_regs_1, assign_parms,
149 expand_function_end): Use emit_insn_foo.
150 (record_insns, keep_stack_depressed): Work with insn list instead
151 of SEQUENCE, fix comments.
152 * ifcvt.c (noce_emit_store_flag, noce_try_store_flag,
153 noce_try_store_flag_constants, noce_try_store_flag_inc,
154 noce_try_store_flag_mask, noce_emit_cmove, noce_try_cmove_arith,
155 noce_try_minmax, noce_try_abs): Use emit_insn_foo.
156 (noce_process_if_block): Use get_insns instead of gen_sequence.
157 * optabs.c (add_equal_note): Work with insn list, fix comments.
158 (expand_binop): Expect insn list from GEN_FCN(), use emit_insn_foo.
159 (expand_unop, expand_complex_abs, expand_unop_insn,
160 expand_no_conflict_block): Likewise.
161 (gen_move_insn): Use get_insns instead of gen_sequence.
162 (gen_cond_trap): Likewise.
163 * integrate.c (copy_rtx_and_substitute): Likewise.
164 (emit_initial_value_sets): Use emit_insn_foo.
165 * reload1.c (emit_output_reload_insns, emit_reload_insns): Likewise.
166 (fixup_abnormal_edges): Avoid losing REG_NOTES more intelligently
167 now that RTL generators give insn lists.
168 * sibcall.c (replace_call_placeholder): Use emit_insn_foo.
169 * doloop.c (doloop_modify, doloop_modify_runtime): Use get_insns
170 instead of gen_sequence.
171 (doloop_optimize): Work with insn lists instead of SEQUENCE rtl.
172 * explow.c (emit_stack_save, emit_stack_restore): Use get_insns
173 instead of gen_sequence.
174 * loop.c (move_movables, emit_prefetch_instructions,
175 gen_add_mult, check_dbra_loop, gen_load_of_final_value):
177 (loop_regs_update): Work with insn list instead of SEQUENCE rtl.
178 (product_cheap_p): Likewise, and add commentary about RTL wastage
180 * lcm.c (optimize_mode_switching): Use get_insns instead of
182 * profile.c (gen_edge_profiler): Likewise.
183 * regmove.c (copy_src_to_dest): Likewise.
184 * reg-stack.c (compensate_edge): Likewise and fix comment.
185 * gcse.c (process_insert_insn): Likewise.
186 (insert_insn_end_bb): Work with insn list instead of SEQUENCE rtl.
187 * jump.c (delete_prior_computation): Update comment.
188 * genemit.c (gen_expand, gen_split, main): Use get_insns instead
189 of gen_sequence, update comments to match.
190 * recog.c (peephole2_optimize): Work with insn lists instead of
192 * sched-vis.c (print_pattern): Abort on SEQUENCE.
193 * unroll.c (unroll_loop, find_splittable_givs, final_giv_value):
194 Use get_insns instead of gen_sequence.
195 (copy_loop_body): Likewise and don't emit dummy NOTE.
196 * genrecog.c: Don't mention SEQUENCE rtl in comments.
197 * combine.c (try_combine): Expect insn lists from split generator.
198 * reorg.c (relax_delay_slots): Emit SEQUENCE into insn list by
201 2002-06-11 Roger Sayle <roger@eyesopen.com>
202 Andreas Jaeger <aj@suse.de>
204 * cfgbuild.c: Update copyright years.
206 2002-06-11 Andreas Schwab <schwab@suse.de>
208 * config/m68k/m68k.h (PREDICATE_CODES): Define.
210 2002-06-11 Eric Christopher <echristo@redhat.com>
212 * doc/tm.texi (Run-time Target): Add comment about flag_iso
214 * config/mips/ecoff.h (CPP_PREDEFINES): Remove.
215 * config/mips/ecoffl.h: Ditto.
216 * config/mips/elf64.h (SUBTARGET_CPP_SPEC): Remove.
217 (CPP_PREDEFINES): Ditto.
218 * config/mips/elfl64.h: Ditto.
219 * config/mips/elfl.h: Ditto.
220 * config/mips/iris3.h (CPP_PREDEFINES, SUBTARGET_CPP_SPEC): #if 0
221 out until irix header consolidation.
222 * config/mips/iris5.h (CPP_PREDEFINES, SUBTARGET_CPP_SPEC): Replace
223 with SUBTARGET_OS_CPP_BUILTINS.
224 * config/mips/iris6.h: Ditto.
225 (CPLUSPLUS_CPP_SPEC): Remove.
226 * config/mips/linux.h: Ditto.
227 * config/mips/netbsd.h: Ditto.
228 * config/mips/openbsd.h: Ditto.
229 * config/mips/rtems.h: Ditto.
230 * config/mips/rtems64.h: Ditto.
231 * config/mips/sni-svr4.h: Ditto.
232 * config/mips/mips.h (ISA_MIPS1, ISA_MIPS2, ISA_MIPS3, ISA_MIPS4,
233 ISA_MIPS32, ISA_MIPS64): New defines.
234 (GENERATE_MULT3_SI, HAVE_SQRT_P, ISA_HAS_64BIT_REGS,
235 ISA_HAS_BRANCHLIKELY, ISA_HAS_CONDMOVE, ISA_HAS_8CC, ISA_HAS_FP4,
236 ISA_HAS_COND_TRAP, ISA_HAS_MADD_MSUB, ISA_HAS_NMADD_NMSUB,
237 ISA_HAS_CLZ_CLO, ISA_HAS_DCLZ_DCLO): Use.
238 (TARGET_CPU_CPP_BUILTINS): Define.
239 (CPP_PREDEFINES, LONG_MAX_SPEC, CPP_FPR_SPEC, CPP_SPEC): Remove.
240 * config/mips/mips.md (mulsi3_mult3): Use ISA_MIPS32/64.
241 (movdicc): Remove check for ISA_MIPS32.
242 (bunordered, bordered, bungt, bunlt, buneq, bunge, bunle,
243 sunordered_df, sunordered_sf, sordered_df, sordered_sf,
244 sunlt_df, sunlt_sf, sungt_df, sungt_sf, suneq_df, suneq_sf, sunge_df,
245 sunge_sf, sunle_df, sunle_sf): New patterns.
247 2002-06-11 Neil Booth <neil@daikokuya.demon.co.uk>
249 * Makefile.in: Update cppmain.o.
250 * cpphash.h (struct cpp_reader): Move some members to a
252 (trad_line): Rename saved_line.
253 (_cpp_read_logical_line_trad): Update.
254 (_cpp_remove_overlay): New.
255 * cppinit.c (cpp_create_reader): No need to set saved_line.
256 (cpp_destroy): Update.
257 (cpp_read_main_file): Only overlay if compiling.
258 * cpplex.c (continue_after_nul): Return false if in directive.
259 * cpplib.c (EXPAND): New.
260 (directive_table, SEEN_EOL): Update.
261 (end_directive): Remove overlay if traditional; don't skip
262 line in traditional #define.
263 (prepare_directive_trad): New.
264 (_cpp_handle_directive, run_directive): Update for traditional
266 (lex_macro_node): Simplify, don't use lex_identifier_trad.
267 * cpplib.h (struct options): Add preprocess_only.
268 * cppmain.c: Don't include intl.h.
269 (cpp_preprocess_file): Set options->preprocess_only.
270 (scan_translation_unit_trad): Fix, and print line numbers.
271 * cpptrad.c (check_output_buffer, lex_identifier, scan_parameters,
272 maybe_start_funlike, scan_out_logical_line, replace_args_and_push,
273 save_replacement_text, _cpp_create_trad_definition): Update for
275 (_cpp_overlay_buffer): Save line number.
276 (_cpp_remove_overlay): Rename from restore_buff, restore line.
277 (_cpp_read_logical_line_trad): Don't handle overlays here.
278 (scan_out_logical_line): Process directives.
280 2002-06-11 Danny Smith <dannysmith@users.sourforge.net>
282 * gthr-win32.h: Wrap functions in extern "C".
283 (__gthread_key_t): Typedef as unsigned long,
285 (__GTHREAD_ONCE_INIT): Use 0, not win32 FALSE.
286 (__gthread_mutex_t): Typedef as void*, not win32 HANDLE.
287 (__gthr_win32_once, __gthr_win32_key_create,
288 __gthr_win32_key_delete, __gthr_win32_getspecific,
289 __gthr_win32_setspecific, __gthr_win32_mutex_init_function,
290 __gthr_win32_mutex_lock,__gthr_win32_mutex_trylock,
291 __gthr_win32_mutex_unlock): Declare.
292 (__gthread_once,__gthread_key_create,
293 __gthread_key_delete, __gthread_getspecific,
294 __gthread_setspecific, __gthread_mutex_init_function,
295 __gthread_mutex_lock,__gthread_mutex_trylock,
296 __gthread_mutex_unlock): Call corresponding
297 __gthr_win32_* extern implementations if #defined
298 __GTHREAD_HIDE_WIN32API.
299 * config/i386/t-mingw32 (LIB2FUNCS_EXTRA): Set to
300 $(srcdir)/config/i386/gthr-win32.c
301 * config/i386/gthr-win32.c: New implementation file.
302 (__gthr_win32_once, __gthr_win32_key_create,
303 __gthr_win32_key_delete, __gthr_win32_getspecific,
304 __gthr_win32_setspecific, __gthr_win32_mutex_init_function,
305 __gthr_win32_mutex_lock,__gthr_win32_mutex_trylock,
306 __gthr_win32_mutex_unlock): New functions, based on
307 static inlines in gthr-win32.h.
309 2002-06-10 Bob Wilson <bob.wilson@acm.org>
311 * config/xtensa/xtensa.c (override_options): Don't warn about
312 using -fpic or -fPIC when PIC is enabled by default.
314 2002-06-10 Roger Sayle <roger@eyesopen.com>
316 * toplev.c (rest_of_compilation): Revert flag_if_conversion change.
318 2002-06-10 Zack Weinberg <zack@codesourcery.com>
320 * Makefile.in (MACHMODE_H): Add @extra_modes_file@.
321 * configure.in: If $srcdir/config/${cpu_type}/${cpu_type}-modes.def
322 exists, substitute its pathname as @extra_modes_file@, define
323 EXTRA_MODES_FILE to be an appropriate string to #include it
324 with, and define EXTRA_CC_MODES to 1.
326 * machmode.def: Update comments. Include EXTRA_MODES_FILE if
327 it's defined. Get rid of redundancy in calling sequence for
328 CC; don't use it to define CCmode, to avoid a warning.
329 * libgcc2.c: Include symcat.h for the sake of machmode.def.
331 * arc-modes.def, arm-modes.def, c4x-modes.def, i386-modes.def,
332 i960-modes.def, ia64-modes.def, m88k-modes.def, mmix-modes.def,
333 pa-modes.def, pdp11-modes.def, rs6000-modes.def, sparc-modes.def:
335 * arc.h, arm.h, c4x.h, i386.h, i960.h, ia64.h, m88k.h, mmix.h,
336 pa.h, pdp11.h, rs6000.h, sparc.h: Don't define EXTRA_CC_MODES.
338 * doc/sourcebuild.texi, doc/tm.texi: Document new scheme for
339 defining extra CC modes.
341 2002-06-10 Roger Sayle <roger@eyesopen.com>
342 Andreas Jaeger <aj@suse.de>
344 * cfgrtl.c (create_basic_block_structure): Remove index argument
345 and use last_basic_block++ instead. (create_basic_block): Update.
346 * cfgbuild.c (find_basic_blocks_1): Likewise.
348 * cfgrtl.c (compute_bb_for_insn): Remove unused "max" argument.
349 * haifa-sched.c (sched_init): Update compute_bb_for_insn caller.
350 * sched-ebb.c (schedule_ebbs): Likewise.
351 * sched-rgn.c (schedule_insns): Likewise.
352 * ssa-ccp.c (ssa_const_prop): Likewise.
353 * ssa-dcs.c (ssa_eliminate_dead_code): Likewise.
354 * toplev.c (rest_of_compilation): Likewise.
355 * config/ia64/ia64.c (ia64_reorg): Likewise.
357 2002-06-10 Roger Sayle <roger@eyesopen.com>
359 * simplify-rtx.c (simplify_replace_rtx): Allow replacement
360 of matching registers.
362 2002-06-10 Roger Sayle <roger@eyesopen.com>
364 * toplev.c (rest_of_compilation): Disable early if-conversion pass.
365 * gcse.c (bypass_conditional_jumps): Fix typo in setcc test.
367 2002-06-10 Hans-Peter Nilsson <hp@bitrange.com>
369 * config/mmix/mmix.h: Improve comments.
370 (CPP_SPEC, CPP_PREDEFINES): Don't define.
371 (TARGET_CPU_CPP_BUILTINS): Define.
372 (CANONICALIZE_COMPARISON): Don't define, replace with comment.
373 (PREDICATE_CODES) <"mmix_reg_or_8bit_or_256_operand">: Remove
375 * config/mmix/mmix.c (MMIX_OUTPUT_REGNO): Add cast to avoid
377 (mmix_constant_address_p): Remove another
378 redundant test before case.
379 (mmix_canonicalize_comparison): Remove unused function.
380 (mmix_print_operand_address): Don't test and adjust for operand in
381 non-canonical format.
382 (mmix_reg_or_8bit_or_256_operand): Remove unused predicate.
383 (mmix_gen_compare_reg): Don't use CANONICALIZE_COMPARISON.
385 2002-06-10 Zack Weinberg <zack@codesourcery.com>
387 * config/m32r/m32r.h: Don't define SELECT_CC_MODE.
388 * config/m32r/m32r-protos.h: Don't prototype m32r_select_cc_mode.
389 * config/m32r/m32r.c: Don't define m32r_select_cc_mode.
390 (gen_compare): Use CCmode unconditionally.
392 2002-06-10 Jakub Jelinek <jakub@redhat.com>
395 * cse.c (cse_insn): Fold src_eqv just once, store it folded back into
398 2002-06-10 Jakub Jelinek <jakub@redhat.com>
401 * c-decl.c (grokfield): Allow user defined types if they declare
402 structs or unions for unnamed fields.
404 2002-06-10 Jakub Jelinek <jakub@redhat.com>
407 * print-rtl.c (print_mem_expr): Don't crash on unnamed fields.
409 2002-06-10 Jakub Jelinek <jakub@redhat.com>
412 * combine.c (combine_simplify_rtx) [SUBREG]: Don't ICE if VOIDmode
413 operand subreg cannot be simplified.
415 2002-06-10 Jakub Jelinek <jakub@redhat.com>
417 * varasm.c (const_hash): Handle FDESC_EXPR like ADDR_EXPR.
418 (compare_constant): Likewise.
419 (output_addressed_constants): Likewise.
421 2002-06-10 Jakub Jelinek <jakub@redhat.com>
423 * cfgcleanup.c (try_optimize_cfg): Make sure merge_blocks doesn't
424 merge bb with itself.
426 2002-06-10 Richard Henderson <rth@redhat.com>
428 * config/alpha/alpha.md (builtin_zap): Fix thinkos expanding mask.
429 (builtin_zapnot): Likewise.
431 * config/alpha/ev5.md: Don't combine shift and mvi insns in one
434 2002-06-10 Eric Christopher <echristo@redhat.com>
436 * config/i386/i386.c (ix86_osf_output_function_prologue): Remove
437 prototype and function.
438 (TARGET_ASM_FUNCTION_PROLOGUE): Remove OSF version.
439 (call_insn_operand): Remove half pic references.
440 (legitimate_address_p): Ditto.
441 * config/i386/i386.h: Remove half pic defines.
443 2002-06-10 Eric Christopher <echristo@redhat.com>
445 * doc/extend.texi (Return Address): Add note explaining the side-
446 effects of inlining on __builtin_return_address.
448 2002-06-10 Tom Tromey <tromey@redhat.com>
450 * Makefile.in (LANGHOOKS_DEF_H): Include langhooks-def.h.
451 (c-common.o): Depend on langhooks.h.
453 2002-06-10 Neil Booth <neil@daikokuya.demon.co.uk>
455 * cpphash.h (_cpp_read_logical_line_trad,
456 _cpp_expansions_different_trad): Update prototypes.
457 * cpplex.c (continue_after_nul): New.
458 * cppmain.c: Include cpphash.h.
459 (scan_translation_unit_trad): New.
460 (cpp_preprocess_file): Call it.
461 * cpptrad.c (_cpp_read_logical_line_trad): Take new parameter
463 (_cpp_expansions_different_trad): Update prototype.
465 Mon Jun 10 18:02:24 2002 J"orn Rennecke <joern.rennecke@superh.com>
467 Fix cfi generation for SH[1-4]:
469 * sh.c (frame_insn): New function.
470 (output_stack_adjust): Add parameter emit_fn. All callers changed.
471 (push): Now returns rtx. Use frame_insn.
472 (sh_expand_prologue): Clear RTX_FRAME_RELATED_P for second push
474 * sh.h (INCOMING_RETURN_ADDR_RTX, DWARF_FRAME_RETURN_COLUMN): Define.
476 2002-06-10 Zack Weinberg <zack@codesourcery.com>
478 * Makefile.in (STAGESTUFF): Add s-gtype, gt-*.h, gtype-*.h,
480 (mostlyclean): Delete specs.h, options.h, gencheck.h here...
481 (distclean): ... not here. But do delete all testsuite/*.log,
482 testsuite/*.sum files here. Delete mkheaders. Delete
483 po/*.gmo and the testsuite directory in a split tree build.
485 2002-06-10 Jeffrey Law <law@redhat.com>
487 * alias.c (static_reg_base_value): New to hold RTL for
488 items allocated once per function for the aliasing code.
489 (init_alias_once_per_function): Initialize static_reg_base_value.
490 (init_alias_analysis): Avoid throw-away allocations of RTL by
491 using pre-computed values in static_reg_base_value.
492 * function.c (prepare_function_start): Call
493 init_alias_once_per_function appropriately.
494 * rtl.h (init_alias_once_per_function): Declare.
495 * caller-save (init_caller_save): Restructure slightly to
496 avoid lots of silly RTL generation.
497 * expr.c (init_expr_once): Likewise.
498 * reload1.c (reload_cse_regs_1): Allocate throw-away register
499 RTL object here. Pass it into children.
500 (reload_cse_simplify_operands): Use passed-in register RTL
502 (reload_cse_simplify): Pass through throw-away register
505 2002-06-10 Daniel Berlin <dberlin@dberlin.org>
507 * Makefile.in (ssa.o): Add dependency on $(RTL_H), which was missing.
509 2002-06-10 Richard Sandiford <rsandifo@redhat.com>
511 * gcc.c (process_command): Avoid assignment to read-only location.
512 Fix sizeof calculation.
514 2002-06-10 Neil Booth <neil@daikokuya.demon.co.uk>
516 * cpphash.h (struct cpp_macro): Put comments on their own lines.
517 (_cpp_expansions_different_trad): New.
518 * cppmacro.c (warn_of_redefinition): Fix for traditional case.
519 * cpptrad.c (canonicalize_text): New.
520 (scan_out_logical_line): Handle no arguments correctly.
521 (save_replacement_text): Commit memory when finished.
522 (_cpp_expansions_different_trad): New.
524 2002-06-10 Tim Josling <tej@melbpc.org.au>
526 * gengtype.c (unnamed enum containing BASE_FILE_*): Add languages
528 (lang_names): Add treelang and cobol.
529 (get_file_basename): Add code to support treelang and cobol as
530 4th and 5th users of c-common.c.
532 2002-06-09 Geoffrey Keating <geoffk@redhat.com>
534 * Makefile.in (install-driver): Install driver as
535 $(target_alias)-gcc-$(version).
536 * gcc.c (spec_version): Make const.
537 (process_command): Handle -V and -b by using exec.
538 * doc/invoke.texi (Target Options): Restore -V option,
539 update docs for -b option.
541 2002-06-10 Tim Josling <tej@melbpc.org.au>
543 * configure.in (remaining_languages_check):
544 Added check that all languages specified were found.
545 Exit if not found. Previous behaviour was silent failure.
546 * configure: Regenerated.
548 2002-06-10 Tim Josling <tej@melbpc.org.au>
550 First steps to making treelang documentation compliant, based on
551 instructions in sourcebuild.texi. Also add to gcc.c list of
554 * doc/contrib.texi: Add self as contributor of treelang.
556 * doc/frontends.texi: Add mention of treelang.
558 * doc/invoke.texi (Overall Options): Add mention of treelang.
560 * doc/standards.texi: Add mention of treelang.
562 2002-06-09 Hans-Peter Nilsson <hp@axis.com>
564 * config/cris/cris.c: Include ggc.h
566 2002-06-09 Neil Booth <neil@daikokuya.demon.co.uk>
568 * cpphash.h (_cpp_push_text_context): Update.
569 (_cpp_arguments_ok): New.
570 * cppmacro.c (_cpp_arguments_ok): New, split out from...
571 (collect_args): ...here.
572 (_cpp_push_text_context): Change inputs.
573 * cpptrad.c (struct fun_macro, maybe_start_funlike, save_argument,
574 replace_args_and_push): New.
575 (lex_identifier, _cpp_lex_identifier_trad, scan_parameters):
576 Don't use IS macros directly.
577 (scan_out_logical_line): Handle function-like macro argument
579 (push_replacement_text): Update.
580 (replacement_length): Remove.
581 (_cpp_create_trad_definition): Don't skip whitespace before
584 2002-06-09 Marek Michalkiewicz <marekm@amelek.gda.pl>
586 * config/avr/avr.c (avr_mcu_types): Update for new devices.
587 * config/avr/avr.h (TARGET_SWITCHES, AVR_MEGA): Add -mshort-calls.
588 (LINK_SPEC, CRT_BINUTILS_SPECS): Update for new devices.
589 * config/avr/avr.md ("type" and "length" attributes): New type
590 "xcall", length 1 or 2 if AVR_MEGA. Use in all patterns that
591 output a single "call" or "rcall" insn depending on device size.
592 * config/avr/t-avr (MULTILIB_MATCHES): Update for new devices.
594 2002-06-09 David Edelsohn <edelsohn@gnu.org>
596 * config/rs6000/{aix43.h,aix5.1} (ASM_CPU_SPEC): Add power3
597 synonym for 630. Add power4. Remove embedded processors. Use -m604
599 (CPP_CPU_SPEC): Add power3 and power4.
600 (PROCESSOR_DEFAULT): Change to 604e.
601 * config/rs6000/rs6000.h (ASM_CPU_SPEC): Similar additions.
602 (CPP_CPU_SPEC): Similar additions.
603 (enum process_type): Add POWER4.
604 (RTX_COSTS): Add POWER4.
605 (CPP_CPU_SPEC): Similar additions.
606 * config/rs6000/linux64.h (PROCESSOR_DEFAULT): Define.
607 (PROCESSOR_DEFAULT64): Define.
608 * config/rs6000/rs6000.c (rs6000_override_options): Add power4.
609 (rs6000_adjust_cost): Add 603, 604, 604e, 620, 630, Power4 to
611 (rs6000_issue_rate): Add Power4.
612 * config/rs6000/rs6000.md (cpu attr): Add power4.
613 (iu compare): Remove 604, 604e, 620, 630.
614 Add basic Power4 scheduling information.
615 (mfcr/mtcrf): Change type attribute to cr_logical.
617 2002-06-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
619 * gengtype.h (error_at_line): Use PARAMS, not VPARAMS. Add
621 * gengtype-lex.l: Fix format specifier warning.
623 * genautomata.c: Don't include ctype.h or limits.h. Use ISSPACE,
625 * gengtype-lex.l: Don't include ctype.h and use ISSPACE/ISIDNUM in
626 lieu of isspace/IDchar.
627 * gengtype.c: Likewise for ctype.h and ISALNUM vs isalnum.
628 * read-rtl.c: Likewise for ctype.h. Don't define ISDIGIT or
631 2002-06-08 Zack Weinberg <zack@codesourcery.com>
633 * Makefile.in (LIBCPP_OBJS): Take out version.o.
634 * cpphash.h (cpp_reader): Take out print_version member.
635 * cppinit.c: (cpp_handle_option): Don't do anything with
636 -version. Just set help_only for --version, --target-help.
637 Just set verbose option for -v.
638 (cpp_post_options): Don't print a version string.
640 2002-06-08 Marek Michalkiewicz <marekm@amelek.gda.pl>
642 * config/avr/avr.c (TARGET_SECTION_TYPE_FLAGS): New.
643 (avr_section_type_flags): New, handle .noinit* sections.
645 2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
647 * config/sh/netbsd-elf.h (SUBTARGET_EXTRA_SPECS): Define
648 and include netbsd_entry_point.
649 (SUBTARGET_LINK_SPEC): Define as NETBSD_LINK_SPEC_ELF.
650 (NETBSD_ENTRY_POINT): Define.
652 2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
654 * config/sh/sh.h (SUBTARGET_EXTRA_SPECS): Define empty
655 if not already defined.
656 (EXTRA_SPECS): Add SUBTARGET_EXTRA_SPECS.
658 2002-06-08 Marek Michalkiewicz <marekm@amelek.gda.pl>
660 * config/avr/avr.c (avr_regs_to_save): No need to save any registers
661 in a noreturn function.
662 (avr_output_function_prologue, avr_output_function_epilogue):
663 Correct function size calculation. Do not crash on empty function.
664 (avr_output_function_epilogue): No need for epilogue after a BARRIER.
666 2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
668 * config/mips/netbsd.h (SUBTARGET_EXTRA_SPECS): Add
669 netbsd_link_spec and netbsd_entry_point.
670 (LINK_SPEC): Use %(netbsd_link_spec).
671 (NETBSD_ENTRY_POINT): Define.
673 2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
675 * config/sparc/netbsd-elf.h (LINK_ARCH32_SPEC): Only specify
677 (LINK_ARCH64_SPEC): Likewise.
678 (LINK_SPEC, NETBSD_ENTRY_POINT): Define.
679 (SUBTARGET_EXTRA_SPECS): Add netbsd_link_spec and netbsd_entry_point.
681 2002-06-08 Marc Espie <espie@openbsd.org>
683 * lists.c (free_list): Fix typo in comment.
685 2002-06-08 Andreas Jaeger <aj@suse.de>
687 * lcm.c (optimize_mode_switching): Add unused attribute for
690 * sched-deps.c (sched_analyze): Remove unused variable.
692 2002-06-08 Gabriel Dos Reis <gdr@codesourcery.com>
694 * diagnostic.def: Don't capitalize diagnostict descriptors.
696 2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
698 * config/m68k/netbsd-elf.h (EXTRA_SPECS): Add netbsd_entry_point.
699 (LINK_SPEC): Define as NETBSD_LINK_SPEC_ELF.
700 (NETBSD_ENTRY_POINT): Define.
702 2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
704 * config/i386/netbsd-elf.h (LINK_SPEC): Define as
705 NETBSD_LINK_SPEC_ELF.
706 (SUBTARGET_EXTRA_SPECS): Add netbsd_entry_point.
707 (NETBSD_ENTRY_POINT): Define.
708 * config/i386/netbsd64.h (LINK_SPEC): Use %(netbsd_link_spec).
709 (SUBTARGET_EXTRA_SPECS): Add netbsd_link_spec and
711 (NETBSD_ENTRY_POINT): Define.
713 2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
715 * config/alpha/netbsd.h (SUBTARGET_EXTRA_SPECS): Add
716 netbsd_link_spec and netbsd_entry_point.
717 (LINK_SPEC): Use %(netbsd_link_spec).
718 (NETBSD_ENTRY_POINT): Define.
720 2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
722 * config/netbsd-elf.h (LINK_SPEC): Rename to...
723 (NETBSD_LINK_SPEC_ELF): ...this. Use %(netbsd_entry_point)
724 to specify program entry point.
726 2002-06-07 Jeff Law <law@redhat.com
728 * emit-rtl.c (init_emit): Add hard registers to regno_reg_rtx.
729 * combine.c (move_deaths): Use regno_reg_rtx for hard regs rather
730 than creating a new register.
731 (distribute_notes): Likewise.
732 * df.c (df_reg_use_gen): Likewise.
733 (df_reg_clobber_gen): Likewise.
734 (df_ref_record): Likewise.
735 * expr.c (use_regs): Likewise.
736 * flow.c (propagate_one_insn): Likewise.
737 (mark_set_1): Likewise.
738 (mark_used_reg): Likewise.
739 * reload.c (emit_reload_insns): Likewise.
741 2002-06-07 Roger Sayle <roger@eyesopen.com>
743 * simplify-rtx.c (simplify_gen_relational): Simplify RTL of the form
744 (ne (comp x y) 0) into (comp x y) where comp is a comparison code.
745 Simplify (eq (comp x y) 0) into (revcomp x y) if the sense of the
746 comparison code comp can be reversed.
748 2002-06-07 Roger Sayle <roger@eyesopen.com>
750 * fold-const.c (fold) [EQ_EXPR]: Place both integer and real
751 constants last in comparisons. Optimize (x+1.0)>0.0 into the
752 equivalent x > -1.0 when -ffast-math.
754 2002-06-07 Jason Thorpe <thorpej@wasabisystems.com>
756 * config.gcc (mips*-*-netbsd*): Add mips/t-netbsd to ${tmake_file}.
757 * config/mips/t-netbsd: New file.
759 2002-06-07 Zack Weinberg <zack@codesourcery.com>
761 * cppinit.c (COMMAND_LINE_OPTIONS): Give all relevant -W
762 options their own entries.
763 (parse_option): Clarify comment.
764 (cpp_handle_option): Remove 'ignore' parameter and OPT_W
765 special case. Replace if/strcmp chain for -W options with
766 use of new OPT_* entries for them.
767 (cpp_handle_options): Update to match.
768 * cpplib.h: Remove last parameter to cpp_handle_option from prototype.
769 * c-decl.c: Update call to cpp_handle_option.
771 2002-06-07 Akim Demaille <akim@epita.fr>
773 * gengtype-yacc.y (optionseqopt): Add the ending `;' to the action.
776 2002-06-07 Jeffrey Law <law@redhat.com>
778 * sched-deps.c (free_deps): Avoid calling free_INSN_LIST_list
781 2002-06-07 H.J. Lu (hjl@gnu.org)
783 * configure.in: Add --enable-__cxa_atexit.
784 * configure: Regenerated.
785 * config.in: Likewise.
787 * defaults.h (DEFAULT_USE_CXA_ATEXIT): New. Defined to be 0 if
790 2002-06-07 Gabriel Dos Reis <gdr@merlin.nerim.net>
792 * diagnostic.c (diagnostic_build_prefix): Fix initialization.
794 2002-06-07 Jason Thorpe <thorpej@wasabisystems.com>
796 * config/mips/netbsd.h (CACHE_FLUSH_FUNC): Define.
798 2002-06-07 Jason Merrill <jason@redhat.com>
800 * cppexp.c (num_equality_op): Use a temporary variable to work
801 around gcc 3.0.4 bug.
803 2002-06-07 Gabriel Dos Reis <gdr@codesourcery.com>
805 * diagnostic.c (diagnostic_build_prefix): Tidy.
807 2002-06-07 Neil Booth <neil@daikokuya.demon.co.uk>
809 * cpptrad.c (struct block, BLOCK_HEADER_LEN, BLOCK_LEN,
810 scan_parameters, save_replacement_text, replacement_length): New.
811 (scan_out_logical_line): Take a macro and save parameters if
813 (_cpp_logical_line_trad): Update.
814 (_cpp_create_trad_definition): Update to handle function-like
816 * cpplex.c (new_buff): Update.
817 (struct dummy, DEFAULT_ALIGNMENT, CPP_ALIGN): Move...
818 * cpphash.h: ...here.
819 (CPP_ALIGN2, _cpp_save_parameter): New.
820 * cppmacro.c (save_parameter): Rename, export.
821 (parse_params): Update.
823 2002-06-07 Andreas Jaeger <aj@suse.de>
825 * config/mmix/mmix.c: Remove extra broken prototype for
826 mmix_init_machine_status.
828 2002-06-06 Geoffrey Keating <geoffk@redhat.com>
830 * gengtype.c: Add comments before all the routines.
832 2002-06-07 Jason Thorpe <thorpej@wasabisystems.com>
834 * config.gcc (sh5*-*-netbsd*): Remove sh/t-netbsd-sh5-32
835 from and add t-sh64 to ${tmake_file}.
836 (sh64*-*-netbsd*): Add t-sh64 to ${tmake_file}.
837 * config/sh/t-netbsd-sh5 (LIB1ASMFUNCS): Remove.
838 * config/sh/t-netbsd-sh5-32: Remove.
839 * config/sh/t-netbsd-sh5-64 (MULTILIB_OPTIONS): Use
841 (MULTILIB_DIRNAMES): Define.
843 Thu Jun 6 23:14:46 CEST 2002 Jan Hubicka <jh@suse.cz>
845 * i386.md (and promoting splitters): Disable QI to SImode promoting
846 when doing so changes immediate to be 32bit.
848 * rtl.h (emit_*_scope): Declare.
849 * emit-rtl.c (emit_*_scope): New global functions.
850 (try_split): Copy scope.
851 * ifcvt.c (noce_try_store_flag, noce_try_store_flag_constants,
852 noce_try_flag_inc, noce_try_store_flag_mask, noce_try_cmove,
853 noce_try_cmove_arith, noce_try_minmax, noce_try_abs,
854 noce_process_if_block, find_cond_trap): Copy scopes.
855 * recog.c (peephole2_optimize): likewise.
857 2002-06-06 Jeffrey Law <law@redhat.com>
859 * h8300.h (OK_FOR_U): Fix thinko exposed by flag checking.
861 Thu Jun 6 21:06:25 2002 J"orn Rennecke <joern.rennecke@superh.com>
863 * gengtype-lex.l (INITIAL): New rule for "'"("\\".|[^\\])"'".
865 2002-06-06 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
867 * Makefile.in (TEXI_GCCINSTALL_FILES): Define.
868 ($(docdir)/gccinstall.info): New target.
869 (info): Depend on it.
870 (gccinstall.dvi): New target.
872 * doc/.cvsignore: Ignore new info files.
873 * doc/install.texi (@setfilename): Reflect new info filename.
875 Thu Jun 6 15:57:23 2002 J"orn Rennecke <joern.rennecke@superh.com>
877 * sh.c (machine_dependent_reorg): Don't set RTX_UNCHANGING_P
880 Thu Jun 6 07:17:43 2002 Nicola Pero <n.pero@mi.flashnet.it>
883 * objc/objc-lang.c (LANG_HOOKS_GET_ALIAS_SET): Define to be
884 c_common_get_alias_set.
885 (LANG_HOOKS_SAFE_FROM_P): Define to be c_safe_from_p.
887 2002-06-06 John David Anglin <dave@hiauly1.hia.nrc.ca>
889 * emit-rtl.c (get_first_nonnote_insn, get_last_nonnote_insn): New
891 * rtl.h (get_first_nonnote_insn, get_last_nonnote_insn): Declare.
892 * avr/avr.c (avr_output_function_epilogue): Use above to determine
894 * pa/pa.c (pa_output_function_prologue): Likewise.
896 2002-06-05 David S. Miller <davem@redhat.com>
898 * integrate.c (subst_constants): Handle 'B' RTL format.
900 2002-06-05 Eric Christopher <echristo@redhat.com>
902 * varasm.c (make_decl_rtl): Fix comment for removed
905 2002-06-05 Eric Christopher <echristo@redhat.com>
907 * Makefile.in: Remove missed halfpic bits.
909 2002-06-05 Eric Christopher <echristo@redhat.com>
911 * toplev.c: Remove half-pic.
912 * config/mips/mips.c: Ditto.
913 * config/mips/mips.h: Ditto. Remove unused defines.
914 * config/mips/openbsd.h: Update comment to reflect above.
915 * config/mips/mips.md: Remove half-pic constraints.
919 2002-06-05 Jeffrey Law <law@redhat.com>
921 * pa.h (EXTRA_CONSTRAINT, T case): Further refine so that it
922 rejects (mem (lo_sum (reg) (unspec))), but will allow
923 (mem (lo_sum (reg) (symbol_ref)) for PA2.0.
925 2002-06-05 Neil Booth <neil@daikokuya.demon.co.uk>
927 * cpphash.h (_cpp_create_definition): Update prototype.
928 (_cpp_push_text_context, _cpp_create_trad_definition): New.
929 ( cpp_lex_identifier_trad): New.
930 (_cpp_set_trad_context): New.
931 * cppinit.c (cpp_finish_options): Don't conditionalize builtins.
932 * cpplib.c (SEEN_EOL): Update.
933 (lex_macro_node): Update for -traditional.
934 (cpp_push_buffer, _cpp_pop_buffer): Similarly.
935 * cppmacro.c (_cpp_create_definition): Split into
936 create_iso_definition() and _cpp_create_trad_definition().
937 (warn_of_redefinition): Update prototype; handle traditional
939 (_cpp_push_text_context): New.
940 * cpptrad.c (skip_whitespace, push_replacement_text): New.
941 (lex_identifier): Call ht_lookup with correct start.
942 (_cpp_lex_identifier_tradm _cpp_create_trad_definition,
943 _cpp_set_trad_context): New.
944 (scan_out_logical_line): Update to handle changing contexts.
946 Wed Jun 5 20:42:31 2002 J"orn Rennecke <joern.rennecke@superh.com>
948 * config.gcc (sh-*-elf*, sh64*-*-elf*): Unify.
950 * config/sh/t-be (MULTILIB_ENDIAN): Set.
951 * config/sh/t-le (MULTILIB_ENDIAN): Likewise.
952 * t-sh (MULTILIB_ENDIAN): Set.
953 (MULTILIB_OPTIONS): Use it.
954 * t-sh64 (MULTILIB_OPTIONS): Likewise.
955 (MULTILIB_DIRNAMES): Likewise.
957 2002-06-05 Gabriel Dos Reis <gdr@codesourcery.com>
959 * toplev.h (report_error_function): Remove.
961 * diagnostic.h (location_t): New datatype.
962 (text_info): Likewise.
963 (diagnostic_info): Likewise.
964 (output_prefix): New macro.
965 (diagnostic_last_function_changed): Likewise.
966 (diagnostic_set_last_function): Likewise.
967 (diagnostic_last_module_changed): Likewise.
968 (diagnostic_set_last_module): Likewise.
969 (report_diagnostic): Now macro.
970 (diagnostic_set_info): Declare.
972 * diagnostic.c (report_problematic_module): Rename to
973 diagnostic_repor_current_module.
974 (set_diagnostic_context): Remove.
975 (count_error): Rename to diagnostic_error_count.
976 (error_function_changed): Remove.
977 (record_last_error_function): Likewise.
978 (error_module_changed): Likewise.
979 (record_last_error_module): Likewise.
980 (context_as_prefix): Rename to diagnostic_build_prefix.
981 (flush_diagnostic_buffer): Rename to diagnostic_flush_buffer.
982 (diagnostic_set_info): New function.
984 * objc/objc-act.c: #include diagnostic.h
985 (error_with_ivar): Adjust call to count_error.
986 (warn_with_method): Likewise.
987 * objc/Make-lang.in (objc-act.o): Depend on diagnostic.h
989 2002-06-05 Bob Wilson <bob.wilson@acm.org>
991 * config/xtensa/xtensa.c (xtensa_build_va_list): Use
992 lang_hooks.types.make_type instead of make_node; set up
993 __va_list_tag type decl.
994 (xtensa_builtin_saveregs): Remove broken use of
995 RTX_UNCHANGING_P and unnecessary use of MEM_IN_STRUCT_P
996 for saved registers; add varargs alias set.
998 2002-06-05 Neil Booth <neil@daikokuya.demon.co.uk>
1001 * alpha/gnu.h: Undef TARGET_OS_CPP_BUILTINS.
1002 * i386/beos-elf.h: Use TARGET_OS_CPP_BUILTINS rather than
1003 CPP_PREDEFINES and part of CPP_SPEC.
1004 i386/freebsd-aout.h, i386/gas.h, i386/gnu.h, i386/linux-aout.h,
1005 i386/linux.h, i386/moss.h, i386/xm-vsta.h: Similarly.
1007 Wed Jun 5 15:20:58 CEST 2002 Jan Hubicka <jh@suse.cz>
1009 * reg-stack.c (reg_to_stack): Do not call find_basic_blocks.
1011 2002-06-05 Alan Modra <amodra@bigpond.net.au>
1013 * config/rs6000/linux64.h (ASM_OUTPUT_SOURCE_LINE): Define.
1015 2002-06-04 Zack Weinberg <zack@codesourcery.com>
1017 * gengtype-yacc.y: Make sure all rules end with a semicolon.
1019 2002-06-04 Bob Wilson <bob.wilson@acm.org>
1021 * config/xtensa/xtensa.c (xtensa_init_machine_status): Fix
1022 typo in function prototype and include "ggc.h" header.
1024 2002-06-04 Richard Henderson <rth@redhat.com>
1026 * config/alpha/alpha.c (mode_mask_operand): Simplify without ifdefs.
1027 (print_operand) ['U']: Likewise.
1028 (alpha_expand_unaligned_store): Correct constants for 32-bit cross.
1029 (alpha_expand_unaligned_store_words): Likewise.
1030 (alpha_expand_builtin_vector_binop): Fix typo.
1031 (enum alpha_builtin, code_for_builtin): Add remaining ext, ins, msk,
1032 umulh, and cix insns.
1033 (one_arg_builtins): Add cix builtins.
1034 (two_arg_builtins): Add ext, ins, msk, umulh builtins.
1035 (alpha_expand_builtin): Fix typo in arity.
1036 * config/alpha/alpha.md (UNSPEC_CTLZ, UNSPEC_CTPOP): New.
1037 (builtin_extbl, builtin_extwl, builtin_extll, builtin_extwh,
1038 builtin_extlh, builtin_insbl, builtin_inswl, builtin_insll,
1039 builtin_insql, builtin_inswh, builtin_inslh, builtin_insqh,
1040 builtin_mskbl, builtin_mskwl, builtin_mskll, builtin_mskql,
1041 builtin_mskwh, builtin_msklh, builtin_mskqh, builtin_cttz,
1042 builtin_ctlz, builtin_ctpop): New.
1043 * doc/extend.texi (Alpha Built-in Functions): Update.
1045 2002-06-04 Geoffrey Keating <geoffk@redhat.com>
1047 * gengtype.c (write_gc_root): Don't unnecessarily prevent
1048 global variable-length arrays being roots.
1050 * config.gcc (powerpc-*-darwin*): Set config_gtfiles.
1051 * configure.in (config_gtfiles): New variable.
1052 (all_gtfiles): Initialise from config_gtfiles.
1053 * configure: Regenerate.
1055 2002-06-04 Neil Booth <neil@daikokuya.demon.co.uk>
1058 * beos-elf.h, cygwin.h, djgpp.h, gas.h, gnu.h, i386-interix.h,
1059 i386-interix3.h, i386elf.h, linux-aout.h, linux.h, linux64.h,
1060 mingw32.h, netbsd-elf.h, netbsd.h, netbsd64.h, rtemself.h,
1061 sco5.h, sol2.h, sysv3.h, sysv4.h, sysv5.h, uwin.h, vxi386.h,
1062 win32.h (CPP_SPEC): Remove cpp_cpu.
1063 * i386.h (TARGET_CPU_CPP_BUILTINS): Use.
1064 (CPP_CPU_DEFAULT_SPEC, CPP_CPU_SPEC): Die!
1066 2002-06-04 Janis Johnson <janis187@us.ibm.com>
1068 * config/ia64/ia64.c (gen_thread_pointer): Fix variable name.
1070 2002-06-04 Jeff Law <law@redhat.com.
1071 David Edelsohn <edelsohn@gnu.org>
1072 Michael Matz <matz@kde.org>
1074 * sched-int.h (struct deps): New field libcall_block_tail_insn.
1075 * sched_deps.c (init_deps): Initialize libcall_block_tail_insn.
1076 * sched_deps.c (sched_analyze_insn): If libcall_block_tail_insn
1077 is set, then mark the current insn as being part of a libcall
1079 (sched_analyze): Set and clear libcall_block_tail_insn appropriately.
1081 * haifa-sched.c (schedule_block): Do not count USE or CLOBBER
1082 insns against the issue rate.
1084 Tue Jun 4 19:29:42 CEST 2002 Jan Hubicka <jh@suse.cz>
1086 * cfglayout.c (duplicate_insn_chain): Kill NOTE_INSN_RANGE notes.
1087 * final.c (final_scan_insn): Likewise.
1088 * ggc-common.c (ggc_mark_rtx_children_1): Likewise; use
1089 NOTE_EXPECTED_VALUE instead of NOTE_RANGE.
1090 * haifa-sched.c (unlink_other_notes): Likeewise.
1091 (reemit_notes): Likewise.
1092 * print-rtl.c (print_rtx): Likewise.
1093 * sched-deps (sched-analyze): Likewise.
1094 * rtl.c (note_insn_name): Likewise.
1095 * rtl.h (NOTE_RANGE_INFO, NOTE_LIVE_INFO): Kill.
1096 (enum insn_note): Kill NOTE_INSN_RANGE_*, NOTE_INSN_LIVE.
1099 2002-06-04 Jason Thorpe <thorpej@wasabisystems.com>
1101 * varasm.c (mark_constants): Handle RTX format 'B'.
1103 2002-06-04 Neil Booth <neil@daikokuya.demon.co.uk>
1105 * cpphash.h (FIRST, LAST, CUR, RLIMIT): New.
1106 (struct cpp_context): Add traditional fields.
1107 * cppmacro.c (paste_all_tokens, push_ptoken_context,
1108 push_token_context, cpp_get_token, _cpp_backup_tokens): Update.
1109 * cpptrad.c (skip_comment, lex_identifier,
1110 _cpp_read_logical_line_trad, scan_out_logical_line): Update.
1112 2002-06-04 Kazu Hirata <kazu@cs.umass.edu>
1114 * gbl-ctors.h: Fix formatting.
1116 * gccspec.c: Likewise.
1118 * gcov-io.h: Likewise.
1120 * ggc-common.c: Likewise.
1122 * ggc-page.c: Likewise.
1123 * ggc-simple.c: Likewise.
1124 * global.c: Likewise.
1125 * graph.h: Likewise.
1126 * gthr-dce.h: Likewise.
1128 * gthr-posix.h: Likewise.
1129 * gthr-rtems.h: Likewise.
1130 * gthr-solaris.h: Likewise.
1131 * gthr-win32.h: Likewise.
1133 2002-06-03 Geoffrey Keating <geoffk@redhat.com>
1135 Merge from pch-branch:
1137 * gengtype.h (UNION_OR_STRUCT_P): New macro.
1138 * gengtype.c (write_gc_structure_fields): Use it.
1139 (write_gc_root): Use it here too.
1141 * gengtype.c (write_gc_structure_fields): Assume that lengths
1142 of typenames fit into an 'int'; don't pass a size_t to "%d" in
1144 (write_gc_marker_routine_for_structure): Likewise.
1145 (write_gc_types): Likewise.
1146 (write_gc_root): Likewise.
1148 * varray.h (VARRAY_CLEAR): New.
1149 (varray_clear): Prototype.
1150 * varray.c (varray_clear): New.
1151 * cselib.c (reg_values_old): New.
1152 (used_regs_old): New.
1153 (cselib_init): Use cached varrays if available to avoid
1154 generating large amounts of garbage.
1155 (cselib_finish): Don't throw away old varrays.
1157 * final.c (insn_addresses_): Move out of ifdef.
1159 * varray.c (uses_ggc): Make more varray kinds GCable.
1160 * varray.h (union varray_data_tag): Let gengtype see
1161 fields 'generic' and 'te'.
1162 * reg-stack.c: Include gt-reg-stack.h, ggc.h.
1163 (stack_regs_mentioned_data): Move out of ifdef; mark with gengtype.
1164 (reg_to_stack): Don't call VARRAY_FREE.
1165 * insn-addr.h (INSN_ADDRESSES_FREE): Don't use VARRAY_FREE.
1166 (insn_addresses_): Use gengtype to mark.
1167 * gengtype.c (write_gc_structure_fields): Handle arrays of generic
1168 pointers; handle generic pointers in unused union fields.
1169 (get_output_file_with_visibility): Include cselib.h,
1170 insn-addr.h in gtype-desc.c.
1171 * function.c (prologue): Use gengtype to mark.
1172 (epilogue): Likewise.
1173 (sibcall_epilogue): Likewise.
1174 * dependence.c: Include gt-dependence.h, ggc.h.
1175 (struct def_use): Use gengtype to mark.
1176 (struct loop): Likewise.
1177 (struct induction): Likewise.
1178 (struct dependence): Likewise.
1179 (def_use_chain): Likewise.
1180 (dep_chain): Likewise.
1181 (loop_chain): Likewise.
1182 (induction_chain): Likewise.
1183 (init_dependence_analysis): Don't free anything, just clear pointers.
1184 (build_def_use): Use GGC to allocate def_use.
1185 (add_loop): Use GGC to allocate loop.
1186 (find_induction_variable): Use GGC to allocate induction.
1187 (check_node_dependence): Use GGC to allocate induction, dependence.
1188 (dump_node_dependence): Don't free varrays.
1189 (end_dependence_analysis): Likewise.
1190 * cselib.h (struct cselib_val_struct): Use gengtype to mark.
1191 (struct elt_loc_list): Likewise.
1192 (struct elt_list): Likewise.
1193 * cselib.c: Don't include obstack.h.
1194 (hash_table): Use gengtype to mark.
1195 (reg_values): Use gengtype to mark.
1196 (used_regs): Use gengtype to mark.
1197 (cselib_obstack): Delete.
1198 (cselib_startobj): Delete.
1199 (empty_vals): Mark as deletable.
1200 (empty_elt_lists): Mark as deletable.
1201 (empty_elt_loc_lists): Mark as deletable.
1202 (new_elt_list): Use GGC to allocate struct elt_list.
1203 (new_elt_loc_list): Use GGC to allocate struct elt_loc_list.
1204 (clear_table): Don't delete obstack; don't unnecessarily clear
1205 deletable variables.
1206 (new_cselib_val): Use GGC to allocate struct cselib_val.
1207 (cselib_init): Don't set up obstacks. Use GGC to allocate
1209 (cselib_finish): Just clear variables, don't free anything.
1210 * Makefile.in (cselib.o): Remove dependency on $(OBSTACK_H).
1211 (reg-stack.o): Add dependency on gt-reg-stack.h, $(GGC_H).
1212 (dependence.o): Add dependency on gt-dependence.h, $(GGC_H).
1213 (GTFILES): Add insn-addr.h, cselib.h, dependence.c, reg-stack.c.
1214 (gt-reg-stack.h): New rule.
1215 (gt-dependence.h): New rule.
1216 (gtype-desc.o): Add cselib.h, insn-addr.h.
1218 * varray.c: Use only necessary headers.
1219 (element_size): New.
1221 (varray_init): Take type, not size. Use GGC if appropriate.
1222 (varray_grow): Update for change to struct varray_head_tag.
1223 Use GGC if appropriate.
1224 * varray.h (struct const_equiv_data): Use gengtype.
1225 (enum varray_data_enum): New.
1226 (union varray_data_tag): Use gengtype.
1227 (struct varray_head_tag): Use gengtype. Replace size field with
1228 enum varray_data_enum.
1229 (varray_init): Update prototype.
1230 (VARRAY_SCHED_INIT): Delete.
1231 (VARRAY_*_INIT): Update for change to varray_init.
1232 (VARRAY_SCHED): Delete.
1233 (VARRAY_PUSH_SCHED): Delete.
1234 (VARRAY_TOP_SCHED): Delete.
1235 * tree.h: Update for change to length specifier.
1236 * tree-inline.c (optimize_inline_calls): Don't use VARRAY_FREE.
1237 (clone_body): Likewise.
1238 * ssa.h (ssa_definition): Use gengtype to mark.
1239 * ssa.c (convert_from_ssa): Don't use VARRAY_FREE.
1240 * ssa-dce.c (ssa_eliminate_dead_code): Don't use VARRAY_FREE.
1241 * rtl.h (struct rtvec_def): Update for change to length specifier.
1242 * integrate.c (expand_inline_function): Don't use VARRAY_FREE.
1243 (struct initial_value_struct): Update for change to length specifier.
1244 * ggc.h (ggc_add_rtx_varray_root): Delete prototype.
1245 (ggc_add_tree_varray_root): Delete prototype.
1246 (ggc_mark_rtx_varray): Delete prototype.
1247 (ggc_mark_tree_varray): Delete prototype.
1248 * ggc-common.c (ggc_add_rtx_varray_root): Delete.
1249 (ggc_add_tree_varray_root): Delete.
1250 (ggc_mark_rtx_varray): Delete.
1251 (ggc_mark_tree_varray): Delete.
1252 (ggc_mark_rtx_varray_ptr): Delete.
1253 (ggc_mark_tree_varray_ptr): Delete.
1254 * gengtype.h (enum typekind): Remove TYPE_VARRAY.
1255 (create_varray): Delete prototype.
1256 * gengtype.c (varrays): Delete.
1257 (create_varray): Delete.
1258 (adjust_field_type): Detect array of string pointers.
1259 (process_gc_options): Remove code to handle varray_type option.
1260 (set_gc_used_type): Remove TYPE_VARRAY case.
1261 (output_escaped_param): New.
1262 (write_gc_structure_fields): Use output_escaped_param on all
1263 parameters. Handle 'skip' with 'use_param' option. Handle
1264 arrays of strings. Remove TYPE_VARRAY handling.
1265 (write_gc_roots): Use boolean to detect 'length' option.
1266 * gengtype-yacc.y (VARRAY_TYPE): Delete token.
1267 (struct_fields): Call adjust_field_type on array fields.
1268 (type): Remove VARRAY_TYPE case.
1269 (type_option): Likewise.
1270 * gengtype-lex.l: Don't consider varray_type a keyword.
1271 * function.h: Update for change to length specifier.
1272 (free_eh_status): Delete prototype.
1273 * function.c (free_after_compilation): Don't call free_eh_status.
1274 (reorder_blocks): Don't use VARRAY_FREE.
1275 * except.c (struct eh_status): Update for change to length specifier.
1276 remove varray_type specifier.
1277 (free_eh_status): Delete.
1278 * dwarf2out.c: Include gt-dwarf2out.h.
1279 (used_rtx_varray): Use gengtype to mark, move
1281 (incomplete_types): Likewise.
1282 (decl_scope_table): Likewise.
1283 (dwarf2out_init): Don't call ggc_add_tree_varray_root.
1284 * cfglayout.c (scope_to_insns_finalize): Don't use VARRAY_FREE.
1285 * c-tree.h (struct lang_type): Update for change to length specifier.
1286 * c-parse.in (yylexstring): Don't use VARRAY_FREE.
1287 * c-objc-common.c: Include gt-c-objc-common.h.
1288 (deferred_fns): Mark for gengtype.
1289 (c_objc_common_init): Don't call ggc_add_tree_varray_root.
1290 (expand_deferred_fns): Just set deferred_fns to 0 to free it.
1291 * Makefile.in (c-objc-common.o): Add gt-c-objc-common.h.
1292 (gtype-desc.o): Update dependencies.
1293 (dwarf2out.o): Add gt-dwarf2out.h.
1294 (varray.o): Update dependencies.
1295 (GTFILES): Add varray.h, ssa.h, dwarf2out.c, c-objc-common.c.
1296 (gt-c-objc-common.h): New rule.
1297 (gt-dwarf2out.h): New rule.
1298 * objc/objc-act.c (build_objc_string_object): Don't use VARRAY_FREE.
1300 * doc/gty.texi (GTY Options): Correct spelling.
1301 (GGC Roots): Likewise.
1302 * Makefile.in (TEXI_CPP_FILES): New.
1303 (TEXI_GCC_FILES): New.
1304 (TEXI_GCCINT_FILES): New.
1305 (TEXI_CPPINT_FILES): New.
1306 ($(docdir)/cpp.info): Use new macros.
1307 ($(docdir)/gcc.info): Likewise.
1308 ($(docdir)/gccint.info): Likewise.
1309 ($(docdir)/cppinternals.info): Likewise.
1310 (cpp.dvi): Likewise.
1311 (gcc.dvi): Likewise.
1312 (gccint.dvi): Likewise.
1313 (cppinternals.dvi): Likewise.
1315 * Makefile.in ($(docdir)/gccint.info): Depend on gty.texi.
1316 * doc/gccint.texi (Top): Include gty.texi.
1317 * doc/gty.texi: New file.
1319 * bitmap.c: Include ggc.h, gt-bitmap.h.
1320 (bitmap_ggc_free): New.
1321 (bitmap_elem_to_freelist): New.
1322 (bitmap_element_free): Use bitmap_elem_to_freelist.
1323 (bitmap_element_allocate): Allow use of GGC.
1324 (bitmap_clear): Use bitmap_elem_to_freelist.
1325 (bitmap_copy): Update for change to bitmap_element_allocate.
1326 (bitmap_set_bit): Likewise.
1327 (bitmap_operation): Update for changes elsewhere.
1328 (bitmap_initialize): Allow to create bitmaps that will use GGC.
1329 * bitmap.h (struct bitmap_element_def): Use gengtype.
1330 (struct bitmap_head_def): Likewise. Also add 'using_obstack' field.
1331 (bitmap_initialize): Add extra parameter.
1332 (BITMAP_OBSTACK_ALLOC): Update for change to bitmap_initialize.
1333 (BITMAP_ALLOCA): Delete.
1334 (BITMAP_XMALLOC): Update for change to bitmap_initialize.
1335 (BITMAP_GGC_ALLOC): New.
1336 * Makefile.in (gtype-desc.o): Add bitmap.h.
1337 (bitmap.o): Add gt-bitmap.h, $(GGC_H).
1338 (GTFILES): Add bitmap.c.
1339 (gt-bitmap.h): New rule.
1340 ($(HOST_PREFIX_1)bitmap.o): Add gt-bitmap.h.
1341 * basic-block.h: Update for changes to bitmap_initialize.
1342 * except.c (exception_handler_label_map): Move into...
1343 (struct eh_status): Here.
1344 (struct eh_region): Make 'aka' GCable.
1345 (free_eh_status): Don't need to specially handle
1346 exception_handler_label_map.
1347 (add_ehl_entry): Update for changes to exception_handler_label_map.
1348 (find_exception_handler_labels): Likewise.
1349 (remove_exception_handler_label): Likewise.
1350 (maybe_remove_eh_handler): Likewise.
1351 (for_each_eh_label): Likewise.
1352 (remove_eh_handler): Allocate 'aka' using GGC.
1353 * gengtype.c (get_output_file_with_visibility): Add bitmap.h
1354 to list of includes.
1356 * gengtype.c (write_gc_marker_routine_for_structure): Name
1357 the routines 'gt_ggc_mx_*' instead of 'gt_ggc_m_*'.
1358 (write_gc_types): Arrange for the tests with NULL to be inlined.
1359 (write_gc_roots): Update uses of procedure pointers.
1360 * ggc-common.c (gt_ggc_mx_rtx_def): Rename from gt_ggc_m_rtx_def.
1362 * Makefile.in (explow.o): Add dependency on gt-explow.h.
1363 (sdbout.o): Add dependency on gt-sdbout.h.
1365 * emit-rtl.c (const_int_htab): Use gengtype to clear unused entries.
1366 (mem_attrs_htab): Likewise.
1367 (init_emit_once): Don't call ggc_add_deletable_htab.
1368 * fold-const.c (size_htab): Use gengtype to clear unused entries.
1369 (size_int_type_wide): Don't call ggc_add_deletable_htab.
1370 * gengtype.c (finish_root_table): Add LASTNAME and TNAME
1371 parameters, use them, change callers.
1372 (write_gc_root): Add IF_MARKED parameter, use it, change callers.
1373 (write_gc_roots): Handle 'if_marked' option.
1374 (main): Don't need to call set_gc_used_type any more.
1375 * ggc.h (ggc_htab_marked_p): Delete.
1376 (ggc_htab_mark): Delete.
1377 (struct ggc_cache_tab): New.
1378 (gt_ggc_cache_rtab): New declaration.
1379 * ggc-common.c (struct d_htab_root): Delete.
1380 (d_htab_roots): Delete.
1381 (ggc_add_deletable_htab): Delete.
1382 (ggc_htab_delete): Handle new htab-deleting mechanism.
1383 (ggc_mark_roots): Use new htab-deleting mechanism.
1384 * tree.c (type_hash_table): Use gengtype to clear unused entries.
1386 (init_obstacks): Don't call ggc_add_deletable_htab.
1388 * objc/objc-act.h (struct hashed_attribute): Use gengtype.
1389 (struct hashed_entry): Likewise.
1390 (nst_method_hash_list): Likewise.
1391 (cls_method_hash_list): Likewise.
1392 (HASH_ALLOC_LIST_SIZE): Delete.
1393 (ATTR_ALLOC_LIST_SIZE): Delete.
1394 * objc/objc-act.c (hash_init): Use ggc to allocate
1395 nst_method_hash_list, cls_method_hash_list.
1396 (hash_enter): Use ggc to allocate; allocate one entry at a time.
1397 (hash_add_attr): Likewise.
1398 (ggc_mark_hash_table): Delete.
1399 (objc_act_parse_init): Delete.
1400 (objc_init): Delete reference to objc_act_parse_init.
1401 * tlink.c: Replace hash.h with hashtab.h. Explicitly include
1402 obstack.h. Replace references to 'struct hash_table' with htab_t.
1403 (struct symbol_hash_entry): Replace hash header with key field.
1404 (struct file_hash_entry): Replace hash header with key field.
1405 (struct demangled_hash_entry): Replace hash header with key field.
1406 (hash_string_eq): New.
1407 (hash_string_hash): New.
1408 (symbol_hash_newfunc): Delete.
1409 (symbol_hash_lookup): Modify to use htab_t.
1410 (file_hash_newfunc): Delete.
1411 (file_hash_lookup): Modify to use htab_t.
1412 (demangled_hash_newfunc): Delete.
1413 (demangled_hash_lookup): Modify to use htab_t.
1414 (tlink_init): Modify to use htab_t.
1417 * ggc.h: Delete forward structure declarations.
1418 Delete prototypes for deleted functions.
1419 * ggc-common.c: Don't include hash.h.
1420 (ggc_add_tree_hash_table_root): Delete.
1421 (ggc_mark_tree_hash_table_entry): Delete.
1422 (ggc_mark_tree_hash_table): Delete.
1423 (ggc_mark_tree_hash_table_ptr): Delete.
1424 * gengtype.c (write_gc_structure_fields): Allow param_is option.
1425 (write_gc_marker_routine_for_structure): Use visibility of
1426 the parameter if there is one.
1427 * function.c: Replace hash.h with hashtab.h. Replace references
1428 to 'struct hash_table *' with htab_t.
1429 (struct insns_for_mem_entry): Include a plain key.
1430 (fixup_var_refs_insns_with_hash): Update to use htab_t.
1431 (insns_for_mem_newfunc): Delete.
1432 (insns_for_mem_hash): Update to use htab_t.
1433 (insns_for_mem_comp): Likewise.
1434 (insns_for_mem_walk): Likewise.
1435 * c-lang.c: Include ggc.h.
1436 * Makefile.in (OBJS): Remove hash.o.
1437 (c-lang.o): Add GGC_H.
1438 (COLLECT2_OBJS): Remove hash.o.
1439 (tlink.o): Remove hash.h, add HASHTAB_H and OBSTACK_H.
1440 (ggc-common.o): Remove hash.h.
1441 (function.o): Remove hash.h, add HASHTAB_H.
1442 (genautomata.o): Remove hash.h, add HASHTAB_H.
1444 * varasm.c (mark_const_str_htab_1): Delete.
1445 (mark_const_str_htab): Delete.
1446 (const_str_htab_del): Delete.
1447 (const_str_htab): Use gengtype to mark.
1448 (init_varasm_once): Use gengtype to mark hashtables. Use GC to
1450 * tree.c (mark_tree_hashtable_entry): Delete.
1451 (mark_tree_hashtable): Delete.
1452 * tree.h (mark_tree_hashtable): Delete prototype.
1453 * ggc.h (ggc_test_and_set_mark): Treat (void *)1 like NULL.
1454 (ggc_mark): Likewise.
1456 (htab_create_ggc): New.
1457 * ggc-common.c (ggc_calloc): New.
1458 * gengtype.h (enum typekind): Add TYPE_PARAM_STRUCT.
1459 (struct type): Add param_struct structure.
1460 * gengtype.c (param_structs): New.
1461 (adjust_field_type): Handle param_is option.
1462 (set_gc_used_type): Handle TYPE_PARAM_STRUCT.
1463 (get_output_file_with_visibility): Include hashtab.h in gtype-desc.c.
1464 (write_gc_structure_fields): Add new PARAM parameter. Update
1465 callers. Handle use_param option. Handle TYPE_PARAM_STRUCT.
1466 (write_gc_marker_routine_for_structure): Add new PARAM parameter.
1467 Use it to generate function name. Update callers.
1468 (write_gc_types): Add new PARAM_STRUCTS parameter. Update callers.
1470 (write_gc_roots): Handle TYPE_PARAM_STRUCT. Allow param_is
1472 (main): Define PTR as pointer-to-scalar. Don't specially
1473 mark deferred_string or ehl_map_entry.
1474 * gengtype-yacc.y (PARAM_IS): Add new token.
1475 (externstatic): Use adjust_field_type.
1476 (type_option): Add PARAM_IS.
1477 * gengtype-lex.l: Add rule for typedef of function pointers.
1478 Add rule for PARAM_IS.
1479 (IWORD): Add size_t.
1480 * except.c (exception_handler_label_map): Use gengtype to mark.
1481 (type_to_runtime_map): Likewise.
1482 (mark_ehl_map_entry): Delete.
1483 (mark_ehl_map): Delete.
1484 (init_eh): Use gengtype for roots; use GC to allocate hash tables.
1485 (t2r_mark_1): Delete.
1487 * Makefile.in (gtype-desc.o): Correct dependencies.
1488 (GTFILES): Add hashtab.h.
1489 (genautomata.o): Actually uses hashtab.h.
1491 * Makefile.in (stringpool.o): Add $(GGC_H).
1492 (dwarf2asm.o): Likewise.
1493 (GTFILES): Add hashtable.h.
1494 * c-common.h (struct c_common_identifier): Use gengtype.
1495 * c-decl.h (c_mark_tree): Delete.
1496 * c-lang.c (LANG_HOOKS_MARK_TREE): Delete.
1497 * c-tree.h (struct lang_identifier): Use gengtype.
1498 (union lang_tree_node): New.
1499 (c_mark_tree): Delete prototype.
1500 * dwarf2out.c [!DWARF2_DEBUGGING_INFO]: Define dummy
1502 * gengtype-lex.l (IWORD): Allow 'bool'.
1504 * gengtype-yacc.y (ALIAS): New token.
1505 (type_option): New rule.
1506 (option): Use type_option.
1507 * gengtype.c (process_gc_options): New.
1508 (set_gc_used_type): Use it.
1509 (write_gc_structure_fields): Add 'bitmap' parameter, change callers.
1510 Add new variable 't' to hold the type of the field being processed.
1511 Add more error checking. Use UNION_P when looking at 'desc' option.
1512 Handle language-specific structures containing other
1513 language-specific structures.
1514 (write_gc_types): Handle 'ptr_alias' option.
1515 (main): Don't need to specially output lang_type, lang_decl, lang_id2.
1516 * ggc-common.c (ggc_pending_trees): Delete.
1517 (ggc_mark_roots): Don't manipulate ggc_pending_trees.
1518 (ggc_mark_trees): Delete.
1519 (gt_ggc_m_tree_node): Delete.
1520 * ggc.h (ggc_pending_trees): Delete.
1521 (ggc_mark_tree): Make alias of gt_ggc_m_tree_node.
1522 * hashtable.h (ht_identifier): Use gengtype.
1523 * langhooks-def.h (LANG_HOOKS_MARK_TREE): Delete.
1524 * langhooks.h (struct lang_hooks): Delete mark_tree.
1525 * sdbout.c [! SDB_DEBUGGING_INFO]: Define dummy sdb_debug_hooks
1527 * system.h: Poison LANG_HOOKS_MARK_TREE.
1528 * tree.c (tree_node_structure): New.
1529 * tree.h (struct tree_common): Use gengtype.
1530 (struct tree_int_cst): Likewise.
1531 (struct tree_real_cst): Likewise.
1532 (struct tree_string): Likewise.
1533 (struct tree_complex): Likewise.
1534 (struct tree_vector): Likewise.
1535 (struct tree_identifier): Likewise.
1536 (struct tree_list): Likewise.
1537 (struct tree_vec): Likewise.
1538 (struct tree_exp): Likewise.
1539 (struct tree_block): Likewise.
1540 (struct tree_type): Likewise.
1541 (struct tree_decl): Likewise.
1542 (enum tree_structure_enum): New.
1543 (union tree_node): Use gengtype, with an alias.
1544 (tree_node_structure): Prototype.
1545 * objc/objc-lang.c (LANG_HOOKS_MARK_TREE): Delete.
1547 Merge to tag pch-merge-20020430. The LANG_HOOKS_FUNCTION_MARK
1548 macro was deleted. The LANG_HOOKS_FUNCTION_FREE macro was renamed
1549 to LANG_HOOKS_FUNCTION_FINAL.
1550 * Makefile.in (GTFILES): Add bitmap.h.
1551 * except.c (struct eh_region): Mark field 'aka' to be skipped.
1553 * config/alpha/alpha.c [TARGET_ABI_UNICOSMK]
1554 (alpha_init_machine_status): Give proper type.
1555 * Makefile.in (c-lang.o): Depend on gtype-c.h.
1556 (optabs.o): Depend on gt-optabs.h.
1557 (GTFILES): Add optabs.o.
1558 (gt-optabs.h): Add rule.
1559 * optabs.c: Include gt-optabs.h.
1561 * gengtype.c (set_gc_used_type): Correct some errors in last change.
1562 (write_gc_structure_fields): If a field which should be NULL is
1564 * c-pragma.c: Move struct align_stack and variable alignment_stack
1567 * config/xtensa/t-xtensa: Add dependencies for gt-xtensa.h.
1568 * config/xtensa/xtensa.c: Include gt-cris.h.
1569 (struct machine_function): Use gengtype to mark.
1570 * config/mmix/mmix.h (struct machine_function): Use gengtype
1572 * config/cris/t-cris: Add dependencies for gt-cris.h.
1573 * config/cris/cris.c: Include gt-cris.h.
1574 (struct machine_function): Use gengtype to mark.
1575 * config/rs6000/rs6000.h (struct machine_function): Use gengtype
1577 * doc/tm.texi (Per-Function Data): Delete references to
1578 mark_machine_status.
1579 * config/ia64/ia64.c (ia64_override_options): Don't set
1580 mark_machine_status.
1581 * config/i386/i386.c (override_options): Likewise.
1582 * config/d30v/d30v.c (d30v_init_expanders): Likewise.
1583 * config/arm/arm.c (arm_init_expanders): Likewise.
1584 * config/alpha/alpha.c (override_options): Likewise.
1585 * gengtype.h (enum gc_used_enum): Add GC_MAYBE_POINTED_TO.
1586 * gengtype.c (set_gc_used_type): Handle 'maybe_null' option.
1587 (write_gc_structure_fields): Don't handle 'really' option.
1588 Handle 'maybe_null' option.
1589 (write_gc_types): Handle 'maybe_null' option.
1590 * function.h (struct function): Don't use "really".
1591 (mark_machine_status): Delete declaration.
1592 (mark_lang_status): Delete declaration.
1593 (gt_ggc_mr_machine_function): Delete prototype.
1594 (gt_ggc_mr_language_function): Delete prototype.
1595 * function.c (mark_machine_status): Delete.
1596 (mark_lang_status): Delete.
1597 (gt_ggc_mr_machine_function): Delete.
1598 (gt_ggc_mr_language_function): Delete.
1599 * c-tree.h (mark_c_function_context): Delete prototype.
1600 * c-objc-common.c (c_objc_common_init): Don't set mark_lang_status.
1601 * c-decl.c (struct language_function): Rename from struct
1602 c_language_function. Update uses. Use gengtype to mark.
1603 (mark_c_function_context): Delete.
1604 * c-common.h (struct c_language_function): Rename from struct
1606 (mark_stmt_tree): Delete prototype.
1607 (c_mark_lang_decl): Delete prototype.
1608 (mark_c_language_function): Delete prototype.
1609 * c-common.c (mark_stmt_tree): Delete.
1610 (c_mark_lang_decl): Delete.
1611 (mark_c_language_function): Delete.
1613 * gengtype.h (enum typekind): Add TYPE_LANG_STRUCT.
1614 (lang_bitmap): New typedef. Use where appropriate.
1615 (struct type): Add gc_used field, lang_struct field.
1616 (UNION_P): New macro.
1617 (new_structure): New prototype.
1618 (find_structure): Remove 'pos' parameter. Change all callers.
1619 * gengtype-lex.l: Update for changes to find_structure.
1620 * gengtype-yacc.y (typedef_struct): Use new_structure.
1621 (yacc_ids): Suppress warning.
1622 (type): Use new_structure.
1623 * gengtype.c (string_type): Update for changes to struct type.
1624 (find_structure): Just find a structure, don't worry about
1626 (new_structure): New.
1627 (note_yacc_type): Use new_structure.
1628 (set_gc_used_type): New.
1630 (write_gc_structure_fields): Allow for pointers to TYPE_LANG_STRUCT.
1631 (write_gc_types): Handle TYPE_LANG_STRUCT.
1632 (write_gc_marker_routine_for_structure): New.
1633 (main): Call set_gc_used. Add some calls to set_gc_used_type
1634 for places where GCC doesn't use gengtype properly yet.
1635 * ggc.h (gt_ggc_m_rtx_def): Don't prototype.
1636 (gt_ggc_m_tree_node): Likewise.
1638 * varasm.c (copy_constant): Call expand_constant if we hit
1639 something we can't recognise.
1641 * ggc-common.c (ggc_mark_rtvec_children): Delete.
1642 (ggc_mark_rtx_children): Use generic name for ggc_mark_rtvec.
1643 (lang_mark_false_label_stack): Delete.
1644 * rtl.h (struct rtvec_def): Use gengtype to mark.
1645 * ggc.h (ggc_mark_rtvec): Delete.
1646 (gt_ggc_m_rtvec_def): Delete.
1647 (ggc_mark_nonnull_tree): Delete.
1648 (ggc_mark_rtvec_children): Delete prototype.
1649 (lang_mark_false_label_stack): Delete declaration.
1651 * gengtype.h (note_yacc_type): Add prototype.
1652 * gengtype.c (note_yacc_type): New function.
1653 * gengtype-lex.l: Add lexer support for yacc files.
1654 * gengtype-yacc.y (start): Extract union from yacc files.
1655 (yacc_union): New rule.
1656 (yacc_typematch): New rule.
1657 (yacc_ids): New rule.
1658 (enum_items): Tweak for efficiency.
1659 (optionseq): Likewise.
1661 * c-common.h (struct language_function): Use gengtype.
1662 (struct c_lang_decl): Likewise.
1663 * c-tree.h (struct lang_decl): Likewise.
1664 (struct lang_type): Likewise.
1665 * c-decl.c (lang_mark_tree): Use generated marker routines to mark
1666 tree language substructures.
1668 * stringpool.c (mark_ident): Replace ggc_mark_nonnull_tree with
1670 * dwarf2asm.c (mark_indirect_pool_entry): Likewise.
1672 * varasm.c (struct rtx_const): Remove 'skip' tags for scalar arrays.
1674 * stmt.c (struct nesting): Add discriminator. Use gengtype to
1675 mark. Remove 'data.block.cleanup_ptr' field.
1676 (struct stmt_status): Use usual technique to mark struct nesting.
1677 (gt_ggc_mr_nesting_cond): Delete.
1678 (gt_ggc_mr_nesting_loop): Delete.
1679 (gt_ggc_mr_nesting_block): Delete.
1680 (gt_ggc_mr_nesting_case_stmt): Delete.
1681 (expand_start_cond): Set discriminator.
1682 (expand_start_loop): Likewise.
1683 (expand_start_null_loop): Likewise.
1684 (expand_start_bindings_and_block): Set discriminator. Don't set
1686 (expand_decl_cleanup): Replace 'cleanup_ptr' with
1687 &thisblock->data.block.cleanups.
1688 (expand_start_case): Set discriminator.
1689 (expand_start_case_dummy): Set discriminator.
1691 * ggc-callbacks.c: Remove.
1693 * gengtype.h (struct type): Add 'u.s.bitmap' field.
1694 (find_structure): Add 'pos' parameter.
1695 * gengtype-lex.l: Update callers to find_structure.
1696 * gengtype-yacc.y: Likewise.
1697 * gengtype.c (find_structure): Allow for structures to be defined
1698 in multiple language backends.
1699 (get_output_file_with_visibility): Include debug.h in gtype-desc.c.
1700 (counter): Rename to gc_counter.
1701 (write_gc_structure_fields): Fail when writing out fields for
1702 an incomplete structure. Ignore arrays of scalars. Handle
1704 (write_gc_types): Reset counter for each procedure written.
1706 * stmt.c (add_case_node): Use GGC to allocate struct case_node.
1707 (free_case_nodes): Delete.
1708 (expand_end_case_type): Delete call to free_case_nodes.
1710 * Makefile.in (cselib.o): Include gt-<filename>.h.
1712 (profile.o): Likewise.
1713 (alias.o): Likewise.
1714 (GTFILES): Add alias.c, cselib.c, gcse.c, profile.c, and
1715 alphabetize backend files.
1716 (gt-alias.h, gt-cselib.h, gt-gcse.h, gt-profile.h): New rules.
1717 * alias.c: Use gengtype for roots.
1718 * c-common.h (struct stmt_tree_s): Use gengtype.
1719 * c-decl.c: Use gengtype for roots.
1720 * cselib.c: Use gengtype for roots.
1721 * expr.c: Use gengtype for roots.
1722 * fold-const.c: Use gengtype for roots.
1723 * gcse.c: Use gengtype for roots.
1724 * gengtype-lex.l: Handle typedefs of function types.
1725 Allow for empty array bounds.
1726 Allow processing to stop on initialisers.
1727 * gengtype-yacc.y (externstatic): Stop processing on initialisers.
1728 (semiequal): New rule.
1729 * gengtype.c (create_file): Tidy output files.
1730 (get_output_file_with_visibility): Fix paren warning. Fix bug
1731 involving multiple input files mapping to one output file.
1732 (write_gc_structure_fields): Skip arrays of scalars.
1733 (write_gc_types): Tidy output files.
1734 (write_gc_root): New function.
1735 (write_gc_roots): Fix bugs, add support for roots that are
1737 * ggc-common.c (ggc_mark_rtx_ptr): Delete.
1738 (ggc_mark_tree_ptr): Delete.
1739 (ggc_add_rtx_root): Delete.
1740 (ggc_add_tree_root): Delete.
1741 (ggc_del_root): Delete.
1742 * integrate.c (get_func_hard_reg_initial_val): Use ggc_alloc to
1743 allocate struct initial_value_struct.
1744 * profile.c: Use gengtype for roots.
1745 * sdbout.c: Use gengtype for roots.
1746 * varasm.c (mark_weak_decls): Delete unused prototype.
1747 (mark_const_hash_entry): Delete unused function.
1748 * config/darwin-protos.h: Use gengtype for roots.
1749 (machopic_add_gc_roots): Delete.
1750 * config/arm/arm.c: Use gengtype for roots.
1751 * config/arm/arm.h: Use gengtype for roots.
1752 * config/c4x/c4x-protos.h: Use gengtype for roots.
1753 * config/c4x/c4x.c (c4x_add_gc_roots): Delete.
1754 * config/d30v/d30v-protos.h: Use gengtype for roots.
1755 * config/d30v/d30v.c (d30v_add_gc_roots): Delete.
1756 * config/dsp16xx/dsp16xx.c (override_options): Use gengtype for roots.
1757 * config/dsp16xx/dsp16xx.h: Use gengtype for roots.
1758 * config/ia64/ia64-protos.h: Use gengtype for roots.
1759 * config/ia64/ia64.c (ia64_add_gc_roots): Delete.
1760 * config/m68hc11/m68hc11-protos.h: Use gengtype for roots.
1761 * config/m68hc11/m68hc11.c (z_reg): Make global.
1762 (z_reg_qi): Make global.
1763 (m68hc11_add_gc_roots): Delete.
1764 * config/mcore/mcore-protos.h: Use gengtype for roots.
1765 * config/mcore/mcore.c (mcore_add_gc_roots): Delete.
1766 * config/mips/mips.c (mips_add_gc_roots): Delete.
1767 * config/mips/mips.h: Use gengtype for roots.
1768 * config/mmix/mmix.c (override_options): Use gengtype for roots.
1769 * config/mmix/mmix.h: Use gengtype for roots.
1770 * config/mn10200/mn10200.c (asm_file_start): Use gengtype for roots.
1771 * config/mn10200/mn10200.h: Use gengtype for roots.
1772 * config/pa/pa.c: Use gengtype for roots, marking.
1773 (struct deferred_plabel): Use GGC, gengtype.
1774 (pa_add_gc_roots): Delete.
1775 (mark_deferred_plabels): Delete.
1776 * config/pj/pj-protos.h: Use gengtype for roots.
1777 * config/pj/pj.h (OVERRIDE_OPTIONS): Don't define.
1778 * config/rs6000/rs6000.c: Use gengtype for roots. Don't call
1779 machopic_add_gc_roots.
1780 * config/rs6000/rs6000.h: Use gengtype for roots.
1781 * config/rs6000/t-darwin (darwin.o): Add dependency on gt-darwin.h.
1782 (gt-darwin.h): Add rule.
1783 * config/sh/sh.c: Use gengtype for roots.
1784 * config/sh/t-sh ($(out_object_file)): Add dependency on gt-sh.h.
1785 (gt-sh.h): Add rule.
1786 * config/sparc/sparc.c: Use gengtype for roots.
1787 (sparc_add_gc_roots): Delete.
1788 (struct ultrasparc_pipeline_state): Use GGC, gengtype.
1789 (mark_ultrasparc_pipeline_state): Delete.
1790 * config/sparc/sparc.h: Use gengtype for roots.
1792 * Makefile.in (c-parse.o): Update dependencies.
1793 (c-common.o): Likewise.
1794 (GTFILES): Add c-common.h, c-tree.h, c-common.c, c-parse.in.
1795 Add dependencies for the files they generate.
1796 * c-common.c: Replace ggc_add_* uses with GTY annotations.
1797 * c-common.h: Likewise.
1798 * c-decl.c: Likewise.
1799 (gt_ggc_mp_binding_level): Delete.
1800 * c-lang.c: Include gtype-c.h.
1801 * c-parse.in: Replace ggc_add_* uses with GTY annotations. Include
1803 * c-pragma.h: Replace ggc_add_* uses with GTY annotations.
1804 (gt_ggc_mp_align_stack): Delete.
1805 * c-tree.h: Replace ggc_add_* uses with GTY annotations.
1806 * function.c: Replace ggc_add_* uses with GTY annotations.
1807 (gt_ggc_mp_function): Delete.
1808 * function.h: Replace ggc_add_* uses with GTY annotations.
1809 * gengtype.c (lang_names): New.
1810 (NUM_BASE_FILES): New.
1811 (open_base_files): Create language base files.
1813 (get_file_basename): New.
1814 (get_base_file_bitmap): New.
1815 (get_output_file_with_visibility): Rename from get_output_file.
1816 Add more mappings for various C/Objc filenames.
1817 (finish_root_table): New.
1818 (write_gc_roots): Handle dependencies and scoping properly.
1819 * gengtype.h: Add prototypes for new functions.
1820 * ggc-common.c (struct deletable_root): Delete.
1821 (deletables): Delete.
1822 (ggc_add_deletable_root): Delete.
1823 (ggc_mark_roots): No need to deal with deleted functionality.
1824 * ggc.h (ggc_add_deletable_root): Delete prototype.
1825 * objc/Make-lang.in (objc-act.o): Add gtype-objc.h dependency.
1826 (gtype-objc.h): Add rule to create.
1827 * objc/config-lang.in (gtfiles): New.
1828 * objc/objc-act.c: Allocate imp_list using GGC. Replace uses of
1829 ggc_add_* with GTY markers. Include gtype-objc.h.
1830 (ggc_mark_imp_list): Delete.
1831 * objc/objc-act.h: Replace uses of ggc_add_* with GTY markers.
1832 * objc/objc-lang.c: Random Whitespace Change.
1834 * except.h (exception_handler_labels): Delete.
1835 (get_exception_handler_labels): New.
1836 * except.c (exception_handler_labels): Delete.
1837 (struct eh_status): Add exception_handler_labels field.
1838 (doing_eh): Don't add exception_handler_labels as root.
1839 (free_eh_status): Don't need to free exception_handler_labels.
1840 (get_exception_handler_labels): New.
1841 (find_exception_handler_labels): Update for move of
1842 exception_handler_labels.
1843 (remove_exception_handler_label): Likewise.
1844 * cfgrtl.c (can_delete_label_p): Use get_exception_handler_labels.
1845 * jump.c (rebuild_jump_labels): Likewise.
1846 * loop.c (find_and_verify_loops): Likewise.
1847 * sched-rgn.c (is_cfg_nonregular): Likewise.
1849 * gengtype.c (write_gc_structure_fields): Handle variable-length
1852 * varasm.c (struct weak_syms): Use GGC, gengtype.
1853 (mark_weak_decls): Delete.
1854 (weak_decls): Likewise.
1855 (add_weak): Likewise.
1856 (remove_from_pending_weak_list): Likewise.
1857 (init_varasm_once): Likewise.
1859 * Makefile.in (gtype-desc.o): Add libfuncs.h dependency.
1860 (GTFILES): Add tree.h, libfuncs.h, emit-rtl.c, explow.c,
1861 stor-layout.c, regclass.c, and lists.c.
1862 Add dependencies of gt-emit-rtl.h gt-explow.h gt-stor-layout.h
1863 gt-regclass.h and gt-lists.h on s-gtype.
1864 * emit-rtl.c: Use gengtype for roots. Include gt-emit-rtl.h.
1865 * except.c: Use gengtype for roots.
1866 * explow.c: Use gengtype for roots. Include gt-explow.h.
1867 * expr.h (init_stor_layout_once): Delete prototype.
1868 * function.c: Use gengtype for roots.
1869 * gengtype-lex.l: Add ENT_EXTERNSTATIC lexing.
1870 * gengtype-yacc.y (start): Can also be an externstatic.
1871 (externstatic): New production.
1872 (struct_fields): Correct array bounds inversion for 2-d arrays.
1873 * gengtype.c (variables): New variable.
1874 (note_variable): New function.
1875 (get_output_file): Include libfuncs.h into gtype-desc.c.
1876 (get_output_file_name): New function.
1877 (write_gc_structure_fields): Suppress warnings.
1878 (write_gc_types): Make static.
1879 (put_mangled_filename): New function.
1880 (write_gc_roots): New function.
1881 (main): Call write_gc_roots.
1882 * gengtype.h (note_variable): Prototype.
1883 (get_output_file_name): Prototype.
1884 (write_gc_types): Delete prototype.
1885 * ggc.h: Clean up unnecessary structure predefinitions.
1886 (struct ggc_root_tab): Define.
1887 (gt_ggc_m_rtx_def): Make function, not macro.
1888 (gt_ggc_m_tree_node): Likewise.
1889 * libfuncs.h: Use gengtype for roots.
1890 * lists.c: Use gengtype for roots. Include gt-lists.h.
1891 (init_EXPR_INSN_LIST_cache): Delete.
1892 * optabs.c: Use gengtype for roots.
1893 (gt_ggc_mp_optab): Delete.
1894 * optabs.h: Use gengtype for roots.
1895 * regclass.c: Use gengtype for roots. Include gt-regclass.h.
1896 * rtl.h: Use gengtype for roots.
1897 (init_EXPR_INSN_LIST_cache): Delete prototype.
1898 * stor-layout.c: Use gengtype for roots.
1899 Include gt-stor-layout.h.
1900 (init_stor_layout_once): Delete.
1901 * toplev.c: Use gengtype for roots. Delete calls to deleted
1903 * tree.c: Use gengtype for roots.
1904 * tree.h: Use gengtype for roots.
1905 * varasm.c: Use gengtype for roots.
1907 * Makefile.in (GTFILES): Add @all_gtfiles@.
1908 * configure: Regenerate.
1909 * configure.in: Construct all_gtfiles from the gtfiles definitions
1911 * gengtype-yacc.y (type): Warn about duplicate structure names.
1912 * gengtype.c (get_output_file): Handle .c files in language
1915 * Makefile.in (GTFILES): Run gengtype on all the config files
1916 and on the target .c file.
1917 * except.c (mark_eh_region): Delete.
1918 (init_eh_for_function): Use GGC on struct eh_status.
1919 (mark_eh_status): Delete.
1920 (free_eh_status): Use GGC.
1921 (expand_eh_region_start): Use GGC to
1922 (collect_eh_region_array): Allocate last_region_number using GGC.
1923 (duplicate_eh_region_1): Use GGC to allocate struct eh_region.
1924 (remove_eh_handler): Let GGC free struct eh_region.
1925 (add_call_site): Use GGC to reallocate call_site_record array.
1926 * function.c (init_machine_status): Update calling sequence.
1927 (mark_machine_status): Likewise.
1928 (mark_lang_status): Likewise.
1929 (prepare_function_start): Update init_machine_status call.
1930 (mark_function_status): Delete.
1931 (maybe_mark_struct_function): Delete.
1932 (ggc_mark_struct_function): Delete.
1933 (gt_ggc_mp_function): New.
1934 (gt_ggc_mr_machine_function): New.
1935 (gt_ggc_mr_language_function): New.
1936 (init_function_once): Use canonical names.
1937 * function.h (struct function): Use gengtype.
1938 (init_machine_status): Return the structure.
1939 (mark_machine_status): Take a 'void *'.
1940 (mark_lang_status): Likewise.
1941 * ggc-common.c (ggc_mark_trees): Use canonical name for
1942 ggc_mark_struct_function.
1943 * tree.h (ggc_mark_struct_function): Delete prototype.
1944 * config/alpha/alpha.c (alpha_mark_machine_status): Delete.
1945 (alpha_init_machine_status): Likewise.
1946 (override_options): Use canonical name for alpha_mark_machine_status.
1947 * config/alpha/unicosmk.h (struct machine_function): Use gengtype.
1948 * config/arm/arm.h (struct machine_function): Use gengtype.
1949 * config/arm/arm.c (arm_mark_machine_status): Delete.
1950 (arm_init_machine_status): Update calling sequence.
1951 (arm_init_expanders): Use canonical name for arm_mark_machine_status.
1952 * config/cris/cris.c (cris_init_machine_status): Update
1954 * config/d30v/d30v.h (struct machine_function): Use gengtype.
1955 * config/d30v/d30v.c (d30v_init_machine_status): Update
1957 (d30v_mark_machine_status): Delete.
1958 * config/i386/i386.c: Include gt-i386.h.
1959 (struct machine_function): Use gengtype.
1960 (ix86_init_machine_status): Update calling sequence.
1961 (ix86_mark_machine_status): Delete.
1962 (override_options): Use canonical namke for ix86_mark_machine_status.
1963 * config/ia64/ia64.h (struct machine_function): Use gengtype.
1964 * config/ia64/ia64.c (ia64_init_machine_status): Update calling
1966 (ia64_mark_machine_status): Delete.
1967 (ia64_override_options): Use canonical name for
1968 ia64_mark_machine_status.
1969 * config/mmix/mmix.c (mmix_init_machine_status): Update calling
1971 * config/rs6000/rs6000.c (rs6000_init_machine_status): Likewise.
1972 * config/xtensa/xtensa.c (xtensa_init_machine_status): Likewise.
1973 * gengtype.c (get_output_file): Fix warning.
1974 (main): Add prototype to suppress warning.
1975 * tree.c: Remove tree_hash_mark prototype.
1977 * tree.h (init_stmt): Delete prototype.
1978 * toplev.c (lang_independent_init): Don't call init_stmt.
1979 * stmt.c (ALLOC_NESTING): Use GGC for 'struct nesting'.
1980 (stmt_obstack): Delete.
1981 (POPSTACK): No need to free 'struct nesting'.
1982 (gt_ggc_mr_nesting_cond): Use canonical names.
1983 (gt_ggc_mr_nesting_loop): Use canonical names.
1984 (gt_ggc_mr_nesting_block): Use canonical names.
1985 (gt_ggc_mr_nesting_case_stmt): Use canonical names.
1986 (mark_stmt_status): Delete.
1987 (init_stmt): Delete.
1988 (clear_last_expr): Clear both last_expr_type and last_expr_value.
1989 Use it everywhere that last_expr_type was cleared.
1990 * lists.c (init_EXPR_INSN_LIST_cache): Use ggc_add_deletable_root.
1991 (zap_lists): Delete.
1992 * ggc.h (ggc_add_deletable_root): Prototype.
1993 (mark_stmt_status): Remove prototype.
1994 * ggc-common.c (ggc_add_deletable_root): New.
1995 (ggc_mark_roots): Handle deletable roots.
1996 * function.c (ggc_mark_struct_function): Use canonical name
1997 for mark_stmt_status.
1998 * emit-rtl.c (free_sequence_stack): New.
1999 (start_sequence): Use a freelist for sequences.
2000 (end_sequence): Likewise.
2001 (init_emit_once): Add free_sequence_stack as a deleteable root.
2002 * c-pragma.c Include gt-c-pragma.h.
2003 (struct align_stack): Use gengtype.
2004 (push_alignment): Use GGC for struct align_stack.
2005 (mark_align_stack): Delete.
2006 (gt_ggc_mp_align_stack): New.
2007 (init_pragma): Use canonical name for mark_align_stack.
2008 * c-decl.c: Include gt-c-decl.h.
2009 (struct binding_level): Use gengtype.
2010 (make_binding_level): Use GGC; handle the freelist here.
2011 (pop_binding_level): New.
2012 (pushlevel): Move code into make_binding_level.
2013 (push_label_level): Likewise.
2014 (poplevel): Move code into pop_binding_level.
2015 (pop_label_level): Likewise.
2016 (mark_binding_level): Delete.
2017 (gt_ggc_mp_binding_level): New.
2018 (c_init_decl_processing): Use canonical name for mark_binding_level.
2019 Add free_binding_level as deletable root.
2020 (mark_c_function_context): Use canonical name for mark_binding_level.
2021 * Makefile.in (c-decl.o): Add gt-c-decl.h.
2022 (c-pragma.o): Add gt-c-pragma.h.
2023 (GTFILES): Add c-decl.c and c-pragma.c.
2024 (gt-c-decl.h, gt-c-pragma.h): Create using gengtype.
2026 * tree.c (struct type_hash): Use gengtype.
2027 (init_obstacks): Use canonical name for type_hash_mark.
2028 (type_hash_mark): Delete.
2030 * rtl.h (struct mem_attrs): Use gengtype.
2031 * optabs.h (struct optab): Use gengtype.
2032 * optabs.c (expand_binop): Squish signed/unsigned warning.
2033 (mark_optab): Make local, use canonical name, use autogenerated
2035 (init_optabs): Use canonical name for mark_optab.
2036 (new_optab): Use GGC to allocate optabs.
2037 * ggc.h: Delete mark_optab prototype.
2038 * ggc-common.c (ggc_mark_rtx_children): Use canonical name for
2039 mem_attrs marker procedure.
2040 * gengtype.c (get_output_file): Include headers in gtype-desc.c
2041 explicitly rather than deducing them from file names.
2042 (write_gc_structure_fields): Handle arrays of structures.
2043 (main): Return non-zero exit code if errors occur during output.
2044 * emit-rtl.c (mem_attrs_mark): Delete.
2045 (init_emit_once): Use canonical name for mem_attrs marker procedure.
2046 * Makefile.in (gtype-desc.o): Explicitly name dependencies.
2047 (tree.o): Depend on gt-tree.h.
2048 (GTFILES): Add rtl.h, optabs.h, tree.c.
2049 (gt-tree.h): Add it to s-gtype rule.
2051 * .cvsignore: Ignore gengtype flex/bison generated files.
2052 * Makefile.in (GGC_H): Add gtype-desc.h.
2053 (OBJS): Add gtype-desc.o.
2054 (GEN): Add gengtype.
2055 (STAGESTUFF): Add gengtype.
2056 (varasm.o): Add gt-varasm.h.
2057 (stmt.o): Add gt-stmt.h.
2058 (except.o): Add gt-except.h.
2059 (integrate.o): Add gt-integrate.h.
2061 Add new rules for new files.
2062 * configure: Regenerate.
2063 * configure.in: Correct defaults.h paths.
2064 * emit-rtl.c (mark_sequence_stack): Delete.
2065 (mark_emit_status): Delete.
2066 (start_sequence): Allocate sequence structures using GGC.
2067 (end_sequence): Allocate sequence structures using GGC.
2068 * except.c: Use gengtype for various structures. Include
2070 * expr.c (mark_expr_status): Delete.
2071 * function.c: Use gengtype for various structures. Include
2073 (mark_function_status): Use standard gt_ggc names for marker functions.
2074 (ggc_mark_struct_function): Likewise.
2075 * function.h: Use gengtype for various structures.
2076 * gengtype-lex.l: New file.
2077 * gengtype-yacc.y: New file.
2078 * gengtype.c: New file.
2079 * gengtype.h: New file.
2080 * ggc.h: Include gtype-desc.h. Alias some marker procedures to
2081 the standard names. Remove some now-unnecessary prototypes.
2082 * integrate.c: Use gengtype for various structures. Include
2084 (mark_hard_reg_initial_vals): Delete.
2085 * integrate.h (mark_hard_reg_initial_vals): Delete.
2086 * stmt.c: Use gengtype for various structures. Include
2088 (mark_case_node): Delete.
2089 (mark_goto_fixup): Delete.
2090 (mark_stmt_status): Use standard gt_ggc names for marker functions.
2091 * system.h: Define GTY to empty. In flex/bison files,
2092 don't poison malloc or realloc, instead just define them to
2093 xmalloc and xrealloc.
2094 * varasm.c: Use gengtype for various structures. Include
2095 gt-varasm.h. Use standard gt_ggc names for marker functions.
2096 (mark_pool_constant): Delete.
2097 (mark_varasm_status): Delete.
2098 (decode_rtx_const): #if 0 out non-typesafe hack.
2100 * function.h (free_lang_status): Mark as obsolete.
2101 * function.c (free_lang_status): Mark as obsolete.
2102 * c-decl.c (push_c_function_context): Use GC to allocate and free
2103 struct language_function.
2104 (pop_c_function_context): Likewise.
2105 * c-common.c (mark_c_language_function): Mark struct
2108 * doc/tm.texi (Per-Function Data): Don't document free_machine_status.
2109 Document that the machine_function structures must be allocated
2110 using GC. Update mark_machine_status documentation.
2111 * function.h: Don't declare free_machine_status.
2112 * function.c (free_machine_status): Don't define.
2113 (free_after_compilation): Don't call free_machine_status.
2114 (ggc_mark_struct_function): Mark f->machine. Call
2115 mark_machine_status only on non-NULL pointers.
2116 * system.h: Poison free_machine_status.
2117 * config/xtensa/xtensa.c (xtensa_init_machine_status): Use GC on
2118 struct machine_function.
2119 (xtensa_free_machine_status): Delete.
2120 (override_options): Don't set free_machine_status.
2121 * config/rs6000/rs6000.c (rs6000_override_options): Don't set
2122 free_machine_status.
2123 (rs6000_init_machine_status): Use GC on struct machine_function.
2124 (rs6000_free_machine_status): Delete.
2125 * config/ia64/ia64.c (ia64_init_machine_status): Use GC on struct
2127 (ia64_mark_machine_status): Likewise.
2128 (ia64_free_machine_status): Delete.
2129 (ia64_override_options): Don't set free_machine_status.
2130 * config/i386/i386.c (override_options): Don't set
2131 free_machine_status.
2132 (ix86_init_machine_status): Use GC on struct machine_function.
2133 (ix86_mark_machine_status): Likewise.
2134 (ix86_free_machine_status): Delete.
2135 * config/d30v/d30v.c: (d30v_init_machine_status): Use GC on struct
2137 (d30v_mark_machine_status): Likewise.
2138 (d30v_free_machine_status): Delete.
2139 (d30v_init_expanders): Don't set free_machine_status.
2140 * config/arm/arm.c (arm_mark_machine_status): Use GC on struct
2142 (arm_init_machine_status): Likewise.
2143 (arm_free_machine_status): Delete.
2144 (arm_init_expanders): Don't set free_machine_status.
2145 * config/alpha/alpha.c (override_options): Don't set
2146 free_machine_status.
2147 (alpha_init_machine_status): Use GC on struct machine_function.
2148 (alpha_mark_machine_status): Likewise.
2149 (alpha_free_machine_status): Delete.
2151 * varasm.c (compare_constant): Fix typo.
2153 * varasm.c: Don't include obstack.h.
2154 (struct varasm_status): x_const_rtx_hash_table is a hash of rtxes.
2155 (struct rtx_const): Give substructures names, improve formatting.
2156 (struct constant_descriptor): Delete.
2157 (struct constant_descriptor_tree): New, based on constant_descriptor.
2158 (const_hash_table): Is a hash table of trees.
2159 (mark_const_hash_entry): Is used for hashes of trees. Mark
2160 constant_descriptor_tree structure.
2161 (mark_const_str_htab_1): Mark deferred_string structure.
2162 (compare_constant): Rewrite to compare trees.
2163 (compare_constant_1): Delete.
2164 (record_constant): Delete.
2165 (record_constant_1): Delete.
2166 (output_constant_def): Use struct constant_descriptor_tree.
2167 Don't duplicate trees twice.
2168 (struct constant_descriptor_rtx): New.
2169 (struct pool_constant): Used for rtx constants.
2170 (init_varasm_status): Update for change to struct varasm_status.
2171 (mark_varasm_status): Likewise.
2172 (free_varasm_status): Delete.
2173 (compare_constant_rtx): Rewrite to handle constant_descriptor_rtx.
2174 (record_constant_rtx): Likewise.
2175 (mem_for_const_double): Update to use struct constant_descriptor_rtx.
2176 (force_const_mem): Likewise.
2177 * Makefile.in (varasm.o): Doesn't depend on obstack.h.
2178 * function.c (free_after_compilation): Don't use free_varasm_status.
2179 * function.h: Don't prototype free_varasm_status.
2181 * ggc-common.c (ggc_realloc): Handle X being NULL.
2183 * ggc-common.c (ggc_realloc): New function.
2184 * ggc.h: Prototype it.
2185 * emit-rtl.c (free_emit_status): Delete.
2186 (init_emit): Allocate emit subarrays using GC.
2187 (gen_reg_rtx): Reallocate subarrays using GC.
2188 (init_emit): Use GC to allocate 'struct emit_status' and its
2190 (mark_emit_status): Mark structure and its subarrays.
2191 * stmt.c (free_stmt_status): Delete.
2192 * expr.c (free_expr_status): Delete.
2193 * function.h: Remove prototypes for deleted functions.
2194 * function.c (free_after_compilation): Don't use deleted functions.
2195 Don't call free() on x_parm_reg_stack_loc.
2196 (free_after_parsing): Don't use free_stmt_status.
2197 (assign_parms): Use GC to allocate and resize x_parm_reg_stack_loc.
2198 (mark_function_status): Mark x_parm_reg_stack_loc.
2200 * varasm.c (init_varasm_status): Use GC to allocate
2201 'struct varasm_status' and its fields x_const_rtx_hash_table
2202 and x_const_rtx_sym_hash_table.
2203 (mark_varasm_status): Mark them.
2204 (free_varasm_status): Use GC to free them.
2205 * expr.c (init_expr): Use GC to allocate 'struct expr_status'.
2206 (mark_expr_status): Mark the structure itself.
2207 (free_expr_status): Use GC to free the structure.
2208 * stmt.c (free_stmt_status): Use GC to free 'struct stmt_status'.
2209 (mark_stmt_status): Mark the 'struct stmt_status' itself.
2210 (init_stmt_for_function): Allocate the structure for GC.
2212 * dwarf2out.c (lookup_type_die): Use TYPE_SYMTAB_DIE.
2213 (equate_type_number_to_die): Likewise.
2214 * tree.h (TYPE_SYMTAB_DIE): New macro.
2215 (struct die_struct): Predeclare.
2216 (struct tree_type): Add field symtab.die. Add a tag
2217 to the union type of field symtab.
2219 * varray.h (VARRAY_RTVEC_INIT): A varray of rtvec contains
2220 'struct rtvec_def *', not 'struct rtvec_def'.
2222 * function.h (original_arg_vector): Make a real rtvec.
2223 * function.c (ggc_mark_struct_function): Adjust.
2224 * integrate.c (expand_inline_function): Adjust.
2226 2002-06-04 Jason Thorpe <thorpej@wasabisystems.com>
2228 * config.gcc (sh5-*-netbsd*, sh5l*-*-netbsd*)
2229 (sh64-*-netbsd*, sh64l*-*-netbsd*): New targets.
2230 * config/sh/netbsd-elf.h (TARGET_VERSION_ENDIAN)
2231 (TARGET_VERSION_CPU): Define according to the
2233 (TARGET_VERSION): Use TARGET_VERSION_ENDIAN and
2235 (TARGET_OS_CPP_BUILTINS): Use NETBSD_OS_CPP_BUILTINS_LP64
2236 if TARGET_SHMEDIA64.
2237 (LINK_DEFAULT_CPU_EMUL): Define according to the
2239 (SUBTARGET_LINK_EMUL_SUFFIX): Define.
2240 (SUBTARGET_LINK_SPEC): Define.
2241 (LINK_SPEC): Use SH_LINK_SPEC.
2243 (TARGET_DEFAULT): Use TARGET_CPU_DEFAULT.
2244 (FUNCTION_PROFILER): Add cases for TARGET_SHMEDIA32
2245 and TARGET_SHMEDIA64 which abort, for now.
2246 * config/sh/t-netbsd-sh5: New file.
2247 * config/sh/t-netbsd-sh5-32: New file.
2248 * config/sh/t-netbsd-sh5-64: New file.
2250 2002-06-03 Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
2251 Richard Henderson <rth@redhat.com>
2253 * config/alpha/alpha.c (reg_or_const_int_operand): New.
2254 (some_operand, input_operand): Accept CONST_VECTOR.
2255 (alpha_extra_constraint): Add 'W'.
2256 (alpha_expand_zap_mask): New.
2257 (alpha_expand_builtin_vector_binop): New.
2258 (enum alpha_builtin): New.
2259 (zero_arg_builtins, one_arg_builtins, two_arg_builtins): New.
2260 (alpha_init_builtins, alpha_expand_builtin): New.
2261 (TARGET_INIT_BUILTINS, TARGET_EXPAND_BUILTIN): New.
2262 * config/alpha/alpha.h (VECTOR_MODE_SUPPORTED_P): New.
2263 (PREDICATE_CODES): Update.
2264 * config/alpha/alpha-protos.h: Update.
2265 * config/alpha/alpha.md (UNSPEC_CMPBGE, UNSPEC_ZAP,
2266 UNSPEC_AMASK, UNSPEC_IMPLVER, UNSPEC_PERR, UNSPECV_RPCC): New.
2267 (movv8qi, movv8qi_fix, movv8qi_nofix): New.
2268 (movv4hi, movv4hi_fix, movv4hi_nofix): New.
2269 (movv2si, movv2si_fix, movv2si_nofix): New.
2270 (uminv8qi3, sminv8qi3, uminv4hi3, sminv4hi3): New.
2271 (umaxv8qi3, smaxv8qi3, umaxv4hi3, smaxv4hi3): New.
2272 (builtin_cmpbge, builtin_extql, builtin_extqh, builtin_zap,
2273 builtin_zap_1, builtin_zapnot, builtin_zapnot_1, builtin_amask,
2274 builtin_implver, builtin_rpcc, builtin_minub8, builtin_minsb8,
2275 builtin_minuw4, builtin_minsw4, builtin_maxub8, builtin_maxsb8,
2276 builtin_maxuw4, builtin_maxsw4, builtin_perr, builtin_pklb,
2277 pklb, builtin_pkwb, pkwb, builtin_unpkbl, unpkbl,
2278 builtin_unpkbw, unpkbw): New.
2279 * doc/extend.texi (Alpha Built-in Functions): New.
2281 2002-06-03 Richard Henderson <rth@redhat.com>
2283 * crtstuff.c (__EH_FRAME_BEGIN__): Conditionalize on
2284 USE_EH_FRAME_REGISTRY, not EH_FRAME_SECTION_NAME.
2286 2002-06-03 Richard Henderson <rth@redhat.com>
2288 * config/alpha/alpha-protos.h: Eliminate unneeded ifdefs.
2290 * config/alpha/alpha.c (reg_or_0_operand): Use CONST0_RTX.
2291 (const0_operand): New.
2292 (reg_or_fp0_operand, fp0_operand): Remove.
2293 * config/alpha/alpha.h (PREDICATE_CODES): Update.
2294 * config/alpha/alpha-protos.h: Update.
2295 * config/alpha/alpha.md: Replace all uses of reg_or_fp0_operand
2296 and fp0_operand with reg_or_0_operand and const0_operand.
2298 2002-06-03 Dan Nicolaescu <dann@godzilla.ics.uci.edu>
2300 * alias.c (nonoverlapping_memrefs_p): Fix off by one error.
2302 2002-06-03 Roger Sayle <roger@eyesopen.com>
2304 * gcse.c (cprop_jump): Use single_set to get the pattern
2305 from the setcc argument.
2307 2002-06-03 Gabriel Dos Reis <gdr@codesourcery.com>
2309 * diagnostic.h (diagnostic_count): Move from output_buffer to
2311 (diagnostic_kind_count): Adjust definition.
2313 Mon Jun 3 19:11:53 CEST 2002 Jan Hubicka <jh@suse.cz>
2315 * except.c (except.c): Do not rebuild CFG.
2316 * toplev.c (rest_of_compilation): Recompute CFG after sibcall
2319 Mon Jun 3 11:53:01 CEST 2002 Jan Hubicka <jh@suse.cz>
2321 * integrate.c (copy_insn_list): Properly pace the INSN_SCOPE copies.
2322 * toplev.c: Include cfglahout.h
2323 * Makefile.in (toplev.c): Add dependnecy.
2325 2002-06-03 Neil Booth <neil@daikokuya.demon.co.uk>
2327 * config/i386/i386.h (TARGET_CPU_CPP_BUILTINS): New.
2328 (CPP_CPU32_SPEC, CPP_CPU64_SPEC): Kill.
2329 (CPP_CPUCOMMON_SPEC): Rename CPP_CPU_SPEC.
2331 2002-06-03 Jason Thorpe <thorpej@wasabisystems.com>
2333 * config/ns32k/netbsd.h: Update copyright years.
2334 (TARGET_OS_CPP_BUILTINS): Define.
2335 (CPP_PREDEFINES): Remove.
2336 * config/ns32k/ns32k.h (CPP_PREDEFINES): Remove.
2337 (TARGET_CPU_CPP_BUILTINS): Define.
2339 2002-06-02 Kazu Hirata <kazu@cs.umass.edu>
2341 * emit-rtl.c: Fix formatting.
2342 * errors.h: Likewise.
2343 * except.c: Likewise.
2344 * explow.c: Likewise.
2345 * expmed.c: Likewise.
2349 2002-06-02 Kazu Hirata <kazu@cs.umass.edu>
2351 * config/h8300/elf.h: Fix formatting.
2352 * config/h8300/rtems.h: Likewise.
2354 2002-06-03 Jason Thorpe <thorpej@wasabisystems.com>
2356 * config/rs6000/netbsd.h (DRAFT_V4_STRUCT_RET): Remove.
2358 2002-06-02 Tom Tromey <tromey@redhat.com>
2360 * fixinc/fixincl.x: Rebuilt.
2361 * fixinc/inclhack.def (thread_keyword): Match `*__thread'.
2363 2002-06-02 Neil Booth <neil@daikokuya.demon.co.uk>
2366 * i370.h (TARGET_CPU_CPP_BUILTINS): Use.
2367 * linux.h: Use TARGET_OS_CPP_BUILTINS rather than CPP_PREDEFINES.
2371 Mon Jun 3 00:18:20 CEST 2002 Jan Hubicka <jh@suse.cz>
2373 * final.c (final): Allow notes to not have computed addresses;
2374 kill no longer needed STACK_REGS ifdef.
2376 2002-06-02 Richard Henderson <rth@redhat.com>
2378 * gcse.c (bypass_conditional_jumps): Fix typo last change.
2380 Sun Jun 2 23:02:11 CEST 2002 Jan Hubicka <jh@suse.cz>
2382 * loop.c (emit_prefetch_instructions): Properly place the address
2385 Sun Jun 2 22:56:48 CEST 2002 Jan Hubicka <jh@suse.cz>
2387 * basic-block.h (basic_block_for_insn, BLOCK_FOR_INSN): Kill.
2388 (set_block_for_insn): Turn into macro.
2389 * cfgbuild.c (find_basic_block): Do not clear basic_block_for_insn.
2390 * cfglayout.c (insn_scopes): Kill.
2391 (scope_to_insns_initialize): Do not use insn_scopes.
2392 (scope_to_insns_finalize): Likewise.
2393 (duplicate_insn_chain): Likewise.
2394 (cfg_layout_initialize, cfg_layout_finalize): Do not turn scopes to notes.
2395 * cfgrtl.c (basic_block_for_insn): Kill.
2396 (delete_insn_and_edges, delete_insn_chain_and_edges): Simplify.
2397 (create_basic_block_structure): Use reorder_insns.
2398 (compute_bb_for_insn): Do not use basic_block_for_insn.
2399 (merge_blocks_nomove): Likewise.
2400 (update_bb_for_insn): Likewise.
2401 (verify_flow_info): Likewise.
2402 (set_block_for_insn): Kill.
2403 * combine.c (try_combine): Update gen_rtx_INSN call.
2404 * emit-rtl.c (gen_label_rtx): Update gen_rtx_CODE_LABEL call.
2405 (mark_insn_raw, make_jump_insn_raw, make_call_insn_raw): Clear
2407 (add_insn_after, add_insn_before, remove_insn, reorder_insns): Simplify.
2408 (emit_note_before, emit_note_after, emit_line_note_after, emit_note):
2410 (emit_insns_after): Simplify.
2411 (emit_copy_of_insn_after): Copy scope.
2412 * final.c (final_start_function): Lower scopes.
2413 * flow.c (check_function_return_warnings): Do not rely on deleted insn.
2414 * integrate.c (copy_insn_list): Cope scopes.
2415 * jump.c (duplicate_loop_exit_test): LIkewise; simplify.
2416 * loop.c (loop_optimize): Do not care block notes.
2417 * print-rtl.c (print_rtx): Print BB.
2418 * recog.c (apply_change_group): Simplify.
2419 * rtl.c (copy_rtx): Handle 'B'.
2420 * rtl.def (INSN, CALL_INSN, JUMP_INSN, NOTE): Add extra fields.
2421 * rtl.h (Field accessors): Update indexes.
2422 * sched-ebb.c (schedule_ebbs): Do not lower notes.
2423 * sched-rgn.c (schedule_insns): Likewise.
2424 * toplev.c (rest_of_compilation): Lower notes.
2425 * unroll.c (unroll_loop): Do not care scoping notes.
2426 (copy_loop_body): Copy scopes.
2428 2002-06-02 Neil Booth <neil@daikokuya.demon.co.uk>
2431 * elf.h: Use TARGET_OS_CPP_BUILTINS rather than
2433 * rtems.h: Similarly.
2434 * h8300.h (CPP_PREDEFINES, CPP_SPEC, SUBTARGET_CPP_SPEC,
2435 EXTRA_SPECS, SUBTARGET_EXTRA_SPECS): Remove.
2436 (TARGET_CPU_CPP_BUILTINS): Use.
2438 2002-06-02 Richard Henderson <rth@redhat.com>
2440 * alias.c: Include target.h.
2441 (mark_constant_function): Use targetm.binds_local_p instead
2442 of checking TREE_PUBLIC ourselves.
2443 * Makefile.in (alias.o): Add TARGET_H.
2445 2002-06-02 Neil Booth <neil@daikokuya.demon.co.uk>
2447 * c-lex.c: Update copyright and file description.
2449 2002-06-02 Neil Booth <neil@daikokuya.demon.co.uk>
2451 * config/fr30/fr30.h: Update to new CPP macros.
2453 2002-06-02 Neil Booth <neil@daikokuya.demon.co.uk>
2455 * config/dsp16xx/dsp16xx.h: Update to new CPP macros.
2457 2002-06-02 Neil Booth <neil@daikokuya.demon.co.uk>
2458 Zack Weinberg <zack@codesourcery.com>
2460 * c-common.c (c_common_init): Override cpplib's default
2461 warn_long_long setting.
2462 * c-lex.c (lex_number): Replace with interpret_integer,
2463 interpret_float, narrowest_unsigned_type and
2464 narrowest_signed_type, taking advantage of the new
2465 cpplib functionality.
2466 * cpperror.c (_cpp_begin_message): If a warning is turned
2467 into an error, avoid printing "warning:".
2468 * cppexp.c (cpp_num_sign_extend): New.
2469 * cppinit.c: Update comment.
2470 * cpplib.h (cpp_num_sign_extend): New.
2471 * tree.h: Update comment.
2473 2002-06-02 Gabriel Dos Reis <gdr@codesourcery.com>
2475 * diagnostic.h (struct diagnostic_context): Add new member
2477 (internal_error_function): Remove declaration.
2478 * diagnostic.c (internal_error_function): Remove definition..
2479 (internal_error): Adjust use.
2481 2002-06-02 Richard Henderson <rth@redhat.com>
2483 * rtl.h (CC0_P): New.
2484 * gcse.c (cprop_jump): Use it with single_set. Tweak dump text.
2485 (cprop_insn): Allow any mode register; use CC0_P. CSE out single_set.
2486 (bypass_block): Save old dest block for dump text.
2487 (bypass_conditional_jumps): Allow any mode register; use CC0_P.
2488 Allow only true SET insns, not single_set.
2490 2002-06-02 Gabriel Dos Reis <gdr@codesourcery.com>
2492 * diagnostic.c (diagnostic_finish): Rename to output_flush.
2493 (clear_disgnostic_info): Rename to output_clear_data. Use false
2494 instead of 0 for boolean value.
2495 Adjust function call throughout.
2497 Sun Jun 2 19:15:27 CEST 2002 Jan Hubicka <jh@suse.cz>
2499 * cfgrtl.c (commit_one_edge_insertion): Fix warning.
2500 * gcse.c (bypass_conditional_jumps): CSE out single_set call.
2502 2002-06-02 Neil Booth <neil@daikokuya.demon.co.uk>
2504 * d30v.h (CPP_PREDEFINES): Replace with
2505 (TARGET_CPU_CPP_BUILTINS): New.
2507 2002-06-02 Roger Sayle <roger@eyesopen.com>
2509 * config/alpha/alpha.h [ASM_OUTPUT_LABELREF]: Fix typo.
2511 Sun Jun 2 12:11:52 CEST 2002 Jan Hubicka <jh@suse.cz>
2513 * gcse.c (bypass_conditional_jumps): Use single set to obtain set.
2515 2002-06-02 Richard Henderson <rth@redhat.com>
2517 * rtlanal.c (volatile_refs_p): Not automatically true for CALL.
2519 2002-06-02 Marek Michalkiewicz <marekm@amelek.gda.pl>
2521 Support for C++ constructors/destructors.
2522 * config/avr/avr.c (avr_output_function_epilogue): Jump to exit()
2523 instead of looping if main() returns.
2524 (asm_file_start): Output global symbols that cause .data and .bss
2525 initialization code to be linked in, unconditionally for now.
2526 (avr_asm_out_ctor, avr_asm_out_dtor): New functions.
2527 * config/avr/avr.h (CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP): New.
2528 (TARGET_ASM_CONSTRUCTOR, TARGET_ASM_DESTRUCTOR): New.
2530 * config/avr/libgcc.S (_exit): Split in .fini9 and .fini0 sections.
2531 (__tablejump__): New.
2532 (__do_copy_data, __do_clear_bss): New.
2533 (__do_global_ctors, __do_global_dtors): New.
2534 * config/avr/t-avr (LIB1ASMFUNCS): Add _copy_data, _clear_bss,
2537 2002-06-02 Neil Booth <neil@daikokuya.demon.co.uk>
2539 * c4x/c4x.h (TARGET_CPU_CPP_BUILTINS): New.
2540 (CPP_SPEC, CPP_PREDEFINES): Kill.
2541 * c4x/rtems.h (CPP_PREDEFINES): Kill.
2542 (TARGET_OS_CPP_BUILTINS): New.
2544 Sat Jun 1 23:29:51 CEST 2002 Jan Hubicka <jh@suse.cz>
2546 * Makefile.in (tracer.o): New.
2547 * params.def (TRACER_*): New options.
2548 * rtl.h (tracer): Declare.
2549 * timevar.def (TV_TRACER): New.
2550 * toplev.c (dump_file_index): Add DFI_tracer.
2551 (dump_file_info): Add tracer.
2553 (lang_indepdenent_options): Add tracer.
2554 (rest_of_compilation): Call tracer.
2555 * tracer.c: New file.
2556 * invoke.texi (-ftracer): Document.
2557 (--param tracer-*): Document.
2559 2002-06-01 Daniel Berlin <dberlin@dberlin.org>
2561 * tree-inline.c (expand_call_inline): Make the statement
2562 expression we generate have a COMPOUND_STMT.
2564 2002-06-01 Roger Sayle <roger@eyesopen.com>
2566 * gcse.c (cprop_cc0_jump): Function deleted.
2567 (cprop_jump): Take an additional argument which is the possibly
2568 NULL cc setting insn immediately before the conditional jump.
2569 When a MODE_CC set is present, substitute it into the JUMP_INSN
2570 before attempting the constant propagation.
2571 (cprop_insn): Recognize cc setters followed by conditional jumps
2572 as a special case. Use cprop_jump instead of cprop_cc0_jump.
2573 (cprop_one_pass): Call bypass_conditional_jumps if altering jumps.
2574 (find_bypass_set): New function based upon find_avail_set used by
2575 cprop, but finds constant expressions available at the end of
2577 (bypass_block): New function. Given a basic block that begins
2578 with a conditional jump and multiple incoming edges, perform
2579 the jump bypass optimization.
2580 (bypass_conditional_jumps): New function. Call bypass_block with
2581 each suitable basic block in the CFG using a simple single pass.
2583 2002-06-01 Roger Sayle <roger@eyesopen.com>
2585 * tree.c (real_minus_onep): New function to test for -1.0.
2586 * fold-const.c (fold) [MULT_EXPR]: Optimize -1.0*x into -x.
2588 2002-06-01 Roger Sayle <roger@eyesopen.com>
2590 * fold-const.c (fold_truthop): Transform "a || b" into "(a|b) != 0"
2591 and "!p && !q" into "(p|q) == 0" under suitable conditions.
2593 2002-06-01 Andreas Jaeger <aj@suse.de>
2595 * cppexp.c (cpp_classify_number): Cast precission to int for
2596 correct printf format.
2598 2002-06-01 Marek Michalkiewicz <marekm@amelek.gda.pl>
2600 * config/avr/avr.c (avr_mcu_types): Remove devices that were once
2601 expected, but don't really exist: atmega83, atmega85, attiny10.
2602 * config/avr/avr.h (LINK_SPEC): Update to use the new avr[1-5] ld
2603 emulations for all devices.
2604 (CRT_BINUTILS_SPECS): Remove atmega83, atmega85, attiny10.
2605 * config/avr/t-avr (MULTILIB_MATCHES): Remove atmega83, atmega85.
2607 2002-06-01 Kazu Hirata <kazu@cs.umass.edu>
2609 * config/h8300/h8300-protos.h: Add a prototype for
2610 h8300_shift_needs_scratch_p.
2611 * config/h8300/h8300.c (h8300_shift_needs_scratch_p): New.
2612 * config/h8300/h8300.h (OK_FOR_R): New.
2613 (OK_FOR_S): Likewise.
2614 (OK_FOR_T): Likewise.
2615 (EXTRA_CONSTRAINT): Call OK_FOR_R, OK_FOR_S, and OK_FOR_T.
2616 * config/h8300/h8300.md (anonymous shift patterns): Use
2617 constraints R, S, and T.
2619 Sat Jun 1 11:23:22 CEST 2002 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
2621 * basic-block.h (struct basic_block_def): New field loop_father.
2622 (BB_VISITED): New flag.
2623 (struct loop): New field pred, removed field shared.
2624 (struct loops): New field parray.
2625 (LOOP_EXITS_DOMS): Removed.
2626 (flow_loop_tree_node_add, flow_loop_tree_node_remove,
2627 flow_loop_nested_p, flow_bb_inside_loop_p, get_loop_body,
2628 dfs_enumerate_from, loop_preheader_edge, loop_latch_edge,
2629 add_bb_to_loop, remove_bb_from_loops, find_common_loop,
2630 verify_loop_structure): Declare.
2631 * cfg.c (entry_exit_blocks): Initialize loop_father field.
2632 * cfganal.c (dfs_enumerate_from): New function.
2633 * cfgloop.c (HEAVY_EDGE_RATIO): New constant.
2634 (flow_loop_entry_edges_find, flow_loop_exit_edges_find,
2635 flow_loop_nodes_find, flow_loop_level_compute, flow_loop_nested_p,
2636 flow_loop_dump, flow_loops_dump, flow_loops_free,
2637 flow_loop_tree_node_add, flow_loop_level_compute,
2638 flow_loops_level_compute, flow_loop_scan, flow_loops_update,
2639 flow_loop_outside_edge_p): Modified for new infrastructure.
2640 (make_forwarder_block, canonicalize_loop_headers, glb_enum_p,
2641 redirect_edge_with_latch_update, flow_loop_free): New static functions.
2642 (flow_loop_tree_node_remove, flow_bb_inside_loop_p,
2643 get_loop_body, add_bb_to_loop, remove_bb_from_loops,
2644 find_common_loop, verify_loop_structure, loop_latch_edge,
2645 loop_preheader_edge): New functions.
2646 (flow_loops_cfg_dump): Do not show dominators, as this information
2647 does not remain up to date long.
2648 (flow_loops_find): Store results in new format.
2649 * predict.c (propagate_freq, estimate_probability,
2650 estimate_loops_at_level, estimate_bb_frequencies): Use new loop
2653 2002-06-01 Alan Lehotsky <apl@alum.mit.edu>
2655 * except.c (nothrow_function_p): Walk epilogue delay list
2656 checking the insn, not the chain for potential throws.
2658 2002-05-31 Zack Weinberg <zack@codesourcery.com>
2660 * Makefile.in (INSTALL_CPP, UNINSTALL_CPP): Remove.
2661 (install): Refer to install-cpp directly.
2662 (uninstall-cpp): Folded into uninstall rule.
2663 * configure.in: Delete all code relating to --disable-cpp.
2664 * configure: Regenerate.
2665 * config/t-install-cpp: Delete.
2667 2002-05-31 Richard Henderson <rth@redhat.com>
2669 * configure.in (HAVE_AS_TLS): Add alpha tests.
2670 * configure: Rebuild.
2671 * config/alpha/alpha.c (TARGET_AS_TLS): New.
2672 (alpha_tls_size, alpha_tls_size_string): New.
2673 (overide_options): Set it. Always install machine_status hooks.
2674 (input_operand): Accept got tls predicates.
2675 (local_symbol_p): Merge into ...
2676 (local_symbolic_operand): ... here. Reject tls symbols.
2677 (global_symbolic_operand): Likewise.
2678 (tls_symbolic_operand_1, dtp16_symbolic_operand): New.
2679 (dtp32_symbolic_operand, gotdtp_symbolic_operand): New.
2680 (tp16_symbolic_operand, tp32_symbolic_operand): New.
2681 (gottp_symbolic_operand, tls_symbolic_operand_type): New.
2682 (alpha_encode_section_info): Handle TLS symbols.
2683 (alpha_strip_name_encoding): Likewise.
2684 (alpha_legitimate_address_p): Likewise.
2685 (alpha_legitimize_address): Likewise.
2686 (alpha_expand_mov): Early exit to avoid nop moves.
2687 (struct machine_function): Move from unicosmk.h. Add some_ld_name.
2688 (alpha_init_machine_status, alpha_mark_machine_status,
2689 alpha_free_machine_status): Always define.
2690 (get_some_local_dynamic_name, get_some_local_dynamic_name_1): New.
2691 (print_operand, print_operand_address): Add TLS relocs.
2692 * config/alpha/alpha.h (HAVE_AS_TLS): Default 0.
2693 (MASK_TLS_KERNEL, TARGET_TLS_KERNEL): New.
2694 (TARGET_SWITCHES): Add -mtls-kernel.
2695 (alpha_tls_size, alpha_tls_size_string): New.
2696 (TARGET_OPTIONS): Add -mtls-size=.
2697 (reg_class, REG_CLASS_NAMES, REG_CLASS_CONTENTS,
2698 REGNO_REG_CLASS, REG_CLASS_FROM_LETTER): Add R0_REG.
2699 (ASM_OUTPUT_LABELREF): Skip %.
2700 (PRINT_OPERAND_PUNCT_VALID_P): Add &.
2701 (PREDICATE_CODES): Update.
2702 * config/alpha/alpha.md (UNSPEC_TLSGD_CALL, UNSPEC_TLSLDM_CALL,
2703 UNSPEC_TLSGD, UNSPEC_TLSLDM, UNSPEC_DTPREL, UNSPEC_TPREL,
2704 UNSPEC_TP, UNSPECV_SET_TP): New.
2705 (adddi_er_lo16_dtp, adddi_er_hi32_dtp, adddi_er_lo32_dtp,
2706 adddi_er_lo16_tp, adddi_er_hi32_tp, adddi_er_lo32_tp, load_tp,
2707 set_tp, movdi_er_tlsgd, movdi_er_tlsldm, movdi_er_gotdtp,
2708 movdi_er_gottp, call_value_osf_tlsgd, call_value_osf_tlsldm): New.
2709 (call_value_osf_2_er): Accept anything as op4.
2710 * config/alpha/alpha-protos.h: Update.
2711 * config/alpha/unicosmk.h (struct machine_function): Move to alpha.c.
2713 2002-05-31 Zack Weinberg <zack@codesourcery.com>
2715 * cppinit.c (append_include_chain): Always pay attention to
2716 cxx_aware when setting new->sysp. Remove ATTRIBUTE_UNUSED
2719 2002-05-31 Kazu Hirata <kazu@cs.umass.edu>
2721 * target.h: Fix formatting.
2722 * timevar.h: Likewise.
2723 * tlink.c: Likewise.
2724 * toplev.c: Likewise.
2725 * toplev.h: Likewise.
2727 * tree-dump.h: Likewise.
2729 * tree-inline.h: Likewise.
2730 * unroll.c: Likewise.
2731 * unwind-dw2.c: Likewise.
2732 * unwind-dw2-fde.c: Likewise.
2733 * unwind-dw2-fde-glibc.c: Likewise.
2734 * unwind-dw2-fde.h: Likewise.
2735 * unwind.h: Likewise.
2736 * unwind-sjlj.c: Likewise.
2737 * varasm.c: Likewise.
2738 * varray.h: Likewise.
2739 * vmsdbg.h: Likewise.
2740 * vmsdbgout.c: Likewise.
2741 * xcoffout.h: Likewise.
2743 2002-05-31 Igor Shevlyakov <igor@microunity.com>
2745 * expr.c (compare_from_rtx): Generate comparison between op0 and op1
2746 rather than cc0 and 0 in a case when HAVE_cc0 is not defined.
2748 2002-05-31 Matthew Woodcraft <mattheww@chiark.greenend.org.uk>
2750 * gcc.c (cpp_unique_options): Remove "-d" options.
2751 (cpp_debug_options): New spec string.
2752 (default_compilers): Use it.
2753 * objc/lang-specs.h: Likewise.
2755 2002-05-31 Nathanael Nerode <neroden@twcny.rr.com>
2757 * gcc/Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with
2758 BUILD_PREFIX, BUILD_PREFIX_1, to correct nomenclature.
2759 * gcc/mklibgcc.in: Likewise.
2760 * gcc/config/arc/t-arc: Likewise.
2761 * gcc/configure.in: Likewise.
2762 * gcc/configure: Regenerate.
2764 2002-05-31 Stan Shebs <shebs@apple.com>
2765 Turly O'Connor <turly@apple.com>
2767 * c-decl.c (struct binding_level): Change int field n_incomplete
2768 to tree list incomplete_list.
2769 (clear_binding_level): Init field with NULL.
2770 (pushdecl): Add incomplete type to list.
2771 (mark_binding_level): Mark the incomplete list.
2772 (finish_struct): Scan the incomplete list for types instead
2773 of all decls in the current binding level.
2775 2002-05-31 John David Anglin <dave@hiauly1.hia.nrc.ca>
2777 * pa.c (output_millicode_call): Add missing '%' characters.
2778 (output_call): Likewise.
2780 2002-05-31 David Edelsohn <edelsohn@gnu.org>
2782 * config/rs6000/xcoff.h (HOT_TEXT_SECTION_NAME): Define.
2783 (UNLIKELY_EXECUTED_TEXT_SECTION_NAME): Define.
2785 2002-05-31 Alan Lehotsky <apl@alum.mit.edu>
2787 * varasm.c (mark_constant_pool): Walk epilogue delay list
2788 checking the insn, not the chain for potential constants.
2790 Fri May 31 12:38:43 2002 J"orn Rennecke <joern.rennecke@superh.com>
2792 * config/sh/elf.h (ASM_SPEC): Use subtarget_endian_asm_spec.
2794 Fri May 31 13:50:19 CEST 2002 Jan Hubicka <jh@suse.cz>
2796 * i386.c (classify_argument): Properly handle base types.
2798 * dwarf2out.c (expand_builin_init_dwarf_reg_sizes):
2799 Store first DWARF_FRAME_REGISTERS dwarf registers, not pseudo
2802 Fri May 31 13:37:54 CEST 2002 Jan Hubicka <jh@suse.cz>
2804 * gcse.c (gcse_emit_move_after): New.
2805 (pre_delete, hoist_store): Use it.
2807 * reload1.c (emit_input_reload_insns): Use constrain_operands
2808 instead of constraint_accepts_reg_p to verify optimization.
2809 (constraint_accepts_reg_p): Kill
2811 * reload1.c (reload_cse_delete_noop_set): Kill.
2812 (reload_cse_simplify): use delte_insn_and_edges.
2814 2002-05-31 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
2816 * cfgloop.c (flow_loops_find): Initialize first and last fields
2819 2002-05-31 Neil Booth <neil@daikokuya.demon.co.uk>
2821 * c-common.c (builtin_define_std): Correct logic.
2823 2002-05-31 John David Anglin <dave@hiauly1.hia.nrc.ca>
2825 * pa.c (output_millicode_call): Correct "be,l" insn for TARGET_PA_20.
2826 (output_call): Likewise.
2828 2002-05-31 John David Anglin <dave@hiauly1.hia.nrc.ca>
2830 * pa.c: Move output.h include after tree.h include.
2831 (pa_asm_output_mi_thunk): Constify identifier lab.
2833 2002-05-31 Jason Thorpe <thorpej@wasabisystems.com>
2835 * config/ns32k/ns32k.h: Define named constants for the
2836 bits in target_flags and use them.
2837 * config/ns32k/netbsd.h (TARGET_DEFAULT): Use named constants.
2839 2002-05-30 John David Anglin <dave@hiauly1.hia.nrc.ca>
2841 * config.gcc (tm_file): Prefix pa/pa-700.h to tm_file list for PA1.0
2842 architecture and pa/pa-7100.h for PA1.1 architecture, respectively.
2843 * pa/pa.c (override_options): Use TARGET_SCHED_DEFAULT to select
2844 default scheduling model.
2845 * pa/pa.h (TARGET_SCHED_DEFAULT): Define if not defined to "8000".
2846 * pa/pa-700.h (TARGET_SCHED_DEFAULT): New file for "700" scheduling.
2847 * pa/pa-7100.h (TARGET_SCHED_DEFAULT): New file for "7100" scheduling.
2848 * doc/install.texi (hppa*-*-*): Document default scheduling.
2850 2002-05-30 John David Anglin <dave@hiauly1.hia.nrc.ca>
2852 * pa.c (following_call): Check TARGET_JUMP_IN_DELAY.
2854 2002-05-31 Jason Thorpe <thorpej@wasabisystems.com>
2856 * config.gcc (ns32k-*-netbsd*): Set tm_file to
2857 "${tm_file} netbsd.h netbsd-aout.h ns32k/netbsd.h"
2858 * config/ns32k/netbsd.h: Don't include ns32k/ns32k.h,
2859 netbsd.h, or netbsd-aout.h.
2861 2002-05-31 Jason Thorpe <thorpej@wasabisystems.com>
2863 * longlong.h (count_trailing_zeros): Add missing \, and clean up
2864 whitespace in __ns32000__ case.
2866 2002-05-31 Aldy Hernandez <aldyh@redhat.com>
2868 * expr.c (expand_expr): Output partially zeroed out vectors with
2869 output_constant_def.
2871 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
2873 * config.gcc (sh[123456789l]*-*-*): Set cpu_type to sh.
2875 (shl*-*-netbsdelf*): New targets.
2876 * config/sh/netbsd-elf.h: New file.
2877 * config/sh/t-netbsd: New file.
2879 2002-05-30 Richard Henderson <rth@redhat.com>
2880 Eric Botcazou <ebotcazou@multimania.com>
2882 PR optimization/6822
2883 * config/i386/i386.c (ix86_expand_int_movcc): Don't cast INTVAL
2884 to unsigned int for op1 comparisons. Use gen_int_mode.
2886 2002-05-30 Eric Botcazou <ebotcazou@multimania.com>
2888 * expmed.c (const_mult_add_overflow_p): New.
2889 * expr.h: Declare it.
2890 * loop.c (maybe_eliminate_biv_1) [COMPARE]: Use it.
2891 Don't eliminate the biv if the giv has a constant multiplier and
2892 the rhs argument of the comparison does satisfy the predicate.
2893 Use expand_mult_add to compute the replacement constant.
2895 2002-05-30 Osku Salerma <osku@iki.fi>
2897 * c-common.c (c_common_attribute_table): Add "may_alias" entry.
2898 (c_common_get_alias_set): Handle it.
2899 * doc/extend.texi: Document it.
2901 2002-05-30 Richard Henderson <rth@redhat.com>
2903 * defaults.h (TARGET_ALLOWS_PROFILING_WITHOUT_FRAME_POINTER): Kill.
2904 * toplev.c (process_options): Don't check it.
2905 * doc/tm.texi: Don't document it.
2906 * config/i386/linux.h (SUBTARGET_FRAME_POINTER_REQUIRED): New.
2907 (TARGET_ALLOWS_PROFILING_WITHOUT_FRAME_POINTER): Kill.
2908 * config/i386/i386.c (ix86_frame_pointer_required): Suppress leaf
2909 frame pointer optimization if current_function_profile.
2911 2002-05-30 Kazu Hirata <kazu@cs.umass.edu>
2913 * langhooks.c: Fix formatting.
2914 * langhooks.h: Likewise.
2916 * libgcc2.c: Likewise.
2917 * lists.c: Likewise.
2918 * local-alloc.c: Likewise.
2922 2002-05-30 Marc Espie <espie@openbsd.org>
2924 * config.gcc (sparc64-*-openbsd*): New.
2925 * config/sparc/openbsd1-64.h: New.
2926 * config/sparc/openbsd64.h: New.
2928 2002-05-30 Jeff Law <law@redhat.com>
2930 * flow.c (propagate_one_insn): Revise yesterday's patch. Delete
2931 a dead insn with a REG_RETVAL note when the entire libcall is not
2932 dead and remove the associated REG_LIBCALL note at the same time.
2934 Thu May 30 19:54:30 2002 J"orn Rennecke <joern.rennecke@superh.com>
2936 * lcm.c (output.h): #include.
2937 (compute_earliest): Remove hack to treat renumbered EXIT_BLOCK
2938 as an ordinary block.
2939 (optimize_mode_switching): Don't pretend that the exit block is
2940 an ordinary block, or handle sucessors of entry block specially.
2941 Instead, split edges from entry block and to exit block, and
2942 put a computing definition on the thus gained post-entry-block,
2943 and a need on the pre-exit-block.
2945 Thu May 30 20:28:01 CEST 2002 Jan Hubicka <jh@suse.cz>
2947 * gengenrtl.c (type_from_format, accessor_from_format): Support 'B'.
2948 * rtl.texi: Document 'B'
2950 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
2952 * config/m68k/netbsd-elf.h (LONG_DOUBLE_TYPE_SIZE): Compute
2954 (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Set to 96 if not __mc68010__.
2956 2002-05-30 Aldy Hernandez <aldyh@redhat.com>
2958 * config/rs6000/rs6000.c (rs6000_expand_unop_builtin): Return
2959 const0_rtx instead of NULL_RTX when in error.
2960 (altivec_expand_abs_builtin): Same.
2961 (rs6000_expand_binop_builtin): Same.
2962 (altivec_expand_predicate_builtin): Same.
2963 (altivec_expand_stv_builtin): Same.
2964 (rs6000_expand_ternop_builtin): Same.
2965 (altivec_expand_builtin): Same.
2967 2002-05-29 David S. Miller <davem@redhat.com>
2969 * rtl.h (clear_emit_caches): Delete.
2970 * integrate.c (output_inline_function): Don't call it.
2971 * emit-rtl.c (restore_emit_status, init_emit): Likewise.
2972 (clear_emit_caches): Delete definition.
2973 (SEQUENCE_RESULT_SIZE, sequence_result, free_insn): Likewise.
2975 2002-05-30 Hans-Peter Nilsson <hp@bitrange.com>
2977 * config/mmix/mmix.c: Include real.h.
2978 (mmix_constant_address_p): Remove redundant test before switch.
2980 2002-05-29 Jason Thorpe <thorpej@wasabisystems.com>
2982 * config/mips/mips.h (READONLY_DATA_SECTION_ASM_OP): Define
2983 only if not already defined.
2985 2002-05-29 Kazu Hirata <kazu@cs.umass.edu>
2987 * config/h8300/h8300-protos.h: Remove prototypes for
2988 ok_for_bclr and small_power_of_two.
2989 * config/h8300/h8300.c (small_power_of_two): Remove.
2990 (ok_for_blcr): Likewise.
2991 (fix_bit_operand): Make WHAT deal with an integer instead of a
2992 constraint character.
2993 * config/h8300/h8300.h (CONST_OK_FOR_O): Remove.
2994 (CONST_OK_FOR_P): Likewise.
2995 (CONST_OK_FOR_LETTER_P): Do not call CONST_OK_FOR_O or
2996 CONST_OK_FOR_P any more.
2997 * config/h8300/h8300.md (andqi3): Adjust to the new prototype
3002 2002-05-29 Jason Thorpe <thorpej@wasabisystems.com>
3004 * config/mips/netbsd.h (TARGET_OS_CPP_BUILTINS): Define.
3005 (CPP_PREDEFINES): Make sure this is undefined.
3006 (CPP_SPEC): Place -D__mips=1 at the beginning of the spec,
3007 since it is no longer in CPP_PREDEFINES. Don't -U__MIPSEL__
3008 or -U__MIPSEB__ before defining one or the other. Instead,
3009 use %(subtarget_endian_default) if neither -EB nor -EL are
3011 (SUBTARGET_EXTRA_SPECS): Define.
3012 (SUBTARGET_CPP_SPEC): Remove __LONG64 handling. Use
3015 2002-05-29 Hans-Peter Nilsson <hp@axis.com>
3017 * doc/md.texi (Patterns): Note pattern condition pitfall
3020 2002-05-29 Aldy Hernandez <aldyh@redhat.com>
3022 * rs6000.c: (altivec_expand_builtin): Only expand altivec builtins
3023 when TARGET_ALTIVEC. Move handling of generic unary, binary, and
3024 ternary operations from here...
3025 (rs6000_expand_builtin): ...to here.
3026 New argument expandedp.
3027 Change all instances of altivec_expand_binop_builtin to
3028 rs6000_expand_binop_builtin.
3029 (altivec_expand_unop_builtin): Rename to
3030 rs6000_expand_unop_builtin.
3031 (altivec_expand_binop_builtin): Rename to
3032 rs6000_expand_binop_builtin.
3033 (altivec_expand_ternop_builtin): Rename to
3034 rs6000_expand_ternop_builtin.
3036 2002-05-29 Richard Henderson <rth@redhat.com>
3038 * config/i386/biarch64.h (TARGET_64BIT_DEFAULT): Define with value.
3039 (TARGET_BI_ARCH): Likewise.
3040 * config/i386/i386.h: Test TARGET_64BIT_DEFAULT by value.
3041 (TARGET_SWITCHES): Combine target defaults here not in TARGET_DEFAULT.
3042 (TARGET_64BIT_DEFAULT): Default to 0.
3043 (TARGET_DEFAULT): Default to MASK_OMIT_LEAF_FRAME_POINTER.
3045 2002-05-29 Richard Henderson <rth@redhat.com>
3047 * config/i386/i386.c (USE_HIDDEN_LINKONCE): New.
3048 (get_pc_thunk_name): New.
3049 (output_set_got): Use it.
3050 (ix86_asm_file_end): If USE_HIDDEN_LINKONCE, emit get_pc thunks
3051 into linkonce sections.
3053 2002-05-29 Jason Thorpe <thorpej@wasabisystems.com>
3055 * config/sparc/netbsd-elf.h (TARGET_OS_CPP_BUILTINS): Define.
3056 (CPP_PREDEFINES): Make sure this is undefined.
3057 (CPP_SUBTARGET_SPEC64, CPP_SUBTARGET_SPEC32): Remove.
3058 (CPP_SUBTARGET_SPEC): Don't provide different versions for
3059 default-32 and default-64. Just always use %(netbsd_cpp_spec).
3060 (SUBTARGET_EXTRA_SPECS): Remove cpp_subtarget_spec32 and
3061 cpp_subtarget_spec64. Add netbsd_cpp_spec.
3062 * config/sparc/netbsd.h (TARGET_OS_CPP_BUILTINS): Define.
3063 (CPP_PREDEFINES): Make sure this is undefined.
3064 (SUBTARGET_EXTRA_SPECS): Define.
3065 (CPP_SPEC): Use %(netbsd_cpp_spec).
3067 2002-05-29 Jeff Law <law@redhat.com>
3069 * pa.h (ASM_OUTPUT_MI_THUNK): Remove unwanted semi-colon.
3071 * flow.c (propagate_one_insn): Do not remove a dead insn if it
3072 contains a REG_RETVAL note.
3074 * haifa-sched (sched_analyze): Remove another useless clearing
3075 of SCHED_GROUP_P I missed yesterday.
3077 * pa.h (ASM_OUTPUT_MI_THUNK): Move implementation into pa.c.
3078 * pa.c (pa_asm_output_mi_thunk): New function.
3079 * pa-protos.h (pa_asm_output_mi_thunk): Declare.
3081 2002-05-29 Neil Booth <neil@daikokuya.demon.co.uk>
3082 Marek Michalkiewicz <marekm@amelek.gda.pl>
3084 * config/avr/avr.c (avr_base_arch_macro, avr_extra_arch_macro): New.
3085 (avr_asm_only_p): Make non-static.
3086 (enum avr_arch): Remove.
3087 (avr_arch_types): New.
3088 (avr_mcu_types): Update.
3089 (avr_override_options): Use avr_arch_types table instead of switch.
3090 * avr.h (CPP_PREDEFINES): Die.
3091 (avr_base_arch_macro, avr_extra_arch_macro): New.
3092 (TARGET_CPU_CPP_BUILTINS): New.
3093 (CPP_SPEC, EXTRA_SPECS): Simplify.
3094 (CPP_AVR1_SPEC, CPP_AVR2_SPEC, CPP_AVR3_SPEC, CPP_AVR4_SPEC,
3095 CPP_AVR5_SPEC): Die.
3097 2002-05-29 Jason Thorpe <thorpej@wasabisystems.com>
3099 * config/arm/netbsd.h (TARGET_OS_CPP_BUILTINS): Use
3100 NETBSD_OS_CPP_BUILTINS_AOUT.
3101 (SUBTARGET_EXTRA_SPECS): Define.
3102 (CPP_SPEC): Use %(netbsd_cpp_spec).
3104 2002-05-29 Richard Henderson <rth@redhat.com>
3106 * config/i386/i386.c (ix86_output_function_epilogue): New.
3107 (TARGET_ASM_FUNCTION_EPILOGUE): New.
3108 (pic_label_name): Remove.
3109 (pic_labels_used): New.
3110 (ix86_asm_file_end): Emit one pc load stub for each register used.
3111 (output_set_got): Generate deep pc load to any register.
3112 (ix86_select_alt_pic_regnum): New.
3113 (ix86_save_reg): Don't save pic register if we can find a valid
3114 call-clobbered replacement.
3115 (ix86_expand_prologue): If we found a valid replacement, renumber
3116 pic_offset_table_rtx.
3117 * config/i386/i386.h (PIC_OFFSET_TABLE_REGNUM): Look at
3118 pic_offset_table_rtx after reload.
3119 (REAL_PIC_OFFSET_TABLE_REGNUM): New.
3120 * config/i386/i386.md (set_got): Make insn, not expander.
3121 (set_got_nopic, set_got_deep, set_got_nodeep): Remove.
3123 2002-05-29 Richard Henderson <rth@redhat.com>
3125 * config/i386/i386.c (ix86_compute_frame_layout): Do add bottom
3126 alignment for alloca.
3128 2002-05-29 Richard Henderson <rth@redhat.com>
3130 * config/i386/i386.c (output_pic_addr_const): Lowercase rip.
3131 (print_operand_address): Only add rip for symbolic addresses
3132 for which we do not have another relocation type.
3134 2002-05-29 Jason Thorpe <thorpej@wasabisystems.com>
3136 * config/m68k/netbsd-elf.h (TARGET_OS_CPP_BUILTINS): Define.
3137 (EXTRA_SPECS): Add netbsd_cpp_spec.
3138 (CPP_SPEC): Use %(netbsd_cpp_spec).
3139 (CPP_PREDEFINES): Remove.
3140 * config/m68k/netbsd.h (TARGET_OS_CPP_BUILTINS): Define.
3141 (EXTRA_SPECS): Define.
3142 (CPP_SPEC): Use %(netbsd_cpp_spec).
3143 (CPP_PREDEFINES): Remove.
3145 2002-05-29 Neil Booth <neil@daikokuya.demon.co.uk>
3147 PR preprocessor/6844
3148 * cppmacro.c (cpp_macro_definition): Reserve space for terminating
3151 2002-05-29 Eric Christopher <echristo@redhat.com>
3153 * config/mips/linux.h (SUBTARGET_CPP_SPEC): Add support for
3154 mips5/mips32/mips64 and _MIPS_ISA_MIPSXX.
3156 2002-05-29 Nick Clifton <nickc@cambridge.redhat.com>
3158 * config/fr30/fr30.md: Remove previous restriction on splits.
3159 Enforce conformance through gen_lowpart and cont_int_operand.
3160 * config/fr30/fr30.h (BSS_SECTION_ASM_OP): Use ".section .bss"
3161 as the assembler does not support ".bss".
3163 2002-05-29 Jason Thorpe <thorpej@wasabisystems.com>
3165 * config/i386/netbsd-elf.h (TARGET_OS_CPP_BUILTINS): Define.
3166 (CPP_PREDEFINES): Remove.
3167 (SUBTARGET_EXTRA_SPECS): Define.
3168 (CPP_SPEC): Use %(netbsd_cpp_spec).
3169 * config/i386/netbsd.h (TARGET_OS_CPP_BUILTINS): Define.
3170 (CPP_PREDEFINES): Remove.
3171 (SUBTARGET_EXTRA_SPECS): Define.
3172 (CPP_SPEC): Use %(netbsd_cpp_spec).
3173 * config/i386/netbsd64.h (TARGET_OS_CPP_BUILTINS): Define.
3174 (CPP_PREDEFINES, CPP_LP64_SPEC, CPP_SUBTARGET_SPEC): Remove.
3175 (SUBTARGET_EXTRA_SPECS): Remove cpp_lp64 and cpp_subtarget.
3176 Add netbsd_cpp_spec.
3177 (CPP_SPEC): Remove %(cpp_subtarget), add %(netbsd_cpp_spec).
3179 2002-05-29 Neil Booth <neil@daikokuya.demon.co.uk>
3180 Zack Weinberg <zack@codesourcery.com>
3182 * cppexp.c (cpp_num): Move to cpplib.h.
3183 (CPP_ERROR): Remove.
3184 (interpret_float_suffix, interpret_int_suffix): New.
3185 (struct suffix, vsuf_1, vsuf_2, vsuf_3): Remove.
3186 (cpp_classify_number, cpp_interpret_integer): New.
3187 (interpret_number): Remove.
3188 (eval_token): Update to use new routines.
3189 * cpphash.h (cpp_num_part): Move to cpplib.h.
3190 * cppinit.c (cpp_post_options): Set warn_long_long.
3191 * cpplib.h (struct cpp_options): Add warn_long_long.
3192 (cpp_num, cpp_num_part, CPP_N_CATEGORY, CPP_N_INVALID,
3193 CPP_N_INTEGER, CPP_N_FLOATING, CPP_N_WIDTH, CPP_N_SMALL,
3194 CPP_N_MEDIUM, CPP_N_LARGE, CPP_N_RADIX, CPP_N_DEC, CPP_N_HEX,
3195 CPP_N_OCTAL, CPP_N_UNSIGNED, CPP_N_IMAGINARY, cpp_classify_number,
3196 cpp_interpret_integer): New.
3198 2002-05-29 Joel Sherrill <joel@OARcorp.com>
3200 * config/rs6000/rs6000.h (ASM_CPU_SPEC): Use -m403 and -m405.
3202 2002-05-29 Jason Thorpe <thorpej@wasabisystems.com>
3204 * config/alpha/netbsd.h (TARGET_OS_CPP_BUILTINS): Use
3205 NETBSD_OS_CPP_BUILTINS_ELF and NETBSD_OS_CPP_BUILTINS_LP64.
3206 (CPP_SUBTARGET_SPEC): Define.
3207 (SUBTARGET_EXTRA_SPECS): Define.
3210 2002-05-29 Chris Lattner <sabre@nondot.org>
3212 * ssa.c (rename_insn_1): Rename uses of undefined registers to
3213 prevent confusion if/when the register is defined.
3215 2002-05-29 Hans-Peter Nilsson <hp@axis.com>
3218 * config/cris/cris.md: Fix typos and thinkos in comments.
3219 ("*mov_sideqi_biap_mem"): Remove '*' in constraint for operand 4,
3221 ("*mov_sidehi_biap_mem", "*mov_sidesi_biap_mem"): Ditto.
3222 ("*mov_sideqi_mem"): Similar, but for operand 3.
3223 ("*mov_sidehi_mem", "*mov_sidesi_mem"): Ditto.
3224 (splitter for mov_sideqi_mem, mov_sidehi_mem, mov_sidesi_mem):
3225 Remove spurious mode specifier on operand 2.
3227 2002-05-29 Kazu Hirata <kazu@cs.umass.edu>
3229 * config/h8300/h8300-protos.h: Remove the prototype for
3231 Add prototypes for single_one_operand and single_zero_operand.
3232 * config/h8300/h8300.c (o_operand): Remove.
3233 (single_one_operand): New.
3234 (single_zero_operand): Likewise.
3235 (print_operand): For 'V' operand, and the operand with 0xff.
3236 For 'V' and 'W' operands, do not and the bit position with 7.
3237 * config/h8300/h8300.md (various anonymous patterns): Replace
3238 use of exact_log2 with single_one_operand/single_zero_operand.
3240 2002-05-29 Ulrich Weigand <uweigand@de.ibm.com>
3242 * config/s390/linux.h (MD_FALLBACK_FRAME_STATE_FOR): New.
3244 2002-05-29 Ulrich Weigand <uweigand@de.ibm.com>
3246 * config/s390/s390.c (legitimate_pic_operand_p): Do not
3247 accept symbolic LARL operands.
3248 (s390_emit_epilogue): Do not set FRAME_RELATED_P on
3251 2002-05-29 Hartmut Penner <hpenner@de.ibm.com>
3253 * config/s390/s390.md (cmpstr_64/31): Mark whole
3254 input registers as used.
3256 2002-05-28 Richard Henderson <rth@redhat.com>
3258 * config/i386/i386.c (ix86_save_reg): Examine regs_ever_live,
3259 not current_function_uses_pic_offset_table and
3260 current_function_uses_const_pool; examine current_function_profile.
3261 (ix86_expand_prologue): Likewise. Add pic_offset_table_rtx as
3262 input to blockage if needed.
3263 (ix86_expand_call): Do not set current_function_uses_pic_offset_table.
3264 (legitimize_pic_address): Likewise. Set regs_ever_live for
3265 pic_offset_table_rtx when invoked during reload.
3266 * config/i386/i386.h (FINALIZE_PIC): Remove.
3267 * config/i386/i386.md (tablejump): Reformat. Do not set
3268 current_function_uses_pic_offset_table.
3269 (tls_global_dynamic, tls_local_dynamic_base): Likewise.
3270 (blockage): Accept anything as operand 0.
3272 2002-05-28 Jason Thorpe <thorpej@wasabisystems.com>
3274 * config/netbsd-aout.h (NETBSD_OS_CPP_BUILTINS_AOUT): Define
3275 common CPP built-ins for all NetBSD a.out targets.
3276 * config/netbsd-elf.h (NETBSD_OS_CPP_BUILTINS_ELF): Define
3277 common CPP built-ins for all NetBSD ELF targets.
3278 * config/netbsd.h: Add missing notice.
3279 (NETBSD_OS_CPP_BUILTINS_COMMON): Define common CPP built-ins
3280 for all NetBSD targets.
3281 (NETBSD_OS_CPP_BUILTINS_LP64): Define common CPP built-ins
3282 for all NetBSD targets using an LP64 code model.
3283 (NETBSD_CPP_SPEC): Define CPP_SPEC parts common to all
3286 2002-05-28 Richard Henderson <rth@redhat.com>
3288 * flow.c (update_life_info_in_dirty_blocks): Only do a partial
3289 update if UPDATE_LIFE_LOCAL.
3291 2002-05-28 Toshiyasu Morita <toshiyasu.morita@hsa.hitachi.com>
3293 * config/sh/sh.c: Include real.h for REAL_VALUE_TYPE.
3295 Tue May 28 21:16:18 2002 J"orn Rennecke <joern.rennecke@superh.com>
3296 Jason R. Thorpe <thorpej@wasabisystems.com>
3298 config/sh reorganization to factor out endianness and coff:
3300 * config/sh/little.h: New file.
3301 * config/sh/sh.h (TARGET_ENDIAN_DEFAULT): If not already
3302 defined, define to 0 to select big-endian.
3303 (SUBTARGET_ASM_ENDIAN_SPEC): Define according to TARGET_ENDIAN_DEFAULT.
3304 (TARGET_DEFAULT): Include TARGET_ENDIAN_DEFAULT.
3305 * config/sh/sh64.h (TARGET_DEFAULT): Include TARGET_ENDIAN_DEFAULT.
3306 * config/sh/t-be: New file.
3307 * config/sh/t-le: New file.
3309 * sh.h (SDB_DEBUGGING_INFO, #include "dbxcoff.h"): Moved to sh/coff.h.
3310 (SDB_DELIM, MAX_OFILE_ALIGNMENT, IDENT_ASM_OP): Likewise.
3311 (TARGET_ASM_NAMED_SECTION, ASM_OUTPUT_SKIP): Likewise.
3312 (USER_LABEL_PREFIX, LOCAL_LABEL_PREFIX): Likewise.
3313 (ASM_GENERATE_INTERNAL_LABEL, ASM_OUTPUT_INTERNAL_LABEL): Likewise.
3314 (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL): Likewise.
3315 (ASM_FILE_END, ASM_DECLARE_FUNCTION_NAME): Deleted.
3316 (CPP_SPEC, SUBTARGET_CPP_ENDIAN_SPEC): Likewise.
3317 (SUBTARGET_CPP_SPEC, CPP_DEFAULT_CPU_SPEC, CPP_PREDEFINES): Likewise.
3318 (EXTRA_SPECS): Remove SUBTARGET_CPP_ENDIAN_SPEC and
3319 CPP_DEFAULT_CPU_SPEC. Add LINK_EMUL_PREFIX, LINK_DEFAULT_CPU_EMUL,
3320 SUBTARGET_LINK_EMUL_SUFFIX and SUBTARGET_LINK_SPEC.
3321 (LINK_SPEC): Define to SH_LINK_SPEC.
3322 (TARGET_CPU_CPP_BUILTINS, SH_LINK_SPEC): Define.
3323 (LINK_EMUL_PREFIX, LINK_DEFAULT_CPU_EMUL): Likewise.
3324 (SUBTARGET_LINK_EMUL_SUFFIX, SUBTARGET_LINK_SPEC): Likewise.
3325 (CPP_SPEC): Reduce to %(subtarget_cpp_spec).
3326 (TARGET_ENDIAN_DEFAULT): Define if not already defined.
3327 * config/sh/coff.h: New file.
3328 (TARGET_ASM_NAMED_SECTION): Now default_coff_asm_named_section
3329 (TARGET_OBJFMT_CPP_BUILTINS): Define.
3330 * config/sh/elf.h (IDENT_ASM_OP): No need to #undef at the start.
3331 (ASM_FILE_END, ASM_OUTPUT_SOURCE_LINE): Likewise.
3332 (DBX_OUTPUT_MAIN_SOURCE_FILE_END, TARGET_ASM_NAMED_SECTION): Likewise.
3333 (ASM_DECLARE_FUNCTION_NAME, MAX_OFILE_ALIGNMENT, SIZE_TYPE): Likewise.
3334 (PTRDIFF_TYPE): Likewise.
3335 ("dbxelf.h", "elfos.h", "svr4.h"): Don't #include.
3336 (CPP_PREDEFINES): Don't define.
3337 (TARGET_OBJFMT_CPP_BUILTINS): Define.
3338 (LINK_SPEC): Define to SH_LINK_SPEC.
3339 (LINK_EMUL_PREFIX): Redefine.
3340 * config/sh/linux.h: (SUBTARGET_CPP_SPEC): Remove -fpic / -fPIC cases.
3341 (SUBTARGET_CPP_ENDIAN_SPEC, CPP_DEFAULT_CPU_SPEC): Remove redefinition.
3342 (CPP_PREDEFINES, SUBTARGET_ASM_ENDIAN_SPEC): Likewise.
3343 (CC1_SPEC, CC1PLUS_SPEC, LINK_SPEC): Likewise.
3344 (TARGET_OS_CPP_BUILTINS): Define.
3345 (TARGET_DEFAULT): Redefine.
3346 (SUBTARGET_LINK_EMUL_SUFFIX, SUBTARGET_LINK_SPEC): Likewise.
3347 * config/sh/sh64.h (CPP_DEFAULT_CPU_SPEC): Remove.
3348 (LINK_SPEC): Don't redefine.
3349 (LINK_DEFAULT_CPU_EMUL): Redefine.
3350 (TARGET_DEFAULT): Include TARGET_ENDIAN_DEFAULT.
3351 * sh.c (sh_asm_named_section): Don't declare / define.
3352 * t-linux (MULTILIB_OPTIONS): Rely on pre-set endianness option.
3353 * config.gcc (sh-*-elf* tm_file): Add dbxelf.h elfos.h svr4.h.
3354 (sh64-*-elf* tm_file): Likewise.
3355 (sh-*-rtemself* tm_file): Likewise.
3356 (sh-*-linux* tm_file): Likewise. Add sh/little.h.
3357 (sh-*-linux* tmake_file): Add sh/t-le.
3358 (sh-*-rtems* tm_file): Add sh/coff.h
3359 (sh-*-* tm_file): Likewise.
3361 Tue May 28 21:16:18 2002 J"orn Rennecke <joern.rennecke@superh.com>
3363 * sh.h (LEGITIMATE_PIC_OPERAND_P): Check for SYMBOL_REF before using
3364 CONSTANT_POOL_ADDRESS_P.
3366 * coff.h (HAS_INIT_SECTION, INVOKE__MAIN): Define.
3368 2002-05-28 David Edelsohn <edelsohn@gnu.org>
3369 Jeff Law <law@redhat.com>
3371 * optabs.c (expand_binop): Fix nwords sign warnings.
3372 generate pseudo for add_optab.
3374 * sched-deps.c (sched_analyze): Do not clear SCHED_GROUP_P.
3375 * haifa-sched.c (move_insn): Clear SCHED_GROUP_P after it is used.
3377 2002-05-28 Marc Espie <espie@openbsd.org>
3379 * config/i386/openbsd.h (HAVE_GAS_MAX_SKIP_P2ALIGN): Remove,
3380 inherited from gas.h.
3381 (ASM_QUAD): Undef. OpenBSD does not support it.
3383 2002-05-28 Danny Smith <dannysmith@users.sourceforge.net>
3385 * doc/install.texi (binaries): Change mingw binaries
3386 link to www.mingw.org.
3388 2002-05-28 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
3390 * cfgloop.c (flow_loops_cfg_dump): Use bb->index, not i.
3392 2002-05-28 Richard Henderson <rth@redhat.com>
3394 * config/i386/i386.c (ix86_compute_frame_layout): Do not add
3395 bottom alignment for leaf functions.
3397 2002-05-28 Zack Weinberg <zack@codesourcery.com>
3399 * config/pa/milli32.S, config/pa/lib1funcs.asm,
3400 config/sparc/sol2-g1.asm: Delete unused files.
3402 2002-05-28 Richard Henderson <rth@redhat.com>
3404 * cfg.c (dump_flow_info): Print bb->index, not i, for block number.
3406 * flow.c (calculate_global_regs_live): Rename call_used to
3407 invalidated_by_call. Initialize from regs_invalidated_by_call
3408 instead of call_used_regs.
3410 * varasm.c (default_binds_local_p): Check TREE_PUBLIC before
3413 2002-05-28 Zack Weinberg <zack@codesourcery.com>
3415 * tree.h: Don't include real.h.
3416 Forward-declare struct realvaluetype.
3417 (struct tree_real_cst): Point to the REAL_VALUE_TYPE, do not
3419 (TREE_REAL_CST_PTR): New accessor.
3420 (TREE_REAL_CST): Update.
3421 * real.h: Include machmode.h.
3422 (realvaluetype): Make it struct realvaluetype, not a typedef.
3423 (build_real): Prototype here.
3425 * tree.c: Include real.h.
3426 (build_real): Allocate the REAL_VALUE_TYPE as a separate
3427 object in GC memory, set TREE_REAL_CST_PTR to point to it.
3428 (build_real_from_int_cst): Use build_real.
3429 * ggc-common.c (ggc_mark_trees): Mark TREE_REAL_CST_PTR of a
3432 * builtins.c, c-common.c, c-lex.c, dwarf2out.c, expr.c,
3433 fold-const.c, print-tree.c, real.c: Include real.h.
3434 * Makefile.in: Update dependency lists.
3436 2002-05-28 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
3438 * basic-block.h (last_basic_block): Declare.
3439 (expunge_block_nocompact): Declaration removed.
3440 (compact_blocks): Declare.
3441 * cfg.c (last_basic_block): New variable.
3442 (expunge_block_nocompact): Removed.
3443 (expunge_block): Do not compact basic blocks.
3444 (compact_blocks): New.
3445 * cfganal.c (flow_call_edges_add): Use the fact that bb indices no
3447 * cfgbuild.c (find_basic_blocks_1, find_basic_blocks): Set
3449 * cfgcleanup.c (merge_blocks_move_predecessor_nojumps): Do not change
3450 real positions of blocks.
3451 (delete_unreachable_blocks): Simplified -- quadratic behavior now
3453 (cleanup_cfg): Compact blocks.
3454 * cfgrtl.c (create_basic_block): Insert basic blocks to the end of
3455 basic_block_info varray.
3456 (flow_delete_block): Comment update.
3457 (back_edge_of_syntactic_loop_p): Modify position check code.
3458 (verify_flow_info): Update checking.
3459 * flow.c (calculate_global_regs_live): Use FOR_EACH_BB.
3460 * ifcvt.c (SET_ORIG_INDEX, ORIG_INDEX): Removed.
3461 (find_if_case_1, find_if_case_2, if_convert): Use the fact that bb
3462 indices no longer change.
3463 * lcm.c (optimize_mode_switching): Replace n_basic_blocks with
3465 * predict.c (estimate_bb_frequencies): Remove unneccessary code.
3466 * profile.c (branch_prob): Compact blocks.
3467 * sched-rgn.c (find_rgns): Replace n_basic_blocks with
3470 2002-05-28 Kazu Hirata <kazu@cs.umass.edu>
3472 * config/h8300/h8300.md (two anonymous patterns): New.
3474 2002-05-28 David S. Miller <davem@redhat.com>
3476 * config/sparc/sparc.md (cpu): Tidy.
3477 (type): Delete 'return', add 'ialuX', 'flushw', 'iflush', and
3479 (in_call_delay): Delete reference to 'return' type.
3480 (eligible_for_return_delay, in_return_delay, define_delay
3481 referencing those): Delete.
3482 (rest of file): Use new type attributes as appropriate.
3483 * config/sparc/sparc-protos.h (eligible_for_return_delay): Delete.
3484 * config/sparc/sparc.c (eligible_for_return_delay): Likewise.
3485 * config/sparc/ultra1_2.md (us1_single): New reservation.
3486 (us1_ialuX): Likewise.
3487 * config/sparc/ultra3.md (us3_single): Likewise.
3488 (us3_ialuX): Likewise.
3489 (us3_imul, us3_idiv): Tweak.
3491 2002-05-28 Richard Henderson <rth@redhat.com>
3493 * config/alpha/alpha.c (alpha_in_small_data_p): Return false for
3496 2002-05-28 Richard Henderson <rth@redhat.com>
3498 * config.gcc: Obsolete mn10200.
3500 2002-05-28 Neil Booth <neil@daikokuya.demon.co.uk>
3502 * cppexp.c (interpret_number): Optimize for single-digit
3503 and less-than-half-precision cases.
3504 (num_trim, num_positive, num_div_op): Cast constants.
3506 2002-05-27 Bo Thorsen <bo@suse.de>
3508 * config/i386/libgcc-x86_64-glibc.ver: Copy this file from the
3509 3.1 branch. The file was made by Jakub Jelinek.
3510 * config/i386/linux64.h (MD_FALLBACK_FRAME_STATE_FOR): Add i386
3511 support so multilib doesn't break. And don't define this at all
3512 when -Dinhibit_libc is used.
3513 (MULTILIB_DEFAULTS): Always set default to 64 bit compilation.
3514 * config/i386/t-linux64: Implement full multilib support. Patch
3515 originally done by Andreas Jaeger and Jakub Jelinek.
3517 2002-05-27 Roger Sayle <roger@eyesopen.com>
3519 * c-common.c: Add support for __attribute__((nothrow)) to specify
3520 that a function cannot throw an exception (using TREE_NOTHROW).
3521 (handle_nothrow_attribute): New function to process this attribute.
3523 * doc/extend.texi: Document the new nothrow function attribute.
3525 2002-05-27 H.J. Lu (hjl@gnu.org)
3527 * cppexp.c (num_trim): Use 1UL instead of 1 for long int.
3528 (num_positive): Likewise.
3529 (num_div_op): Likewise.
3531 2002-05-27 Neil Booth <neil@daikokuya.demon.co.uk>
3533 * c-common.c (c_common_init): Always use intmax_t.
3535 2002-05-27 Neil Booth <neil@daikokuya.demon.co.uk>
3537 * c-common.c (c_common_init): Use intmax_t for now.
3539 2002-05-24 Andrew Haley <aph@redhat.com>
3541 * fold-const.c (fold): Don't convert (T)(x & c) into (T)x & (T)c
3542 if T is a boolean type.
3544 2002-05-27 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
3546 * basic-block.h (last_basic_block): Defined as synonym for
3548 * cfganal.c (mark_dfs_back_edges, flow_reverse_top_sort_order_compute,
3549 flow_depth_first_order_compute, flow_preorder_transversal_compute,
3550 flow_dfs_compute_reverse_init): Replaced relevant occurences of
3551 n_basic_blocks with last_basic_block.
3552 * cfgbuild.c (make_edges): Likewise.
3553 * cfgloop.c (flow_loop_scan, flow_loops_find): Likewise.
3554 * cfgrtl.c (verify_flow_info, purge_all_dead_edges): Likewise.
3555 * combine.c (combine_instructions): Likewise.
3556 * df.c (df_alloc, df_analyse_1, df_analyse, iterative_dataflow_sbitmap,
3557 iterative_dataflow_bitmap): Likewise.
3558 * dominance.c (init_dom_info, calc_dfs_tree_nonrec, calc_dfs_tree,
3559 calc_idoms, idoms_to_doms): Likewise.
3560 * flow.c (update_life_info_in_dirty_blocks, free_basic_block_vars):
3562 * gcse.c (gcse_main, alloc_gcse_mem, compute_local_properties,
3563 compute_hash_table, expr_reaches_here_p, one_classic_gcse_pass,
3564 one_cprop_pass, compute_pre_data, pre_expr_reaches_here_p,
3565 one_pre_gcse_pass, compute_transpout, delete_null_pointer_checks_1,
3566 delete_null_pointer_checks, compute_code_hoist_vbeinout,
3567 hoist_expr_reaches_here_p, hoist_code, one_code_hoisting_pass,
3568 compute_store_table, build_store_vectors): Likewise.
3569 * haifa-sched.c (sched_init): Likewise.
3570 * ifcvt.c (if_convert): Likewise.
3571 * lcm.c (compute_antinout_edge, compute_laterin, compute_insert_delete,
3572 pre_edge_lcm, compute_available, compute_nearerout,
3573 compute_rev_insert_delete, pre_edge_rev_lcm, optimize_mode_switching):
3575 * predict.c (estimate_probability, process_note_prediction,
3576 note_prediction_to_br_prob): Likewise.
3577 * profile.c (GCOV_INDEX_TO_BB, BB_TO_GCOV_INDEX): Likewise.
3578 * recog.c (split_all_insns, peephole2_optimize): Likewise.
3579 * regrename.c (copyprop_hardreg_forward): Likewise.
3580 * resource.c (init_resource_info): Likewise.
3581 * sched-rgn.c (build_control_flow, find_rgns, compute_trg_info,
3582 init_regions, schedule_insns): Likewise.
3583 * ssa-ccp.c (ssa_const_prop): Likewise.
3584 * ssa-dce.c (ssa_eliminate_dead_code): Likewise.
3585 * ssa.c (compute_dominance_frontiers,
3586 compute_iterated_dominance_frontiers, convert_to_ssa): Likewise.
3588 * df.c (df_refs_unlink): Fix FOR_EACH_BB usage (in #if 0'ed code)
3589 * gcse.c (alloc_rd_mem, alloc_avail_expr_mem): Use n_blocks for vector
3592 Mon May 27 14:28:12 CEST 2002 Jan Hubicka <jh@suse.cz>
3594 * basic-block.h (can_hoist_p, hoist_insn_after, hoist_insn_to_edge):
3596 * rtlanal.c (hoist_test_store, can_hoist_insn_p, hoist_update_store,
3597 hoist_insn_after, hoist_insn_to_edge): New.
3599 Mon May 27 12:14:02 CEST 2002 Jan Hubicka <jh@suse.cz>
3601 * basic-block.h (PEOP_SCAN_DEAD_STORES): New.
3602 (PROP_FINAL): Include.
3603 * flow.c (life_analysis, update_life_info,
3604 init_propagate_block_info, mark_set_1, mark_used_rgs):
3605 Support SCAN_DEAD_STORE.
3607 2002-05-27 Neil Booth <neil@daikokuya.demon.co.uk>
3609 * c-common.c (c_common_init): Set CPP arithmetic precision.
3610 * cppexp.c (cpp_num_part): Move typedef ...
3611 * cpphash.h: ...here; make unsigned HOST_WIDE_INT.
3612 * cppinit.c (cpp_create_reader): Default to host long arithmetic.
3613 (sanity_checks): Update.
3615 2002-05-26 Geoffrey Keating <geoffk@redhat.com>
3617 * Makefile.in (INSTALL_HEADERS): Add 'install-mkheaders'.
3618 (mkheaders): New rule.
3619 (install-mkheaders): New rule.
3620 * configure.in (all_outputs): Add mkheaders.
3621 * configure: Regenerate.
3622 * mkheaders.in: New file.
3624 2002-05-26 Jakub Jelinek <jakub@redhat.com>
3626 * cse.c (fold_rtx): Don't optimize if SUBREG changes mode class.
3628 2002-05-26 Andreas Jaeger <aj@suse.de>
3630 * cfg.c (dump_flow_info): Remove extra argument to fprintf.
3632 2002-05-26 Neil Booth <neil@daikokuya.demon.co.uk>
3634 * cppexp.c (possible_sum_sign, integer_overflow, left_shift,
3635 right_shift): Remove.
3636 (cpp_num, cpp_num_part, PART_PRECISION, HALF_MASK, LOW_PART,
3638 (struct op): Use cpp_num.
3639 (num_zerop, num_eq, num_positive, num_greater_freq, num_trim,
3640 num_part_mul, num_unary_op, num_binary_op, num_negate,
3641 num_bitwise_op, num_inequality_op, num_equality_op, num_mul,
3642 num_div_op, num_lshift, num_rshift, append_digit): New.
3643 (interpret_number, parse_defined, eval_token, reduce): Update
3644 for two-integer arithmetic.
3645 (binary_handler): New typedef.
3647 (COMPARE, EQUALITY, BITWISE, MINMAX, UNARY, SHIFT): Delete.
3648 (_cpp_parse_expr, reduce): Update to handle two-integers.
3649 * cpplib.c (_cpp_test_assertion): Back up on CPP_EOF.
3651 2002-05-26 Marek Michalkiewicz <marekm@amelek.gda.pl>
3653 * config/avr/avr-protos.h (avr_out_sbxx_branch): Declare.
3654 * config/avr/avr.c (jump_over_one_insn_p): Take length of the
3655 branch insn into account, do not assume 1.
3656 (avr_out_sbxx_branch): New function. Optimize cases of skipping
3657 over single word insn. Handle upper half of I/O space too.
3658 * config/avr/avr.md (*sbrx_branch): Use it.
3659 (*sbrx_and_branchhi, *sbrx_and_branchsi): Likewise.
3660 (*sbix_branch, *sbix_branch_bit7): Likewise.
3661 (*sbix_branch_tmp, *sbix_branch_tmp_bit7): New.
3662 Use RTL peepholes to optimize register operand sign tests.
3664 2002-05-26 Marek Michalkiewicz <marekm@amelek.gda.pl>
3666 * config/avr/avr.c (avr_asm_only_p): New variable.
3667 (avr_override_options): Set it here if AVR1.
3668 (asm_file_start): Test it here, report an error if set.
3670 2002-05-26 Kazu Hirata <kazu@cs.umass.edu>
3672 * alias.c: Fix formatting.
3673 * attribs.c: Likewise.
3674 * bb-reorder.c: Likewise.
3675 * bitmap.c: Likewise.
3676 * bitmap.h: Likewise.
3677 * builtins.c: Likewise.
3679 Sun May 26 14:00:44 CEST 2002 Jan Hubicka <jh@suse.cz>
3681 * reload.c (find_valid_class): Accept new argument DEST,
3682 choose class accordingly.
3683 (push_reload): Update callers.
3685 2002-05-26 Andreas Jaeger <aj@suse.de>
3687 * combine.c (combine_instructions): Do not indent #if for
3690 2002-05-25 Richard Henderson <rth@redhat.com>
3692 * c-pragma.c (apply_pragma_weak): Convert value identifier to
3693 string for decl_attributes.
3694 (handle_pragma_weak): Call assemble_alias if we're modifying
3697 2002-05-25 Richard Henderson <rth@redhat.com>
3700 * config/sparc/sparc.c (sparc_output_mi_thunk): New implementation
3701 using rtl instead of fprintf.
3702 * config/sparc/sparc.h (ASM_OUTPUT_MI_THUNK): Use it.
3703 * config/sparc/sparc-protos.h: Update.
3705 2002-05-25 Neil Booth <neil@daikokuya.demon.co.uk>
3707 * Makefile.in (C_COMMON_H): Fix.
3708 Update other targets.
3709 * c-common.c: Don't include c-lex.h.
3710 (builtin_define_with_value): Make static and prototype.
3711 (builtin_define_std): Move from c-lex.h.
3712 * c-common.h (init_c_lex): Move from c-lex.h.
3713 * c-decl.c: Don't include c-lex.h.
3714 (make_pointer_declarator): Move from c-parse.in.
3715 * c-lex.c: Don't include c-lex.h.
3717 * c-parse.in: Don't include c-lex.h; include c-pragma.h.
3718 (make_pointer_declarator): Move to c-decl.c.
3719 * c-pragma.c: Don't include c-lex.h.
3720 * c-pragma.h (yydebug, YYDEBUG, parse_in, c_lex): Move from c-lex.h.
3721 * c-tree.h (make_pointer_declarator): New.
3723 * passes.texi, tm.texi: Update.
3725 * Make-lang.in: Update and correct.
3726 * objc-act.c: Don't include c-lex.h or cpplib.h.
3728 * treetree.c: Don't include c-lex.h.
3730 * darwin-c.c: Don't include c-lex.h.
3731 * c4x/c4x-c.c: Don't include c-lex.h.
3732 * c4x/t-c4x: Update.
3733 * i370/i370-c.c: Don't include c-lex.h.
3734 * i370/t-i370: Update.
3735 * i960/i960-c.c: Don't include c-lex.h.
3736 * i960/i960.c: Don't include cpplib.h, c-lex.h or c-pragma.h.
3737 * i960/t-960bare: Update.
3738 * i960/t-vxworks: Update.
3739 * rs6000/rs6000-c.c: Don't include c-lex.h; include c-pragma.h.
3740 * rs6000/t-darwin: Update.
3741 * rs6000/t-rs6000-c-rule: Update.
3742 * v850/v850-c.c: Don't include c-lex.h.
3743 * v850/v850.c: Don't include c-lex.h or cpplib.h.
3746 2002-05-25 Kazu Hirata <kazu@cs.umass.edu>
3748 * tree.def: Fix typos.
3749 * doc/install.texi: Likewise.
3751 2002-05-25 Richard Henderson <rth@redhat.com>
3753 * configure.in (HAVE_AS_TLS): Add ia64 test.
3754 * configure: Rebuild.
3755 * config/ia64/ia64.c (ia64_tls_size_string, ia64_tls_size): New.
3756 (override_options): Set it.
3757 (TARGET_HAVE_TLS): New.
3758 (sdata_symbolic_operand): Look for 's'.
3759 (tls_symbolic_operand): New.
3760 (ia64_expand_load_address): Abort for tls symbols.
3761 (gen_tls_get_addr): New.
3762 (gen_thread_pointer): New.
3763 (ia64_expand_move): Split out from movdi. Handle tls symbols.
3764 (rtx_needs_barrier): Add new unspecs.
3765 (ia64_encode_section_info): Handle tls symbols.
3766 (ia64_strip_name_encoding): Strip two encoding chars.
3767 * config/ia64/ia64.h (ia64_tls_size, ia64_tls_size_string): New.
3768 (TARGET_TLS14, TARGET_TLS22, TARGET_TLS64): New.
3769 (TARGET_OPTIONS): Add tls-size.
3770 (ENCODE_SECTION_INFO_CHAR): Rename from SDATA_NAME_FLAG_CHAR.
3771 * config/ia64/ia64.md (UNSPEC_LTOFF_DTPMOD, UNSPEC_LTOFF_DTPREL,
3772 UNSPEC_DTPREL, UNSPEC_LTOFF_TPREL, UNSPEC_TPREL, UNSPEC_LD_BASE): New.
3773 (movqi, movhi, movsi, movdi, movti): Use ia64_expand_move.
3774 (movsf, movdf): Likewise.
3775 (movdi_symbolic): Use match_scratch. Don't split if we won't
3776 have a scratch availiable.
3777 (load_ltoff_dtpmod, load_dtprel, load_dtprel64, load_dtprel22,
3778 add_dtprel, add_dtprel14, add_dtprel22, load_ltoff_tprel, load_tprel,
3779 load_tprel64, load_tprel22, add_tprel, add_tprel14, add_tprel22): New.
3780 * config/ia64/ia64-protos.h: Update.
3781 * config/ia64/sysv4.h (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Use
3782 sdata_symbolic_operand.
3783 (ASM_OUTPUT_LABELREF): Strip two characters.
3785 2002-05-25 Kazu Hirata <kazu@cs.umass.edu>
3787 * combine.c (simplify_set): Remove an unnecessary subreg.
3789 2002-05-25 Marek Michalkiewicz <marekm@amelek.gda.pl>
3791 * config/avr/avr.c (avr_handle_progmem_attribute): Handle TYPE_DECL.
3793 * config/avr/avr.h (BSS_SECTION_ASM_OP, ASM_OUTPUT_BSS): New.
3795 2002-05-25 Gabriel Dos Reis <gdr@codesourcery.com>
3797 * toplev.c (output_clean_symbol_name): Fix another thinko. Gosh.
3799 2002-05-25 Roger Sayle <roger@eyesopen.com>
3801 * simplify-rtx.c (simplify_gen_relational): Simplify the RTX
3802 (cond (compare x y) 0) into the equivalent (cond x y).
3804 2002-05-25 Gabriel Dos Reis <gdr@codesourcery.com>
3806 * toplev.c (output_clean_symbol_name): Use xstrdup. Fix thinko.
3808 2002-05-24 Zack Weinberg <zack@codesourcery.com>
3810 * config.gcc: Remove all stanzas for previously obsoleted
3811 systems. Where necessary, add explicit error stanzas to
3812 prevent removed systems from being misidentified as something
3813 else. Begin a fresh obsoletions list, with the systems that
3814 were reprieved last round.
3815 * doc/install.texi: Remove all mention of dead targets.
3816 * fixinc/mkfixinc.sh: Likewise.
3818 * config/arm/arm.h: Bit 31 of target_flags is no longer
3821 * config/1750a/1750a-protos.h, config/1750a/1750a.c,
3822 config/1750a/1750a.h, config/1750a/1750a.md, config/1750a/ms1750.inc,
3823 config/a29k/a29k-protos.h, config/a29k/a29k.c, config/a29k/a29k.h,
3824 config/a29k/a29k.md, config/a29k/rtems.h, config/a29k/t-a29kbare,
3825 config/a29k/t-vx29k, config/a29k/unix.h, config/a29k/vx29k.h,
3826 config/alpha/osf12.h, config/alpha/osf2or3.h,
3827 config/arm/arm-wince-pe.h, config/arm/arm.h, config/arm/riscix.h,
3828 config/arm/riscix1-1.h, config/arm/rix-gas.h, config/arm/t-riscix,
3829 config/clipper/clipper-protos.h, config/clipper/clipper.c,
3830 config/clipper/clipper.h, config/clipper/clipper.md,
3831 config/clipper/clix.h, config/convex/convex-protos.h,
3832 config/convex/convex.c, config/convex/convex.h,
3833 config/convex/convex.md, config/convex/fixinc.convex,
3834 config/convex/proto.h, config/elxsi/elxsi-protos.h,
3835 config/elxsi/elxsi.c, config/elxsi/elxsi.h, config/elxsi/elxsi.md,
3836 config/i386/386bsd.h, config/i386/aix386.h, config/i386/aix386ng.h,
3837 config/i386/bsd386.h, config/i386/dgux.h, config/i386/djgpp-rtems.h,
3838 config/i386/isc.h, config/i386/iscdbx.h, config/i386/linux-oldld.h,
3839 config/i386/next.h, config/i386/osf1-ci.asm, config/i386/osf1-cn.asm,
3840 config/i386/osf1elf.h, config/i386/osf1elfgdb.h, config/i386/osfelf.h,
3841 config/i386/osfrose.h, config/i386/rtems.h, config/i386/seq-gas.h,
3842 config/i386/seq-sysv3.h, config/i386/seq2-sysv3.h,
3843 config/i386/sequent.h, config/i386/sun.h, config/i386/sun386.h,
3844 config/i386/t-dgux, config/i386/t-next, config/i386/t-osf,
3845 config/i386/t-osf1elf, config/i860/bsd-gas.h, config/i860/bsd.h,
3846 config/i860/fx2800.h, config/i860/i860-protos.h, config/i860/i860.c,
3847 config/i860/i860.h, config/i860/i860.md, config/i860/mach.h,
3848 config/i860/paragon.h, config/i860/sysv3.h, config/i860/sysv4.h,
3849 config/i860/t-fx2800, config/i860/varargs.asm, config/m68k/a-ux.h,
3850 config/m68k/altos3068.h, config/m68k/apollo68.h,
3851 config/m68k/aux-crt1.c, config/m68k/aux-crt2.asm,
3852 config/m68k/aux-crtn.asm, config/m68k/aux-exit.c,
3853 config/m68k/aux-low.gld, config/m68k/aux-mcount.c,
3854 config/m68k/auxas.h, config/m68k/auxgas.h, config/m68k/auxgld.h,
3855 config/m68k/auxld.h, config/m68k/ctix.h, config/m68k/dpx2.h,
3856 config/m68k/dpx2.ifile, config/m68k/dpx2cdbx.h, config/m68k/dpx2g.h,
3857 config/m68k/isi-nfp.h, config/m68k/isi.h, config/m68k/lynx-ng.h,
3858 config/m68k/lynx.h, config/m68k/math-3300.h, config/m68k/news.h,
3859 config/m68k/news3.h, config/m68k/news3gas.h, config/m68k/newsgas.h,
3860 config/m68k/next.h, config/m68k/next21.h, config/m68k/rtems.h,
3861 config/m68k/t-aux, config/m68k/t-lynx, config/m68k/t-next,
3862 config/m68k/x-next, config/m88k/dgux.h, config/m88k/dgux.ld,
3863 config/m88k/dguxbcs.h, config/m88k/dolph.h, config/m88k/dolphin.ld,
3864 config/m88k/luna.h, config/m88k/m88k-coff.h, config/m88k/sysv3.h,
3865 config/m88k/t-bug, config/m88k/t-dgux, config/m88k/t-dgux-gas,
3866 config/m88k/t-dguxbcs, config/m88k/t-dolph, config/m88k/t-m88k-gas,
3867 config/m88k/t-tekXD88, config/m88k/tekXD88.h, config/m88k/tekXD88.ld,
3868 config/mips/bsd-4.h, config/mips/bsd-5.h, config/mips/dec-bsd.h,
3869 config/mips/dec-osf1.h, config/mips/elflorion.h,
3870 config/mips/iris4loser.h, config/mips/mips-5.h, config/mips/news4.h,
3871 config/mips/news5.h, config/mips/nws3250v4.h, config/mips/osfrose.h,
3872 config/mips/svr3-4.h, config/mips/svr3-5.h, config/mips/svr4-4.h,
3873 config/mips/svr4-5.h, config/mips/svr4-t.h, config/mips/t-bsd,
3874 config/mips/t-bsd-gas, config/mips/t-svr3, config/mips/t-svr3-gas,
3875 config/mips/t-svr4, config/mips/t-svr4-gas, config/mips/t-ultrix,
3876 config/mips/ultrix.h, config/nextstep-protos.h, config/nextstep.c,
3877 config/nextstep.h, config/nextstep21.h, config/ns32k/encore.h,
3878 config/ns32k/merlin.h, config/ns32k/pc532-mach.h,
3879 config/ns32k/pc532-min.h, config/ns32k/pc532.h,
3880 config/ns32k/sequent.h, config/ns32k/tek6000.h,
3881 config/ns32k/tek6100.h, config/ns32k/tek6200.h, config/pj/lib1funcs.S,
3882 config/pj/linux.h, config/pj/pj-protos.h, config/pj/pj.c,
3883 config/pj/pj.h, config/pj/pj.md, config/pj/pjl.h, config/pj/t-pj,
3884 config/sparc/rtems.h, config/we32k/we32k-protos.h,
3885 config/we32k/we32k.c, config/we32k/we32k.h, config/we32k/we32k.md:
3888 2002-05-24 Richard Henderson <rth@redhat.com>
3890 * flags.h (TLS_MODEL_GLOBAL_DYNAMIC): Set to 1.
3891 * toplev.c (flag_tls_default) Set to TLS_MODEL_GLOBAL_DYNAMIC.
3892 * config/i386/i386.c (tls_model_chars): Add leading space.
3893 (tls_symbolic_operand): Don't bias by 1.
3894 (legitimize_address): Don't unbias by 1.
3896 2002-05-24 Toshiyasu Morita <toshiyasu.morita@hsa.hitachi.com>
3898 * lcm.c (optimize_mode_switching): Change bb used as indices
3901 2002-05-24 Richard Henderson <rth@redhat.com>
3903 * config/ia64/ia64.c (ia64_reorg): Use update_life_info instead
3904 of update_life_info_in_dirty_blocks.
3906 2002-05-24 Jakub Jelinek <jakub@redhat.com>
3909 * final.c (get_mem_expr_from_op): Return 0 if op is NULL.
3911 2002-05-24 Neil Booth <neil@daikokuya.demon.co.uk>
3913 PR preprocessor/6780
3914 * cppmacro.c (enter_macro_context): Clear state.angled_headers.
3916 2002-05-24 Jim Blandy <jimb@redhat.com>
3918 * dwarf2out.c (dwarf2out_finish): Don't forget to emit a final
3919 entry with a type code of zero, marking the end of the compilation
3922 2002-05-24 Richard Henderson <rth@redhat.com>
3924 * varasm.c (asm_output_bss): Always output one byte.
3925 * config/alpha/elf.h (ASM_OUTPUT_ALIGNED_LOCAL): Likewise.
3927 2002-05-24 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3929 * tree.c (decl_type_context): Return NULL_TREE if decl's context is a
3932 2002-05-24 Andreas Jaeger <aj@suse.de>
3934 * ggc-page.c (alloc_page): Cast variables of type size_t to
3935 unsigned long, adjust printf format string.
3936 (ggc_alloc): Likewise.
3937 (ggc_print_statistics): Likewise.
3938 (ggc_print_statistics): Correct printf format string for SCALE to
3941 2002-05-24 Danny Smith <dannysmith@users.sourceforge.net>
3943 * config/i386/mingw32.h (CPP_SPEC): Remove -remap.
3945 2002-05-23 Gabriel Dos Reis <gdr@codesourcery.com>
3946 Zack Weinberg <zack@codesourcery.com>
3948 * config/i386/mingw32.h (OUTPUT_QUOTED_STRING): Properly output
3950 * dwarf2out.c (lookup_filename): Properly quote filename in .file
3951 directive in assembly file.
3952 * config/m68k/dpx2.h (ASM_OUTPUT_SOURCE_FILENAME): Likewise.
3953 * config/m88k/m88k.h (ASM_OUTPUT_SOURCE_FILENAME): Likewise.
3954 * config/pj/pj.h (ASM_FILE_START): Likewise.
3955 * config/rs6000/xcoff.h (ASM_FILE_START): Likewise.
3956 * config/avr/avr.c (asm_file_end): Likewise.
3957 * toplev.c (output_quoted_string): Handle possibly signed plain
3959 * toplev.h (output_clean_symbol_name): Declare
3960 * toplev.c (output_clean_symbol_name): Define.
3961 * config/alpha/alpha.c (unicosmk_output_module_name): Use it.
3962 * config/1750a/1750a.h (ASM_FILE_START): Likewise.
3964 2002-05-24 Alan Modra <amodra@bigpond.net.au>
3966 * config/rs6000/rs6000.c (output_toc): Mask longs to 32 bits.
3968 2002-05-23 Vladimir Makarov <vmakarov@redhat.com>
3970 * genautomata.c (reserv_sets_hash_value): Use shift equal to 3/4
3971 of size of unsigned.
3973 2002-05-23 Richard Henderson <rth@redhat.com>
3975 * configure.in (HAVE_AS_TLS): New test.
3976 * config.in, configure: Rebuild.
3977 * config/i386/i386.c (TARGET_HAVE_TLS): Set if HAVE_AS_TLS.
3978 (ix86_tls_dialect_string, ix86_tls_dialect): New.
3979 (override_options): Set it.
3980 (tls_model_chars, tls_symbolic_operand): New.
3981 (tls_symbolic_operand_1, global_dynamic_symbolic_operand): New.
3982 (local_dynamic_symbolic_operand, initial_exec_symbolic_operand): New.
3983 (local_exec_symbolic_operand): New.
3984 (get_pic_label_name): Merge into output_set_got.
3985 (ix86_asm_file_end): Emit pic_label_name if defined.
3986 (legitimate_constant_p, constant_address_p): New.
3987 (legitimate_pic_operand_p): New.
3988 (legitimate_pic_address_disp_p): Handle GOTTPOFF, NTPOFF, DTPOFF.
3989 (legitimate_address_p): Likewise.
3990 (ix86_encode_section_info): Rename from i386_; handle tls decls.
3991 (ix86_strip_name_encoding): New.
3992 (get_thread_pointer): New.
3993 (legitimize_address): Handle tls symbols.
3994 (output_pic_addr_const): Handle GOTTPOFF, TPOFF, NTPOFF, DTPOFF.
3996 (struct machine_function): Add some_ld_name.
3997 (get_some_local_dynamic_name, get_some_local_dynamic_name_1): Set it.
3998 (print_operand) [&]: Use it. Handle UNSPEC_TP.
3999 (output_addr_const_extra): New.
4000 (maybe_get_pool_constant): New.
4001 (ix86_split_to_parts): Use it.
4002 (ix86_expand_move): Handle tls symbols.
4003 (ix86_tls_get_addr): New.
4004 * config/i386/i386.h (TARGET_GNU_TLS, TARGET_SUN_TLS): New.
4005 (TARGET_OPTIONS): Add tls-dialect.
4006 (CONSTANT_ADDRESS_P): Use new out-of-line function.
4007 (LEGITIMATE_CONSTANT_P): Likewise.
4008 (LEGITIMATE_PIC_OPERAND_P): Likewise.
4009 (TARGET_STRIP_NAME_ENCODING): New.
4010 (ASM_OUTPUT_LABELREF): New.
4011 (PRINT_OPERAND_PUNCT_VALID_P): Add '&'.
4012 (OUTPUT_ADDR_CONST_EXTRA): New.
4013 (PREDICATE_CODES): Update.
4014 (ix86_tls_dialect, ix86_tls_dialect_string): New.
4015 * config/i386/i386.md: Regroup and renumber unspec constants.
4016 (tls_global_dynamic_gnu, tls_global_dynamic_sun): New.
4017 (tls_local_dynamic_base_gnu, tls_local_dynamic_base_sun): New.
4018 (tls_global_dynamic, tls_local_dynamic_base): New.
4019 (tls_local_dynamic_once): New.
4020 * config/i386/i386-protos.h: Update.
4022 2002-05-23 Richard Henderson <rth@redhat.com>
4024 * genemit.c (gen_insn): Print file:lineno comment before function.
4026 * gensupport.c (struct queue_elem): Add filename member.
4027 (queue_pattern): Initialize it; update all callers.
4028 (process_include): Don't free filename.
4029 (read_md_rtx): Set read_rtx_filename.
4031 2002-05-23 Hans Boehm <Hans_Boehm@hp.com>
4033 * config/ia64/linux.h (IA64_GATE_AREA_END): Adjust for 64K pages.
4035 2002-05-23 Richard Henderson <rth@redhat.com>
4037 * config/i386/i386.c (output_set_got): Fix typo in pic no-deep case.
4039 2002-05-23 Richard Henderson <rth@redhat.com>
4041 * doc/extend.texi (C++98 Thread-Local Edits): Update with
4042 commentary from Mark.
4044 2002-05-23 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
4046 * bb-reorder.c (make_reorder_chain, make_reorder_chain_1):
4047 Use FOR_EACH_BB macros to iterate over basic block chain.
4048 * cfg.c (clear_edges, clear_bb_flags, dump_flow_info,
4049 alloc_aux_for_blocks, clear_aux_for_blocks, alloc_aux_for_edges):
4051 * cfganal.c (set_edge_can_fallthru_flag, flow_call_edges_add,
4052 find_unreachable_blocks, create_edge_list, verify_edge_list,
4053 remove_fake_edges, add_noreturn_fake_exit_edges,
4054 flow_preorder_transversal_compute, flow_dfs_compute_reverse_execute):
4056 * cfgbuild.c (make_edges, find_basic_blocks, find_many_sub_basic_blocks,
4057 find_sub_basic_blocks): Likewise.
4058 * cfgcleanup.c (try_optimize_cfg, delete_unreachable_blocks):
4060 * cfglayout.c (record_effective_endpoints, cleanup_unconditional_jumps):
4062 * cfgloop.c (flow_loops_cfg_dump, flow_loops_find):
4064 * cfgrtl.c (compute_bb_for_insn, tidy_fallthru_edges,
4065 commit_edge_insertions, commit_edge_insertions_watch_calls,
4066 print_rtl_with_bb, verify_flow_info, purge_all_dead_edges): Likewise.
4067 * combine.c (combine_instructions, reg_dead_at_p): Likewise.
4068 * conflict.c (conflict_graph_compute): Likewise.
4069 * df.c (df_bitmaps_alloc, df_bitmaps_free, df_alloc, df_analyse_1,
4070 df_modified_p, df_refs_unlink, df_dump): Likewise.
4071 * dominance.c (calc_dfs_tree, calculate_dominance_info): Likewise.
4072 * final.c (compute_alignments): Likewise.
4073 * flow.c (update_life_info, update_life_info_in_dirty_blocks,
4074 delete_noop_moves, calculate_global_regs_live, allocate_bb_life_data,
4075 count_or_remove_death_notes): Likewise.
4076 * gcse.c (oprs_unchanged_p, record_last_reg_set_info,
4077 compute_hash_table, compute_kill_rd, compute_rd, compute_ae_kill,
4078 classic_gcse, compute_transp, cprop, compute_pre_data,
4079 compute_transpout, invalidate_nonnull_info,
4080 delete_null_pointer_checks_1, delete_null_pointer_checks,
4081 compute_code_hoist_vbeinout, hoist_code, compute_ld_motion_mems,
4082 compute_store_table, build_store_vectors, store_motion): Likewise.
4083 * global.c (global_conflicts, mark_elimination): Likewise.
4084 * graph.c (print_rtl_graph_with_bb): Likewise.
4085 * haifa-sched.c (sched_init): Likewise.
4086 * ifcvt.c (if_convert): Likewise.
4087 * lcm.c (compute_antinout_edge, compute_laterin, compute_insert_delete,
4088 compute_available, compute_nearerout, compute_rev_insert_delete,
4089 optimize_mode_switching): Likewise.
4090 * local-alloc.c (local_alloc, update_equiv_regs): Likewise.
4091 * predict.c (estimate_probability, note_prediction_to_br_prob,
4092 propagate_freq, counts_to_freqs, expensive_function_p,
4093 estimate_bb_frequencies): Likewise.
4094 * profile.c (instrument_edges, get_exec_counts,
4095 compute_branch_probabilities, compute_checksum, branch_prob,
4096 find_spanning_tree): Likewise.
4097 * recog.c (split_all_insns, peephole2_optimize): Likewise.
4098 * reg-stack.c (reg_to_stack, convert_regs_entry, convert_regs):
4100 * regclass.c (scan_one_insn, regclass): Likewise.
4101 * regmove.c (mark_flags_life_zones, regmove_optimize,
4102 record_stack_memrefs): Likewise.
4103 * regrename.c (regrename_optimize, copyprop_hardreg_forward): Likewise.
4104 * reload1.c (reload, reload_combine, fixup_abnormal_edges): Likewise.
4105 * resource.c (find_basic_block): Likewise.
4106 * sched-ebb.c (schedule_ebbs): Likewise.
4107 * sched-rgn.c (is_cfg_nonregular, build_control_flow,
4108 find_single_block_region, find_rgns, schedule_insns)
4109 * sibcall.c (optimize_sibling_and_tail_recursive_call)
4110 * ssa-ccp.c (optimize_unexecutable_edges,
4111 ssa_ccp_df_delete_unreachable_insns): Likewise.
4112 * ssa-dce.c (ssa_eliminate_dead_code): Likewise.
4113 * ssa.c (find_evaluations, compute_dominance_frontiers_1,
4114 rename_block, convert_to_ssa, compute_conservative_reg_partition,
4115 compute_coalesced_reg_partition, rename_equivalent_regs,
4116 convert_from_ssa): Likewise.
4117 * config/ia64/ia64.c (emit_predicate_relation_info, process_epilogue,
4118 process_for_unwind_directive): Likewise.
4120 * df.c (FOR_ALL_BBS): Removed.
4121 * gcse.c (struct null_pointer_info): Type of current_block field
4123 (struct reg_avail_info): Type of last_bb field changed.
4124 * config/ia64/ia64.c (block_num): Removed.
4125 (need_copy_state): Type changed.
4128 2002-05-23 Neil Booth <neil@daikokuya.demon.co.uk>
4130 * cppinit.c (mark_named_operators): Split out from init_builtins.
4131 (cpp_finish_options): Call it from here instead.
4133 2002-05-23 Jason Thorpe <thorpej@wasabisystems.com>
4135 * builtin-attrs.def: Update copyright years.
4136 (ATTR_NONNULL): New attribute identifier.
4137 (ATTR_NONNULL_1, ATTR_NONNULL_2, ATTR_NONNULL_3): New
4138 attribute tree lists.
4139 (DEF_FORMAT_ATTRIBUTE): Chain a nonnull attribute for the
4141 (ATTR_FORMAT_ARG_1, ATTR_FORMAT_ARG_2): Use...
4142 (DEF_FORMAT_ARG_ATTRIBUTE): ...this to generate format_arg
4143 attribute lists. Chain the appropriate nonnull attribute.
4144 * c-format.c (check_format_arg): Remove null format string
4146 * testsuite/gcc.dg/format/null-1.c: New test.
4148 2002-05-23 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
4150 * Makefile.in (ADAC): Define.
4152 (.SUFFIXES): Move before language makefile fragments.
4153 (STAGE2_FLAGS_TO_PASS): Use stage CC as ADAC.
4155 2002-05-23 Mark Mitchell <mark@codesourcery.com>
4157 * varasm.c (make_decl_rtl): Don't allow weak variables to be
4160 Thu May 23 19:43:41 CEST 2002 Jan Hubicka <jh@suse.cz>
4162 * cfg.c (dump_flow_info): Print results of
4163 maybe_hot/probably_never_executed predicates.
4164 * toplev.c (open_dump_file): Print function frequency.
4166 2002-05-23 David S. Miller <davem@redhat.com>
4168 * cse.c (approx_reg_cost_1, approx_reg_cost): Recode to not use
4171 2002-05-23 Jason Thorpe <thorpej@wasabisystems.com>
4173 * c-common.c (warn_nonnull): Declare.
4174 (c_common_attribute_table): Add "nonnull" attribute.
4175 (handle_nonnull_attribute, check_function_nonnull, nonnull_check_p,
4176 check_nonnull_arg, get_nonnull_operand, check_function_arguments,
4177 check_function_arguments_recurse): New functions.
4178 * c-common.h (warn_nonnull): Declare extern.
4179 (check_function_arguments, check_function_arguments_recurse): New
4181 * c-decl.c (c_decode_option): Add -Wnonnull option.
4182 * c-format.c (set_Wformat): Set warn_nonnull if enabling
4184 (format_check_context): New structure.
4185 (check_format_info_recurse): Remove recursion and rename to...
4186 (check_format_arg): ...this. Update comment.
4187 (check_format_info): Use check_function_arguments_recurse.
4188 * c-typeck.c (build_function_call): Call check_function_arguments
4189 instead of check_function_format.
4190 * doc/extend.texi: Document "nonnull" attribute.
4191 * doc/invoke.texi: Docuemnt -Wnonnull option.
4192 * testsuite/gcc.dg/nonnull-1.c: New test.
4193 * testsuite/gcc.dg/nonnull-2.c: New test.
4195 2002-05-23 David S. Miller <davem@redhat.com>
4197 * basic-block.h (CLEANUP_NO_INSN_DEL): Define it.
4198 * cfgcleanup.c (cleanup_cfg): If it is set do not
4199 attempt to delete trivially dead insns.
4200 * except.c (finish_eh_generation): Pass it to cleanup_cfg.
4201 * toplev.c (rest_of_compilation): Document non-trivial aspect
4202 the RTL before optimize_save_area_alloca is run.
4204 2002-05-23 Neil Booth <neil@daikokuya.demon.co.uk>
4206 * c-lex.c (indent_level): Remove.
4207 (cb_file_change, c_lex): Remove indent level handling.
4208 * c-lex.h (indent_level): Remove.
4209 * input.h (struct file_stack): Remove indent_level.
4210 * toplev.c (push_srcloc): Remove indent_level handling.
4212 2002-05-23 Jakub Jelinek <jakub@redhat.com>
4215 * config/i386/i386.md (sse_movdfcc, sse_movdfcc_eq): Use Y instead
4216 of x in constraints for clarity.
4217 (sse_mov?fcc split): abort if op2 == op3.
4218 (sse_movsfcc_const0_1, sse_movsfcc_const0_2, sse_movsfcc_const0_3,
4219 sse_movsfcc_const0_4): Add earlyclobber.
4220 (sse_movdfcc_const0_1, sse_movdfcc_const0_2, sse_movdfcc_const0_3,
4221 sse_movdfcc_const0_4): Likewise. Use DFmode, not SFmode.
4222 Use Y instead of x in constraints.
4224 2002-05-23 Richard Henderson <rth@redhat.com>
4226 * doc/extend.texi (C99 Thread-Local Edits): New subsection.
4227 (C++98 Thread-Local Edits): New subsection.
4229 * config/i386/i386.c, config/i386/i386.h: Tidy comments and whitespace.
4230 (ix86_arch): Set type to enum processor_type.
4232 * config/i386/i386.md (movsi_1, movdi_1_rex64): Use
4233 LEGITIMATE_PIC_OPERAND_P not SYMBOLIC_CONST.
4235 2002-05-23 Jakub Jelinek <jakub@redhat.com>
4237 * configure.in: Fix as version test for binutils 2.12.1 releases
4239 * configure: Rebuilt.
4241 2002-05-23 Richard Henderson <rth@redhat.com>
4243 * config/i386/i386.c (get_pic_label_name): New.
4244 (load_pic_register): Remove.
4245 (output_set_got): New.
4246 (ix86_expand_prologue): Use gen_set_got; mark insn REG_MAYBE_DEAD.
4247 * config/i386/i386.md (UNSPEC_SET_GOT): New.
4248 (UNSPECV_PROLOGUE_SET_GOT, UNSPECV_PROLOGUE_GET_PC): Remove.
4249 (prologue_set_got, prologue_get_pc): Remove.
4250 (set_got, set_got_nopic, set_got_deep, set_got_nodeep): New.
4251 (builtin_setjmp_receiver): Use gen_set_got.
4252 * config/i386/i386-protos.h: Update.
4254 Thu May 23 09:22:23 CEST 2002 Jan Hubicka <jh@suse.cz>
4256 * gcse.c (hash_expr): Do not use alias set for hashing.
4258 2002-05-22 Kevin Buettner <kevinb@redhat.com>
4260 * dbxout.c (dbxout_class_name_qualifiers): New function.
4261 (dbxout_symbol): Output class/struct qualifiers for a .stabs entry.
4263 2002-05-23 Neil Booth <neil@daikokuya.demon.co.uk>
4265 * cpperror.c (_cpp_begin_message): No special casing
4267 * cppinit.c (sanity_checks): s/DL_FATAL/DL_ICE/.
4268 (output_deps, cpp_handle_option, cpp_post_options): Use DL_ERROR.
4269 * cpplib.c (do_include_common): Use DL_ERROR.
4270 * cpplib.h (CPP_FATAL_LIMIT, CPP_FATAL_ERRORS, DL_FATAL): Remove.
4272 * fix-header.c (read_scan_file): Update.
4274 2002-05-22 Richard Henderson <rth@redhat.com>
4276 * config/i386/i386.c (ix86_expand_call): New function, extracted
4277 from md call patterns. Add pic_offset_table_rtx to
4278 CALL_INSN_FUNCTION_USAGE when needed.
4279 * config/i386/i386.md (call_pop, call): Use ix86_expand_call.
4280 (call_value_pop, call_value, untyped_call): Likewise.
4281 (call_exp, call_value_exp): Remove.
4282 * config/i386/i386-protos.h: Update.
4284 2002-05-22 Richard Henderson <rth@redhat.com>
4286 * varasm.c (default_section_type_flags): Check for VAR_DECL
4287 before using DECL_THREAD_LOCAL.
4289 2002-05-22 David Edelsohn <edelsohn@gnu.org>
4291 * config/rs6000/aix43.h (LINK_SPEC): Add PE initializer.
4292 (STARTFILE_SPEC): Delete PE crt0.o.
4293 * config/rs6000/aix51.h: Same.
4294 * config/rs6000/rs6000.c: Use TARGET_XCOFF, not OBJECT_FORMAT_COFF.
4295 * config/rs6000/rs6000.h (ASM_WEAKEN_DECL): Append [DS] to
4296 function descriptor symbol. Use RS6000_OUTPUT_BASENAME.
4297 (ASM_OUTPUT_DEF_FROM_DECLS): Use RS6000_OUTPUT_BASENAME.
4298 * config/rs6000/xcoff.h (ASM_OUTPUT_DEF): Define.
4300 2002-05-22 Richard Henderson <rth@redhat.com>
4302 * varasm.c (default_section_type_flags): Handle tls data and
4304 (default_unique_section): Handle tls sections.
4306 2002-05-23 Alan Modra <amodra@bigpond.net.au>
4308 * configure.in (CROSS): Define NATIVE_CROSS.
4309 * configure: Regenerate.
4310 * gcc.c (STARTFILE_PREFIX_SPEC): Define.
4311 (startfile_prefix_spec): New var.
4312 (static_specs): Add startfile_prefix_spec.
4313 (do_spec_2): Split out from..
4315 (main): Process startfile_prefix_spec.
4316 * config/rs6000/linux64.h (LINK_OS_LINUX_SPEC) Change name of
4318 (STARTFILE_PREFIX_SPEC): Define.
4319 (STARTFILE_LINUX_SPEC, ENDFILE_LINUX_SPEC): Rewrite without
4322 2002-05-22 Kazu Hirata <kazu@cs.umass.edu>
4324 * cpperror.c: Fix formatting.
4325 * cppexp.c: Likewise.
4326 * cppfiles.c: Likewise.
4327 * cpphash.c: Likewise.
4328 * cpphash.h: Likewise.
4329 * cppinit.c: Likewise.
4330 * cpplex.c: Likewise.
4331 * cpplib.c: Likewise.
4332 * cppmacro.c: Likewise.
4333 * cppmain.c: Likewise.
4334 * cppspec.c: Likewise.
4336 2002-05-22 Jakub Jelinek <jakub@redhat.com>
4338 * combine.c (force_to_mode): Use gen_int_mode.
4339 Don't clear CONST_INT bits outside of mode.
4341 2002-05-22 Richard Henderson <rth@redhat.com>
4343 * fixinc/inclhack.def (thread_keyword): Match __thread as last arg.
4344 * fixinc/fixincl.x, fixinc/tests/base/pthread.h: Rebuild.
4346 2002-05-22 Jakub Jelinek <jakub@redhat.com>
4349 * emit-rtl.c (widen_memory_access): Only call compare_tree_int
4350 if DECL_SIZE_UNIT is INTEGER_CST.
4352 2002-05-22 Richard Henderson <rth@redhat.com>
4354 * flow.c (life_analysis): Delete broken reg_label check.
4356 2002-05-22 Richard Henderson <rth@redhat.com>
4358 * fixinc/inclhack.def (thread_keyword): Allow as any prototype arg.
4359 * fixinc/fixincl.x, fixinc/tests/base/pthread.h: Rebuild.
4361 Wed May 22 18:39:57 2002 J"orn Rennecke <joern.rennecke@superh.com>
4363 * t-sh (LIB2FUNCS_EXTRA): Now embed-bb.c.
4364 (embed-bb.c): New rule.
4365 * t-sh64 (LIB2FUNCS_EXTRA): Don't change.
4366 * config/sh/embed_bb.c: Delete.
4368 Wed May 22 18:25:29 2002 J"orn Rennecke <joern.rennecke@superh.com>
4370 * c-common.c (cb_register_builtins): Don't indent '#' of #define.
4372 2002-05-22 Kazu Hirata <kazu@cs.umass.edu>
4374 * config/h8300/h8300.md (*andorqi3): New.
4376 2002-05-22 Neil Booth <neil@daikokuya.demon.co.uk>
4378 PR preprocessor/6517
4379 * Makefile.in: Update.
4380 * c-common.c (c_common_post_options): Add preprocessor
4381 errors to the error count.
4382 * c-lang.c (c_post_options): Kill.
4383 (LANG_HOOKS_POST_OPTIONS): Use c_common_post_options.
4384 * hooks.h: Add header guards.
4385 * langhooks-def.h: Include hooks.h.
4386 (LANG_HOOKS_POST_OPTIONS): Update.
4387 * langhooks.h (struct lang_hooks): Update post_options.
4388 * toplev.c (parse_options_and_default_flags): Update.
4390 * objc-lang.c (objc_post_options): Kill.
4391 (LANG_HOOKS_POST_OPTIONS): Use c_common_post_options.
4393 2002-05-21 Bruce Korb <bkorb@gnu.org>
4395 * fixinc/tests/base/pthread.h(THREAD_KEYWORD_CHECK): add fix check
4396 * fixinc/inclhack.def(thread_keyword): use c_fix = format.
4397 * fixinc/fixincl.x: regen.
4399 2002-05-21 Kazu Hirata <kazu@cs.umass.edu>
4401 * cfgbuild.c: Fix formatting.
4403 * cfgcleanup.c: Likewise.
4404 * cfglayout.c: Likewise.
4405 * cfgloop.c: Likewise.
4406 * cfgrtl.c: Likewise.
4408 2002-05-21 Richard Henderson <rth@redhat.com>
4410 * c-common.h (enum rid): Add RID_THREAD.
4411 * c-decl.c (start_decl): Do not set DECL_COMMON for tls variables.
4412 (grokdeclarator): Grok __thread.
4413 * c-parse.in (reswords): Add __thread.
4414 (rid_to_yy): Add RID_THREAD.
4416 * tree.h (DECL_THREAD_LOCAL): New.
4417 (struct tree_decl): Add thread_local_flag.
4418 * print-tree.c (print_node): Dump DECL_THREAD_LOCAL.
4419 * tree.c (staticp): TLS variables are not static.
4421 * target-def.h (TARGET_HAVE_TLS): New.
4422 * target.h (have_tls): New.
4423 * output.h (SECTION_TLS): New.
4424 * varasm.c (assemble_variable): TLS variables can't be common for now.
4425 (default_section_type_flags): Handle .tdata and .tbss.
4426 (default_elf_asm_named_section): Handle SECTION_TLS.
4427 (categorize_decl_for_section): Handle DECL_THREAD_LOCAL.
4429 * flags.h (flag_tls_default): Declare.
4430 * toplev.c (flag_tls_default): Define.
4431 (display_help): Display help for it.
4432 (decode_f_option): Set it.
4434 * doc/extend.texi (Thread-Local): New node describing language-level
4435 thread-local storage.
4436 * doc/invoke.texi (-ftls-model): Document.
4438 * fixinc/inclhack.def (thread_keyword): New.
4439 * fixinc/fixincl.x: Rebuild.
4441 2002-05-21 Jeffrey A Law <law@redhat.com>
4443 * optabs.c (expand_binop): For double-word integer multiplies,
4444 do not compute intermediate results into something that is
4445 not a register (such as a SUBREG or MEM).
4447 * i386.c (ix86_sched_reorder_ppro): Fix typo/thinko.
4448 (ix86_sched_reorder): Make sure to initialize scheduling
4449 data even when there's only one insn in the ready queue.
4451 2002-05-21 Vladimir Makarov <vmakarov@redhat.com>
4453 * genautomata.c (reserv_sets_hash_value): Fix a typo.
4455 2002-05-21 Vladimir Makarov <vmakarov@redhat.com>
4457 * genautomata.c (reserv_sets_hash_value): Define hash_value as
4458 set_el_t. Transform the hash value into unsigned.
4459 (output_cycle_reservs): Fix bug with output of repeated `nothing'.
4460 (transform_3): Add code to process `(A,B)+(D,E)'.
4462 2002-05-21 NIIBE Yutaka <gniibe@m17n.org>
4464 * reload1.c (do_output_reload): Run delete_output_reload
4467 2002-05-21 Roger Sayle <roger@eyesopen.com>
4470 * expr.c (STORE_MAX_PIECES): New macro to avoid immediate constants
4471 larger than INTEGER_CST. (store_by_pieces_1): Use it here...
4472 (can_store_by_pieces): ... and here to limit the largest mode used.
4473 Add a comment to document this function.
4475 2002-05-21 Richard Henderson <rth@redhat.com>
4477 * flow.c (life_analysis): Fix test for deleted label.
4479 2002-05-21 Neil Booth <neil@daikokuya.demon.co.uk>
4481 * doc/tm.texi: Fix typo.
4483 2002-05-21 Zack Weinberg <zack@codesourcery.com>
4485 * c-common.c (c_common_init): Set options->unsigned_char from
4487 (cb_register_builtins): Define __STRICT_ANSI__ and
4488 __CHAR_UNSIGNED__ here...
4489 * cppinit.c (init_builtins): Not here.
4490 (cpp_create_reader): unsigned_char option defaults to 0, not
4491 !DEFAULT_SIGNED_CHAR.
4492 (COMMAND_LINE_OPTIONS, cpp_handle_option): Lose -fsigned-char
4493 and -funsigned-char.
4495 * cpphash.h (struct spec_nodes): Kill n__STRICT_ANSI__.
4496 * cpphash.c (_cpp_init_hashtable): Don't set it.
4497 * cppmacro.c (builtin_macro) [BT_STDC]: Use the language setting
4498 directly. Clarify comment.
4500 2002-05-21 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
4502 * bb-reorder.c (make_reorder_chain_1): Use prev_bb/next_bb to get to
4503 neighbouring basic blocks. Use ENTRY_BLOCK_PTR->next_bb instead of
4504 BASIC_BLOCK (0). Use EXIT_BLOCK_PTR->prev_bb instead of
4505 BASIC_BLOCK (n_basic_blocks - 1).
4506 * cfganal.c (can_fallthru, flow_call_edges_add,
4507 flow_preorder_transversal_compute): Too.
4508 * cfgbuild.c (make_edges, find_basic_blocks, find_many_sub_basic_blocks,
4509 find_sub_basic_blocks): Too.
4510 * cfgcleanup.c (try_simplify_condjump, try_optimize_cfg): Too.
4511 * cfglayout.c (skip_insns_after_block, fixup_reorder_chain,
4512 fixup_fallthru_exit_predecessor, cfg_layout_redirect_edge): Too.
4513 * cfgrtl.c (tidy_fallthru_edges, verify_flow_info): Too.
4514 * combine.c (this_basic_block): Type changed to basic_block.
4515 (combine_instructions, set_nonzero_bits_and_sign_copies, try_combine,
4516 nonzero_bits, num_sign_bit_copies, get_last_value_validate,
4517 get_last_value, distribute_notes, distribute_links): Too.
4518 * final.c (compute_alignments): Too.
4519 * flow.c (regno_uninitialized, regno_clobbered_at_setjmp): Too.
4520 * function.c (thread_prologue_and_epilogue_insns): Too.
4521 * gcse.c (compute_code_hoist_vbeinout): Too.
4522 * global.c (build_insn_chain): Too.
4523 * ifcvt.c (find_if_block, find_cond_trap): Too.
4524 * predict.c (last_basic_block_p, note_prediction_to_br_prob): Too.
4525 * regmove.c (regmove_optimize): Too.
4526 * resource.c (find_basic_block): Too.
4527 * sched-ebb.c (schedule_ebbs): Too.
4528 * ssa-dce.c (find_control_dependence, find_pdom): Too.
4530 2002-05-21 Andreas Jaeger <aj@suse.de>
4532 * cppinit.c (sanity_checks): Avoid printf mismatch warnings.
4534 2002-05-21 Richard Henderson <rth@redhat.com>
4536 * reg-stack.c (swap_rtx_condition, subst_stack_regs_pat): Use
4537 unspec names, not numbers.
4539 2002-05-21 Joseph S. Myers <jsm28@cam.ac.uk>
4541 * doc/sourcebuild.texi: Mention snapshot-README and
4542 snapshot-index.html as needing updating for new front ends.
4544 2002-05-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4546 * rtl.h (SUBREG_PROMOTED_UNSIGNED_SET): Avoid warnings when
4547 disabling checking, and avoid multiple evaluation of RTX.
4549 2002-05-21 Richard Earnshaw <rearnsha@arm.com>
4551 * bitmap.c (bitmap_find_bit): Return early if we have the correct
4554 Tue May 21 10:51:54 CEST 2002 Jan Hubicka <jh@suse.cz>
4556 * profile.c (gen_edge_profiler): Set alias set before the memory is
4559 2002-05-20 David S. Miller <davem@redhat.com>
4561 * cselib.c (max_value_regs): New.
4562 (cselib_lookup, cselib_invalidate_regno): Initialize it when
4563 adding new entries to the REG_VALUES table and we are dealing with
4565 (clear_table): Initialize it.
4566 (cselib_invalidate_regno): Use it to determine which hard
4567 registers to scan when mode is not VOIDmode.
4569 2002-05-20 Duraid Madina <duraid@fl.net.au>
4571 * tradcpp.c (fixup_newlines): Use old-style function header.
4573 2002-05-20 Krister Walfridsson <cato@df.lth.se>
4575 * reload1.c (reload_cse_simplify): Fix typo in rtx code check.
4577 2002-05-20 H.J. Lu (hjl@gnu.org)
4579 Base on suggestions from Zhang Fuxin <fxzhang@ict.ac.cn>:
4581 * config/mips/mips.h (DFMODE_NAN): Defined.
4582 (SFMODE_NAN): Likewise.
4584 2002-05-20 Dale Johannesen <dalej@apple.com>
4586 * combine.c (cant_combine_insn_p): Back out my
4589 2002-05-20 Kazu Hirata <kazu@cs.umass.edu>
4591 * params.c: Fix formatting.
4592 * params.h: Likewise.
4593 * predict.c: Likewise.
4594 * prefix.c: Likewise.
4595 * print-rtl.c: Likewise.
4596 * print-tree.c: Likewise.
4597 * profile.c: Likewise.
4599 2002-05-20 H.J. Lu (hjl@gnu.org)
4601 * gcc/config/mips/linux.h (SDB_DEBUGGING_INFO): Undefine.
4603 2002-05-20 Nick Clifton <nickc@cambridge.redhat.com>
4605 * config/arm/arm-wince-pe.h (ASM_SPEC): Pass -mcpu and -march
4606 switches straight on to the assembler, do not abbreviate them.
4607 * config/arm/elf.h (ASM_SPEC): As above.
4608 * config/arm/semi.h (ASM_SPEC): As above.
4609 * config/arm/unknown-elf-oabi.h (ASM_SPEC): As above.
4610 * config/arm/xscale-coff.h (SUBTARGET_ASM_SPEC): Pass
4611 -mcpu=xscale on to the assembler by default.
4612 * config/arm/xscale-elf.h (SUBTARGET_ASM_SPEC): As above.
4614 2002-05-20 Richard Henderson <rth@redhat.com>
4616 * cse.c (canon_hash): Reorder do_not_record test. Always
4617 allow pic_offset_table_rtx.
4619 2002-05-19 Toon Moene <toon@moene.indiv.nluug.nl>
4621 * optabs.c (expand_cmplxdiv_wide): Use complex_part_zero_p.
4622 (expand_binop): Ditto (3 times).
4624 2002-05-19 Mark Mitchell <mitchell@doubledemon.codesourcery.com>
4626 * Makefile.in (distclean): Remove QMTest stuff.
4627 (QMTEST_PATH): New variable.
4628 (QMTESTFLAGS): Likewise.
4629 (QMTESTRUNFLAGS): Likewise.
4631 (QMTEST_GPP_TESTS): Likewise.
4632 (QMTEST_DIR): Likewise.
4633 (QMTEST_DIR/context): New target.
4634 (qmtest-g++): Likeise.
4635 (qmtest-gui): Likewise.
4636 (QMTEST_DIR/gpp-expected.qmr): Likewise.
4638 2002-05-19 Aldy Hernandez <aldyh@redhat.com>
4640 * config/rs6000/rs6000.h (FUNCTION_VALUE): Only return vectors in
4641 an altivec register if TARGET_ALTIVEC.
4643 * config/rs600/rs6000.c (rs6000_emit_move): Change VECTOR_MODE_P
4644 to ALTIVEC_VECTOR_MODE.
4645 (rs6000_va_arg): Only vectors of type AltiVec are 16 byte aligned.
4646 (rs6000_va_arg): Vectors may go in registers if they are not
4649 2002-05-19 Kazu Hirata <kazu@cs.umass.edu>
4651 * protoize.c: Fix formatting.
4653 2002-05-19 Richard Henderson <rth@redhat.com>
4655 * gensupport.c (init_include_reader): Merge into ...
4656 (process_include): ... here. Simplify composite path creation.
4657 Plug memory leaks. Fix file/line number tracking. Do not
4658 process_define_cond_exec. Return void.
4659 (process_rtx): Don't check process_include return value.
4661 2002-05-20 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
4663 * basic_block.h (struct basic_block_def): Added prev_bb and next_bb
4665 (FOR_BB_BETWEEN, FOR_ALL_BB, FOR_ALL_BB_REVERSE): New macros for
4666 traversing basic block chain.
4667 (create_basic_block_structure, create_basic_block): Declaration changed.
4668 (link_block, unlink_block): Declare.
4669 * cfg.c (entry_exit_blocks): Initialize new fields.
4670 (link_block, unlink_block): New.
4671 (expunge_block_nocompact): Unlink basic block.
4672 (dump_flow_info): Print prev_bb/next_bb fields.
4673 * cfgbuild.c (find_basic_blocks_1, find_basic_blocks): Modified.
4674 * cfgcleanup.c (merge_blocks_move_predecessor_nojumps): Modified.
4675 * cfglayout.c (fixup_reorder_chain, cfg_layout_duplicate_bb): Modified.
4676 * cfgrtl.c (create_basic_block_structure, create_basic_block,
4677 split_block, force_nonfallthru_and_redirect, split_edge): Modified.
4678 (verify_flow_info): Check that list agrees with numbering.
4680 2002-05-19 Neil Booth <neil@daikokuya.demon.co.uk>
4682 * c-common.c (preprocessing_asm): New macro.
4683 * c-lex.h (builtin_define, builtin_assert): Use pfile.
4687 * alpha.h (CPLUSPLUS_CPP_SPEC): Remove.
4688 (CPP_SPEC): Simplify.
4689 (TARGET_CPU_CPP_BUILTINS): Update.
4690 * freebsd.h (TARGET_OS_CPP_BUILTINS): New.
4691 (CPP_SPEC): Simplify.
4692 * linux.h (CPLUSPLUS_CPP_SPEC): Remove.
4693 (TARGET_OS_CPP_BUILTINS): Update.
4694 * osf.h (CPP_XFLOAT_SPEC): Kill.
4695 (TARGET_OS_CPP_BUILTINS): Update.
4696 (CPP_SUBTARGET_SPEC, SUBTARGET_EXTRA_SPECS): Simplify.
4697 * osf5.h (CPP_XFLOAT_SPEC): Kill.
4698 * vms.h (CPP_SUBTARGET_SPEC): Kill.
4699 (TARGET_OS_CPP_BUILTINS): Update.
4701 2002-05-19 Richard Henderson <rth@redhat.com>
4703 * varasm.c (default_binds_local_p): Fix typo.
4705 2002-05-19 Marek Michalkiewicz <marekm@amelek.gda.pl>
4707 * config/avr/avr.c (machine_dependent_reorg): Sign extend the
4708 CONST_INT operand to the correct mode after adding 1 to it.
4710 2002-05-19 Mark Mitchell <mark@codesourcery.com>
4712 * config.gcc (powerpc-wrs-windiss*): New target.
4714 2002-05-19 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
4716 * config/rs6000/rs6000.md (ashrdi3_no_power): New.
4719 2002-05-18 Mark Mitchell <mark@codesourcery.com>
4721 * configure.in (AC_CHECK_FUNCS): Add checks for scandir and
4723 * config.in: Regenerated.
4724 * configure: Regenerated.
4726 2002-05-19 Richard Henderson <rth@redhat.com>
4728 * target-def.h (TARGET_BINDS_LOCAL_P): New.
4729 * target.h (struct gcc_target): Move boolean fields to the end.
4731 * varasm.c (default_binds_local_p): New.
4732 * output.h: Declare it.
4734 * config/alpha/alpha.c (alpha_encode_section_info): Use the new hook.
4735 * config/cris/cris.c (cris_encode_section_info): Likewise.
4736 * config/i386/i386.c (i386_encode_section_info): Likewise.
4737 * config/ia64/ia64.c (ia64_encode_section_info): Likewise.
4738 * config/sh/sh.c (sh_encode_section_info): Likewise.
4740 * doc/tm.texi (TARGET_IN_SMALL_DATA_P): New.
4741 (TARGET_BINDS_LOCAL_P): New.
4743 2002-05-19 Richard Henderson <rth@redhat.com>
4745 * system.h (BLOCK_PROFILER, BLOCK_PROFILER_CODE,
4746 FUNCTION_BLOCK_PROFILER, FUNCTION_BLOCK_PROFILER_EXIT,
4747 MACHINE_STATE_SAVE, MACHINE_STATE_RESTORE): Poison.
4749 * toplev.c (display_help): Kill -a -ax help.
4751 * config/1750a/1750a.h, config/alpha/alpha.h,
4752 config/clipper/clipper.h, config/dsp16xx/dsp16xx.h,
4753 config/h8300/h8300.h, config/i960/i960.h, config/m68k/tower-as.h,
4754 config/m88k/m88k.h, config/vax/vax.h, config/we32k/we32k.h:
4755 (FUNCTION_BLOCK_PROFILER, BLOCK_PROFILER): Kill.
4757 * libgcc2.c [L_bb] (BLOCK_PROFILER_CODE): Kill.
4758 * config/m68k/sun3.h (BLOCK_PROFILER_CODE): Kill.
4760 * config/i386/i386-protos.h (ix86_output_block_profiler): Kill.
4761 (ix86_output_function_block_profiler): Kill.
4762 * config/m68hc11/m68hc11.c (m68hc11_block_profiler): Kill.
4763 (m68hc11_function_block_profiler): Kill.
4764 * config/m68hc11/m68hc11-protos.h: Update.
4765 * config/m88k/m88k.c (output_block_profiler): Kill.
4766 (output_function_block_profiler): Kill.
4767 * config/m88k/m88k-protos.h: Update.
4769 2002-05-19 Richard Henderson <rth@redhat.com>
4771 * system.h (STRIP_NAME_ENCODING): Poison it.
4772 * output.h (STRIP_NAME_ENCODING): Remove.
4773 (default_strip_name_encoding): Declare.
4774 * target-def.h (TARGET_STRIP_NAME_ENCODING): New.
4775 * target.h (strip_name_encoding): New.
4776 * varasm.c (default_strip_name_encoding): New.
4778 * dwarf2asm.c, varasm.c, config/darwin.c, config/darwin.h,
4779 config/alpha/alpha.c, config/arm/pe.c, config/avr/avr.c,
4780 config/cris/cris.c, config/i386/cygwin.h, config/i386/interix.c,
4781 config/i386/winnt.c, config/m32r/m32r.h, config/mcore/mcore-elf.h,
4782 config/mcore/mcore-pe.h, config/mcore/mcore.c, config/mcore/mcore.h,
4783 config/mips/mips.c, config/mn10200/mn10200.h, config/mn10300/mn10300.h,
4784 config/pa/pa.c, config/pa/pa.h, config/pa/som.h,
4785 config/rs6000/rs6000.c, config/rs6000/sysv4.h, config/rs6000/xcoff.h,
4786 config/v850/v850.h: Use the hook, not the macro.
4788 * config/darwin-protos.h, config/darwin.c, config/darwin.h,
4789 config/alpha/alpha.c, config/alpha/alpha.h, config/h8300/h8300.c,
4790 config/h8300/h8300.h, config/i386/cygwin.h, config/i386/i386-interix.h,
4791 config/i386/i386-protos.h, config/i386/win32.h, config/i386/winnt.c,
4792 config/ia64/ia64.c, config/ia64/ia64.h, config/m32r/m32r.c,
4793 config/m32r/m32r.h, config/mcore/mcore.c, config/mcore/mcore.h,
4794 config/pa/pa.c, config/rs6000/rs6000.c, config/rs6000/sysv4.h,
4795 config/rs6000/xcoff.h, config/sh/sh.c, config/sh/sh.h,
4796 config/v850/v850.c, config/v850/v850.h:
4797 Move STRIP_NAME_ENCODING to out-of-line function and add
4798 TARGET_STRIP_NAME_ENCODING.
4800 * config/arm/arm.c, config/arm/arm.h, config/mmix/mmix-protos.h,
4801 config/mmix/mmix.c, config/mmix/mmix.h: Replace STRIP_NAME_ENCODING
4802 with TARGET_STRIP_NAME_ENCODING referencing existing function;
4803 make function static.
4805 * xcoffout.c: Include target.h
4806 * Makefile.in (xcoffout.o): Update.
4808 * config/avr/avr.c (avr_encode_section_info): Correct prototype.
4809 * config/avr/avr.h (STRIP_NAME_ENCODING): Remove.
4810 * config/rs6000/rs6000.c (rs6000_xcoff_unique_section): Mark
4811 reloc argument unused.
4812 * config/sh/sh.c (TARGET_ENCODE_SECTION_INFO): New.
4814 * doc/tm.texi (TARGET_STRIP_NAME_ENCODING): Update from previous
4815 STRIP_NAME_ENCODING docs.
4817 2002-05-19 Andreas Jaeger <aj@suse.de>
4819 * gengenrtl.c: Add prototype for excluded_rtx.
4821 * real.h: Add prototype for exact_real_truncate.
4823 2002-05-18 Richard Henderson <rth@redhat.com>
4825 * system.h (ENCODE_SECTION_INFO): Poison it.
4826 * target-def.h (TARGET_ENCODE_SECTION_INFO): New.
4827 * target.h (encode_section_info): New.
4828 * varasm.c (make_decl_rtl, output_constant_def): Use it.
4829 * hooks.c (hook_tree_int_void): New.
4830 * hooks.h: Declare it.
4832 * config/darwin.h, config/alpha/alpha-protos.h, config/alpha/alpha.c,
4833 config/alpha/alpha.h, config/arm/pe.h, config/avr/avr-protos.h,
4834 config/avr/avr.c, config/avr/avr.h, config/c4x/c4x-protos.h,
4835 config/c4x/c4x.c, config/c4x/c4x.h, config/cris/cris-protos.h,
4836 config/cris/cris.c, config/cris/cris.h, config/i386/cygwin.h,
4837 config/i386/win32.h, config/ia64/ia64-protos.h, config/ia64/ia64.c,
4838 config/ia64/ia64.h, config/m32r/m32r-protos.h, config/m32r/m32r.c,
4839 config/m32r/m32r.h, config/m68hc11/m68hc11-protos.h,
4840 config/m68hc11/m68hc11.c, config/m68hc11/m68hc11.h,
4841 config/mcore/mcore-protos.h, config/mcore/mcore.c,
4842 config/mcore/mcore.h, config/mmix/mmix-protos.h, config/mmix/mmix.c,
4843 config/mmix/mmix.h, config/rs6000/rs6000-protos.h,
4844 config/rs6000/sysv4.h, config/stormy16/stormy16-protos.h,
4845 config/stormy16/stormy16.c, config/stormy16/stormy16.h:
4846 Replace ENCODE_SECTION_INFO with TARGET_ENCODE_SECTION_INFO
4847 referencing existing function. Make function static.
4849 * config/a29k/a29k.c, config/a29k/a29k.h, config/arc/arc.c,
4850 config/arc/arc.h, config/arm/arm.c, config/arm/arm.h,
4851 config/h8300/h8300.c, config/h8300/h8300.h, config/i370/i370.c,
4852 config/i370/i370.h, config/i386/i386-interix.h, config/i386/i386.c,
4853 config/i386/i386.h, config/i386/interix.c, config/m88k/m88k.c,
4854 config/m88k/m88k.h, config/mips/mips.c, config/mips/mips.h,
4855 config/ns32k/ns32k.c, config/ns32k/ns32k.h, config/pa/pa.c,
4856 config/pa/pa.h, config/romp/romp.c, config/romp/romp.h,
4857 config/rs6000/linux64.h, config/rs6000/xcoff.h, config/s390/s390.c,
4858 config/s390/s390.h, config/sh/sh.c, config/sh/sh.h,
4859 config/sparc/sparc.c, config/sparc/sparc.h, config/v850/v850.c,
4860 config/v850/v850.h, config/vax/vax.c, config/vax/vms.h,
4861 config/xtensa/xtensa.c, config/xtensa/xtensa.h:
4862 Move ENCODE_SECTION_INFO to out-of-line function and add
4863 TARGET_ENCODE_SECTION_INFO.
4865 * config/darwin.h (ASM_DECLARE_FUNCTION_NAME): Use hook, not macro.
4866 (ASM_DECLARE_OBJECT_NAME, ASM_OUTPUT_ALIGNED_DECL_LOCAL): Likewise.
4868 * config/arm/pe.h (EXTRA_SECTIONS, EXTRA_SECTION_FUNCTIONS): Rename
4870 (switch_to_section): Replace in_rdata case with in_readonly_data.
4872 * config/h8300/h8300.c (h8300_encode_label): Make static.
4873 * config/h8300/h8300-protos.h: Update.
4875 * config/rs6000/rs6000.c (rs6000_elf_encode_section_info): Rename
4876 from rs6000_encode_section_info; make static.
4877 (rs6000_xcoff_encode_section_info): New.
4879 * config/v850/v850.c (v850_encode_data_area): Make static.
4880 * config/v850/v850-protos.h: Update.
4882 * config/vax/vax.c: Include flags.h.
4883 (vms_select_section): Fix typo.
4885 * doc/tm.texi (TARGET_ENCODE_SECTION_INFO): Update from previous
4886 ENCODE_SECTION_INFO docs.
4888 2002-05-18 Richard Henderson <rth@redhat.com>
4890 * config/darwin.h (DARWIN_REGISTER_TARGET_PRAGMAS): Rename from
4891 REGISTER_TARGET_PRAGMAS.
4892 * config/rs6000/darwin.h (REGISTER_TARGET_PRAGMAS): Redefine.
4894 * config.gcc: Do not use rs6000-c.c on powerpc-darwin.
4896 2002-05-18 Richard Henderson <rth@redhat.com>
4898 * system.h (SELECT_RTX_SECTION): Poison.
4899 * target-def.h (TARGET_ASM_SELECT_RTX_SECTION): New.
4900 * target.h (select_rtx_section): New.
4901 * varasm.c (output_constant_pool): Use it.
4902 (default_select_rtx_section, default_elf_select_rtx_section): New.
4903 * output.h: Declare them.
4905 * config/darwin.h (SELECT_RTX_SECTION): Move ...
4906 * config/darwin.c (machopic_select_rtx_section): ... here.
4907 * config/darwin-protos.h: Update.
4909 * config/nextstep.h (SELECT_RTX_SECTION): Move ...
4910 * config/nextstep.c (machopic_select_rtx_section): ... here.
4911 (nextstep_select_section): Rename variable to avoid macro clash.
4912 * config/nextstep-protos.h: Update.
4914 * config/elfos.h, config/svr3.h, config/arm/aof.h, config/c4x/c4x.h,
4915 config/i386/dgux.h, config/i386/osfrose.h, config/i386/sco5.h,
4916 config/i386/svr3gas.h, config/i860/paragon.h, config/ia64/aix.h,
4917 config/m32r/m32r.h, config/m68k/dpx2.h, config/m68k/lynx.h,
4918 config/m68k/m68k.h, config/m68k/tower-as.h, config/m88k/dgux.h,
4919 config/mcore/mcore-pe.h, config/mips/mips.h, config/mmix/mmix.h,
4920 config/pa/pa-linux.h, config/pa/pa.h, config/romp/romp.h,
4921 config/rs6000/lynx.h, config/rs6000/sysv4.h, config/s390/linux.h,
4922 config/sparc/sysv4.h, config/xtensa/elf.h, config/xtensa/linux.h
4923 (SELECT_RTX_SECTION): Remove.
4925 * config/darwin.h, config/elfos.h, config/nextstep.h,
4926 config/ia64/aix.h, config/ia64/sysv4.h, config/alpha/alpha.c,
4927 config/mips/mips.c, config/romp/romp.c, config/rs6000/sysv4.h,
4928 config/rs6000/xcoff.h, config/s390/s390.c, config/sparc/aout.h,
4929 config/sparc/lynx.h, config/xtensa/xtensa.c
4930 (TARGET_ASM_SELECT_RTX_SECTION): New.
4932 * config/alpha/elf.h (SELECT_RTX_SECTION): Move ...
4933 * config/alpha/alpha.c (alpha_elf_select_rtx_section): ... here.
4934 * config/ia64/sysv4.h (SELECT_RTX_SECTION): Move ...
4935 * config/ia64/ia64.c (ia64_select_rtx_section): ... here.
4936 (ia64_aix_select_rtx_section): New.
4937 * config/mips/iris6.h (READONLY_DATA_SECTION_ASM_OP): Undef before
4939 * config/mips/mips.c (mips_select_rtx_section): Make static.
4940 Support ELF SHF_MERGE features.
4941 * config/mips/mips-protos.h: Update.
4942 * config/rs6000/xcoff.h (SELECT_RTX_SECTION): Move ...
4943 * config/rs6000/rs6000.c (rs6000_xcoff_select_rtx_section): ... here.
4944 (rs6000_elf_select_rtx_section): Rename from rs6000_select_rtx_section;
4945 make static, fall back to default_elf_select_rtx_section.
4946 * config/rs6000/rs6000-protos.h: Update.
4947 * config/sparc/sparc.h (SELECT_RTX_SECTION): Move ...
4948 * config/sparc/sparc.c (sparc_aout_select_rtx_section): ... here.
4949 * config/sparc/sunos4.h (on_exit): Declare only if IN_LIBGCC2.
4950 * config/romp/romp.c (romp_select_rtx_section): New.
4951 * config/s390/s390.c (s390_select_rtx_section): New.
4952 * config/xtensa/xtensa.c: Include output.h. Shuffle local function
4953 declarations before target macro definition.
4954 (xtensa_emit_call): Use static buffer.
4955 (xtensa_select_rtx_section): New.
4956 * config/xtensa/xtensa.h (MAX_INT_TYPE_SIZE): Remove.
4957 (IMPLICIT_FIX_EXPR, EASY_DIV_EXPR): Remove.
4958 (ASM_OUTPUT_POOL_PROLOGUE): Update call to resolve_unique_section.
4960 * doc/tm.texi (TARGET_ASM_SELECT_RTX_SECTION): Update from
4961 SELECT_RTX_SECTION docs.
4963 Sun May 19 00:24:23 CEST 2002 Jan Hubicka <jh@suse.cz>
4965 * i386.md (movsi/movdi): Fix template.
4966 (sse2 patterns): Set attributes consistently.
4968 * i386.md (pushqi2, ashrqi_*): Fix constraint.
4970 2002-05-18 Toon Moene <toon@moene.indiv.nluug.nl>
4972 * optabs.c (complex_part_zero_p): New.
4973 * (expand_cmplxdiv_straight): Use it.
4974 * (expand_cmplxdiv_wide): Ditto.
4975 * (expand_binop): Ditto.
4977 2002-05-18 Richard Henderson <rth@redhat.com>
4979 * final.c (HAVE_READONLY_DATA_SECTION): New.
4980 (shorten_branches): Use it instead of ifdefs.
4981 * varasm.c (enum in_section): Add in_readonly_data.
4982 (text_section, data_section): Tidy.
4983 (readonly_data_section): Use READONLY_DATA_SECTION_ASM_OP if present.
4985 * config/darwin.h, config/nextstep.h, config/h8300/elf.h,
4986 config/i860/paragon.h, config/m68k/dpx2.h, config/m68k/hp320.h
4987 (READONLY_DATA_SECTION): Don't undef.
4989 * config/alpha/unicosmk.h, config/h8300/elf.h, config/i386/aix386ng.h,
4990 config/i860/paragon.h, config/m68k/dpx2.h, config/m68k/hp320.h,
4991 config/rs6000/lynx.h (READONLY_DATA_SECTION_ASM_OP): Undef.
4993 * config/elfos.h, config/svr3.h, config/alpha/alpha-interix.h,
4994 config/alpha/elf.h, config/c4x/c4x.h, config/i386/i386-interix.h,
4995 config/i386/sco5.h, config/i386/svr3gas.h, config/i860/sysv3.h,
4996 config/m88k/m88k.h, config/pa/pa64-hpux.h (USE_CONST_SECTION): Remove.
4998 * config/elfos.h, config/netware.h, config/alpha/alpha-interix.h,
4999 config/alpha/elf.h, config/alpha/vms.h, config/arc/arc.h,
5000 config/arm/coff.h, config/c4x/c4x.h, config/dsp16xx/dsp16xx.h,
5001 config/i386/dgux.h, config/i386/i386-interix.h, config/i386/sco5.h,
5002 config/ia64/hpux.h, config/m32r/m32r.h, config/m68k/tower-as.h,
5003 config/m88k/m88k.h, config/mcore/mcore-pe.h, config/mips/iris6.h,
5004 config/mips/mips.h, config/mmix/mmix.h, config/pa/pa64-hpux.h,
5005 config/sparc/sysv4.h (READONLY_DATA_SECTION_ASM_OP): Rename from
5006 CONST_SECTION_ASM_OP/READONLY_SECTION_ASM_OP/RDATA_SECTION_ASM_OP.
5008 * config/elfos.h, config/netware.h, config/1750a/1750a.h,
5009 config/a29k/a29k.h, config/alpha/alpha-interix.h, config/alpha/alpha.h,
5010 config/arm/coff.h, config/h8300/h8300.h, config/i386/aix386ng.h,
5011 config/i386/i386-interix.h, config/i386/osfrose.h, config/mmix/mmix.h,
5012 config/pa/pa64-hpux.h, config/sparc/litecoff.h
5013 (EXTRA_SECTIONS, EXTRA_SECTION_FUNCTIONS): Remove.
5015 * config/elfos.h, config/netware.h, config/svr3.h,
5016 config/alpha/alpha-interix.h, config/alpha/alpha.h, config/alpha/elf.h,
5017 config/arm/coff.h, config/c4x/c4x.h, config/dsp16xx/dsp16xx.h,
5018 config/h8300/h8300.h, config/i386/i386-interix.h,
5019 config/i386/osfrose.h, config/i386/svr3gas.h, config/mmix/mmix.h,
5020 config/pa/pa64-hpux.h (READONLY_DATA_SECTION): Remove.
5022 * config/elfos.h, config/netware.h, config/svr3.h,
5023 config/alpha/alpha-interix.h, config/alpha/alpha.h, config/alpha/elf.h,
5024 config/c4x/c4x.h, config/i386/aix386ng.h, config/i386/i386-interix.h,
5025 config/i386/sco5.h, config/i386/svr3gas.h, config/mmix/mmix.h,
5026 config/pa/pa64-hpux.h (CONST_SECTION_FUNCTION): Remove.
5028 * config/lynx.h, config/svr3.h, config/alpha/elf.h, config/alpha/vms.h,
5029 config/c4x/c4x.h, config/dsp16xx/dsp16xx.h, config/i386/sco5.h,
5030 config/i386/svr3gas.h, config/i860/sysv3.h, config/i860/sysv4.h,
5031 config/ia64/sysv4.h, config/m32r/m32r.h, config/m88k/m88k.h,
5032 config/mcore/mcore-elf.h, config/mcore/mcore-pe.h, config/mips/elf.h,
5033 config/mips/elf64.h, config/mips/iris6.h, config/mips/linux.h,
5034 config/mips/mips.h, config/mips/rtems64.h, config/mips/vxworks.h,
5035 config/rs6000/sysv4.h, config/v850/v850.h
5036 (EXTRA_SECTIONS): Remove in_const/in_rdata.
5037 (EXTRA_SECTION_FUNCTIONS): Remove accompanying function.
5039 * config/svr3.h, config/c4x/c4x.h, config/i386/dgux.h,
5040 config/i386/sco5.h, config/i386/svr3gas.h, config/ia64/aix.h,
5041 config/m88k/dgux.h, config/mcore/mcore-pe.h, config/mmix/mmix.h,
5042 config/sparc/sysv4.h (SELECT_RTX_SECTION): Use readonly_data_section.
5043 * config/alpha/alpha.c (alpha_start_function): Likewise.
5044 (alpha_write_linkage): Likewise.
5045 * config/m32r/m32r.c (m32r_select_section): Likewise.
5046 * config/m88k/m88k.c (m88k_select_section): Likewise.
5047 * config/mips/mips.c (mips_select_rtx_section): Likewise.
5048 * config/rs6000/rs6000.c (rs6000_select_rtx_section): Likewise.
5049 (rs6000_elf_select_section): Likewise.
5050 * config/v850/v850.c (v850_select_section): Likewise.
5052 * config/1750a/1750a.h, config/i860/sysv3.h
5053 (READONLY_DATA_SECTION_ASM_OP): New.
5054 READONLY_DATA_SECTION_ASM_OP.
5055 * config/i386/interix.c, config/i386/winnt.c
5056 (i386_pe_unique_section): Always use .rdata prefix.
5057 * config/pa/som.h (readonly_data): Always switch to read-only section.
5058 (READONLY_DATA_SECTION): Predicate on flag_pic.
5059 * config/we32k/we32k.h (READONLY_DATA_SECTION): Remove parenthesis.
5060 * doc/tm.texi (READONLY_DATA_SECTION_ASM_OP): New.
5061 (READONLY_DATA_SECTION): Update.
5063 2002-05-18 Jason Thorpe <thorpej@wasabisystems.com>
5065 * c-common.c (c_common_post_options): Warn if -Wformat-zero-length
5066 is used without -Wformat.
5067 * c-common.h (warn_format_zero_length): Declare extern.
5068 * c-decl.c (warn_options): Add "format-zero-length".
5069 * c-format.c (warn_format_zero_length): Declare.
5070 (set_Wformat): Set warn_format_zero_length for -Wformat.
5071 (check_format_info): Only warn about zero-length formats if
5072 warn_format_zero_length is true. Include the format type
5073 name in the warning message.
5074 * doc/invoke.texi: Document -Wformat-zero-length.
5075 * testsuite/gcc.dg/format/zero-length-1.c: New test.
5077 2002-05-18 Kazu Hirata <kazu@cs.umass.edu>
5079 * timevar.c: Fix formatting.
5080 * tlink.c: Likewise.
5081 * toplev.c: Likewise.
5082 * tree-dump.c: Likewise.
5083 * tree-inline.c: Likewise.
5085 2002-05-18 Neil Booth <neil@daikokuya.demon.co.uk>
5087 * cppinit.c (cpp_post_options): If preprocessed, turn off
5088 traditional. If traditional, turn off column numbers.
5089 * cpplib.c (cpp_push_buffer): Lex from stage 3 if traditional.
5090 * cpptrad.c (handle_newline): Update line_base.
5091 (skip_comment): Handle -Wcomment.
5093 2002-05-17 Zack Weinberg <zack@codesourcery.com>
5095 * cppinit.c (struct builtin): Remove unused fields.
5096 (CPLUS, BUILTIN, OPERATOR, O, builtin_array_end): Kill.
5097 (operator_array): New - was second half of builtin_array.
5098 (init_builtins): Simplify loop over builtin_array/operator_array.
5100 2002-05-18 Neil Booth <neil@daikokuya.demon.co.uk>
5102 * defaults.h (UNIQUE_SECTION): Remove.
5103 * system.h (UNIQUE_SECTION, SELECT_SECTION): Poison.
5105 2002-05-17 Richard Henderson <rth@redhat.com>
5107 * expr.c (init_expr_once): Don't use start/end_sequence.
5108 Use rtx_alloc instead of emit_insn.
5109 * toplev.c (lang_dependent_init): Run init_expr_once here ...
5110 (lang_independent_init): ... not here.
5112 2002-05-17 Jason Thorpe <thorpej@wasabisystems.com>
5114 * config/sh/lib1funcs.asm (GLOBAL): Use __USER_LABEL_PREFIX__.
5116 2002-05-17 Marek Michalkiewicz <marekm@amelek.gda.pl>
5118 * config/avr/avr.c (avr_regs_to_save): New function. Also check
5119 for fixed registers, possibly used for global register variables.
5120 (initial_elimination_offset, avr_output_function_prologue,
5121 avr_output_function_epilogue): Move common code to avr_regs_to_save.
5123 2002-05-17 Neil Booth <neil@daikokuya.demon.co.uk>
5125 * Makefile.in: Update for cpptrad.c.
5126 * cpphash.h (struct cpp_buffer): New members for buffer
5128 (struct cpp_reader): New members for traditional output.
5129 (_cpp_read_logical_line, _cpp_overlay_buffer): New.
5130 * cppinit.c (cpp_create_reader): Set trad_line.
5131 (cpp_destroy): Free trad_out_base if used.
5132 (cpp_read_main_file): Overlay an empty buffer if traditional.
5133 (cpp_finish_options): Don't do builtins.
5134 (COMMAND_LINE_OPTIONS): Add -traditional-cpp.
5135 (cpp_handle_option): Handle it.
5136 * cpplex.c (continue_after_nul): New.
5137 (_cpp_lex_direct): Use handle_nul.
5138 * cpplib.h (struct cpp_options): New traditional option.
5139 * cpptrad.c: New file.
5141 2002-05-17 Neil Booth <neil@daikokuya.demon.co.uk>
5143 * c-common.c (c_common_init_options): Use C89 for Objective-C,
5144 and set the options flag.
5145 * cppinit.c (lang_flags): Remove objc.
5146 (lang_defaults): Remove OBJC and OBJCXX.
5148 (COMMAND_LINE_OPTIONS): Remove -+ and -lang-objc++.
5149 (cpp_handle_option): Remove -+ and -lang-objc++.
5150 For ObjC, just set a flag.
5151 (print_help): Update.
5152 * cpplib.h (enum c_lang): Remove CLK_OBJC and CLK_OBJCXX.
5154 2002-05-17 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5156 * doc/install.texi (Specific, mips-sgi-irix6): Document need to
5157 bootstrap with -mips3.
5159 2002-05-17 Kazu Hirata <kazu@cs.umass.edu>
5161 * final.c: Fix formatting.
5162 * fix-header.c: Likewise.
5164 * fold-const.c: Likewise.
5165 * function.c: Likewise.
5167 2002-05-17 David S. Miller <davem@redhat.com>
5169 PR c/6689, PR optimization/6615
5170 * local-alloc.c (struct equivalence): Rename 'src' to 'src_p'
5171 and make it a pointer to rtx. Update comments.
5172 (update_equiv_regs): When scanning for equivalences, record
5173 address of SET_SRC (set) in reg_equiv[].src_p. Dereference
5174 it while making the equiv replacements.
5176 2002-05-17 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5178 * config/sparc/sparc.c (sparc_aout_select_section): Fixed typo.
5180 2002-05-17 kaz Kojima <kkojima@rr.iij4u.or.jp>
5182 * config/sh/sh.h (ENCODE_SECTION_INFO): Consider MODULE_LOCAL_P
5183 when encoding visibility into SYMBOL_REF_FLAG.
5185 2002-05-17 Richard Sandiford <rsandifo@redhat.com>
5187 * expr.c (force_operand): Fix reversed move.
5189 2002-05-17 Kurt Wall <kwall@kurtwerks.com>
5191 * doc/install.texi (Testing): Mention two common DejaGnu warnings
5192 that can be ignored.
5194 2002-05-16 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
5196 * doc/install.texi (Final install): Recommend to install into a
5197 "clean" target directory.
5199 2002-05-17 Richard Henderson <rth@redhat.com>
5201 * config/ia64/ia64.md: Use braced strings instead of quoted strings
5202 for code blocks. Tidy whitespace.
5204 2002-05-17 Richard Henderson <rth@redhat.com>
5206 * hooks.c (hook_tree_bool_false): New.
5207 * hooks.h: Declare it.
5208 * target-def.h (TARGET_ASM_SELECT_SECTION): New.
5209 (TARGET_ASM_UNIQUE_SECTION, TARGET_IN_SMALL_DATA_P): New.
5210 * target.h (select_section, unique_section): New.
5211 (in_small_data_p): New.
5212 * varasm.c (resolve_unique_section): Use hooks instead of macros.
5213 (variable_section, output_constant_def_contents): Likewise.
5214 (default_select_section, default_unique_section): New.
5215 (categorize_decl_for_section, default_elf_select_section): New.
5216 * output.h: Declare them.
5218 * config/darwin.h (ALIAS_SECTION, try_section_alias): Remove.
5219 (TARGET_ASM_SELECT_SECTION): New.
5220 (SELECT_SECTION): Move ...
5221 * config/darwin.c (machopic_select_section): ... here.
5222 * config/darwin-protos.h: Update.
5224 * config/nextstep.h (TARGET_ASM_SELECT_SECTION): New.
5225 (SELECT_SECTION): Move ...
5226 * config/nextstep.c (nextstep_select_section): ... here.
5227 * config/nextstep-protos.h: Update.
5229 * config/elfos.h (UNIQUE_SECTION, SELECT_SECTION): Remove.
5230 (TARGET_ASM_SELECT_SECTION): New.
5231 * config/svr3.h (SELECT_SECTION): Remove.
5233 * config/alpha/alpha.c (unicosmk_unique_section): Make static.
5234 (TARGET_ASM_UNIQUE_SECTION) [UNICOS]: New.
5235 (TARGET_IN_SMALL_DATA_P, alpha_in_small_data_p): New.
5236 (alpha_encode_section_info): Use it.
5237 * config/alpha/alpha-protos.h: Update.
5238 * config/alpha/elf.h (DO_SELECT_SECTION): Remove.
5239 (SELECT_SECTION, UNIQUE_SECTION): Remove.
5240 (TARGET_ASM_SELECT_SECTION): New.
5241 * config/alpha/unicosmk.h (UNIQUE_SECTION): Remove.
5243 * config/arm/pe.h (UNIQUE_SECTION): Remove.
5244 (TARGET_ASM_UNIQUE_SECTION): New.
5246 * config/avr/avr.c (TARGET_ASM_UNIQUE_SECTION): New.
5247 (avr_unique_section): Rename from unique_section; make static.
5248 * config/avr/avr-protos.h: Update.
5249 * config/avr/avr.h (UNIQUE_SECTION): Remove.
5251 * config/c4x/c4x.h (SELECT_SECTION): Remove.
5253 * config/i386/cygwin.h (UNIQUE_SECTION): Remove.
5254 (TARGET_ASM_UNIQUE_SECTION): New.
5255 * config/i386/i386-interix.h: Likewise.
5256 * config/i386/win32.h: Likewise.
5257 * config/i386/djgpp.h (UNIQUE_SECTION): Remove.
5258 * config/i386/i386.c (ix86_asm_file_end): Use target hook not macro.
5259 * config/i386/sco5.h (SELECT_SECTION): Remove.
5260 (TARGET_ASM_SELECT_SECTION): New.
5261 * config/i386/svr3gas.h (SELECT_SECTION): Remove.
5263 * config/i860/paragon.h: Undef TARGET_ASM_SELECT_SECTION
5264 instead of SELECT_SECTION.
5265 * config/m68k/dpx2.h: Likewise.
5266 * config/rs6000/lynx.h: Likewise.
5268 * config/ia64/aix.h (SELECT_SECTION, UNIQUE_SECTION): Remove.
5269 (TARGET_ASM_SELECT_SECTION, TARGET_ASM_UNIQUE_SECTION): New.
5270 * config/ia64/ia64.c (TARGET_IN_SMALL_DATA_P): New.
5271 (ia64_in_small_data_p): New.
5272 (ia64_encode_section_info): Use it. Reorganize overlarge conditional.
5273 (ia64_aix_select_section, ia64_aix_unique_section): New.
5274 * config/ia64/sysv4.h (DO_SELECT_SECTION): Remove.
5275 (SELECT_SECTION, UNIQUE_SECTION): Remove.
5277 * config/m32r/m32r.h (SELECT_SECTION): Remove.
5278 (TARGET_ASM_SELECT_SECTION): New.
5279 * config/m32r/m32r.c (m32r_select_section): Take align argument.
5280 * config/m32r/m32r-protos.h: Update.
5282 * config/m88k/m88k.h (TARGET_ASM_SELECT_SECTION): New.
5283 (SELECT_SECTION): Move ...
5284 * config/m88k/m88k.c (m88k_select_section): ... here.
5286 * config/mcore/mcore-pe.h (SELECT_SECTION): Remove.
5287 * config/mcore/mcore.h (UNIQUE_SECTION): Remove.
5288 * config/mcore/mcore.c (TARGET_ASM_UNIQUE_SECTION): New.
5289 (mcore_unique_section): Make static.
5290 * config/mcore/mcore-protos.h: Update.
5292 * config/mips/elf.h (UNIQUE_SECTION): Remove.
5293 (TARGET_ASM_UNIQUE_SECTION): New.
5294 * config/mips/elf64.h: Likewise.
5295 * config/mips/iris6gld.h: Likewise.
5296 * config/mips/linux.h: Likewise.
5297 * config/mips/mips-protos.h: Update.
5298 * config/mips/mips.c (mips_select_section): Add align argument.
5299 * config/mips/mips.h (SELECT_SECTION): Remove.
5300 (TARGET_ASM_SELECT_SECTION): New.
5302 * config/mmix/mmix.h (SELECT_SECTION, UNIQUE_SECTION): Remove.
5303 * config/mmix/mmix.c (mmix_select_section): Remove.
5304 (mmix_unique_section): Remove.
5305 * config/mmix/mmix-protos.h: Update.
5307 * config/pa/pa.h (TARGET_ASM_SELECT_SECTION): New.
5308 (SELECT_SECTION): Move ...
5309 * config/pa/pa.c (pa_select_section): ... here.
5310 * config/pa/pa64-hpux.h (UNIQUE_SECTION): Remove.
5312 * config/rs6000/rs6000.c (rs6000_elf_select_section): Rename
5313 from rs6000_select_section and make static.
5314 (rs6000_elf_unique_section): Similarly.
5315 (rs6000_xcoff_select_section): From xcoff.h.
5316 (rs6000_xcoff_unique_section): Likewise.
5317 * config/rs6000/rs6000-protos.h: Update.
5318 * config/rs6000/sysv4.h (SELECT_SECTION, UNIQUE_SECTION): Remove.
5319 (TARGET_ASM_SELECT_SECTION, TARGET_ASM_UNIQUE_SECTION): New.
5320 * config/rs6000/xcoff.h: Likewise.
5322 * config/sparc/aout.h (TARGET_ASM_SELECT_SECTION): New.
5323 (SELECT_SECTION): Move ...
5324 * config/sparc/sparc.c (sparc_aout_select_section): ... here.
5326 * config/v850/v850.h (SELECT_SECTION): Move ...
5327 * config/v850/v850.c (v850_select_section): ... here.
5328 (TARGET_ASM_SELECT_SECTION): New.
5330 * config/vax/vms.h (SELECT_SECTION): Move ...
5331 * config/vax/vax.c (vms_select_section): ... here.
5332 (TARGET_ASM_SELECT_SECTION): New.
5334 * doc/tm.texi: Update SELECT_SECTION and UNIQUE_SECTION docs
5335 for the target hooks.
5337 2002-05-17 Nick Clifton <nickc@cambridge.redhat.com>
5339 * config/arm/arm.c (emit_multi_reg_push): Do not set
5340 RTX_FRAME_RELATED_P on the SEQUENCE.
5342 2002-05-16 Richard Henderson <rth@redhat.com>
5344 * config/ia64/ia64.c (ia64_reorg): Rebuild bb_for_insn before
5345 splitting. Use split_all_insns; update_life_info_in_dirty_blocks.
5347 2002-05-16 Richard Henderson <rth@redhat.com>
5349 * config/alpha/unicosmk.h (TARGET_OS_CPP_BUILTINS): Fix typo.
5351 * config/ia64/ia64.c (saveable_obstack): Do not declare.
5353 2002-05-16 Richard Henderson <rth@redhat.com>
5355 * basic-block.h, bb-reorder.c, cfg.c, cfganal.c, cfgbuild.c,
5356 cfgcleanup.c, cfglayout.c, cfgloop.c, cfgrtl.c, combine.c,
5357 conflict.c, df.c, df.h, dominance.c, final.c, flow.c, function.c,
5358 gcse.c, global.c, graph.c, haifa-sched.c, ifcvt.c, lcm.c,
5359 local-alloc.c, loop.c, predict.c, print-rtl.c, profile.c,
5360 recog.c, reg-stack.c, regclass.c, regmove.c, regrename.c,
5361 reload1.c, reorg.c, resource.c, sbitmap.c, sched-deps.c,
5362 sched-ebb.c, sched-rgn.c, sibcall.c, ssa-ccp.c, ssa-dce.c, ssa.c:
5363 Revert "Basic block renumbering removal", and two followup patches.
5365 2002-05-16 Jason Thorpe <thorpej@wasabisystems.com>
5367 * lcm.c (optimize_mode_switching): Revert previous change.
5369 2002-05-16 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
5371 * sched-rgn.c (schedule_insns): Initialize large_region_blocks
5372 with only extant block numbers.
5374 2002-05-16 Jason Thorpe <thorpej@wasabisystems.com>
5376 * lcm.c (optimize_mode_switching): Fix typo.
5378 2002-05-16 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
5380 * flow.c (calculate_global_regs_live): Queue blocks in program order.
5382 2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5384 * doc/install.texi (Configuration): Document PWDCMD.
5386 2002-05-16 Dale Johannesen <dalej@apple.com>
5388 * combine.c (cant_combine_insn_p): Reenable combinations
5389 involving hard regs unless CLASS_LIKELY_SPILLED_P.
5391 2002-05-16 Neil Booth <neil@daikokuya.demon.co.uk>
5393 * c-common.c (cb_register_builtins): Handle more built-ins
5394 here rather than in gcc.c specs.
5395 * gcc.c (cpp_unique_options): Move many built-ins to c-common.c.
5396 (cpp_options): Pass -O flags even when only preprocessing.
5397 * toplev.c (set_fast_math_flags): New prototype.
5398 (fast_math_flags_set_p): New.
5399 (set_no_fast_math_flags): Remove.
5400 (decode_f_option): Update.
5401 * toplev.h (set_fast_math_flags): Update.
5402 (fast_math_flags_set_p): New.
5403 (set_no_fast_math_flags): Remove.
5405 * c4x/c4x.c (c4x_override_options): Update.
5407 2002-05-16 Zack Weinberg <zack@codesourcery.com>
5409 * c-common.c (STDC_0_IN_SYSTEM_HEADERS, REGISTER_PREFIX):
5410 Default-define here.
5411 (builtin_define_with_value): Can now wrap the expansion in
5412 quotation marks if such is wanted.
5413 (cb_register_builtins): Update calls to builtin_define_with_value.
5414 Define __REGISTER_PREFIX__, __USER_LABEL_PREFIX__, and __VERSION__
5416 (c_common_init): Set options->stdc_0_in_system_headers.
5417 * c-lex.h: Update prototype of builtin_define_with_value.
5418 * cppdefault.h: Remove default definitions of USER_LABEL_PREFIX
5419 and REGISTER_PREFIX.
5421 * cppinit.c (VERS, ULP, C, X): Kill.
5422 (builtin_array): Remove entries for __VERSION__,
5423 __USER_LABEL_PREFIX__, __REGISTER_PREFIX__, and
5424 __HAVE_BUILTIN_SETJMP__. Make __STDC__ always a builtin, not
5426 (init_builtins): Kill off a bunch of now-dead code.
5427 (COMMAND_LINE_OPTIONS): Remove -fleading-underscore and
5428 -fno-leading-underscore.
5429 (cpp_handle_option): Remove code to set user_label_prefix.
5430 (cpp_post_options): Likewise.
5432 * cpplib.h (struct cpp_options): Remove user_label_prefix.
5433 (stdc_0_in_system_headers): New.
5434 * cppmacro.c (builtin_macro): Check CPP_OPTION (pfile,
5435 stdc_0_in_system_headers) too to decide the value of __STDC__.
5437 * tradcpp.c (user_label_prefix): Kill.
5438 (main): Remove code handling -f(no-)leading-underscore.
5439 (initialize_builtins): Don't define __REGISTER_PREFIX__
5440 or __USER_LABEL_PREFIX__.
5441 (install_value): Wrap compound statement in dummy loop so the
5442 macro works properly in an if statement.
5445 2002-05-16 Janis Johnson <janis187@us.ibm.com>
5447 * loop.h (struct loop_info): Add member has_prefetch.
5448 * loop.c (PREFETCH_CONDITIONAL): Change default to 1.
5449 (prescan_loop): Initialize has_prefetch.
5450 (struct prefetch_info): Change prefetch_in_loop and
5451 prefetch_before_loop from bit fields to ints.
5452 (emit_prefetch_instructions): Several small fixes.
5453 (check_dbra_loop): Don't reverse loop that uses prefetch.
5455 2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5457 * Makefile.in: Allow for PWDCMD to override hardcoded pwd.
5458 * configure.in: Likewise.
5459 * fixinc/check.tpl: Likewise.
5460 * fixinc/fixinc.dgux: Likewise.
5461 * fixinc/fixinc.svr4: Likewise.
5462 * fixinc/fixinc.winnt: Likewise.
5463 * fixinc/fixincl.sh: Likewise.
5464 * fixproto: Likewise.
5465 * configure: Regenerate.
5467 2002-05-16 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
5469 Basic block renumbering removal:
5470 * basic_block.h (struct basic_block_def): Renamed index to sindex,
5471 added prev_bb and next_bb fields.
5472 (n_basic_blocks): Renamed to num_basic_blocks.
5473 (last_basic_block): New, index of last basic block.
5474 (FOR_BB_BETWEEN, FOR_ALL_BB, FOR_ALL_BB_REVERSE): New macros for
5475 traversing basic block chain.
5476 (BLOCK_NUM): index -> sindex.
5477 (create_basic_block_structure, create_basic_block): Declaration changed.
5478 (debug_num2bb): Declare.
5479 (expunge_block_nocompact): Declaration removed.
5480 (link_block, unlink_block, compact_blocks): Declare.
5481 * bb-reorder.c (make_reorder_chain, make_reorder_chain_1): Modified.
5482 * cfg.c (entry_exit_blocks): Initialize new fields.
5483 (clear_edges, alloc_block, expunge_block, cached_make_edge,
5484 redirect_edge_pred, dump_flow_info, dump_edge_info,
5485 alloc_aux_for_blocks, clear_aux_for_blocks, alloc_aux_for_edges,
5486 free_aux_for_edges): Modified.
5487 (link_block, unlink_block, compact_blocks, debug_num2bb): New.
5488 (expunge_block_nocompact): Removed.
5489 * cfganal.c (can_fallthru, mark_dfs_back_edges, flow_call_edges_add,
5490 find_unreachable_blocks, create_edge_list, print_edge_list,
5491 verify_edge_list, flow_edge_list_print, remove_fake_successors,
5492 remove_fake_edges, flow_reverse_top_sort_order_compute,
5493 flow_depth_first_order_compute, flow_preorder_transversal_compute,
5494 flow_dfs_compute_reverse_init, flow_dfs_compute_reverse_add_bb,
5495 flow_dfs_compute_reverse_execute): Modified.
5496 * cfgbuild.c (make_edges, make_eh_edge, find_basic_blocks_1,
5497 find_basic_blocks, find_many_sub_basic_blocks, find_sub_basic_blocks):
5499 * cfgcleanup.c (try_simplify_condjump, try_forward_edges,
5500 merge_blocks_move_predecessor_nojumps,
5501 merge_blocks_move_successor_nojumps, merge_blocks,
5502 outgoing_edges_match, try_crossjump_to_edge, try_crossjump_bb,
5503 try_optimize_cfg, delete_unreachable_blocks, cleanup_cfg): Modified.
5504 * cfglayout.c (skip_insns_after_block, label_for_bb,
5505 record_effective_endpoints, scope_to_insns_finalize,
5506 fixup_reorder_chain, verify_insn_chain, cleanup_unconditional_jumps,
5507 fixup_fallthru_exit_predecessor, cfg_layout_redirect_edge,
5508 cfg_layout_duplicate_bb): Modified.
5509 * cfgloop.c (flow_loops_cfg_dump, flow_loop_dump, flow_loops_dump,
5510 flow_loop_entry_edges_find, flow_loop_exit_edges_find,
5511 flow_loop_nodes_find, flow_loop_pre_header_find, flow_loop_scan,
5512 flow_loops_find, flow_loop_outside_edge_p): Modified.
5513 * cfgrtl.c (create_basic_block_structure, create_basic_block,
5514 flow_delete_block, compute_bb_for_insn, split_block,
5515 try_redirect_by_replacing_jump, redirect_edge_and_branch,
5516 force_nonfallthru_and_redirect, tidy_fallthru_edge,
5517 back_edge_of_syntactic_loop_p, split_edge, commit_one_edge_insertion,
5518 commit_edge_insertions, commit_edge_insertions_watch_calls,
5519 dump_bb, print_rtl_with_bb, verify_flow_info, purge_dead_edges,
5520 purge_all_dead_edges): Modified.
5521 * combine.c (combine_instructions, set_nonzero_bits_and_sign_copies,
5522 try_combine, nonzero_bits, num_sign_bit_copies, get_last_value_validate,
5523 get_last_value, reg_dead_at_p, distribute_notes, distribute_links):
5525 * conflict.c (conflict_graph_compute): Modified.
5526 * df.c (FOR_ALL_BBS): Removed.
5527 (df_bitmaps_alloc, df_bitmaps_free, df_alloc, df_analyse_1,
5528 df_modified_p, df_analyse, df_refs_unlink, df_insn_modify,
5529 df_dump, hybrid_search_bitmap, iterative_dataflow_sbitmap): Modified.
5530 * df.h (DF_BB_INFO, DF_REF_BBNO): Modified.
5531 * dominance.c (init_dom_info, calc_dfs_tree_nonrec, calc_dfs_tree,
5532 calc_idoms, idoms_to_doms, calculate_dominance_info): Modified.
5533 * final.c (compute_alignments, final_scan_insn): Modified.
5534 * flow.c (verify_local_live_at_start, update_life_info,
5535 update_life_info_in_dirty_blocks, free_basic_block_vars,
5536 delete_noop_moves, calculate_global_regs_live,
5537 initialize_uninitialized_subregs, allocate_bb_life_data,
5538 regno_uninitialized, regno_clobbered_at_setjmp, mark_set_1,
5539 mark_used_reg, count_or_remove_death_notes): Modified.
5540 * function.c (thread_prologue_and_epilogue_insns): Modified.
5541 * gcse.c (struct null_pointer_info): Change typo of current_block
5543 (gcse_main, alloc_gcse_mem, compute_local_properties, compute_sets,
5544 oprs_unchanged_p, load_killed_in_block_p, record_last_reg_set_info,
5545 compute_hash_table, alloc_rd_mem, handle_rd_kill_set, compute_kill_rd,
5546 alloc_avail_expr_mem, expr_killed_p, compute_ae_kill,
5547 expr_reaches_here_p_work, expr_reaches_here_p, handle_avail_expr,
5548 classic_gcse, one_classic_gcse_pass, compute_transp, cprop,
5549 one_cprop_pass, compute_pre_data, pre_expr_reaches_here_p_work,
5550 pre_expr_reaches_here_p, insert_insn_end_bb, pre_edge_insert,
5551 pre_delete, one_pre_gcse_pass, compute_transpout,
5552 invalidate_nonnull_info, delete_null_pointer_checks_1,
5553 free_code_hoist_mem, compute_code_hoist_vbeinout,
5554 hoist_expr_reaches_here_p, hoist_code, one_code_hoisting_pass,
5555 compute_ld_motion_mems, store_ops_ok, find_moveable_store,
5556 compute_store_table, build_store_vectors, insert_insn_start_bb,
5557 insert_store, replace_store_insn, free_store_memory, store_motion):
5559 * global.c (global_alloc, global_conflicts, mark_elimination,
5560 build_insn_chain): Modified.
5561 * graph.c (print_rtl_graph_with_bb): Modified.
5562 * haifa-sched.c (sched_init): Modified.
5563 * ifcvt.c (SET_ORIG_INDEX, ORIG_INDEX): Removed.
5564 (find_if_block, find_cond_trap, find_if_case_1, find_if_case_2,
5565 if_convert): Modified.
5566 * lcm.c (compute_antinout_edge, compute_earliest, compute_laterin,
5567 compute_insert_delete, pre_edge_lcm, compute_available,
5568 compute_farthest, compute_nearerout, compute_rev_insert_delete,
5569 pre_edge_rev_lcm, make_preds_opaque, optimize_mode_switching):
5571 * local-alloc.c (alloc_qty, local_alloc, update_equiv_regs): Modified.
5572 * loop.c (loop_dump_aux): Modified.
5573 * predict.c (combine_predictions_for_insn, estimate_probability,
5574 last_basic_block_p, process_note_prediction, process_note_predictions,
5575 note_prediction_to_br_prob, propagate_freq, counts_to_freqs,
5576 expensive_function_p, estimate_bb_frequencies,
5577 compute_function_frequency): Modified.
5578 * print-rtl.c (print_rtx): Modified.
5579 * profile.c (GCOV_INDEX_TO_BB, BB_TO_GCOV_INDEX, instrument_edges,
5580 get_exec_counts, compute_branch_probabilities, compute_checksum,
5581 branch_prob, find_spanning_tree): Modified.
5582 * recog.c (split_all_insns, peephole2_optimize): Modified.
5583 * reg-stack.c (reg_to_stack, convert_regs_entry, compensate_edge,
5584 convert_regs_1, convert_regs_2, convert_regs): Modified.
5585 * regclass.c (scan_one_insn, regclass): Modified.
5586 * regmove.c (mark_flags_life_zones, regmove_optimize,
5587 combine_stack_adjustments): Modified.
5588 * regrename.c (regrename_optimize, copyprop_hardreg_forward): Modified.
5589 * reload1.c (reload, reload_combine, copy_eh_notes): Modified.
5590 * reorg.c (dbr_schedule): Modified.
5591 * resource.c (find_basic_block, init_resource_info): Modified.
5592 * sbitmap.c (sbitmap_intersection_of_succs,
5593 sbitmap_intersection_of_preds, sbitmap_union_of_succs,
5594 sbitmap_union_of_preds): Modified.
5595 * sched-deps.c (init_dependency_caches): Modified.
5596 * sched-ebb.c (schedule_ebbs): Modified.
5597 * sched-rgn.c (is_cfg_nonregular, build_control_flow, debug_regions,
5598 find_rgns, compute_trg_info, init_regions, schedule_insns): Modified.
5599 * sibcall.c (optimize_sibling_and_tail_recursive_call): Modified.
5600 * ssa-ccp.c (examine_flow_edges, optimize_unexecutable_edges,
5601 ssa_ccp_substitute_constants, ssa_ccp_df_delete_unreachable_insns,
5602 ssa_const_prop): Modified.
5603 * ssa-dce.c (set_control_dependent_block_to_edge_map_,
5604 find_control_dependence, find_pdom, ssa_eliminate_dead_code): Modified.
5605 * ssa.c (remove_phi_alternative, find_evaluations,
5606 compute_dominance_frontiers_1, compute_iterated_dominance_frontiers,
5607 insert_phi_node, rename_block, convert_to_ssa, eliminate_phi,
5608 make_regs_equivalent_over_bad_edges,
5609 make_equivalent_phi_alternatives_equival,
5610 compute_conservative_reg_partition,
5611 coalesce_regs_in_successor_phi_nodes, compute_coalesced_reg_partition,
5612 rename_equivalent_regs, convert_from_ssa, for_each_successor_phi):
5615 2002-05-16 Mark Mitchell <mark@codesourcery.com>
5617 * cfgrtl.c (purge_dead_edges): Correct handling of EDGE_EH.
5619 2002-05-16 Nick Clifton <nickc@cambridge.redhat.com>
5621 * config/arm/arm.c (arm_rtx_costs): Check for RTX being a
5622 SYMBOL_REF before calling CONSTANT_POOL_ADDRESS_P.
5623 (arm_adjust_cost): Check for RTX being a SYMBOL_REF before
5624 calling CONSTANT_POOL_ADDRESS_P.
5625 * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Fix typo in code
5626 to decide whether to define __arm__ or __thumb.
5627 (THUMB_GO_IF_LEGITIMATE_ADDRESS): Check for RTX being a
5628 SYMBOL_REF before calling CONSTANT_POOL_ADDRESS_P.
5630 2002-05-16 Neil Booth <neil@daikokuya.demon.co.uk>
5632 * config/arc/arc.h (CPP_PREDEFINES): Remove.
5634 (TARGET_CPU_CPP_BUILTINS): New.
5636 2002-05-16 Neil Booth <neil@daikokuya.demon.co.uk>
5638 * cpphash.h (cpp_macro): Move here, and make expansion a union.
5639 * cppmacro.c (cpp_macro): Remove.
5640 (enter_macro_context, replace_args, warn_of_redefinition,
5641 _cpp_create_definition, cpp_macro_definition): Update.
5643 2002-05-16 Jason Merrill <jason@redhat.com>
5645 * config/mips/mips.c (mips_output_external): Don't do sdata
5646 optimization for a variable with DECL_COMDAT set.
5648 2002-05-15 Aldy Hernandez <aldyh@redhat.com>
5650 * config/rs6000/altivec.h: Cleanups for tighter typechecking.
5651 Cleanups for accepting modifiers on pointers.
5652 Fix predicate typos.
5653 Allow long pointers as well as int pointers.
5655 2002-05-15 Richard Henderson <rth@redhat.com>
5657 * varasm.c (merge_weak): Remove special case for extern and common.
5659 2002-05-15 Matt Hiller <hiller@redhat.com>
5661 * testsuite/gcc.c-torture/compile/20000804-1.x: Don't return 1 if
5663 * testsuite/gcc.c-torture/compile/20001226-1.x: Ditto.
5664 * testsuite/gcc.c-torture/compile/920520-1.x: Ditto.
5665 * testsuite/gcc.c-torture/compile/mipscop-1.x: XFAIL for now.
5666 * testsuite/gcc.c-torture/compile/mipscop-2.x: Ditto.
5667 * testsuite/gcc.c-torture/compile/mipscop-3.x: Ditto.
5668 * testsuite/gcc.c-torture/compile/mipscop-4.x: Ditto.
5670 2002-05-15 Aldy Hernandez <aldyh@redhat.com>
5672 * reload1.c (forget_old_reloads_1): Do not use subreg offset.
5674 2002-05-15 Aldy Hernandez <aldyh@redhat.com>
5676 * config/rs6000/rs6000.md ("altivec_mtvscr"): Set VSCR register.
5677 ("altivec_mfvscr"): Read from VSCR.
5679 Add vscr sets for the following insns: altivec_vctuxs,
5680 altivec_vaddubs, altivec_vaddsbs, altivec_vadduhs,
5681 altivec_vaddshs, altivec_vadduws, altivec_vaddsws, altivec_vctsxs,
5682 altivec_vmhaddshs, altivec_vmhraddshs, altivec_vmsumuhs,
5683 altivec_vmsumshs, altivec_vpkuhss, altivec_vpkshss,
5684 altivec_vpkuwss, altivec_vpkswss, altivec_vpkuhus,
5685 altivec_vpkshus, altivec_vpkuwus, altivec_vpkswus,
5686 altivec_vsububs, altivec_vsubsbs, altivec_vsubuhs,
5687 altivec_vsubshs, altivec_vsubuws, altivec_vsubsws,
5688 altivec_vsum4ubs, altivec_vsum4sbs, altivec_vsum4shs,
5689 altivec_vsum2sws, altivec_vsumsws.
5691 * config/rs6000/rs6000.h: Add VSCR fixed register.
5692 (CALL_REALLY_USED_REGISTERS): Add vscr.
5693 (CALL_USED_REGISTERS): Same.
5694 (FIXED_REGISTERS): Same.
5695 (REG_ALLOC_ORDER): Same.
5696 (reg_class): Add VSCR_REGS.
5697 (REG_CLASS_NAMES): Same.
5698 (REG_CLASS_CONTENTS): Same.
5700 (REGISTER_NAMES): Add vscr.
5701 (DEBUG_REGISTER_NAMES): Same.
5702 (ADDITIONAL_REGISTER_NAMES): Same.
5703 (FIRST_PSEUDO_REGISTER): Increment.
5704 (CONDITIONAL_REGISTER_USAGE): Set VSCR as a global register.
5706 2002-05-15 Jakub Jelinek <jakub@redhat.com>
5708 * fold-const.c (fold): Fix a typo.
5710 2002-05-15 Eric Botcazou <ebotcazou@multimania.com>
5712 * fold-const.c (fold) [LT_EXPR]: Move the transformation of a
5713 comparison against the highest or lowest integer value before
5714 the 'X >= CST to X > (CST - 1)' and 'X < CST to X <= (CST - 1)'
5715 transformation and that of an unsigned comparison against 0
5718 2002-05-15 Richard Henderson <rth@redhat.com>
5720 * varasm.c (merge_weak): Error for any weakening after definition.
5721 Adjust weakening after use warning to catch more cases.
5722 (assemble_alias): Set TREE_USED and TREE_ASM_WRITTEN consistently.
5723 * config/alpha/alpha.c (alpha_encode_section_info): Do not abort.
5725 Wed May 15 10:38:27 CEST 2002 Jan Hubicka <jh@suse.cz>
5727 * invoke.texi (-malign-double): Re-add lost warning.
5729 * i386-protos.h (x86_output_mi_thunk): Declare.
5730 * unix.h (ASM_OUTPUT_MI_THUNK): Move offline to ...
5731 * i386.c (x86_output_mi_thunk): ... here; handle 64bits.
5733 * dwarf2out.c (output_call_frame_info): Do not skip unwind info
5734 when flag_asynchronous_unwind_tables is set.
5736 * flags.h (flag_reorder_functions): Declare.
5737 * function.c (prepare_function_start): Initialize frequnecy.
5738 * params.def (HOT_BB_COUNT_FRACTION, HOT_BB_FREQUENCY_FRACTION): New.
5739 * Makefile.in (predict.o): Add dependency on target.h and params.h
5740 * defaults.h (HOT_TEXT_SECTION_NAME,
5741 UNLIKELY_EXECUTED_TEXT_SECTION_NAME): New macros.
5742 * predict.c (choose_function_section): New function.
5743 (estimate_bb_frequencies): Use it.
5744 * toplev.c (flag_reorder_functions): New global variable.
5745 (lang_independent_options): New.
5746 (parse_options_and_default_flags): Set.
5747 * varasm.c (assemble_start_function): Bypass functdion alignment
5748 for never executed functions.
5749 * invoke.texi (-freorder-blocks, -freorder-functions): Document.
5750 (param hot-bb-count-fraction, hot-bb-frequency-fraction): New.
5751 * tm.texi (HOT_TEXT_SECTION_NAME, UNLIKELY_EXECUTED_TEXT_SECTION_NAME):
5754 Thu Jan 3 21:52:09 CET 2002 Jan Hubicka <jh@suse.cz>
5756 * predict.c: Inlude profile.h
5757 (MIN_COUNT): Rename to MIN_COUNT_FRACTION
5758 (maybe_hot_bb_p, probably_cold_bb_p, probably_never_executed_bb_p):
5759 Use the information about maximal counter in the program.
5761 Thu Dec 20 22:14:00 CET 2001 Jan Hubicka <jh@suse.cz>
5763 * basic-block.h (maybe_hot_bb_p, probably_cold_bb_p,
5764 probably_never_executed_bb_p): New functions.
5765 * cfgcleanup.c (outgoing_edges_match): Use them.
5766 * predict.c (MIN_COUNT, MIN_FREQUENCY): New macros.
5767 (maybe_hot_bb_p, probably_cold_bb_p,
5768 probably_never_executed_bb_p): New functions.
5770 * function.h (function): Add new field function_frequency.
5771 * predict.c (compute_function_frequency): New function.
5772 (estimate_probability): Call it.
5774 2002-03-09 Jakub Jelinek <jakub@redhat.com>
5776 PR optimization/5172, optimization/5200
5777 * gcse.c (gcse_main): Disable store_motion.
5779 2002-05-14 Zack Weinberg <zack@codesourcery.com>
5781 * c-parse.in (MODIFIED_WCHAR_TYPE): New macro.
5782 (c_common_nodes_and_builtins): Use it.
5783 (builtin_define_with_value): New function.
5784 (cb_register_builtins): Define __SIZE_TYPE__,
5785 __PTRDIFF_TYPE__, __WCHAR_TYPE__, and __WINT_TYPE__ here,
5786 using builtin_define_with_value. Use consistent notation when
5787 defining __GXX_WEAK__.
5788 (WCHAR_TYPE_SIZE): Don't redefine.
5789 (combine_strings): Don't use WCHAR_TYPE_SIZE.
5791 * cppdefault.h: Don't provide defaults for SIZE_TYPE,
5792 PTRDIFF_TYPE, WCHAR_TYPE, or WINT_TYPE.
5793 * cppinit.c (builtin_array): Remove entries for __SIZE_TYPE__ etc.
5794 * tradcpp.c (initialize_builtins): Likewise.
5795 * gcc.c (cpp_unique_options): Don't muck with __WCHAR_TYPE__.
5797 * c-lex.h (builtin_define_with_value): Prototype.
5798 * system.h: Poison NO_BUILTIN_SIZE_TYPE, NO_BUILTIN_WCHAR_TYPE,
5799 NO_BUILTIN_PTRDIFF_TYPE, and NO_BUILTIN_WINT_TYPE.
5800 * doc/tm.texi: Remove mention of NO_BUILTIN_SIZE_TYPE etc.
5802 * config/avr/avr.h, config/h8300/h8300.h, config/i386/i386.h,
5803 config/ia64/ia64.h, config/mips/dec-osf1.h, config/mips/iris6.h,
5804 config/mips/linux.h, config/mips/mips.h, config/mips/netbsd.h,
5805 config/mips/osfrose.h, config/mips/sni-svr4.h, config/rs6000/aix51.h,
5806 config/s390/linux.h, config/sh/sh.h, config/sh/sh64.h,
5807 config/sparc/linux64.h, config/sparc/netbsd-elf.h,
5808 config/sparc/sol2-bi.h, config/sparc/sparc.h:
5809 Do not define NO_BUILTIN_SIZE_TYPE etc. Remove all references
5810 to __SIZE_TYPE__ etc from all spec strings. When this makes
5811 extra specs empty, delete them.
5813 2002-05-14 John David Anglin <dave@hiauly1.hia.nrc.ca>
5815 * pa.c (override_options): Override TARGET_JUMP_IN_DELAY when scheduling
5816 for PA8000 or generating dwarf2 call frame information.
5817 (output_call): Remove DO_FRAME_NOTES check from return pointer
5819 (following_call): Return 0 when scheduling for PA8000 or generating
5820 dwarf2 call frame information. Revise comment.
5822 2002-05-14 Neil Booth <neil@daikokuya.demon.co.uk>
5825 * alpha.h (TARGET_CPU_CPP_BUILTINS): Define __IEEE_FP
5826 and __IEEE_FP_INEXACT as appropriate.
5827 (CPLUSPLUS_CPP_SPEC): Don't define __cplusplus.
5828 (CPP_SPEC): Remove ieee defines.
5829 * freebsd.h, netbsd.h: Remove ieee defines and cpp_cpu.
5831 2002-05-14 Richard Henderson <rth@redhat.com>
5833 * config/i386/i386.c (ix86_save_reg): Make regno unsigned.
5834 (ix86_safe_length, ix86_safe_length_prefix, ix86_safe_memory): Kill.
5836 2002-05-14 Neil Booth <neil@daikokuya.demon.co.uk>
5838 * arm/arm.h (TARGET_CPU_CPP_BUILTINS): Define.
5840 (CPP_APCS_PC_SPEC, CPP_APCS_PC_DEFAULT_SPEC,
5841 CPP_FLOAT_SPEC, CPP_FLOAT_DEFAULT_SPEC, CPP_ENDIAN_SPEC,
5842 CPP_ENDIAN_DEFAULT_SPEC, CPP_INTERWORK_DEFAULT_SPEC,
5843 CPP_INTERWORK_SPEC, CPP_PREDEFINES): Remove.
5844 (EXTRA_SPECS): Update.
5845 * arm/conix-elf.h, arm/linux-elf.h, arm/netbsd.h, arm/riscix.h,
5846 arm/riscix1-1.h, arm/rtems-elf.h, arm/semiaof.h, arm/unknown-elf.h,
5847 arm/unknown-elf-oabi.h, arm/vxarm.h: Remove CPP_PREDEFINES and
5848 define TARGET_OS_CPP_BUILTINS if necessary.
5850 2002-05-14 Neil Booth <neil@daikokuya.demon.co.uk>
5852 * gcc.c (cpp_options): Must pass -m* and -f* options
5853 to the front end even when only preprocessing.
5854 (cc1_options): Remove redundant -lang-c.
5855 * tradcpp.c (main): Ignore -m options.
5857 * lang-specs.h: Similarly.
5859 2002-05-14 Vladimir Makarov <vmakarov@redhat.com>
5861 * genautomata.c (transform_3): Add code for transformation
5862 `(A,B,...)+C -> A+C,B,...'.
5864 Tue May 14 12:48:22 CEST 2002 Jan Hubicka <jh@suse.cz>
5866 * final.c (end_final): Do not output profile_arcs constructor, when
5867 no functions are instrumented.
5869 Tue May 14 12:38:30 CEST 2002 Jan Hubicka <jh@suse.cz>
5871 * i386.md (testsi to testqi_zext_1 splitter): Fix typo.
5873 2002-05-14 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
5875 * doc/install.texi: Remove special markup originally required for
5876 HTML generation with texi2html.
5878 2002-05-14 Andreas Schwab <schwab@suse.de>
5880 * config/ia64/sysv4.h (DO_SELECT_SECTION): Factored out of
5882 (UNIQUE_SECTION): Define to get small data correctly.
5884 * varasm.c (resolve_unique_section): Add third parameter
5885 flag_function_or_data_sections and use it instead of
5886 flag_function_sections.
5887 (assemble_start_function): Pass flag_function_sections.
5888 (asm_emit_uninitialised): Pass flag_data_sections.
5889 (assemble_variable): Likewise.
5891 2002-05-14 Richard Henderson <rth@redhat.com>
5893 * config/i386/i386.md: Use define_constants for unspec numbers.
5894 * config/i386/i386.c: Likewise.
5896 2002-05-13 Neil Booth <neil@daikokuya.demon.co.uk>
5898 * doc/contrib.texi: Update my entry.
5900 2002-05-13 Mark Mitchell <mark@codesourcery.com>
5902 * fixinc/inclhack.def (winidss_valist): Limit applicability.
5903 * fixinc/fixincl.x: Regenerated.
5904 * fixinc/tests/base/math.h: Update.
5905 * fixinc/tests/base/testing.h: Likewise.
5907 2002-05-13 Zack Weinberg <zack@codesourcery.com>
5909 * genattr.c (gen_attr): Don't emit a comma after the last
5912 2002-05-13 Richard Henderson <rth@redhat.com>
5914 * cfgrtl.c (purge_dead_edges): Handle abnormal call edges created
5916 * recog.c (peephole2_optimize): Likewise.
5918 2002-05-13 Andris Pavenis <pavenis@lanet.lv>
5920 * cppfiles.c (open_file): Change mode (DJGPP only) of redirected
5923 2002-05-13 Jeffrey A Law (law@redhat.com)
5925 * flow.c (invalidate_mems_from_autoinc): Rewrite to use for_each_rtx.
5926 Update prototype and callers.
5927 (propagate_one_insn): Stack pointer adjustments kill MEMs on
5928 the mem_set_list which reference the stack pointer, as do
5929 calls to constant functions as they may clobber outgoing
5932 * i386.c (ia32_multipass_dfa_lookahead): Prototype.
5934 * i386.c (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD): Define.
5935 (ia32_multipass_dfa_lookahead): New function.
5937 2002-05-13 Neil Booth <neil@daikokuya.demon.co.uk>
5939 * gcc.c (SWITCH_TAKES_ARG): Remove 'V'.
5940 (translate_options): Remove 'V'.
5941 (process_command): Similarly.
5943 * invoke.texi: Remove documentation of 'V'.
5945 2002-05-13 Ulrich Weigand <uweigand@de.ibm.com>
5947 * config/s390/linux.h: Revert 2002-04-22 changes.
5949 2002-05-13 Scott Marks <SMarks@mobile-mind.com>
5951 * config/fr30/fr30.md: Only allow splits of immediate loads
5952 if the destination is a register.
5954 2002-05-13 Neil Booth <neil@daikokuya.demon.co.uk>
5956 * Makefile.in (c-common.o, cppinit.o): Update.
5957 * c-common.c: Include except.h.
5958 (cb_register_builtins): Handle __USING_SJLJ_EXCEPTIONS__.
5959 Call TARGET_CPU_CPP_BUILTINS and TARGET_OS_CPP_BUILTINS.
5960 * cppinit.c (__USING_SJLJ_EXCEPTIONS): Not here.
5961 * defaults.h (TARGET_OS_CPP_BUILTINS, TARGET_CPU_CPP_BUILTINS,
5962 CPP_PREDEFINES): Handle here.
5964 * alpha/alpha-interix.h, alpha/gnu.h, alpha/linux.h,
5965 alpha/netbsd.h, alpha/openbsd.h, alpha/osf.h, alpha/unicosmk.h,
5966 alpha/vms.h, alpha/vxworks.h: Remove CPP_PREDEFINES, define
5967 TARGET_OS_CPP_BUILTINS.
5968 * alpha/alpha.h (TARGET_CPU_CPP_BUILTINS): Define.
5969 (CPP_SPEC, EXTRA_SPECS): Update.
5970 (CPP_AM_BWX_SPEC, CPP_AM_MAX_SPEC, CPP_AM_FIX_SPEC,
5971 CPP_AM_CIX_SPEC, CPP_IM_EV4_SPEC, CPP_IM_EV5_SPEC,
5972 CPP_IM_EV6_SPEC, CPP_CPU_EV4_SPEC, CPP_CPU_EV5_SPEC,
5973 CPP_CPU_EV56_SPEC, CPP_CPU_PCA56_SPEC, CPP_CPU_EV6_SPEC,
5974 CPP_CPU_EV67_SPEC, CPP_CPU_DEFAULT_SPEC, CPP_CPU_SPEC): Remove.
5976 * tm.texi (TARGET_REGISTER_CPP_BUILTINS): Remove.
5977 (TARGET_OS_CPP_BUILTINS, TARGET_CPU_CPP_BUILTINS): Define.
5979 2002-05-12 Zack Weinberg <zack@codesourcery.com>
5981 * emit-rtl.c (global_rtl): Update comment.
5982 (const_double_htab, const_double_htab_hash,
5983 const_double_htab_hash, lookup_const_double): New.
5984 (const_int_htab_hash, const_int_htab_eq): Remove const
5985 qualifiers, which cause tons of warnings with RTL checking on.
5986 (gen_rtx_CONST_DOUBLE): Deleted.
5987 (const_double_from_real_value): New function - bears some
5988 resemblance to the former immed_real_const_1.
5989 (immed_double_const): Moved here from varasm.c and
5991 (gen_rtx_REG): Make REGNO unsigned to squelch warnings.
5992 (gen_rtx_SUBREG): Use gen_rtx_raw_SUBREG.
5993 (gen_rtx): Use immed_double_const.
5994 (init_emit_once): Initialize the const_double_htab. Use
5995 REAL_VALUE_FROM_INT where possible. Can now use
5996 CONST_DOUBLE_FROM_REAL_VALUE when setting up const_tiny_rtx.
5997 * varasm.c (struct varasm_status): Remove x_const_double_chain.
5998 (const_double_chain, immed_real_const, clear_const_double_mem): Delete.
5999 (immed_double_const, immed_real_const_1): Moved to emit-rtl.c.
6000 (init_varasm_status, mark_varasm_status): Don't touch
6001 x_const_double_chain.
6003 * output.h: Delete prototype for clear_const_double_mem.
6004 * real.h: Make REAL_VALUE_TYPE a macro again. Remove leading
6005 '0' slot from all CONST_DOUBLE_FORMAT definitions. Prototype
6006 const_double_from_real_value, not immed_real_const_1, and use
6007 it to define CONST_DOUBLE_FROM_REAL_VALUE. Define new macro
6009 * rtl.h (CONST_DOUBLE_CHAIN): Kill.
6010 (CONST_DOUBLE_LOW, CONST_DOUBLE_HIGH): Adjust.
6011 (gen_rtx_CONST_DOUBLE, immed_real_const): Delete prototypes.
6012 (gen_rtx_REG): Second arg is unsigned.
6014 * gengenrtl.c (special_rtx): Take out CONST_DOUBLE.
6015 (excluded_rtx): New, return true for CONST_DOUBLE.
6016 (genmacro): Write nothing for excluded codes.
6017 * combine.c (combine_simplify_rtx): Use CONST_DOUBLE_FROM_REAL_VALUE.
6018 * expr.c (expand_expr): Likewise.
6019 * ggc-common.c (ggc_mark_rtx_children_1): Don't mark the
6021 * toplev.c (rest_of_compilation): Don't call
6022 clear_const_double_mem.
6024 * config/rs6000/rs6000.c (rs6000_float_const): Delete.
6025 (rs6000_hash_constant): Remove CONST_DOUBLE special case.
6026 (toc_hash_eq): Remove CONST_DOUBLE and LABEL_REF special cases.
6027 * config/rs6000/rs6000-protos.h: Don't prototype rs6000_float_const.
6028 * config/c4x/c4x.md, config/rs6000/rs6000.md: Use CONST_DOUBLE_ATOF.
6029 * config/dsp16xx/dsp16xx.md, config/mips/mips.md,
6030 config/pa/pa.md: Use CONST_DOUBLE_FROM_REAL_VALUE.
6031 * config/sparc/sparc.md, config/sparc/sparc.c: Use immed_double_const.
6033 2002-05-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6035 * mips/iris6.h (CPLUSPLUS_CPP_SPEC): Define.
6037 2002-05-12 Tom Tromey <tromey@redhat.com>
6039 * tree.h (copy_node): Don't mention TREE_PERMANENT.
6041 2002-05-12 Zack Weinberg <zack@codesourcery.com>
6043 * gensupport.c (n_comma_elts): Moved here from genattrtab.c.
6044 (scan_comma_elt): New function. Accepts whitespace in comma lists.
6045 * gensupport.h: Prototype new routines.
6046 * genattr.c (gen_attr): Use scan_comma_elt. Avoid unnecessary
6048 * genattrtab.c (n_comma_elts): Moved to gensupport.c.
6049 (next_comma_elt): Use scan_comma_elt.
6051 * config/i386/i386.md: Use new attribute notation to break up
6052 long lines in define_attr forms.
6054 2002-05-12 Richard Henderson <rth@redhat.com>
6056 * expr.c (compress_float_constant): New.
6057 (emit_move_insn): Use it.
6058 (float_extend_from_mem): New.
6059 (init_expr_once): Initialize it.
6060 * real.c (exact_real_truncate): New.
6062 * config/i386/i386.h (CONST_COSTS): Assume CONST_DOUBLE gets
6063 dropped into memory; penalize for size.
6064 (RTX_COSTS): FLOAT_EXTEND is free.
6065 * config/i386/i386.md (extendsfdf2, extendsfxf2, extendsftf2,
6066 extenddfxf2, extenddftf2): Accept constants and drop them to memory.
6068 2002-05-12 Richard Henderson <rth@redhat.com>
6070 * profile.h (profile_info): Add missing extern to declaration.
6071 * profile.c (profile_info): Define it.
6073 2002-05-11 John David Anglin <dave@hiauly1.hia.nrc.ca>
6075 * pa/pa32-regs.h (HARD_REGNO_MODE_OK): Revise sets of general registers
6076 used for DImode and TImode.
6078 2002-05-11 Neil Booth <neil@daikokuya.demon.co.uk>
6080 * cpplex.c (_cpp_lex_direct): When in a directive at EOF
6083 2002-05-11 Zack Weinberg <zack@codesourcery.com>
6085 * config/rs6000/rs6000.c (rs6000_default_long_calls,
6086 rs6000_longcall_switch, rs6000_set_default_type_attributes): New.
6087 (TARGET_SET_DEFAULT_TYPE_ATTRIBUTES): Set it.
6088 (rs6000_override_options): Handle -m(no-)longcall.
6089 (init_cumulative_args, output_mi_thunk): Check for both
6090 longcall and shortcall attributes on the function.
6091 (rs6000_attribute_table): Add "shortcall".
6092 (rs6000_handle_longcall_attribute): Update comment.
6093 (altivec_expand_unop_builtin, altivec_expand_binop_builtin,
6094 altivec_expand_ternop_builtin): Add default clauses to switches
6095 to silence warnings.
6097 * config/rs6000/rs6000.h: Declare rs6000_longcall_switch and
6098 rs6000_default_long_calls. Define REGISTER_TARGET_PRAGMAS.
6099 (TARGET_OPTIONS): Add longcall and no-longcall.
6101 * config/rs6000/rs6000.md (call_nonlocal_sysv,
6102 call_value_nonlocal_sysv): Split by alternatives. One pair
6103 accepts only SYMBOL_REFs and rejects if CALL_LONG is set in
6104 the call cookie. The other pair accepts only LR/CTR and has
6107 * config.gcc (rs6000-*-* | powerpc*-*-* trailer stanza):
6108 Set c_target_objs, cxx_target_objs; add t-rs6000-c-rule to
6110 * config/rs6000/rs6000-c.c: New file.
6111 * config/rs6000/t-rs6000-c-rule: New file.
6112 * config/rs6000/rs6000-protos.c: Add multiple-include guard.
6113 Prototype rs6000_pragma_longcall.
6115 * doc/extend.texi: Document shortcall attribute.
6116 * doc/invoke.texi: Document -mlongcall, -mno-longcall.
6118 2002-05-11 John David Anglin <dave@hiauly1.hia.nrc.ca>
6120 * reorg.c (dbr_schedule): Remove unnecessary test.
6122 Sat May 11 14:34:35 CEST 2002 Jan Hubicka <jh@suse.cz>
6124 * i386.md (testsi to testqi spliters): New.
6126 2002-01-14 Josef Zlomek <zlomek@matfyz.cz>
6128 cfg.c (dump_edge_info): added dumping of EDGE_CAN_FALLTHRU.
6130 Wed Jan 9 2002 Josef Zlomek <zlomj9am@artax.karlin.mff.cuni.cz>
6132 * basic-block.h: New flag EDGE_CAN_FALLTHRU
6133 * cfganal.c (set_edge_can_fallthru_flag): New function; marks the edges
6134 that can be made fallthru.
6136 Mon Nov 12 16:25:53 CET 2001 Jan Hubicka <jh@suse.cz>
6138 * cfglayout.c (cleanup_unconditional_jumps): New static function.
6139 (cfg_layout_initialize): Use it.
6141 2002-05-11 Marek Michalkiewicz <marekm@amelek.gda.pl>
6143 * config/avr/avr.c (avr_mcu_types): Update supported devices.
6144 * config/avr/avr.h (CPP_SPEC, LINK_SPEC, CRT_BINUTILS_SPECS): Likewise.
6145 * config/avr/t-avr (MULTILIB_MATCHES): Likewise.
6147 2002-05-11 Kazu Hirata <kazu@cs.umass.edu>
6149 * dbxout.c: Fix formatting.
6150 * dependence.c: Likewise.
6152 * diagnostic.c: Likewise.
6153 * doloop.c: Likewise.
6154 * dominance.c: Likewise.
6155 * doschk.c: Likewise.
6156 * dwarf2asm.c: Likewise.
6157 * dwarf2out.c: Likewise.
6158 * dwarfout.c: Likewise.
6160 2002-05-10 Richard Henderson <rth@redhat.com>
6162 * final.c (end_final): Tidy whitespace. Don't honor flag_pack_struct.
6163 Convert integers constants as needed. Replace "nwords" field with
6165 (final): Save profile data if cfun->arc_profile, not profile_arc_flag.
6166 * function.h: Fix typo in comment.
6167 * libgcc2.c (struct bb): Replace "nwords" with "sizeof_bb".
6169 2002-05-10 Roger Sayle <roger@eyesopen.com>
6171 * fold-const.c (build_range_check): Optimize (c>=1) && (c<=127)
6172 into the equivalent (signed char)c > 0.
6174 2002-05-10 Janis Johnson <janis187@us.ibm.com>
6176 * loop.c: (PREFETCH_EXTREME_DIFFERENCE, PREFETCH_BEFORE_LOOP): New.
6177 (PREFETCH_CONDITIONAL): Renamed from PREFETCH_NOT_ALWAYS.
6178 (struct prefetch_info): Fix spelling of member bytes_accessed.
6179 (emit_prefetch_instructions): Make dump messages more regular;
6180 restructure code to add more dump messages; use new macros for
6181 heuristics. (There are no code generation changes in any of this).
6183 2002-05-10 David S. Miller <davem@redhat.com>
6185 * rtl.h (INSN_ANNULLED_BRANCH_P): Accept INSN too, update comment.
6186 (struct rtx_def): Update unchanging flag comment.
6187 * doc/rtl.texi (INSN_ANNULLED_BRANCH_P): Update description.
6188 * reorg.c (delete_from_delay_list): INSN_ANNULLED_BRANCH_P needs
6189 to be handled to INSN too.
6190 (dbr_schedule): Likewise.
6191 * resource.c (next_insn_no_annul): Likewise.
6193 * cse.c (rtx_cost): Remove multiplication by power of 2 special
6196 2002-05-14 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
6198 * doc/install.texi (Specific, *-*-solaris2*): Update passus on
6199 setting CONFIG_SHELL to /bin/ksh and remove alternate trick to
6200 (possibly) work around broken /bin/sh.
6202 2002-05-10 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
6204 * config/mips/t-iris6 (SHLIB_SLIBDIR_SUFFIXES): Use mabi=64 and
6205 . as N64/N32 libgcc_s.so subdirs.
6207 2002-05-10 David S. Miller <davem@redhat.com>
6209 * config/sparc/sparc.md: Use define_constants for unspec numbers.
6211 * rtl.h (struct rtx_def): Document unchanging and in_struct flags
6213 (INSN_ANNULLED_BRANCH_P): Only valid for JUMP_INSN and CALL_INSN, fix
6215 (INSN_FROM_TARGET_P): Valid also for CALL_INSN.
6216 * doc/rtl.texi: Document these macros more accurately.
6217 * recog.c (whole file): Only mess with INSN_ANNULLED_BRANCH_P for
6218 JUMP_INSNs and CALL_INSNs.
6219 * resource.c (whole file): Only mess with INSN_ANNULLED_BRANCH_P
6220 or INSN_FROM_TARGET_P if the code is appropriate.
6222 2002-05-10 Marek Michalkiewicz <marekm@amelek.gda.pl>
6224 * config/avr/avr.c (print_operand): Check that addr is a SYMBOL_REF
6225 before using SYMBOL_REF_FLAG (addr).
6227 * config/avr/avr-protos.h (avr_io_address_p): Declare.
6228 * config/avr/avr.c (io_address_p): Rename to avr_io_address_p.
6229 Make non-static. Update all callers.
6230 * config/avr/avr.md (*cbi, *sbi, *sbix_branch, *sbix_branch_bit7):
6231 New insns to clear/set/test a single bit in I/O address space.
6233 2002-05-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6235 * rtl.h (ENABLE_RTL_FLAG_CHECKING): Also check for gcc >= 2.7.
6237 2002-05-09 Neil Booth <neil@daikokuya.demon.co.uk>
6239 * Makefile.in: Update.
6240 * c-common.c (flag_iso, flag_undef, cb_register_builtins,
6241 builtin_define_std): New.
6242 (c_common_init): Register CPP builtins callback.
6243 * c-common.h (flag_iso, flag_undef): New.
6244 * c-decl.c (c_decode_option): Set flag_iso and flag_undef.
6245 * c-lex.c: Don't include target.h.
6246 (cb_register_builtins): Move to c-common.c.
6247 (init_c_lex): Don't register hook here.
6248 * c-lex.h (builtin_define, builtin_assert, builtin_define_std): New.
6249 (cpp_define, cpp_assert): Remove.
6250 * gcc.c (cc1_options): Pass -undef to front end.
6251 * target-def.h (TARGET_REGISTER_CPP_BUILTINS): Remove.
6252 (TARGET_INITIALIZER): Update.
6253 * target.h (struct cpp_reader): Don't predeclare.
6254 (struct gcc_target): Remove cpp builtin hook.
6255 * tree.c (default_register_cpp_builtins): Remove.
6259 2002-05-09 Neil Booth <neil@daikokuya.demon.co.uk>
6261 * cppexp.c (_cpp_expand_op_stack): Set op_limit.
6263 2002-05-09 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
6265 * config/mips/t-iris6 (SHLIB_SLIBDIR_SUFFIXES): Define.
6266 (SHLIB_LINK, SHLIB_INSTALL): Adjust.
6268 2002-05-09 Jakub Jelinek <jakub@redhat.com>
6270 * config/sparc/t-linux64 (SHLIB_MAPFILES): Set.
6271 * config/sparc/libgcc-sparc-glibc.ver: New file.
6272 * config/cris/t-linux (SHLIB_MAPFILES): Remove.
6273 * mklibgcc.in: Preprocess SHLIB_MAPFILES with ml flags.
6275 2002-05-09 Jakub Jelinek <jakub@redhat.com>
6278 * Makefile.in (libgcc.mk): Pass SHLIB_SLIBDIR_SUFFIXES to mklibgcc.
6279 * mklibgcc.in: If SHLIB_SLIBDIR_SUFFIXES is defined, put libgcc_s
6280 shared libraries into multilib dirs, with SONAME libgcc_s.so.1 for
6282 * config/t-slibgcc-elf-ver (SHLIB_LINK): Adjust for the above.
6283 * config/t-slibgcc-sld (SHLIB_LINK): Likewise.
6284 * config/sparc/t-linux64 (SHLIB_SLIBDIR_SUFFIXES): Define.
6285 * config/sparc/t-sol2-64 (SHLIB_SLIBDIR_SUFFIXES): Define.
6287 2002-05-09 Richard Henderson <rth@redhat.com>
6289 * config/ia64/ia64.md: Use define_constants for unspec numbers.
6290 * config/ia64/ia64.c: Likewise.
6292 2002-05-09 Richard Sandiford <rsandifo@redhat.com>
6294 * config/mips/mips.c (mips_add_large_offset_to_sp): Remove FILE arg.
6295 (save_restore_insns): Likewise.
6296 (mips_expand_prologue, mips_expand_epilogue): Update callers.
6297 (highpart_shift_operator): Attach ATTRIBUTE_UNUSED to mode argument.
6299 Thu May 9 11:50:09 2002 Jeffrey A Law (law@redhat.com)
6301 * athlon.md, k6.md, pentium.md, ppro.md): New files.
6302 * i386.md: Move scheduling information into new files.
6304 * i386.md (type attribute): Add "rotate" for rotate insns.
6305 (rotate insns): Set type to "rotate".
6306 (various attributes and function units): Treat rotate like shift.
6307 (pent_pair attribute): Only rotates by one bit position are
6309 (sbb insns): Explicitly set pent_pair attribute on a couple
6310 that were missing it.
6312 Thu May 9 18:29:24 2002 J"orn Rennecke <joern.rennecke@superh.com>
6314 * sh.c (sh_builtin_saveregs): If starting with an odd fp register,
6315 make sure that buffer starts on odd word address.
6316 (sh_va_arg): Skip odd fp registers when reading a double precision
6319 2002-05-09 Neil Booth <neil@daikokuya.demon.co.uk>
6321 * tree.h (preserve_data, object_permanent_p, type_precision):
6324 2002-05-09 Neil Booth <neil@daikokuya.demon.co.uk>
6326 * cpplib.c (cpp_init_internal_pragmas): Remove #pragma poison.
6327 * cppmacro.c (paste_all_tokens): Bad pastes are a hard error.
6329 * cpp.texi: Update for removal of obsolete features.
6331 Thu May 9 07:46:18 2002 Jan Hubicka <jh@suse.cz>
6332 Jeffrey A Law (law@redhat.com)
6334 * i386.c (ia32_use_dfa_pipeline_interface): New function. Use
6335 the DFA interface for Pentium processors.
6336 (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): DEFINE.
6337 (attr_pent_pair, ix86_pent_find_pair): Remove.
6338 (ix86_sched_reorder_pentium): Remove.
6339 (ix86_sched_reorder): Remove reordering for Pentium.
6340 * i386.md (Pentium scheduling): Rewrite using DFA description.
6342 Thu May 9 14:55:39 CEST 2002 Jan Hubicka <jh@suse.cz>
6344 * cfganal.c (can_fallthru): Fix fast path.
6345 * cfgrtl.c (verify_flow_info): Avoid crash on conditionals
6346 with edges to the next block.
6348 Thu May 9 14:52:45 CEST 2002 Jan Hubicka <jh@suse.cz>
6349 Pavel Nejedly <bim@atrey.karlin.mff.cuni.cz>
6351 * final.c (end_final): Use C trees to output data structures for profiling.
6353 * Makefile.in (LIBGCC_DEPS): Added missing dependency on gcov-io.h
6354 (profile.o): New dependency profile.h
6355 (final.o): New dependency profile.h
6356 * profile.h: New file. New global structure profile_info.
6357 * final.h (count_edges_instrumented_now): Declare.
6358 (current_function_cfg_checksum): Declare.
6359 (function_list): New structure.
6360 (functions_head, functions_tail): New static variables.
6361 (end_final): Emits more data, removed some -ax stuff.
6362 (final): Stores function names and chcksums.
6363 * gcov-io.h (__write_gcov_string): New function.
6364 (__read_gcov_string): New function.
6365 * gcov.c (read_profile): New function.
6366 (create_program_flow_graph): Uses read_profile instead of reading
6368 (read_files): Removed da_file checking, it's done by read_profile now.
6369 * libgcc2.c (bb_function_info): New structure.
6370 (bb): New field in structure, removed some -ax stuff.
6371 (__bb_exit_func): Changed structure of da_file.
6372 * profile.c (count_edges_instrumented_now): New global variable.
6373 (current_function_cfg_checksum): New global variable.
6374 (max_counter_in_program): New global variable.
6375 (get_exec_counts): New function.
6376 (compute_checksum): New function.
6377 (instrument_edges): Sets count_edges_instrumented_now.
6378 (compute_branch_probabilities): Uses get_exec_counts instead of
6380 (branch_prob): Calls compute_checksum and writes extra data to bbg_file.
6381 (init_branch_prob): Removed da_file checking, done in get_exec_counts
6383 (end_branch_prob): Removed da_file checking, done in get_exec_counts
6385 * gcov.texi: Updated information about gcov file format.
6387 2002-05-09 Kazu Hirata <kazu@cs.umass.edu>
6389 * sbitmap.c: Fix formatting.
6391 * scan-decls.c: Likewise.
6392 * sched-deps.c: Likewise.
6393 * sched-ebb.c: Likewise.
6394 * sched-rgn.c: Likewise.
6395 * sched-vis.c: Likewise.
6396 * sdbout.c: Likewise.
6397 * sibcall.c: Likewise.
6398 * simplify-rtx.c: Likewise.
6400 * ssa-ccp.c: Likewise.
6401 * ssa-dce.c: Likewise.
6403 * stor-layout.c: Likewise.
6404 * stringpool.c: Likewise.
6406 2002-05-09 David S. Miller <davem@redhat.com>
6408 * config/sparc/sol2.h (ASM_CPU_SPEC): Handle -mcpu=v9.
6410 2002-05-07 David S. Miller <davem@redhat.com>
6412 * config/sparc/sparc.h (TARGET_BUGGY_QP_LIB): Define to zero.
6413 * config/sparc/sol2.h (TARGET_BUGGY_QP_LIB): Override to one.
6414 * config/sparc/sparc.c (emit_soft_tfmode_libcall): If the Qp
6415 library implementation clobbers the output before the inputs
6416 are fully consumed, use stack temporary for the output.
6418 2002-05-09 Jason Thorpe <thorpej@wasabisystems.com>
6420 * config/netbsd.h (CPP_SPEC): Remove.
6421 * config/i386/netbsd-elf.h (CPP_SPEC): Define.
6422 * config/i386/netbsd.h (CPP_SPEC): Define.
6423 * config/ns32k/netbsd.h (CPP_SPEC): Define.
6424 * config/sparc/netbsd-elf.h (CPP_SPEC): Remove.
6425 * config/sparc/netbsd.h (CPP_SPEC): Define.
6426 * config/vax/netbsd.h (CPP_SPEC): Define.
6428 2002-05-08 Kazu Hirata <kazu@cs.umass.edu>
6430 * read-rtl.c: Fix formatting.
6432 * recog.c: Likewise.
6433 * regclass.c: Likewise.
6434 * regmove.c: Likewise.
6435 * reg-stack.c: Likewise.
6436 * reload1.c: Likewise.
6437 * reload.c: Likewise.
6438 * resource.c: Likewise.
6439 * rtlanal.c: Likewise.
6441 * rtl-error.c: Likewise.
6443 2002-05-08 John David Anglin <dave@hiauly1.hia.nrc.ca>
6445 * pa/pa-64.h (MAX_WCHAR_TYPE_SIZE): Delete.
6446 * pa/pa.h (MAX_WCHAR_TYPE_SIZE): Delete.
6448 2002-05-08 Bernd Schmidt <bernds@redhat.com>
6450 * config/i386/i386.h (CPP_CPUCOMMON_SPEC): Tweak previous change to
6451 use __SSE2__ macro instead.
6452 * config/i386/xmmintrin.h: Likewise.
6454 2002-05-08 Janis Johnson <janis187@us.ibm.com>
6456 * rtl.h (RTL_FLAG_CHECK*): Add an argument for the macro name,
6457 and use it in all invocations of these macros. Clean up comments.
6458 * rtl.c (rtl_check_failed_flag): Add an argument for the name
6459 of the flag access macro whose check failed.
6460 * doc/rtl.texi (Flags): Document additional flag uses.
6462 2002-05-08 Robert Spier <rspier@pobox.com>
6463 Neil Booth <neil@daikokuya.demon.co.uk>
6465 PR preprocessor/6521
6466 * cppfiles.c (handle_missing_header): Don't do anything
6467 different for <> includes.
6469 * cppopts.texi: Update documentation for -MG.
6471 2002-05-08 Neil Booth <neil@daikokuya.demon.co.uk>
6473 * cpplex.c (cpp_interpret_charconst): Truncate as well as
6476 * cpp.texi: Clarify multichar charconst valuation.
6478 2002-05-08 Mark Mitchell <mark@codesourcery.com>
6480 * doc/invoke.texi: Document -mwindiss option.
6482 2002-05-08 Jason Merrill <jason@redhat.com>
6484 * dwarf2out.c (output_call_frame_info): Don't emit a CIE with no FDEs.
6486 * dwarf2out.c (gen_type_die): Abort on broken recursion.
6489 * dwarf2out.c (rtl_for_decl_location): Only expand INTEGER_CST and
6492 2002-05-08 Nick Clifton <nickc@cambridge.redhat.com>
6494 * config/arm/t-arm-elf (MULTILIB): Do not allow big-endian/
6495 little-endian multilibs to override arm/thumb multilibs.
6496 Do not build hardware floating point multilibs, nor apcs-26
6497 multilibs for the Thumb.
6499 2002-05-08 Mark Mitchell <mark@codesourcery.com>
6502 * varasm.c (mark_weak): New function.
6503 (merge_weak): Use it. Do not call declare_weak.
6504 (declare_weak): Use merge_weak.
6506 Wed May 8 13:12:11 CEST 2002 Jan Hubicka <jh@suse.cz>
6508 * cse.c (dead_libcall_p): Update counts.
6509 (delete_trivially_dead_insns): Update call of dead_libcall_p.
6511 Wed May 8 11:08:50 CEST 2002 Jan Hubicka <jh@suse.cz>
6513 * cfglayout.c (function_tail_eff_head): Rename to ...
6514 (function_footer): ... this one.
6515 (unlink_insn_chain): New functions.
6516 (label_for_bb): Only call block_label and emit debug message.
6517 (record_effective_endpoints): Actually unlink the headers and footers.
6518 (fixup_reorder_cahin): Re-insert the unlinked sequences.
6519 (cfg_layout_duplicate_bb): Use duplicate_insn_chain.
6520 * cfglayout.h (struct reorder_block_def): New fields footer/header;
6521 remove eff_head/eff_end.
6522 * rtl.h (set_first_insn): Declare.
6523 * emit-rtl.c (set_first_insn): New function.
6525 * cfglayout.c (fixup_reorder_chain): Dump duplicated
6526 (cfg_layout_can_duplicate_bb_p, cfg_layout_rerirect_edge,
6527 cfg_layout_duplicate_bb): New global function.
6528 (duplicate_insn_chain): New static function.
6529 * cfglayout.h (cfg_layout_can_duplicate_bb_p, cfg_layout_rerirect_edge,
6530 cfg_layout_duplicate_bb): Declare.
6531 (struct reorder_block_def): Add "original" field.
6532 * emit-rtl.c (emit_copy_of_insn_after): New function.
6533 * rtl.h (emit_copy_of_insn_after): Declare.
6535 * cfglayout.c (fixup_fallthru_exit_predecessor): Kill.
6536 (fixup_reorder_chain): properly handle edges to exit block.
6538 Wed May 8 11:10:31 CEST 2002 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
6539 Jan Hubicka <jh@suse.cz>
6541 * basic-block.h (note_prediction_to_br_prob): declare.
6542 * c-semantics.c: Inlucde predit.h
6543 (expand_stmt): predict GOTO_STMT as not taken.
6544 * cfgcleanup.c: (delete_unreachable_blocks): Make global.
6545 (cleanup_cfg): Do not free tail_recursion_list.
6546 * cfgrtl.c (can_delete_note_p): Delete NOTE_INSN_PREDICTION.
6547 (flow_delete_block): Kill predictions past end of basic block.
6548 * output.h (delete_unreachable_blocks): Declare.
6549 * predict.c (predicted_by_p, process_note_predictions,
6550 process_note_prediction, last_block_p): New function.
6551 (estimate_probability): Bypass loop on PRED_CONTINUE;
6552 do not handle noreturn heuristics; kill PRED_RETURN; add
6554 * predict.def (PRED_CONTINUE, PRED_EARLY_RETURN, PRED_GOTO,
6555 PRED_CONST_RETURN, PRED_NEGATIVE_RETURN, PRED_NULL_RETURN): New.
6556 * predict.h (IS_TAKEN): New constant.
6557 * print-rtl.c (print_rtx): Pretty print NOTE_INSN_PREDICTION.
6558 * rtl.c (NOTE_INSN_PREDICTION): New.
6559 * rtl.h (NOTE_PREDICTION, NOTE_PREDICTION_ALG, NOTE_PREDICTION_FLAGS):
6561 (insn_note): add NOTE_INSN_PREDICTION.
6562 * sibcall.c (optimize_sibling_and_tail_recursive_call): Do not build
6563 CFG; free tail_recursion_label_list.
6564 * stmt.c: Include predict.h;
6565 (return_prediction): New.
6566 (expand_value_return): Use it.
6567 * toplev.c: Lower NOTE_INSN_PREDICTION before sibcall.
6569 2002-05-08 Richard Sandiford <rsandifo@redhat.com>
6571 * config/mips/mips.md: Name the unspecs with define_constant.
6572 (*HILO_delay): Rename to 'hilo_delay' (no star).
6573 (reload_indi): Replace gen_rtx_UNSPEC with gen_hilo_delay.
6574 (reload_outdi, reload_outsi): Likewise.
6576 2002-05-07 Kazu Hirata <kazu@cs.umass.edu>
6578 * toplev.c: Fix formatting.
6580 2002-05-07 Janis Johnson <janis187@us.ibm.com>
6582 * config.in (ENABLE_RTL_FLAG_CHECKING): New.
6583 * configure.in (ac_rtlflag_checking): New.
6584 * doc/install.texi (--enable-checking): Document RTL flag checking.
6586 2002-05-07 Neil Booth <neil@daikokuya.demon.co.uk>
6588 * c-common.c (c_common_init): Set options->unsigned_wchar.
6589 * cppinit.c (cpp_create_reader): Default unsigned_wchar,
6590 group target dependencies.
6591 (init_builtins, cpp_handle_option): Update.
6592 * cpplex.c (cpp_interpret_charconst): Update.
6593 * cpplib.h (struct cpp_options): Add unsigned_wchar, rename
6594 signed_char to unsigned_char, group target dependencies.
6595 * defaults.h (WCHAR_UNSIGNED): Remove.
6596 * system.h (WCHAR_UNSIGNED, MAX_CHAR_TYPE_SIZE): Poison.
6598 * freebsd.h, interix.h, alpha/freebsd.h, arm/freebsd.h,
6599 i386/386bsd.h, i386/beos-elf.h, i386/bsd386.h, i386/cygwin.h,
6600 i386/djgpp.h, i386/freebsd-aout.h, i386/i386-interix.h,
6601 i386/win32.h, ia64/freebsd.h, mips/netbsd.h, rs6000/freebsd.h,
6602 sh/elf.h, sh/sh.h, sparc/freebsd.h: Remove WCHAR_UNSIGNED.
6604 * tm.texi: Remove MAX_CHAR_TYPE_SIZE.
6606 2002-05-07 Mark Mitchell <mark@codesourcery.com>
6608 * fixinc/inclhack.def (windiss_math1): New fix.
6609 (windiss_math2): Likewise.
6610 (windiss_valist): Likewise.
6611 * fixinc/fixincl.x: Regenerated.
6613 2002-05-07 Andreas Jaeger <aj@suse.de>
6615 * genautomata.c (output_internal_min_issue_delay_func): Add
6616 ATTRIBUTE_UNUSED to avoid warning with empty dfa.
6617 (output_internal_trans_func): Likewise.
6619 Tue May 7 10:06:22 2002 Jeffrey A Law (law@redhat.com)
6621 * pa.c (hppa_profile_hook): Use force_reg to get the address
6622 of the profile hook into an appropriate pseudo register.
6624 2002-05-07 Mark Mitchell <mark@codesourcery.com>
6626 * config/rs6000/sysv4.h (SUBTARGET_SWITCHES): Add -mwindiss.
6627 (LINK_START_SPEC): Handle it.
6628 (LINK_OS_SPEC): Likewise.
6629 (CPP_SPEC): Likewise.
6630 (STARTFILE_SPEC): Likewise.
6631 (LIB_SPEC): Likewise.
6632 (ENDFILE_SPEC): Likewise. Do not assume crtsavres.o is used on
6634 (CRTSAVRES_DEFAULT_SPEC): New macro.
6635 (LIB_WINDISS_SPEC): New macro.
6636 (CPP_OS_WINDISS_SPEC): Likewise.
6637 (STARTFILE_WINDISS_SPEC): Likewise.
6638 (ENDFILE_WINDISS_SPEC): Likewise.
6639 (LINK_START_WINDISS_SPEC): Likewise.
6640 (LINK_OS_WINDISS_SPEC): Likewise.
6641 * config/rs6000/windiss.h: New file.
6643 2002-05-07 Aldy Hernandez <aldyh@redhat.com>
6645 * config/rs6000/rs6000.c (bdesc_2arg): Fix vmax typos.
6647 2002-05-06 David S. Miller <davem@redhat.com>
6649 * config/sparc/sparc.md (shift insns): Do not mask off
6650 second operand, 'I' constraint and SHIFT_COUNT_TRUNCATED
6653 2002-05-06 Richard Henderson <rth@redhat.com>
6656 * expr.c (highest_pow2_factor_for_type): New.
6657 (expand_assignment): Use it.
6659 2002-05-06 Aldy Hernandez <aldyh@redhat.com>
6661 * config/rs6000/rs6000.md ("altivec_mtvscr"): Change to
6663 ("altivec_mfvscr"): Same.
6665 2002-05-06 Janis Johnson <janis187@us.ibm.com>
6667 * rtl.h (struct rtx_def): Update comments.
6668 (RTL_FLAG_CHECK[12345678]): New. (rtl_check_failed_flag): Declare.
6669 (RTL_FLAG): New. (CLEAR_RTX_FLAGS): New. (flag access macros): Use
6670 RTL_FLAG_CHECK macros with list of expected RTL codes.
6671 * rtl.c (copy_rtx, shallow_copy_rtx): Use RTX_FLAG macro.
6672 (rtl_check_failed_flag): New.
6673 * reload1.c (reload): Use REG macro before changing rtx to MEM.
6674 (reload_cse_noop_set_p): Check rtx code before using access macro.
6675 * config/ia64/ia64.c (process_for_unwind_directive): Check rtx code
6676 before using access macro.
6678 2002-05-06 Janis Johnson <janis187@us.ibm.com>
6680 * doc/rtl.texi (Flags): Update to reflect current usage.
6682 2002-05-06 Roger Sayle <roger@eyesopen.com>
6685 * fold-const.c (sign_bit_p): New function.
6686 (fold) [EQ_EXPR]: Use this to convert (A & C) == 0 into A >= 0 and
6687 (A & C) != 0 into A < 0, when constant C is the sign bit of A's type.
6688 Reapply fold when converting (A & C) == C into (A & C) != 0.
6689 (fold_binary_op_with_conditional_arg): Fix typo in comment.
6691 2002-05-07 Neil Booth <neil@daikokuya.demon.co.uk>
6693 * c-common.c (warn_multichar): New.
6694 (c_common_init): Set CPP's warn_multichar.
6695 * c-common.h (warn_multichar): New.
6696 * c-decl.c (warn_multichar): Remove.
6697 * c-lex.c (lex_charconst): Update.
6698 * c-tree.h (warn_multichar): Remove.
6699 * cppexp.c (eval_token): Sign-extend charconst value.
6700 * cppinit.c (cpp_create_reader): Set warn_multichar.
6701 * cpplex.c (cpp_interpret_charconst): Don't sign-extend
6702 each character. Update prototype. Sign-extend the result.
6703 * cpplib.h: Fix conditions.
6704 (struct cpp_options): Add new warning flag.
6705 (cpp_interpret_charconst): Update prototype.
6707 * cpp.texi: Update documentation.
6709 2002-05-06 Vladimir Makarov <vmakarov@redhat.com>
6711 * genautomata.c (form_the_same_automaton_unit_lists_from_regexp):
6712 Fix typo in usage of allof instead of unit.
6714 2002-05-06 Richard Henderson <rth@redhat.com>
6716 * recog.c (if_test_bypass_p): Accept multiple set insns for OUT,
6717 and any jump or call for IN.
6719 2002-05-06 Bernd Schmidt <bernds@redhat.com>
6721 * config/i386/i386.h (CPP_CPUCOMMON_SPEC): Define __SSE2_BUILTINS__ if
6723 * config/i386/xmmintrin.h: Use it to conditionalize SSE2 support.
6725 2002-05-06 Roger Sayle <roger@eyesopen.com>
6727 * fold-const.c (lshift-double): Cast the high word to an unsigned
6728 HOST_WIDE_INT when extracting sign bit to avoid compiler warning.
6729 (div_and_round_double): Cast carry to a signed HOST_WIDE_INT to
6730 avoid compiler warning. (fold): Remove redundant code from
6731 BIT_AND_EXPR as integer operands are canonicalized to be arg1.
6733 2002-05-06 Jeff Law <law@redhat.com>
6735 * pa-protos.h (hppa_fpstore_bypass_p): Declare.
6736 * pa.c (pa_adjust_cost): Remove all true dependency cost
6737 adjustments. Also remove support for non-DFA scheduling.
6738 * pa.md (700, 7100, 7100lc, 7200, 7300): Use bypass mechanism
6739 to adjust true dependency costs. Update various comments.
6740 (7100lc, 7200, 7300 scheduling): Simplify by combining the
6741 FP ALU & MPY units into a single unit.
6743 2002-05-06 Catherine Moore <clm@redhat.com>
6745 * config/v850/v850.c (compute_register_save_size): Make sure
6746 to count all of the registers that will be saved.
6748 Mon May 6 18:03:11 CEST 2002 Jan Hubicka <jh@suse.cz>
6750 * i386.c (q_regs_operand): Use ANY_QI_REGS_P.
6752 2002-05-06 David S. Miller <davem@redhat.com>
6754 * config/sparc/sparc.c (emit_soft_tfmode_libcall): Do not
6755 allow result to overlap input operands in memory.
6757 2002-05-06 Neil Booth <neil@daikokuya.demon.co.uk>
6760 * cpp.texi: Update multichar charconst docs.
6762 2002-05-06 Neil Booth <neil@daikokuya.demon.co.uk>
6764 * cpplex.c (cpp_interpret_charconst): Sign-extend each
6765 character. Don't ignore excess characters. Treat
6766 multicharacter character constants as signed.
6767 (cpp_parse_escape): Clarify diagnostic.
6769 2002-05-05 Jakub Jelinek <jakub@redhat.com>
6771 * config/sparc/sparc.md (ashlsi3): If shift count is const1_rtx,
6772 use add instead of shift.
6773 (ashldi3_sp64): Likewise.
6774 (ashlsi3_const1, ashldi3_const1): Remove.
6775 * config/sparc/sparc.h (PREDICATE_CODES): Add const1_operand.
6776 * config/sparc/sparc.c (const1_operand): New.
6778 2002-05-05 Jason Thorpe <thorpej@wasabisystems.com>
6780 * config.gcc (alpha*-*-netbsd*): Don't use crtstuff.
6782 2002-05-05 Jakub Jelinek <jakub@redhat.com>
6785 * config/sparc/sparc.md (muldi3_v8plus): Handle %1 equal to %2.
6787 2002-05-05 Richard Henderson <rth@redhat.com>
6789 * config/alpha/alpha.c (alpha_adjust_cost): Remove everything but
6790 memory latency adjustments.
6791 (alpha_variable_issue): Remove.
6792 (alpha_use_dfa_pipeline_interface): New.
6793 (alpha_multipass_dfa_lookahead): New.
6794 * config/alpha/alpha.md: Remove define_function_unit scheduling;
6795 include new dfa scheduling.
6796 (attr type): Add none.
6798 * config/alpha/ev4.md: New.
6799 * config/alpha/ev5.md: New.
6800 * config/alpha/ev6.md: New.
6802 2002-05-05 David S. Miller <davem@redhat.com>
6804 * recog.c (store_data_bypass_p): Handle CLOBBER inside PARALLEL.
6806 2002-05-05 Kazu Hirata <kazu@cs.umass.edu>
6808 * cse.c: Fix formatting.
6809 * emit-rtl.c: Likewise.
6811 2002-05-05 Vladimir Makarov <vmakarov@redhat.com>
6813 * genautomata.c (initiate_states): Add additional guard to
6814 initialize `units_array'.
6816 2002-05-05 Vladimir Makarov <vmakarov@redhat.com>
6818 * genautomata.c (form_the_same_automaton_unit_lists_from_regexp,
6819 process_unit_to_form_the_same_automaton_unit_lists,
6820 form_the_same_automaton_unit_lists
6821 check_unit_distributions_to_automata): New prototypes and
6823 (check_automata): Rename it into `check_automata_insn_issues'.
6824 (unit_decl): New fields `the_same_automaton_unit' and
6825 `the_same_automaton_message_reported_p'.
6826 (unit_decl_t): New typedef.
6827 (the_same_automaton_lists): New gloval variable.
6828 (unit_regexp, unit_set_el, units_array, units_cmp,
6829 output_get_cpu_unit_code_func): Use the typedef.
6830 (evaluate_max_reserv_cycles): Increment
6831 `description->max_insn_reserv_cycles'.
6832 (initiate_states): Don't increment `max_cycles_num'.
6833 (transform_insn_regexps): Move code around transformation of
6834 regexps from `generate'.
6835 (generate): Remove call of `transform_insn_regexps'.
6836 (expand_automata): Call `transform_insn_regexps' and
6837 `check_unit_distributions_to_automata'. Check errors before
6840 * config/sparc/ultra3.md (us3_a0, us3_a1): Move the units into
6841 automaton `ultrasparc3_1'.
6843 2002-05-05 Neil Booth <neil@daikokuya.demon.co.uk>
6845 * c-common.c (c_common_init): Set up CPP arithmetic.
6846 * cppinit.c (cpp_create_reader): Default CPP arithmetic to
6847 something reasonable for the host.
6848 (sanity_checks): Add checks.
6849 (cpp_read_main_file): Call sanity_checks() from here...
6850 (cpp_post_options): ... not here.
6851 * cpplex.c (cpp_interpret_charconst): Get max_chars right.
6852 * cpplib.h (struct cpp_options): New member int_precision.
6854 2002-05-05 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
6856 * doc/install.texi (powerpc-*-linux-gnu*): Update build requirements.
6858 2002-05-04 David S. Miller <davem@redhat.com>
6860 * config/sparc/linux.h, config/sparc/linux64.h
6861 (HANDLE_PRAGMA_PACK_PUSH_POP): Don't define twice.
6863 * config/sparc/sparc.c (sparc_rtx_costs): Describe costs of
6865 * config/sparc/sparc.h (RTX_COSTS_CASES): List those new codes.
6867 * recog.c (store_data_bypass_p): Handle out_insn being a PARALLEL
6870 2002-05-05 Tim Josling <tej@melbpc.org.au>
6872 * treelang; New directory for new sample language treelang.
6874 2002-05-04 Neil Booth <neil@daikokuya.demon.co.uk>
6876 * Makefile.in (c-lex.o): Update.
6877 * c-lex.c: Include target.h.
6878 (cb_register_builtins): New.
6879 (init_c_lex): Set builtins callback.
6880 * c-lex.h (cpp_define, cpp_assert): New prototypes.
6881 * cppinit.c (init_builtins): Use callback, including for
6883 * cpplib.h (struct cpp_callbacks): New member.
6884 * target-def.h (TARGET_REGISTER_CPP_BUILTINS): New.
6885 (TARGET_INITIALIZER): Update.
6886 * target.h (struct gcc_target): New hook.
6887 * tree.c (default_register_cpp_builtins): New.
6888 * tree.h (default_register_cpp_builtins): New.
6890 * tm.texi (TARGET_REGISTER_CPP_BUILTINS): Document.
6892 2002-05-04 Neil Booth <neil@daikokuya.demon.co.uk>
6894 * cppinit.c (MAX_WCHAR_TYPE_SIZE): Move to cpplib.h
6895 (cpp_post_options): Move sanity checks to...
6896 (sanity_checks): New.
6897 * cpplex.c (maybe_read_ucs): Fix prototype.
6898 (parse_string, cpp_parse_escape): Cast for %c format specifier.
6899 * cpplib.h (cppchar_t): Use unsigned long or unsigned long long
6902 2002-05-04 Bernd Schmidt <bernds@redhat.com>
6904 * config/i386/i386.c (bdesc_2arg): Add a couple of missing SSE2
6905 builtins. Use V2DI patterns instead of TI for logical operations.
6906 (ix86_init_mmx_sse_builtins): Add a couple of missing SSE2 builtins.
6907 Correct definitions of psadbw, pmovmskb128, movntdq, cvtdq2ps.
6908 (ix86_expand_builtins): Change the pattern used for movntdq.
6909 * config/i386/i386.md (sse2_andv2di3, sse2_iorv2di3, sse2_xorv2di3,
6910 sse2_nandv2di3): New patterns.
6911 (sse2_anddf3, sse2_nanddf3, sse2_iordf3, sse2_xordf3): Correct modes
6913 (sse2_movntv2di): Renamed from sse2_movntti and modes adjusted.
6914 (cvtdq2pd): Correct mode on operand 1.
6915 (sse2_umulsidi3): Describe without unspec.
6916 (sse2_psadbw, mmx_psadbw): Describe with unspec; use more appropriate
6918 (lshrv2di3): Renamed from sse2_lshrv2di3 and removed unspec.
6919 (ashlv2di3): Likewise, from sse2_ashlv2di3.
6920 (ashrv8hi3, ashrv4si3, lshrv8hi3, lshrv4si3, lshrv2di3, ashlv8hi3,
6921 ashlv4si3, ashlv2di3): Use SImode for shift count.
6922 (ashrv8hi3_ti, ashrv4si3_ti, lshrv8hi3_ti, lshrv4si3_ti, lshrv2di3_ti,
6923 lshrv4si3_ti, lshrv2di3_ti, ashlv8hi3_ti, ashlv4si3_ti, ashlv2di3_ti):
6925 * config/i386/xmmintrin.h (__v2df, __v2di, __v4si, __v8hi, __v16qi):
6927 (__m128i, __m128d): New macros.
6928 (_mm_add_pd, _mm_add_sd, _mm_sub_pd, _mm_sub_sd, _mm_mul_pd,
6929 _mm_mul_sd, _mm_div_pd, _mm_div_sd, _mm_sqrt_pd, _mm_sqrt_sd,
6930 _mm_min_pd, _mm_min_sd, _mm_max_sd, _mm_max_pd, _mm_and_pd,
6931 _mm_andnot_pd, _mm_xor_pd, _mm_or_pd, _mm_cmpeq_pd, _mm_cmplt_pd,
6932 _mm_cmple_pd, _mm_cmpgt_pd, _mm_cmpge_pd, _mm_cmpneq_pd,
6933 _mm_cmpnlt_pd, _mm_cmpnle_pd, _mm_cmpngt_pd, _mm_cmpnge_pd,
6934 _mm_cmpord_pd, _mm_cmpunord_pd, _mm_cmpeq_sd, _mm_cmplt_sd,
6935 _mm_cmple_sd, _mm_cmpgt_sd, _mm_cmpge_sd, _mm_cmpneq_sd,
6936 _mm_cmpnlt_sd, _mm_cmpnle_sd, _mm_cmpngt_sd, _mm_cmpnge_sd,
6937 _mm_cmpord_sd, _mm_cmpunord_sd, _mm_comieq_sd, _mm_comilt_sd,
6938 _mm_comile_sd, _mm_comigt_sd, _mm_comige_sd, _mm_comineq_sd,
6939 _mm_ucomieq_sd, _mm_ucomieq_sd, _mm_ucomilt_sd, _mm_ucomile_sd,
6940 _mm_ucomigt_sd, _mm_ucomige_sd, _mm_ucomineq_sd, _mm_cvtepi32_pd,
6941 _mm_cvtepi32_ps, _mm_cvtpd_epi32, _mm_cvtpd_pi32, _mm_cvtpd_ps,
6942 _mm_cvttpd_epi32, _mm_cvttpd_pi32, _mm_cvtpi32_pd, _mm_cvtps_epi32,
6943 _mm_cvttps_epi32, _mm_cvtps_pd, _mm_cvtsd_si32, _mm_cvttsd_si32,
6944 _mm_cvtsd_ss, _mm_cvtsi32_sd, _mm_cvtss_sd, _mm_unpackhi_pd,
6945 _mm_unpacklo_pd, _mm_loadh_pd, _mm_storeh_pd, _mm_storel_pd,
6946 _mm_movemask_pd, _mm_packs_epi16, _mm_packs_epi32, _mm_packus_epi16,
6947 _mm_unpackhi_epi8, _mm_unpackhi_epi16, _mm_unpackhi_epi32,
6948 _mm_unpacklo_epi8, _mm_unpacklo_epi16, _mm_unpacklo_epi32,
6949 _mm_add_epi8, _mm_add_epi16, _mm_add_epi32, _mm_add_epi64,
6950 _mm_adds_epi8, _mm_adds_epi16, _mm_adds_epu8, _mm_adds_epu16,
6951 _mm_sub_epi8, _mm_sub_epi16, _mm_sub_epi32, _mm_sub_epi64,
6952 _mm_subs_epi8, _mm_subs_epi16, _mm_subs_epu8, _mm_subs_epu16,
6953 _mm_madd_epi16, _mm_mulhi_epi16, _mm_mullo_epi16, _mm_mul_pu16,
6954 _mm_mul_epu16, _mm_sll_epi16, _mm_sll_epi32, _mm_sll_epi64,
6955 _mm_sra_epi16, _mm_sra_epi32, _mm_srl_epi16, _mm_srl_epi32,
6956 _mm_srl_epi64, _mm_slli_epi16, _mm_slli_epi32, _mm_slli_epi64,
6957 _mm_srai_epi16, _mm_srai_epi32, _mm_srli_epi16, _mm_srli_epi32,
6958 _mm_srli_epi64, _mm_and_si128, _mm_andnot_si128, _mm_or_si128,
6959 _mm_xor_si128, _mm_cmpeq_epi8, _mm_cmpeq_epi16, _mm_cmpeq_epi32,
6960 _mm_cmpgt_epi8, _mm_cmpgt_epi16, _mm_cmpgt_epi32, _mm_max_epi16,
6961 _mm_max_epu8, _mm_min_epi16, _mm_min_epu8, _mm_movemask_epi8,
6962 _mm_mulhi_epu16, _mm_maskmoveu_si128, _mm_avg_epu8, _mm_avg_epu16,
6963 _mm_sad_epu8, _mm_stream_si32, _mm_stream_si128, _mm_stream_pd,
6964 _mm_movpi64_epi64, _mm_clflush, _mm_lfence, _mm_mfence): New
6966 (_mm_shufflehi_epi16, _mm_shufflelo_epi16, _mm_shuffle_epi32,
6967 _mm_extract_epi16, _mm_insert_epi16, _mm_shuffle_pd): New macros.
6969 2002-05-04 Kazu Hirata <kazu@cs.umass.edu>
6971 * dwarf2out.c: Fix formatting.
6972 * varasm.c: Likewise.
6974 2002-05-04 David Edelsohn <edelsohn@gnu.org>
6977 * config/rs6000/rs6000.md (sCC pattern and splitter): Remove
6978 clobber and use result as temporary value.
6980 Sat May 4 13:20:54 CEST 2002 Jan Hubicka <jh@suse.cz>
6982 * expr.c (force_operand): Use expand_simple_* to handle more
6985 2002-05-04 Neil Booth <neil@daikokuya.demon.co.uk>
6987 * c-lex.c (lex_string): Let cpp_parse_escape handles truncation
6989 (lex_charconst): Update for change in prototype of
6990 cpp_interpret_charconst. Extend from cppchar_t to HOST_WIDE_INT
6992 * cpphash.h (BITS_PER_CPPCHAR_T): New.
6993 * cppinit.c (cpp_create_reader): Initialize them for no
6994 change in semantics.
6995 (cpp_post_options): Add sanity checks.
6996 * cpplex.c (cpp_parse_escape): Handle precision, sign-extension
6997 and truncation issues. Calculate in type cppchar_t.
6998 (MAX_CHAR_TYPE_SIZE, MAX_WCHAR_TYPE_SIZE): Remove.
6999 (cpp_interpret_charconst): Calculate in type cppchar_t. Handle
7000 run-time dependent precision correctly. Return whether the
7001 result is signed or not.
7002 * cpplib.c (dequote_string): Use cppchar_t; update.
7003 * cpplib.h (cppchar_signed_t): New.
7004 struct cpp_options): New precision members.
7005 (cpp_interpret_charconst, cpp_parse_escape): Update prototypes.
7006 * cppexp.c (eval_token): Update.
7008 2002-05-03 David S. Miller <davem@redhat.com>
7010 * config/sparc/sparc-protos.h (sparc_rtx_costs): New.
7011 * config/sparc/sparc.c (sparc_rtx_costs): New function
7012 implementing RTX_COSTS and CONST_COSTS.
7013 * config/sparc/sparc.h (CONST_COSTS): Delete.
7014 (RTX_COSTS_CASES): Define.
7015 (RTX_COSTS): Expand RTX_COSTS_CASES and use sparc_rtx_costs to do
7018 * config/sparc/sparc.md (DFA schedulers): Split out...
7019 * config/sparc/cypress.md, config/sparc/hypersparc.md,
7020 config/sparc/sparclet.md, config/sparc/supersparc.md,
7021 config/sparc/ultra1_2.md, config/sparc/ultra3.md: ... into here.
7023 * config/sparc/sparc.c (LEAF_REGISTERS): Do not do ifdef
7024 checks on it, always defined for Sparc.
7026 * config/sparc/sparc.h (REG_ALLOC_ORDER, REG_LEAF_ALLOC_ORDER):
7027 Tweak, and add more detailed comments.
7029 2002-05-03 Zack Weinberg <zack@codesourcery.com>
7031 * Re-apply patch accidentally reverted with
7032 DFA scheduler merge: remove all rules and variables to slurp
7033 source files out of libiberty and rebuild them with HOST_CC.
7034 ($(HOST_PREFIX_1)varray.o): New rule.
7035 (genattrtab rule): Word wrap.
7037 2002-05-03 Jason Thorpe <thorpej@wasabisystems.com>
7039 * config/i386/netbsd64.h (CPP_LP64_SPEC): Define.
7040 (CPP_SUBTARGET_SPEC): Define.
7041 (SUBTARGET_EXTRA_SPECS): Redefine, adding cpp_lp64 and
7042 cpp_subtarget specs.
7043 (CPP_SPEC): Redefine to include %(cpp_subtarget).
7045 2002-05-03 David S. Miller <davem@redhat.com>
7047 * target-defs.h (TARGET_SCHED_CYCLE_DISPLAY): Delete.
7048 * target.h (struct gcc_target): Delete cycle_display member.
7050 * config/ia64/ia64.c (ia64_emit_insn_before): Put it back.
7051 (rtx_needs_barrier): Delete reference to cycle_display unspec.
7052 (ia64_sched_reorder2): Mention need for cycle display handling
7053 once such notes exist.
7055 2002-05-03 Richard Henderson <rth@redhat.com>
7057 * real.c (etoasc): Strip most trailing zeros for clarity.
7058 * sched-vis.c: Include real.h.
7059 (print_value): Use REAL_VALUE_TO_DECIMAL as needed.
7060 * Makefile.in (sched-vis.o): Add real.h.
7062 2002-05-03 David S. Miller <davem@redhat.com>
7064 * haifa-sched.c (rank_for_schedule): Revert 2002-05-02 change,
7067 2002-05-03 Aldy Hernandez <aldyh@redhat.com>
7069 * config/rs6000/rs6000.c (altivec_expand_binop_builtin): Error out
7070 when we get an out of range literal.
7071 (altivec_expand_ternop_builtin): Same.
7072 (altivec_expand_unop_builtin): Same.
7073 (altivec_expand_builtin): Same, for dss.
7074 (altivec_expand_builtin): Use trees instead of rtl when
7075 determining literal argument validity.
7077 2002-05-03 David S. Miller <davem@redhat.com>
7079 Delete cycle display scheduling hook.
7080 * config/ia64/ia64.c (ia64_cycle_display,
7081 TARGET_SCHED_CYCLE_DISPLAY, ia64_emit_insn_before): Delete.
7082 (ia64_sched_reorder2): Don't check for CODE_FOR_cycle_display
7083 and use emit_insn_before instead of ia64_emit_insn_before.
7084 * config/ia64/ia64.md (unspec usage): Delete cycle display.
7085 (cycle_display): Delete insn pattern.
7086 * config/sparc/sparc.md (unspec usage): Delete cycle display.
7087 (cycle_display): Delete insn pattern.
7088 * config/sparc/sparc.c (sparc_cycle_display,
7089 TARGET_SCHED_CYCLE_DISPLAY): Delete.
7090 * doc/md.texi (cycle_display): Don't mention.
7091 * doc/tm.texi (TARGET_SCHED_CYCLE_DISPLAY): Likewise.
7093 2002-05-03 Richard Henderson <rth@redhat.com>
7095 * recog.c (store_data_bypass_p, if_test_bypass_p): New.
7096 * recog.h: Declare them.
7098 * config/sparc/sparc.c (ultrasparc_store_bypass_p): Remove.
7099 * config/sparc/sparc.md: Use store_data_bypass_p instead.
7100 * config/sparc/sparc-protos.h: Update.
7102 2002-05-03 Jason Thorpe <thorpej@wasabisystems.com>
7104 * config/sparc/netbsd-elf.c (CPP_SUBTARGET_SPEC64): Remove
7105 -D__arch64__. Add -D_LP64.
7106 (CPP_ARCH32_SPEC): Redefine to match the non-bi-arch version
7108 (CPP_ARCH64_SPEC): Likewise.
7109 (NO_BUILTIN_PTRDIFF_TYPE): Undef.
7110 (NO_BUILTIN_SIZE_TYPE): Undef.
7112 2002-05-03 Vladimir Makarov <vmakarov@redhat.com>
7114 * genautomata.c (min_issue_delay_pass_states): Change return type
7116 (min_issue_delay_pass_states): Change the algorithm.
7117 (min_issue_delay): Set up min_insn_issue_delay for the state.
7118 (output_min_issue_delay_table): Interchange the nested loops and
7119 and initiate min_insn_issue_delay for states.
7121 Fri May 3 22:59:15 CEST 2002 Jan Hubicka <jh@suse.cz>
7123 * cfgcleanup.c (try_optimize_cfg): Call merge_block only when
7126 Fri May 3 22:53:37 CEST 2002 Jan Hubicka <jh@suse.cz>
7128 * i386.c (expand_movstr, expand_clrstr): Fix inline-all-stringops
7131 2002-05-03 Richard Henderson <rth@redhat.com>
7134 * ifcvt.c (noce_try_store_flag, noce_try_store_flag_constants,
7135 noce_try_store_flag_inc, noce_try_store_flag_mask, noce_try_cmove,
7136 noce_try_cmove_arith, noce_try_minmax, noce_try_abs): Insert new
7137 code before JUMP, not EARLIEST.
7139 2002-05-03 Joseph S. Myers <jsm28@cam.ac.uk>
7141 * c-format.c (check_format_info_main): Don't check for presence of
7142 parameter for * width until after operand number has been read,
7143 and only check for it if format parameters are available.
7146 2002-05-03 Jason Thorpe <thorpej@wasabisystems.com>
7148 * config/alpha/netbsd.h (CPP_PREDEFINES): Add -D_LP64.
7149 (LINK_SPEC): Undef before defining.
7151 2002-05-03 Jakub Jelinek <jakub@redhat.com>
7153 PR preprocessor/6489
7154 * tradcpp.c (fixup_newlines): New.
7155 (main, finclude): Use it.
7157 2002-05-03 Richard Sandiford <rsandifo@redhat.com>
7159 * config/mips/elf64.h (UNIQUE_SECTION): Use mips_unique_section.
7160 * config/mips/mips.c (mips_unique_section): Strip encoding from
7163 2002-05-03 Jakub Jelinek <jakub@redhat.com>
7165 * config/i386/i386.c (ix86_expand_int_movcc): Truncate to proper
7168 2002-05-03 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7170 * doc/install.texi (Installing): Mention GCC 3.1 buildstats.
7171 (Specific): Removed buildstats references.
7172 (Specific, hppa*-hp-hpux11): Adjust for GCC versions > 3.0.
7173 (Specific, sparc-sun-solaris2*): Update 64-bit hints for GCC 3.1.
7174 Accomodate Solaris versions beyond 8.
7175 (Specific, sparc-sun-solaris2.7): Update as path for GCC 3.1.
7176 (Specific, *-*-solaris2.8): Removed, obsolete.
7178 2002-05-03 Jakub Jelinek <jakub@redhat.com>
7181 * config/sparc/sparc.h (leaf_reg_remap): Remove const.
7182 (CONDITIONAL_REGISTER_USAGE): For TARGET_FLAT make
7183 fill leaf_reg_remap with identity.
7184 * config/sparc/sparc.c (leaf_reg_remap): Remove const.
7186 2002-05-03 Kazu Hirata <kazu@cs.umass.edu>
7188 * config/h8300/crti.asm: Remove trailing spaces.
7189 * config/h8300/h8300.c: Likewise.
7190 * config/h8300/lib1funcs.asm: Likewise.
7192 2002-05-02 Jason Merrill <jason@redhat.com>
7194 * defaults.h (BOOL_TYPE_SIZE): Move default here from cp/decl.c.
7195 * c-decl.c (c_init_decl_processing): Use it.
7196 * config/rs6000/darwin.h (BOOL_TYPE_SIZE): Define to INT_TYPE_SIZE.
7197 * config/i960/i960.h (BOOL_TYPE_SIZE): Don't define.
7198 * config/mcore/mcore.h (BOOL_TYPE_SIZE): Don't define.
7200 2002-05-03 Kazu Hirata <kazu@cs.umass.edu>
7202 * regrename.c: Fix formatting.
7205 Fri May 3 13:34:43 CEST 2002 Jan Hubicka <jh@suse.cz>
7207 * i386.md (attribute memory): Handle compares properly.
7209 Fri May 3 10:51:38 CEST 2002 Jan Hubicka <jh@suse.cz>
7211 * i386.md (sse_clrsf, sse_clrsi): Set memory attribute
7214 2002-05-02 Kazu Hirata <kazu@cs.umass.edu>
7216 * function.c: Fix formatting.
7218 2002-05-02 Jan Hubicka <jh@suse.cz>
7220 * haifa-sched.c (schedule_insn): Print table of instructions and
7222 (sched_block): Do not print ready list at verbosity level 1.
7223 * sched-vis.c (print_insn): Make global.
7224 * sched-ebb.c (ebb_print_insn): Rename from...
7225 (print_insn): ... this one.
7226 * sched-int.h (print_insn): Declare
7228 2002-05-02 Richard Henderson <rth@redhat.com>
7230 * haifa-sched.c (rank_for_schedule): Skip past last_scheduled_insn
7231 emitted by cycle_display.
7233 2002-05-02 Loren J. Rittle <ljrittle@acm.org>
7235 * doc/install.texi (*-*-freebsd*): Update to latest status.
7237 2002-05-02 Jakub Jelinek <jakub@redhat.com>
7240 * config.gcc (sparc*-*-solaris2*): Set float_format to i128.
7241 * config/float-sparc.h: Assume 128-bit long double if
7242 __LONG_DOUBLE_128__ is defined.
7244 2002-05-02 Vladimir Makarov <vmakarov@redhat.com>
7246 * genattrtab.c (write_function_unit_info): Add a dummy element
7247 when num_units == 0.
7249 2002-05-02 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
7251 * predict.c: (propagate_freq, estimate_bb_frequencies): Use
7252 TYPE_MODE (double_type_node) instead of DFmode.
7254 Thu May 2 19:50:04 CEST 2002 Jan Hubicka <jh@suse.cz>
7256 * cfgrtl.c (try_redirect_by_replacing_jump): Do not kill computed
7258 * toplev.c (rest_of_compilation): Revert Richard's patch.
7260 2001-05-02 John David Anglin <dave@hiauly1.hia.nrc.ca>
7262 * pa/x-ada (ADA_CFLAGS): Rename to X_ADA_CFLAGS.
7264 2002-05-02 Catherine Moore <clm@redhat.com>
7266 * config/v850/v850.h (TRAMPOLINE_TEMPLATE): Change r5 to r20.
7268 2002-05-02 Kazu Hirata <kazu@hxi.com>
7270 * combine.c: Fix comment typos.
7272 * genautomata.c: Likewise.
7276 2002-05-02 Joseph S. Myers <jsm28@cam.ac.uk>
7278 * doc/install.texi: State GNAT version requirements.
7280 2002-05-02 Nick Clifton <nickc@cambridge.redhat.com>
7282 * config/fr30/fr30.h (GO_IF_LEGITIMATE_ADDRESS): Accept any form
7283 of the frame pointer or arg pointer register which strict register
7284 checking is not enabled.
7286 2002-05-02 Aldy Hernandez <aldyh@redhat.com>
7288 * gcc.dg/altivec-8.c: New.
7290 * config/rs6000/rs6000.c (rs6000_legitimate_address): Disallow
7291 PRE_INC and PRE_DEC for altivec modes.
7293 2002-05-01 Bruce Korb <bkorb@gnu.org>
7295 * fixinc/check.tpl(set-writable): make sure the function exists first
7296 * fixinc/inclhack.def(alpha_assert): fix test_text
7297 * fixinc/tests/base/assert.h: add in missing result
7299 2002-05-01 Jeff Law <law@redhat.com>
7301 * pa.h (EXTRA_CONSTRAINT): Don't accept PIC addresses for the
7304 2002-05-01 Joel Brobecker <brobecker@gnat.com>
7306 * dbxout.c (dbxout_type): Emit size information for range types,
7307 as well, but only when using GDB extensions.
7309 2002-05-01 Richard Henderson <rth@redhat.com>
7311 * configure.in (HAVE_GAS_HIDDEN): Replace SPARC feature test with
7312 target-independent gnu binutils date test.
7314 2002-05-01 Richard Henderson <rth@redhat.com>
7316 * cfgcleanup.c (merge_blocks_move_successor_nojumps): Emit dump
7317 info before expunging the block.
7319 2002-05-01 Jakub Jelinek <jakub@redhat.com>
7321 * cppinit.c (cpp_handle_option) [-dM]: Don't set no_output here...
7322 (cpp_post_options): ...but here. Disable -dD, -dN and -dI when
7323 -M -or -MM is in effect.
7325 2002-05-01 Zack Weinberg <zack@codesourcery.com>
7327 * config.gcc: Correct test of --enable-obsolete. Obsolete all
7328 A29k configurations.
7329 * doc/install.texi: Update to match.
7331 2002-05-01 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
7334 * varasm.c (globalize_decl): Compare DECL_ASSEMBLER_NAME to check
7335 for duplicates. Always loop over whole list.
7337 Wed May 1 10:32:37 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
7339 * reload.c (find_reloads, case 'p'): Set BADOP to 0.
7341 2002-05-01 Joel Sherrill <joel@OARcorp.com>
7343 * config/sparc/t-elf (sparc-rtems, sparc-elf): Build assembly
7346 2002-05-01 Joel Sherrill <joel@OARcorp.com>
7348 * config/arm/rtems-elf.h: Add #undef TARGET_VERSION to prevent warning.
7350 2002-05-01 David Edelsohn <edelsohn@gnu.org>
7352 * rs6000.md (abssi2_nopower): Convert to define_insn_and_split.
7353 (nabs_nopower): Same.
7354 (floatdisf2): New pattern.
7355 (absdi2): Convert to define_insn_and_split.
7360 (fix_trunctfdi2): Same.
7361 (fix_trunctfsi2): Same.
7363 2002-05-01 Joseph S. Myers <jsm28@cam.ac.uk>
7365 * doc/install.texi: Update Texinfo version requirement
7368 2002-05-01 Jakub Jelinek <jakub@redhat.com>
7370 PR target/6512, PR target/5628
7371 * config/sparc/sparc.md (movdf_insn_v9only_novis): Don't allow >= %f32
7372 when memory is not aligned.
7373 (movdf_insn_v9only_vis): Likewise.
7374 * config/sparc/sparc.h (SECONDARY_INPUT_RELOAD_CLASS): Request a FP_REGS
7375 temporary for EXTRA_FP_REGS DFmode load from unaligned memory.
7376 (SECONDARY_OUTPUT_RELOAD_CLASS): Similarly.
7378 2002-05-01 Aldy Hernandez <aldyh@redhat.com>
7380 * gcc.dg/altivec-7.c: New.
7382 * config/rs6000/altivec.h: Cleanup.
7384 2002-04-30 Aldy Hernandez <aldyh@redhat.com>
7386 * doc/invoke.texi (Option Summary): Add -mvrsave=.
7387 (RS/6000 and PowerPC Options): Document -mvrsave=.
7389 * config/rs6000/rs6000.c (rs6000_altivec_vrsave): New global.
7390 (rs6000_altivec_vrsave_string): Same.
7391 (rs6000_override_options): Call rs6000_parse_vrsave_option.
7392 (rs6000_parse_vrsave_option): New.
7393 (rs6000_stack_info): Only generate vrsave instructions when
7394 TARGET_ALTIVEC_VRSAVE.
7396 * config/rs6000/rs6000.h (TARGET_OPTIONS): Add -mvrsave= option.
7397 (rs6000_altivec_vrsave_string): Define extern.
7398 (rs6000_altivec_vrsave): Same.
7399 (TARGET_ALTIVEC_VRSAVE): New.
7401 2002-04-30 Richard Henderson <rth@redhat.com>
7404 * toplev.c (rest_of_compilation): Don't run cross-jump before
7407 2002-04-30 Tom Rix <trix@redhat.com>
7409 * regrename.c (build_def_use, copyprop_hardreg_forward_1): Sanity
7410 check which_alternative.
7412 2002-04-30 Kazu Hirata <kazu@hxi.com>
7414 * cpplex.c: Fix comment formatting.
7415 * function.c: Likewise.
7416 * integrate.c: Likewise.
7417 * regrename.c: Likewise.
7418 * sibcall.c: Likewise.
7419 * simplify-rtx.c: Likewise.
7420 * tree-inline.c: Likewise.
7422 2002-04-30 John David Anglin <dave@hiauly1.hia.nrc.ca>
7424 * config.gcc (hppa1.1-*-pro*, hppa1.1-*-osf*, hppa1.1-*-rtems*,
7425 hppa1.0-*-osf*, hppa1.1-*-bsd*, hppa1.1-*-hpux10*, hppa2*-*-hpux10*,
7426 hppa1.0-*-hpux10*, hppa*64*-*-hpux11*, hppa1.1-*-hpux11*,
7427 hppa2*-*-hpux11*, hppa1.0-*-hpux11*, hppa*-*-lites*): Define xmake_file.
7428 * pa/t-linux, pa/t-pa, pa/t-pa64, t-pro (T_ADAFLAGS): Delete.
7429 * pa/x-ada: New file. Define ADA_CFLAGS.
7431 2002-04-30 Hans-Peter Nilsson <hp@bitrange.com>
7433 * config/mmix/mmix.h (MMIX_LAST_STACK_REGISTER_REGNUM): Renamed
7434 from MMIX_LAST_REGISTER_FILE_REGNUM.
7435 (NO_IMPLICIT_EXTERN_C): Remove cryptic obsolete comment.
7436 (struct machine_function): New member highest_saved_stack_register
7437 previously static variable in mmix.c.
7438 (MACHINE_DEPENDENT_REORG): Define.
7439 * config/mmix/mmix.c (highest_saved_stack_register): Deleted.
7440 (MMIX_OUTPUT_REGNO): New.
7441 (mmix_target_asm_function_prologue): Move calculation of last used
7442 saved-stack-register into...
7443 (mmix_machine_dependent_reorg): New function. Update to also handle
7445 (mmix_print_operand): Apply MMIX_OUTPUT_REGNO when emitting
7446 register names, simplify somewhat by new variable regno.
7447 <case 'p'>: Remove fixed FIXME. Always emit highest used saved
7449 (mmix_print_operand_address): Apply MMIX_OUTPUT_REGNO when
7450 emitting register names.
7451 (mmix_asm_output_reg_push, mmix_asm_output_reg_pop): Ditto.
7452 (mmix_dbx_register_number): Apply MMIX_OUTPUT_REGNO here too.
7454 * config/mmix/mmix-protos.h (mmix_machine_dependent_reorg):
7457 * config/mmix/mmix.md ("divmoddi4"): Update head comment.
7459 2002-04-30 Richard Henderson <rth@redhat.com>
7461 * config/sparc/sparc.c (emit_soft_tfmode_libcall,
7462 emit_soft_tfmode_binop, emit_soft_tfmode_unop, emit_soft_tfmode_cvt,
7463 emit_hard_tfmode_operation, emit_tfmode_binop, emit_tfmode_unop,
7464 emit_tfmode_cvt): New.
7465 * config/sparc/sparc.md (extendsftf2, extenddftf2, trunctfsf2,
7466 trunctfdf2, floatsitf2, floatunssitf2, floatditf2, floatunsditf2,
7467 fix_trunctfsi2, fixuns_trunctfsi2, fix_trunctfdi2, fixuns_trunctfdi2,
7468 addtf3, subtf3, multf3, divtf3, sqrttf2): Use them.
7469 * config/sparc/sparc-protos.h: Update.
7471 2002-04-30 Janis Johnson <janis187@us.ibm.com>
7473 * install.texi (Final install): Add to the list of info to include
7474 in a report of a successful bootstrap, and add link to 3.1 list.
7476 Tue Apr 30 19:15:36 CEST 2002 Jan Hubicka <jh@suse.cz>
7478 * i386.md (type): Add new SSE/MMX subtypes, remove usused fop1.
7479 (mode): Add vector modes
7480 (i387): Kill attribute.
7481 (unit): New attribute.
7482 (length_immediate): Grok new types.
7483 (prefix_data16, prefix_rep, prefix_0f): Fix for SSE/MMX.
7484 (modrm): Use "unit".
7485 (memory): Handle MMX/SSE properly.
7486 (scheduling descriptions): Kill uses of fop1.
7487 (sse, mmx, fp patterns): Set type and mode properly.
7489 Tue Apr 30 09:31:59 2002 Jeffrey A Law (law@redhat.com)
7491 * pa.c (override_options): Default to PA8000 scheduling.
7492 * doc/invoke.texi (HP-PA options): Mention newly added 7300
7493 scheduling parameter.
7495 * pa.md (7100lc, 7200, 7300 scheduling): Slightly refine
7496 handling of double precision multiplies.
7498 * pa.md (7100lc, 7200, 7300 scheduling): Refine handling of
7499 fpdiv and fpsqrt instructions.
7500 (7200 & 7300 scheduling): Fix typo in handling of
7501 store-load and store-store penalties.
7503 2002-04-30 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
7505 * doc/contrib.texi (Contributors): Use MIPS instead of Mips and
7506 mips. Add two missing commas.
7508 2002-04-30 Paolo Carlini <pcarlini@unitus.it>
7510 * doc/contrib.texi (Contributors): Update Paolo Carlini's
7511 and Benjamin Kosnik's entries.
7513 2002-04-29 David S. Miller <davem@redhat.com>
7515 * config/sparc/sparc.h (BRANCH_COST, PREFETCH_BLOCK,
7516 SIMULTANEOUS_PREFETCHES): Tune for UltraSPARC-III.
7517 * config/sparc/sparc.md (call + jmp 32-bit peepholes): Likewise.
7518 * config/sparc/sparc.c (sparc_initialize_trampoline): Likewise.
7520 2002-04-29 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
7522 * combine.c (find_split_point): Use gen_int_mode.
7524 2002-04-29 Vladimir Makarov <vmakarov@redhat.com>
7526 Merging code from dfa-branch:
7528 2002-04-24 Vladimir Makarov <vmakarov@redhat.com>
7530 * genautomata.c (output_reserv_sets): Fix typo.
7532 2002-04-23 Vladimir Makarov <vmakarov@redhat.com>
7534 * genautomata.c (output_reserv_sets): Remove
7535 next_cycle_output_flag.
7537 Thu Apr 18 08:57:06 2002 Jeffrey A Law (law@redhat.com)
7539 * sched-rgn.c (init_ready_list): Make the DFA code handle
7540 USE/CLOBBER insns in the same way as the traditional
7542 (new_ready): Similarly..
7544 2002-04-17 Vladimir Makarov <vmakarov@redhat.com>
7546 * haifa-sched.c (schedule_block): Change the DFA state only after
7549 Wed Apr 17 15:38:36 2002 Jeffrey A Law (law@redhat.com)
7551 * pa.c (hppa_use_dfa_pipeline_interface): New function.
7552 (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define.
7553 (override_options): Add PA7300 scheduling support.
7554 (pa_adjust_cost): Update various comments. Properly
7555 handle anti and output dependencies when using the
7557 (pa_issue_rate): Add PA7300 scheduling support.
7558 (pa_can_combine_p): Call extract_insn before calling
7559 constrain_operands (taken from mainline tree).
7560 * pa.h (enum processor_type): Add PROCESSOR_PA7300.
7561 * pa.md (cpu attr): Add 7300. Rewrite pipeline
7562 descriptions using DFA descriptions. Add PA7300
7565 2002-03-30 David S. Miller <davem@redhat.com>
7567 Add UltraSPARC-III DFA scheduling support.
7568 * config/sparc/sparc.md (define_attr type): Add fpcrmove.
7569 Update FP conditional move on register insn patterns to use it, as
7571 (define_attr cpu): Add ultrasparc3.
7572 (define_attr us3load_type): New, update integer load patterns to
7573 set it, as appropriate.
7574 (define_automaton): Add ultrasparc3_0 and ultrasparc3_1.
7575 (rest): Add UltraSPARC3 scheduling description.
7576 * config/sparc/sparc.h (TARGET_CPU_ultrasparc3): New.
7577 (PROCESSOR_ULTRASPARC3): New.
7578 ({ASM,CPP}_CPU64_DEFAULT_SPEC): Handle ultrasparc3.
7579 ({ASM,CPP}_CPU_SPEC): Likewise.
7580 (REGISTER_MOVE_COST): Likewise.
7581 (RTX_COSTS): Likewise.
7582 * config/sparc/sparc.c (sparc_override_options,
7583 sparc_initialize_trampoline, sparc64_initialize_trampoline,
7584 sparc_use_dfa_pipeline_interface, sparc_use_sched_lookahead,
7585 sparc_issue_rate): Likewise.
7586 * config/sparc/sol2.h: Likewise.
7587 * config/sparc/sol2-sld-64.h: Likewise.
7588 * config/sparc/linux64.h: Likewise.
7590 2002-03-22 Vladimir Makarov <vmakarov@redhat.com>
7592 * doc/md.texi: Add comments about usage the latency time for the
7593 different dependencies and about case when two or more conditions
7594 in different define_insn_reservations returns TRUE for an insn.
7596 * doc/md.texi: Add reference for automaton based pipeline
7599 2002-03-04 Vladimir Makarov <vmakarov@redhat.com>
7601 * doc/passes.texi: Add missed information about genattrtab.
7603 2002-03-01 Vladimir Makarov <vmakarov@redhat.com>
7605 * genautomata.c (output_automata_list_transition_code): Check
7606 automata_list on NULL.
7608 2002-02-28 Vladimir Makarov <vmakarov@redhat.com>
7610 * genautomata.c (output_insn_code_cases,
7611 output_automata_list_min_issue_delay_code,
7612 output_automata_list_transition_code,
7613 output_automata_list_state_alts_code): Comment the functions.
7615 2002-02-22 Vladimir Makarov <vmakarov@redhat.com>
7617 * genautomata.c (automata_list_el_t): New typedef.
7618 (get_free_automata_list_el,free_automata_list_el,
7619 free_automata_list, automata_list_hash, automata_list_eq_p,
7620 initiate_automata_lists, automata_list_start, automata_list_add,
7621 automata_list_finish, finish_automata_lists,
7622 output_insn_code_cases, output_automata_list_min_issue_delay_code,
7623 output_automata_list_transition_code,
7624 output_automata_list_state_alts_code, add_automaton_state,
7625 form_important_insn_automata_lists): New functions and prototypes.
7626 (insn_reserv_decl): Add members important_automata_list and
7628 (ainsn): Add members important_p.
7629 (automata_list_el): New structure.
7630 (first_free_automata_list_el, current_automata_list,
7631 automata_list_table): New global variables.
7632 (create_ainsns): Initiate member important_p.
7633 (output_internal_min_issue_delay_func): Generate the switch and
7634 call output_insn_code_cases.
7635 (output_internal_trans_func, output_internal_state_alts_func):
7637 (generate): Call initiate_automata_lists.
7638 (automaton_states): New global variable.
7639 (expand_automata): Call form_important_insn_automata_lists.
7640 (write_automata): Call finish_automata_lists.
7642 2002-02-21 Vladimir Makarov <vmakarov@redhat.com>
7644 * genautomata.c (add_excls, add_presence_absence): Check that
7645 cpu units in the sets belong the same automaton.
7647 * rtl.def (EXCLUSION_SET, PRESENCE_SET, ABSENCE_SET): Add comment
7648 about that cpu units in the sets belong the same automaton.
7650 * doc/md.texi: Ditto.
7652 2001-12-20 Naveen Sharma <naveens@noida.hcltech.com>
7653 Nitin Gupta <niting@noida.hcltech.com>
7655 * config/sh/sh.c (sh_use_dfa_interface): New function.
7657 (sh_issue_rate): New Function.
7658 TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE: define.
7659 TARGET_SCHED_ISSUE_RATE: define.
7661 * config/sh/sh.md: Add DFA based pipeline description for SH4.
7663 (define_attr insn_class): New attribute used for DFA
7665 (define_insn cmpgtsi_t): Set attribute insn_class mt_group.
7666 (cmpgesi_t,cmpgtusi_t,cmpgeusi_t,cmpeqsi_t,
7667 cmpeqdi_t): Likewise.
7669 (add,addc1,addsi3,subc,subc1,*subsi3_internal,
7670 negc,negsi2,ashldi3_k,lshrdi3_k,ashrdi3_k): Set insn_class
7672 (iorsi3,rotlsi3_1,rotlsi3_31,rotlsi3_16): Likewise.
7674 2001-10-03 Vladimir Makarov <vmakarov@toke.toronto.redhat.com>
7676 * haifa-sched.c (queue_to_ready): Remove unnecessary condition for
7679 2001-10-03 Vladimir Makarov <vmakarov@toke.toronto.redhat.com>
7681 * genautomata.c (DFA_INSN_CODES_LENGTH_VARIABLE_NAME): New macro.
7682 (output_dfa_insn_code_func): Expand dfa_insn_codes if it is
7684 (output_dfa_start_func): Initiate new variable insn_codes_length,
7685 (write_automata): Output definition of the new variable.
7687 2001-10-02 David S. Miller <davem@redhat.com>
7689 * haifa-sched.c (advance_one_cycle): New function.
7690 (schedule_block): Use it.
7691 (queue_to_ready): Use it, and also make sure to advance the DFA
7692 state on all stall cycles, not just those where insn_queue links
7695 2001-10-02 Richard Sandiford <rsandifo@redhat.com>
7697 * haifa-sched.c (max_issue): Remove last_p argument. Only return
7698 non-zero if the highest-priority instruction could be scheduled.
7699 (choose_ready): Remove last argument from max_issue call.
7701 2001-09-28 David S. Miller <davem@redhat.com>
7703 * config/sparc/sparc.c (sparc_use_sched_lookahead): Use 4 for
7704 ultrasparc and 3 for other multi-issue sparcs.
7706 2001-09-27 David S. Miller <davem@redhat.com>
7708 * config/sparc/sparc.md (cycle_display): New pattern.
7709 * config/sparc/sparc.c (sparc_cycle_display): New.
7710 (TARGET_SCHED_CYCLE_DISPLAY): Set it.
7712 2001-09-25 David S. Miller <davem@redhat.com>
7714 Convert all of Sparc scheduling to DFA
7715 * config/sparc/sparc.md: Kill all define_function_unit
7716 directives and replace with DFA equivalent.
7717 * config/sparc/sparc.c (ultrasparc_adjust_cost,
7718 mark_ultrasparc_pipeline_state, ultra_cmove_results_ready_p,
7719 ultra_fpmode_conflict_exists, ultra_find_type,
7720 ultra_build_types_avail, ultra_flush_pipeline,
7721 ultra_rescan_pipeline_state, ultrasparc_sched_reorder,
7722 ultrasparc_variable_issue, ultrasparc_sched_init,
7723 sparc_variable_issue, sparc_sched_reorder, ultra_code_from_mask,
7724 ultra_schedule_insn, ultra_code_names, ultra_pipe_hist,
7725 ultra_cur_hist, ultra_cycles_elapsed): Kill.
7726 (sparc_use_dfa_pipeline_interface, sparc_use_sched_lookahead,
7727 ultrasparc_store_bypass_p): New.
7728 * config/sparc/sparc-protos.h (ultrasparc_store_bypass_p):
7731 2001-09-24 David S. Miller <davem@redhat.com>
7733 * haifa-sched.c (ready_remove): Fix thinko, we want to copy around
7734 ready->vec[foo] not ready[foo].
7736 2001-09-07 Vladimir Makarov <vmakarov@redhat.com>
7738 * doc/md.texi: Correct examples for define_insn_reservations
7741 2001-09-07 Vladimir Makarov <vmakarov@redhat.com>
7743 * genautomata.c (create_automata): Print message about creation of
7745 (generate): Remove printing meease about creation of
7748 2001-09-05 David S. Miller <davem@redhat.com>
7750 * config/sparc/linux.h: Set CPLUSPLUS_CPP_SPEC.
7751 * config/sparc/linux64.h: Likewise.
7753 2001-08-31 Vladimir Makarov <vmakarov@redhat.com>
7755 * haifa-sched.c (insn_cost, schedule_insn, queue_to_ready,
7756 schedule_block, sched_init, sched_finish): Add missed calls of
7757 use_dfa_pipeline_interface.
7759 * sched-rgn.c (init_ready_list, new_ready, debug_dependencies):
7762 * sched-vis.c (get_visual_tbl_length): Ditto.
7764 2001-08-27 Richard Henderson <rth@redhat.com>
7766 * genattr.c (main): Emit state_t even when not doing scheduling.
7768 2001-08-27 Richard Henderson <rth@redhat.com>
7770 * genautomata.c (expand_automata): Always create a description.
7772 2001-08-27 Vladimir Makarov <vmakarov@touchme.toronto.redhat.com>
7774 * rtl.def (DEFINE_CPU_UNIT, DEFINE_QUERY_CPU_UNIT, EXCLUSION_SET,
7775 PRESENCE_SET, ABSENCE_SET, DEFINE_BYPASS, DEFINE_AUTOMATON,
7776 AUTOMATA_OPTION, DEFINE_RESERVATION, DEFINE_INSN_RESERVATION): New
7779 * genattr.c (main): New variable num_insn_reservations. Increase
7780 it if there is DEFINE_INSN_RESERVATION. Output automaton based
7781 pipeline hazard recognizer interface.
7783 * genattrtab.h: New file.
7785 * genattrtab.c: Include genattrtab.h.
7786 (attr_printf, check_attr_test, make_internal_attr,
7787 make_numeric_value): Move protypes into genattrtab.h. Define them
7789 (num_dfa_decls): New global variable.
7790 (main): Process DEFINE_CPU_UNIT, DEFINE_QUERY_CPU_UNIT,
7791 DEFINE_BYPASS, EXCLUSION_SET, PRESENCE_SET, ABSENCE_SET,
7792 DEFINE_AUTOMATON, AUTOMATA_OPTION, DEFINE_RESERVATION,
7793 DEFINE_INSN_RESERVATION. Call expand_automata and write_automata.
7795 * genautomata.c: New file.
7797 * rtl.h (LINK_COST_ZERO, LINK_COST_FREE): Remove them.
7799 * sched-int.h: (curr_state): Add the external definition for
7800 automaton pipeline interface.
7801 (haifa_insn_data): Add comments for members blockage and units.
7803 * target-def.h (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE,
7804 TARGET_SCHED_INIT_DFA_PRE_CYCLE_INSN,
7805 TARGET_SCHED_DFA_PRE_CYCLE_INSN,
7806 TARGET_SCHED_INIT_DFA_POST_CYCLE_INSN,
7807 TARGET_SCHED_DFA_POST_CYCLE_INSN,
7808 TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD,
7809 TARGET_SCHED_INIT_DFA_BUBBLES, TARGET_SCHED_DFA_BUBBLE): New
7811 (TARGET_SCHED): Use the new macros.
7813 * target.h (use_dfa_pipeline_interface, init_dfa_pre_cycle_insn,
7814 dfa_pre_cycle_insn, init_dfa_post_cycle_insn, dfa_post_cycle_insn,
7815 first_cycle_multipass_dfa_lookahead, init_dfa_bubbles,
7816 dfa_bubble): New members in gcc_target.sched.
7818 * haifa-sched.c (insert_schedule_bubbles_p): New variable.
7819 (MAX_INSN_QUEUE_INDEX): New macro for automaton interface.
7820 (insn_queue): Redefine it as pointer to array.
7821 (NEXT_Q, NEXT_Q_AFTER): Use MAX_INSN_QUEUE_INDEX instead of
7823 (max_insn_queue_index_macro_value): New variable.
7824 (curr_state, dfa_state_size, ready_try): New varaibles for
7825 automaton interface.
7826 (ready_element, ready_remove, max_issue): New function prototypes
7827 for automaton interface.
7828 (choose_ready): New function prototype.
7829 (insn_unit, blockage_range): Add comments.
7830 (unit_last_insn, unit_tick, unit_n_insns): Define them for case
7831 FUNCTION_UNITS_SIZE == 0.
7832 (insn_issue_delay, actual_hazard_this_instance, schedule_unit,
7833 actual_hazard, potential_hazard): Add comments.
7834 (insn_cost): Use cost -1 as undefined value. Remove
7835 LINK_COST_ZERO and LINK_COST_FREE. Add new code for automaton
7837 (ready_element, ready_remove): New functions for automaton
7839 (schedule_insn): Add new code for automaton pipeline interface.
7840 (queue_to_ready): Add new code for automaton pipeline interface.
7841 Use MAX_INSN_QUEUE_INDEX instead of INSN_QUEUE_SIZE.
7842 (debug_ready_list): Print newline when the queue is empty.
7843 (max_issue): New function for automaton pipeline interface.
7844 (choose_ready): New function.
7845 (schedule_block): Add new code for automaton pipeline interface.
7846 Print ready list before scheduling each insn.
7847 (sched_init): Add new code for automaton pipeline interface.
7848 Initiate insn cost by -1.
7849 (sched_finish): Free the current automaton state and finalize
7850 automaton pipeline interface.
7852 * sched-rgn.c: Include target.h.
7853 (init_ready_list, new_ready, debug_dependencies): Add new code for
7854 automaton pipeline interface.
7856 * sched-vis.c: Include target.h.
7857 (get_visual_tbl_length): Add code for automaton interface.
7858 (target_units, print_block_visualization): Add comments.
7860 * Makefile.in (GETRUNTIME, HASHTAB, HOST_GETRUNTIME, HOST_HASHTAB,
7861 USE_HOST_GETRUNTIME, USE_HOST_HASHTAB, HOST_VARRAY): New variables.
7862 (sched-rgn.o, sched-vis.o): Add new dependency file target.h.
7863 (getruntime.o, genautomata.o): New entries.
7864 (genattrtab.o): Add new dependency file genattrtab.h.
7865 (genattrtab): Add new dependencies. Link it with `libm.a'.
7866 (getruntime.o, hashtab.o): New entries for canadian cross.
7868 * doc/md.texi: Description of automaton based model.
7870 * doc/tm.texi (TARGET_SCHED_ISSUE_RATE, TARGET_SCHED_ADJUST_COST):
7872 (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE,
7873 TARGET_SCHED_DFA_PRE_CYCLE_INSN,
7874 TARGET_SCHED_INIT_DFA_PRE_CYCLE_INSN,
7875 TARGET_SCHED_DFA_POST_CYCLE_INSN,
7876 TARGET_SCHED_INIT_DFA_POST_CYCLE_INSN,
7877 TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD,
7878 TARGET_SCHED_INIT_DFA_BUBBLES, TARGET_SCHED_DFA_BUBBLE): The new
7880 (TRADITIONAL_PIPELINE_INTERFACE, DFA_PIPELINE_INTERFACE,
7881 MAX_DFA_ISSUE_RATE): New macro descriptions.
7883 * doc/contrib.texi: Add dfa based scheduler contribution.
7885 * doc/gcc.texi: Add more information about genattrtab.
7887 Mon Apr 29 17:19:10 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
7889 * reload1.c (eliminate_regs, case SUBREG): Fix typo in
7890 adjust_address_nv call.
7892 2002-04-29 Janis Johnson <janis187@us.ibm.com>
7894 * doc/install.texi (Testing): Provide additional information, and
7895 a stronger encouragement, for running the testsuites.
7897 2002-04-29 DJ Delorie <dj@redhat.com>
7899 * config/mips/mips.c (mips_parse_cpu): Warn if the CPU name is
7900 given in upper case.
7902 2002-04-29 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7904 * fixinc/inclhack.def (solaris_widec): Include <wchar.h> in
7905 Solaris 2 <widec.h> if missing.
7906 * fixinc/fixincl.x: Regenerate.
7907 * fixinc/tests/base/widec.h: New file.
7909 2002-04-29 Nick Clifton <nickc@cambridge.redhat.com>
7911 * toplev.c (f_options): Add "profile" switch so that
7912 -fno-profile can be used to disable -p.
7914 2002-04-29 Bernd Schmidt <bernds@redhat.com>
7916 * c-common.c (type_for_mode): Add support for V2DFmode, V2DImode,
7918 * tree.c (build_common_tree_nodes_2): Likewise.
7919 * tree.h (enum tree_index): Likewise.
7920 (V2DF_type_node, V2DI_type_node, unsigned_V2DI_type_node): Define.
7922 * config/i386/i386.c (bdesc_comi, bdesc_2arg, bdesc_1arg): Add SSE2
7924 (init_mmx_sse_builtins): Initialize SSE2 builtins.
7925 (ix86_expand_builtin): Add support for SSE2 builtins.
7926 * config/i386/i386.h (VALID_SSE2_REG_MODE): New macro.
7927 (VALID_SSE_REG_MODE): Use it.
7928 (VECTOR_MODE_SUPPORTED_P): Allow SSE2 modes here as well.
7929 (enum ix86_builtins): Add SSE2 builtins.
7930 * config/i386/i386.md (movv2df_internal, movv2df, movv8hi_internal,
7931 movv8hi, movv16qi_internal, movv16qi, pushv2df, pushv8hi, pushv16qi,
7932 addv2df3, vmaddv2df3, subv2df3, vmsubv2df3, mulv2df3, vmmulv2df3,
7933 divv2df3, vmdivv2df3, smaxv2df3, vmsmaxv2df3, sminv2df3, vmsminv2df3,
7934 sse2_anddf3, sse2_nanddf3, sse2_iordf3, sse2_xordf3, sqrtv2df2,
7935 vmsqrtv2df2, maskcmpv2df3, maskncmpv2df3, vmmaskcmpv2df3,
7936 vmmaskncmpv2df3, sse2_comi, sse2_ucomi, sse2_movmskpd, sse2_pmovmskb,
7937 sse2_maskmovdqu, sse2_movntv2df, sse2_movntti, sse2_movntsi, cvtdq2ps,
7938 cvtps2dq, cvttps2dq, cvtdq2pd, cvtpd2dq, cvttpd2dq, cvtpd2pi,
7939 cvttpd2pi, cvtpi2pd, cvtsd2si, cvttsd2si, cvtsi2sd, cvtsd2ss,
7940 cvtss2sd, cvtpd2ps, cvtps2pd, addv16qi3, addv8hi3, addv4si3, addv2di3,
7941 ssaddv16qi3, ssaddv8hi3, usaddv16qi3, usaddv8hi3, subv16qi3, subv8hi3,
7942 subv4si3, subv2di3, sssubv16qi3, sssubv8hi3, ussubv16qi3, ussubv8hi3,
7943 mulv8hi3, smulv8hi3_highpart, umulv8hi3_highpart, sse2_umulsidi3,
7944 sse2_umulv2siv2di3, sse2_pmaddwd, sse2_clrti, sse2_uavgv16qi3,
7945 sse2_uavgv8hi3, sse2_psadbw, sse2_pinsrw, sse2_pextrw, sse2_pshufd,
7946 sse2_pshuflw, sse2_pshufhw, eqv16qi3, eqv8hi3, eqv4si3, gtv16qi3,
7947 gtv8hi3, gtv4si3, umaxv16qi3, smaxv8hi3, uminv16qi3, sminv8hi3,
7948 ashrv8hi3, ashrv4si3, lshrv8hi3, lshrv4si3, sse2_lshrv2di3,
7949 ashlv8hi3, ashlv4si3, sse2_ashlv2di3, sse2_ashlti3, sse2_lshrti3,
7950 sse2_unpckhpd, sse2_unpcklpd, sse2_packsswb, sse2_packssdw,
7951 sse2_packuswb, sse2_punpckhbw, sse2_punpckhwd, sse2_punpckhdq,
7952 sse2_punpcklbw, sse2_punpcklwd, sse2_punpckldq, sse2_movapd,
7953 sse2_movupd, sse2_movdqa, sse2_movdqu, sse2_movdq2q, sse2_movq2dq,
7954 sse2_movhpd, sse2_movlpd, sse2_loadsd, sse2_movsd, sse2_storesd,
7955 sse2_shufpd, sse2_clflush, sse2_mfence, mfence_insn, sse2_lfence,
7956 lfence_insn): New patterns.
7957 (sse2_andti3, sse2_nandti3, sse2_iorti3, sse2_xorti3): Renamed from
7958 sse_andti3_sse2, sse_nandti3_sse2, sse_iorti3_sse2, sse_xorti3_sse2.
7960 Mon Apr 29 17:03:24 CEST 2002 Jan Hubicka <jh@suse.cz>
7962 * i386.md (sse_mov?fcc*): Revert patch of Mar 14th.
7964 2002-04-29 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
7966 * doc/contrib.texi (Contributors): Add Paolo Carlini and
7968 Update Richard Henderson, Jakub Jelinek, and Mark Mitchell.
7969 Refer to Objective-C instead of ObjC, SPARC instead of sparc,
7970 and CPU instead of cpu.
7972 Mon Apr 29 13:36:41 CEST 2002 Jan Hubicka <jh@suse.cz>
7974 * toplev.c (flag_if_conversion, flag_if_conversion2): New static
7976 (lang_independent_options): Add -fif-conversion, -fif-conversion2
7977 (rest_of_compilation): Do if conversion only when asked for.
7978 (parse_options_and_default_flags): Set new variables to 1 for -O1
7979 * invoke.texi (-fif-conversion, -fif-conversion2): Document.
7981 Mon Apr 29 13:02:50 CEST 2002 Jan Hubicka <jh@suse.cz>
7983 * i386.c (dbx64_register_map): Fix typo.
7985 Mon Apr 29 12:18:35 CEST 2002 Jan Hubicka <jh@suse.cz>
7987 * predict.c (real_zero, real_one, real_almost_one, real_br_prob_base,
7988 real_one_half, real_bb_freq_max): New static variables.
7989 (debug_profile_bbauxs): Kill.
7990 (process_note_predictions): Kill unused variable.
7991 (block_info_def, edge_info_def): Use REAL_VALUE_TYPE instead of
7993 (propagate_freq): Use REAL_ARITHMETICS.
7994 (estimate_bb_frequencies): Likevise; init new static variables.
7995 * Makefile.in (predict.o): Add dependency on real.h
7997 2002-04-28 David S. Miller <davem@redhat.com>
8000 * config/sparc/sparc.md (prefetch): Emit properly for 32-bit vs.
8001 64-bit TARGET_V9. Do not use prefetch page, use prefetch for
8002 several {reads,writes} instead.
8003 * config/sparc/sparc.h (PREFETCH_BLOCK, SIMULTANEOUS_PREFETCHES):
8006 2002-04-27 David S. Miller <davem@redhat.com>
8009 * config/sparc/linux64.h (MD_FALLBACK_FRAME_STATE_FOR): Be mindful
8012 * config/sparc/linux.h, config/sparc/linux64.h: Don't bother
8013 including signal.h and sys/ucontext.h, not needed.
8015 2002-04-29 Hans-Peter Nilsson <hp@bitrange.com>
8017 * varasm.c (output_constant_def): Correct test for not calling
8018 ENCODE_SECTION_INFO for INTEGER_CST.
8020 2002-04-29 Neil Booth <neil@daikokuya.demon.co.uk>
8022 * cppexp.c (lex): Move some code to _cpp_parse_expr, but
8023 keep most cases as function eval_token.
8024 (eval_token): New function.
8025 (_cpp_parse_expr): Read token here for improved diagnostics.
8026 Don't use op_as_text. Detect bad ':' here.
8027 (reduce): Don't detect bad ':' here.
8028 (op_as_text): Remove.
8029 * cpphash.h (_cpp_test_assertion): Change prototype.
8030 * cpplib.c (_cpp_test_assertion): Change prototype.
8032 2002-04-28 Richard Henderson <rth@redhat.com>
8035 * ggc-common.c (ggc_mark_rtx_children_1): Rename from...
8036 (ggc_mark_rtx_children): New.
8038 2002-04-28 Jakub Jelinek <jakub@redhat.com>
8041 * config/sparc/sparc.md (call + jump 32-bit peepholes): Disable jump
8042 after call peepholes for UltraSPARC.
8043 (call + jump 64-bit peepholes): Remove.
8045 2002-04-28 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
8048 * config/rs6000/rs6000.md (sCC patterns): Remove clobber and use
8049 result as temporary value.
8051 2002-04-28 Jakub Jelinek <jakub@redhat.com>
8054 * toplev.c (rest_of_compilation): Only run regrename and copy
8055 propagation if optimizing.
8057 2002-04-28 Jakub Jelinek <jakub@redhat.com>
8059 PR optimization/6475
8060 * reload1.c (alter_reg): Only call set_mem_expr if I is home pseudo
8061 register of REGNO_DECL (i).
8062 * Makefile.in (reload1.o): Add $(TREE_H).
8064 2002-04-28 Neil Booth <neil@daikokuya.demon.co.uk>
8066 * cppexp.c (lex): Update to use state.skip_eval.
8067 (struct op): Remove prio and flags members.
8068 (FLAG_BITS, FLAG_MASK, PRIO_SHIFT, EXTRACT_PRIO, EXTRACT_FLAGS,
8069 SHORT_CIRCUIT, RIGHT_ASSOC, ..._PRIO, op_to_prio): Remove.
8070 (LEFT_ASSOC): New macro.
8071 (optab): New table of operator priorities and flags.
8073 (_cpp_parse_expr): Clean up logic. Return bool. Use a
8074 malloc-ed parser stack.
8075 (reduce): New; reduce the operator stack.
8076 (_cpp_expand_op_stack): Expand the operator stack as necessary.
8077 * cpphash.h (struct op): Predeclare.
8078 (struct cpp_reader): New members op_stack, op_limit.
8079 (struct lexer_state): New member skip_eval.
8080 (_cpp_parse_expr): Update.
8081 (_cpp_expand_op_stack): New.
8082 * cpplib.c (do_if): Update.
8083 * cppinit.c (cpp_create_reader): Create op stack.
8084 (cpp_destroy): And destroy it.
8085 * cpplib.h (CPP_LAST_CPP_OP): Correct.
8086 (TTYPE_TABLE): Correct.
8088 2002-04-28 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
8091 * c-decl.c (duplicate_decls): Call merge_weak.
8092 * c-pragma.c (apply_pragma_weak): Warn about misuse.
8093 * output.h (merge_weak): Prototype merge_weak.
8094 * varasm.c (merge_weak): New function.
8095 (declare_weak): Make sure we don't give an error on VAR_DECLs.
8096 Mark RTL with SYMBOL_REF_WEAK.
8098 2002-04-27 Kurt Garloff <garloff@suse.de>
8100 * tree-inline.c (inlinable_function_p): Improve heuristics
8101 by using a smoother function to cut down allowable inlinable size.
8102 * param.def: Add parameters max-inline-insns-single,
8103 max-inline-slope, min-inline-insns that determine the exact
8104 shape of the above function.
8105 * param.h: Likewise.
8107 2002-04-26 Richard Henderson <rth@redhat.com>
8109 * c-parse.in (malloced_yyss, malloced_yyvs): New.
8110 (yyoverflow): Re-add. Set them.
8111 (free_parser_stacks): New.
8112 * c-common.h: Declare it.
8113 * c-lex.c (c_common_parse_file): Call it.
8115 2002-04-26 Richard Henderson <rth@redhat.com>
8117 * cfgrtl.c (tidy_fallthru_edge): Don't use next_real_insn
8118 for fallthru search.
8120 2002-04-26 Eric Christopher <echristo@redhat.com>
8122 PR optimization/3700
8123 * config/mips/mips.c (mips_issue_rate): Define. New function.
8124 (TARGET_SCHED_ISSUE_RATE): Use.
8126 2002-04-25 David S. Miller <davem@redhat.com>
8129 * reorg.c (optimize_skip): Do not allow exception causing
8130 instructions to be considered for delay slots.
8131 (fill_simply_delay_slots, fill_slots_from_thread): Likewise.
8132 (relax_delay_slots): Do not try to consider exception causing
8133 instructions as redundant.
8135 2002-04-26 Richard Henderson <rth@redhat.com>
8138 * c-typeck.c (build_unary_op) [CONVERT_EXPR]: Invoke non_lvalue.
8140 2002-04-26 Mark Mitchell <mark@codesourcery.com>
8143 * config/i386/i386.md (untyped_call): Return the value in a float
8144 register if TARGET_FLOAT_RETURNS_IN_80387, not just if
8147 2002-04-26 Alexandre Oliva <aoliva@redhat.com>
8149 * tree.c (tree_int_cst_lt): Compare constants whose types differ
8150 in unsigned-ness correctly.
8152 2002-04-26 John David Anglin <dave@hiauly1.hia.nrc.ca>
8154 * pa.h (FUNCTION_OK_FOR_SIBCALL): Don't do sibcalls when using the
8155 portable runtime model.
8157 2002-04-26 Richard Henderson <rth@redhat.com>
8159 * c-parse.in (yyoverflow): Revert.
8161 2002-04-26 David Edelsohn <edelsohn@gnu.org>
8162 Richard Henderson <rth@redhat.com>
8164 * config/rs6000/rs6000.md (sCC pattern): Remove clobber and use
8165 result as temporary value.
8167 2002-04-26 Richard Henderson <rth@redhat.com>
8170 * c-common.c (fix_string_type): Split out of ...
8171 (combine_strings): ... here. Take a varray, not a tree list.
8172 (c_expand_builtin_printf): Use fix_string_type.
8173 * c-common.h: Update decls.
8174 * c-parse.in (string): Remove. Update all uses to use STRING
8175 instead, and not call combine_strings.
8178 * c-typeck.c (simple_asm_stmt): Don't call combine_strings.
8179 (build_asm_stmt): Likewise.
8180 * objc/objc-act.c (my_build_string): Use fix_string_type.
8181 (build_objc_string_object): Build varray for combine_strings.
8183 2002-04-26 Bo Thorsen <bo@suse.co.uk>
8185 * config/i386/linux64.h (MD_FALLBACK_FRAME_STATE_FOR): Define for
8188 2002-04-26 Neil Booth <neil@daikokuya.demon.co.uk>
8190 * cppexp.c (CPP_UMINUS, CPP_UPLUS): New.
8191 (HAVE_NO_R_OPERAND): Remove.
8192 (HAVE_VALUE): Remove.
8193 (op_to_prio): Update.
8194 (UNARY): Don't alter flags.
8195 (_cpp_parse_expr): want_value used to indicate whether
8196 a number or unary operator is expected next. Distinguish
8197 unary and binary +/-.
8198 (op_as_text): Update for unary operators.
8200 2002-04-25 Richard Henderson <rth@redhat.com>
8203 * c-parse.in (yyoverflow): New.
8205 2002-04-25 Richard Henderson <rth@redhat.com>
8208 * c-common.c (shorten_compare): Simplfy conditions leading to
8209 the generation of a warning.
8211 2002-04-25 Richard Henderson <rth@redhat.com>
8214 * expmed.c (extract_bit_field): Fall through to generic code rather
8215 than aborting on subreg special case.
8217 2002-04-25 David S. Miller <davem@redhat.com>
8219 * config/sparc/sparc.h (FUNCTION_OK_FOR_SIBCALL): Add back check
8220 for DECL being NULL.
8222 2002-04-25 Steve Christiansen <smc@us.ibm.com>
8224 * doc/md.texi (Machine Constraints): Add IA-64 constraints.
8226 2002-04-25 Eric Botcazou <ebotcazou@multimania.com>
8228 * c-decl.c (grokdeclarator): Remove outdated ??? note
8229 on invalid declaration of flexible array members.
8231 2002-04-25 Richard Henderson <rth@redhat.com>
8233 * doc/invoke.texi: Document -gdwarf{,-2} vs debug level.
8235 2002-04-25 Ulrich Weigand <uweigand@de.ibm.com>
8237 * config/s390/s390.c (s390_emit_epilogue): Always restore registers
8238 needed by the compiler, even if they are used as global regs.
8240 2002-04-25 Matt Hiller <hiller@redhat.com>
8242 * mips.c (mips_class_max_nregs, mips_register_move_cost): New
8244 * mips.h (CLASS_MAX_NREGS, REGISTER_MOVE_COST): Redefine as calls
8245 of the corresponding functions.
8246 * mips-protos.h (mips_class_max_nregs, mips_register_move_cost):
8249 2002-04-25 Matt Hiller <hiller@redhat.com>
8251 * config/mips/mips.h (mips_sw_reg_names): Declare as extern.
8253 (ALL_COP_ADDITIONAL_REGISTER_NAMES): New macro.
8254 (FIRST_PSEUDO_REGISTER): Redefine considering coprocessor
8255 registers, adjust comment accordingly.
8256 (FIXED_REGISTERS, CALL_USED_REGISTERS, CALL_REALLY_USED_REGISTERS,
8257 reg_class, REG_CLASS_NAMES, REG_CLASS_CONTENTS, REGISTER_NAMES,
8258 DEBUG_REGISTER_NAMES, REG_ALLOC_ORDER): Adjust to include entries
8259 for coprocessor registers.
8260 (ADDITIONAL_REGISTER_NAMES): Include
8261 ALL_COP_ADDITIONAL_REGISTER_NAMES.
8263 (COP0_REG_FIRST, COP0_REG_LAST, COP0_REG_NUM,
8264 COP2_REG_FIRST, COP2_REG_LAST, COP2_REG_NUM,
8265 COP3_REG_FIRST, COP3_REG_LAST, COP3_REG_NUM,
8266 COP0_REG_P, COP2_REG_P, COP3_REG_P, ALL_COP_REG_P,
8267 COPNUM_AS_CHAR_FROM_REGNUM, COP_REG_CLASS_P): New macros.
8269 (mips_char_to_class): Adjust comment to include coprocessor
8272 * config/mips/mips.c (coprocessor_operand, coprocessor2_operand):
8274 (mips_reg_names, mips_regno_to_class): Include coprocessor
8276 (mips_sw_reg_names): Ditto, make non-static.
8277 (mips_move_1word): Handle moves to and from coprocessor registers.
8278 (mips_move_2words): Handle moves to and from coprocessor
8280 (mips_class_max_nregs, mips_register_move_cost): Handle
8281 coprocessor register classes.
8282 (override_options): Initialize mips_char_to_class and
8283 mips_hard_regno_mode_ok properly for coprocessor registers.
8285 * config/mips/mips.md (movdi_internal, movdi_internal2,
8286 movsi_internal1, movsi_internal2): Add constraint-sets for
8287 coprocessor registers.
8288 * testsuite/gcc.c-torture/mipscop-1.c: New testcase.
8289 * testsuite/gcc.c-torture/mipscop-1.x: Disable above if target
8291 * testsuite/gcc.c-torture/mipscop-2.c: New testcase.
8292 * testsuite/gcc.c-torture/mipscop-2.x: Disable above if target
8294 * testsuite/gcc.c-torture/mipscop-3.c: New testcase.
8295 * testsuite/gcc.c-torture/mipscop-3.x: Disable above if target
8297 * testsuite/gcc.c-torture/mipscop-4.c: New testcase.
8298 * testsuite/gcc.c-torture/mipscop-4.x: Disable above if target
8301 * doc/tm.texi: Document feature.
8303 2002-04-25 Neil Booth <neil@daikokuya.demon.co.uk>
8305 * integrate.c (function_attribute_inlinable_p): Simplify.
8306 Check the table pointer is not NULL.
8308 2002-04-25 Steven Bosscher <S.Bosscher@student.tudelft.nl>
8310 * doc/c-tree.texi: Fix typo in introduction.
8312 2002-04-25 Neil Booth <neil@daikokuya.demon.co.uk>
8314 * c-common.h (c_common_parse_file): Update.
8315 * c-lang.c (LANG_HOOKS_SET_YYDEBUG): Remove.
8316 * c-lex.c (YYDEBUG): Get from c-lex.h.
8317 (c_common_parse_file): Update.
8318 * c-lex.h (YYDEBUG, yydebug): New.
8319 * c-parse.in (YYDEBUG): Get from c-lex.h.
8320 (c_set_yydebug): Remove.
8321 * c-tree.h (c_set_yydebug): Remove.
8322 * langhooks-def.h (lhd_do_nothing_i): New.
8323 (lhd_set_yydebug, LANG_HOOKS_SET_YYDEBUG): Remove.
8324 (LANG_HOOKS_PARSE_FILE, LANG_HOOKS_INITIALIZER): Update.
8325 * langhooks.c (lhd_do_nothing_i): New.
8326 (lhd_set_yydebug): Remove.
8327 * langhooks.h (struct lang_hooks): Update.
8328 * toplev.c (set_yydebug): New.
8329 (compile_file): Update call to parse_file hook.
8330 (decode_d_option): Update.
8332 * objc-lang.c (LANG_HOOKS_SET_YYDEBUG): Remove.
8334 Wed Apr 24 23:45:37 2002 J"orn Rennecke <joern.rennecke@superh.com>
8336 * loop.c (load_mems): Don't change the interface of called functions.
8338 * calls.c (expand_call): Take current_function_pretend_args_size
8339 into account when setting argblock for sibcalls.
8341 2002-04-24 Matt Hiller <hiller@redhat.com>
8343 * cpplex.c: Remove conditional #undef of MULTIBYTE_CHARS.
8346 * cpplex.c (skip_line_comment): Process comment one multibyte
8347 character at a time rather than one char at a time, if
8349 (parse_string): Process string one multibyte character at a time
8350 rather than one char at a time, if appropriate.
8351 * c-lex.c (lex_string): Lex and copy multibyte strings
8353 * cpplib.h (cppchar_t): Change to unsigned.
8355 2002-04-24 Richard Henderson <rth@redhat.com>
8358 * c-decl.c (grokdeclarator): Don't pedwarn variable sized arrays
8361 Wed Apr 24 21:51:54 2002 J"orn Rennecke <joern.rennecke@superh.com>
8363 * sh.c (sh_va_arg): If argument was passed by reference,
8364 dereference the pointer.
8366 * sh.h (PIC_OFFSET_TABLE_REGNUM): Conditionalize on flag_pic.
8368 * sh.md (divsi3_i4_media): Use match_operand for input values
8369 rather than hard registers.
8370 (divsi3 - TARGET_SHMEDIA_FPU case): Don't ferry values
8371 unnecessarily through hard registers. Keep copies of pseudo
8372 registers outside of the libcall sequence.
8374 * sh.md (casesi_shift_media): Add modes.
8376 * sh.h (RETURN_IN_MEMORY): Return variable size BLKmode
8379 2002-04-24 Neil Booth <neil@daikokuya.demon.co.uk>
8381 * attribs.c (c_common_attribute_table): Move table and handlers
8383 (format_attribute_table, lang_attribute_table,
8384 lang_attribute_common): Remove.
8385 (init_attributes): Replace NULL pointers with pointers to the
8387 (handle_packed_attribute, handle_nocommon_attribute,
8388 handle_common_attribute, handle_noreturn_attribute,
8389 handle_noinline_attribute, handle_always_inline_attribute,
8390 handle_used_attribute, handle_unused_attribute,
8391 handle_const_attribute, handle_transparent_union_attribute,
8392 handle_constructor_attribute, handle_destructor_attribute,
8393 handle_mode_attribute, handle_section_attribute,
8394 handle_aligned_attribute, handle_weak_attribute,
8395 handle_alias_attribute, handle_visibility_attribute,
8396 handle_no_instrument_function_attribute, handle_malloc_attribute,
8397 handle_no_limit_stack_attribute, handle_pure_attribute,
8398 handle_deprecated_attribute, handle_vector_size_attribute,
8399 vector_size_helper): Move to c-common.c.
8400 * c-common.c (c_common_attribute_table,
8401 handle_packed_attribute, handle_nocommon_attribute,
8402 handle_common_attribute, handle_noreturn_attribute,
8403 handle_noinline_attribute, handle_always_inline_attribute,
8404 handle_used_attribute, handle_unused_attribute,
8405 handle_const_attribute, handle_transparent_union_attribute,
8406 handle_constructor_attribute, handle_destructor_attribute,
8407 handle_mode_attribute, handle_section_attribute,
8408 handle_aligned_attribute, handle_weak_attribute,
8409 handle_alias_attribute, handle_visibility_attribute,
8410 handle_no_instrument_function_attribute, handle_malloc_attribute,
8411 handle_no_limit_stack_attribute, handle_pure_attribute,
8412 handle_deprecated_attribute, handle_vector_size_attribute,
8413 vector_size_helper): Move from attribs.c.
8414 * c-common.h (c_common_attribute_table,
8415 c_common_format_attribute_table): New.
8416 * c-lang.c (LANG_HOOKS_COMMON_ATTRIBUTE_TABLE,
8417 LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE): Redefine.
8418 * langhooks-def.h (LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE,
8419 LANG_HOOKS_COMMON_ATTRIBUTE_TABLE, LANG_HOOKS_ATTRIBUTE_TABLE): New.
8420 (LANG_HOOKS_INITIALIZER): Update.
8421 * langhooks.h (struct lang_hooks): 3 new attribute hooks.
8422 * target-def.h (TARGET_ATTRIBUTE_TABLE): Default to NULL.
8423 * target.h: Update comment.
8424 * tree.c (default_target_attribute_table): Remove.
8425 * tree.h (default_target_attribute_table, format_attribute_table,
8426 lang_attribute_table, lang_attribute_common): Remove.
8428 * objc-lang.c (LANG_HOOKS_COMMON_ATTRIBUTE_TABLE,
8429 LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE): Redefine.
8431 2002-04-24 Jason Merrill <jason@redhat.com>
8433 * dwarf2.h (enum dwarf_attribute): Add DW_AT_GNU_vector.
8434 * dwarf2out.c (dwarf_attr_name): Support it.
8435 (gen_array_type_die): Emit it.
8436 (lookup_type_die): No special handling for VECTOR_TYPE.
8437 (gen_type_die): Hand VECTOR_TYPE off to gen_array_type_die.
8439 2002-04-24 Richard Henderson <rth@redhat.com>
8441 * config/mips/mips.md (movdi_usd): Renumber.
8443 2002-04-24 David S. Miller <davem@redhat.com>
8446 * config/sparc/sparc.h (FUNCTION_OK_FOR_SIBCALL): Return false if
8447 32-bit Sparc and current_function_returns_struct is true.
8449 Wed Apr 24 13:48:25 CEST 2002 Jan Hubicka <jh@suse.cz>
8451 * loop.c (canonicalize_condition): Use gen_int_mode.
8453 2002-04-24 Aldy Hernandez <aldyh@redhat.com>
8455 * config/rs6000/altivec.h: Cleanup file. Add non individual
8477 (vec_vcmpequb): New.
8478 (vec_vcmpequh): New.
8479 (vec_vcmpequw): New.
8480 (vec_vcmpeqfp): New.
8481 (vec_vcmpgefp): New.
8482 (vec_vcmpgtub): New.
8483 (vec_vcmpgtsb): New.
8484 (vec_vcmpgtuh): New.
8485 (vec_vcmpgtsh): New.
8486 (vec_vcmpgtuw): New.
8487 (vec_vcmpgtsw): New.
8488 (vec_vcmpgtfp): New.
8489 (vec_vcmpgefp): New.
8494 (vec_vexptefp): New.
8499 (vec_lde): Add vector float variant.
8504 (vec_vmhaddshs): New.
8526 (vec_vmladduhm): New.
8527 (vec_vmhraddshs): New.
8529 (vec_vmsummbm): New.
8530 (vec_vmsumuhm): New.
8531 (vec_vmsumshm): New.
8532 (vec_vmsumuhs): New.
8533 (vec_vmsumshs): New.
8542 (vec_vnmsubfp): New.
8560 (vec_vrsqrtefp): New.
8571 (vec_vspltisb): New.
8572 (vec_vspltish): New.
8573 (vec_vspltisw): New.
8598 (vec_vsum4ubs): New.
8599 (vec_vsum4sbs): New.
8600 (vec_vsum4shs): New.
8601 (vec_vsum2sws): New.
8612 2002-04-23 Eric Botcazou <ebotcazou@multimania.com>
8615 * fold-const.c (split_tree): Add MINUS_LITP parameter; separate
8616 added literals from substracted literals.
8617 (associate_trees): Don't convert MINUS_EXPR into PLUS_EXPR.
8618 (fold) [associate]: Preserve MINUS_EXPR if needed.
8620 2002-04-23 Zack Weinberg <zack@codesourcery.com>
8622 * doc/install.texi: Clarify which versions of alpha*-dec-osf*
8625 2002-04-23 Tom Tromey <tromey@redhat.com>
8627 * gcc.c: Added --resource. For PR java/6314.
8629 2002-04-23 David O'Brien <obrien@FreeBSD.org>
8631 * cp/g++spec.c: Use profiled libstdc++ and libm with -p/-pg.
8632 * config/freebsd.h (MATH_LIBRARY_PROFILE): Use the _p verions of
8635 2002-04-23 David O'Brien <obrien@FreeBSD.org>
8637 * config/freebsd.h(OBJECT_FORMAT_ELF): Define.
8639 Tue Apr 23 14:24:25 CEST 2002 Jan Hubicka <jh@suse.cz>
8641 * i386.c (ix86_output_addr_diff_elt): Avoid x86_64 binutils bug
8643 (ix86_expand_int_movcc): Avoid x86_64 compilation chrash.
8644 (ix86_expand_clrstr): Fix typo.
8645 * loop.c (gen_load_of_final_value): New.
8646 (loop_givs_rescan, strength_reduce, check_dbra_loop):
8649 2002-04-23 Roger Sayle <roger@eyesopen.com>
8651 * builtins.c (builtin_memset_gen_str): New function.
8652 (expand_builtin_memset): Optimize the case of constant length, but
8655 2002-04-23 Aldy Hernandez <aldyh@redhat.com>
8657 * config/rs6000/altivec.h (vec_step): Remove extraneous
8659 (vec_ctu): Cast return.
8661 2002-04-23 Alan Modra <amodra@bigpond.net.au>
8664 * function.h: (struct function): Add profile_label_no field.
8665 (current_function_profile_label_no): Define.
8666 * function.c: (profile_label_no): New static var.
8667 (expand_function_start): Increment it, and copy to
8668 current_function_profile_label_no.
8669 * output.h (profile_label_no): Delete.
8670 * final.c (profile_label_no): Delete.
8671 (profile_function): Use current_function_profile_label_no.
8672 (final_end_function): Don't increment profile_label_no here.
8673 * config/i386/i386.c (ix86_osf_output_function_prologue): Replace
8674 profile_label_no with current_function_profile_label_no.
8675 * config/pa/pa.c (current_function_number): Delete.
8676 (pa_output_function_prologue): Don't output profile label here.
8677 (hppa_profile_hook): Use label_no param rather than
8678 current_function_number.
8679 (FUNC_BEGIN_PROLOG_LABEL): Move to ..
8680 * config/pa/pa.h: .. here.
8681 (FUNCTION_PROFILER): Output profile label here.
8683 2002-04-22 Eric Christopher <echristo@redhat.com>
8685 * config/mips/mips.h (ASM_OUTPUT_ALIGNED_DECL_COMMON): Revert
8686 patch of 2002-04-09 due to binutils issues.
8687 (FUNCTION_ARG_REGNO_P): Ensure even numbered float register.
8689 2002-04-22 Aldy Hernandez <aldyh@redhat.com>
8691 * config/rs6000/rs6000.md ("*movv4si_internal"): Change 'm'
8692 constraint to 'o' for m=r and r=m alternatives.
8693 ("*movv8hi_internal1"): Same.
8694 ("*movv16qi_internal1"): Same.
8695 ("*movv4sf_internal1"): Same.
8697 2002-04-22 Janis Johnson <janis187@us.ibm.com>
8699 * rtl.h (RTX_FLAG): New macro.
8700 * emit-rtl.c (copy_most_rtx): Use macros to access rtx flags.
8701 * final.c (alter_subreg): Use macro to access rtx flag.
8702 * integrate.c (copy_rtx_and_substitute): Use new access macro.
8703 * print-rtl.c (print_rtx): Use new access macro.
8705 * cse.c (insert): Check rtx code before accessing flag.
8707 * genattrtab.c (ATTR_IND_SIMPLIFIED_P, ATTR_CURR_SIMPLIFIED_P,
8708 ATTR_PERMANENT_P, ATTR_EQ_ATTR_P): New.
8709 (attr_hash_add_string, attr_rtx_1, attr_copy_rtx, check_attr_test,
8710 convert_const_symbol_ref, make_canonical, make_alternative_compare,
8711 evaluate_eq_attr, attr_rtx_cost, simplify_test_exp_in_temp,
8712 simplify_test_exp, optimize_attrs, simplify_by_exploding,
8713 find_and_mark_used_attributes, unmark_used_attributes,
8714 add_values_to_cover, simplify_with_current_value,
8715 simplify_with_current_value_aux, clear_struct_flag, walk_attr_value,
8716 copy_rtx_unchanging, main): Use new access macros.
8718 2002-04-22 Tom Rix <trix@redhat.com>
8720 * expmed.c (init_expmed): Generate shifted constant once.
8722 2002-04-22 Zack Weinberg <zack@codesourcery.com>
8724 * c-lex.c (lex_charconst): Call convert to get constant in
8725 proper type; don't just smash the type field.
8728 * config.gcc: Add list of obsolete configurations. Disallow
8729 building these without --enable-obsolete.
8730 * doc/install.texi: Document --enable-obsolete and obsoletion
8731 policy. Mention obsoletion of individual targets in
8734 2002-04-22 Richard Henderson <rth@redhat.com>
8736 * config/sparc/sol2-bi.h (ASM_DEBUG_SPEC): New.
8738 2002-04-22 Mark Mitchell <mark@codesourcery.com>
8741 * function.c (fixup_memory_subreg): Add promoted_mode parameter.
8742 (walk_fixup_memory_subreg): Likewise.
8743 (fixup_var_refs_insn): Adjust accordingly.
8744 (fixup_var_refs_1): Likewise.
8746 2002-04-22 Ulrich Weigand <uweigand@de.ibm.com>
8748 * config/s390/linux.h: (LIBPATH_SPEC, LIBPATH_ARCH31_SPEC,
8749 LIBPATH_ARCH64_SPEC): Define.
8750 (EXTRA_SPECS): Add libpath, libpath_arch31, libpath_arch64.
8751 (STARTFILE_SPEC, ENDFILE_SPEC): Define; use libpath.
8752 (LINK_ARCH31_SPEC): Add libpath_arch31 to search path.
8753 (LINK_ARCH64_SPEC): Add libpath_arch64 to search path.
8755 2002-04-22 Joel Sherrill <joel@OARcorp.com>
8757 * gthr-rtems.h: Correct prototypes to remove warnings.
8759 2002-04-22 Richard Henderson <rth@redhat.com>
8762 * alias.c (canon_true_dependence): Special case (mem:blk (scratch)).
8764 * gcse.c (free_insn_expr_list_list): New.
8765 (clear_modify_mem_tables): Use it. Fix bit set usage.
8766 (canon_list_insert): Use EXPR_LISTs for expressions.
8767 (record_last_mem_set_info): Factor BLOCK_NUM (insn).
8769 2002-04-22 Neil Booth <neil@daikokuya.demon.co.uk>
8771 * cppfiles.c (_cpp_pop_file_buffer): Return void. Move
8772 file change and include code to _cpp_pop_buffer.
8773 * cpphash.h (struct pending_option): Predeclare.
8774 (struct cpp_reader): New member next_include_file.
8775 (_cpp_pop_file_buffer): Update.
8776 (_cpp_push_next_buffer): Update, rename.
8777 * cppinit.c (cpp_destroy): Free include chain and pending here.
8778 (cpp_finish_options): Simplify.
8779 (_cpp_push_next_buffer): Rename and clean up.
8780 * cpplib.c (cpp_pop_buffer): Move code from _cpp_pop_file_buffer.
8782 * cppmacro.c (cpp_scan_nooutput): Set return_at_eof here.
8784 2002-04-22 Aldy Hernandez <aldyh@redhat.com>
8786 * config/rs6000/altivec.h (vec_xor): Add variant for both args
8787 being vector signed int.
8789 (vec_xor): Add variant for both args being vector signed char.
8790 Remove redundant variant.
8793 2002-04-21 David S. Miller <davem@redhat.com>
8795 * config/sparc/sparc.md (set then compare DI mode peephole2): Fix
8796 compare mode in output RTL.
8798 2002-04-22 David Edelsohn <edelsohn@gnu.org>
8800 * config/rs6000/rs6000.c (rs6000_override_options): Correct
8801 style and formatting of previous patch.
8803 2002-04-22 Alan Modra <amodra@bigpond.net.au>
8805 * config/rs6000/rs6000.c (rs6000_override_options): Always clear
8806 flag_pic for ABI_AIX.
8808 2002-04-21 Neil Booth <neil@daikokuya.demon.co.uk>
8810 * cppexp.c (struct op, parse_number): Replace U_CHAR with uchar.
8811 * cppfiles.c (read_include_file): Similarly.
8812 * cpphash.h (DSC, U_CHAR, ustrcmp, ustrncmp, ustrlen,
8813 uxstrdup ustrchr, ufputs): Similarly.
8814 * cppinit.c (TRIGRAPH_MAP, cpp_destroy): Similarly.
8815 * cpplex.c (parse_slow, unescaped_terminator_p, save_comment,
8816 cpp_ideq, parse_identifier, parse_number): Similarly.
8817 * cpplib.c (struct directive, dequote_string, D, run_directive,
8818 cpp_push_buffer): Similarly.
8819 * cppmacro.c (new_string_token, builtin_macro, cpp_quote_string,
8820 _cpp_create_definition, check_trad_stringification,
8821 cpp_macro_definition): Similarly.
8823 2002-04-21 Neil Booth <neil@daikokuya.demon.co.uk>
8825 * cppmacro.c (funlike_invocation_p): Don't step back
8828 2002-04-21 David Edelsohn <edelsohn@gnu.org>
8830 * config/rs6000/rs6000.c (output_profile_hook): Do not increment
8833 2002-04-20 Joseph S. Myers <jsm28@cam.ac.uk>
8835 * doc/invoke.texi: Remove Chill references.
8836 * doc/gcc.texi: Update last modified date.
8838 2002-04-20 Kazu Hirata <kazu@hxi.com>
8840 * config/h8300/lib1funcs.asm (___mulsi3): Remove unnecessary
8841 push and pop. Replace add.l with add.w.
8843 2002-04-20 Toshiyasu Morita <toshiyasu.morita@hsa.hitachi.com>
8845 * config/h8300/lib1funcs.asm (___mulsi3): Use hardware
8846 multiply instructions for H8/300H case.
8848 2002-04-20 Toshiyasu Morita <toshiyasu.morita@hsa.hitachi.com>
8850 * config/h8300/lib1funcs.asm (___cmpsi2, ___ucmpsi2):
8851 Bum three instructions from each routine.
8853 2002-04-20 Neil Booth <neil@daikokuya.demon.co.uk>
8855 * Makefile.in: Update.
8856 * decl.c (push_c_function_context, pop_c_function_context,
8857 mark_c_function_context): Rename for consistency.
8858 * c-objc-common.c (c_objc_common_init): Langhooks set elsewhere.
8859 * c-tree.h (push_c_function_context, pop_c_function_context,
8860 mark_c_function_context): Rename for consistency.
8861 * c-lang.c (LANG_HOOKS_FUNCTION_ENTER_NESTED,
8862 LANG_HOOKS_FUNCTION_LEAVE_NESTED, LANG_HOOKS_FUNCTION_MARK): Redefine.
8863 * function.c (init_lang_status, save_lang_status,
8864 restore_lang_status, mark_lang_status, free_lang_status):
8865 Move to langhooks.h.
8866 (push_function_context_to, pop_function_context_from,
8867 free_after_parsing, prepare_function_start, ggc_mark_struct_function):
8869 * function.h (init_lang_status, save_lang_status,
8870 restore_lang_status, mark_lang_status, free_lang_status):
8871 Move to langhooks.h.
8872 * langhooks-def.h (LANG_HOOKS_FUNCTION_INIT,
8873 LANG_HOOKS_FUNCTION_FREE, LANG_HOOKS_FUNCTION_ENTER_NESTED,
8874 LANG_HOOKS_FUNCTION_LEAVE_NESTED, LANG_HOOKS_FUNCTION_MARK,
8875 LANG_HOOKS_FUNCTION_INITIALIZER): New.
8876 (LANG_HOOKS_INITIALIZER): Update.
8877 (lhd_do_nothing_f): New.
8878 * langhooks.h (struct lang_hooks_for_functions): New.
8879 (struct lang_hooks): New hooks.
8880 * langhooks.c (lhd_do_nothing_f): New.
8882 * objc-lang.c (LANG_HOOKS_FUNCTION_ENTER_NESTED,
8883 LANG_HOOKS_FUNCTION_LEAVE_NESTED, LANG_HOOKS_FUNCTION_MARK): Redefine.
8885 2002-04-19 David S. Miller <davem@redhat.com>
8887 * config/sparc/linux.h (MD_FALLBACK_FRAME_STATE_FOR): Define.
8888 * config/sparc/linux64.h (MD_FALLBACK_FRAME_STATE_FOR): Likewise.
8890 2002-04-19 Jakub Jelinek <jakub@redhat.com>
8892 PR optimization/3756
8893 * config/i386/i386.c (ix86_expand_int_movcc): Optimize
8894 x = ((int) y < 0) ? cst1 : cst2.
8896 2002-04-19 Jakub Jelinek <jakub@redhat.com>
8899 * function.c: Reapply patch for c/6358.
8900 (expand_function_end): Copy decl_rtl's mode, not
8901 current_function_return_rtx mode.
8903 2002-04-19 Joel Sherrill <joel@OARcorp.com>
8905 * config/rtems.h (STARTFILE_SPEC, ENDFILE_SPEC): Fix for non-ELF
8908 2002-04-19 Tom Tromey <tromey@redhat.com>
8910 * doc/install.texi (Specific): Update status of Solaris 2.8.
8913 2002-04-19 Andreas Schwab <schwab@suse.de>
8915 * real.c: Allow sizeof (REAL_VALUE_TYPE) > 2*NE.
8916 (PUT_REAL): Restore old definition.
8918 2002-04-19 Dan Nicolaescu <dann@godzilla.ics.uci.edu>
8919 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
8921 * doc/install.texi (Specific, sparc-sun-solaris2*): Mention that
8922 binutils 2.11.2 and higher generate smaller binaries than Sun's
8925 2002-04-19 Mark Mitchell <mark@codesourcery.com>
8928 * toplev.c (rest_of_compilation): Do not defer functions for which
8929 TREE_SYMBOL_REFERENCED has already been set.
8931 Fri Apr 19 15:53:03 CEST 2002 Jan Hubicka <jh@suse.cz>
8933 * i386.md (movsi_1, movhi_1): Force reload to use more flexible
8936 2002-04-19 Neil Booth <neil@daikokuya.demon.co.uk>
8938 * builtins.c: Include langhooks.h.
8939 (lang_type_promotes_to): Remove.
8940 (expand_builtin_va_arg): Use new hook.
8941 * c-common.c (c_common_nodes_and_builtins): Don't set hook.
8942 (simple_type_promotes_to): Move to c-typeck.c.
8943 * c-common.h (simple_type_promotes_to): Remove.
8944 * c-decl.c (duplicate_decls, grokdeclarator): Update.
8945 * c-format.c: Include langhooks.h.
8946 (check_format_types): Update.
8947 * c-tree.h (c_type_promotes_to): New.
8948 * c-typeck.c (c_type_promotes_to): Move from c-common.c.
8949 (type_lists_compatible_p): Update.
8950 * langhooks-def.h (lhd_type_promotes_to): New.
8951 (LANG_HOOKS_TYPE_PROMOTES_TO): New.
8952 (LANG_HOOKS_FOR_TYPES_INITIALIZER): Update.
8953 * langhooks.c (lhd_type_promotes_to): New.
8954 * langhooks.h (struct lang_hooks_for_types): New hook.
8955 * tree.h (lang_type_promotes_to): Remove.
8957 * objc-lang.c (LANG_HOOKS_TYPE_PROMOTES_TO): Redefine.
8959 2002-04-18 Richard Henderson <rth@redhat.com>
8961 * function.c: Revert patch for c/6358.
8963 2002-04-18 Richard Henderson <rth@redhat.com>
8965 * ifcvt.c (find_cond_trap): Handle cases with no proper THEN or JOIN
8966 blocks. Handle multiple references to the TRAP block. Handle
8967 non-adjacent THEN and OTHER blocks.
8969 2002-04-18 Richard Henderson <rth@redhat.com>
8971 * config/ia64/ia64.c (ia64_function_arg_pass_by_reference): Don't
8972 crash with no type for by-mode libcalls.
8974 * config/ia64/ia64.md (conditional_trap): Fix predicate polarity.
8976 2002-04-18 Bob Wilson <bob.wilson@acm.org>
8978 * config/xtensa/lib2funcs.S (__xtensa_libgcc_window_spill,
8979 __xtensa_nonlocal_goto): Use a syscall instructions to flush
8980 the register windows.
8982 2002-04-18 Zack Weinberg <zack@codesourcery.com>
8984 * real.h: Define REAL_VALUE_TYPE_SIZE as 96 or 160, as
8985 appropriate. Document need for extended precision even when
8986 MAX_LONG_DOUBLE_TYPE_SIZE is smaller. Define REAL_WIDTH here,
8987 based on REAL_VALUE_TYPE_SIZE. Use REAL_WIDTH to size
8988 REAL_VALUE_TYPE. Define CONST_DOUBLE_FORMAT here. Use #error
8989 instead of relying on later syntax error when REAL_WIDTH > 5.
8990 * real.c: Define NE based only on whether or not we have a
8991 full 128-bit extended type (not INTEL_EXTENDED_IEEE_FORMAT).
8992 Require sizeof(REAL_VALUE_TYPE) == 2*NE. Unconditionally
8993 define GET_REAL and PUT_REAL as simple memcpy operations; no
8994 need to byteswap or round.
8995 Use #error instead of #ifdef-ing out the entire file, for
8996 prompt error detection.
8998 * rtl.c, gengenrtl.c: No need to calculate CONST_DOUBLE_FORMAT here.
9000 2002-04-18 David S. Miller <davem@redhat.com>
9002 * config/sparc/sparc.h (BRANCH_COST): Define.
9004 * fold-const.c (BRANCH_COST): Don't provide default here, expr.h
9007 2002-04-18 Hans-Peter Nilsson <hp@bitrange.com>
9009 * flow.c (update_life_info): Ignore return value of cleanup_cfg.
9010 Mask out PROP_SCAN_DEAD_CODE | PROP_KILL_DEAD_CODE in
9011 propagate_block calls after relaxation loop using new variable
9012 stabilized_prop_flags.
9014 2002-04-18 Richard Henderson <rth@redhat.com>
9016 * config/ia64/ia64.c (ia64_function_arg_pass_by_reference): New.
9017 (ia64_va_arg): Expect variable sized types by reference.
9018 * config/ia64/ia64-protos.h: Update.
9019 * config/ia64/ia64.h (FUNCTION_ARG_PASS_BY_REFERENCE): Use
9020 ia64_function_arg_pass_by_reference.
9022 2002-04-18 Richard Henderson <rth@redhat.com>
9024 * ifcvt.c: Include except.h.
9025 (block_has_only_trap): Break out from find_cond_trap.
9026 (find_cond_trap): Use it. Always delete the trap block.
9027 (merge_if_block): Allow then block null. Be less simplistic about
9028 what insns can end a block.
9029 * Makefile.in (ifcvt.o): Depend on except.h.
9031 * config/ia64/ia64.md (trap, conditional_trap): New.
9033 2002-04-18 Jakub Jelinek <jakub@redhat.com>
9036 * function.c (assign_parms): Assign hard current_function_return_rtx
9038 (expand_function_end): ...not here.
9040 2002-04-18 Neil Booth <neil@daikokuya.demon.co.uk>
9042 * c-lang.c (LANG_HOOKS_INCOMPLETE_TYPE_ERROR): Redefine.
9043 * c-tree.h (c_incomplete_type_error): New.
9044 * c-typeck.c (require_complete_type, build_component_ref): Update.
9045 (incomplete_type_error): Rename.
9046 * langhooks-def.h (lhd_incomplete_type_error): New.
9047 (LANG_HOOKS_INCOMPLETE_TYPE_ERROR): New.
9048 (LANG_HOOKS_FOR_TYPES_INITIALIZER): Update.
9049 * langhooks.c (lhd_incomplete_type_error): New.
9050 * langhooks.h (struct lang_hooks_for_types): New hook.
9051 * tree.c (size_in_bytes): Use new hook.
9052 * tree.h (incomplete_type_error): Remove.
9054 * objc-lang.c (LANG_HOOKS_INCOMPLETE_TYPE_ERROR): Redefine.
9056 2002-04-18 Zack Weinberg <zack@codesourcery.com>
9058 * config/arc/arc.md: Remove #if HOST_FLOAT_FORMAT !=
9059 TARGET_FLOAT_FORMAT blocks.
9061 2002-04-18 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
9063 * doc/install.texi (Downloading the source): Do not mention Chill
9064 any longer, but mention Ada.
9065 (Configuration): Do not mention Chill any longer.
9067 2002-04-18 Hans-Peter Nilsson <hp@axis.com>
9069 * config/cris/cris.h (TARGET_VERSION): Remove local version number.
9071 Thu Apr 18 17:14:08 CEST 2002 Jan Hubicka <jh@suse.cz>
9073 * i386.h (SSE_FLOAT_MODE_P): Fix bogus conflict resolution
9076 2002-04-18 Jakub Jelinek <jakub@redhat.com>
9078 * fold-const.c (fold): Use (*lang_hooks.types.unsigned_type)
9079 instead of unsigned_type.
9081 Thu Apr 18 15:49:12 CEST 2002 Jan Hubicka <jh@suse.cz>
9083 * i386.h (SSE_FLOAT_MODE_P): Kill bogus TARGET_SSE_MATH check.
9084 * i386.md (sse_mov?fcc*): Swap operands for cases they will be swapped
9087 2002-04-18 Bernd Schmidt <bernds@redhat.com>
9089 * attribs.c (vector_type_node_list): New static variable.
9090 (handle_vector_size_attribute): Use it to avoid generating a
9091 new type node each time we are called.
9093 * combine.c (subst): Avoid trying to make a vector mode subreg of
9094 an integer constant.
9095 (gen_lowpart_for_combine): Likewise.
9097 2002-04-18 Roger Sayle <roger@eyesopen.com>
9098 Jakub Jelinek <jakub@redhat.com>
9100 * fold-const.c (fold) [NOP_EXPR]: Convert (T)(x&c) into ((T)x&(T)c)
9101 for integer constant c (if x has unsigned type or sign bit is not
9102 set in c). This folds the zero/sign extension into the bit-wise and
9105 2002-04-18 Jakub Jelinek <jakub@redhat.com>
9108 * config/i386/i386.md (movsf_1): Use pxor only if TARGET_SSE2,
9111 2002-04-17 NIIBE Yutaka <gniibe@m17n.org>
9113 * config/sh/elf.h: Undefine ASM_OUTPUT_CASE_LABEL.
9115 2002-04-17 Nick Clifton <nickc@cambridge.redhat.com>
9117 * gcc.c (read_specs): Detect and fail if an attempt is made to
9118 rename a spec string to an already existing string.
9120 2002-04-17 Ulrich Weigand <uweigand@de.ibm.com>
9122 * config/s390/s390.c (legitimize_pic_address): Do not generate
9123 illegal address constant without CONST.
9125 2002-04-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9127 * sparc/linux64.h (CC1_SPEC): Error for -m32 and -m64.
9128 * sparc/netbsd-elf.h (CC1_SPEC32, CC1_SPEC64): Likewise.
9130 2002-04-17 Ulrich Weigand <uweigand@de.ibm.com>
9132 PR optimization/6305
9133 * config/s390/s390.c (s390_expand_plus_operand): Use find_replacement
9134 to make sure previous reloads are taken into account. Generate
9135 better code if one operand is an in-range immediate constant.
9137 2002-04-16 Andrew Haley <aph@cambridge.redhat.com>
9139 * doc/install.texi (Building): libgcj requires GNU make.
9141 2002-04-17 Jakub Jelinek <jakub@redhat.com>
9144 * config/sparc/sparc.md (movtf reg<-reg split): Allow spliting
9145 even if hard quad and register is not floating.
9146 (movtf reg<-mem split): Disallow splitting if hard quad and
9147 register is floating.
9148 (movtf mem<-reg split): Likewise.
9149 * config/sparc/sparc.c (fp_register_operand): New predicate.
9150 * config/sparc/sparc.h (PREDICATE_CODES): Add fp_register_operand.
9152 2002-04-17 Zack Weinberg <zack@codesourcery.com>
9154 * Makefile.in (PROTO_OBJS): Add cppdefault.o.
9155 (protoize.o): Take $(PREPROCESSOR_DEFINES) off command line.
9156 (unprotoize.o): Ditto. Build from protoize.c. Define
9157 UNPROTOIZE on command line.
9158 * protoize.c: Include cppdefault.h. Delete include_defaults.
9159 (in_system_include_dir): Use cpp_include_defaults (defined in
9161 * unprotoize.c: Delete file.
9163 2002-04-17 Aldy Hernandez <aldyh@redhat.com>
9165 * config/rs6000/altivec.h (vec_ld): Add array variants.
9169 2002-04-17 Alan Matsuoka <alanm@redhat.com>
9170 Aldy Hernandez <aldyh@redhat.com>
9172 * config/rs6000/altivec.h: Define __ALTIVEC__.
9179 Add parentheses to all macro arguments.
9181 2002-04-16 Richard Henderson <rth@redhat.com>
9184 * except.c (remove_eh_handler): Insert inner regions at beginning
9185 of sibling chain. Refactor expressions.
9187 2002-04-16 Richard Henderson <rth@redhat.com>
9189 * config/sparc/sol2-bi.h (AS_SPARC64_FLAG): New.
9190 * config/sparc/sol2-gas-bi.h: New file.
9191 * config.gcc (sparc*-solaris): Add it as needed.
9192 * configure.in (AS_SPARC64_FLAG): Remove check.
9193 * config.in, configure: Regenerate.
9195 * config/sparc/sol2-bi.h (CC1_SPEC): Error for -m32 and -m64.
9197 2002-04-16 Richard Henderson <rth@redhat.com>
9199 * config/mips/mips.c (override_options): Don't override N32 for
9203 * config/mips/mips.md (can_delay): Split out of existing define_delays.
9204 (HILO_delay): Set can_delay false.
9206 2002-04-16 Dale Johannesen <dalej@apple.com>
9208 * config/rs6000/rs6000.c (rs6000_output_function_prologue): Compute
9209 instruction addresses.
9210 (rs6000_output_function_epilogue): Likewise.
9212 2002-04-16 Paolo Carlini <pcarlini@unitus.it>
9214 * c-parse.in (poplevel, compstmt_start,
9215 compstmt_primary_start): Add ending ';', in accordance
9218 2002-04-16 Richard Henderson <rth@redhat.com>
9220 * config.gcc (sparcv9-solaris): Configure for 64-bit default.
9221 Adjust tm_file order to get TARGET_DEFAULT set properly.
9222 (sparc-solaris): Configure 2.[78] for 64-bit multilibs.
9223 * doc/install.texi (sparc-solaris): Update.
9225 2002-04-16 Dale Johannesen <dalej@apple.com>
9227 * config/rs6000/rs6000.c (rs6000_emit_cmove): Fail if modes of
9228 comparison operands do not match each other or if modes of
9229 conditions do not match result.
9231 2002-04-16 Hartmut Penner <hpenner@de.ibm.com>
9234 * config/s390/s390.md (mulsidi3): Set both subregs of the
9237 2002-04-16 Aldy Hernandez <aldyh@redhat.com>
9239 * config/rs6000/altivec.h (vec_addc): Type check.
9241 2002-04-16 Jakub Jelinek <jakub@redhat.com>
9244 * expr.c (store_expr): Don't copy if DECL_RTL (exp) == target.
9246 * expr.c (safe_from_p): Cleanup: use DECL_RTL_IF_SET.
9248 2002-04-15 Richard Henderson <rth@redhat.com>
9250 * config/mips/abi64.h (SUBTARGET_CONDITIONAL_REGISTER_USAGE): Set
9251 call_really_used_regs too.
9253 2002-04-15 Richard Henderson <rth@redhat.com>
9255 * config/alpha/gnu.h (CPP_PREDEFINES): Underscores for gnu_hurd.
9257 2002-04-15 David S. Miller <davem@redhat.com>
9259 * rtlanal.c (note_stores): Don't present PARALLEL SET_DESTs
9262 2002-04-16 Jakub Jelinek <jakub@redhat.com>
9265 * config/rs6000/rs6000.c (easy_vector_constant): Return 1 if the
9266 CONST_VECTOR is { 0, ... 0 }.
9268 2002-04-15 Loren J. Rittle <ljrittle@acm.org>
9270 * doc/install.texi (Installing GCC: Configuration): Clarify
9271 the only supported ways to configure gcc.
9273 2002-04-15 Roland McGrath <roland@frob.com>
9275 * config.gcc (alpha*-*-gnu*): New target configuration.
9276 * config/alpha/gnu.h: New file for it.
9277 * config/gnu.h (TARGET_MEM_FUNCTIONS): #undef before #define.
9279 2002-04-16 Mark Mitchell <mark@codesourcery.com>
9281 * c-common.h (STMT_EXPR_NO_SCOPE): New macro.
9282 * c-common.c (c_expand_expr): Respect STMT_EXPR_NO_SCOPE.
9283 * tree.h (expand_start_stmt_expr): Update prototype.
9284 * stmt.c (expand_start_stmt_expr): Add has_scope parameter.
9285 * tree-inline.c (expand_call_inline): Set STMT_EXPR_NO_SCOPE
9286 on the STMT_EXPR created for the inline function.
9288 2002-04-15 Richard Henderson <rth@redhat.com>
9290 * config/alpha/linux.h, config/arm/linux-elf.h, config/i370/linux.h,
9291 config/i386/linux-aout.h, config/i386/linux-oldld.h,
9292 config/i386/linux.h, config/i386/linux64.h, config/ia64/linux.h,
9293 config/m68k/linux-aout.h, config/m68k/linux.h, config/mips/linux.h,
9294 config/pa/pa-linux.h, config/pj/linux.h, config/s390/linux.h,
9295 config/sh/linux.h, config/sparc/linux-aout.h, config/sparc/linux.h,
9296 config/sparc/linux64.h, config/xtensa/linux.h (CPP_PREDEFINES):
9297 Define __gnu_linux__, not gnu_linux.
9298 * config/rs6000/sysv4.h (CPP_OS_GNU_SPEC): Likewise for gnu_hurd.
9300 2002-04-15 Mark Mitchell <mark@codesourcery.com>
9302 Remove Chill front end.
9303 * gcc.c (default_compilers): Remove Chill entries.
9304 * ch: Remove directory.
9305 * doc/frontends.texi: Remove information about Chill.
9306 * doc/sourcebuild.texi: Likewise.
9307 * doc/standards.texi: Likewise.
9309 2002-04-15 Douglas B Rupp <rupp@gnat.com>
9311 * config/alpha/vms.h (INCLUDE_DEFAULTS): Add /gnu/lib/gcc-lib/include.
9312 (LONGLONG_STANDALONE): Define.
9314 2002-04-15 David S. Miller <davem@redhat.com>
9316 * config/sparc/sparc.c (sparc_emit_float_lib_cmp):
9317 Call emit_library_call with LCT_NORMAL.
9318 (sparc_initialize_trampoline): Use LCT_foo instead of
9319 magic constant in emit_library_call invocations.
9320 (sparc64_initialize_trampoline): Likewise.
9321 (sparc_profile_hook): Likewise.
9322 * config/sparc/sparc.md: Likewise.
9324 * config/sparc/sparc.c (sparc_extra_constraint_check):
9325 Fix type of argument 'c'.
9326 * config/sparc/sparc-protos.h (sparc_extra_constraint_check):
9329 2002-04-15 Gabriel Dos Reis <gdr@merlin.codesourcery.com>
9331 * diagnostic.h (output_buffer_state): Redefine.
9332 (output_format_decoder): New macro.
9333 (output_prefixing_rule): Likewise.
9334 (output_line_cutoff): Likewise.
9335 (diagnostic_format_decoder): Adjust.
9336 (diagnostic_prefixing_rule): Likewise.
9337 (diagnostic_line_cutoff): Likewise.
9338 (diagnostic_state): Likewise.
9339 (diagnostic_kind_count): Likewise.
9340 (diagnostic_buffer): Now a macro.
9342 * diagnostic.c (diagnostic_buffer): Remove definition.
9343 (output_is_line_wrapping): Adjust.
9344 (set_real_maximum_length): Likewise.
9345 (output_set_maximum_length): Likewise.
9346 (init_output_buffer): Likewise.
9347 (lhd_print_error_function): Likewise.
9348 (output_do_verbatim): Likewise.
9350 2002-04-14 Neil Booth <neil@daikokuya.demon.co.uk>
9352 * cpperror.c (print_location): Don't print include chain
9354 (cpp_begin_message): Update to use DL_ macros.
9355 (cpp_ice, cpp_fatal, cpp_error_from_errno, cpp_warning,
9356 cpp_warning_with_line, cpp_pedwarn, cpp_pedwarn_with_line,
9357 cpp_notice, cpp_notice_from_errno): Remove.
9358 (cpp_error, cpp_error_with_line): Update to take a diagnostic
9361 * cppexp.c (CPP_ICE): Remove.
9362 (SYNTAX_ERROR, SYNTAX_ERROR2, parse_number, parse_defined,
9363 lex, integer_overflow, _cpp_parse_expr): Update.
9364 * cppfiles.c (read_include_file, find_include_file,
9365 handle_missing_header, _cpp_read_file, remap_filename): Update.
9366 * cpphash.h (enum error_type): Remove.
9367 (_cpp_begin_message): Update.
9368 * cppinit.c (append_include_chain, remove_dup_dirs, output_deps,
9369 cpp_handle_option, cpp_post_options): Update.
9370 * cpplex.c (trigraph_p, skip_escaped_newlines, skip_block_comment,
9371 skip_whitespace, parse_identifier, parse_slow, parse_string,
9372 _cpp_lex_direct, cpp_spell_token, maybe_read_ucs, cpp_parse_escape,
9373 cpp_interpret_charconst): Update.
9374 * cpplib.c (check_eol, directive_diagnostics, _cpp_handle_directive,
9375 lex_macro_node, do_undef, glue_header_name, parse_include,
9376 do_include_common, read_flag, do_line, do_linemarker, do_ident,
9377 cpp_register_pragma, do_pragma_once, do_pragma_system_header,
9378 do_pragma_poison, do_pragma_dependency, _cpp_do__Pragma, do_else,
9379 do_elif, do_endif, parse_answer, parse_assertion, do_assert,
9380 _cpp_pop_buffer, do_diagnostic): Update.
9381 * cpplib.h (DL_WARNING, DL_WARNING_SYSHDR, DL_PEDWARN, DL_ERROR,
9382 DL_FATAL, DL_ICE, DL_EXTRACT, DL_WARNING_P): New.
9383 (cpp_ice, cpp_fatal, cpp_error_from_errno, cpp_warning,
9384 cpp_warning_with_line, cpp_pedwarn, cpp_pedwarn_with_line,
9385 cpp_notice, cpp_notice_from_errno): Remove.
9386 (cpp_error, cpp_error_with_line): Update to take a diagnostic
9389 * cppmacro.c (builtin_macro, stringify_arg, paste_all_tokens,
9390 collect_args, enter_macro_context, save_parameter, parse_params,
9391 _cpp_create_definition, check_trad_stringification,
9392 cpp_macro_definition): Update.
9393 * cppmain.c (cpp_preprocess_file): Update.
9394 * fix-header.c (read_scan_file): Update.
9396 2002-04-14 Andreas Schwab <schwab@suse.de>
9398 * config/ia64/linux.h (CPP_PREDEFINES): Fix missing backslash.
9400 2002-04-14 Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
9402 * config/arm/linux-elf.h (CPLUSPLUS_CPP_SPEC): Define.
9404 2002-04-13 Mark Mitchell <mark@codesourcery.com>
9406 * config/i386/gnu.h (CPP_PREDEFINES): Define __gnu_hurd__,
9409 2002-04-13 Hans-Peter Nilsson <hp@axis.com>
9411 * config/cris/linux.h (CRIS_CPP_SUBTARGET_SPEC): Fix typo.
9413 2002-04-13 Joel Sherrill <joel@OARcorp.com>
9415 * config/sparc/t-elf: Enable v8 multilibs. Impacts
9416 sparc-elf and sparc-rtems targets.
9418 2002-04-13 Mark Mitchell <mark@codesourcery.com>
9420 * alpha/linux.h: Define __gnu_linux__ wherever __linux__ is
9421 defined, and __gnu_hurd__ wherever __GNU__ is defined.
9422 * arm/linux-elf.h: Likewise.
9423 * cris/aout.h: Likewise.
9424 * cris/linux.h: Likewise.
9425 * i370/linux.h: Likewise.
9426 * i386/gnu.h: Likewise.
9427 * i386/linux-aout.h: Likewise.
9428 * i386/linux-oldld.h: Likewise.
9429 * i386/linux.h: Likewise.
9430 * i386/linux64.h: Likewise.
9431 * ia64/linux.h: Likewise.
9432 * m68k/linux-aout.h: Likewise.
9433 * m68k/linux.h: Likewise.
9434 * mips/linux.h: Likewise.
9435 * pa/pa-linux.h: Likewise.
9436 * pj/linux.h: Likewise.
9437 * rs6000/sysv4.h: Likewise.
9438 * s390/linux.h: Likewise.
9439 * sh/linux.h: Likewise.
9440 * sparc/linux-aout.h: Likewise.
9441 * sparc/linux.h: Likewise.
9442 * sparc/linux64.h: Likewise.
9443 * xtensa/linux.h: Likewise.
9445 2002-04-13 Richard Sandiford <rsandifo@redhat.com>
9447 * stmt.c (check_unique_operand_names): Expect operand names to
9448 be strings rather than identifiers. Use simple_cst_equal to
9450 (resolve_operand_name_1): Make same identifier to string change here.
9451 * c-parse.in (asm_operand): Convert a named operand into a string.
9452 * cp/parse.y (asm_operand): Likewise.
9454 2002-04-13 Andreas Schwab <schwab@suse.de>
9456 * config/ia64/ia64.h (CPP_SPEC): Include %(cpp_cpu).
9458 2002-04-12 Mark Mitchell <mark@codesourcery.com>
9460 Revert these changes:
9462 2002-04-06 Mark Mitchell <mark@codesourcery.com>
9465 * stor-layout.c (layout_decl): Reset the RTL for the decl.
9467 2002-04-12 Richard Henderson <rth@redhat.com>
9469 * config.gcc (sparcv9-*-solaris2): Default to 32-bit code.
9470 (sparc*-*-solaris): Clean up header files.
9471 * configure.in (AS_SPARC64_FLAG): Error out if can't find it
9472 and plan on generating 64-bit code.
9473 * toplev.c (decode_g_option): Remove LINKER_DOES_NOT_WORK_WITH_DWARF2.
9474 * config/sparc/sol2-64.h: Delete and reuse for default 64-bit code.
9475 * config/sparc/sol2-sld-64.h: Rename ...
9476 * config/sparc/sol2-bi.h: ... here. Remove the bits that checked
9477 for AS_SPARC64_FLAG not defined.
9478 * config/sparc/sol2-gld-bi.h: New.
9479 * config/sparc/sol2-sld.h: Remove.
9480 * config/sparc/sol26-sld.h: New.
9481 * config/sparc/sol2.h: Tidy comments.
9482 * doc/install.texi: Document sparc-solaris configury changes.
9484 2002-04-12 Richard Henderson <rth@redhat.com>
9486 * recog.c (offsettable_address_p): Match the logic in adjust_address.
9488 * config/sparc/sparc.h (LEGITIMIZE_RELOAD_ADDRESS): Handle TFmode
9489 in 64-bit mode only. Use only for 32-bit or MEDLOW.
9491 2002-04-12 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
9493 * config/alpha/osf.h (LINK_SPEC): Pass -S to silence ld warnings.
9495 Fri Apr 12 15:42:59 2002 Jeffrey A Law (law@redhat.com)
9497 * pa.c (pa_can_combine_p): Call extract_insn before calling
9500 2002-04-12 Douglas B Rupp <rupp@gnat.com>
9502 * config/i386/i386-interix.h (EH_FRAME_IN_DATA_SECTION): Define.
9503 (TARGET_ASM_NAMED_SECTION, RETURN_IN_MEMORY) Define.
9504 (DEFAULT_PCC_STRUCT_RETURN): Define as 0.
9505 (CPP_PREDEFINES): Handle __declspec.
9506 * config/i386/t-interix (USER_H): Remove.
9508 2002-04-12 DJ Delorie <dj@redhat.com>
9510 * integrate.c (compare_blocks): Make comparisons safe for when
9511 sizeof(int) < sizeof(char *).
9512 (find_block): Likewise.
9514 2002-04-12 Jan Hubicka <jh@suse.cz>
9515 David Edelsohn <edelsohn@gnu.org>
9517 * config/rs6000/rs6000.c (call_operand): Allow LINK and COUNT
9519 (symbol_ref_operand): New.
9520 * config/rs6000/rs6000.h (PREDICATE_CODES): Add symbol_ref_operand.
9521 * config/rs6000/rs6000.md (call_nonlocal_aix): Use symbol_ref_operand.
9523 2002-04-12 Andreas Schwab <schwab@suse.de>
9525 * config/ia64/ia64.h (ASM_SPEC): Moved from here ...
9526 * config/ia64/sysv4.h (ASM_SPEC): ... to here, so that it
9527 overrides the definition in config/svr4.h.
9529 2002-04-12 Eric Norum <eric.norum@usask.ca>
9531 * config/rtems.h, config/a29k/rtems.h, config/arm/rtems-elf.h,
9532 config/c4x/rtems.h, config/h8300/rtems.h, config/i386/rtems.h,
9533 config/i386/rtemself.h, config/i960/rtems.h, config/m68k/rtems.h,
9534 config/m68k/rtemself.h, config/mips/rtems.h, config/mips/rtems64.h,
9535 config/pa/rtems.h, config/rs6000/rtems.h, config/sh/rtems.h,
9536 config/sh/rtemself.h, config/sparc/rtems.h, config/sparc/rtemself.h,
9537 config/v850/rtems.h (*-rtems*): Cleanup pass to move common
9538 definitions to config/rtems.h and make the targets more similar.
9540 Fri Apr 12 08:06:54 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
9542 * expr.c (expand_assigment): Remove duplicate conversions #ifdef
9543 POINTERS_EXTEND_UNSIGNED.
9544 (store_constructor, expand_expr, case COMPONENT_REF): Likewise.
9545 (store_expr): Use TYPE_MODE (sizetype), not ptr_mode.
9547 * emit-rtl.c (widen_memory_access): Don't do anything if MEMOFFSET
9550 Fri Apr 12 12:11:26 2002 J"orn Rennecke <joern.rennecke@superh.com>
9552 * sh.c (calc_live_regs, sh_pr_n_sets): Use of PR_MEDIA_REG / PR_REG
9553 depends on TARGET_SHMEDIA, not TARGET_SH5.
9555 2002-04-12 Hans-Peter Nilsson <hp@bitrange.com>
9557 * function.c (fixup_var_refs_1) <SET, handling VAR in SET_SRC>:
9558 For paradoxical (subreg VAR), replace VAR, don't try the subreg.
9560 Fri Apr 12 10:51:38 2002 J"orn Rennecke <joern.rennecke@superh.com>
9562 * sh.c (broken_move): Constant 0. / 1. load is OK if there is
9565 2002-04-12 Andreas Schwab <schwab@suse.de>
9567 * config/ia64/ia64.h (EXTRA_SPECS): Fix missing backslash.
9569 2002-04-12 Richard Henderson <rth@redhat.com>
9572 * config/d30v/d30v.h (INIT_SECTION_ASM_OP): Don't undef.
9574 * flow.c (mark_used_reg): Manage reg_cond_dead properly for
9575 modes spanning multiple hard regs.
9577 * recog.c (peephole2_optimize): Rebuild jump labels as needed.
9579 2002-04-11 John David Anglin <dave@hiauly1.hia.nrc.ca>
9581 * pa.c (pa_output_function_prologue): Don't accumulate the total
9582 number of code bytes when using TARGET_64BIT, or gas, SOM and not
9583 the portable runtime.
9584 (output_deferred_plabels): Handle 64bit plabels.
9585 (output_cbranch): Use $PIC_pcrel$0 for pc relative relocations when
9586 generating pic code using the GAS assembler for object formats that
9587 are not SOM (ie., ELF32 and ELF64).
9588 (output_millicode_call): Check attribute type if attribute length is 28.
9589 Likewise use $PIC_pcrel$0. Only call get_attr_length and
9590 dbr_sequence_length once.
9591 (output_call): Likewise use $PIC_pcrel$0, and call get_attr_length and
9592 dbr_sequence_length once.
9593 * pa.h (TARGET_SOM): Define if not defined.
9594 * pa.md (pattern to load address of label): Likewise use $PIC_pcrel$0
9595 with GAS and not SOM.
9596 (jump, call_internal_reg, call_value_internal_reg): Likewise.
9597 * som.h (OBJ_SOM): Rename to TARGET_SOM. Undefine before defining.
9599 2002-04-11 David O'Brien <obrien@FreeBSD.org>
9601 * config/freebsd.h (NO_IMPLICIT_EXTERN_C, SCCS_DIRECTIVE): Give value.
9602 (DEFAULT_PCC_STRUCT_RETURN) Do not redefine.
9603 (USER_LABEL_PREFIX, HANDLE_SYSV_PRAGMA, IDENT_ASM_OP,
9604 DWARF2_DEBUGGING_INFO, DBX_DEBUGGING_INFO, PREFERRED_DEBUGGING_TYPE):
9605 elfos.h and dbxelf.h values are fine now.
9606 * config/i386/freebsd.h, config/alpha/freebsd.h
9607 (DEFAULT_PCC_STRUCT_RETURN): Define to 0.
9609 2002-04-11 David O'Brien <obrien@FreeBSD.org>
9611 * config/ia64/aix.h (CPP_PREDEFINES): Do not define _LP64/__LP64__
9612 or set Acpu or Amachine. Reformat.
9613 (ASM_SPEC, DONT_USE_BUILTIN_SETJMP, PROFILE_BEFORE_PROLOGUE): Do not
9615 (LINK_SPEC): Do not need to undef.
9616 * config/ia64/elf.h (ASM_EXTRA_SPEC): Define.
9617 * config/ia64/freebsd.h (LINK_SPEC): Do not need to undef.
9618 (ASM_SPEC, DONT_USE_BUILTIN_SETJMP, PROFILE_BEFORE_PROLOGUE): Do not
9620 * config/ia64/hpux.h (ASM_EXTRA_SPEC): Define.
9621 (ASM_SPEC): Do not define, use ASM_EXTRA_SPEC instead.
9622 (LINK_SPEC): Do not need to undef.
9623 (DONT_USE_BUILTIN_SETJMP): Do not define.
9624 * config/ia64/ia64.h (ASM_SPEC, ASM_EXTRA_SPEC): Add.
9625 (CPP_CPU_SPEC): Define _LP64, set Acpu and Amachine. Remove -Dia64.
9626 (DONT_USE_BUILTIN_SETJMP, PROFILE_BEFORE_PROLOGUE): Define.
9627 Remove trailing spaces.
9628 * config/ia64/linux.h (CPP_PREDEFINES): Do not define _LP64/__LP64__,
9629 __ELF__, or set Acpu or Amachine. Reformat.
9630 (ASM_SPEC, DONT_USE_BUILTIN_SETJMP, PROFILE_BEFORE_PROLOGUE): Do not
9633 2002-04-11 David O'Brien <obrien@FreeBSD.org>
9635 * config.gcc (ia64-*-freebsd*): Fix ordering of tm_files to match
9636 all other *-*-freebsd* targets.
9638 2002-04-11 Richard Henderson <rth@redhat.com>
9640 * config.gcc (alpha*-*-linux*ecoff): Detect and reject.
9642 2002-04-11 David O'Brien <obrien@FreeBSD.org>
9644 * config.gcc (alpha*-*-openbsd, alpha64-dec-*vms,alpha*-dec-*vms):
9645 Include {cpu}/{cpu}.h thru tm_file.
9646 (alpha*-*-linux*ecoff): Remove target.
9647 * config/alpha/elf.h (CPP_SUBTARGET_SPEC): Define __ELF__.
9648 (LINK_SPEC): Remove, is not OS independent.
9649 * config/alpha/freebsd.h (CPP_SPEC): Do not define __ELF__.
9650 (LINK_SPEC): Do not need to #undef any longer.
9651 * config/alpha/linux-ecoff.h (LINK_SPEC): Do not need to #undef
9653 * config/alpha/linux-elf.h (SUB_CPP_PREDEFINES): Do not define
9655 (LINK_SPEC): Moved here from alpha/elf.h.
9656 * config/alpha/linux.h (CPP_PREDEFINES): No longer consumer of
9658 * config/alpha/linux-ecoff.h: Remove.
9659 * config/alpha/netbsd.h (CPP_PREDEFINES): Do not define __ELF__.
9660 (CPP_SPEC): Define _POSIX_SOURCE as needed.
9661 (CPP_SUBTARGET_SPEC): Do not define.
9662 (LINK_SPEC): Do not need to #undef any longer.
9663 * config/alpha/openbsd.h: Do not directly include alpha/alpha.h.
9664 * config/alpha/vms.h: Likewise.
9666 2002-04-11 Richard Sandiford <rsandifo@redhat.com>
9668 * doc/extend.texi: Remove old claim that typedefs cannot have
9669 an alignment attribute.
9671 2002-04-11 Jakub Jelinek <jakub@redhat.com>
9673 PR optimization/6177
9674 * expr.c (expand_expr) [COMPONENT_REF]: Handle op0 CONCAT if
9675 bitpos is 0 and bitsize CONCAT size.
9677 2002-04-11 Jakub Jelinek <jakub@redhat.com>
9680 * combine.c (if_then_else_cond): Use trunc_int_for_mode on nz.
9682 2002-04-10 David O'Brien <obrien@FreeBSD.org>
9684 * config/alpha/freebsd.h: Minor reformatting.
9685 (CPP_SPEC): Define ELF and add cpp_subtarget.
9686 (ASM_SPEC): No longer needed.
9688 2002-04-11 Richard Henderson <rth@redhat.com>
9690 * config/sparc/sparc.md (movdi_insn_sp32): Add o/J alternative.
9691 (movdi_insn_sp32_v9): Likewise. Only allow stx with aligned memory.
9692 (dimode mem/zero splitter): New.
9694 2002-04-11 Hans-Peter Nilsson <hp@axis.com>
9696 * config/cris/cris.c (cris_override_options): Tweak error message
9697 for PIC not implemented.
9699 * config/cris/cris.h: Tweak comments related to parameter-passing.
9701 * t-cris (TARGET_LIBGCC2_CFLAGS): Don't -Dinhibit_libc here.
9703 2002-04-10 Richard Henderson <rth@redhat.com>
9705 * except.c (add_ehl_entry): Allow duplicates after landing pad
9708 2002-04-10 David Edelsohn <edelsohn@gnu.org>
9710 * config/rs6000/t-aix43 (SHLIB_NM_FLAGS): Add -X32_64.
9712 2002-04-10 Toon Moene <toon@moene.indiv.nluug.nl>
9714 * c-decl.c (c_init_decl_processing): Move generation of
9715 decls for g77_integer_type_node and friends from here ...
9716 * c-common.c (c_common_nodes_and_builtins): ... to here.
9718 2002-04-10 Ulrich Weigand <uweigand@de.ibm.com>
9720 * reload1.c (choose_reload_regs): HARD_FRAME_POINTER_REGNUM
9721 is only used as frame pointer when frame_pointer_needed is true.
9723 2002-04-10 Richard Earnshaw <rearnsha@arm.com>
9726 * arm.md (arm_movdi): Adjust neg_pool_range attribute to allow
9727 for the fact that the pool entry uses two words.
9728 (movdf_hard_insn): Similarly. Also, ADR instruction can span
9730 (movdf_soft_insn): Similarly.
9731 (movxf_hard_insn): Adjust neg_pool_range attribute to allow
9732 for the fact that the pool entry uses three words.
9734 2002-04-10 Richard Sandiford <rsandifo@redhat.com>
9736 * config/mips/mips.c (mips_va_arg): When using the struct version
9737 of the EABI va_list, allow arguments in the register save area to
9738 take up less room than a stack argument.
9740 2002-04-10 Richard Henderson <rth@redhat.com>
9742 * expr.c (expand_expr) [INTEGER_CST]: Don't force into registers
9743 if EXPAND_INITIALIZER.
9745 2002-04-09 Richard Henderson <rth@redhat.com>
9747 * config/alpha/alpha.md (movdi_er_maybe_g): New.
9748 * config/alpha/alpha.c (alpha_expand_mov): Use it.
9750 2002-04-10 Alan Modra <amodra@bigpond.net.au>
9752 PR optimization/6233
9753 * rtlanal.c (pure_call_p): New function.
9754 * rtl.h (pure_call_p): Declare.
9755 * loop.c (prescan_loop): Use it to set has_nonconst_call.
9756 * gcse.c (store_killed_in_insn): Use pure_call_p here too.
9758 2002-04-09 Eric Christopher <echristo@redhat.com>
9760 * config/mips/mips.h (ASM_OUTPUT_ALIGNED_DECL_COMMON): Add additional
9761 information to .comm directive.
9763 2002-04-09 Richard Henderson <rth@redhat.com>
9766 * expr.c (expand_expr) [INTEGER_CST]: Force overflows into registers.
9768 2002-04-09 Richard Henderson <rth@redhat.com>
9770 * basic-block.h (flow_delete_block_noexpunge): Declare.
9771 (expunge_block_nocompact): Declare.
9772 * cfg.c (expunge_block_nocompact): Split out from ...
9773 (expunge_block): ... here.
9774 * cfgrtl.c (can_delete_label_p): Don't use exception_handler_labels.
9775 (flow_delete_block_noexpunge): Split out from ...
9776 (flow_delete_block): ... here.
9777 * cfgcleanup.c (delete_unreachable_blocks): Compact while
9778 removing dead blocks.
9779 * except.c (exception_handler_labels): Remove.
9780 (exception_handler_label_map): New.
9781 (struct eh_region): Add aka member.
9782 (mark_ehl_map_entry, mark_ehl_map, free_region): New.
9783 (ehl_hash, ehl_eq, ehl_free, add_ehl_entry): New.
9784 (for_each_eh_label, for_each_eh_label_1): New.
9785 (init_eh): Register exception_handler_label_map.
9786 (free_eh_status): Use free_region.
9787 (find_exception_handler_labels): Use the map, not the list.
9788 (remove_exception_handler_label): Likewise.
9789 (maybe_remove_eh_handler): Likewise.
9790 (remove_eh_handler): Use the region aka bitmap.
9791 * except.h (exception_handler_labels): Remove.
9792 (for_each_eh_label): Declare.
9793 * jump.c (rebuild_jump_labels): Don't check exception_handler_labels.
9794 * loop.c (invalidate_loops_containing_label): New.
9795 (find_and_verify_loops): Use it. Use for_each_eh_label.
9796 * sched-rgn.c (is_cfg_nonregular): Use
9797 current_function_has_exception_handlers.
9799 2002-04-09 Richard Henderson <rth@redhat.com>
9801 * sbitmap.c (sbitmap_union_of_diff, sbitmap_a_and_b, sbitmap_a_xor_b,
9802 sbitmap_a_or_b, sbitmap_a_or_b_and_c, sbitmap_a_and_b_or_c):
9803 Do not return changed status.
9804 (sbitmap_union_of_diff_cg, sbitmap_a_and_b_cg, sbitmap_a_xor_b_cg,
9805 sbitmap_a_or_b_cg, sbitmap_a_or_b_and_c_cg, sbitmap_a_and_b_or_c_cg):
9806 New functions that do return changed status.
9807 * sbitmap.h: Update decls.
9808 * gcse.c, lcm.c: Use _cg functions as needed.
9810 Tue Apr 9 19:15:57 2002 J"orn Rennecke <joern.rennecke@superh.com>
9812 * config.gcc (sh-*-elf*): Use sh/embed-elf.h instead of sh/elf.h.
9813 (sh64-*-elf*, sh-*-rtemself*): Likewise.
9814 * config/sh/embed_bb.c: New file.
9815 * config/sh/embed-elf.h: New file.
9816 * sh.h (CPP_SPEC): Supply __SIZE_TYPE__ and __PTRDIFF_TYPE__
9817 if -m[12345]* option is given. Don't use subtarget_cpp_ptr_spec.
9818 (CPP_DEFAULT_CPU_SPEC): Add settings for __SIZE_TYPE__ and
9820 (SUBTARGET_CPP_PTR_SPEC): Don't define.
9821 (EXTRA_SPECS): Remove subtarget_cpp_ptr_spec.
9822 Add subtarget_asm_endian_spec.
9823 (ASM_SPEC): Use subtarget_asm_endian_spec.
9824 (SUBTARGET_ASM_ENDIAN_SPEC): Define.
9825 (RETURN_ADDR_RTX): Use PR_MEDIA_REG for TARGET_SH5.
9826 (WCHAR_UNSIGNED): Define.
9827 (SH_ELF_WCHAR_TYPE, SH_DBX_REGISTER_NUMBER): Define.
9828 (DBX_REGISTER_NUMBER): Use SH_DBX_REGISTER_NUMBER.
9829 (ALLOCATE_INITIAL_VALUE): Use PR_MEDIA_REG for TARGET_SH5.
9831 * sh.c (calc_live_regs): Use PR_MEDIA_REG for TARGET_SH5.
9832 (sh_adjust_cost): Likewise.
9833 sh64.h (CPP_DEFAULT_CPU_SPEC): Add settings for __SIZE_TYPE__ and
9835 (SUBTARGET_CPP_PTR_SPEC, WCHAR_TYPE): Don't #undef/ #define.
9836 (WCHAR_TYPE_SIZE): Likewise.
9837 (ASM_SPEC): Use subtarget_asm_endian_spec.
9838 (SH_ELF_WCHAR_TYPE): #undef/ #define.
9839 (MAX_WCHAR_TYPE_SIZE): Don't #undef.
9840 * config/sh/elf.h (WCHAR_UNSIGNED): #undef .
9841 (MAX_WCHAR_TYPE_SIZE): Don't #define .
9842 (WCHAR_TYPE, WCHAR_TYPE_SIZE): #undef / #define .
9843 (USER_LABEL_PREFIX): Don't #undef /#define .
9844 (DBX_REGISTER_NUMBER): Use SH_DBX_REGISTER_NUMBER.
9845 * config/elf/linux.h (USER_LABEL_PREFIX): Don't #undef /#define .
9846 (SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE, WCHAR_TYPE_SIZE): Likewise.
9847 (ASM_SPEC): Likewise.
9848 (SUBTARGET_ASM_ENDIAN_SPEC): #undef / #define .
9849 (CC1_SPEC): don't supply -m3 for -m4*, -m5*.
9850 * t-sh: (LIB1ASMFUNCS): Use LIB1ASMFUNCS_CACHE.
9851 (LIB2FUNCS_EXTRA): Define.
9852 * t-sh64 (LIB2FUNCS_EXTRA): Define.
9853 * config/sh/t-linux (LIB1ASMFUNCS): Don't redefine.
9854 (LIB1ASMFUNCS_CACHE): Define.
9855 (LIB2FUNCS_EXTRA): Redefine empty.
9857 2002-04-08 Richard Henderson <rth@redhat.com>
9859 * reorg.c (get_branch_condition): Use reversed_comparison_code.
9861 2002-04-09 Stephane Carrez <Stephane.Carrez@worldnet.fr>
9863 * config/m68hc11/larith.asm (__map_data_section): Fix condition
9864 and optimize for size.
9865 (__do_global_ctors): Fix pointer comparison.
9866 (__do_global_dtors): Likewise.
9868 2002-04-09 David S. Miller <davem@redhat.com>
9870 * config/sparc/sparc.c (sparc_extra_constraint_check): New
9871 function, implementing EXTRA_CONSTRAINTS. For memory constraints,
9872 allow reloading pseudos.
9873 * config/sparc/sparc.h (EXTRA_CONSTRAINTS): Use it.
9874 * config/sparc/sparc-protos.h: Declare it.
9876 * config/sparc/sparc.c (const64_is_2insns): Kill signed vs.
9877 unsigned comparison warning.
9878 (output_restore_regs): Mark leaf_function as unused.
9880 Tue Apr 9 09:35:45 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
9882 * expr.c (is_aligning_offset): New function.
9883 (expand_expr, case COMPONENT_EXPR): Call it.
9885 2002-04-08 David S. Miller <davem@redhat.com>
9888 * config/sparc/freebsd.h (SPARC_DEFAULT_CMODEL): Set to CM_MEDLOW
9890 Make init_priority work on Sparc when using GNU ld.
9891 * config/sparc/linux.h, config/sparc/linux64.h,
9892 config/sparc/netbsd-elf.h, config/sparc/freebsd.h
9893 (CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP): Undefine.
9894 * config/sparc/sol2-gld.h: New file to do the same.
9895 * config.gcc (sparc*-*-solaris2*): If gnu_ld=yes add
9896 sparc/sol2-gld.h to tm_file.
9898 PR optimization/4328
9899 * config/sparc/sparc.h (EXTRA_CONSTRAINT): Add new constraint 'W'.
9900 * doc/md.texi: Document it.
9901 * config/sparc/sparc.md (movdi_insn_sp64_novis,
9902 movdi_insn_sp64_vis, movdf_insn_sp32, movdf_insn_v9only_novis,
9903 movdf_insn_v9only_vis, movdf_insn_sp64_novis,
9904 movdf_insn_sp64_vis): Use it as MEM constraing with 'e' registers.
9905 * config/sparc/sparc.c (mem_min_alignment): Fix comment.
9907 2002-04-08 Andreas Jaeger <aj@suse.de>
9909 * stmt.c (expand_asm_operands): Revert last patch from Richard
9912 2002-04-08 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
9914 * doc/contrib.texi (Contributors): Add John David Anglin and Loren
9915 J. Rittle (the latter also to Testers). Update David O'Brien's entry.
9917 2002-04-08 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
9919 * doc/contrib.texi (Contributors): Add David O'Brien.
9921 2002-04-08 Alan Modra <amodra@bigpond.net.au>
9923 * configure.in (auto-build.h): Use target_alias and build_alias
9924 when running configure.
9925 (gcc_cv_as, gcc_cv_ld): Search install paths when build != host too.
9926 (gcc_cv_nm, gcc_cv_objdump): Set for build != host too.
9927 * configure: Regenerate.
9929 2002-04-07 David S. Miller <davem@redhat.com>
9931 * config.gcc (sparc64-*-linux*): Add t-crtfm to tmake_file.
9933 2002-04-07 John David Anglin <dave@hiauly1.hia.nrc.ca>
9936 * pa.h (ASM_OUTPUT_MI_THUNK): Use indirect jump to target function when
9937 generating 32-bit pic code.
9939 2002-04-06 Jason Thorpe <thorpej@wasabisystems.com>
9941 * cppinit.c (cpp_create_reader): Initialize
9942 discard_comments_in_macro_exp.
9943 (COMMAND_LINE_OPTIONS): Add "-CC" option.
9944 (cpp_handle_option): Handle "-CC" option.
9945 * cpplex.c (save_comment): If saving a C++ comment in
9946 a directive, convert it to a C comment.
9947 (_cpp_lex_direct): Pass second comment start character to
9948 save_comment to indicate comment type.
9949 * cpplib.c (_cpp_handle_directive): If processing
9950 a "#define" directive and discard_comments_in_macro_exp
9951 is false, re-enable saving of comments.
9952 (lex_macro_node): If discard_comments_in_macro_exp is false,
9953 discard any comments before the macro identifier.
9954 * cpplib.h (struct cpp_options): Add discard_comments_in_macro_exp
9956 * cppmacro.c (cpp_get_token): If expanding a macro while
9957 processing a directive, discard any comments we might encounter.
9958 (parse_params): If discard_comments_in_macro_exp is false,
9959 ignore comments in the macro parameter list.
9960 * gcc.c (cpp_unique_options): Add "-CC" option.
9961 (option_map): Map "--comments-in-macros" to "-CC".
9962 * doc/cppopts.texi: Document "-CC" option.
9963 * f/lang-specs.h: Add "-CC" option.
9964 * testsuite/gcc.dg/cpp/maccom1.c: New test.
9965 * testsuite/gcc.dg/cpp/maccom2.c: New test.
9966 * testsuite/gcc.dg/cpp/maccom3.c: New test.
9967 * testsuite/gcc.dg/cpp/maccom4.c: New test.
9968 * testsuite/gcc.dg/cpp/maccom5.c: New test.
9969 * testsuite/gcc.dg/cpp/maccom6.c: New test.
9971 2002-04-06 John David Anglin <dave@hiauly1.hia.nrc.ca>
9974 * reorg.c (dbr_schedule): Don't reposition prologue and epilogue notes.
9976 2002-04-06 Mark Mitchell <mark@codesourcery.com>
9979 * stor-layout.c (layout_decl): Reset the RTL for the decl.
9982 * sibcall.c (optimize_sibling_and_tail_recursive_call): Clear
9983 RTX_UNCHANGING_P for the functions arguments when a tail call
9986 2002-04-06 Jason Merrill <jason@redhat.com>
9988 * toplev.c (flag_no_inline, flag_really_no_inline): Default to 2.
9989 (parse_options_and_default_flags): Set them appropriately.
9990 * c-common.c (c_common_post_options): Don't set flag_really_no_inline.
9992 2002-04-06 Hans-Peter Nilsson <hp@bitrange.com>
9994 * config/mmix/t-mmix (TARGET_LIBGCC2_CFLAGS): Don't -Dinhibit_libc
9997 * config/mmix/mmix.h (INITIAL_ELIMINATION_OFFSET): Remove spurious
10000 * config/mmix/mmix.c (mmix_expand_builtin_va_arg): Variable-size
10001 types come in by-reference. Fix typo in comment.
10003 2002-04-05 David S. Miller <davem@redhat.com>
10005 * config/sparc/freebsd.h (ENDFILE_SPEC): Add crtfastmath bits.
10006 * config.gcc (sparc64-wrs-vxworks, sparc-*-chorusos,
10007 sparc-*-rtems*, sparclite-*-elf* sparc86x-*-elf*, sparc64-*-elf*,
10008 {sparc64,ultrasparc}-*-freebsd*): Add sparc/t-crtfm to tmake_file.
10010 2002-04-05 David S. Miller <davem@redhat.com>
10012 * config/sparc/sparc.c (sparc_nonflat_function_epilogue): If we
10013 are not going to emit return instructions, emit at least a nop
10014 for the sake of sane backtraces.
10016 2002-04-05 Richard Henderson <rth@redhat.com>
10018 * doc/rtl.texi (Regs and Memory): Document (mem:BLK (scratch)).
10020 2002-04-05 Jakub Jeilnek <jakub@redhat.com>
10022 * mklibgcc.in: Use $tmpmapfile, not tmp-$@.
10024 2002-04-05 Alexandre Oliva <aoliva@redhat.com>
10026 * config/mips/mips.h (ISA_HAS_BRANCHLIKELY, ISA_HAS_CONDMOVE,
10027 ISA_HAS_FP4, ISA_HAS_MADD_MSUB, ISA_HAS_NMADD_NMSUB,
10028 ISA_HAS_CLZ_CLO, ISA_HAS_DCLZ_DCLO): Disable if TARGET_MIPS16.
10030 2002-04-05 Andreas Schwab <schwab@suse.de>
10032 * c-convert.c: Include c-common.h.
10033 * Makefile.in (c-convert.o): Updated.
10035 2002-04-05 Jakub Jelinek <jakub@redhat.com>
10037 * mklibgcc.in: Use separate libgcc.map for each multilib.
10038 * Makefile.in (distclean): Don't remove libgcc.map here.
10040 2002-04-05 Jakub Jelinek <jakub@redhat.com>
10042 * Makefile.in (s-mlib): Handle --disable-multilib by separate
10043 genmultilib invocation.
10045 2002-04-04 Richard Sandiford <rsandifo@redhat.com>
10047 * config/mips/mips.h (CUMULATIVE_ARGS): Rename fp_regs to num_fprs
10048 to avoid clash with Irix header file sys/ucontext.h. Rename gp_regs
10049 to num_gprs for symmetry.
10050 * config/mips/mips.c: Adjust accordingly.
10052 2002-04-04 Neil Booth <neil@daikokuya.demon.co.uk>
10054 * c-common.c (truthvalue_conversion): Rename, update.
10055 * c-common.h (c_common_truthvalue_conversion): New.
10056 * c-convert.c (convert): Update.
10057 * c-lang.c (LANG_HOOKS_TRUTHVALUE_CONVERSION): Redefine.
10058 * c-parse.in (expr_no_commas, if_prefix, select_or_iter_stmt): Update.
10059 * c-typeck.c (build_binary_op, build_unary_op,
10060 build_conditional_expr): Update.
10061 * fold-const.c (constant_boolean_node, fold): Use langhook.
10062 * langhooks-def.h (LANGHOOK_INITIALIZER): Update.
10063 * langhooks.h (struct lang_hooks): New hook.
10064 * stmt.c (expand_decl_cleanup): Use langhook.
10065 * tree.h (truthvalue_conversion): Remove.
10067 * objc-lang.c (LANG_HOOKS_TRUTHVALUE_CONVERSION): Redefine.
10069 2002-04-05 Alan Modra <amodra@bigpond.net.au>
10071 * config/rs6000/t-linux64 (EXTRA_MULTILIB_PARTS): Add crtsavres.o
10072 Add rules to make null object file.
10074 2002-04-04 Jim Blandy <jimb@redhat.com>
10076 * cppmacro.c (cpp_macro_definition): Do not emit spaces after
10077 macro formal parameter names.
10079 2002-04-04 David S. Miller <davem@redhat.com>
10081 * calls.c (store_one_arg): If ECF_SIBCALL, use tail_call_reg.
10083 2002-04-04 Richard Henderson <rth@redhat.com>
10086 * stmt.c (expand_asm_operands): Validate outputs vs asm_operand_ok.
10087 Support copies into and out of memory. Don't accept allows_reg
10088 and allows_mem as gospel.
10090 2002-04-04 Richard Henderson <rth@redhat.com>
10093 * alias.c (true_dependence): Force (mem:blk (scratch)) to conflict.
10094 (write_dependence_p): Likewise.
10096 2002-04-04 Richard Henderson <rth@redhat.com>
10098 * predict.c (estimate_bb_frequencies): Do frequency calculation
10099 with a volatile temporary.
10101 2002-04-04 Ulrich Weigand <uweigand@de.ibm.com>
10103 * config/s390/linux.h (LOCAL_LABEL_PREFIX): Define.
10105 2002-04-04 Jakub Jelinek <jakub@redhat.com>
10108 * final.c (final_start_function): Don't bump profile_label_no here...
10109 (final_end_function): ...but here.
10111 2002-04-04 Jakub Jelinek <jakub@redhat.com>
10113 * config/sparc/sparc.md (pic): New attribute.
10114 (do_builtin_setjmp_setup): Save %fp, %i7 and %l7 for TARGET_V9
10116 (split after do_builtin_setjmp_setup): New.
10118 2002-04-04 Jakub Jelinek <jakub@redhat.com>
10121 * config/sparc/sparc.h (MIN_UNITS_PER_WORD): Backout 2001-01-01
10124 2002-04-04 Jakub Jelinek <jakub@redhat.com>
10126 * config/sparc/sparc.c (sparc_va_arg): Adjust va_list by
10127 UNITS_PER_WORD for zero sized aggregates.
10129 2002-04-03 David S. Miller <davem@redhat.com>
10131 * gcc.c (LINK_GCC_C_SEQUENCE_SPEC): No need for a new
10132 one-character spec for this, just use %(link_gcc_c_sequence).
10134 2002-04-03 David S. Miller <davem@redhat.com>
10136 * config/sparc/crtfastmath.c (FPRS_NS): Delete bogus little-endian
10139 2002-04-03 John David Anglin <dave@hiauly1.hia.nrc.ca>
10141 * pa-linux.h (INCOMING_RETURN_ADDR_RTX): Move.
10142 (DWARF_FRAME_RETURN_COLUMN): Move.
10143 (ASM_PREFERRED_EH_DATA_FORMAT): Define.
10144 (ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX): Define.
10145 * pa.c (except.h, predict.h): Include.
10147 (store_reg_modify, set_reg_plus_d): Revise prototypes.
10148 (output_ascii): Add cast.
10149 (store_reg_modify): Revise to add frame notes.
10150 (set_reg_plus_d): Likewise.
10151 (compute_frame_size): Include space for eh data registers in frame if
10152 the current function calls eh_return.
10153 (hppa_expand_prologue): Ensure register %r2 is saved if the current
10154 function calls eh_return. Save eh data registers if the current
10155 function calls eh_return. Fix code to add frame notes. Emit
10156 blockage to prevent insns with frame notes being scheduled in the
10157 delay slot of calls.
10158 (hppa_expand_epilogue): Restore eh data registers and do final stack
10159 adjustment if the current function calls eh_return. Don't add frame
10161 (output_call): Revise for change in length of call insn. Don't do
10162 return pointer adjustment for an unconditional jump in the delay slot
10163 of a call when using frame notes.
10164 * pa.h (EH_RETURN_DATA_REGNO): Revise for TARGET_64BIT compatibility.
10165 (EH_RETURN_HANDLER_RTX): Use saved value on stack.
10166 (ARG_POINTER_CFA_OFFSET): Define.
10167 * pa.md (return_external_pic): New pattern.
10168 (prologue): Correct formatting. Use return_external_pic if current
10169 function calls eh_return.
10170 (call_internal_symref, call_value_internal_symref,
10171 sibcall_internal_symref, sibcall_value_internal_symref): Change default
10172 lengths of short, long non-pic, and long pic calls to 8, 68, and 84,
10174 (exception_receiver): Use hppa_pic_save_rtx () to restore pic register.
10176 * configure.in ("assembler dwarf2 debug_line support"): Add hppa*-*-* to
10177 list of targets to check using "nop" insn.
10178 * configure: Rebuilt.
10180 2002-04-04 Alan Modra <amodra@bigpond.net.au>
10182 * config/rs6000/t-linux64 (EXTRA_MULTILIB_PARTS): Define.
10184 2002-04-03 David S. Miller <davem@redhat.com>
10186 * gcc.c (LINK_GCC_C_SEQUENCE_SPEC): New spec to override the gcc/c
10187 library sequence passed to the linker.
10188 (LINK_COMMAND_SPEC): Use it.
10189 * doc/tm.texi: Document it, and mention from LINK_COMMAND_SPEC as
10190 a macro a target can use to avoid overriding LINK_COMMAND_SPEC.
10191 * config/sparc/sparc.h (LINK_GCC_C_SEQUENCE_SPEC): Define.
10193 2002-04-03 Jason Merrill <jason@redhat.com>
10195 * except.c (struct eh_status): Remove protect_list.
10196 (begin_protect_partials, end_protect_partials): Remove.
10197 (add_partial_entry): Remove.
10198 * except.h: Remove prototypes.
10200 * expr.c (expand_expr) [WITH_CLEANUP_EXPR, TARGET_EXPR]: Use
10201 expand_decl_cleanup_eh.
10204 * tree.h (CLEANUP_EH_ONLY): New macro.
10205 * stmt.c (expand_decl_cleanup_eh): New fn.
10206 (expand_cleanups): Check CLEANUP_EH_ONLY.
10207 * c-semantics.c (genrtl_decl_cleanup): Just take the CLEANUP_STMT.
10208 Use expand_decl_cleanup_eh.
10209 (expand_stmt): Adjust.
10210 * c-common.h: Adjust prototype.
10212 2002-04-04 Hans-Peter Nilsson <hp@axis.com>
10214 * config/cris/cris.c (cris_target_asm_function_prologue): Cast
10215 uses of PIC_OFFSET_TABLE_REGNUM to int to silence warnings.
10216 (cris_target_asm_function_epilogue): Ditto.
10217 (cris_initial_frame_pointer_offset): Ditto.
10218 (cris_simple_epilogue): Ditto.
10219 (cris_expand_builtin_va_arg): Variable-size types come in
10222 2002-04-03 David S. Miller <davem@redhat.com>
10224 * config/sparc/crtfastmath.c (FPRS_NS): Get it right for
10226 (set_fast_math): Correct 'fsr' type.
10228 2002-04-03 Richard Henderson <rth@redhat.com>
10231 * langhooks.h (lang_hooks.decls.warn_unused_global): New.
10232 * toplev.c (check_global_declarations): Use it.
10233 * langhooks-def.h (lhd_warn_unused_global_decl): Declare.
10234 (LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL): New.
10235 (LANG_HOOKS_DECLS): Add it.
10236 * langhooks.c (lhd_warn_unused_global_decl): New.
10237 * c-decl.c (LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL): New.
10238 * c-objc-common.c (c_warn_unused_global_decl): New.
10239 * c-tree.h (c_warn_unused_global_decl): Declare.
10240 * objc/objc-lang.c (LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL): New.
10242 2002-04-03 Neil Booth <neil@daikokuya.demon.co.uk>
10244 * langhooks-def.h (lhd_set_decl_assembler_name,
10245 LANG_HOOKS_SET_DECL_ASSEMBLER_NAME): New.
10246 (LANG_HOOKS_INITIALIZER): Update.
10247 * langhooks.c (lhd_set_decl_assembler_name): New, from tree.c
10248 * langhooks.h (struct lang_hooks): New hook.
10249 * tree.c (set_decl_assembler_name): Move to langhooks.c.
10250 (lang_set_decl_assembler_name): Remove.
10251 (init_obstacks): Don't set hook.
10252 (decl_assembler_name): New function.
10253 * tree.h (DECL_ASSEMBLER_NAME): Turn into a function call.
10254 (decl_assembler_name): New.
10255 (lang_set_decl_assembler_name): Remove.
10257 2002-04-03 Jakub Jelinek <jakub@redhat.com>
10259 * configure.in (HAVE_SPARC_UA_PCREL_HIDDEN): Test whether %r_disp32()
10260 works properly with .hidden symbols.
10261 * configure: Rebuilt.
10262 * config.in: Rebuilt.
10263 * config/sparc/sparc.h (ASM_PREFERRED_EH_DATA_FORMAT): Use
10264 DW_EH_PE_absptr for flag_pic && GLOBAL if %r_disp32() doesn't work
10265 properly with .hidden symbols.
10267 2002-04-03 Jakub Jelinek <jakub@redhat.com>
10270 * df.c (df_insn_refs_record): Use XEXP not SET_DEST to access
10273 2002-04-03 Richard Henderson <rth@redhat.com>
10276 * sched-rgn.c (sets_likely_spilled): New.
10277 (sets_likely_spilled_1): New.
10278 (add_branch_dependences): Use it.
10280 2002-04-02 Richard Henderson <rth@redhat.com>
10283 * loop.h (LOOP_FIRST_PASS): New.
10284 * loop.c (strength_reduce): Mind it when deciding to unroll.
10285 * toplev.c (rest_of_compilation): Set it.
10287 2002-04-02 David S. Miller <davem@redhat.com>
10289 * config/sparc/sparc.md (ldd peephole2s): Fix final arg to
10290 mems_ok_for_ldd_peep when the order of the loads being examined
10292 * config/sparc/sparc.c (mems_ok_for_ldd_peep): Expand upon
10293 existing comment to increase comprehension of this situation.
10295 2002-04-02 Zack Weinberg <zack@codesourcery.com>
10297 * config/sh/sh.md: Don't use union real_extract.
10299 2002-04-02 Richard Henderson <rth@redhat.com>
10301 * libgcc2.c (__bb_exit_func): Revert 03-31 change.
10303 2002-04-02 David O'Brien <obrien@FreeBSD.org>
10305 * config.gcc (i386-dg-dgux, i386-go32-msdos , i386-go32-rtems,
10306 i386-ibm-aix, i386-moss-msdos, i386-ncr-sysv4, i386-next-,
10307 i386-pc-msdosdjgpp, i386-sequent-bsd, i386-sequent-ptx1,
10308 i386-sequent-ptx2, i386-sequent-ptx4, i386-sun-sunos,
10309 i386-wrs-vxworks, i386-*-aout, i386-*-beoself, i386-*-bsd,
10310 i386-*-bsdi, i386-*-chorusos, i386-*-coff, i386-*-elf,
10311 i386-*-freebsd5, i386-*-freebsd-aout, i386-*-gnu, i386-*-interix,
10312 i386-*-interix3, i386-*-isc, i386-*-linux, i386-*-linuxaout,
10313 i386-*-linuxoldld, i386-*-lynxos, i386-*-mach, i386-*-mingw32,
10314 i386-*-netbsd, i386-*-netbsdelf, i386-*-netware, i386-*-openbsd,
10315 i386-*-osf1, i386-*-osfrose, i386-*-pe , i386-*-rtems,
10316 i386-*-rtemscoff, i386-*-sco3.2v5, i386-*-solaris2, i386-*-sysv,
10317 i386-*-sysv4, i386-*-sysv5, i386-*-udk, i386-*-uwin, i386-*-vsta,
10318 i386-*-win32, x86_64-*-freebsd5, x86_64-*-linux, x86_64-*-netbsd):
10319 Include as many configury headers via tm_file as possible. This
10320 includes among others i386/unix.h, i386/bsd.h, i386/gas.h.
10321 * config/openbsd-oldgas.h: New file.
10322 * config/i386/386bsd.h, config/i386/aix386ng.h, config/i386/att.h,
10323 config/i386/bsd.h, config/i386/djgpp.h, config/i386/freebsd-aout.h,
10324 config/i386/gas.h, config/i386/gstabs.h, config/i386/i386-aout.h,
10325 config/i386/i386-coff.h, config/i386/i386-interix.h,
10326 config/i386/iscdbx.h, config/i386/linux-aout.h,
10327 config/i386/linux-oldld.h, config/i386/lynx-ng.h, config/i386/lynx.h,
10328 config/i386/mach.h, config/i386/netbsd.h, config/i386/next.h,
10329 config/i386/openbsd.h, config/i386/osfelf.h, config/i386/osfrose.h,
10330 config/i386/sco5.h, config/i386/seq-gas.h, config/i386/seq-sysv3.h,
10331 config/i386/seq2-sysv3.h, config/i386/sequent.h, config/i386/sun.h,
10332 config/i386/sun386.h, config/i386/svr3dbx.h, config/i386/svr3gas.h,
10333 config/i386/sysv3.h, config/i386/uwin.h, config/i386/vsta.h,
10334 config/i386/vxi386.h: Do not directly include configury headers.
10335 * config/i386/cygwin.h, config/i386/djgpp.h, config/i386/win32.h:
10336 Directly include configury headers that are no longer automatically
10337 included by the above headers.
10338 * config/i386/att.h, config/i386/bsd.h (TARGET_VERSION): Do not define.
10339 * config/i386/386bsd.h, config/i386/aix386ng.h, config/i386/cygwin.h,
10340 config/i386/djgpp.h, config/i386/i386-aout.h, config/i386/i386-coff.h,
10341 config/i386/lynx-ng.h, config/i386/lynx.h, config/i386/mach.h,
10342 config/i386/netbsd.h, config/i386/openbsd.h, config/i386/rtems.h,
10343 config/i386/seq-sysv3.h, config/i386/sequent.h, config/i386/svr3gas.h,
10344 config/i386/sysv3.h, config/i386/vsta.h, config/i386/vxi386.h
10345 (TARGET_VERSION): Define.
10346 * config/i386/beos-elf.h, config/i386/freebsd.h,
10347 config/i386/i386-interix.h, config/i386/i386elf.h, config/i386/linux.h,
10348 config/i386/linux64.h, config/i386/netbsd-elf.h, config/i386/netbsd64.h,
10349 config/i386/osfelf.h, config/i386/osfrose.h, config/i386/ptx4-i.h,
10350 config/i386/sco5.h, config/i386/sysv4.h
10351 (TARGET_VERSION): Do not need to protect.
10352 * config/i386/freebsd64.h (TARGET_VERSION): Fix style.
10353 * config/i386/386bsd.h, config/i386/cygwin.h, config/i386/djgpp.h,
10354 config/i386/freebsd-aout.h, config/i386/i386-aout.h,
10355 config/i386/i386-interix.h, config/i386/linux-aout.h,
10356 config/i386/linux-oldld.h, config/i386/mach.h, config/i386/netbsd.h,
10357 config/i386/openbsd.h, config/i386/vsta.h, config/i386/win32.h
10358 (YES_UNDERSCORES): Do not define - not needed.
10359 * config/i386/bsd.h, config/i386/gas.h (LPREFIX,
10360 ASM_GENERATE_INTERNAL_LABEL, ASM_OUTPUT_INTERNAL_LABEL,
10361 USER_LABEL_PREFIX): Do not handle the "NO_UNDERSCORES" case.
10362 * config/i386/i386-coff.h, config/i386/lynx.h, config/i386/lynx-ng.h
10363 (LPREFIX, ASM_GENERATE_INTERNAL_LABEL, ASM_OUTPUT_INTERNAL_LABEL,
10364 USER_LABEL_PREFIX): Define. (handles the "NO_UNDERSCORES" case)
10365 * config/i386/isc.h: Preserve comment from config/i386/isccoff.h.
10366 * config/i386/isccoff.h, config/i386/v3gas.h: Remove.
10368 2002-04-02 Eric Botcazou <ebotcazou@multimania.com>
10369 Richard Henderson <rth@redhat.com>
10372 * function.c (assign_temp): Accept either type or decl argument.
10373 Detect variables whose size is too large to fit into an integer.
10374 * stmt.c (expand_decl): Pass the decl, not the type.
10376 2002-04-02 David O'Brien <obrien@FreeBSD.org>
10378 * protoize.c: Match include directory usage with cppdefault.c.
10380 2002-04-03 Jeffrey A Law (law@redhat.com)
10381 Hans-Peter Nilsson <hp@bitrange.com>
10383 * combine.c (simplify_comparison): Avoid narrowing a comparison
10384 with a paradoxical subreg when doing so would drop signficant bits.
10386 2002-04-02 Steve Ellcey <sje@cup.hp.com>
10388 * builtins.c (expand_builtin_prefetch): Force op0 pointer to Pmode
10389 if POINTERS_EXTEND_UNSIGNED is defined.
10391 2002-04-02 Richard Henderson <rth@redhat.com>
10394 * local-alloc.c (contains_replace_regs): LO_SUM may contain
10397 2002-04-02 Richard Henderson <rth@redhat.com>
10399 * doc/standards.texi: Document required freestanding libc entry points.
10401 2002-04-02 Alan Modra <amodra@bigpond.net.au>
10403 * config/rs6000/rs6000.md (ctrdi*): Add FPR constraint and
10404 associated splitter. Remove MQ constraint.
10405 (ctrdi_internal4): Correct CCmode clobber.
10407 2002-04-02 John David Anglin <dave@hiauly1.hia.nrc.ca>
10409 * milli64.S ($$dyncall): New function.
10410 * t-linux (LIB1ASMFUNCS): Revise module list.
10411 (LIB1ASMSRC): Use pa/milli64.S.
10413 2002-04-02 Richard Henderson <rth@redhat.com>
10415 * fixinc/inclhack.def (AAB_solaris_sys_varargs_h): Move and
10416 rename solaris_sys_varargs_h.
10418 Tue Apr 2 06:47:40 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
10420 * stor-layout.c (layout_type, case ARRAY_TYPE): Give one-element array
10421 the same mode as its component.
10423 2002-04-02 Richard Henderson <rth@redhat.com>
10426 * final.c (this_is_asm_operands): Export.
10427 * output.h (this_is_asm_operands): Declare.
10428 * config/i386/i386.c (print_operand): Error odd asm operands.
10430 2002-04-02 Richard Henderson <rth@redhat.com>
10433 * config/m68k/m68k.md (dbcc peepholes): Match four forms of dbra.
10435 2002-04-01 Richard Henderson <rth@redhat.com>
10438 * fixinc/inclhack.def (solaris_sys_varargs_h): New.
10439 * fixinc/fixincl.x: Rebuild.
10441 2002-04-01 Richard Henderson <rth@redhat.com>
10443 * config/ia64/unwind-ia64.c: Include ia64intrin.h.
10444 (atomic_alloc, atomic_free): New.
10445 (SIZE, MASK_FOR, PTR_IN): New.
10446 (emergency_reg_state, emergency_reg_state_free): New.
10447 (emergency_labeled_state, emergency_labeled_state_free): New.
10448 (reg_state_alloced, labeled_state_alloced): New.
10449 (alloc_reg_state, free_reg_state): New.
10450 (alloc_label_state, free_label_state, free_label_states): New.
10451 (push, pop, dup_state_stack, free_state_stack): Use them.
10452 (desc_label_state): Likewise.
10453 (uw_frame_state_for): Free label states and state stack.
10454 (uw_update_reg_address): Eliminate warnings.
10456 2002-04-01 Vladimir Makarov <vmakarov@redhat.com>
10458 * config/pa/pa-pro-end.h (ASM_OUTPUT_ALIGNED_COMMON,
10459 ASM_OUTPUT_ALIGNED_LOCAL): Redefine them.
10461 2002-04-01 Neil Booth <neil@daikokuya.demon.co.uk>
10463 * c-decl.c (grokdeclarator): Update.
10464 * c-lang.c (LANG_HOOKS_MARK_ADDRESSABLE): Redefine.
10465 * c-tree.h (c_mark_addressable): New.
10466 * c-typeck.c (default_function_array_conversion, build_unary_op,
10467 build_array_ref, convert_for_assignment): Update.
10468 (mark_addressable): Rename.
10469 * calls.c (try_to_integrate, expand_call): Use langhook.
10470 * expr.c (expand_expr): Use langhook.
10471 * langhooks-def.h (LANG_HOOKS_INITIALIZER): Update.
10472 * langhooks.h (struct lang_hooks): New hook.
10473 * stmt.c (expand_asm_operands): Use langhook.
10474 * tree.h (mark_addressable): Remove.
10476 * objc-lang.c (LANG_HOOKS_MARK_ADDRESSABLE): Redefine.
10478 2002-04-01 Bob Wilson <bob.wilson@acm.org>
10480 * config/xtensa/xtensa.c (xtensa_va_arg): Fix compiler warning
10481 in previous change.
10483 2002-04-01 Bob Wilson <bob.wilson@acm.org>
10485 * config/xtensa/xtensa.c (xtensa_va_arg): Fix to handle arguments
10486 for which MUST_PASS_IN_STACK is true (e.g., variable-sized types).
10488 2002-04-01 Neil Booth <neil@daikokuya.demon.co.uk>
10490 * c-common.c (unsigned_conversion_warning, convert_and_check,
10491 unsigned_type, signed_type, shorten_compare,
10492 c_common_get_alias_set, c_common_nodes_and_builtins): Use new hooks.
10493 (unsigned_type, signed_type, signed_or_unsigned_type): Rename.
10494 * c-common.h (unsigned_type, signed_type, signed_or_unsigned_type):
10496 * c-decl.c (grokdeclarator): Update.
10497 * c-format.c (check_format_types): Update.
10498 * c-lang.c (LANG_HOOKS_SIGNED_TYPE, LANG_HOOKS_UNSIGNED_TYPE,
10499 LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): New.
10500 * c-typeck.c (build_binary_op, convert_for_assignment): Update.
10501 * convert.c (convert_to_integer): Use new hooks.
10502 * expmed.c (make_tree): Use new hooks.
10503 * expr.c (store_expr): Use new hooks.
10504 * fold-const.c (operand_equal_for_comparison_p, build_range_check,
10505 all_ones_mask_p, unextend, fold): Use new hooks.
10506 * langhooks.h (struct lang_hooks_for_types): New hooks.
10507 * tree.h (signed_or_unsigned_type, signed_type,
10508 unsigned_type): Remove.
10510 * objc-lang.c (LANG_HOOKS_SIGNED_TYPE, LANG_HOOKS_UNSIGNED_TYPE,
10511 LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): New.
10513 2002-03-31 Richard Henderson <rth@redhat.com>
10515 * config/ia64/unwind-ia64.c (alloc_spill_area): Fix offset.
10516 (desc_frgr_mem): Fix reference to f16-f31.
10518 2002-03-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10520 * rtl.h (RTL_CHECK1, RTL_CHECK2, RTL_CHECKC1, RTL_CHECKC2,
10521 RTVEC_ELT): Const-ify.
10522 * varray.h (VARRAY_CHECK): Const-ify.
10523 * ggc.h (ggc_mark_rtx, ggc_mark_tree, ggc_mark_nonnull_tree,
10524 ggc_mark_rtvec, ggc_mark): Const-ify.
10526 2002-04-01 Neil Booth <neil@daikokuya.demon.co.uk>
10528 * diagnostic.c: Include langhooks-def.h.
10529 * Makefile.in (diagnostic.o): Update.
10531 2002-03-31 Neil Booth <neil@daikokuya.demon.co.uk>
10533 * c-common.c (c_unsafe_for_reeval): Rename.
10534 * c-common.h (c_unsafe_for_reeval): Rename.
10535 * c-decl.c (finish_incomplete_decl): Rename.
10536 (c_init_decl_processing): Don't set langhook.
10537 * c-lang.c (LANG_HOOKS_FINISH_INCOMPLETE_DECL,
10538 LANG_HOOKS_UNSAFE_FOR_REEVAL): Redefine.
10539 * c-objc-common.c (c_objc_common_init): Don't set langhook.
10540 * c-tree.h (finish_incomplete_decl): Rename.
10541 * langhooks-def.h (lhd_unsafe_for_reeval): New.
10542 (LANG_HOOKS_FINISH_INCOMPLETE_DECL, LANG_HOOKS_UNSAFE_FOR_REEVAL): New.
10543 (LANG_HOOKS_INITIALIZER): Update.
10544 * langhooks.c (lhd_unsafe_For_reeval): New.
10545 * langhooks.h (struct langhooks): New hooks.
10546 * toplev.c (incomplete_decl_finalize_hook): Remove.
10547 (wrapup_global_declarations): Update.
10548 * tree.c (lang_unsafe_for_reeval): Remove.
10549 (unsafe_for_reeval): Update.
10550 * tree.h (lang_unsafe_for_reeval, incomplete_decl_finalize_hook):
10553 * objc-lang.c (LANG_HOOKS_FINISH_INCOMPLETE_DECL,
10554 LANG_HOOKS_UNSAFE_FOR_REEVAL): Redefine.
10556 2002-03-31 Neil Booth <neil@daikokuya.demon.co.uk>
10558 * diagnostic.c (print_error_function): Remove.
10559 (default_print_error_function): Rename.
10560 (report_error_function): Update.
10561 * diagnostic.h (print_error_function): Remove.
10562 (default_print_error_function): Remove.
10563 * langhooks-def.h (struct diagnostic_context): Predeclare.
10564 (lhd_print_error_function, LANG_HOOKS_PRINT_ERROR_FUNCTION): New.
10565 (LANG_HOOKS_INITIALIZER): Update.
10566 * langhooks.h (struct diagnostic context): Predeclare.
10567 (struct lang_hooks): New hook.
10569 2002-03-31 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
10571 * config/rs6000/rs6000.h (RS6000_PIC_OFFSET_TABLE_REGNUM): New.
10572 (PIC_OFFSET_TABLE_REGNUM): Use it and return INVALID_REGNUM if
10574 (CONDITIONAL_REGISTER_USAGE): Adjust accordingly.
10575 * config/rs6000/rs6000.h: Use RS6000_PIC_OFFSET_TABLE_REGNUM instead
10576 of PIC_OFFSET_TABLE_REGNUM thruout.
10577 * config/rs6000/rs6000.md: Likewise.
10578 * config/rs6000/darwin.h: Likewise.
10580 Sun Mar 31 14:43:24 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
10582 * emit-rtl.c (adjust_address_1, offset_address): Cast value to
10583 unsigned HOST_WIDE_INT, not unsigned int.
10585 2002-03-31 Jakub Jelinek <jakub@redhat.com>
10587 PR middle-end/6096, middle-end/6098, middle-end/6099
10588 * reorg.c (emit_delay_sequence): Only increment LABEL_NUSES for
10590 (fill_slots_from_thread): Likewise.
10592 2002-03-31 Jakub Jelinek <jakub@redhat.com>
10594 * config/sparc/sparc.c (function_arg_record_value_1): Pass complex
10595 floating fields in float regs.
10596 (function_arg_record_value_2): Likewise.
10598 2002-03-31 Hans-Peter Nilsson <hp@bitrange.com>
10600 * config/mmix/mmix.md (define_constants): Remove misleading
10601 FIXME. Add MMIX_fp_rO_OFFSET.
10602 ("nonlocal_goto_receiver"): Don't have stack-frame address of
10603 saved rO as part of the pattern. Remove FIXME.
10604 ("*nonlocal_goto_receiver_expanded"): Similar. Generate address
10605 here, at output-time.
10607 2002-03-31 Jakub Jelinek <jakub@redhat.com>
10610 * config/sparc/sparc.c (output_cbranch): Use REG_BR_PROB, not
10612 (output_v9branch): Likewise.
10614 2002-03-31 Alexandre Oliva <aoliva@redhat.com>
10616 * gcc.c: Revert previous patch for now.
10617 * config/i386/djgpp.h: Likewise.
10619 2002-03-31 Hans-Peter Nilsson <hp@bitrange.com>
10621 * config/mmix/crti.asm (_init): Register _fini with atexit.
10622 * config/mmix/crtn.asm (_fini): Add omitted "POP 0,0".
10624 2002-03-31 Richard Henderson <rth@redhat.com>
10627 * config/alpha/elf.h (ASM_OUTPUT_DEF): Tidy.
10628 (ASM_OUTPUT_DEF_FROM_DECLS): New.
10630 2002-03-31 Richard Henderson <rth@redhat.com>
10632 * libgcc2.c (__bb_exit_func): Make static.
10634 * config/alpha/alpha.md (trap): New.
10636 2002-03-31 Richard Henderson <rth@redhat.com>
10638 * builtins.c (expand_builtin_va_arg): Give warnings not errors for
10639 promoted argument types; build trap.
10640 (expand_builtin_trap): New.
10641 (expand_builtin): Use it.
10642 * stmt.c (expand_nl_goto_receivers): Likewise.
10643 * expr.h (expand_builtin_trap): Declare.
10644 * libfuncs.h (LTI_abort, abort_libfunc): New.
10645 * optabs.c (init_optabs): Init abort_libfunc.
10647 2002-03-31 Alexandre Oliva <aoliva@redhat.com>
10649 * gcc.c (LIBGCC_SPEC): Folded %L and duplicate %G here...
10650 (LINK_COMMAND_SPEC): ... from here.
10651 (init_gcc_specs): Duplicate it here too, omitting
10652 shared_name in the second copy.
10653 (init_spec): Test for duplicate
10654 * config/i386/djgpp.h (LINK_COMMAND_SPEC): Remove `%L %G'.
10656 2002-03-30 David S. Miller <davem@redhat.com>
10658 * config/sparc/linux.h (HANDLE_PRAGMA_PACK_PUSH_POP): Define.
10659 * config/sparc/linux64.h (HANDLE_PRAGMA_PACK_PUSH_POP): Likewise.
10661 2002-03-30 Roger Sayle <roger@eyesopen.com>
10662 Richard Henderson <rth@redhat.com>
10664 * regmove.c (combine_stack_adjustments_for_block): Avoid
10665 emitting a stack adjustment of zero bytes. Let delete_insn
10668 2002-03-30 Richard Henderson <rth@redhat.com>
10670 * config/sparc/sparc.c: Remove all references to TARGET_EPILOGUE.
10671 (sparc_emitting_epilogue): New.
10672 (leaf_label, output_return, sparc_return_peephole_ok): Remove.
10673 * config/sparc/sparc-protos.h: Update.
10674 * config/sparc/sparc.h (MASK_EPILOGUE, TARGET_EPILOGUE): Remove.
10675 (TARGET_SWITCHES): Update.
10676 * config/sparc/sparc.md (return): Remove.
10677 (return_*): Use sparc_emitting_epilogue, not !TARGET_EPILOGUE.
10678 * config/sparc/freebsd.h, config/sparc/linux64.h, config/sparc/lite.h,
10679 config/sparc/liteelf.h, config/sparc/netbsd-elf.h,
10680 config/sparc/sol2-sld-64.h, config/sparc/sol2.h,
10681 config/sparc/sp64-aout.h, config/sparc/sp64-elf.h,
10682 config/sparc/sp86x-aout.h, config/sparc/sp86x-elf.h,
10683 config/sparc/splet.h, config/sparc/vxsparc64.h (TARGET_DEFAULT):
10684 Remove MASK_EPILOGUE.
10685 * doc/invoke.texi: Update.
10687 2002-03-30 Daniel Berlin <dan@dberlin.org>
10689 * dwarf2out.c (dwarf2out_define): Remove start_source_file call,
10690 CPP will start the file for us.
10692 2002-03-30 Richard Henderson <rth@redhat.com>
10695 * config/ia64/ia64.c (group_barrier_needed_p): Special case
10696 prologue_allocate_stack.
10697 (ia64_single_set): Use insn codes for recognition of special
10698 cases, not rtl matching.
10699 * config/ia64/ia64.md (prologue_allocate_stack): Op 3 is in-out.
10701 Sat Mar 30 23:48:41 CET 2002 Jan Hubicka <jh@suse.cz>
10703 * cfgbuild.c (find_basic_blocks_1): Clear aux for blocks.
10705 2002-03-30 Richard Henderson <rth@redhat.com>
10708 * config/sparc/sparc.h (OVERRIDE_OPTIONS): Don't override -fpic
10709 or -fomit-frame-pointer with profiling.
10710 (SUBTARGET_OVERRIDE_OPTIONS): Remove.
10711 (FUNCTION_PROFILER): Do nothing.
10712 (PROFILE_HOOK): New.
10713 * config/sparc/sparc.c (sparc_override_options): Don't check
10714 code models for profiling.
10715 (sparc_function_profiler): Remove.
10716 (sparc_profile_hook): New.
10717 * config/sparc/sparc-protos.h: Update.
10719 2002-03-30 Jakub Jelinek <jakub@redhat.com>
10721 PR optimization/6086
10722 * combine.c (combine_simplify_rtx): If simplify_rtx failed because
10723 of SUBREG of volatile MEM or because the MEM was mode dependent,
10724 return CLOBBER instead of unmodified SUBREG.
10726 Sat Mar 30 14:08:55 CET 2002 Jan Hubicka <jh@suse.cz>
10728 * local-alloc.c (local_alloc): Avoid call of update_equiv_regs
10729 when not optimizing.
10731 * toplev.c (rest_of_compilation): Cann mark_constant_function
10732 only when optimizing.
10734 * flow.c (calculate_global_regs_live): Ensure that all AUX fields
10737 * cfgcleanup.c (bb_flags): Add BB_NONTHREADABLE_BLOCK.
10738 (thread_jump): Set BB_NONTHREADABLE_BLOCK, check it.
10739 (try_optimize_cfg): clear all AUX fields.
10741 * i386.c (aligned_operand): Be prepared for SUBREGed registers.
10742 (ix86_decompose_address): Use REG_P instead of GET_CODE (...) == REG.
10743 (ix86_address_cost): Be prepared for SUBREGed registers.
10744 (legitimate_address_p): Accept SUBREGed registers.
10746 2002-03-29 Richard Henderson <rth@redhat.com>
10749 * expr.c (expand_expr): Pass along EXPAND_INITIALIZER one more place.
10751 2002-03-29 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
10753 * config/rs6000/rs6000.c (rs6000_va_arg): Correctly set register count
10754 for aggregate and TFmode types.
10756 2002-03-29 Hans-Peter Nilsson <hp@bitrange.com>
10758 * cfg.c (dump_flow_info): Guard against NULL regno_reg_rtx[i].
10760 2002-03-29 Richard Henderson <rth@redhat.com>
10763 * config/ia64/aix.h (CPP_PREDEFINES): Add -D_LP64.
10764 * config/ia64/hpux.h, config/ia64/linux.h: Likewise.
10766 2002-03-29 Richard Henderson <rth@redhat.com>
10769 * config/i386/i386.c (x86_arch_always_fancy_math_387): New.
10770 (override_options): Disable NO_FANCY_MATH_387 if the arch allows.
10771 * config/i386/i386.h (x86_arch_always_fancy_math_387): New.
10772 * config/i386/i386.md (sqrtxf2, sqrtextendsfxf2, sinxf2): Fix
10774 * docs/invoke.texi: Update -mno-fancy-math-387 docs.
10776 2002-03-29 Dale Johannesen <dalej@apple.com>
10778 * loop.c (combine_movables): Do allow combination of pseudos.
10780 2002-03-29 Loren J. Rittle <ljrittle@acm.org>
10782 * config.gcc (*-*-freebsd*): Enable creation of libgcc_s.so.
10783 * config/t-slibgcc-elf-ver (SHLIB_LC): Add macro and use it.
10784 No functional change except ...
10785 * config/t-slibgcc-nolc-override (SHLIB_LC): Override it. New file.
10786 * doc/install.texi (*-*-freebsd*): Document port configuration.
10788 2002-03-29 Neil Booth <neil@daikokuya.demon.co.uk>
10790 * Makefile.in (convert.o, calls.o, expmed.o): Update.
10791 * attribs.c (handle_mode_attribute, handle_vector_size_attribute):
10793 * builtin-types.def (BT_PTRMODE): Update.
10794 * c-common.c (type_for_size): Rename c_common_type_for_size.
10795 (type_for_mode): Similarly.
10796 (shorten_compare, pointer_int_sum, c_common_nodes_and_builtins):
10798 * c-bommon.h (c_common_type_for_size, c_common_type_for_mode): New.
10799 * c-decl.c (finish_enum, build_enumerator): Use new hooks.
10800 * c-lang.c (LANG_HOOKS_TYPE_FOR_MODE, LANG_HOOKS_TYPE_FOR_SIZE):
10802 * c-typeck.c (common_type, comptypes, default_conversion):
10804 * calls.c: Include langhooks.h.
10805 (emit_library_call_value_1): Use new hooks. Avoid redundant
10807 * convert.c: Include langhooks.h
10808 (convert_to_pointer, convert_to_integer): Use new hooks.
10809 * except.c (init_eh): Similarly.
10810 * expmed.c: Include langhooks.h.
10811 (expand_mult_add): Use new hooks.
10812 * expr.c (store_expr, store_constructor, expand_expr, do_jump,
10813 try_casesi): Similarly.
10814 * fold-const.c (optimize_bit_field_compare, make_range,
10815 decode_field_reference, fold_truthop, fold): Similarly.
10816 * function.c (assign_stack_local_1, assign_stack_temp_for_type,
10817 put_var_into_stack): Similarly.
10818 * langhooks-def.h (LANG_HOOKS_TYPE_FOR_MODE,
10819 LANG_HOOKS_TYPE_FOR_SIZE): New.
10820 (LANG_HOOKS_TYPES_INITIALIZER): Update.
10821 * langhooks.h (lang_hooks_for_types): New hooks.
10822 * stmt.c (expand_decl_cleanup, emit_case_nodes): Use new hooks.
10823 * tree.c (get_unwidened, get_narrower): Similarly.
10824 * tree.h (type_for_mode, type_for_size): Remove.
10825 * varasm.c (force_const_mem): Use new hooks.
10826 * utils2.c (nonbinary_modular_operation): Update.
10828 * objc-act.c (handle_impent): Update.
10829 * objc-lang.c (LANG_HOOKS_TYPE_FOR_MODE, LANG_HOOKS_TYPE_FOR_SIaZE):
10832 2002-03-29 Steve Ellcey <sje@cup.hp.com>
10834 * config/ia64/ia64.md (*ptr_extend_plus_1, *ptr_extend_plus_2): New.
10835 * config/ia64/ia64.c (basereg_operand): New.
10836 * config/ia64/ia64-protos.h (basereg_operand): Declare.
10837 * config/ia64/ia64.h (PREDICATE_CODES): Add basereg_operand.
10839 2002-03-29 Hans-Peter Nilsson <hp@bitrange.com>
10841 * config/mmix/mmix.c (mmix_target_asm_function_prologue): Correct
10842 unwind information when frame_pointer_needed.
10843 (mmix_assemble_integer): Tweak wording in comment.
10845 2002-03-29 Neil Booth <neil@daikokuya.demon.co.uk>
10847 * Makefile.in (except.o): Update.
10848 * except.c: Include langhooks.h.
10849 (init_eh): Use langhook.
10850 * langhooks-def.h (LANG_HOOKS_MAKE_TYPE,
10851 LANG_HOOKS_FOR_TYPES_INITIALIZER): New.
10852 (LANG_HOOKS_INITIALIZER): Update.
10853 * langhooks.h (lang_hooks_for_types): New.
10854 (struct lang_hooks): Add it.
10855 * tree.c (make_lang_type_fn, make_lang_type): Remove.
10856 * tree.h (make_lang_type_fn, make_lang_type): Remove.
10858 * alpha/alpha.c: Include langhooks.h.
10859 (alpha_build_va_list): Use langhook.
10860 * d30v/d30v.c: Include langhooks.h.
10861 (d30v_build_va_list): Use langhook.
10862 * i386/i386.c: Include langhooks.h.
10863 (ix86_build_va_list): Use langhook.
10864 * rs6000/rs6000.c (rs6000_build_va_list): Use langhook.
10865 * s390/s390.c: Include langhooks.h.
10866 (s390_build_va_list): Use langhook.
10867 * stormy16/stormy16.c: Include langhooks.h.
10868 (stormy16_build_va_list): Use langhook.
10870 2002-03-29 Jakub Jelinek <jakub@redhat.com>
10873 * config/sparc/sparc.md (empty_delay_slot, branch_type): New
10875 (length): Compute variable length for branches/calls/jumps here.
10876 (branch, inverted_branch, normal_fp_branch, inverted_fp_branch,
10877 normal_fpe_branch, inverted_fpe_branch): Remove length attribute,
10878 define branch_type attribute.
10879 (divsi3_sp32): Maximum length is 6 not 7.
10880 (call_address_struct_value_sp32, call_symbolic_struct_value_sp32,
10881 call_address_untyped_struct_value_sp32,
10882 call_symbolic_untyped_struct_value_sp32): Set length to 3 not 2.
10883 * config/sparc/sparc.c (empty_delay_slot): New function.
10884 * config/sparc/sparc.h (ADJUST_INSN_LENGTH): Remove.
10885 * config/sparc/sparc-protos.h (empty_delay_slot): Add prototype.
10887 2002-03-29 Jakub Jelinek <jakub@redhat.com>
10889 * combine.c (set_nonzero_bits_and_sign_copies): Don't call
10890 nonzero_bits if not needed.
10891 (nonzero_bits) [XOR]: Likewise.
10892 (nonzero_bits) [REG]: Use reg_last_set_nonzero_bits even if
10893 reg_last_set_mode and mode are both MODE_INT, but not equal.
10894 (record_value_for_reg): Compute reg_last_set_nonzero_bits
10895 in nonzero_bits_mode for MODE_INT modes.
10897 2002-03-28 Richard Henderson <rth@redhat.com>
10900 * config/alpha/osf.h (ASM_SPEC): Don't pass any special options
10901 to GAS. Correct drift between alternatives.
10903 2002-03-28 Richard Henderson <rth@redhat.com>
10906 * reload1.c (fixup_abnormal_edges): Move insn to edge via sequence.
10908 2002-03-28 Alexandre Oliva <aoliva@redhat.com>
10910 * config/i386/freebsd.h (LINK_SPEC): Don't pass default
10911 emulation to the linker.
10913 2002-03-28 Loren J. Rittle <ljrittle@acm.org>
10915 * config/alpha/freebsd.h (LINK_SPEC): Likewise.
10916 * config/sparc/freebsd.h (LINK_SPEC): Likewise.
10918 Thu Mar 28 16:35:31 2002 Jeffrey A Law (law@redhat.com)
10920 * combine.c (simplify_and_const_int): Make sure to apply mask
10921 when force_to_mode returns a constant integer. PR3311.
10923 2002-03-28 John David Anglin <dave@hiauly1.hia.nrc.ca>
10925 * pa-linux.h (LOCAL_LABEL_PREFIX): Define.
10927 2002-03-28 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
10929 * doc/invoke.texi (Warning Options): Refer to C++ Dialect Options
10930 and Objective-C Dialect Options.
10932 2002-03-28 Richard Henderson <rth@redhat.com>
10934 * config/alpha/alpha.c (alpha_emit_conditional_branch): TFmode NE
10935 comparison should be done vs !=0 not >0 return code. Tidy cases.
10937 2002-03-28 Richard Henderson <rth@redhat.com>
10939 * c-decl.c (finish_function): New arg can_defer_p. Pass it
10940 on to c_expand_body.
10941 * c-tree.h (finish_function): Update decl.
10942 * c-objc-common.c, c-parse.in, objc/objc-act.c: Update calls.
10944 Thu Mar 28 19:13:36 CET 2002 Jan Hubicka <jh@suse.cz>
10946 * ifcvt.c (if_convert): Clear aux_for_blocks early enought.
10948 Thu Mar 28 13:21:53 CET 2002 Jan Hubicka <jh@suse.cz>
10950 * rtlanal.c: Include flags.h
10951 (may_trap_p): Do not mark FP operations if trapping
10952 if !flag_trapping_math
10953 * Makefile.in (rtlanal.o): Add dependency on flag.h
10954 * ifcvt.c (noce_operand_ok): Avoid the lameness.
10956 2002-03-27 Zack Weinberg <zack@codesourcery.com>
10958 * mips.md: Use dconst1, not 1.0, as first argument of
10959 REAL_VALUE_LDEXP. Don't use union real_extract.
10961 2002-03-28 Alan Modra <amodra@bigpond.net.au>
10963 * configure.in (gcc_cv_as): Use $target_alias in directory searchs
10964 rather than $target. Heed program_prefix and
10965 program_transform_name. Search for gas in cross-compiler case too.
10966 "test -x" rather than "test -f".
10967 (gcc_cv_ld): Likewise.
10968 (gcc_cv_nm): Heed program_prefix and program_transform_name.
10969 (gcc_cv_objdump): Likewise.
10970 * configure: Regenerate.
10972 2002-03-27 Neil Booth <neil@daikokuya.demon.co.uk>
10974 * Makefile.in (attribs.o): Update.
10975 * attribs.c: Include langhooks.h.
10976 (decl_attributes): Use langhook.
10977 * c-decl.c (insert_default_attributes): Rename.
10978 * c-tree.h (c_insert_default_attributes): New.
10979 * langhooks-def.h (LANG_HOOKS_INSERT_DEFAULT_ATTRIBUTES):New.
10980 (LANG_HOOKS_INITIALIZER): Update.
10981 * langhooks.h (struct lang_hooks): New hook.
10982 * tree.h (insert_default_attributes): Remove.
10984 * objc-lang.c (LANG_HOOKS_INSERT_DEFAULT_ATTRIBUTES): Redefine.
10986 2002-03-27 Andreas Schwab <schwab@suse.de>
10988 * config/i386/i386.c (classify_argument): Also check for
10991 2002-03-27 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10993 * doc/install.texi (alpha*-dec-osf*): Don't need --enable-libgcj
10996 Wed Mar 27 23:19:30 CET 2002 Jan Hubicka <jh@suse.cz>
10998 * i960.md (ret): Set PC.
10999 (nonlocal_goto): Fix expander.
11000 * builtins.c (epxand_builin_longjmp): Check that we've emitted
11003 Wed Mar 27 23:11:35 CET 2002 Jan Hubicka <jh@suse.cz>
11005 * optabs.c (emit_no_conflict_block, emit_libcall_block): Avoid nesting
11006 of libcall regions.
11008 Wed Mar 27 22:54:14 CET 2002 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
11010 * cfgrtl.c (merge_blocks_nomove): Use set_block_for_insn instead of
11011 assigning to BLOCK_FOR_INSN directly.
11013 Wed Mar 27 22:33:05 CET 2002 Jan Hubicka <jh@suse.cz>
11015 * i386.c (ix86_output_addr_diff_elt): Remove binutils bug workaround.
11017 2002-03-27 Neil Booth <neil@daikokuya.demon.co.uk>
11019 * c-common.c (c_expand_expr): Fix prototype.
11020 * c-common.h (c_expand_expr): Always declare, update.
11021 * c-lang.c (LANG_HOOKS_EXPAND_EXPR): Redefine.
11022 * c-objc-common.c (c_objc_common_init): No global hook.
11023 * expr.c (expand_expr): Use langhook.
11024 * expr.h (enum expand_modifier): Conditionally declare.
11025 * langhooks-def.h (lhd_expand_expr, LANG_HOOKS_EXPAND_EXPR): New.
11026 (LANG_HOOKS_INITIALIZER): Update.
11027 * langhooks.c (lhd_expand_expr): New.
11028 * langhooks.h (struct lang_hooks): New hook.
11029 * toplev.c (lang_expand_expr_t, lang_expand_expr): Delete.
11030 (lang_independent_init): Don't default hook.
11032 * objc-lang.c (LANG_HOOKS_EXPAND_EXPR): Redefine.
11034 2002-03-27 Richard Henderson <rth@redhat.com>
11037 * config/ia64/ia64.c (ia64_expand_call): Use pic patterns for
11038 TARGET_CONST_GP. Simplify conditions.
11040 2002-03-27 Richard Henderson <rth@redhat.com>
11042 * config/sparc/freebsd.h, config/sparc/linux.h, config/sparc/linux64.h,
11043 config/sparc/netbsd-elf.h, config/sparc/pbd.h, config/sparc/sol2.h,
11044 config/sparc/vxsim.h (LOCAL_LABEL_PREFIX): Define.
11046 2002-03-27 Danny Smith <dannysmith@users.sourceforge.net>
11048 * config/i386/cygwin.h (TARGET_DLL, TARGET_WIN32,
11049 TARGET_CYGWIN, TARGET_WINDOWS): Remove unused switches.
11050 (MASK_DLL, MASK_WIN32, MASK_CYGWIN, MASK_WINDOWS):
11051 Remove unnecessary masks.
11052 (MASK_NOP_FUN_DLLIMPORT): Use an unused an bit.
11053 (SUBTARGET_SWITCHES): Use empty masks for -mwin32, -mcygwin,
11054 -mwindows, -mdll switches and their negations.
11056 2002-03-27 Neil Booth <neil@daikokuya.demon.co.uk>
11058 * gcc-common.c (lang_mark_false_label_stack): Remove.
11059 * ggc.h (lang_mark_false_label_stack): Similarly.
11061 2002-03-26 Vladimir Makarov <vmakarov@redhat.com>
11063 * pa/pa-pro-end.h (CPP_PREDEFINES): Add -D__pro__.
11065 * pa/lib2funcs.asm: Don't use .SPACE and .SUBSPACE if __pro__
11066 or __rtems_ is defined.
11068 2002-03-26 Richard Henderson <rth@redhat.com>
11070 * config/alpha/alpha.c (alpha_emit_set_const): Add a REG_EQUAL note
11071 if a non-trivial load was emitted.
11072 (alpha_emit_set_const_1): Remove obsolete extension. Fix thinko
11073 in high+extra+low case.
11075 2002-03-26 Richard Henderson <rth@redhat.com>
11077 * config.gcc (sparc*-solaris): Use float_format=sparc.
11079 2002-03-26 Richard Henderson <rth@redhat.com>
11081 * config/sparc/sparc.h (MAX_WCHAR_TYPE_SIZE): Don't define.
11082 * config/sparc/linux-aout.h (MAX_WCHAR_TYPE_SIZE): Don't undef.
11083 * config/sparc/linux.h, config/sparc/linux64.h: Likewise.
11084 * config/sparc/sol2.h (WCHAR_TYPE, WCHAR_TYPE_SIZE): Redefine.
11085 (WINT_TYPE_SIZE): Fix at 32.
11087 2002-03-26 Richard Henderson <rth@redhat.com>
11089 * toplev.c (rest_of_compilation): Delay emit_initial_value_sets
11090 until after eh landing pad generation.
11091 * config/alpha/alpha.c (alpha_gp_save_rtx): Use gen_mem_addressof.
11092 * config/alpha/alpha.md (exception_receiver_2): Only accept MEMs.
11094 2002-03-26 Richard Henderson <rth@redhat.com>
11096 * expr.h (ADD_PARM_SIZE): One more convert for INC.
11098 2002-03-26 Phil Edwards <pme@gcc.gnu.org>
11100 * gcc.c (cpp_options): Preserve relative ordering of -pedantic
11101 and warning switches.
11102 (cc1_options): Likewise.
11104 2002-03-26 Hans Boehm <Hans_Boehm@hp.com>
11106 * config/ia64/linux.h (MD_FALLBACK_FRAME_STATE_FOR):
11107 Restore more of the signal context. Set no_reg_stack_frame.
11108 * config/ia64/unwind-ia64.c (unw_state_record):
11109 Add no_reg_stack_frame, comments.
11110 (uw_frame_state_for): Initialize when field to UNW_WHEN_NEVER.
11111 (uw_update_context): Adjust bsp when unwinding from leaf,
11112 but not signal frame.
11114 2002-03-26 David Edelsohn <edelsohn@gnu.org>
11116 * config/rs6000/aix51.h (WCHAR_TYPE): Define.
11118 2002-03-26 Bob Wilson <bob.wilson@acm.org>
11120 * config/xtensa/xtensa.c (xtensa_va_arg): Handle variable-sized types.
11122 2002-03-26 Richard Earnshaw <rearnsha@arm.com>
11125 * arm.md (define_asm_attributes): Reapply patch of Thu Sep 9, 1999:
11126 "Add a pool_range attribute", which was lost during the ARM/Thumb
11129 2002-03-26 Bob Wilson <bob.wilson@acm.org>
11131 * config/xtensa/xtensa.c (xtensa_valid_move): Allow move from
11132 a register into the MAC16 accumulator.
11134 2002-03-26 Andrew Cagney <ac131313@redhat.com>
11136 * doc/invoke.texi (Option Summary): Mention -Wswitch-enum.
11137 (Warning Options): Document -Wswitch-enum.
11138 * toplev.c (W_options): Add -Wswitch-enum. Update comment on
11140 (warn_switch_enum): Define variables.
11141 * flags.h (warn_switch_enum): Declare variables.
11142 * stmt.c (expand_end_case_type): When warn_switch_enum /
11143 -Wswitch-enum, perform switch checks.
11146 2002-03-26 Richard Earnshaw <rearnsha@arm.com>
11148 * arm.md (reload_mulsi3, reload_mulsi_compare0, reload_muladdsi)
11149 (reload_mulsi_compare0_scratch, reload_muladdsi_compare0)
11150 (reload_muladdsi_compare0_scratch): Delete.
11152 2002-03-26 Loren J. Rittle <ljrittle@acm.org>
11154 * doc/install.texi (*-*-freebsd*): Update.
11156 2002-03-26 Richard Henderson <rth@redhat.com>
11158 * expr.h (ADD_PARM_SIZE): Cast INC to ssizetype.
11159 (SUB_PARM_SIZE): Cast DEC to ssizetype.
11161 * config/alpha/alpha.c (alpha_va_arg): Read MUST_PASS_IN_STACK
11162 types from the normal argument frame.
11164 * config/sparc/sparc.c (function_arg_pass_by_reference): Pass
11165 variable sized objects by reference.
11166 (sparc_va_arg): Receive them by reference too.
11168 2002-03-26 Hartmut Penner <hpenner@de.ibm.com>
11170 * config/s390/s390.c (s390_emit_epilogue): Change epilogue
11171 code to not restoring global registers.
11173 2002-03-26 Neil Booth <neil@daikokuya.demon.co.uk>
11175 * Makefile.in (ggc-common.o): Update.
11176 * c-decl.c (lang_mark_tree): Rename c_mark_tree.
11177 * c-lang.c (LANG_HOOKS_MARK_TREE): Redefine.
11178 * c-tree.h (c_mark_tree): New.
11179 * ggc-common.c: Include langhooks.h.
11180 (gcc_mark_trees): Use new langhook.
11181 * ggc-callbacks.c: Delete file.
11182 * ggc.h (lang_mark_tree): Remove.
11183 * langhooks-def.h (LANG_HOOKS_MARK_TREE): New.
11184 (LANG_HOOKS_INITIALIZER): Update.
11185 * langhooks.h (struct lang_hooks): New hook.
11187 * objc-lang.c (LANG_HOOKS_MARK_TREE): Redefine.
11189 2002-03-25 Zack Weinberg <zack@codesourcery.com>
11191 * doc/cpp.texi: Exclude entire Top node from printed manual.
11192 Move option index after directive index. Insert page breaks
11193 before GFDL and concept index. Index environment variables
11194 with command line options.
11195 * doc/cppenv.texi: Use @vtable for environment variable list.
11196 Add paragraph explaining semantics of empty elements in path
11197 variables. Exclude a cross-reference to Fishkill from the
11198 manpage. Remove an unnecessary cross-reference of the entry
11199 right above the referer. Don't use @anchor in text that goes
11201 * doc/cppopts.texi: Cross-reference the environment variables
11202 section, not the specific environment variable, for consistency.
11204 2002-03-25 Richard Henderson <rth@redhat.com>
11206 * recog.c (peephole2_optimize): Distribute EH_REGION -1 notes
11207 anywhere in the block. Don't refer to insns that have been
11208 removed from the chain. Iterate backward through the new insns.
11209 Don't refer to edges that have been removed.
11211 2002-03-26 Alan Modra <amodra@bigpond.net.au>
11213 * combine.c (simplify_comparison <ASHIFTRT, LSHIFTRT>): Correct
11214 test for overflow of constant.
11216 2002-03-25 Richard Earnshaw <rearnsha@arm.com>
11219 * arm.md (loadhi_preinc, loadhi_predec, loadhi_shiftpreinc)
11220 (loadhi_shiftpredec, loadhi-with-writeback peephole): Don't use
11221 these patterns on arm_archv4.
11223 2002-03-25 Danny Smith <dannysmith@sourceforge.users.net>
11225 * config/i386/mingw32.h (WINT_TYPE): Define as "short unsigned
11228 2002-03-25 Zack Weinberg <zack@codesourcery.com>
11230 * toplev.c: Don't include setjmp.h. Kill float_handler_set,
11231 float_handled, float_handler, float_signal, set_float_handler,
11232 and do_float_handler. Set handler for SIGFPE to crash_signal.
11233 * toplev.h: Don't prototype do_float_handler.
11235 * c-lex.c: Fold parse_float into lex_number. Make warning
11236 about portability of hex float constants more informative, and
11237 don't issue it on top of a syntax error.
11238 * fold-const.c: Fold const_binop_1 and fold_convert_1 into
11240 * real.h: Define REAL_VALUE_ABS here...
11241 * simplify-rtx.c: ... not here. Fold check_fold_consts,
11242 simplify_unary_real, simplify_binary_real, and
11243 simplify_binary_is2orm1 into their callers.
11244 * tree.c: Fold build_real_from_int_cst_1 into caller.
11246 * doc/tm.texi: Document REAL_VALUE_ABS and REAL_VALUE_NEGATIVE.
11248 * tsystem.h: Include float.h here...
11249 * libgcc2.c: ... not here.
11251 2002-03-25 Nick Clifton <nickc@cambridge.redhat.com>
11253 Fixes for: PR bootstrap/3591, target/5676
11254 * config/mcore/mcore.h (CC1_SPEC): Define only if not already
11255 defined. Do not disable exceptions or rtti.
11256 * config/mcore/mcore-pe.h (CC1_SPEC): Define before including
11257 mcore.h. Disable exceptions and rtti, since they are not
11260 2002-03-25 Neil Booth <neil@daikokuya.demon.co.uk>
11262 * c-decl.c (maybe_build_cleanup): Remove.
11263 * expr.c (expand_expr): Use langhook.
11264 * langhooks-def.h (lhd_return_null_tree,
11265 LANG_HOOKS_MAYBE_BUILD_CLEANUP): New.
11266 (LANGHOOKS_INITIALIZER): Update.
11267 * langhooks.c (lhd_return_null_tree): New.
11268 * langhooks.h (struct lang_hooks): New hook.
11269 * tree-inline.c (initialize_inlined_parameters): Use langhook.
11270 * tree.h (maybe_build_cleanup): Remove.
11272 2002-03-25 Jakub Jelinek <jakub@redhat.com>
11274 * regrename.c (build_def_use): Move recog_memoized
11275 before extract_insn.
11277 2002-03-25 Jakub Jelinek <jakub@redhat.com>
11280 * expr.c (emit_group_store): Handle storing into CONCAT.
11282 2002-03-25 Jakub Jelinek <jakub@redhat.com>
11284 * regrename.c (build_def_use): Share RTL between MATCH_OPERATOR and
11285 corresponding MATCH_DUP.
11287 2002-03-24 Richard Henderson <rth@redhat.com>
11289 * unroll.c (unroll_loop): Zero label_map.
11291 * gcse.c: Include except.h.
11292 * Makefile.in (gcse.o): Update.
11294 2002-03-24 Richard Henderson <rth@redhat.com>
11296 * varasm.c (asm_emit_uninitialised): Revert 2002-03-14 change.
11297 Do resolve_unique_section before shared data clause.
11299 2002-03-24 Richard Henderson <rth@redhat.com>
11301 * config/alpha/elf.h (STARTFILE_SPEC): Use crtbeginT with -static.
11303 2002-03-24 Richard Henderson <rth@redhat.com>
11305 * recog.c (peephole2_optimize): Split blocks when EH insns are
11306 generated in the middle of a block. Do global life update if
11309 2002-03-24 Richard Henderson <rth@redhat.com>
11311 * mips.c (mips_function_value): Only promote_mode for non-libcalls.
11313 2002-03-24 Neil Booth <neil@daikokuya.demon.co.uk>
11316 * gcc.c (cpp_options): Pass -MD through as -MD not -M -MF.
11317 * cppinit.c (cpp_handle_option): Set no_ouput if -MD or -MMD.
11318 (init_dependency_output): Don't make no_output decision here.
11320 2002-03-24 Andrew Cagney <ac131313@redhat.com>
11322 * stmt.c (check_for_full_enumeration_handling): Remove tests of
11323 warn_switch. Update description.
11324 (expand_end_case_type): Call check_for_full_enumeration_handling
11327 2002-03-24 Stephane Carrez <Stephane.Carrez@worldnet.fr>
11329 * config/m68hc11/m68hc11.c (m68hc11_autoinc_compatible_p): New function.
11330 (m68hc11_split_move): Call it to see if the source and destination
11331 operands use the same direction auto inc/dec mode, otherwise make the
11332 source an offsetable memory operand and generate an add.
11334 2002-03-24 Stephane Carrez <Stephane.Carrez@worldnet.fr>
11336 * config/m68hc11/m68hc11.md ("*subsi3_zero_extendhi"): Allow address
11337 register for operand 2.
11338 ("*subsi3_zero_extendqi"): Likewise.
11339 ("*iorhi3_gen"): Do the operation on the upper bits and then lower
11340 bits so that it is compatible with a pop.
11341 ("*andhi3_gen"): Likewise.
11342 ("xorhi3"): Likewise.
11344 2002-03-24 Neil Booth <neil@daikokuya.demon.co.uk>
11346 * cppinit.c (cpp_handle_option): Set warn_endif_labels if
11348 (cpp_post_options): ... not here.
11350 2002-03-24 Neil Booth <neil@daikokuya.demon.co.uk>
11351 Aldy Hernandez <aldyh@redhat.com>
11353 Removal of separate preprocessor cpp0.
11355 * Makefile.in (GCC_PASSES, STAGESTUFF, LIBCPP_OBJS,
11356 cpp0, install-common): Update.
11357 * c-common.c (flag_preprocess_only): New.
11358 (c_common_init): Preprocess for -E.
11359 * c-common.h (flag_preprocess_only): New.
11360 * c-decl.c (c_decode_option): Handle -E and -std=c++98.
11361 * c-objc-common.c (c_init_decl_processing): Exit quickly
11362 for NULL return from c_common_init.
11363 * cpplib.h (cpp_preprocess_file): New.
11364 * cppmain.c (main, general_init, pfile, progname): Remove.
11365 (do_preprocessing): Rename cpp_preprocess_file, don't call
11366 cpp_finish. Don't close stdout here.
11367 (setup_callbacks): Update prototype.
11368 * gcc.c (trad_capable_cpp, cpp_unique_options, default_compilers):
11370 * tradcpp.c (main): Ignore -quiet.
11372 * lang-specs.h (default_compilers): Preprocess with cc1obj.
11374 2002-03-24 Richard Henderson <rth@redhat.com>
11376 PR optimization/5742
11377 * machmode.def: Add inner mode field to complex modes.
11378 * config/mips/mips.c (mips_function_value): Always define. Add
11379 new argument to handle libcalls.
11380 * config/mips/mips.h (LIBCALL_VALUE): Use mips_function_value.
11381 (FUNCTION_VALUE): Likewise.
11382 * config/mips/abi64.h (FUNCTION_VALUE): Remove.
11383 * config/mips/mips-protos.h: Update.
11385 2002-03-23 Richard Henderson <rth@redhat.com>
11387 * config/sparc/sparc.c (sparc_emit_floatunsdi): New.
11388 * config/sparc/sparc-protos.h: Update.
11389 * config/sparc/sparc.md (floatunsdisf2, floatunsdidf2): New.
11391 2002-03-23 Richard Henderson <rth@redhat.com>
11393 * config/sparc/gmon-sol2.c (internal_mcount): Assume either
11394 _start or _init begins the text segment.
11396 2002-03-23 David Edelsohn <edelsohn@gnu.org>
11398 * config/rs6000/rs6000.h (RETURN_IN_MEMORY): Cast to HOST_WIDE_INT
11399 not HOST_WIDEST_INT.
11400 (RS6000_ARG_SIZE): Remove unsigned cast of int_size_in_bytes.
11402 2002-03-23 Richard Earnshaw <rearnsha@arm.com>
11405 * arm.md (return, sibcall_epilogue): Pass const_true_rtx as the
11406 operand argument to output_return_instruction.
11407 * arm.c (arm_print_operand, case 'd'): If the operand is
11408 const_true_rtx then just return.
11409 (arm_print_operand, case 'D'): If the operand is const_true_rtx
11412 2002-03-23 Andrew Cagney <ac131313@redhat.com>
11414 * doc/invoke.texi (Option Summary): Mention -Wswitch-default.
11415 (Warning Options): Document -Wswitch-default.
11416 * toplev.c (W_options): Add -Wswitch-default. Update comment on
11418 (warn_switch_default): Define variable.
11419 (warn_switch): Update comment.
11420 * flags.h (warn_switch_default): Declare variable.
11421 (warn_switch): Update comment.
11422 * stmt.c (expand_end_case): Check for and, when
11423 warn_switch_no_default, warn of a missing default case.
11425 2002-03-23 Alan Modra <amodra@bigpond.net.au>
11427 * real.h (N): Special case 128 bit doubles.
11429 * combine.c (simplify_comparison): When widening modes, ignore
11430 sign extension on CONST_INTs.
11432 2002-03-22 Bob Wilson <bob.wilson@acm.org>
11434 * config/xtensa/xtensa.c (print_operand): Fix incorrect mode
11435 passed to adjust_address. Fix comment formatting.
11438 2002-03-22 Zack Weinberg <zack@codesourcery.com>
11440 * real.h: Don't define REAL_INFINITY or REAL_IS_NOT_DOUBLE.
11441 Always make REAL_VALUE_TYPE a struct containing an array of
11442 HOST_WIDE_INT, not a double. Tidy up the code deciding how
11443 big it is. Don't declare or use union real_extract.
11445 * emit-rtl.c (init_emit_once), varasm.c (immed_real_const_1,
11446 decode_rtx_const, output_constant_pool), config/a29k/a29k.c
11447 (print_operand), config/arm/arm.c (output_move_double),
11448 config/arm/arm.md (consttable_4, consttable_8),
11449 config/romp/romp.c (output_fpops), config/s390/s390.h
11450 (ASM_OUTPUT_SPECIAL_POOL_ENTRY), config/xtensa/xtensa.c
11451 (xtensa_output_literal): Don't use union real_extract.
11453 * config/dsp16xx/dsp16xx.c (print_operand), config/i860/i860.c
11454 (sfmode_constant_to_ulong), config/ns32k/merlin.h
11455 (PRINT_OPERAND), config/ns32k/ns32k.c (print_operand),
11456 config/pdp11/pdp11.h (PRINT_OPERAND), config/we32k/we32k.h
11457 (PRINT_OPERAND): Don't use local version of union
11460 * config/convex/convex.c (check_float_value), config/vax/vax.c
11461 (vax_float_literal), config/m88k/m88k.md (divdf3),
11462 config/dsp16xx/dsp16xx.md (fixuns_trunchfhi2),
11463 config/pdp11/pdp11.c (output_move_quad): Don't do host
11464 arithmetic on target floating point quantities.
11466 * config/a29k/a29k.md, config/dsp16xx/dsp16xx.c
11467 (output_dsp16xx_float_const): Don't test HOST_FLOAT_FORMAT.
11469 * fold-const.c (fold), simplify-rtx.c (simplify_binary_real):
11470 Use MODE_HAS_INFINITIES rather than #ifdef REAL_INFINITY.
11472 * real.c (earith): Test INFINITY rather than REAL_INFINITY;
11473 NANS implies INFINITY, so can drop #ifdef NANS inside #ifndef
11475 * print-rtl.c (print_rtx): Disable code which needs
11476 floating-point emulator.
11477 * libgcc2.c: Include float.h and use DBL_MANT_DIG,
11478 FLT_MANT_DIG, to define DF_SIZE and SF_SIZE, rather than
11479 depending on HOST_FLOAT_FORMAT to be defined properly.
11481 * config/1750a/1750a.c (get_double, float_label): Delete.
11482 (print_operand): Delete huge commented-out chunk. Use
11483 REAL_VALUE_TO_DECIMAL.
11484 * config/1750a/1750a-protos.h: Delete prototypes of deleted
11486 * config/convex/convex.h: Always set TARGET_FLOAT_FORMAT to
11488 * config/i370/i370.h (PRINT_OPERAND [TARGET_HLASM version]):
11489 Use REAL_VALUE_TO_DECIMAL as ELF version does.
11490 * config/m88k/m88k.c (real_power_of_2_operand,
11491 legitimize_operand): Take the REAL_VALUE_TYPE and/or union
11492 real_extract out of the union; run the input through
11493 REAL_VALUE_TO_TARGET_DOUBLE, then plug the pair of longwords
11494 from that into the union.
11495 * config/pdp11/pdp11.c (output_move_double): Rearrange
11496 parentheses to make automatic indenter happy.
11498 * doc/tm.texi (Cross-compilation): Rename node to "Floating
11499 Point" and rewrite to describe current situation. Also adjust
11500 documentation of REAL_VALUE_TO_TARGET_SINGLE and friends to
11502 * doc/rtl.texi: Adjust cross reference.
11504 2002-03-22 Bob Wilson <bob.wilson@acm.org>
11506 * config/xtensa/xtensa-protos.h (non_acc_reg_operand): Remove.
11507 (xtensa_valid_move, xtensa_preferred_reload_class): Define.
11508 * config/xtensa/xtensa.c (non_acc_reg_operand): Remove.
11509 (xtensa_valid_move, xtensa_preferred_reload_class): Define to
11510 prevent use of sp as a reload register.
11511 (xtensa_emit_move_sequence): Use xtensa_valid_move instead of
11512 non_acc_reg_operand.
11513 * config/xtensa/xtensa.h (PREDICATE_CODES): Remove non_acc_reg_operand.
11514 (PREFERRED_RELOAD_CLASS): Move code to xtensa_preferred_reload_class.
11515 * config/xtensa/xtensa.md (movsi_internal, movhi_internal,
11516 movqi_internal): Use xtensa_valid_move instead of non_acc_reg_operand.
11518 2002-03-22 Neil Booth <neil@daikokuya.demon.co.uk>
11520 * cpphash.h (struct cpp_reader): Remove mls_line and mls_col.
11521 * cpplex.c (unterminated): Delete.
11522 (parse_string): No string literal may extend over multiple
11523 lines. Suppress the error when preprocessing assembly.
11524 * cppmain.c (scan_translation_unit): Strings are single-line.
11526 * doc/cpp.texi: Update to match.
11528 2002-03-22 Jakub Jelinek <jakub@redhat.com>
11530 PR optimization/5854
11531 * config/m68hc11/m68hc11.h (CONST_OK_FOR_LETTER_VALUE_P): Use K for 0.
11533 (CONST_DOUBLE_OK_FOR_LETTER_P): Use G for 0.0.
11534 (EXTRA_CONSTRAINT): Use S for non-push memory operand.
11535 * config/m68hc11/m68hc11.c (m68hc11_split_move): Handle setting from
11536 const0 if scratch register was not allocated.
11537 (m68hc11_reload_operands, m68hc11_gen_lowpart, m68hc11_gen_highpart,
11538 m68hc11_z_replacement): Replace gen_rtx (CONST_INT, VOIDmode, ...)
11539 with GEN_INT (...).
11540 (m68hc11_reorg): Compute BLOCK_FOR_INSN before reload_cse_regs.
11541 * config/m68hc11/m68hc11.md: Replace gen_rtx (CONST_INT, VOIDmode, ...)
11542 with GEN_INT (...) everywhere. Remove constraints in define_split
11544 (movdi_internal, movdf_internal, movsi_internal, movsf_internal): Don't
11545 require scratch register for setting 0 into regs/non-pushable memory.
11547 2002-03-22 Alexandre Oliva <aoliva@redhat.com>
11549 * config/mips/mips.h (MASK_RETURN_ADDR): Define.
11550 (TARGET_PTRMEMFUNC_VBIT_LOCATION): Define.
11552 2002-03-22 Phil Edwards <pme@gcc.gnu.org>
11554 * cpplib.h (struct cpp_options): New member, warn_endif_labels.
11555 * cppinit.c (cpp_create_reader): On by default.
11556 (cpp_handle_option): Handle -W[no-]endif-labels.
11557 (cpp_post_options): Also enable if -pedantic.
11558 * cpplib.c (do_else): Use it.
11559 (do_endif): Likewise.
11560 * doc/cppopts.texi: Document new option.
11561 * doc/invoke.texi: Document new option.
11563 2002-03-22 Lars Brinkhoff <lars@nocrew.org>
11565 * config/i386/i386.c, config/i386/i386.md: Change all occurences
11566 of GEN_INT (trunc_int_for_mode (...)) to gen_int_mode (...).
11568 2002-03-22 Alexandre Oliva <aoliva@redhat.com>
11570 * flow.c (calculate_global_regs_live): Clear aux fields of
11573 2002-03-22 Jakub Jelinek <jakub@redhat.com>
11575 * config/v850/v850.c (v850_reorg): Only call alter_subreg on
11576 REG or MEM subregs, pass rtx * instead of rtx to it.
11577 * config/i860/i860.c (output_delayed_branch, output_delay_insn): Pass
11578 rtx * instead of rtx to alter_subreg.
11579 * config/m32r/m32r.c (gen_split_move_double): Likewise.
11580 * config/pj/pj.c (pj_output_rval): Likewise.
11582 2002-03-22 Richard Henderson <rth@redhat.com>
11585 * config/ia64/ia64.h (CUMULATIVE_ARGS): Add int_regs.
11586 (INIT_CUMULATIVE_ARGS, INIT_CUMULATIVE_INCOMING_ARGS): Update.
11587 * config/ia64/ia64.c (ia64_function_arg_advance): Set int_regs.
11588 (ia64_expand_prologue): Look at int_regs, not words, for number
11589 of incomming int regs.
11591 2002-03-22 Andrew MacLeod <amacleod@redhat.com>
11593 * expr.c (expand_expr): A RESULT_DECL is part of a call.
11595 Fri Mar 22 16:30:42 CET 2002 Jan Hubicka <jh@suse.cz>
11597 * toplev.c (flag_loop_optimize, flag_crossjumping):
11598 New static variables.
11599 (rest_of_compilation): Conditionalize crossjumping and
11601 (parse_options_and_default_flags): Default loop_optimize and
11603 (lang_independent_options): Add -fcrossjumping and -floop-optimize
11604 * invoke.texi (crossjumping, loop-optimize): Document.
11606 2002-03-22 Richard Sandiford <rsandifo@redhat.com>
11608 * real.c (eiisneg): Move outside #ifdef NANS.
11610 Fri Mar 22 12:08:36 CET 2002 Jan Hubicka <jh@suse.cz>
11612 * cfgcleanup.c (outgoing_edges_math): Fix condition; relax
11613 frequencies match; avoid match on different loop depths.
11614 (try_crossjump_to_bb): Kill tests that no longer brings time
11616 * cfgrtl.c (force_nonfallthru_and_redirect): Fix loop_depth
11618 (split_edge): Likewise.
11620 * flow.c (update_life_info_in_dirty_blocks): Fix uninitialized
11623 * Makefile.in (cfgrtl): Add insn-config.h depenendency.
11624 * cfgrtl.c: Include insn-config.h
11625 (split_block) Dirtify block in presence of conditional execution
11627 2002-03-22 Richard Sandiford <rsandifo@redhat.com>
11629 * config/mips/abi64.h (SETUP_INCOMING_VARARGS): Undefine.
11630 * config/mips/mips-protos.h (mips_setup_incoming_varargs): Declare.
11631 (function_arg): Constify CUMULATIVE_ARGS.
11632 (function_arg_partial_nregs, function_arg_pass_by_reference): Likewise.
11633 * config/mips/mips.h (UNITS_PER_FPVALUE): Zero when TARGET_SOFT_FLOAT.
11634 (UNITS_PER_DOUBLE): New macro.
11635 (SETUP_INCOMING_VARARGS): Define. Use mips_setup_incoming_varargs.
11636 (CUMULATIVE_ARGS): Reformat. Remove num_adjusts workaround and
11637 last_arg_fp field. Replace arg_words and fp_arg_words with gp_regs,
11638 fp_regs and stack_words.
11639 (EABI_FLOAT_VARARGS_P): New macro.
11640 * config/mips/mips.c (struct mips_arg_info): New.
11641 (mips_arg_info): New function.
11642 (function_arg_advance): Use it. Add adjustment instructions here
11643 rather than in function_arg.
11644 (function_arg): Constify CUMULATIVE_ARGS. Use mips_arg_info. Check
11645 for VOIDmode at the beginning of the function.
11646 (function_partial_nregs): Constify CUMULATIVE_ARGS. Use mips_arg_info.
11647 (function_arg_pass_by_reference): Likewise.
11648 (mips_setup_incoming_varags): New, largely based on old abi64.h code.
11649 (mips_build_va_list): Test EABI_FLOAT_VARARGS_P.
11650 (mips_va_start): Likewise. Use the new stack_words field of
11651 CUMULATIVE_ARGS to set up overflow area. Reformat.
11652 (mips_va_arg): Test EABI_FLOAT_VARARGS_P. Unify EABI handling of
11653 doubles and other types, aligning the overflow pointer for non-doubles
11654 too. Remove some code duplication. Replace hard-coded constants.
11656 2002-03-22 Richard Sandiford <rsandifo@redhat.com>
11658 * config/mips/mips.h (FUNCTION_ARG_REGNO_P): Simplify.
11659 (CLASS_UNITS): Undefine.
11660 (CLASS_MAX_NREGS): Use FP_INC.
11661 * config/mips/mips.c (compute_frame_size): Likewise.
11662 (override_options): Use FP_INC and UNITS_PER_FPVALUE.
11664 2002-03-22 Neil Booth <neil@daikokuya.demon.co.uk>
11666 * cpplex.c (parse_identifier_slow): Rename parse_slow, adjust
11667 prototype, and handle lexing numbers and identifiers.
11668 (parse_identifier): Update to new form of parse_slow.
11669 (parse_number): Fast path only, use parse_slow otherwise.
11670 (_cpp_lex_direct): Update calls to parse_number.
11672 2002-03-21 DJ Delorie <dj@redhat.com>
11674 * bb-reorder.c (make_reorder_chain_1): Protect against
11675 when redundant edges are omitted.
11676 * predict.c (dump_prediction): Likewise.
11678 2002-03-21 Richard Henderson <rth@redhat.com>
11681 * fixinc/inclhack.def (solaris_stdio_tag): New.
11682 * fixinc/fixincl.x: Regenerate.
11684 2002-03-21 Eric Botcazou <ebotcazou@multimania.com>
11687 * c-typeck.c (process_init_element): Flag non-static
11688 initialization of a flexible array member as illegal.
11690 2002-03-22 Alan Modra <amodra@bigpond.net.au>
11692 * config/rs6000/t-linux64: New.
11693 * config.gcc (powerpc64-*-linux* <tmake_file>): Drop t-ppcos and
11694 t-ppccomm. Use t-rs6000 and t-linux64.
11695 (powerpc64-*-gnu* <tmake_file>): Likewise.
11696 * mklibgcc.in (SHLIB_MKMAP_OPTS): New variable.
11697 * mkmap-symver.awk (dotsyms): If set, output .foo as well as foo.
11698 * Makefile.in (SHLIB_MKMAP_OPTS): Pass to mklibgcc.
11700 2002-03-21 Aldy Hernandez <aldyh@redhat.com>
11702 * langhooks.c (lhd_tree_inlining_cannot_inline_tree_fn): Check
11703 flag_really_no_inline instead of optimize == 0.
11705 * c-objc-common.c (c_cannot_inline_tree_fn): Same.
11707 * cp/tree.c (cp_cannot_inline_tree_fn): Same.
11709 * flags.h (flag_really_no_inline): New.
11711 * c-common.c (c_common_post_options): Initialize
11712 flag_really_no_inline.
11714 * toplev.c (flag_really_no_inline): New.
11716 2002-03-21 Jakub Jelinek <jakub@redhat.com>
11718 * config/avr/avr.md (length): Fix length computation for
11719 conditional branches.
11721 2002-03-21 Neil Booth <neil@daikokuya.demon.co.uk>
11723 * Makefile.in (fold-const.o, stor-layout.o, stmt.o,
11724 sdbout.o, profile.o): Update.
11725 * c-common.c (c_common_nodes_and_builtins): Use pushdecl
11727 * c-common.h (gettags): Move here from tree.h.
11728 * c-tree.h (pushdecl, pushlevel, poplevel, set_block,
11729 insert_block, getdecls, kept_level_p, global_bindings_p): New.
11730 * dbxout.c (dbxout_init): Use getdecls langhook.
11731 * expr.c (expand_expr): Use insert_block langhook.
11732 * fold-const.c: Include langhooks.h.
11733 (fold_range_test, fold_binary_op_with_conditional_arg,
11734 fold): Use global_bindings_p langhook.
11735 * integrate.c (expand_inline_function): Use insert_block langhook.
11736 * langhooks-def.h (LANG_HOOKS_DECLS, LANG_HOOKS_PUSHLEVEL,
11737 LANG_HOOKS_POPLEVEL, LANG_HOOKS_GLOBAL_BINDINGS_P,
11738 LANG_HOOKS_INSERT_BLOCK, LANG_HOOKS_SET_BLOCK, LANG_HOOKS_PUSHDECL,
11739 LANG_HOOKS_GETDECLS): New.
11740 (LANG_HOOKS_INITIALIZER): Update.
11741 * langhooks.c (lhd_clear_binding_stack): Use global_bindings_p
11743 * langhooks.h (struct lang_hooks_for_decls): New.
11744 (struct lang_hooks): Update.
11745 * profile.c: Include langhooks.h.
11746 (output_func_start_profiler): Use new langhooks.
11747 * sdbout.c: Include langhooks.h.
11748 (sdbout_init, sdbout_finish): Use getdecls langhook.
11749 * stmt.c: Include langhooks.h.
11750 (expand_fixup, fixup_gotos): Use new langhooks.
11751 * stor-layout.c: Include langhooks.h.
11752 (variable_size): Use global_bindings_p langhook.
11753 * toplev.c (compile_file): Use getdecls langhook.
11754 * tree-inline.c (remap_block): Use insert_block langhook.
11755 * tree.h (pushdecl, pushlevel, poplevel, set_block, gettags,
11756 insert_block, getdecls, kept_level_p, global_bindings_p): Remove.
11758 2002-03-21 Richard Henderson <rth@redhat.com>
11760 * config/rs6000/rs6000.c (rs6000_select_rtx_section): Put symbolic
11761 constants in .data when -fpic.
11763 2002-03-21 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
11765 * doc/contrib.texi (Contributors): Use GNU/Linux instead of Linux
11768 2002-03-21 Tom Tromey <tromey@redhat.com>
11770 * config/i386/sol2.h (ASM_QUAD): Undef. Fixes PR bootstrap/5948.
11772 Thu Mar 21 09:50:48 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
11774 * config/ia64/ia64.c (hfa_element_mode, case ARRAY_TYPE): Recurse.
11776 * expr.c (emit_group_store): Don't copy const0_rtx to a CONCAT.
11778 2002-03-21 Eric Botcazou <ebotcazou@multimania.com>
11779 Richard Henderson <rth@redhat.com>
11782 * c-common.c (c_expand_expr): Preserve result of a statement
11783 expression if needed.
11785 2002-03-21 Jakub Jelinek <jakub@redhat.com>
11788 * genrecog.c (maybe_both_true_mode): Remove.
11789 (maybe_both_true_2, write_switch): Revert 2001-07-17 changes.
11790 * machmode.def (Pmode): Likewise.
11792 Thu Mar 21 01:55:06 EST 2002 John Wehle (john@feith.com)
11794 * alias.c: (nonlocal_mentioned_p): Use for_each_rtx.
11795 (nonlocal_mentioned_p_1): New function.
11796 (nonlocal_referenced_p, nonlocal_referenced_p_1): Likewise.
11797 (nonlocal_set_p, nonlocal_set_p_1): Likewise.
11798 (mark_constant_function): Recognize pure functions.
11799 * rtl.h (global_reg_mentioned_p): New prototype.
11800 * rtlanal.c (global_reg_mentioned_p,
11801 global_reg_mentioned_p_1): New function.
11803 2002-03-21 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
11805 * fixinc/inclhack.def (alpha_assert): Fix assert macro in Tru64
11807 * fixinc/fixincl.x: Regenerate.
11809 2002-03-20 Jason Merrill <jason@redhat.com>
11811 * config/i386/cygwin.h (DWARF2_UNWIND_INFO): Define to 0.
11813 2002-03-20 Michael Meissner <meissner@redhat.com>
11815 * doc/invoke.texi (Optimize Options): Document that -O2 sets
11818 2002-03-20 Bob Wilson <bob.wilson@acm.org>
11820 * config/xtensa/xtensa.h (ASM_OUTPUT_POOL_PROLOGUE): Emit a
11821 ".literal_position" directive before the constant pool.
11823 2002-03-20 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
11825 * doc/contrib.texi (Contributors): Update Geoffrey Keating.
11826 Add Craig Rodrigues.
11827 Add Brad Lucier to testers.
11829 2002-03-20 Jakub Jelinek <jakub@redhat.com>
11832 * config/arc/arc.md (movsicc, movdicc, movsfcc, movdfcc): Add mode
11834 (movsicc_insn, movdicc_insn, movsfcc_insn, movdfcc_insn): Likewise.
11835 * config/arc/arc.c (arc_final_prescan_insn): Use extract_insn_cached
11836 instead of insn_extract.
11838 2002-03-20 Jakub Jelinek <jakub@redhat.com>
11841 * config/fr30/fr30.md (jump): Remove clobber of fixed register.
11843 * genemit.c (output_added_clobbers_hard_reg_p): Only output return
11844 stmt if some case has been output.
11846 2002-03-20 Jakub Jelinek <jakub@redhat.com>
11849 * config/i386/i386.md (movdicc_c_rex64, movsicc_noc, movhicc_noc,
11850 movsfcc_1, movdfcc_1): Add %O2.
11851 * config/i386/i386.c (print_operand): Handle %ON.
11852 Print . before float condition codes in Sun as cmov syntax.
11853 * config/i386/sol2.h (CMOV_SUN_AS_SYNTAX): Define for Sun as.
11854 * config.gcc (i[34567]86-*-solaris2*): Remove comment which is
11857 2002-03-20 Philip Blundell <pb@nexus.co.uk>
11859 * config/arm/arm.c (arm_output_epilogue): Don't generate separate
11860 return instruction if PC was popped.
11862 2002-03-20 Bob Wilson <bob.wilson@acm.org>
11864 * config/xtensa/xtensa.md: Remove unused type attributes.
11865 (adddi_carry, subddi_carry): Change type attribute to "multi".
11867 2002-03-19 Dale Johannesen <dalej@apple.com>
11869 PR optimization/5999, middle-end/5731
11870 * expr.c (expand_expr) [RDIV_EXPR]: Only convert real divisions into
11871 multiplications by reciprocals.
11873 2002-03-20 Neil Booth <neil@daikokuya.demon.co.uk>
11875 * Makefile.in: Update.
11876 * c-common.c: Include langhooks.h.
11877 (inline_forbidden_p): Use new hook.
11878 * diagnostic.c: Include langhooks.h.
11879 (format_with_decl, announce_function,
11880 default_print_error_function): Use new hook.
11881 * dwarf2out.c (dwarf2_name): Use new hook.
11882 * function.c: Include langhooks.h.
11883 (init_function_start): Use new hook.
11884 * langhooks-def.h (lhd_decl_printable_name): New.
11885 (LANGHOOKS_DECL_PRINTABLE_NAME): New.
11886 (LANGHOOKS_INITIALIZER): Update.
11887 * langhooks.c (lhd_decl_printable_name): New.
11888 * langhooks.h (struct lang_hooks): New hook.
11889 * toplev.c (decl_name, decl_printable_name): Remove.
11890 (open_dump_file): Use new hook.
11891 (process_options): Remove old hook.
11892 * tree.h (decl_printable_name): Remove.
11894 * objc-act.c (objc_init): Remove old hook.
11895 (objc_printable_name): Export.
11896 * objc-act.h (objc_printable_name): New.
11897 * objc-lang.c (LANG_HOOKS_DECL_PRINTABLE_NAME): Redefine.
11899 2002-03-19 Jim Blandy <jimb@redhat.com>
11901 * c-lex.c (cb_file_change): Pass the #inclusion's line number to
11902 the start_source_file debug hook, not the current line number.
11904 2002-03-19 Richard Henderson <rth@redhat.com>
11906 * flow.c (EH_USES): Provide default.
11907 (calculate_global_regs_live): Use it for EH edges and noreturn calls.
11908 * doc/tm.texi (EH_USES): New.
11910 * config/ia64/ia64.c (ia64_eh_uses): New.
11911 * config/ia64/ia64-protos.h: Update.
11912 * config/ia64/ia64.h (EH_USES): New.
11914 2002-03-19 Richard Henderson <rth@redhat.com>
11916 * varasm.c (output_constant_def): Fix stupid typo.
11918 2002-03-19 Richard Henderson <rth@redhat.com>
11921 * except.c (current_function_has_exception_handlers): New.
11922 * except.h: Declare it.
11923 * sibcall.c (optimize_sibling_and_tail_recursive_call): Use it.
11924 Combine tests that disable all sibcalls for the function.
11926 2002-03-19 Olivier Hainque <hainque@act-europe.fr>
11928 * varasm.c (output_constant_def): Don't call ENCODE_SECTION_INFO
11931 2002-03-19 Richard Henderson <rth@redhat.com>
11934 * config/ia64/ia64.c: Revert 2002-03-01 patch.
11935 * config/ia64/ia64.h (INIT_EXPANDERS): New.
11937 2002-03-19 Jim Blandy <jimb@redhat.com>
11939 * cppmacro.c (cpp_macro_definition): Emit a space after the macro
11940 name, even if the replacement list contains no tokens, as required
11943 2002-03-19 Jason Merrill <jason@redhat.com>
11945 * varasm.c (globalize_decl): Get the name from the RTL, not
11946 DECL_ASSEMBLER_NAME.
11948 * Makefile.in (LIBGCC2_DEBUG_CFLAGS): Set to -g.
11950 2002-03-19 Bob Wilson <bob.wilson@acm.org>
11952 * config/xtensa/xtensa.md (adddi3, adddi_carry, subdi3,
11953 subdi_carry): Define.
11955 2002-03-19 David Edelsohn <edelsohn@gnu.org>
11957 * config/rs6000/rs6000.c (rs6000_override_options): Only warn
11958 about -fpic/-fPIC if extra_warnings set.
11960 2002-03-19 David Edelsohn <edelsohn@gnu.org>
11962 * expr.c (expand_expr): Sign-extend CONST_INT generated from
11963 TREE_STRING_POINTER.
11964 * fold-const.c (fold): Delete #if 0 ARRAY_REF case.
11966 Tue Mar 19 14:12:32 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
11968 * config/sparc/sparc.h (CAN_ELMINIATE): Can only eliminate FP
11969 in favor of SP if FRAME_POINTER_REQUIRED is false.
11971 2002-03-19 Lars Brinkhoff <lars@nocrew.org>
11973 * emit-rtl.c (gen_int_mode): New function.
11974 * rtl.h: Prototype for it.
11975 * combine.c (make_extraction, simplify_comparison), expmed.c
11976 (store_bit_field, expand_mult_highpart, expand_divmod), expr.c
11977 (convert_modes, store_field), optabs.c (expand_fix),
11978 simplify-rtx.c (neg_const_int, simplify_unary_real),
11980 * config/rs6000/rs6000.c, config/rs6000/rs6000.md:
11981 Use it instead of GEN_INT (trunc_int_for_mode (...)).
11983 2002-03-19 Jakub Jelinek <jakub@redhat.com>
11986 * langhooks.h (struct lang_hooks_for_tree_inlining): Add
11987 convert_parm_for_inlining.
11988 * c-lang.c (LANG_HOOKS_TREE_INLINING_CONVERT_PARM_FOR_INLINING):
11990 * langhooks-def.h: Likewise.
11991 * objc/objc-lang.c: Likewise.
11992 * langhooks.c (lhd_tree_inlining_convert_parm_for_inlining): New
11994 * tree-inline.c (initialize_inlined_parameters):
11995 Call convert_parm_for_inlining lang hook if needed.
11996 * c-typeck.c (c_convert_parm_for_inlining): New function.
11997 * c-tree.h (c_convert_parm_for_inlining): Add prototype.
11999 2002-03-18 Mark Mitchell <mark@codesourcery.com>
12001 * calls.c (precompute_arguments): Do not assume that temporaries
12002 can be destroyed after expanding the argument.
12003 (expand_call): Likewise.
12005 2002-03-15 Eric Christopher <echristo@redhat.com>
12007 * config/mips/mips.md (movdf_internal2): Add two new move constraints.
12008 Fix register preference on last change.
12009 * config/mips/mips.c (mips_return_in_memory): New function.
12010 * config/mips/mips.h (RETURN_IN_MEMORY): Use.
12011 * config/mips/mips-protos.h: Declare.
12012 * config/mips/abi64.h (RETURN_IN_MEMORY): Remove. Add to above.
12013 * config/mips/elf64.h: Add #ifndef/#endif brackets around defaults.
12015 2002-03-18 Alexandre Oliva <aoliva@redhat.com>
12017 * config/mips/mips.md (andsi3) [TARGET_MIPS16]: Force operand 1 to
12019 (anddi3, iorsi3): Likewise.
12021 * config/mips/mips.h (ENCODE_SECTION_INFO) [TARGET_MIPS16]: Don't
12022 use %gprel for symbols that are going to be placed in linkonce
12025 * config/mips/mips.h (ELIMINABLE_REGS): Can't eliminate
12026 RETURN_ADDRESS_POINTER_REGNUM to $ra.
12027 (CAN_ELIMINATE): Only eliminate it to $sp if a frame pointer is
12028 not needed. Disregard leaf_function_p().
12029 (INITIAL_ELIMINATION_OFFSET): Adjust for elimination of rap to
12030 mips16 frame pointer.
12031 * config/mips/mips.md (store ra): Only to small SP offsets.
12032 2001-08-22 Graham Stott <grahams@redhat.com>
12033 * config/mips/mips.h (RETURN_ADDR_RTX): For a leaf function
12034 return a REG rtx for the return address register.
12036 2002-03-18 Bob Wilson <bob.wilson@acm.org>
12038 * config/xtensa/xtensa.h (GO_IF_MODE_DEPENDENT_ADDRESS): Treat
12039 constant-pool addresses as "mode-dependent".
12040 (GO_IF_LEGITIMATE_ADDRESS): Rename macro arguments.
12042 2002-03-18 Jakub Jelinek <jakub@redhat.com>
12045 * expr.c (emit_group_load): Use extract_bit_field if
12046 needed for CONCAT arguments.
12048 2002-03-18 Richard Earnshaw <rearnsha@arm.com>
12051 * arm.md (tablejump): Make this a define_expand. For PIC add the
12052 offset to the base of the table.
12053 (thumb_tablejump): Matcher for Thumb tablejump insn.
12054 * config/arm/aout.h (ASM_OUTPUT_ADDR_DIFF_ELT): Output thumb entries
12055 as the difference of two labels.
12056 * config/arm/aof.h (ASM_OUTPUT_ADDR_DIFF_ELT): Likewise.
12057 * config/arm/elf.h (JUMP_TABLES_IN_TEXT_SECTION): Only put ARM jump
12058 tables in the code.
12059 * config/arm/coff.h (JUMP_TABLES_IN_TEXT_SECTION): Likewise.
12060 * arm.c (get_jump_table_size): If the table is not in the text
12061 section, return zero.
12063 2002-03-18 Bernd Schmidt <bernds@redhat.com>
12065 * config/arm/arm.c (arm_gen_movstrqi): Use gen_lowpart instead
12067 (arm_reload_out_hi): Use gen_lowpart instead of
12068 gen_rtx_SUBREG to access QImode components.
12069 * config/arm/arm.md: Disable zero_extend split for QImode
12070 subregs in BIG_ENDIAN mode.
12071 (storehi_bigend): Match use of least significant byte.
12072 (storeinthi): Remove extraneous SUBREG.
12073 Add missing construction of operands[2].
12074 (movhi): Use gen_lowpart in place of gen_rtx_SUBREG.
12075 (movqi): Use gen_lowpart in place of gen_rtx_SUBREG.
12076 Replace gen_rtx (SUBREG) with gen_rtx_SUBREG.
12078 2002-03-18 Aldy Hernandez <aldyh@redhat.com>
12080 * config/rs6000/rs6000.h (PREDICATE_CODES): Add PARALLEL to
12083 2002-03-17 Richard Henderson <rth@redhat.com>
12085 * config/alpha/alpha.c (alpha_emit_set_const_1): Build add insns
12088 2002-03-17 Hans-Peter Nilsson <hp@bitrange.com>
12090 * config/mmix/mmix.md ("fixuns_truncdfdi2"): Use (unsigned_fix:DI
12091 (unsigned_fix:DF op1)), not (unsigned_fix:DI (fix:DF op1)).
12093 2002-03-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12095 * ifcvt.c (dead_or_predicable): Fix uninitialized variable.
12097 * predict.c (estimate_bb_frequencies): Delete unused variables.
12099 2002-03-17 Richard Henderson <rth@redhat.com>
12101 * config/ia64/ia64.c (ia64_attribute_table): Move before
12102 targetm definition. Make static.
12104 2002-03-17 Neil Booth <neil@daikokuya.demon.co.uk>
12106 * c-common.h (yyparse, c_common_parse_file): New.
12107 * c-lang.c: Include c-common.h.
12108 (LANG_HOOKS_PARSE_FILE): Redefine.
12109 * c-lex.c: Include c-common.h.
12110 (yyparse): Rename c_common_parse_file. Call yyparse.
12111 * c-parse.in (yyparse): Remove macro.
12112 * c-tree.h (yyparse_1): Remove.
12113 * langhooks-def.h (LANG_HOOKS_PARSE_FILE): New.
12114 (LANG_HOOKS_INITIALIZER): Update.
12115 * langhooks.h (struct lang_hoooks): New hook parse_file.
12116 * toplev.c (compile_file): Use parse_file hook.
12117 * tree.h (yyparse): Remove.
12118 * objc/objc-lang.c (LANG_HOOKS_PARSE_FILE): Redefine.
12120 2002-03-17 Hans-Peter Nilsson <hp@bitrange.com>
12122 * config/mmix/mmix.md ("truncdfsf2"): Correct operator is
12123 float_truncate, not fix.
12124 ("*truncdfsf2_real"): Ditto.
12125 ("*nonlocal_goto_receiver_expanded"): Fix output template formatting.
12127 * config/mmix/mmix.h (WCHAR_TYPE, WCHAR_TYPE_SIZE): Don't define.
12129 2002-03-16 Alexandre Oliva <aoliva@redhat.com>
12131 * config/mips/mips.h (CAN_ELIMINATE): Don't eliminate rap to $fp
12132 (s8), but rather HARD_FRAME_POINTER_REGNUM. Add parentheses
12133 where appropriate. Make the second reference to
12134 leaf_function_p a function call, as intended. Reindented.
12136 * config/mips/mips.h (ISA_HAS_COND_TRAP): Not available on MIPS16.
12137 * config/mips/mips.md (trap) [TARGET_MIPS16]: Emit `break 0'.
12139 * config/mips/mips.md (addsi3, adddi3): Use scratch register to
12140 add register to non-constant into sp.
12142 * config/mips/mips-protos.h (embedded_pic_fnaddr_reg): New.
12143 * config/mips/mips.h (embedded_pic_fnaddr_rtx): Lose.
12144 (mips16_gp_pseudo_rtx): Lose.
12145 (INIT_EXPANDERS): Deleted.
12146 * config/mips/mips.c (mips_init_machine_status): New.
12147 (mips_free_machine_status): New.
12148 (mips_mark_machine_status): New.
12149 (override_options): Set them.
12150 (embedded_pic_fnaddr_rtx, mips16_gp_pseudo_rtx): Moved to...
12151 (struct machine_function): ... new. Replaced all references.
12152 (mips_add_gc_roots): Don't mark them.
12153 (embedded_pic_fnaddr_reg): New, extracted from...
12154 (embedded_pic_offset): ... here.
12155 * config/mips/mips.md (movdi): Call embedded_pic_fnaddr_reg.
12158 2002-03-16 Neil Booth <neil@daikokuya.demon.co.uk>
12160 * cppinit.c: Revert -MD removal.
12162 2002-03-16 Stephane Carrez <Stephane.Carrez@worldnet.fr>
12164 * config/m68hc11/m68hc11.c (m68hc11_override_options): Don't use
12165 soft registers by default for 68HC12.
12166 (m68hc11_conditional_register_usage): Don't use Z register for 68HC12
12167 when compiling with -fomit-frame-pointer.
12168 (expand_prologue): Use push/pop to allocate 4-bytes of locals on 68HC12.
12169 (expand_epilogue): Likewise.
12170 (m68hc11_gen_rotate): Use exg when rotating by 8.
12172 2002-03-16 Stephane Carrez <Stephane.Carrez@worldnet.fr>
12174 * config/m68hc11/m68hc11-protos.h (ix_reg): Declare.
12175 * config/m68hc11/m68hc11.md ("addsi3"): Use general_operand for sources.
12176 (splits): Remove unused add splits.
12177 ("*addhi3_68hc12"): Tune constraints.
12178 ("addhi_sp"): Try to use X instead of Y in all cases and if the
12179 constant fits in 8-bits and D is dead use abx/aby instructions.
12180 ("*addhi3"): Remove extern declaration of ix_reg.
12181 ("*subsi3"): Optimize and provide new split.
12182 ("subhi3"): Cleanup.
12183 ("*subhi3_sp"): Avoid saving X if we know it is dead.
12184 (arith splits): For 68hc12 save the address register on the stack
12185 and do the arithmetic operation with a pop.
12187 2002-03-16 Stephane Carrez <Stephane.Carrez@worldnet.fr>
12189 * config/m68hc11/m68hc11.md ("*movqi_68hc12"): Fix constraints, avoid
12190 allocating QImode in address registers.
12191 ("*movqi_m68hc11"): Likewise.
12193 Sat Mar 16 12:57:28 CET 2002 Jan HUbicka <jh@suse.cz>
12195 * cfgcleanup.c (cleanup_cfg): Fix updating of liveness.
12197 2002-03-16 Neil Booth <neil@daikokuya.demon.co.uk>
12199 * cppinit.c (print_help): Display -MD and -MMD.
12200 Don't display usage string. Update assertion syntax and
12202 (COMMAND_LINE_OPTIONS): Remove OPT_MD, OPT_MMD.
12203 (cpp_handle_option): Update.
12205 2002-03-15 Chris Demetriou <cgd@broadcom.com>
12207 * config/mips/mips.h (SUBTARGET_CPP_SIZE_SPEC): Provide an
12208 MEABI case for each definition of SUBTARGET_CPP_SIZE_SPEC,
12209 and define it so that regardless of target CPU size,
12210 __SIZE_TYPE__ and __PTRDIFF_TYPE__ are defined in terms
12211 of "int" rather than "long."
12213 2002-03-15 Richard Henderson <rth@redhat.com>
12215 * config/alpha/alpha.c (alpha_va_arg): Manipulate the type
12218 2002-03-15 Stephane Carrez <Stephane.Carrez@worldnet.fr>
12220 * config/m68hc11/m68hc11.md ("tstqi_1"): Try to use ldab instead of tst.
12221 ("tstqi" split): Avoid using memory for tstqi on address register.
12222 (splits): Remove constraints.
12223 ("cmphi_1_hc12"): New from "cmphi_1" and tuned for 68HC12.
12224 ("cmpdf", "cmpsf"): Remove since not used.
12225 ("*tbeq", "*tbne", "*tbeq8", "*tbne8"): Also look in cc_status.value2.
12226 (peephole2): New peepholes to optimize tstqi and pre inc/dec addressing.
12228 2002-03-15 Stephane Carrez <Stephane.Carrez@worldnet.fr>
12230 * config/m68hc11/m68hc11.md ("negsi2"): Optimize inline case.
12231 ("neghi2"): Tighten constraints.
12232 ("one_cmplsi2"): Optimize and simplify split.
12233 * config/m68hc11/larith.asm (__negsi2): Likewise for library.
12235 2002-03-15 Stephane Carrez <Stephane.Carrez@worldnet.fr>
12237 * config/m68hc11/m68hc11.md ("logicalsi3_zexthi"): Fix constraints
12238 and split of AND operation to clear the upper bits.
12239 ("*logicalsi3_zextqi"): Likewise.
12240 ("*logicallhi3_zexthi_ashift8"): Likewise.
12241 ("*logicalsi3_silshr16"): Likewise.
12242 ("logicalsi3_silshl16"): Likewise.
12243 ("anddi3", "iordi3", "xordi3" splits): Remove constraints.
12245 2002-03-15 Stephane Carrez <Stephane.Carrez@worldnet.fr>
12247 * config/m68hc11/m68hc11.c (m68hc11_symbolic_p): New function.
12248 (m68hc11_indirect_p): New function.
12249 (m68hc11_override_options): Must set MASK_NO_DIRECT_MODE for 68HC12.
12250 (m68hc11_gen_highpart): Use TARGET_NO_DIRECT_MODE instead of
12252 (asm_print_register): Likewise.
12253 * config/m68hc11/m68hc11-protos.h (m68hc11_symbolic_p): Declare.
12254 (m68hc11_indirect_p): Declare.
12255 * config/m68hc11/m68hc11.h (EXTRA_CONSTRAINT): New constraint 'R', 'Q'.
12256 (TARGET_NO_DIRECT_MODE, TARGET_RELAX): New.
12257 (TARGET_SWITCHES): New option -mrelax.
12258 * config/m68hc11/m68hc11.md ("andsi3"): Allow soft register for
12260 ("iorsi3", "xorsi3"): Likewise.
12261 ("andhi3", "andqi3", "iorhi3", "iorqi3"): Use a define_expand.
12262 ("*andhi3_mem"): New to handle destination in memory with bclr
12263 and a scratch register.
12264 ("*andqi3_mem", "*iorhi3_mem", "*iorqi3_mem"): Likewise.
12265 ("*andhi3_const"): New when operand2 is constant.
12266 ("*andqi3_const", "*iorhi3_const", "*iorqi3_const"): Likewise.
12267 ("*andhi3_gen"): Cleanup of the old "andhi3".
12268 ("*andqi3_gen", "*iorhi3_gen", "*iorqi3_gen"): Likewise.
12269 ("xorqi3"): Update constraints.
12271 2002-03-15 Stephane Carrez <Stephane.Carrez@worldnet.fr>
12273 * config/m68hc11/m68hc11.c (m68hc11_small_indexed_indirect_p): Look
12274 for reg_equiv_memory_loc when the operand is a register that does
12275 not get a hard register (stack location).
12276 (tst_operand): After reload, accept all memory operand.
12277 (symbolic_memory_operand): Fix detection of symbolic references.
12278 * config/m68hc11/m68hc11.h (VALID_CONSTANT_OFFSET_P): For 68HC12
12279 accept symbols and any constant.
12281 2002-03-15 Stephane Carrez <Stephane.Carrez@worldnet.fr>
12283 * config/m68hc11/m68hc11.c (emit_move_after_reload): Add a REG_INC
12284 note on the insn that sets the soft frame register.
12285 (must_parenthesize): ix and iy are also reserved names.
12286 (print_operand_address): One more place where parenthesis are required
12287 to avoid confusion with register names.
12288 (m68hc11_gen_movhi): Allow push of stack pointer.
12289 (m68hc11_check_z_replacement): Fix handling of parallel with a
12291 (m68hc11_z_replacement): Must update the REG_INC notes to tell what
12292 the replacement register is.
12293 * config/m68hc11/m68hc11.h (REG_CLASS_CONTENTS): Switch Z_REGS
12294 and D8_REGS classes.
12295 (MODES_TIEABLE_P): All modes are tieable except QImode.
12297 2002-03-15 Stephane Carrez <Stephane.Carrez@worldnet.fr>
12299 * config/m68hc11/larith.asm (___adddi3): Optimize saving of result.
12300 (___subdi3): Likewise.
12301 (__mulsi3, __mulhi32): Avoid using _.tmp scratch location.
12302 (__map_data_section): Optimize 68hc11 case.
12304 2002-03-15 Stephane Carrez <Stephane.Carrez@worldnet.fr>
12306 * config/m68hc11/m68hc11.c (m6812_cost): Make cost of add higher
12307 than a shift to avoid adding a register with itself.
12308 (m68hc11_memory_move_cost): Take into account NO_REGS.
12309 (m68hc11_register_move_cost): Update and use memory move cost
12310 for soft registers.
12311 (m68hc11_address_cost): Make cost of valid offset not 0 so that
12312 it gives more opportunities to cse to optimize.
12313 * config/m68hc11/m68hc11.h (REGISTER_MOVE_COST): Pass the mode.
12314 * config/m68hc11/m68hc11-protos.h (m68hc11_register_move_cost): Update.
12316 2002-03-15 Mark Mitchell <mark@codesourcery.com>
12318 * c-common.c (statement_code_p): Handle CLEANUP_STMT.
12319 * c-common.def (CLEANUP_STMT): New tree node.
12320 * c-common.h (CLEANUP_DECL): New macro.
12321 (CLEANUP_EXPR): Likewise.
12322 * c-semantics.c (expand_stmt): Handle CLEANUP_STMT.
12323 * expr.c (expand_expr): Tidy.
12324 * tree-dump.c (dequeue_and_dump): Handle CLEANUP_STMT.
12325 * tree-inline.c (initialize_inlined_parameters): Clean up
12326 new local variables.
12328 2002-03-15 Jakub Jelinek <jakub@redhat.com>
12331 * config/sparc/sparc.c (gen_v9_scc): Move early clobber test
12332 before movrXX only, use reg_overlap_mentioned_p.
12333 Only special case NE if just one insn can be generated.
12335 2002-03-15 Jason Merrill <jason@redhat.com>
12337 * varasm.c (assemble_variable): Call resolve_unique_section before
12338 checking DECL_SECTION_NAME. Use zeros for a decl with DECL_INITIAL
12339 of error_mark_node.
12341 2002-03-15 Richard Earnshaw <rearnsha@arm.com>
12344 * arm.md (split pattern for thumb shiftable immediates): Add comment
12345 explaining non-obvious test.
12347 2002-03-15 Richard Earnshaw <rearnsha@arm.com>
12350 * arm.md (movaddr, movaddr_insn): Delete.
12352 2002-03-15 Jason Merrill <jason@redhat.com>
12354 * toplev.c (wrapup_global_declarations): Clarify variable handling.
12355 -fkeep-static-consts doesn't apply to comdats.
12357 2002-03-14 Richard Henderson <rth@redhat.com>
12359 * c-decl.c: Include c-pragma.h.
12360 (start_decl, start_function): Invoke maybe_apply_pragma_weak.
12361 (finish_function): Tidy.
12362 * c-pragma.c: Include c-common.h.
12363 (pending_weaks, apply_pragma_weak, maybe_apply_pragma_weak): New.
12364 (handle_pragma_weak): Use them.
12365 (init_pragma): Register pending_weaks.
12366 * c-pragma.h (maybe_apply_pragma_weak): Declare.
12367 * print-tree.c (print_node): Print DECL_WEAK.
12368 * varasm.c (mark_weak_decls): Remove.
12369 (remove_from_pending_weak_list): Remove.
12370 (add_weak): Remove.
12371 (asm_emit_uninitialised): Call globalize_decl for weak commons.
12372 (weak_decls): Make a tree_list.
12373 (declare_weak): Cons weak_decls directly.
12374 (globalize_decl): Remove weak_decls elements directly.
12375 (weak_finish): Simplify weak_decls walk. Don't weaken unused
12376 symbols. Don't pretend to handle aliases.
12377 (init_varasm_once): Update weak_decls registry.
12378 * Makefile.in: Update dependencies.
12380 2002-03-14 Richard Henderson <rth@redhat.com>
12383 * config/ia64/ia64.c: Include tm_p.h last.
12384 (gen_nop_type): Remove duplicate definition.
12385 (cycle_end_fill_slots): Set sched_data for second L slot.
12386 (maybe_rotate): Call cycle_end_fill_slots to fill in nop slots.
12387 (nop_cycles_until): Fix typos.
12389 2002-03-15 Jakub Jelinek <jakub@redhat.com>
12391 PR optimization/5891
12392 * unroll.c (copy_loop_body) [CALL_INSN]: Copy SIBLING_CALL_P flag.
12394 2002-03-14 David Mosberger <davidm@hpl.hp.com>, Hans Boehm <Hans_Boehm@hp.com>
12396 * config/ia64/unwind-ia64.c: Handle copy_state and label_state
12397 descriptors correctly.
12399 2002-03-14 Michael Meissner <meissner@redhat.com>
12401 * params.def (PARAM_MAX_UNROLLED_INSNS): New macro, default to
12402 100, allowing MAX_UNROLLED_INSNS to be overridden.
12404 * params.h (MAX_UNROLLED_INSNS): Define so it can be overridden by
12407 * unroll.c (params.h): Include.
12408 (MAX_UNROLLED_INSNS): Delete, now in params.h.
12410 * doc/invoke.texi (--param max-unroll-insns): Document.
12412 * Makefile.in (unroll.o): Add $(PARAMS_H) dependency.
12414 2002-03-14 Richard Earnshaw <rearnsha@arm.com>
12416 * arm.md: Fix warnings about constraints in peepholes and splits.
12418 2002-03-14 Zack Weinberg <zack@codesourcery.com>
12420 * cpphash.h (struct lexer_state): Remove line_extension member.
12421 * cpplib.c (dequote_string, do_linemarker): New functions.
12422 (linemarker_dir): New data object.
12423 (DIRECTIVE_TABLE): No longer need to interpret #line in
12424 preprocessed source. Delete obsolete comment about return
12425 values of handlers.
12426 (end_directive, directive_diagnostics, _cpp_handle_directive):
12427 Don't muck with line_extension.
12428 (directive_diagnostics): No need to issue warnings for
12430 (_cpp_handle_directive): Issue warnings for linemarkers here,
12431 when appropriate. Dispatch linemarkers to do_linemarker, not
12433 (do_line): Code to handle linemarkers split out to do_linemarker.
12434 Convert escape sequences in filename argument, both places.
12436 * cppmacro.c (quote_string): Rename cpp_quote_string and
12437 export. All callers changed.
12438 * cpplib.h (cpp_quote_string): Prototype.
12439 * cppmain.c (print_line): Call cpp_quote_string on to_file
12440 before printing it.
12442 * doc/cpp.texi: Document that escapes are now interpreted in
12443 #line and in linemarkers, and that non-printing characters are
12444 converted to octal escapes when linemarkers are generated.
12446 Thu Mar 14 19:04:29 CET 2002 Jan Hubicka <jh@suse.cz>
12448 * emit-rtl.c (try_split): Use delete_insns.
12449 * recog.c (split_all_insns): Fix terminating condition.
12451 2002-03-14 Richard Earnshaw <rearnsha@arm.com>
12452 Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
12455 * arm.c (arm_output_epilogue): Fix floating-point register save
12456 adjustment when using a frame pointer.
12458 2002-03-14 Richard Sandiford <rsandifo@redhat.com>
12460 * config/mips/mips.h (FP_INC, UNITS_PER_FPVALUE): New macros.
12461 * config/mips/mips.c (compute_frame_size): Retrofit them here.
12462 (save_restore_insns, mips_expand_epilogue): And here.
12463 (build_mips16_call_stub): And here.
12464 (mips_function_value): Use the new macros to decide whether a single
12465 or complex float can be returned in floating-point registers. Return
12466 a parallel rtx in the complex case.
12468 Thu Mar 14 11:03:12 CET 2002 Jan Hubicka <jh@suse.cz>
12470 * toplev.c (rest_of_compilation): Add CLEANUP_UPDATE_LIFE to cfg_cleanup
12471 call after liveness analysis.
12473 * recog.c (split_insn): Use delete_insn_and_edges.
12475 * cfgrtl.c (verify_flow_info): Be permisive about non-any_condjump
12476 instructions to have branch prediction notes.
12477 * ia64reorg.c (ia64_reorg): Do not rebuild CFG.
12479 2002-03-14 Geoffrey Keating <geoffk@redhat.com>
12481 * configure.in: Don't pass -Wno-long-long to a ADA compiler
12482 that doesn't support it.
12483 * configure: Regenerate.
12485 2002-03-13 Jakub Jelinek <jakub@redhat.com>
12488 * config/sparc/sparc.md (normal_branch, inverted_branch,
12489 normal_fp_branch, inverted_fp_branch, normal_fpe_branch,
12490 inverted_fp_branch): Adjust calls to output_cbranch.
12491 Set length attribute.
12492 (normal_int_branch_sp64, inverted_int_branch_sp64): Adjust calls to
12493 output_v9branch. Set length attribute.
12494 * config/sparc/sparc.c (fcc0_reg_operand, noov_compare64_op): New
12496 (noov_compare_op): Handle CCX_NOOVmode the same way as CC_NOOVmode.
12497 (output_cbranch): Likewise. Handle far branches.
12498 (output_v9branch): Handle far branches.
12499 * config/sparc/sparc-protos.h (output_cbranch, output_v9branch):
12501 * config/sparc/sparc.h (PREDICATE_CODES): Add fcc0_reg_operand and
12502 noov_compare64_op predicates.
12504 2002-03-13 Jason Merrill <jason@redhat.com>
12506 * gthr-posix.h (__gthread_active_p): Move __gthread_active_ptr
12507 into the function and constify it.
12508 * gthr-dce.h, gthr-solaris.h: Likewise.
12510 2002-03-13 David Edelsohn <edelsohn@gnu.org>
12512 * config/rs6000/rs6000.h (PAD_VARARGS_DOWN): Define.
12513 * config/rs6000/rs6000.c (rs6000_va_arg): Use
12514 std_expand_builtin_va_arg if not ABI_V4.
12516 2002-03-13 Jason Merrill <jason@redhat.com>
12518 * varasm.c (globalize_decl): New fn.
12519 (assemble_start_function): Use it.
12520 (asm_emit_uninitialized): Use it.
12521 (assemble_alias): Use it.
12522 (assemble_variable): Use it.
12524 2002-03-13 Hans-Peter Nilsson <hp@axis.com>
12526 * config/cris/cris.c (cris_target_asm_function_prologue): Revert
12527 2002-03-12 internal visibility change.
12528 (cris_encode_section_info): Consider MODULE_LOCAL_P when encoding
12529 visibility into SYMBOL_REF_FLAG.
12531 2002-03-13 Ulrich Weigand <uweigand@de.ibm.com>
12533 * expr.c (expand_expr, case NE_EXPR): Do not call copy_to_reg with
12534 VOIDmode operand. Add compile-time optimization for constant results.
12536 2002-03-12 Jason Merrill <jason@redhat.com>
12538 * c-typeck.c (convert_for_assignment): Don't allow conversions
12539 between pointers and references. Only allow lvalues to convert to
12542 2002-03-13 Hartmut Penner <hpenner@de.ibm.com>
12544 * config/s390/s390.h (PROFILE_BEFORE_PROLOGUE): Emit profile code
12545 before prologue, to avoid scheduling problems.
12547 2002-03-13 Jakub Jelinek <jakub@redhat.com>
12549 * config/sparc/sparc.h (INITIAL_FRAME_POINTER_OFFSET): Remove.
12550 (ELIMINABLE_REGS): Add sfp->sp.
12551 (INITIAL_ELIMINATION_OFFSET): Compute sfp->sp offset too.
12553 2002-03-13 Jakub Jelinek <jakub@redhat.com>
12555 PR optimization/5892
12556 * config/ia64/ia64.c (rotate_one_bundle): Update current packet.
12558 2002-03-13 Jakub Jelinek <jakub@redhat.com>
12560 * loop.c (basic_induction_var): Don't call convert_modes if mode
12561 classes are different.
12563 2002-03-12 Richard Henderson <rth@redhat.com>
12565 PR optimization/5901
12566 * function.c (reposition_prologue_and_epilogue_notes): Position
12567 the markers after/before the last/first insn not deleted.
12569 2002-03-12 Richard Henderson <rth@redhat.com>
12571 PR optimization/5878
12572 * config/arc/arc.h, config/cris/cris.h, config/i386/i386.h,
12573 config/m68k/m68k.h, config/s390/s390.h, config/sparc/sparc.h
12574 (PIC_OFFSET_TABLE_REGNUM): Conditionalize on flag_pic.
12576 * config/arm/arm.h config/i386/i386.h, config/m68k/m68k.h,
12577 config/sparc/sparc.h (CONDITIONAL_REGISTER_USAGE): Set
12578 PIC_OFFSET_TABLE_REGNUM based on INVALID_REGNUM not flag_pic.
12580 * config/arc/arc.h (CONDITIONAL_REGISTER_USAGE): New.
12581 * config/arm/arm.c (arm_pic_register): Init to INVALID_REGNUM.
12582 (arm_override_options): Set arm_pic_register if TARGET_APCS_STACK
12583 also. Don't set it if not flag_pic.
12584 * config/i386/i386.c (ix86_save_reg): Trust PIC_OFFSET_TABLE_REGNUM
12585 to be INVALID_REGNUM when not used.
12587 2002-03-13 Aldy Hernandez <aldyh@redhat.com>
12589 * expmed.c (store_bit_field): Reset alias set for memory.
12590 (extract_bit_field): Same.
12592 2002-03-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12594 * c-common.c (c_tree_code_type, c_tree_code_length,
12595 c_tree_code_name, add_c_tree_codes): Delete.
12596 * c-common.h (add_c_tree_codes): Delete.
12597 * c-lang.c (tree_code_type, tree_code_length, tree_code_name):
12599 * c-objc-common.c (c_objc_common_init): Don't call
12600 add_c_tree_codes, instead set lang_unsafe_for_reeval.
12601 * objc/objc-act.c (objc_tree_code_type, objc_tree_code_length,
12602 objc_tree_code_name, add_objc_tree_codes): Delete.
12603 (objc_init): Don't call add_objc_tree_codes.
12604 * objc/objc-lang.c (tree_code_type, tree_code_length,
12605 tree_code_name): Define.
12606 * toplev.c (lang_independent_init): Don't set
12607 tree_code_length[IDENTIFIER_NODE].
12608 * tree.c (tree_code_type, tree_code_length, tree_code_name):
12609 Delete definitions, moved to language front-ends.
12610 * tree.def (IDENTIFIER_NODE): Hardwire the length.
12611 * tree.h (tree_code_type, tree_code_length, tree_code_name):
12613 (tree_code_length): Change type to unsigned char.
12615 2002-03-12 Richard Henderson <rth@redhat.com>
12617 * config/i386/i386.c (ix86_expand_prologue): Revert 2002-03-03
12618 internal visibility change.
12620 2002-03-12 Bob Wilson <bob.wilson@acm.org>
12622 * config/xtensa/xtensa.c (xtensa_expand_block_move): Use
12623 validize_mem() instead of change_address to avoid clobbering
12626 2002-03-12 Neil Booth <neil@daikokuya.demon.co.uk>
12628 * c-lex.h (position_after_whitespace): Remove.
12630 2002-03-12 Jakub Jelinek <jakub@redhat.com>
12632 * c-lex.c (cb_ident, c_lex): Remove unnecessary cast.
12633 (lex_string): Use unsigned char pointers.
12635 2002-03-12 Ulrich Weigand <uweigand@de.ibm.com>
12637 * reload1.c (reload): Ignore MEM REG_EQUIV notes if the equivalent
12638 is not a valid memory_operand.
12640 2002-03-12 Bob Wilson <bob.wilson@acm.org>
12642 * config/xtensa/xtensa-config.h: Define XCHAL_HAVE_LOOPS.
12643 * config/xtensa/lib1funcs.asm: Fix copyright to include
12644 special case for libgcc files.
12645 (__udivsi3): Avoid loop instructions when XCHAL_HAVE_LOOPS is 0.
12646 (__divsi3): Likewise.
12647 (__umodsi3): Likewise.
12648 (__modsi3): Likewise.
12649 * config/xtensa/lib2funcs.S: Fix copyright to include
12650 special case for libgcc files.
12652 2002-03-12 Tom Rix <trix@redhat.com>
12654 * collect2.c (resolve_lib_name): Move outside of
12655 OBJECT_FORMAT_COFF ifdef.
12656 (ignore_library): Same.
12658 2002-03-12 Bob Wilson <bob.wilson@acm.org>
12660 * config/xtensa/t-xtensa (CRTSTUFF_T_CFLAGS_S): Define.
12662 2002-03-12 Bob Wilson <bob.wilson@acm.org>
12664 * config/xtensa/xtensa.h (ASM_OUTPUT_POOL_PROLOGUE): Switch
12665 to function_section before writing out the constant pool.
12667 2002-03-12 David Edelsohn <edelsohn@gnu.org>
12669 * config/rs6000/rs6000.h (PREDICATE_CODES): Add any_operand and
12671 * config/rs6000/rs6000.c (easy_fp_constant): Fix formatting.
12673 2002-03-12 Alan Modra <amodra@bigpond.net.au>
12675 * config/rs6000/rs6000.md (addsi3): Optimize sign extension.
12676 (adddi3): Likewise.
12679 (cmpsi splitter): Likewise.
12680 (modsi3): Fail if <= 0.
12681 * config/rs6000/rs6000.c (reg_or_add_cint64_operand): Remove
12682 redundant test when HOST_BITS_PER_WIDE_INT != 32.
12683 (reg_or_sub_cint64_operand): Likewise.
12684 (num_insns_constant_wide): Optimize sign extension.
12685 (rs6000_legitimize_address): Likewise.
12687 2002-03-12 Andrew MacLeod <amacleod@redhat.com>
12689 * config/sparc/linux.h (HANDLE_PRAGMA_PACK_PUSH_POP): Define.
12690 * config/sparc/linux64.h (HANDLE_PRAGMA_PACK_PUSH_POP): Define.
12692 2002-03-12 Andrew MacLeod <amacleod@redhat.com>
12694 * config/sparc/sparc.h (RETURN_ADDR_RTX): Include v9 stack bias in
12695 address calculation.
12697 2002-03-12 Ulrich Weigand <uweigand@de.ibm.com>
12699 * config/s390/s390.md (reload_insi, reload_indi): Change mode of
12700 scratch register to DImode / TImode.
12701 config/s390/s390.c (s390_expand_plus_operand): Make sure scratch
12702 register used does not overlap the target.
12704 2002-03-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12706 * Makefile.in (debug.o): Depend on debug.h.
12707 * dbxout.c (dbx_debug_hooks, xcoff_debug_hooks): Const-ify.
12708 * debug.c (do_nothing_debug_hooks): Likewise.
12709 * debug.h (debug_hooks, do_nothing_debug_hooks, dbx_debug_hooks,
12710 sdb_debug_hooks, xcoff_debug_hooks, dwarf_debug_hooks,
12711 dwarf2_debug_hooks, vmsdbg_debug_hooks): Likewise.
12712 * dwarf2out.c (dwarf2_debug_hooks): Likewise.
12713 * dwarfout.c (dwarf_debug_hooks): Likewise.
12714 * integrate.c (output_inline_function): Likewise.
12715 * objc/objc-act.c (synth_module_prologue): Likewise.
12716 * sdbout.c (sdb_debug_hooks): Likewise.
12717 * toplev.c (debug_hooks): Likewise.
12718 * vmsdbgout.c (vmsdbg_debug_hooks): Likewise.
12720 2002-03-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12722 * 1750a.h, a29k.h, arc.h, arm.h, c4x.h, clipper.h, cris.h, d30v.h,
12723 dsp16xx.h, fr30.h, h8300.h, i370.h, i386.h, i860.h, i960.h,
12724 m32r.h, m68hc11.h, m68k.h, m88k.h, mcore.h, mmix.h, mn10300.h,
12725 ns32k.h, pa.h, pdp11.h, pj.h, romp.h, s390.h, stormy16.h,
12726 v850.h, vax.h, we32k.h, xtensa.h (POINTER_SIZE): Delete.
12727 * defaults.h (POINTER_SIZE): Define.
12728 * doc/tm.texi (POINTER_SIZE): Document default.
12730 2002-03-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12732 * mn10200.h (PTRDIFF_TYPE): Change it to a signed type.
12734 2002-03-11 Richard Henderson <rth@redhat.com>
12736 * toplev.c (rest_of_compilation): Call purge_all_dead_edges
12737 if rebuild_label_notes_after_reload.
12739 2002-03-12 Hans-Peter Nilsson <hp@axis.com>
12741 * config/cris/cris.c (cris_target_asm_function_prologue): Do not
12742 emit pic register load if "internal" visibility.
12743 (cris_print_operand): Avoid traditional-warning for 0xffffffff.
12744 (cris_expand_builtin_va_arg): Do all computations on trees.
12746 2002-03-11 Richard Henderson <rth@redhat.com>
12748 * rtlanal.c: Include recog.h.
12749 (keep_with_call_p): Fix thinko.
12750 * Makefile.in (rtlanal.o): Update dependencies.
12752 2002-03-11 Chris Meyer <cmeyer@gatan.com>
12754 * genflags.c (gen_insn): Use IS_VSPACE.
12755 * genoutput.c (output_insn_data): Likewise.
12756 (process_template): Likewise.
12758 2002-03-11 Richard Henderson <rth@redhat.com>
12760 * toplev.c (rest_of_compilation): Don't compile if we've had errors.
12762 2002-03-11 Neil Booth <neil@daikokuya.demon.co.uk>
12764 * Makefile.in: Update.
12765 * doc/cppenv.texi, cppopts.texi: Split out of cpp.texi and gcc.texi.
12766 Update documentation.
12767 * doc/gcc.texi: Include cppopts.texi and cppenv.texi.
12768 * doc/cpp.texi: Include cppopts.texi and cppenv.texi.
12770 2002-03-11 Zack Weinberg <zack@codesourcery.com>
12772 * Makefile.in: Give texi2pod its input file as a command line
12773 argument, not on stdin.
12775 2002-03-11 Dan Nicolaescu <dann@ics.uci.edu>
12776 Daniel Berlin <dan@dberlin.org>
12778 C++ alias analysis improvement.
12779 * alias.c (record_component_aliases): Record aliases for base
12782 2002-03-11 Ulrich Weigand <uweigand@de.ibm.com>
12784 * config/s390/s390.h (REG_ALLOC_ORDER): Add missing register.
12786 2002-03-11 Douglas B Rupp <rupp@gnat.com>
12788 * toplev.c (vms_fopen): Remove, not needed.
12790 * vmsdbgout.c (lookup_filename): Adjust creation date for GMT.
12792 * config/alpha/xm-vms.h (__UNIX_FWRITE): Define.
12794 * config/alpha/alpha.c (alpha_sa_size, VMS): Don't reserve space
12795 for FP, already done later.
12797 * toplev.c (debug_args): Add entry for VMS_DEBUG.
12798 * vmsdbgout.c (vmsdbgout_init): Fix typo in call to xmalloc.
12800 2002-03-11 Richard Sandiford <rsandifo@redhat.com>
12802 * defaults.h (LARGEST_EXPONENT_IS_NORMAL, ROUND_TOWARDS_ZERO): New.
12803 (MODE_HAS_NANS, MODE_HAS_INFINITIES): Evaluate to false if
12804 LARGEST_EXPONENT_IS_NORMAL for the given mode.
12805 (MODE_HAS_SIGN_DEPENDENT_ROUNDING): False when ROUND_TOWARDS_ZERO.
12806 * real.c (eadd1): Make rounding dependent on !ROUND_TOWARDS_ZERO.
12807 (ediv, emul, eldexp, esqrt): Likewise.
12808 (etoe113, etoe64, etoe53, etoe24, etodec, etoibm, etoc4x): Likewise.
12809 (e24toe): Only check NaNs & infinities if !LARGEST_EXPONENT_IS_NORMAL.
12810 (saturate): New function.
12811 (toe53, toe24): Saturate on overflow if LARGEST_EXPONENT_IS_NORMAL.
12812 (make_nan): Use a saturation value instead of a NaN if
12813 LARGEST_EXPONENT_IS_NORMAL. Warn when this happens.
12814 * fp-bit.c (pack_d): Saturate on NaN, infinite or overflowing
12815 inputs if LARGEST_EXPONENT_IS_NORMAL. Represent subnormals as
12816 zero if NO_DENORMALS. Only round to nearest if !ROUND_TOWARDS_ZERO.
12817 (unpack_d): No NaNs or infinities if LARGEST_EXPONENT_IS_NORMAL.
12818 (_fpmul_parts, _fpdiv_parts): Only round to nearest if
12819 !ROUND_TOWARDS_ZERO.
12820 * doc/tm.texi (LARGEST_EXPONENT_IS_NORMAL): Document.
12821 (ROUND_TOWARDS_ZERO): Document.
12823 2002-03-11 Andreas Jaeger <aj@suse.de>
12825 * cfg.c (dump_flow_info): Remove unused variable.
12827 2002-03-11 Hans-Peter Nilsson <hp@bitrange.com>
12829 * config/mmix/mmix.c (mmix_expand_builtin_va_arg): Do all
12830 computations on trees.
12832 2002-03-10 Richard Henderson <rth@redhat.com>
12835 * reload.c (copy_replacements_1): New.
12836 (copy_replacements): Use it to recurse through the rtx.
12838 2002-03-10 Richard Henderson <rth@redhat.com>
12840 * loop.c (strength_reduce): Compute number of iterations as
12841 unsigned HOST_WIDE_INT.
12843 2002-03-10 Richard Henderson <rth@redhat.com>
12845 * sched-rgn.c (add_branch_dependences): Don't allow insns that throw
12846 to move away from the end of the block.
12848 2002-03-10 Neil Booth <neil@daikokuya.demon.co.uk>
12850 PR preprocessor/5899
12851 * cppinit.c (init_dependency_output): Don't ignore -dM etc.
12853 2002-03-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12855 * mbchar.c (JIS_state_table, JIS_action_table): Const-ify.
12857 * attribs.c (decl_attributes): Fix signed/unsigned warning.
12859 2002-03-10 Hans-Peter Nilsson <hp@bitrange.com>
12861 * config/mmix/mmix.c: Improve comments.
12862 (mmix_target_asm_function_prologue): Drop variable
12863 empty_stack_frame. Don't allocate unused slot above fp.
12864 (mmix_target_asm_function_epilogue): Mirror prologue changes.
12865 * config/mmix/mmix.h (MMIX_GNU_ABI_REG_ALLOC_ORDER): Don't have
12866 brace in first column.
12867 (enum reg_class): Ditto.
12868 (FIRST_PARM_OFFSET): Now 0.
12869 (USER_LABEL_PREFIX): Remove #if 0:d definition.
12871 2002-03-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12873 * combine.c (make_extraction): Fix error in last change.
12875 2002-03-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12877 * c4x.c (c4x_fp_reglist): Const-ify.
12878 * cris.c (cris_print_operand): Likewise.
12879 * i386.c (ix86_va_arg): Likewise.
12880 * ia64/unwind-ia64.c (unw_decode_table): Likewise.
12881 * m32r.c (m32r_hard_regno_mode_ok): Likewise.
12882 * m32r.h (m32r_hard_regno_mode_ok): Likewise.
12883 * mcore.c (regno_reg_class, mcore_unique_section): Likewise.
12884 * mcore.h (regno_reg_class): Likewise.
12885 * mips.c (gen_int_relational): Likewise.
12886 * ns32k.c (ns32k_reg_class_contents, regclass_map): Likewise.
12887 * ns32k.h (ns32k_reg_class_contents, regclass_map): Likewise.
12888 * pdp11.c (move_costs): Likewise.
12889 * pj.h (INITIALIZE_TRAMPOLINE): Likewise.
12890 * s390.c (s390_branch_condition_mnemonic, regclass_map):
12892 * s390.h (regclass_map): Likewise.
12893 * sh.c (shift_amounts): Likewise.
12894 * sh.md (rotlsi3): Likewise.
12896 2002-03-09 Geoffrey Keating <geoffk@redhat.com>
12898 * config/rs6000/rs6000.md (ne0+4): Add extra CLOBBER.
12899 (ne0+5): Use new clobber to generate proper shift pattern.
12900 Patch by Michael Matz <matz@kde.org>.
12902 2002-03-09 Andreas Schwab <schwab@suse.de>
12904 * gcc.c (validate_all_switches): Also handle `%W{...}'.
12906 2002-03-09 Geoffrey Keating <geoffk@redhat.com>
12908 * config/rs6000/sysv4.h (BIGGEST_ALIGNMENT): Don't define.
12910 2002-03-09 Jakub Jelinek <jakub@redhat.com>
12913 * expr.c (highest_pow2_factor): Check TREE_INT_CST_LOW
12914 even for non-representable constants.
12916 Sat Mar 9 07:20:01 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
12918 * emit-rtl.c (copy_most_rtx): Accept EXPR_LIST for may_share.
12919 * function.c (fixup_var_refs): Add MAY_SHARE parameter.
12920 (fixup_var_refs_insns, fixup_var_refs_insns_with_has): Likewise.
12921 (fixup_var_refs_insn, fixup_var_refs_1): Likewise.
12922 (pop_function_context): Compute MAY_SHARE parameter for
12924 (fixup_var_refs_1, case MEM): Pass MAY_SHARE to copy_most_rtx, not VAR.
12925 (gen_mem_addressof): Call fixup_var_refs with new parm.
12927 * combine.c (make_extraction): Don't make extension of CONST_INT.
12929 2002-03-09 Alexandre Oliva <aoliva@redhat.com>
12931 * config/mips/mips.c (function_arg_pass_by_reference): Force to 0
12932 in o32 and o64 ABIs.
12933 * config/mips/abi64.h (MUST_PASS_IN_STACK): Define as in expr.h,
12934 but getting fixed-size structs passed in registers regardless of
12935 padding in o32 and o64 ABIs.
12937 * config/mips/mips.c (mips_va_arg): Apply big-endianness address
12938 offset before loading address of argument passed by transparent
12941 2002-03-08 John David Anglin <dave@hiauly1.hia.nrc.ca>
12943 * t-pa64 (LIB1ASMFUNCS, LIB1ASMSRC): Delete.
12945 2002-03-09 Alexandre Oliva <aoliva@redhat.com>
12947 * config/mips/mips.c (mips_expand_prologue): Set regno of vararg
12948 marker such that registers after it are saved.
12950 2002-03-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12952 * sparc.c (arith_4096_operand): Fix error in last change.
12954 2002-03-08 Alexandre Oliva <aoliva@redhat.com>
12956 * config/mips/mips.h (SUBTARGET_CPP_SIZE_SPEC): Remove duplicate
12957 defaults for MEABI.
12959 2002-03-08 Aldy Hernandez <aldyh@redhat.com>
12961 * config/rs6000/rs6000.c (rs6000_va_arg): Fix alignment for
12964 2002-03-08 Aldy Hernandez <aldyh@redhat.com>
12966 * config/rs6000/sysv4.h (BIGGEST_ALIGNMENT): Change for altivec.
12968 Fri Mar 8 21:27:49 CET 2002 Jan Hubicka <jh@suse.cz>
12970 * cfgrtl.c (purge_dead_edges): Set BB_DRITY flags if edge has been
12971 removed; fix return value.
12972 * combine.c (combine_instructions): Dirtify blocks where we failed to
12973 update liveness; purge dead edges; use update_life_info_in_dirty_blocks.
12974 * toplev.c (rest_of_compilation): Do not purge_dead_edges after combine.
12976 2002-03-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12978 * gcse.c (insert_insn_end_bb): Fix typo in last change.
12980 Fri Mar 8 21:08:52 CET 2002 Jan Hubicka <jh@suse.cz>
12982 * recog.c (peephole2_optimize): Re-distribute EH edges.
12984 2002-03-08 Neil Booth <neil@daikokuya.demon.co.uk>
12986 * expr.c (expand_expr): Use unsave lang hook.
12987 * langhooks-def.h (LANG_HOOKS_UNSAVE): New.
12988 (LANG_HOOKS_INITIALIZER): Update.
12989 * langhooks.h (struct lang_hooks): New hook unsave.
12990 * tree.c (lang_unsave, lang_unsave_expr_now): Remove.
12991 (unsave_expr_1): Remove unused lang_unsave_expr_now.
12992 (unsave_expr_now_r): Rename lhd_unsave. Update. Return input.
12993 (unsave_expr_now): Remove.
12994 * tree.h (unsave_expr_now, lang_unsave,
12995 lang_unsave_expr_now): Remove.
12998 2002-03-08 Andreas Jaeger <aj@suse.de>
13000 * flow.c (propagate_block_delete_insn): Remove unused variable.
13002 2002-03-08 Kazu Hirata <kazu@hxi.com>
13004 * config/h8300/h8300.c (h8300_adjust_insn_length): Tighten
13005 insn length for memory load/store.
13007 2002-03-08 Craig Rodrigues <rodrigc@gcc.gnu.org>
13009 * doc/install.texi (--with-libiconv-prefix): Document.
13011 2002-03-08 Michael Y. Brukman <myb2@cornell.edu>
13013 * doc/sourcebuild.texi: Fix typo.
13015 2002-03-08 Jakub Jelinek <jakub@redhat.com>
13018 * builtins.c (std_expand_builtin_va_arg): Do all computations on
13021 Fri Mar 8 06:48:45 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
13023 * rtl.c (copy_most_rtx): Move from here ...
13024 * emit-rtl.c (copy_most_rtx): ... to here.
13026 2002-03-08 Alexandre Oliva <aoliva@redhat.com>
13028 * config/mips/mips.h (LONG_MAX_SPEC): Rewrite, along with
13029 SUBTARGET_CPP_SIZE_SPEC.
13030 * config/mips/abi64.h (LONG_MAX_SPEC): Delete.
13032 * config/mips/mips.h (SUBTARGET_CPP_SIZE_SPEC): Simplify.
13034 2002-03-07 Matt Hiller <hiller@redhat.com>
13036 * gensupport.c (first_dir_md_include): Renamed from include;
13037 change all references.
13038 (last_dir_md_include): Renamed from last_include; change all
13040 (init_md_reader): Unconditionally initialize base_dir whether or
13041 not filename is a relative path.
13043 2002-03-07 Alexandre Oliva <aoliva@redhat.com>
13045 * config/fp-bit.c (_unord_f2): Compile it in even if
13046 US_SOFTWARE_GOFAST is enabled.
13048 * config/gofast.h (GOFAST_RENAME_LIBCALLS): Set gt and ge as
13049 NULL_RTX. Set all HFmode operations as NULL_RTX.
13050 * optabs.c (prepare_float_lib_cmp) <GT, GE, LT, LE>: If libfunc is
13051 NULL_RTX, try reversing the comparison and the operands.
13053 2002-03-06 Ulrich Weigand <uweigand@de.ibm.com>
13055 * genextract.c (walk_rtx): Recurse into MATCH_PAR_DUP.
13056 genoutput.c (scan_operands): Recurse into MATCH_PAR_DUP
13059 Thu Mar 7 16:54:10 CET 2002 Jan Hubicka <jh@suse.cz>
13061 * reload1.c (reload_cse_delete_noop_set): Purge dead edges.
13063 Thu Mar 7 16:33:54 CET 2002 Jan Hubicka <jh@suse.cz>
13065 * basic-block.h (fixup_abnormal_edges): Declare.
13066 * reload1.c (fixup_abnormal_edges): New function.
13067 * reg-stack.c (convert_regs): Use it.
13069 * gcse.c (insert_insn_end_bb): Handle trapping insns.
13071 * gcse.c (hash_scan_set): Refuse instructions with EH edges.
13073 2002-03-07 Richard Sandiford <rsandifo@redhat.com>
13075 * defaults.h (MODE_HAS_NANS, MODE_HAS_INFINITIES): New.
13076 (MODE_HAS_SIGNED_ZEROS, MODE_HAS_SIGN_DEPENDENT_ROUNDING): New.
13077 * flags.h (HONOR_NANS, HONOR_INFINITIES, HONOR_SIGNED_ZEROS): New.
13078 (HONOR_SIGN_DEPENDENT_ROUNDING): New.
13079 * builtins.c (expand_builtin_mathfn): Use HONOR_NANS.
13080 * c-common.c (truthvalue_conversion): Reduce x - y != 0 to x != y
13081 unless x and y could be infinite.
13082 (expand_unordered_cmp): New, mostly split from expand_tree_builtin.
13083 Check that the common type of both arguments is a real, even for
13084 targets without unordered comparisons. Allow an integer argument
13085 to be compared against a real.
13086 (expand_tree_builtin): Use expand_unordered_cmp.
13087 * combine.c (combine_simplify_rtx): Use the new HONOR_... macros.
13088 * cse.c (fold_rtx): Likewise. Fix indentation.
13089 * fold-const.c (fold_real_zero_addition_p): New.
13090 (fold): Use it, and the new HONOR_... macros.
13091 * ifcvt.c (noce_try_minmax): Use the new HONOR_... macros.
13092 * jump.c (reversed_comparison_code_parts): After searching for
13093 the true comparison mode, use HONOR_NANS to decide whether it
13094 can be safely reversed.
13095 (reverse_condition_maybe_unordered): Remove IEEE check.
13096 * simplify-rtx.c (simplify_binary_operation): Use the new macros
13097 to decide which simplifications are valid. Allow the following
13098 simplifications for IEEE: (-a + b) to (b - a), (a + -b) to (a - b),
13099 and (a - -b) to (a + b).
13100 (simplify_relational_operation): Use HONOR_NANS.
13101 * doc/tm.texi: Document the MODE_HAS_... macros.
13103 2002-03-07 Richard Earnshaw <rearnsha@arm.com>
13105 * combine.c (simplify_comparison): If simplifying a logical shift
13106 right and compare with constant, force the comparison to unsigned.
13108 2002-03-07 Aldy Hernandez <aldyh@redhat.com>
13110 * doc/invoke.texi: Add documentation for -mabi=no-altivec.
13112 * config/rs6000/rs6000.c (rs6000_parse_abi_options): Add
13114 (alt_reg_names): Remove % for vrsave.
13116 2002-03-06 Richard Henderson <rth@redhat.com>
13118 PR optimization/5844
13119 * genemit.c (gen_exp): New argument used. Invoke copy_rtx
13120 if used indicates we've already emitted one copy of an operand.
13121 (gen_insn, gen_expand, output_add_clobbers): Supply a null used.
13122 (gen_split): Supply a non-null used.
13124 2002-03-06 Ulrich Weigand <uweigand@de.ibm.com>
13126 * reload1.c (reload): Unshare all rtl after reload is done.
13128 * simplify-rtx.c (simplify_plus_minus): Do not abort,
13129 but simply fail if the expression is too complex to simplify.
13130 (simplify_gen_binary): Handle simplify_plus_minus failures.
13132 Wed Mar 6 20:32:09 CET 2002 Jan Hubicka <jh@suse.cz>
13134 * toplev.c (rest_of_compilation): Do jump threading before SSA path;
13135 consistently call delete_trivially_dead_insns after CSE and GCSE;
13136 fix DFI_life dumping; do jump threading after liveness; do crossjumping
13137 after liveness2; update comment in last crossjumping.
13138 * cfgcleanup.c (try_crossjump_to_edge): Dirtify block.
13140 Wed Mar 6 12:27:10 2002 Jeffrey A Law (law@redhat.com)
13142 * ssa-ccp.c (ssa_fast_dce): Update the DF def-use chains
13143 after completing fast dead code elimination.
13145 * m68k.h (CONST_COSTS): Lower cost of 0.0 when used inside a
13148 2002-03-06 Phil Edwards <pme@gcc.gnu.org>
13150 * version.c: Fix misplaced leading blanks on first line.
13152 Wed Mar 6 19:08:03 CET 2002 Jan Hubicka <jh@suse.cz>
13154 * cfgrtl.c (verify_flow_info): Accept RESX as EH edge source.
13156 Wed Mar 6 18:14:43 CET 2002 Jan Hubicka <jh@suse.cz>
13158 * cfgcleanup.c (mentions_nonequal_regs): New function.
13159 (thread_jump): Use it.
13160 * toplev.c (rest_of_compilation): Run jump threading after
13163 2002-03-06 Jakub Jelinek <jakub@redhat.com>
13165 * ssa-ccp.c (ssa_ccp_substitute_constants): Backout 2002-03-05
13168 Wed Mar 6 11:28:19 CET 2002 Jan Hubicka <jh@suse.cz>
13170 * predict.c (estimate_bb_frequencies): Do not reload the
13171 frequencies from notes.
13173 Wed Mar 6 10:59:39 CET 2002 Jan Hubicka <jh@suse.cz>
13175 * cfgrtl.c (delete_insn_and_edges, delete_insn_chain_and_edges): New.
13176 * rtl.h (delete_insn_and_edges, delete_insn_chain_and_edges): Declare
13178 * basic-block.h (update_life_info, update_life_info_in_dirty_blocks,
13179 delete_noop_moves): Return indeger.
13180 * flow.c (ndead): New variable.
13181 (propagate_block_delete_insn): Use delete_insn_and_edges; remove
13182 BB argument; update callers.
13183 (propagate_block_delete_libcall): Use delete_insn_chain_and_edges.
13184 (life_analysis): Do not call purge_all_dead_edges.
13185 (update_life_info): Return number of deleted insns; print statistics.
13186 (update_life_info_in_dirty_blocks): likewise.
13187 (delete_noop_moves): Use delete_insn_and_edges; print statistics;
13188 return number of insns deleted.
13190 * cse.c: Include timevar.h
13191 (delete_trivially_dead_insns): Kill preserve_basic_blocks argument;
13192 iterate until stabilizes; print statistics; return number of killed
13194 * Makefile.in: (cse.o): Add timevar.h dependency
13195 * rtl.h (delete_trivially_dead_insns): New.
13196 * timever.def: Add TV_DELETE_TRIVIALLY_DEAD timer.
13197 * toplev.c (rest_of_compilation): Update callers.
13199 * cfgcleanup.c (try_optimize_cfg): Kill blocks.
13200 (try_optimize_cfg): Do not update liveness.
13201 (cleanup-cfg): Loop until try_optimize_cfg and dead code
13202 removal stabilizes; use delete_trivially_dead_insns.
13204 * cfgrtl.c (verify_flow_info): Sanity check outgoing edges.
13206 2002-03-05 Zack Weinberg <zack@codesourcery.com>
13208 * cppmain.c (setup_callbacks): Disable #pragma and #ident
13209 callbacks when processing assembly language.
13211 2002-03-05 John David Anglin <dave@hiauly1.hia.nrc.ca>
13213 * pa.h (ASM_FILE_END): Define.
13214 * som.h (ASM_FILE_END): Delete.
13216 * pa.c (function_arg): Don't pass floats in general registers in
13217 indirect calls if TARGET_ELF32.
13219 2002-03-05 Richard Henderson <rth@redhat.com>
13221 * config/i386/i386.md (floatsidf2): Conditionalize on hard-float.
13223 2002-03-05 Danny Smith <dannysmith@users.sourceforge.net>
13225 * gthr-win32.h (__GTHREAD_MUTEX_INIT_DEFAULT): Define.
13227 2002-03-05 Jakub Jelinek <jakub@redhat.com>
13229 * mklibgcc.in: Prepend a tab before .hidden, add $flags to gcc
13230 -r command line. Don't hide any symbols if not building
13233 Tue Mar 5 18:31:27 CET 2002 Jan Hubicka <jh@suse.cz>
13235 * cfg.c (dump_flow_info): Warn about profile mismatches.
13236 * cfgrtl.c (verify_flow_info): Few aditional sanity checks.
13237 (purge_dead_edges): Remove REG_BR_PROB notes on simplejumps.
13239 2002-03-05 Jakub Jelinek <jakub@redhat.com>
13241 * expmed.c (emit_store_flag): Don't test BITS_PER_WORD * 2
13242 wide volatile memory by parts.
13244 2002-03-05 Jakub Jelinek <jakub@redhat.com>
13246 * ssa-ccp.c (ssa_ccp_substitute_constants): Don't crash if def
13249 2002-03-05 Richard Henderson <rth@redhat.com>
13251 * rs6000.h (TOTAL_ALTIVEC_REGS): Fix off-by-one error.
13253 2002-03-04 Geoffrey Keating <geoffk@redhat.com>
13255 * toplev.c (documented_lang_options): Document more
13256 language-specific options.
13257 * doc/invoke.texi (Warning Options): Correct documentation for
13258 -Wno-multichar, -Wno-div-by-zero, and -Wsystem-headers.
13259 * c-decl.c (c_decode_option): Use a table to handle warning options.
13261 2002-03-05 Hans-Peter Nilsson <hp@bitrange.com>
13263 * config/mmix/mmix.h (ENCODE_SECTION_INFO): Pass on new second
13264 parameter to mmix_encode_section_info.
13265 (LINK_SPEC): Don't defsym __.MMIX.start..text if linking
13266 relocatably. Always produce ELF, not mmo if linking relocatably.
13267 * config/mmix/mmix.c (mmix_encode_section_info): If new parameter
13268 first is non-zero, don't add symbol prefix.
13269 * config/mmix/mmix-protos.h (mmix_encode_section_info): Tweak
13270 prototype accordingly.
13272 2002-03-04 Krister Walfridsson <cato@df.lth.se>
13274 * config.gcc (*-*-netbsd*): Add t-slibgcc-elf-ver to tmake_file.
13276 2002-03-05 Joseph S. Myers <jsm28@cam.ac.uk>
13278 * configure.in: Increase required makeinfo version to 4.1.
13279 * configure: Regenerate.
13281 2002-03-04 Geoffrey Keating <geoffk@redhat.com>
13283 * .cvsignore: Remove *.info* and genrtl*; these files are generated
13286 2002-03-04 Joseph S. Myers <jsm28@cam.ac.uk>
13288 * doc/include/texinfo.tex: Update to version 2002-03-01.06.
13289 * doc/invoke.texi: Fix @math uses.
13291 Mon Mar 4 15:33:54 CET 2002 Jan Hubicka <jh@suse.cz>
13293 * toplev.c (rest_of_compilation): Cleanup CFG after dead jumptables
13296 2002-03-03 Aldy Hernandez <aldyh@redhat.com>
13298 * config.gcc (powerpc-*-eabialtivec*): Use t-ppcendian.
13299 (powerpc-*-eabisimaltivec*): Same.
13301 * config/rs6000/t-ppcendian: New.
13303 2002-03-04 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
13305 * c4x-protos.h, c4x.h, c4x.c, c4x.md: Add new functions
13306 nonimmediate_src_operand and nonimmediate_lsrc_operand to
13307 disallow ZERO_EXTEND with CONST_INT or CONST_DOUBLE.
13309 2002-03-03 Richard Henderson <rth@redhat.com>
13311 * toplev.c (rest_of_decl_compilation): Revert last two changes.
13313 2002-03-03 Zack Weinberg <zack@codesourcery.com>
13315 * emit-rtl.c, final.c, fold-const.c, gengenrtl.c, optabs.c,
13316 print-tree.c, real.c, real.h, recog.c, rtl.c, simplify-rtx.c,
13317 tree.c, config/m68k/m68k.c:
13318 Remove all #ifndef REAL_ARITHMETIC blocks, make all #ifdef
13319 REAL_ARITHMETIC blocks unconditional. Delete some further
13320 #ifdef blocks predicated on REAL_ARITHMETIC.
13321 * flags.h, toplev.c: Delete remaining references to
13322 flag_pretend_float.
13324 * doc/invoke.texi: Remove documentation of -fpretend-float.
13325 * doc/tm.texi: Describe the various REAL_* macros as provided by
13326 real.h, not by the target configuration files.
13328 * config/alpha/alpha.h, config/alpha/unicosmk.h, config/arm/arm.h,
13329 config/avr/avr.h, config/c4x/c4x.h, config/convex/convex.h,
13330 config/cris/cris.h, config/d30v/d30v.h, config/dsp16xx/dsp16xx.h,
13331 config/h8300/h8300.h, config/i370/i370.h, config/i386/i386.h,
13332 config/i386/osf1elf.h, config/i960/i960.h, config/ia64/ia64.h,
13333 config/m32r/m32r.h, config/m68hc11/m68hc11.h, config/m68k/dpx2.h,
13334 config/m68k/linux-aout.h, config/m68k/linux.h, config/m68k/m68k.h,
13335 config/m68k/sun3.h, config/m68k/vxm68k.h, config/mcore/mcore.h,
13336 config/mips/mips.h, config/mmix/mmix.h, config/mn10200/mn10200.h,
13337 config/mn10300/mn10300.h, config/pa/pa.h, config/pj/pj.h,
13338 config/rs6000/rs6000.h, config/s390/s390.h, config/sh/sh.h,
13339 config/sparc/freebsd.h, config/sparc/linux.h, config/sparc/linux64.h,
13340 config/sparc/sol2.h, config/sparc/sparc.h, config/sparc/vxsim.h,
13341 config/stormy16/stormy16.h, config/v850/v850.h, config/vax/vax.h,
13342 config/xtensa/xtensa.h:
13343 Do not define, undefine, or mention in comments any of
13344 REAL_ARITHMETIC, REAL_VALUE_ATOF, REAL_VALUE_HTOF,
13345 REAL_VALUE_ISNAN, REAL_VALUE_ISINF,
13346 REAL_VALUE_TO_TARGET_SINGLE, REAL_VALUE_TO_TARGET_DOUBLE,
13347 REAL_VALUE_TO_TARGET_LONG_DOUBLE, REAL_VALUE_TO_DECIMAL,
13348 REAL_VALUE_TYPE, REAL_VALUES_EQUAL, REAL_VALUES_LESS,
13349 REAL_VALUE_LDEXP, REAL_VALUE_FIX, REAL_VALUE_UNSIGNED_FIX,
13350 REAL_VALUE_RNDZINT, REAL_VALUE_UNSIGNED_RNDZINT,
13351 REAL_INFINITY, REAL_VALUE_NEGATE, REAL_VALUE_TRUNCATE,
13352 REAL_VALUE_TO_INT, or REAL_VALUE_FROM_INT.
13354 2002-03-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13356 * 1750a.h, a29k.h, alpha.h, arc.h, arm.h, avr.h, c4x.h, clipper.h,
13357 convex.h, cris.h, d30v.h, dsp16xx.h, elxsi.h, fr30.h, h8300.h,
13358 i370.h, i386.h, i860.h, i960.h, ia64.h, m32r.h, m68hc11.h, m68k.h,
13359 m88k.h, mcore.h, mips.h, mmix.h, mn10200.h, mn10300.h, ns32k.h,
13360 pa.h, pdp11.h, pj.h, romp.h, rs6000.h, s390.h, sh.h, sparc.h,
13361 stormy16.h, v850.h, vax.h, we32k.h, xtensa.h (BITS_PER_WORD):
13363 * defaults.h (BITS_PER_WORD): Define.
13364 * doc/tm.texi (BITS_PER_WORD): Document default value.
13366 * 1750a.h, avr.h, convex.h, d30v.h, dsp16xx.h, fr30.h, ia64.h,
13367 m68hc11.h, m88k.h, mips.h, pdp11.h, rs6000.h, sparc.c,
13368 stormy16.h, xtensa.h, vmsdbgout.c (CHAR_TYPE_SIZE): Delete.
13370 2002-03-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13372 * attribs.c (init_attributes, decl_attributes): Use ARRAY_SIZE in
13373 lieu of explicit sizeof/sizeof.
13374 * i386.c (override_options, ix86_init_mmx_sse_builtins,
13375 ix86_expand_builtin): Likewise.
13376 * mips.c (mips_add_gc_roots): Likewise.
13377 * mmix.c (mmix_output_condition): Likewise.
13378 * rs6000.c (rs6000_override_options, altivec_expand_builtin,
13379 altivec_init_builtins): Likewise.
13380 * sparc.c (mark_ultrasparc_pipeline_state): Likewise.
13381 * cppexp.c (Nsuff, parse_number): Likewise.
13382 * cppinit.c (builtin_array_end): Likewise.
13383 * gcc.c (n_default_compilers, process_command): Likewise.
13384 * genpreds.c (output_predicate_decls): Likewise.
13385 * ggc-page.c (NUM_EXTRA_ORDERS): Likewise.
13386 * lcm.c (N_ENTITIES): Likewise.
13387 * stor-layout.c (set_sizetype): Likewise.
13389 2002-03-03 Richard Henderson <rth@redhat.com>
13391 * toplev.c (rest_of_decl_compilation): Do not invoke make_decl_rtl
13392 for types or labels.
13394 2002-03-03 Richard Henderson <rth@redhat.com>
13396 * c-decl.c (start_decl): Initialized variables are not common.
13398 2002-03-02 Per Bothner <per@bothner.com>
13400 * gcc.c (option_map): Suport new --bootclasspath option.
13401 --CLASSPATH is now just an alias for --classpath.
13403 2002-03-02 Richard Henderson <rth@redhat.com>
13405 * config/i386/i386.h (ix86_expand_prologue): Do not emit pic register
13406 load if "internal" visibility.
13407 * doc/extend.texi: Document visibility meanings.
13409 2002-03-02 Richard Henderson <rth@redhat.com>
13411 * config/i386/i386.h (ENCODE_SECTION_INFO): MODULE_LOCAL_P applies
13412 to functions as well.
13414 2002-03-02 Richard Henderson <rth@redhat.com>
13416 * attribs.c (handle_alias_attribute): Don't call assemble_alias.
13417 (handle_visibility_attribute): Don't call assemble_visibility.
13418 * toplev.c (rest_of_decl_compilation): Invoke make_decl_rtl even
13419 without asmspec. Invoke assemble_alias when needed.
13420 * varasm.c (maybe_assemble_visibility): New.
13421 (assemble_start_function, assemble_variable, assemble_alias): Use it.
13423 2002-03-02 Richard Henderson <rth@redhat.com>
13425 * varasm.c (make_decl_rtl): Remove call to REDO_SECTION_INFO_P;
13426 invoke ENCODE_SECTION_INFO with first call flag.
13428 * config/darwin-protos.h, config/darwin.c, config/darwin.h,
13429 config/a29k/a29k.h, config/alpha/alpha-protos.h, config/alpha/alpha.c,
13430 config/alpha/alpha.h, config/arc/arc.h, config/arm/arm-protos.h,
13431 config/arm/arm.h, config/arm/pe.c, config/arm/pe.h,
13432 config/avr/avr-protos.h, config/avr/avr.c, config/avr/avr.h,
13433 config/c4x/c4x-protos.h, config/c4x/c4x.c, config/c4x/c4x.h,
13434 config/cris/cris-protos.h, config/cris/cris.c, config/cris/cris.h,
13435 config/d30v/d30v.h, config/h8300/h8300.h, config/i370/i370.h,
13436 config/i386/cygwin.h, config/i386/i386-interix.h, config/i386/i386.h,
13437 config/i386/osfrose.h, config/i386/win32.h, config/i386/winnt.c,
13438 config/ia64/ia64-protos.h, config/ia64/ia64.c, config/ia64/ia64.h,
13439 config/m32r/m32r-protos.h, config/m32r/m32r.c, config/m32r/m32r.h,
13440 config/m68hc11/m68hc11-protos.h, config/m68hc11/m68hc11.c,
13441 config/m68hc11/m68hc11.h, config/m88k/m88k.h,
13442 config/mcore/mcore-protos.h, config/mcore/mcore.c,
13443 config/mcore/mcore.h, config/mips/mips.h, config/ns32k/ns32k.h,
13444 config/pa/pa.h, config/romp/romp.h, config/rs6000/linux64.h,
13445 config/rs6000/rs6000-protos.h, config/rs6000/rs6000.c,
13446 config/rs6000/sysv4.h, config/rs6000/xcoff.h, config/s390/s390.h,
13447 config/sh/sh.h, config/sparc/sparc.h,
13448 config/stormy16/stormy16-protos.h, config/stormy16/stormy16.c,
13449 config/stormy16/stormy16.h, config/v850/v850.h, config/vax/vms.h,
13450 config/xtensa/xtensa.h, doc/tm.texi: ENCODE_SECTION_INFO now takes
13451 FIRST argument. As needed, examine it and do nothing.
13453 * config/darwin.h, config/alpha/alpha.h, config/arm/pe.h,
13454 config/i386/cygwin.h, config/ia64/ia64.h, config/m68hc11/m68hc11.h,
13455 config/mcore/mcore.h: Remove REDO_SECTION_INFO_P.
13457 * config/arm/t-pe (pe.o): Add dependencies.
13459 2002-03-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13461 * a29k.h, alpha.h, arc.h, arm.h, avr.h, clipper.h, convex.h,
13462 cris.h, d30v.h, elxsi.h, fr30.h, h8300.h, i370.h, i386.h, i860.h,
13463 i960.h, ia64.h, m32r.h, m68hc11.h, m68k.h, m88k.h, mcore.h,
13464 mips.h, mmix.h, mn10200.h, mn10300.h, ns32k.h, pa.h, pdp11.h,
13465 pj.h, romp.h, rs6000.h, s390.h, sh.h, sparc.h, stormy16.h, v850.h,
13466 vax.h, we32k.h, xtensa.h: (BITS_PER_UNIT): Delete.
13467 * defaults.h (BITS_PER_UNIT): Define.
13468 * doc/tm.texi (BITS_PER_UNIT): Document default value.
13470 2002-03-02 Kazu Hirata <kazu@hxi.com>
13472 * config/h8300/h8300-protos.h: Add a prototype for
13473 compute_a_shift_length.
13474 * config/h8300/h8300.c (h8300_asm_insn_count): New.
13475 (compute_a_shift_length): Likewise.
13476 (h8300_adjust_insn_length): Do not adjust insn length of shift
13478 * config/h8300/h8300.md (anonymous shift patterns): Use
13479 compute_a_shift_length.
13481 Sat Mar 2 06:30:14 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
13483 * config/sparc/sparc.c (sparc_initialize_trampoline): Use
13484 trunc_int_for_mode.
13486 * emit-rtl.c (offset_address): Call update_temp_slot_address.
13488 2002-03-01 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13490 * Makefile.in (CRTSTUFF_CFLAGS): Add -fno-zero-initialized-in-bss.
13491 * doc/invoke.texi (-fno-zero-initialized-in-bss): Document.
13492 * flags.h (flag_zero_initialized_in_bss): Declare.
13493 * toplev.c (flag_zero_initialized_in_bss): New flag.
13494 (lang_independent_options): Add flag_zero_initialized_in_bss.
13495 * tree.c (initializer_zerop): New function.
13496 * tree.h (initializer_zerop): Declare.
13497 * varasm.c (assemble_variable): If we can emit bss, put zero
13498 initializers in the bss section.
13500 2002-03-02 Alan Modra <amodra@bigpond.net.au>
13502 * config/rs6000/rs6000.h (ASM_WEAKEN_DECL): AIX assembler doesn't
13503 like more than one symbol per .weak directive.
13505 2002-03-01 Richard Henderson <rth@redhat.com>
13507 * config/ia64/ia64.c (ia64_initial_elimination_offset): Do not
13508 adjust argument_pointer by pretend_args_size.
13509 (ia64_va_start): Adjust va_start address by -pretend_args_size.
13511 2002-03-01 Kazu Hirata <kazu@hxi.com>
13513 * config/h8300/h8300.c (h8300_adjust_insn_length): Clean up.
13515 Fri Mar 1 20:59:14 CET 2002 Jan Hubicka <jh@suse.cz>
13517 * toplev.c (rest_of_compilation): Delete dead jumptables before
13519 * flow.c (delete_dead_jumptables): Make global.
13520 * rtl.h (delete_dead_jumptables): Declare.
13522 2002-03-01 David Edelsohn <edelsohn@gnu.org>
13524 * config/rs6000/rs6000.h (HANDLE_PRAGMA_PACK): Delete.
13525 * config/rs6000/darwin.h (HANDLE_SYSV_PRAGMA): Define.
13526 * config/rs6000/xcoff.h (COLLECT_EXPORT_LIST): Delete.
13528 2002-03-01 Kazu Hirata <kazu@hxi.com>
13530 * config/h8300/h8300-protos.h: Fix formatting.
13531 * config/h8300/h8300.c: Likewise.
13532 * config/h8300/h8300.h: Likewise.
13534 2002-03-01 Kazu Hirata <kazu@hxi.com>
13536 * config/h8300/h8300.c (print_operand): Support 16-bit
13537 constant addresses.
13538 * config/h8300/h8300.h (TINY_CONSTANT_ADDRESS_P): New.
13540 2002-02-28 Richard Henderson <rth@redhat.com>
13542 * expmed.c (store_bit_field): Prevent generation of CONCATs;
13543 pun complex values as integers; use gen_lowpart instead of
13545 (extract_bit_field): Likewise.
13547 2002-03-01 Alan Modra <amodra@bigpond.net.au>
13548 David Edelsohn <edelsohn@gnu.org>
13550 * doc/tm.texi (ASM_WEAKEN_DECL): Document.
13551 (ASM_WEAKEN_LABEL): Mention ASM_WEAKEN_DECL.
13552 (SUPPORTS_WEAK): Likewise.
13553 * output.h (add_weak): Add tree param.
13554 * varasm.c (add_weak): Likewise. Save decl.
13555 (struct weak_syms): Add decl field.
13556 (mark_weak_decls): New function.
13557 (init_varasm_once): ggc_add_root mark_weak_decls.
13558 (assemble_start_function): Use ASM_WEAKEN_DECL.
13559 (assemble_variable): Likewise.
13560 (assemble_alias): Likewise.
13561 (declare_weak): Pass decl to add_weak.
13562 (weak_finish): Use ASM_WEAKEN_DECL. Try to find decl.
13563 (remove_from_pending_weak_list): Declare and define for
13565 * c-pragma.c (handle_pragma_weak): Adjust add_weak call.
13566 * c-pragma.h (HANDLE_PRAGMA_WEAK): Define if ASM_WEAKEN_DECL too.
13567 * defaults.h (SUPPORTS_WEAK): Likewise.
13568 * config/rs6000/linux64.h (ASM_DECLARE_FUNCTION_NAME): Don't emit
13569 .weak for code sym. Do emit .size for descriptor sym.
13570 (ASM_DECLARE_FUNCTION_SIZE): Define.
13571 * config/rs6000/rs6000.h (ASM_WEAKEN_DECL): Define.
13572 (ASM_OUTPUT_DEF_FROM_DECLS): Don't emit .weak here. Don't output
13573 .lglobl unless TARGET_XCOFF. Formatting fixes.
13574 * config/rs6000/xcoff.h (ASM_DECLARE_FUNCTION_NAME): Don't emit
13575 .weak for code sym.
13576 (HANDLE_PRAGMA_WEAK): Remove.
13577 (ASM_WEAKEN_LABEL): Remove.
13578 * config/rs6000/aix.h (HANDLE_SYSV_PRAGMA): Define.
13580 2002-03-01 Jason Merrill <jason@redhat.com>
13582 * tree.h (TARGET_EXPR_SLOT, TARGET_EXPR_INITIAL): New macros.
13583 (TARGET_EXPR_CLEANUP): New macro.
13585 2002-02-28 Steve Ellcey <sje@cup.hp.com>
13587 * doc/rtl.texi (SUBREG_PROMOTED_UNSIGNED_P): Change definition
13588 to take ptr_extend into account as third type of extension.
13589 (SUBREG_PROMOTED_UNSIGNED_SET): Definition of new macro to set bit
13590 fields used by SUBREG_PROMOTED_UNSIGNED_P.
13591 * rtl.h (SUBREG_PROMOTED_UNSIGNED_SET): New macro.
13592 (SUBREG_PROMOTED_UNSIGNED_P): Change to return -1 as well as 0 or 1.
13593 * calls.c (precompute_arguments): Use new macro.
13594 (expand_call): Ditto.
13595 * combine.c (nonzero_bits): Ditto.
13596 (record_promoted_value): Ditto.
13597 * expr.c (store_expr): Ditto.
13598 (expand_expr): Ditto.
13599 * function.c (assign_parms): Ditto.
13601 2002-02-28 Alexandre Oliva <aoliva@redhat.com>
13603 * gcc.c (init_gcc_specs): Get -static and -static-libgcc to
13604 override -shared and -shared-libgcc.
13606 2002-02-28 David O'Brien <obrien@FreeBSD.org>
13608 * config.gcc (sparc64-*-freebsd): Explicitly accept a cpu specification
13610 * config/sparc/freebsd.h: Do not use MASK_FASTER_STRUCTS. It appears
13613 2002-02-28 Richard Henderson <rth@redhat.com>
13615 * config/ia64/ia64.c (ia64_adjust_cost): All non-MM consumers have
13616 4 cycle latency from MM producers.
13617 (ia64_internal_sched_reorder): Likewise with pipeline flush.
13619 2002-02-28 Jakub Jelinek <jakub@redhat.com>
13621 * mklibgcc.in: Don't use GNU make extension.
13623 2002-02-28 Neil Booth <neil@daikokuya.demon.co.uk>
13625 * c-parse.in (STATIC): New terminal.
13626 (scspec): New non-terminal. Update productions accordingly.
13627 (program): Remove bogus ifc / end ifc.
13628 (array_declarator): Simplify production using STATIC.
13630 2002-02-28 Jim Meyering <meyering@lucent.com>
13632 * cpplex.c (cpp_parse_escape): Restore mistakenly-removed code:
13633 \a still means TARGET_BELL.
13635 2002-02-28 Richard Henderson <rth@redhat.com>
13637 * haifa-sched.c (sched_emit_insn): New.
13638 (schedule_block): Use last_scheduled_insn to track last insn.
13639 * sched-int.h (sched_emit_insn): Prototype.
13640 * config/ia64/ia64.c (last_issued): Remove.
13641 (ia64_variable_issue): Don't set it.
13642 (nop_cycles_until): Use sched_emit_insn.
13644 2002-02-28 Andrew MacLeod <amacleod@redhat.com>
13646 * config/sparc/sparc.c (sparc64_initialize_trampoline): Generate sign
13647 extended constants.
13649 2002-02-28 Kazu Hirata <kazu@hxi.com>
13651 * config/h8300/h8300.c: Fix formatting.
13652 * config/h8300/h8300.h: Likewise.
13654 2002-02-28 Marek Michalkiewicz <marekm@amelek.gda.pl>
13656 * config/avr/avr.c (avr_hard_regno_mode_ok): Do not allow r29
13657 which may overwrite the high byte of the frame pointer.
13659 2002-02-28 Bo Thorsen <bo@suse.de>
13661 * config/i386/linux64.h (LINK_SPEC): Fix 32/64 bit compilation.
13662 (STARTFILE_SPEC): Add 64 bit files.
13663 (ENDFILE_SPEC): Likewise.
13665 2002-02-28 Jason Merrill <jason@redhat.com>
13667 * c-decl.c (finish_function): Only warn about missing return
13668 statement with -Wreturn-type.
13670 Don Feb 28 11:24:30 CET 2002 Jan Hubicka <jh@suse.cz>
13672 * cfgrtl.c (purge_dead_edges): Fix handling of EH edges.
13674 * i386.h (CONDITIONAL_REGISTER_USAGE): Do not write to
13675 PIC_OFFSET_TABLE_REGNUM when it is INVALID_REGNUM
13677 Don Feb 28 11:07:36 CET 2002 Jan Hubicka <jh@suse.cz>
13679 * basic-block.h (BB_REACHABLE): Renumber.
13680 (BB_DIRTY, BB_NEW): New flags.
13681 (clear_bb_flags): Declare.
13682 (update_life_info_in_dirty_blocks): Declare.
13683 * cfg.c (clear_bb_flags): New function.
13684 * cfgrtl.c (create_basic_block_structure): Set flags to BB_NEW.
13685 * emit-rtl.c (add_insn_after, add_insn_before, remove_insn,
13686 reorder_insns, emit_insn_after): Mark block as dirty.
13687 * flow.c (update_life_info): Fix clearing of PROP_LOG_LINKS.
13688 (update_life_info_in_dirty_blocks): New function.
13689 * recog.c (apply_change_group): Dirtify block.
13691 * cse.c (cse_insn): Reorder emitting of jump insn to keep
13693 * gcse.c (delete_null_pointer_checks): Likewise.
13695 * toplev.c (dump_file_index): Move cse2 after bp,
13697 (dump_file_info): Similary.
13698 (rest_of_compilation): Avoid most of CFG rebuilds;
13699 do first if converision after null pointer checks, do cse2
13700 after branch prediction; avoid full liveness rebuild after
13701 initializing subregs.
13702 * invoke.texi (-d options): Document -du, renumber.
13704 * cfgcleanup.c (bb_flags): Remove BB_UPDATE_LIFE.
13705 (notice_new_block): Do not set BB_UPDATE_LIFE.
13706 (try_forward_edges, merge_blocks_move_predecessor_nojumps,
13707 merge_blocks_move_successor_nojumps, merge_blocks,
13708 try_crossjump_to_edge): Likewise.
13709 (try_optimize_cfg): Likewise; use update_life_info_in_dirty_blocks.
13710 * cfgrtl.c (merge_blocks_nomove): Copy b's flags to a.
13711 * ifcvt.c (SET_UPDATE_LIFE, UPDATE_LIFE): Kill.
13712 (merge_of_block): Do not use life_data_ok.
13713 (find_if_case_1): Do not use SET_UPDATE_LIFE.
13714 (if_convert): Use BB_DIRTY mechanizm to update life.
13715 * lcm.c (optimize_mode_switching): Update
13716 update_life_info_in_dirty_blocks
13718 2002-02-28 Neil Booth <neil@daikokuya.demon.co.uk>
13720 * Makefile.in (integrate.o): Update.
13721 * c-decl.c (copy_lang_decl): Rename.
13722 * c-lang.c (LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): Redefine.
13723 * integrate.c: Include langhooks.h.
13724 (copy_decl_for_inlining): Update to use langhook.
13725 * langhooks-def.h (lhd_do_nothing_t,
13726 LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): New.
13727 (LANG_HOOKS_INITIALIZER): Update.
13728 * langhooks.c (lhd_do_nothing_t): New.
13729 * langhooks.h (struct lang_hooks): Add dup_lang_specific_decl.
13730 * tree.h (copy_lang_decl): Remove.
13732 * objc-lang.c (LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): Redefine.
13734 2002-02-27 Andrew MacLeod <amacleod@redhat.com>
13736 * dwarf2out.c (stack_adjust_offset): Add support for POST_INC,
13737 POST_DEC, and POST_MODIFY.
13739 2002-02-27 Zack Weinberg <zack@codesourcery.com>
13741 * c-typeck.c (digest_init): Remove unused parameter; all
13744 2002-02-27 Geoffrey Keating <geoffk@redhat.com>
13746 * expmed.c (expand_shift): Correctly test for low part of a
13749 2002-02-27 Ulrich Weigand <uweigand@de.ibm.com>
13751 * config/s390/s390.c (s390_chunkify_pool): Do not confuse
13752 insn UIDs with insn addresses.
13754 2002-02-27 Zack Weinberg <zack@codesourcery.com>
13756 * c-common.c, c-common.h, c-decl.c, c-lex.c, c-parse.in,
13757 c-tree.h, c-typeck.c, cppexp.c, cpplex.c, cpplib.c, cpplib.h,
13758 cppmacro.c, objc/lang-specs.h, objc/objc-act.c,
13759 builtin-types.def, builtins.def, dwarf2out.c, dwarfout.c,
13760 gcc.c, toplev.c: Delete code implementing -traditional mode.
13762 * doc/bugreport.texi, doc/cpp.texi, doc/extend.texi,
13763 doc/invoke.texi, doc/standards.texi, doc/trouble.texi:
13764 Document removal of -traditional mode for compilation, and
13765 remove documentation only relevant to that mode.
13767 * config/nextstep.h, config/ptx4.h, config/svr4.h,
13768 config/convex/convex.h, config/d30v/d30v.h,
13769 config/i386/dgux.h, config/i386/osf1elf.h,
13770 config/i386/osfelf.h, config/i386/osfrose.h,
13771 config/i386/sco5.h, config/i386/sol2.h, config/m68k/a-ux.h,
13772 config/m68k/hp310.h, config/m88k/dgux.h,
13773 config/m88k/dguxbcs.h, config/m88k/luna.h, config/m88k/m88k.c,
13774 config/m88k/m88k.h, config/m88k/openbsd.h,
13775 config/mips/abi64.h, config/mips/osfrose.h,
13776 config/mips/svr4-5.h, config/mips/svr4-t.h,
13777 config/sparc/sol2-sld-64.h, config/sparc/sol2.h,
13778 config/stormy16/stormy16.h: Remove all references to
13779 -traditional from target specs. Delete all mention of the
13780 no-longer-necessary TRADITIONAL_RETURN_FLOAT macro. Also
13781 delete a couple of commented-out definitions of
13782 DOLLARS_IN_IDENTIFIERS, with (incorrect) commentary referring
13785 * system.h: Poison TRADITIONAL_RETURN_FLOAT.
13786 * doc/tm.texi: Remove mention of TRADITIONAL_RETURN_FLOAT macro.
13788 2002-02-27 Zack Weinberg <zack@codesourcery.com>
13790 * mklibgcc.in: Don't use \n in a line subject to
13791 interpretation by echo.
13793 2002-02-27 Graham Stott <grahams@redhat.com>
13795 * config/rs6000/rs6000.h (ASM_OUTPUT_DEF_FROM_DELC):
13798 * loop.c (prescan_loop): Handle PARALLEL.
13800 * unroll.c (loop_iterations): Return 0 if the add_val for
13803 * final.c (output_operand_lossage): Constify PFX_STR.
13805 * df.c (df_insn_refs_record): Use XEXP (x, 0) for USE.
13807 Wed Feb 27 10:45:19 CET 2002 Jan Hubicka <jh@suse.cz>
13809 * linux64.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Remove.
13810 * x86-64.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Allways define.
13812 Wed Feb 27 10:39:20 CET 2002 Jan Hubicka <jh@suse.cz>
13814 * linux64.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Define.
13816 2002-02-27 Neil Booth <neil@daikokuya.demon.co.uk>
13818 * cpplex.c (_cpp_lex_token): Handle directives in macro
13820 * cpplib.c (_cpp_handle_directive): Save and restore state
13821 if parsing macro args when entering a directive.
13822 * cppmacro.c (collect_args): No need to handle directives
13823 in macro arguments.
13824 (enter_macro_context, replace_args): Use the original macro
13825 definition in case it was redefined whilst collecting arguments.
13827 * cpp.texi: Update.
13829 2002-02-26 David Edelsohn <edelsohn@gnu.org>
13831 * config/rs6000/aix43.h (THREAD_MODEL_SPEC): Delete.
13832 * config/rs6000/aix51.h (THREAD_MODEL_SPEC): Delete.
13833 * config/rs6000/rs6000.c (rs6000_return_addr): Use efficient
13835 * config/rs6000/rs6000.md (movsi_low): Use gpc_reg_operand.
13836 (movsi_low_st, movdf_low, movdf_low_st, movsf_low, movsf_low_st): Same.
13837 (load_toc_v4_PIC_2): Same.
13839 2002-02-26 Alan Modra <amodra@bigpond.net.au>
13841 * config/rs6000/rs6000.md (load_toc_aix_di): Handle TARGET_RELOCATABLE.
13843 2002-02-26 Richard Henderson <rth@redhat.com>
13845 * config/alpha/alpha.md (ashldi_se): Re-enable.
13847 2002-02-26 Richard Henderson <rth@redhat.com>
13849 * config/alpha/alpha.c (alpha_encode_section_info): Examine
13850 MODULE_LOCAL_P; improve commentary.
13852 2002-02-26 Zack Weinberg <zack@codesourcery.com>
13854 * doc/cpp.texi: Clarify documentation of relationship between
13855 #line and #include.
13857 2002-02-26 Kazu Hirata <kazu@hxi.com>
13859 * config/h8300/h8300-protos.h: Update the prototype for
13860 compute_logical_op_length. Add the prototype for
13861 compute_logical_op_cc.
13862 * config/h8300/h8300.c (compute_logical_op_length): Figure out
13863 code from operands.
13864 (compute_logical_op_cc): New.
13865 * config/h8300/h8300.md: Combine all the logical op patterns
13866 in HImode and SImode. Use compute_logical_op_cc.
13868 2002-02-26 Kelley Cook <kelleycook@comcast.net>
13870 * config/i386/i386.c (print_operand): Don't append ATT-style
13871 length suffixs to x87 opcodes when in Intel mode.
13873 2002-02-26 Ryan T. Sammartino <ryants@shaw.ca>
13875 * emit-rtl.c (gen_const_vector_0): Remove TYPE argument.
13876 (init_emit_once): Update calls.
13877 * fixinc/gnu-regex.c (_GNU_SOURCE): Remove.
13878 (init_syntax_once): Prototype.
13880 2002-02-26 John David Anglin <dave@hiauly1.hia.nrc.ca>
13882 * pa-linux.h (LIB_SPEC): Update definition.
13883 * pa32-linux.h (LINK_COMMAND_SPEC): Delete.
13885 2002-02-26 Richard Henderson <rth@redhat.com>
13887 * config/ia64/ia64.c (nop_cycles_until): Do init_insn_group_barriers
13888 if we emitted a stop bit.
13890 2002-02-26 Jakub Jelinek <jakub@redhat.com>
13892 * configure.in (libgcc_visibility): Substitute.
13893 * configure: Rebuilt.
13894 * mklibgcc.in: If libgcc_visibility = yes, make libgcc.a global
13895 defined symbols .hidden.
13897 2002-02-26 Jakub Jelinek <jakub@redhat.com>
13899 * attribs.c (c_common_attribute_table): Add visibility.
13900 (handle_visibility_attribute): New function.
13901 * varasm.c (assemble_visibility): New function.
13902 * output.h (assemble_visibility): Add prototype.
13903 * tree.h (MODULE_LOCAL_P): Define.
13904 * crtstuff.c (__dso_handle): Use visibility attribute.
13905 * config/i386/i386.h (ENCODE_SECTION_INFO): Set SYMBOL_REF_FLAG
13906 for MODULE_LOCAL_P symbols too.
13907 * config/ia64/ia64.c (ia64_encode_section_info): Handle
13908 MODULE_LOCAL_P symbols the same way as local symbols.
13909 Add SDATA_NAME_FLAG_CHAR even if decl was explicitely forced
13910 into .sdata/.sbss by the user.
13911 * doc/extend.texi (Function Attributes): Document visibility
13914 2002-02-26 Jakub Jelinek <jakub@redhat.com>
13917 * dwarf2out.c (rtl_for_decl_location): Return CONST_STRING for
13918 STRING_CST initializer spanning the whole variable without
13920 If expand_expr returned MEM, don't use it.
13922 2002-02-26 Alexandre Oliva <aoliva@redhat.com>
13924 * dwarf2out.c (gen_inlined_subroutine_die): If block is abstract,
13925 generate a die for the lexical block.
13927 2002-02-26 Kazu Hirata <kazu@hxi.com>
13929 * config/h8300/h8300-protos.h: Add a prototype for
13930 compute_logical_op_length.
13931 * config/h8300/h8300.c (compute_logical_op_length): New.
13932 * config/h8300/h8300.md (anonymous logical patterns): Use
13933 compute_logical_op_length for length.
13935 2002-02-26 Aldy Hernandez <aldyh@redhat.com>
13937 * dwarf2out.c (modified_type_die): Do not call type_main_variant
13939 (gen_type_die): Same.
13941 * attribs.c (handle_vector_size_attribute): Set debug information.
13943 2002-02-26 Daniel Egger <degger@fhm.edu>
13945 * config/rs6000/rs6000.md: Swap define_insn attributes to
13946 fix incorrect generation of merge high instructions instead
13949 2002-02-26 Aldy Hernandez <aldyh@redhat.com>
13951 * c-typeck.c (really_start_incremental_init): Use
13952 bitsize_zero_node for vectors.
13954 2002-02-26 Aldy Hernandez <aldyh@redhat.com>
13956 * config/rs6000/rs6000.md (get_vrsave_internal): Fix typo.
13957 ("*set_vrsave_internal"): Same.
13959 2002-02-25 Richard Henderson <rth@redhat.com>
13961 * expr.c (expand_expr) [MULT_EXPR]: Do not apply distributive law
13962 in EXPAND_SUM case. Use host_integerp/tree_low_cst.
13964 2002-02-25 Jakub Jelinek <jakub@redhat.com>
13967 * config/i386/i386.c (ix86_return_pops_args): Only pop
13968 fake structure return argument if it was passed on the stack.
13970 2002-02-25 Jason Merrill <jason@redhat.com>
13972 * attribs.c (decl_attributes): Also re-layout PARM_DECL and
13975 2002-02-25 Alexandre Oliva <aoliva@redhat.com>
13977 * gcc.c (init_gcc_specs): Get -shared-libgcc along with -shared to
13978 link with shared_name only.
13979 * doc/invoke.texi (Link Options): Document new behavior.
13981 2002-02-25 Aldy Hernandez <aldyh@redhat.com>
13983 * c-typeck.c (push_init_level): Handle vectors.
13985 2002-02-25 Alexandre Oliva <aoliva@redhat.com>
13987 * config/sparc/sparc.c (const64_high_operand): Zero-extend
13988 operands of SPARC_SETHI_P.
13989 (input_operand): Likewise.
13990 (sparc_emit_set_const32): Likewise.
13991 * config/sparc/sparc.h (SPARC_SETHI_P): Disregard TARGET_ARCH64.
13992 (SPARC_SETHI32_P): Zero-extend operand from 32 bits.
13993 (CONST_OK_FOR_LETTER_P): Use SETHI32 for `K'. Add `N' as SETHI.
13994 * config/sparc/sparc.md (movdi_insn_sp64_novis): Use `N'.
13995 (movdi_insn_sp64_vis): Likewise.
13996 (movdi split, movdf split): Use SETHI32.
13997 * doc/md.texi: Document SPARC constraints L, M and N.
13999 2002-02-25 Aldy Hernandez <aldyh@redhat.com>
14001 * config/rs6000/rs6000.md ("get_vrsave_internal"): New.
14002 ("*set_vrsave_internal"): use mfspr for Darwin.
14004 * config/rs6000/rs6000.c (rs6000_emit_prologue): Call
14005 gen_get_vrsave_internal.
14007 Sun Feb 24 16:38:56 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
14009 * optabs.c (widen_operand): Properly handle CONST_INT for NO_EXTEND.
14011 2002-02-24 Neil Booth <neil@daikokuya.demon.co.uk>
14013 * cpplex.c (cpp_interpret_charconst): Get signedness or
14014 otherwise of wide character constants correct.
14015 * cppexp.c (lex): Get signedness of wide charconsts correct.
14017 Sun Feb 24 07:41:31 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
14019 * optabs.c (widen_operand): Only call convert_modes for
14020 promoted SUBREG if signedness matches.
14021 * config/alpha/alpha.md (*addsi_se2, *subsi_se2): New patterns.
14023 2002-02-23 Neil Booth <neil@daikokuya.demon.co.uk>
14025 * cpplib.c (glue_header_name): Use local buffer to build up
14028 2002-02-23 Neil Booth <neil@daikokuya.demon.co.uk>
14030 * doc/cpp.texi, doc/invoke.texi: Update documentation for -MM.
14032 2002-02-23 Kazu Hirata <kazu@hxi.com>
14034 * config/h8300/h8300.c (output_simode_bld): Handle H8/300 and
14035 H8/300[HS] separately.
14036 * config/h8300/h8300.md: Remove the early clobber constraint
14037 from bit field patterns.
14039 2002-02-23 Kazu Hirata <kazu@hxi.com>
14041 * config/h8300/h8300.md (mulqihi3): Tighten predicates to
14043 (mulhisi3): Likewise.
14044 (umulqisi3): Likewise.
14045 (umulhisi3): Likewise.
14047 2002-02-23 Neil Booth <neil@daikokuya.demon.co.uk>
14049 * cppinit.c (output_deps): Correct test for stdout output.
14050 (init_dependency_output): Cure warning.
14052 Sat Feb 23 08:42:47 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
14054 * expr.c (store_expr): When converting expression to promoted
14055 equivalent type, allow using SUBREG_REG of TARGET as the target
14056 of the expansion of EXP.
14057 * loop.c (basic_induction_var, case SUBREG): Always look inside.
14058 * config/alpha/alpha.c (rtx_equiv_function_matters): Delete decl.
14059 (alpha_emit_set_const): Handle SImode when can't make new pseudos.
14060 (alpha_emit_set_const_1, alpha_sa_mask): Use no_new_pseudos.
14061 * config/alpha/alpha.md (addsi3, subsi3): Don't use if optimizing.
14063 2002-02-23 Joseph S. Myers <jsm28@cam.ac.uk>
14065 * doc/contribute.texi, doc/extend.texi, doc/install.texi,
14066 doc/invoke.texi, doc/md.texi, doc/passes.texi, doc/rtl.texi,
14067 doc/standards.texi, doc/tm.texi: Remove trailing whitespace.
14069 2002-02-23 Jakub Jelinek <jakub@redhat.com>
14071 PR optimization/5747
14072 * loop.c (scan_loop): Update reg info if move_movables created new
14075 2002-02-23 David Edelsohn <edelsohn@gnu.org>
14077 * gcc.c (init_gcc_spec): Revert last change.
14079 2002-02-23 David Edelsohn <edelsohn@gnu.org>
14081 * config/rs6000/rs6000.md (load_toc_aix_{si,di}): Use
14082 gpc_reg_operand constraint.
14084 2002-02-23 Alan Modra <amodra@bigpond.net.au>
14086 * config/rs6000/rs6000.c (num_insns_constant): Fix formatting.
14087 Simplify comparison of `low'.
14088 (add_operand): Fix formatting.
14089 (non_add_cint_operand): Use CONST_OK_FOR_LETTER_P.
14090 (mask_operand): Disallow mask to wrap in 64-bit mode.
14091 (rs6000_stack_info): Remove redundant test setting push_p.
14092 (output_toc): Fix formatting.
14093 * config/rs6000/rs6000.md (boolsi3, boolcsi3 splitters): Use
14094 cc_reg_not_cr0_operand constraint.
14095 (booldi3, boolcdi3 splitters): Same.
14097 2002-02-23 Aldy Hernandez <aldyh@redhat.com>
14099 * config/rs6000/altivec.h: Add extra level of parentheses on casts.
14101 2002-02-22 David Edelsohn <edelsohn@gnu.org>
14103 * gcc.c (init_gcc_spec): Do not link with static libgcc.a if
14104 gcc invoked with -shared-libgcc.
14106 2002-02-22 Jakub Jelinek <jakub@redhat.com>
14109 * stmt.c (expand_anon_union_decl): Set TREE_USED on the anon union
14110 decl if any of elements was TREE_USED.
14112 2002-02-22 Alexandre Oliva <aoliva@redhat.com>
14114 * config/sparc/sol2.h: Don't include sys/mman.h.
14115 * config/sparc/sparc.c (arith_operand): Use SMALL_INT32.
14116 (arith_4096_operand): Don't throw high bits away.
14117 (const64_operand): Take sign extension of CONST_INTs into account.
14118 (const64_high_operand, sparc_emit_set_const32): Likewise.
14119 (GEN_HIGHINT64): Likewise.
14120 (sparc_emit_set_const64_quick1): Likewise.
14121 (const64_is_2insns): Likewise.
14122 (print_operand): Use trunc_int_for_mode for sign extension.
14123 * config/sparc/sparc.h (SMALL_INT32): Likewise.
14124 * config/sparc/sparc.md (movqi): Sign-extend CONST_DOUBLE
14125 chars. Assume CONST_INT is already properly sign-extended.
14126 (movdi split): Sign-extend each SImode part.
14127 (andsi3 split): Don't mask high bits off, so that result
14128 remains properly sign-extend.
14129 (iorsi3 split): Likewise.
14130 (xorsi3 split): Likewise.
14132 2002-02-22 Richard Sandiford <rsandifo@redhat.com>
14134 * fold-const.c (fold): Fix typo in comments.
14136 2002-02-21 Diego Novillo <dnovillo@redhat.com>
14138 * Makefile.in (langhooks.o): Update dependencies.
14140 2002-02-21 Diego Novillo <dnovillo@redhat.com>
14142 * langhooks.c: Include flags.h.
14144 2002-02-21 Aldy Hernandez <aldyh@redhat.com>
14146 * testsuite/gcc.dg/attr-alwaysinline.c: New.
14148 * c-common.c (c_common_post_options): Set inline trees by
14151 * doc/extend.texi (Function Attributes): Document always_inline
14153 Update documentation about inlining when not optimizing.
14155 * cp/decl.c (duplicate_decls): Merge always_inline attribute.
14157 * cp/tree.c (cp_cannot_inline_tree_fn): Do not inline at -O0
14158 unless DECL_ALWAYS_INLINE.
14160 * c-objc-common.c (c_cannot_inline_tree_fn): Do not inline at -O0
14161 unless DECL_ALWAYS_INLINE.
14162 (c_disregard_inline_limits): Disregard if always_inline set.
14164 * langhooks.c (lhd_tree_inlining_disregard_inline_limits):
14165 Disregard if always_inline set.
14166 (lhd_tree_inlining_cannot_inline_tree_fn): Do not inline at -O0
14167 unless DECL_ALWAYS_INLINE.
14169 * attribs.c (handle_always_inline_attribute): New.
14170 (c_common_attribute_table): Add always_inline.
14172 * config/rs6000/altivec.h: Add prototypes for builtins
14173 requiring the always_inline attribute.
14175 2002-02-21 Eric Christopher <echristo@redhat.com>
14177 * expmed.c (store_bit_field): Try to simplify the subreg
14178 before generating a new one when when the mode size of
14179 value is less than maxmode.
14181 2002-02-21 Richard Henderson <rth@redhat.com>
14183 * emit-rtl.c (offset_address): Use simplify_gen_binary rather
14184 than gen_rtx_PLUS to form the sum.
14185 * explow.c (force_reg): Rearrange to not allocate new pseudo
14186 when force_operand returns a register.
14187 * expr.c (expand_assignment): Allow offset_rtx expansion to
14188 return a sum. Do not force addresses into registers.
14189 (expand_expr): Likewise.
14190 * simplify-rtx.c (simplify_gen_binary): Use simplify_plus_minus
14191 to canonicalize arithmetic that didn't simpify.
14192 (simplify_plus_minus): New argument force; update
14193 all callers. Don't split CONST unless we can do something with it,
14194 and wouldn't lose the constness of the operands.
14196 * config/i386/i386.c (legitimize_pic_address): Recognize UNSPECs
14197 that we generated earlier.
14199 2002-02-21 Tom Tromey <tromey@redhat.com>
14201 * dwarf2out.c (DWARF_LINE_MIN_INSTR_LENGTH): Removed.
14202 (output_line_info): Use constant `1', with a long explanatory
14204 * system.h (DWARF_LINE_MIN_INSTR_LENGTH): Poison.
14206 Thu Feb 21 22:43:44 2002 J"orn Rennecke <joern.rennecke@superh.com>
14208 * jump.c (redirect_jump): If old label has no UID, don't try to
14211 Thu Feb 21 21:17:21 2002 J"orn Rennecke <joern.rennecke@superh.com>
14213 * sh.md (insv): Provide byte offsets for gen_rtx_SUBREG.
14214 If input is constant, do shifts at compile time.
14216 2002-02-21 Joseph S. Myers <jsm28@cam.ac.uk>
14218 * doc/extend.texi: Fix some more overfull hboxes.
14220 2002-02-21 Jakub Jelinek <jakub@redhat.com>
14222 PR optimization/4994
14223 * config/i386/i386.md (movsi_1, movsf_1): Support MMX -> MMX
14226 2002-02-21 Jakub Jelinek <jakub@redhat.com>
14229 * expr.h (expand_and): Add mode argument.
14230 * expmed.c (expand_and): Add mode argument.
14231 (expand_mult_highpart_adjust, emit_store_flag): Adjust callers.
14232 * expr.c (store_field, expand_expr, do_store_flag): Likewise.
14233 * except.c (expand_builtin_extract_return_addr): Likewise.
14234 * config/alpha/alpha.c (alpha_initialize_trampoline): Likewise.
14235 * config/sparc/sparc.c (sparc_initialize_trampoline): Likewise.
14236 * config/c4x/c4x.h (INITIALIZE_TRAMPOLINE): Likewise.
14237 Use GEN_INT (x) instead of gen_rtx (CONST_INT, VOIDmode, x).
14238 * config/c4x/c4x.md: Use GEN_INT (x) instead of
14239 gen_rtx (CONST_INT, VOIDmode, x).
14241 2002-02-21 Jakub Jelinek <jakub@redhat.com>
14244 * stmt.c (warn_if_unused_value): Move side effects test once more.
14246 2002-02-20 Torbjorn Granlund <tege@swox.com>
14248 * config/avr/avr.md: Add more patterns for mized-mode add and subtract
14249 (addsi3_zero_extend, subhi3_zero_extend1, subsi3_zero_extend).
14251 Thu Feb 21 16:20:46 2002 Alexandre Oliva <aoliva@redhat.com>
14253 * rtlanal.c (replace_rtx): Don't make a CONST_INT the operand of
14254 SUBREG or ZERO_EXTEND.
14256 Thu Feb 21 15:35:46 2002 J"orn Rennecke <joern.rennecke@superh.com>
14258 * sh.h (current_function_anonymous_args): Remove.
14259 (SETUP_INCOMING_VARARGS): Don't set it - just check that one
14260 of current_function_varargs and current_function_stdarg is set.
14261 * sh.c (sh_expand_prologue): Check current_function_varargs /
14262 current_function_stdarg / TARGET_SH5 instead of
14263 current_function_anonymous_args.
14265 * sh64.h (TARGET_VERSION): Define.
14267 2002-02-20 David Edelsohn <edelsohn@gnu.org>
14269 * config/rs6000/rs6000.h (EPILOGUE_USES): Conditionalize
14270 VRSAVE_REGNO on TARGET_ALTIVEC.
14272 2002-02-20 Alan Modra <amodra@bigpond.net.au>
14274 * config/rs6000/rs6000.c (includes_lshift_p): Mask irrelevant
14275 bits of SImode const_int.
14276 (includes_rshift_p): Likewise.
14277 (print_operand): Call mask_operand and mask64_operand with correct
14279 (rs6000_output_function_epilogue): Pad traceback table to word.
14280 * config/rs6000/rs6000.h (MASK_64BIT): Correct comment.
14281 (EXTRA_CONSTRAINT, 'S' and 'T'): Call mask_operand and
14282 mask64_operand with correct mode.
14283 (FUNCTION_ARG_REGNO_P): Correct parentheses.
14285 2002-02-20 Jakub Jelinek <jakub@redhat.com>
14288 * varasm.c (get_pool_constant_mark): New.
14289 * rtl.h (get_pool_constant_mark): Add prototype.
14290 * dwarf2out.c (mem_loc_descriptor): A pool constant cannot
14291 be represented if it has not been output.
14293 2002-02-20 Alexandre Oliva <aoliva@redhat.com>
14295 * combine.c (do_SUBST): Sanity check substitutions of
14296 CONST_INTs, and reject them in SUBREGs and ZERO_EXTENDs.
14297 (subst): Simplify SUBREG or ZERO_EXTEND instead of SUBSTing a
14298 CONST_INT into its operand.
14299 (known_cond): Likewise, for ZERO_EXTEND.
14300 * simplify-rtx.c (simplify_unary_operation): Fix condition to
14301 allow for simplification of wide modes. Reject CONST_INTs in
14302 ZERO_EXTEND when their actual mode is not given.
14304 2002-02-20 Alexandre Oliva <aoliva@redhat.com>
14306 * c-decl.c (pushdecl): If no global declaration is found for an
14307 extern declaration in block scope, try a limbo one.
14309 2002-02-20 Jakub Jelinek <jakub@redhat.com>
14312 * c-common.c (pointer_int_sum): Moved from...
14313 * c-typeck.c (pointer_int_sum): ...here.
14314 * c-common.h (pointer_int_sum): Add prototype.
14316 2002-02-20 Jakub Jelinek <jakub@redhat.com>
14319 * c-decl.c (duplicate_decls): Return 0 if issued error about
14322 2002-02-20 Roger Sayle <roger@eyesopen.com>
14323 Jakub Jelinek <jakub@redhat.com>
14326 * tree.c (host_integerp): Ensure that the constant integer is
14327 representable in a HOST_WIDE_INT or an unsigned HOST_WIDE_INT
14328 when pos is zero or non-zero respectively. Clarify comment.
14329 * c-format.c (check_format_info_recurse): Fix host_integerp
14330 usage; the pos argument should be zero when assigning to a
14331 signed HOST_WIDE_INT.
14333 2002-02-20 Richard Henderson <rth@redhat.com>
14335 * config/i386/i386.c (ix86_expand_vector_move): Use the mode
14336 of the operand, rather than assuming TImode.
14337 (ix86_expand_binop_builtin): Cope with commutative patterns
14338 using nonimmediate_operand for both operands.
14339 (ix86_expand_timode_binop_builtin): Likewise.
14340 (ix86_expand_store_builtin): Validate operand 1.
14341 (ix86_expand_unop1_builtin): Likewise.
14343 2002-02-20 Philip Blundell <philb@gnu.org>
14346 * config/arm/arm.h (HARD_REGNO_RENAME_OK): New macro.
14348 2002-02-20 Richard Henderson <rth@redhat.com>
14351 * expr.h (ARGS_SIZE_TREE): Convert size.var to ssizetype.
14353 2002-02-20 Tom Tromey <tromey@redhat.com>
14355 * config/fr30/fr30.h (DWARF_LINE_MIN_INSTR_LENGTH): Removed.
14356 * config/sh/sh.h (DWARF_LINE_MIN_INSTR_LENGTH): Removed.
14357 * config/pj/pj.h (DWARF_LINE_MIN_INSTR_LENGTH): Removed.
14358 * config/cris/cris.h (DWARF_LINE_MIN_INSTR_LENGTH): Removed.
14359 * dwarf2out.c (DWARF_LINE_MIN_INSTR_LENGTH): Define
14362 Wed Feb 20 00:03:25 EST 2002 Alan Matsuoka <alanm@redhat.com>
14364 * config/rs6000/rs6000.h (LEGITIMATE_OFFSET_ADDRESS_P): Look
14365 for (const_int 0) in X not just INTVAL.
14367 2002-02-20 Joseph S. Myers <jsm28@cam.ac.uk>
14369 * doc/extend.texi: Avoid or reduce overfull hboxes.
14371 2002-02-20 Diego Novillo <dnovillo@redhat.com>
14373 * expmed.c (store_bit_field): Do not store bit fields using SUBREG
14374 operations if the field does not start at a mode boundary.
14376 2001-02-20 Joel Sherrill <joel@OARcorp.com>
14378 * config/a29k/rtems.h, config/arm/rtems-elf.h, config/h8300/rtems.h,
14379 config/mips/rtems.h: Use new style of -Asystem= rather than -Asystem().
14380 Also done for -Acpu and -Amachine.
14382 2002-02-20 Neil Booth <neil@daikokuya.demon.co.uk>
14384 * cppinit.c (init_dependency_output): Take deps output file
14385 from -o if none given with -MF. Suppress normal output.
14386 * gcc.c (cpp_unique_options): Have -M and -MM imply -E.
14387 * doc/cpp.texi, doc/invoke.texi: Update.
14389 2002-02-19 Zack Weinberg <zack@codesourcery.com>
14391 * toplev.c (output_quoted_string): Write unprintable
14392 characters with octal escapes.
14394 2002-02-19 David Edelsohn <edelsohn@gnu.org>
14396 * config/rs6000/rs6000.h (CONDITIONAL_REGISTER_USAGE): Set
14397 really_call_used[VRSAVE_REGNO] if not Altivec.
14399 2002-02-19 Alan Modra <amodra@bigpond.net.au>
14401 * config/rs6000/rs6000.c (u_short_cint_operand): Mask op with
14403 (constant_pool_expr_1): Fix formatting.
14404 (rs6000_legitimize_reload_address): Likewise.
14406 Tue Feb 19 20:13:57 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
14408 * config/sparc/sparc.md (nonlocal_goto): Use hard_frame_pointer_rtx
14409 now that we have one.
14411 2002-02-19 Zack Weinberg <zack@codesourcery.com>
14413 * tree.h (struct tree_common): Remove aux. Add unused_0 at
14414 end of first block of bitfields (which was only seven bits);
14415 rename dummy to unused_1; remove comment which is no longer true.
14417 2002-02-19 Gaute B Strokkenes <gs234@cam.ac.uk>
14419 * doc/c-tree.texi (Classes, TYPE_BINFO): Fix typo.
14421 2002-02-19 Philip Blundell <pb@nexus.co.uk>
14424 * config/arm/arm.h (THUMB_LEGITIMATE_CONSTANT_P): Accept anything
14428 * config/arm/arm.md (call_insn) [TARGET_THUMB]: Use
14429 arm_is_longcall_p rather than inspecting call-type cookie
14431 (call_value_insn) [TARGET_THUMB]: Likewise.
14433 2002-02-19 Graham Stott <grahams@redhat.com>
14435 * config/i386/i386.c (ix86_expand_builtin): Fix typo.
14437 2002-02-19 David Edelsohn <edelsohn@gnu.org>
14439 * config/rs6000/linux64.h (LINK_OS_LINUX_SPEC): Look in /lib64.
14440 ({STARTFILE,ENDFILE}_LINUX_SPEC): Define.
14441 (FP_SAVE_INLINE): Delete.
14443 * config/rs6000/sysv4.h (ENDFILE_SPEC): Add crtsaveres.o.
14444 * config/rs6000/eabi.asm: Remove ABI save restore routines.
14445 * config/rs6000/t-ppccomm: Build crtsavres.o.
14446 * config/rs6000/crtsavres.asm: New file.
14448 2002-02-19 Philip Blundell <philb@gnu.org>
14450 * config/arm/arm.c (use_return_insn): Don't reject interrupt
14452 (arm_compute_save_reg_mask): Save LR for interrupt functions too.
14453 (output_return_instruction): Allow interrupt functions to return with
14454 ldmfd sp!, {... pc}^. Use LDR to restore any single register.
14455 (arm_expand_prologue): Subtract 4 before stacking LR in an
14456 interrupt function.
14458 2002-02-19 Philip Blundell <pb@nexus.co.uk>
14460 * config/arm/arm.c (arm_encode_call_attribute): Operate on any
14461 decl, not just FUNCTION_DECL.
14462 (legitimize_pic_address): Handle local SYMBOL_REF like LABEL_REF.
14463 (arm_assemble_integer): Likewise.
14464 * config/arm/arm.h (ARM_ENCODE_CALL_TYPE): Allow any decl to be
14467 2002-02-19 matthew green <mrg@eterna.com.au>
14469 * config.gcc (sparc-*-netbsdelf*): Enable target.
14470 (sparc64-*-netbsd*): New target.
14471 * config/sparc/netbsd-elf.h: New file.
14472 * config/sparc/t-netbsd64: New file.
14474 2002-02-19 Gaute B Strokkenes <gs234@cam.ac.uk>
14476 * doc/rtl.texi (Flags, MEM_SCALAR_P): Fix typo.
14478 2002-02-19 Ryan T. Sammartino <ryants@shaw.ca>
14480 * doc/invoke.texi: explicitly list the style guidelines that
14481 -Weffc++ checks for.
14483 Tue Feb 19 12:37:23 CET 2002 Jan Hubicka <jh@suse.cz>
14485 * regmove.c (regmove_optimize): Avoid increasing of register pressure.
14487 2002-02-19 Neil Booth <neil@daikokuya.demon.co.uk>
14490 * gcc.c (cpp_unique_options): Treat -o as indicating object file
14491 only if not -E. If -E, pass -o through to the preprocessor.
14493 2002-02-19 Kazu Hirata <kazu@hxi.com>
14495 * config/h8300/h8300.h (REGNO_REG_CLASS): Replace a literal
14496 register number with an appropriate macro.
14498 2002-02-19 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
14500 * doc/rtl.texi (Constants): Close @code tag.
14502 2002-02-19 Aldy Hernandez <aldyh@redhat.com>
14504 * config/i386/i386.md ("mmx_uavgv8qi3"): Use const_vector.
14505 ("mmx_uavgv4hi3"): Same.
14506 ("pmulhrwv4hi3"): Same.
14508 * tree-inline.c (walk_tree): Handle vectors.
14510 * c-common.c (constant_expression_warning): Handle vectors.
14511 (overflow_warning): Same.
14513 * sched-deps.c (sched_analyze_2): Handle vectors.
14515 * rtlanal.c (rtx_unstable_p): Handle vectors.
14516 (rtx_varies_p): Same.
14517 (count_occurrences): Same.
14518 (regs_set_between_p): Same.
14519 (modified_between_p): Same.
14520 (modified_in_p): Same.
14521 (volatile_insn_p): Same.
14522 (volatile_refs_p): Same.
14523 (side_effects_p): Same.
14524 (may_trap_p): Same.
14525 (inequality_comparisons_p): Same.
14526 (replace_regs): Same.
14527 (computed_jump_p_1): Same.
14529 * rtl.c (DEF_MACHMODE): Change all definitions to accept 8th
14531 (inner_mode_array): New.
14532 (copy_rtx): Handle vectors.
14533 (copy_most_rtx): Same.
14534 (rtx_equal_p): Same.
14535 (get_mode_alignment): Adjust for vectors.
14537 * resource.c (mark_referenced_resources): Handle vectors.
14538 (mark_set_resources): Same.
14540 * reload1.c (eliminate_regs): Handle vectors.
14541 (elimination_effects): Same.
14542 (scan_paradoxical_subregs): Same.
14544 * reload.c (subst_reg_equivs): Handle vectors.
14546 * regrename.c (scan_rtx): Handle vectors.
14548 * regclass.c (reg_scan_mark_refs): Handle vectors.
14550 * recog.c (find_single_use_1): Handle vectors.
14552 * local-alloc.c (equiv_init_varies_p): Handle vectors.
14553 (contains_replace_regs): Same.
14554 (memref_referenced_p): Same.
14556 * integrate.c (copy_rtx_and_substitute): Handle vectors.
14557 (subst_constants): Same.
14559 * genattrtab.c (attr_copy_rtx): Handle vectors.
14560 (encode_units_mask): Same.
14561 (clear_struct_flag): Same.
14562 (count_sub_rtxs): Same.
14564 * gcse.c (want_to_gcse_p): Handle vectors.
14565 (oprs_unchanged_p): Same.
14566 (hash_expr_1): Same.
14567 (oprs_not_set_p): Same.
14568 (expr_killed_p): Same.
14569 (compute_transp): Same.
14570 (store_ops_ok): Same.
14572 * function.c (purge_addressof_1): Do not allow paradoxical subregs
14574 (fixup_var_refs_1): Same.
14575 (instantiate_virtual_regs_1): Same.
14577 * fold-const.c (operand_equal_p): Handle vectors.
14579 (rtl_expr_nonnegative_p): Same.
14581 * flow.c (mark_used_regs): Handle vectors.
14583 * df.c (df_uses_record): Handle vectors.
14585 * cselib.c (cselib_subst_to_values): Handle vectors.
14586 (cselib_mem_conflict_p): Same.
14589 * cse.c (canon_reg): Handle vectors.
14591 (cse_process_notes): Same.
14592 (count_reg_usage): Same.
14593 (canon_hash): Same.
14595 * alias.c (nonlocal_mentioned_p): Add case for CONST_VECTOR.
14597 * combine.c (mark_used_regs_combine): Add case for CONST_VECTOR.
14599 * emit-rtl.c (init_emit_once): Generate const0_rtx for vectors.
14600 (gen_rtx): Handle CONST_VECTOR.
14601 (gen_const_vector_0): New.
14602 (copy_rtx_if_shared): CONST_VECTORs can be shared.
14603 (reset_used_flags): Same.
14604 (copy_insn_1): Same.
14605 (initializer_constant_valid_p): Handle VECTOR_CST.
14607 * doc/c-tree.texi (Expression trees): Document VECTOR_CST.
14609 * doc/rtl.texi (Constants): Document const_vector.
14610 (CONST0_RTX): Update for vectors.
14611 (RTL sharing): Same.
14613 * print-tree.c (print_node): Add case for VECTOR_CST.
14615 * tree.h (TREE_VECTOR_CST_ELTS): New.
14616 (struct tree_vector): New.
14617 (union tree_node): Add vector node.
14618 (build_vector): Add prototype.
14620 * tree.def (VECTOR_CST): New.
14622 * tree.c (build_vector): New.
14624 * expmed.c (make_tree): Handle CONST_VECTOR.
14626 * rtl.h (CONSTANT_P): CONST_VECTORs are constants too.
14627 (CONST_VECTOR_ELT): New.
14628 (CONST_VECTOR_NUNITS): New.
14630 * machmode.h (GET_MODE_INNER): New.
14631 (DEF_MACHMODE): Accept 8th arg.
14633 * machmode.def: Add 8th argument for vector inner mode.
14634 Add inner vector modes for vectors.
14636 * rtl.def (VEC_CONST): Remove.
14637 (CONST_VECTOR): New.
14639 * expr.c (clear_storage): Allow vectors.
14640 (is_zeros_p): Handle VECTOR_CST.
14642 * varasm.c (output_constant_pool): Handle vectors.
14643 (rtx_const): Add veclo and vechi fields.
14644 (kind): Add RTX_VECTOR.
14645 (decode_rtx_const): Add case for vector.
14647 * config/rs6000/rs6000-protos.h: Add zero_constant.
14649 * config/rs6000/rs6000.c (rs6000_emit_move): Handle vector
14650 constants. Force easy vector constants into memory.
14651 (easy_vector_constant): New.
14652 (emit_easy_vector_constant): New.
14653 (rs6000_legitimize_reload_address): Do not generate bad reloads on
14656 * config/rs6000/rs6000.md ("altivec_lvx"): Reflect what
14658 ("altivec_lvxl"): Same.
14659 (altivec_lvebx): Same.
14660 (altivec_lvehx): Same.
14661 (altivec_lvewx): Same.
14662 ("*movv4si_const0"): New.
14663 ("*movv4sf_const0"): New.
14664 ("*movv8hi_const0"): New.
14665 ("*movv16qi_const0"): New.
14667 2002-02-18 Kazu Hirata <kazu@hxi.com>
14669 * config/h8300/h8300.c (notice_update_cc): Use
14672 2002-02-18 Kazu Hirata <kazu@hxi.com>
14674 * config/h8300/h8300.md (divmod patterns): Change the
14675 constraints for operands[1] to register_operand.
14677 2002-02-18 Kazu Hirata <kazu@hxi.com>
14679 * config/h8300/h8300-protos.h: Remove the prototype for
14681 * config/h8300/h8300.c (p_operand): Remove.
14682 * config/h8300/h8300.md: Replace p_operand with
14685 2002-02-18 Philip Blundell <pb@nexus.co.uk>
14687 * config/arm/arm.c (arm_compute_save_reg_mask): Fix typo in
14689 (output_return_instruction): Allow use of LDR to unstack
14690 return addresss even for interrupt handlers or when
14691 interworking. If compiling for ARMv5, use interworking-safe
14692 return instructions by default. Remove duplicated code and
14693 lengthy "strcat" sequences.
14695 2002-02-18 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
14697 * config/rs6000/sysv4.h (STARTFILE_SPEC): Use crtbeginT.o for -static.
14698 (LINK_EH_SPEC): Define.
14699 * config/rs6000/t-ppccomm (EXTRA_MULTILIB_PARTS): Add crtbeginT.o.
14701 2002-02-18 Ulrich Weigand <uweigand@de.ibm.com>
14703 * config/s390/s390.c (s390_emit_prologue): Do not set the
14704 frame_related flag for call-clobbered registers.
14706 Mon Feb 18 15:07:35 CET 2002 Jan Hubicka <jh@suse.cz>
14708 * i386.c (classify_argument): Properly classify SSE/MMX modes and VOIDmode.
14709 (construct_container): Fix handling of SSE operands.
14710 (ix86_expand_builtin): Fix handling of 64bit pointers.
14711 (mmx_maskmovq_rex): New pattern.
14713 Mon Feb 18 11:55:55 CET 2002 Jan Hubicka <jh@suse.cz>
14715 * regrename.c (kill_set_value): Handle subregs properly.
14717 2002-02-18 David Billinghurst <David.Billinghurst@riotinto.com>
14719 * objc/objc-act.c (handle_impent): Remove leading '*'
14720 from objc_class_name.
14722 2002-02-17 Richard Henderson <rth@redhat.com>
14724 * config/alpha/alpha.c (some_small_symbolic_operand,
14725 some_small_symbolic_operand_1, split_small_symbolic_operand,
14726 split_small_symbolic_operand_1): Rename from *symbolic_mem_op*.
14727 Handle small SYMBOL_REFs anywhere, not just inside memories.
14728 * config/alpha/alpha-protos.h: Update.
14729 * config/alpha/alpha.h (PREDICATE_CODES): Update.
14730 * config/alpha/alpha.md (small symbolic operand splitter): Update.
14732 2002-02-17 Roland McGrath <roland@frob.com>
14734 * config.gcc (powerpc-*-gnu-gnualtivec*,
14735 powerpc-*-gnu*, powerpc64-*-gnu*): New configurations.
14736 * config/rs6000/gnu.h: New file.
14737 * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS):
14738 Grok "gnu" in rs6000_abi_name.
14739 (ASM_SPEC, CC1_SPEC, LINK_START_SPEC, LINK_OS_SPEC,
14740 CPP_ENDIAN_SPEC, CPP_SPEC, STARTFILE_SPEC, LIB_SPEC, ENDFILE_SPEC):
14741 Grok -mcall-gnu analogous to -mcall-linux et al.
14742 (LIB_GNU_SPEC, STARTFILE_GNU_SPEC, ENDFILE_GNU_SPEC,
14743 LINK_START_GNU_SPEC, LINK_OS_GNU_SPEC, CPP_OS_GNU_SPEC): New macros.
14744 (SUBTARGET_EXTRA_SPECS): Add *_os_gnu specs using them.
14746 2002-02-17 Jakub Jelinek <jakub@redhat.com>
14749 * c-typeck.c (build_binary_op) [BIT_XOR_EXPR]: Remove explicit
14752 2002-02-17 Philipp Thomas <pthomas@suse.de>
14754 * config/cris/cris.h: Undefine STARTFILE_SPEC and
14755 ENDFILE_SPEC before (re)defining them.
14757 2002-02-17 Kazu Hirata <kazu@hxi.com>
14759 * config/h8300/h8300.c: Fix formatting.
14760 * config/h8300/h8300.h: Likewise.
14762 2002-02-17 Philipp Thomas <pthomas@suse.de>
14764 * doc/tm.texi: Explain why empty strings should not be
14765 marked for translation.
14767 2002-02-17 Philipp Thomas <pthomas@suse.de>
14769 * final.c (output_operand_lossage): Changed to accept
14770 printf style arguments. Change calls where necessary.
14771 * output.h (output_operand_lossage): Change declaration
14772 accordingly. Update copyright.
14773 * config/arc/arc.c config/fr30/fr30.c config/m32r/m32r.c
14774 config/m88k/m88k.c : Adapt all calls to output_operand_lossage.
14775 Update copyright date where necessary.
14777 * config/i386/i386.c (print_operand): Likewise. Remove use of
14780 * config/cris/cris.c (cris_operand_lossage): Likewise.
14781 Rename parameter so that exgettext recognizes it as
14782 translatable message.
14783 (LOSE_AND_RETURN): Rename parameter to msgid.
14785 2002-02-17 Kazu Hirata <kazu@hxi.com>
14787 * config/h8300/h8300.h (CONDITIONAL_REGISTER_USAGE): Replace a
14788 hard coded register number with an appropriate macro.
14789 (HARD_REGNO_MODE_OK): Likewise.
14790 (ARG_POINTER_REGNUM): Likewise.
14791 (STATIC_CHAIN_REGNUM): Likewise.
14792 (RETURN_ADDRESS_POINTER_REGNUM): Likewise.
14793 * config/h8300/h8300.md (define_constants): Define more
14796 2002-02-17 Philipp Thomas <pthomas@suse.de>
14798 * config/i386/i386.h: Don't mark empty strings for translation.
14800 2002-02-16 H.J. Lu <hjl@gnu.org>
14802 * config/mips/linux.h (ASM_PREFERRED_EH_DATA_FORMAT): New.
14804 2002-02-16 Zack Weinberg <zack@codesourcery.com>
14806 * cppinit.c (merge_include_chains): Check for brack being
14807 NULL before attempting to merge it with qtail.
14809 2002-02-16 Andrew Cagney <ac131313@redhat.com>
14811 * config/rs6000/netbsd.h (PREFERRED_DEBUGGING_TYPE): Set to
14814 2002-02-16 John David Anglin <dave@hiauly1.hia.nrc.ca>
14816 * pa/t-pa, pa/t-pro, som.h: Revert last patch.
14818 2002-02-16 John David Anglin <dave@hiauly1.hia.nrc.ca>
14820 * pa/t-pa (LIB2FUNCS_EXTRA): Don't build lib2funcs.asm.
14821 * pa/t-pro (LIB2FUNCS_EXTRA): Likewise.
14822 * som.h (DO_GLOBAL_DTORS_BODY): Delete define.
14824 Sat Feb 16 13:48:50 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
14826 * config/alpha/alpha.md (*movsi_nt_vms_nofix): Was *movsi_nt_vms;
14827 now only if !TARGET_FIX.
14828 (*movsi_nt_vms_fix): New pattern.
14830 2002-02-16 Douglas B Rupp <rupp@gnat.com>
14832 * config/alpha/alpha.c: Implement null frame procedure types on VMS.
14833 (alpha_procedure_type): Replaces alpha_is_stack_procedure.
14834 (alpha_sa_mask, alpha_sa_size): Reflect above change.
14835 (alpha_pv_save_size, alpha_expand_prologue): Likewise.
14836 (alpha_start_function, alpha_expand_epilogue): Likewise.
14837 (unicosmk_gen_dsib): Likewise.
14839 Sat Feb 16 13:39:09 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
14841 * expr.c (store_constructor): Handle target REG case for ARRAY_TYPE.
14843 2002-02-16 Ulrich Weigand <uweigand@de.ibm.com>
14845 * config/s390/s390.c (pool_stop_uid, other_chunk, far_away,
14846 check_and_change_labels, s390_final_chunkify): Delete.
14847 (s390_split_branches, s390_chunkify_pool): New functions.
14848 (s390_function_prologue): Call them.
14850 * config/s390/s390.h (S390_REL_MAX): Delete.
14851 (S390_CHUNK_MAX, S390_CHUNK_OV): Adjust values.
14853 * config/s390/s390.md (cjump, icjump, jump): Fix length
14854 attribute calculation.
14857 2002-02-15 David Edelsohn <edelsohn@gnu.org>
14859 * config/rs6000/linux64.h (STRIP_NAME_ENCODING): Delete.
14860 * config/rs6000/ppc-asm.h (JUMP_TARGET): Define for powerpc64.
14862 2002-02-15 John David Anglin <dave@hiauly1.hia.nrc.ca>
14864 * gcc.c (init_gcc_specs): Revert patch from 2002-02-15.
14865 * config/pa/pa-linux.h (LIB_SPEC): Likewise.
14866 * config/pa/pa32-linux.h (LINK_COMMAND_SPEC): Likewise.
14868 2002-02-15 Richard Sandiford <rsandifo@redhat.com>
14870 * c-decl.c (grokdeclarator): Prevent a segfault on unnamed decls.
14872 2002-02-15 Richard Sandiford <rsandifo@redhat.com>
14874 * reload.c (find_dummy_reload): Check that an output register
14875 is valid for its mode.
14877 2002-02-14 Alexandre Oliva <aoliva@redhat.com>
14879 * combine.c (known_cond): After replacing the REG of a SUBREG, try
14882 * function.c (assign_parms): Demote promoted argument passed by
14883 transparent reference.
14885 2001-02-14 Joel Sherrill <joel@OARcorp.com>
14887 * config/arm/rtems-elf.h, config/h8300/rtems.h: Removed redundant
14888 -Acpu() and -Amachine() to eliminate warnings.
14890 2002-02-14 Ulrich Weigand <uweigand@de.ibm.com>
14892 * config/s390/linux.h (ASM_OUTPUT_ALIGNED_BSS): New.
14894 2002-02-14 Kazu Hirata <kazu@hxi.com>
14896 * config/h8300/h8300-protos.h: Update the prototype for
14898 * config/h8300/h8300.c (const_costs): Treat SET as a little
14899 more expensive operation.
14900 * config/h8300/h8300.h (DEFAULT_RTX_COSTS): Update the
14901 reference to const_costs.
14903 2002-02-14 Hans-Peter Nilsson <hp@axis.com>
14905 * config.gcc (c4x-*-rtems*): Fix typo in tm_file setting.
14907 2002-02-14 Jakub Jelinek <jakub@redhat.com>
14910 * c-decl.c (duplicate_decls): If builtin type has TYPE_ARG_TYPES NULL,
14911 use arguments from newtype.
14913 2002-02-13 Eric Christopher <echristo@redhat.com>
14915 * config/mips/mips.c (override_options): Add check for march/mipsX
14916 on the same command line. Fix error message in cpu processing.
14917 Remove architecture and ISA checks.
14919 2002-02-14 Aldy Hernandez <aldyh@redhat.com>
14921 * config/rs6000/darwin.h (ROUND_TYPE_ALIGN): Adjust for vectors.
14923 * config/rs6000/sysv4.h (ROUND_TYPE_ALIGN): Add MAX.
14925 2002-02-14 Aldy Hernandez <aldyh@redhat.com>
14927 * config/rs6000/rs6000.md ("*movv4si_internal"): Add m<-r and r<-r
14929 ("*movv8hi_internal1"): Same.
14930 ("*movv16qi_internal1"): Same.
14931 ("*movv4sf_internal1"): Same.
14933 * config/rs6000/rs6000.c (rs6000_legitimize_reload_address): Do
14934 not push_reload for altivec modes.
14936 2002-02-13 Joel Sherrill <joel@OARcorp.com>
14938 * config.gcc (a29k-*-rtems), config/a29k/rtems.h: General cleanup across
14939 all RTEMS targets including removal of #includes from config/*/rtems*.h
14940 file and adding them to tm_file setting. Added xm_defines=POSIX to
14942 * config.gcc (c4x-*-rtems), config/c4x/rtems.h: Ditto.
14943 * config.gcc (h8300-*-rtems), config/h8300/rtems.h: Ditto.
14944 * config.gcc (hppa1.1-*-rtems), config/pa/rtems.h: Ditto.
14945 * config.gcc (i960-*-rtems), config/i960/rtems.h: Ditto.
14946 * config.gcc (m68k-*-rtems*), config/m68k/rtems.h,
14947 config/m68k/rtemself.h: Ditto.
14948 * config.gcc (mips*-*-rtems*), config/mips/rtems.h,
14949 config/mips/rtems64.h: Ditto.
14950 * config.gcc (powerpc-*-rtems*), config/rs6000/rtems.h: Ditto.
14951 * config.gcc (sh-*-rtems*), config/sh/rtems.h, config/sh/rtemself.h:
14953 * config.gcc (sparc-*-rtems*), config/sparc/rtems.h,
14954 config/sparc/rtemself.h: Ditto.
14955 * config.gcc (v850-*-rtems*), config/v850/rtems.h: Ditto.
14956 * config.gcc (arm-rtems), config/arm/rtems-elf.h: Ditto plus moved
14957 arm-rtems stanza closer to other arm-elf targets and made arm-rtems
14959 * config.gcc (i[34567]86-*-rtems*), config/i386/djgpp-rtems.h,
14960 config/i386/rtems.h, config/i386/rtemself.h: Ditto plus i386-rtemself
14961 target made more similar to i386-elf.
14962 * config/i386/t-rtems-i386: Added soft float support and multilibs.
14963 * config/m68k/t-m68kbare: Add 68040 and 68060 as multilib alternatives to
14964 be similar to config/m68k/t-m68kelf.
14965 * gthr-rtems.h: Encapsulate with extern "C" for C++.
14967 Wed Feb 13 23:41:15 CET 2002 Jan Hubicka <jh@suse.cz>
14969 * regmove.c (kill_value): Handle subregs.
14971 Wed Feb 13 23:34:30 CET 2002 Jan Hubicka <jh@suse.cz>
14973 * i386.md (mul patterns): Allow memory operand to be first;
14974 add expanders where needed; fix constraints.
14975 (min?f_nonieee, max?f_nonieee, SSE TImode patterns):
14976 Allow memory operand to be the first.
14978 * i386.c (ix86_prepare_fp_compare_args): Fix condition for swapping
14981 2002-02-13 Jakub Jelinek <jakub@redhat.com>
14984 * expr.c (safe_from_p): Pass VOIDmode to true_dependence instead of
14987 2002-02-13 Jakub Jelinek <jakub@redhat.com>
14989 PR optimization/5547:
14990 * config/i386/i386.c (i386_simplify_dwarf_addr): Simplify
14991 all valid IA-32 address modes involving non-scaled %ebx and
14992 GOT/GOTOFF as displacement.
14994 2002-02-13 Ulrich Weigand <uweigand@de.ibm.com>
14996 * config/s390/s390.c (s390_final_chunkify): Re-run shorten_branches
14997 after emitting ltorg insns.
14999 * config/s390/s390.md (*cmpdf_ccs_0, *cmpdf_ccs, *cmpsf_ccs_0,
15000 *cmpsf_ccs, truncdfsf2_ieee, *adddf3, *addsf3, *subdf3, *subsf3,
15001 *muldf3, *mulsf3, *divdf3, *divsf3, *negdf2, *negsf2, *absdf2,
15002 *abssf2): Fix "op_type" attribute.
15004 2002-02-13 Douglas B Rupp <rupp@gnat.com>
15006 * mkconfig.sh: Avoid using a subshell redirect.
15007 ($output.T): Change to $(output)T.
15008 (ENABLE_NLS): Remove unneeded undef.
15010 * config/alpha/vms.h (MD_EXEC_PREFIX, MD_STARTFILE_PREFIX): Define.
15011 * config/alpha/x-vms (libsubdir): Define.
15013 * config/alpha/vms.h (MD_FALLBACK_FRAME_STATE_FOR): Handle
15014 register frame procedures. Optimize retrieving context.
15016 * config/alpha/t-vms (MULTILIB_OPTIONS): Define.
15017 (MULTILIB_DIRNAME, LIBGCC, INSTALL_LIBGCC): Likewise.
15018 * config/alpha/vms.h (ASM_FILE_START): Write .arch directive.
15020 Wed Feb 13 09:45:08 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
15022 * alias.c (find_base_term, case ZERO_EXTEND, case SIGN_EXTEND):
15023 Make same change as for find_base_value.
15025 2002-02-13 Kazu Hirata <kazu@hxi.com>
15027 * config/h8300/h8300.h (MODES_TIEABLE_P): Accept a combination
15028 of QImode and SImode.
15030 2002-02-13 Kazu Hirata <kazu@hxi.com>
15032 * config/h8300/h8300.c (h8300_adjust_insn_length): Correct the
15033 length computation of movsi.
15034 * config/h8300/h8300.md (movsi_h8300hs): Correct the length.
15036 2002-02-13 Kazu Hirata <kazu@hxi.com>
15038 * config/h8300/h8300.md (subqi3): Tighten the predicate for
15039 operands[2] to register_operand.
15041 Wed Feb 13 10:35:56 CET 2002 Jan Hubicka <jh@suse.cz>
15043 * i386.md (fop_*_comm_*): allow nonimmediate in the first operand.
15045 2002-02-12 Aldy Hernandez <aldyh@redhat.com>
15047 * config/rs6000/rs6000.md: Use predicate altivec_register_operand
15048 for altivec_lvx* and altivec_stvx*.
15049 ("*movv4si_internal"): Add constraint for loading from GPRs.
15050 ("*movv8hi_internal1"): Same.
15051 ("*movv16qi_internal1"): Same.
15052 ("*movv4sf_internal1"): Same.
15054 * config/rs6000/rs6000.c (altivec_register_operand): New.
15056 * config/rs6000/rs6000.h (PREDICATE_CODES): Add
15057 altivec_register_operand.
15059 2002-02-13 Hans-Peter Nilsson <hp@bitrange.com>
15061 * config/mmix/mmix.c (mmix_assemble_integer) <case 4>: Don't
15064 2002-02-13 Stan Shebs <shebs@apple.com>
15066 * c-typeck.c (digest_init): Handle vectors.
15067 (really_start_incremental_init): Same.
15068 (pop_init_level): Same.
15069 (process_init_element): Same.
15071 * varasm.c (output_constant): Same.
15073 * expr.c (clear_storage): Same.
15074 (store_constructor): Same.
15076 2002-02-12 Eric Christopher <echristo@redhat.com>
15078 * explow.c (hard_function_value): Add comment explaining
15079 signed/unsigned comparison.
15081 2002-02-12 Jakub Jelinek <jakub@redhat.com>
15083 * jump.c (never_reached_warning): Add finish argument.
15084 If finish is NULL, stop on CODE_LABEL, otherwise stop before first
15085 real insn after end.
15086 * rtl.h (never_reached_warning): Adjust prototype.
15087 * cse.c (cse_insn): Pass NULL as finish to never_reached_warning.
15088 * cfgrtl.c (flow_delete_block): Pass b->end as finish to
15089 never_reached_warning.
15091 2002-02-12 Graham Stott <grahams@redhat.com>
15093 * config/hp/pa.h (GO_IF_LEGITIMATE_ADDRESS): Fix typos.
15095 2002-02-12 Kazu Hirata <kazu@hxi.com>
15097 * config/h8300/h8300.c (shift_alg_hi): Improve the 15-bit
15098 logical shifts on H8/300.
15099 (shift_alg_si): Improve several shifts on H8/300.
15100 (get_shift_alg): Likewise.
15102 2002-02-12 Graham Stott <grahams@redhat.com>
15104 * config/pa/pa.c (compute_movstrsi_length): Fix typos.
15106 Tue Feb 12 10:12:56 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
15108 * alias.c (find_base_value, case ZERO_EXTEND, case SIGN_EXTEND):
15109 Handle #ifdef POINTERS_EXTEND_UNSIGNED.
15111 2002-02-11 Hans-Peter Nilsson <hp@bitrange.com>
15113 * config/mmix/mmix.c (mmix_assemble_integer) <case 1, 2>: Handle
15114 non-CONST_INT through default_assemble_integer.
15115 <case 4>: Likewise, for non-CONST_INT, non-SYMBOL_REF.
15116 <case 8>: Abort for CONST_DOUBLE.
15118 2002-02-11 John David Anglin <dave@hiauly1.hia.nrc.ca>
15120 * gcc.c (init_gcc_specs): Add static libgcc to link when "-shared"
15122 * config/pa/pa-linux.h (LIB_SPEC): Delete.
15123 * config/pa/pa32-linux.h (LINK_COMMAND_SPEC): Delete.
15125 2002-02-11 Andrew Haley <aph@cambridge.redhat.com>
15127 * config/stormy16/stormy16.md (zero_extendqihi2): New.
15129 2002-02-11 Alexandre Oliva <aoliva@redhat.com>
15131 * regrename.c (regrename_optimize): Don't accept a
15132 part-clobbered register if the replaced register is not part
15135 * calls.c (store_one_arg): In the non-BLKmode non-partial case,
15136 take padding into account when computing the argument value.
15138 * config/sh/sh.h (FUNCTION_ARG_REGNO_P): Fix parenthesizing error.
15140 * combine.c (try_combine): Apply substitutions in
15141 CALL_INSN_FUNCTION_USAGE too.
15143 2002-02-11 Aldy Hernandez <aldyh@redhat.com>
15145 * config/rs6000/rs6000.c (altivec_init_builtins): Handle
15146 __builtin_altivec_abs*.
15149 * config/rs6000/rs6000.h (rs6000_builtins): Add
15150 ALTIVEC_BUILTIN_ABS*.
15152 * config/rs6000/altivec.h: Use const char for builtins expecting
15154 (vec_abs): New versions for C and C++.
15157 2002-02-10 Kazu Hirata <kazu@hxi.com>
15159 * config/h8300/h8300.h (INITIALIZE_TRAMPOLINE): Simplify by
15162 2002-02-10 Kazu Hirata <kazu@hxi.com>
15164 * config/h8300/h8300.h (STACK_POINTER_REGNUM): Use the
15165 constant definition from h8300.md.
15166 (FRAME_POINTER_REGNUM): Likewise.
15167 * config/h8300/h8300.md (define_constants): Add FP_REG.
15169 2002-02-10 Kazu Hirata <kazu@hxi.com>
15171 * config/h8300/h8300.c (print_operand): Remove redundant code.
15173 2002-02-10 Kazu Hirata <kazu@hxi.com>
15175 * config/h8300/h8300-protos.h: Remove the prototype for byte_reg.
15176 * config/h8300/h8300.c (byte_reg): Make it static.
15178 2002-02-10 Richard Henderson <rth@redhat.com>
15181 * c-typeck.c (incomplete_type_error): Handle flexible array members.
15183 2002-02-10 Richard Henderson <rth@redhat.com>
15186 * tree.c (append_random_chars): Don't abort if main_input_filename
15189 2002-02-10 Hans-Peter Nilsson <hp@bitrange.com>
15191 * config/mmix/t-mmix (MULTILIB_EXTRA_OPTS): Disable.
15193 2002-02-10 Kazu Hirata <kazu@hxi.com>
15195 * config/h8300/h8300.md (pushhi1_h8300): Correct the mode used.
15196 (pushhi1): Likewise.
15198 2002-02-10 John David Anglin <dave@hiauly1.hia.nrc.ca>
15200 * pa.c (reg_before_reload_operand): Don't accept a SUBREG operand.
15201 * pa.h (PREDICATE_CODES): Adjust codes for reg_before_reload_operand.
15203 2002-02-09 David O'Brien <obrien@FreeBSD.org>
15205 * config/sparc/freebsd.h(TARGET_DEFAULT): Add MASK_EPILOGUE setting and
15207 (ASM_CPU_DEFAULT_SPEC): Remove. Default setting is fine.
15209 2002-02-09 Kazu Hirata <kazu@hxi.com>
15211 * config/h8300/h8300.c (output_logical_op): Use sub.w to clear
15212 a half of an SImode register on H8/300.
15214 Sat Feb 9 18:28:02 CET 2002 Jan Hubicka <jh@suse.cz>
15216 * i386.md (movdi_2): Add missing '!'.
15218 2002-02-09 Kazu Hirata <kazu@hxi.com>
15220 * config/h8300/h8300.h: Fix formatting. Remove commented-out
15223 2002-02-09 Kazu Hirata <kazu@hxi.com>
15225 * config/h8300/h8300.md (length): Correct the distance valid
15226 for the short branch.
15228 2002-02-09 Kazu Hirata <kazu@hxi.com>
15230 * config/h8300/h8300.md (iorhi3): Tighten the predicates.
15232 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
15234 * config/sh/sh.h (REGISTER_NATURAL_MODE): Save part-clobbered
15235 registers in SImode.
15236 (HARD_REGNO_CALL_PART_CLOBBERED) [TARGET_SHMEDIA32]: Set r18 as
15239 * config/sh/sh.c (expand_prologue): Fix mis-applied 2001-11-09's
15242 Contribute sh64-elf.
15243 2002-02-09 Alexandre Oliva <aoliva@redhat.com>
15244 * config/sh/sh.c (TARGET_CANNOT_MODIFY_JUMPS_P): Define to...
15245 (sh_cannot_modify_jumps_p): New function.
15246 2002-02-05 Alexandre Oliva <aoliva@redhat.com>
15247 * config/sh/sh.c (TARGET_MS_BITFIELD_LAYOUT_P): Define to...
15248 (sh_ms_bitfield_layout_p): New function.
15249 2002-02-04 Alexandre Oliva <aoliva@redhat.com>
15250 Zack Weinberg <zack@codesourcery.com>
15251 * config/sh/sh.h (TRAMPOLINE_ADJUST_ADDRESS): Use
15252 expand_simple_binop instead of expand_binop.
15253 2002-02-03 Alexandre Oliva <aoliva@redhat.com>
15254 * config/sh/sh.h (OVERRIDE_OPTIONS) [! TARGET_SH5]: Disable
15255 use of .quad and .uaquad.
15256 * config/sh/sh.c (TARGET_ASM_UNALIGNED_DI_OP,
15257 TARGET_ASM_ALIGNED_DI_OP): Add comment pointing to the above.
15258 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
15259 * config/sh/sh.md (movdi_const, movdi_const_32bit,
15260 movdi_const_16bit): Make sure all CONSTs have modes.
15261 (sym2PIC): Ditto, but by adjusting all callers.
15262 * config/sh/sh.c (calc_live_regs) [TARGET_SHCOMPACT]: Set pr_live
15263 if the prologue calls the SHmedia argument decoder or register
15265 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
15266 * config/sh/sh.c (TARGET_ASM_UNALIGNED_DI_OP): Define.
15267 (TARGET_ASM_ALIGNED_DI_OP): Likewise.
15268 (sh_expand_epilogue): Don't emit USE of return target register.
15269 (prepare_move_operands): Legitimize DImode PIC addresses.
15270 (sh_media_register_for_return): Skip tr0, used to initialize the
15272 (sh_expand_prologue): Remove explicit USE of return register.
15273 (nonpic_symbol_mentioned_p): PC is non-PIC. Don't recurse in
15274 CONST_DOUBLEs. UNSPEC_GOTPLT is PIC.
15275 * config/sh/sh.h (ASM_OUTPUT_DOUBLE_INT): Removed, obsolete.
15276 (OVERRIDE_OPTIONS): Don't disable PIC on SH5.
15277 (EXTRA_CONSTRAINT_S): Use MOVI_SHORI_BASE_OPERAND_P instead of
15278 EXTRA_CONSTRAINT_T.
15279 (GOT_ENTRY_P, GOTPLT_ENTRY_P, GOTOFF_P, PIC_ADDR_P): New.
15280 (MOVI_SHORI_BASE_OPERAND_P): New.
15281 (NON_PIC_REFERENCE_P, PIC_REFERENCE_P): New.
15282 (EXTRA_CONSTRAINT_T): Define in terms of them.
15283 (OUTPUT_ADDR_CONST_EXTRA): Handle UNSPEC_GOTPLT.
15284 * config/sh/sh.md (movsi_media, movsi_media_nofpu,
15285 movdi_media, movdi_media_nofpu): Add SIBCALL_REGS class to
15286 alternatives supporting TARGET_REGS.
15287 (UNSPEC_GOTPLT): New constant.
15288 (movdi split): Move incrementing of LABEL_NUSES...
15289 (movdi_const, movdi_const_32bit): Here. Use
15290 MOVI_SHORI_BASE_OPERAND_P instead of EXTRA_CONSTRAINT_T.
15291 (movdi_const_16bit): New.
15292 (call, call_value) [flag_pic]: Use GOTPLT.
15293 (call_pop, call_value_pop): New expands.
15294 (call_pop_compact, call_pop_rettramp): New insns.
15295 (call_value_pop_compact, call_value_pop_rettramp): New insns.
15296 (sibcall) [flag_pic]: Use GOT.
15297 (builtint_setjmp_receiver): Remove bogus, unused expand.
15298 (GOTaddr2picreg): Implement for SHcompact and SHmedia.
15299 (*pt, *ptb, ptrel): New insns.
15300 (sym2GOT): Handle DImode GOT.
15301 (sym2GOTPLT, symGOTPLT2reg): New expands.
15302 (sym2PIC): New expand.
15303 (shcompact_return_tramp): Use GOTPLT to return trampoline.
15304 (shcompact_return_tramp_i): Use return register explicitly.
15305 * config/sh/sh.h (OVERRIDE_OPTIONS) [TARGET_SHMEDIA]: Don't
15306 disable flag_reorder_blocks.
15307 2002-01-19 Alexandre Oliva <aoliva@redhat.com>
15308 * config/sh/sh.md (sibcall_compact): Reorder return, uses and
15309 clobbers, for clarity.
15310 (sibcall_epilogue) [TARGET_SHCOMPACT]: Mark saving and
15311 restoring of r0 in macl as MAYBE_DEAD.
15312 2002-01-18 Alexandre Oliva <aoliva@redhat.com>
15313 * config/sh/sh.h (LONG_DOUBLE_TYPE_SIZE): Define.
15314 * config/sh/sh.md (movv4sf_i, movv16sf_i): Fix uses of
15315 alter_subreg all over.
15316 (jump) [TARGET_SHMEDIA]: FAIL to create new jumps after
15317 reload, instead of emitting instructions that would require
15319 (casesi_load_media): Add missing modes.
15320 2001-11-09 Alexandre Oliva <aoliva@redhat.com>
15321 * config/sh/sh.c (sh_expand_prologue): Mark the PIC register
15322 as used if the argument decoder is called.
15323 2001-08-28 Alexandre Oliva <aoliva@redhat.com>
15324 * config/sh/sh.md (udivsi3, divsi3): Load libcall symbol name in
15325 Pmode, then extend it to DImode if necessary.
15326 2001-08-28 Stephen Clarke <Stephen.Clarke@st.com>
15327 * config/sh/sh.h (LEGITIMATE_CONSTANT_P): Don't accept DFmode
15328 constants in FPU-enabled SHmedia, let them be loaded from memory.
15329 2001-08-28 Alexandre Oliva <aoliva@redhat.com>
15330 * config/sh/sh.md (cmpeqdi_media, cmpgtdi_media, cmpgtudi_media):
15331 Adjust whitespace in assembly output templates.
15332 2001-08-28 Stephen Clarke <Stephen.Clarke@st.com>
15333 * config/sh/sh.md (movdicc_false, movdicc_true, movdicc): Adjust
15334 mode of if_then_else.
15335 2001-08-04 Alexandre Oliva <aoliva@redhat.com>
15336 * config/sh/sh64.h (CPP_DEFAULT_CPU_SPEC): Override definition in
15338 2001-07-26 Andrew Haley <aph@cambridge.redhat.com>
15339 Joern Rennecke <amylaar@redhat.com>
15340 * config/sh/sh64.h (CPP_DEFAULT_CPU_SPEC): New.
15341 (SUBTARGET_CPP_PTR_SPEC): New.
15342 (SUBTARGET_CPP_SPEC): Remove.
15343 2001-07-06 Chandrakala Chavva <cchavva@redhat.com>
15344 * config/sh/sh.md (movsf_media_nofpu+1, movdf_media_nofpu+1):
15345 Fix typo in previous checkin.
15346 2001-07-11 Chandrakala Chavva <cchavva@redhat.com>
15347 * config/sh/sh.h (MODES_TIEABLE_P): Fix redact indentations.
15348 2001-07-10 Chandrakala Chavva <cchavva@cygnus.com>
15349 Alexandre Oliva <aoliva@redhat.com>
15350 * config/sh/sh.h (MODES_TIEABLE_P): Don't tie modes wider than
15351 what single FP register can hold for SHmedia target.
15352 2001-07-06 Chandrakala Chavva <cchavva@redhat.com>
15353 Alexandre Oliva <aoliva@redhat.com>
15354 * config/sh/sh.md (movsf_media_nofpu+1, movdf_media_nofpu+1):
15355 Do not split into SUBREG.
15356 2001-06-14 Alexandre Oliva <aoliva@redhat.com>
15357 * config/sh/ushmedia.h, config/sh/sshmedia.h: Updated signatures
15358 and added new functions as specified in SH5 ABI r9.
15359 2001-06-04 Alexandre Oliva <aoliva@redhat.com>
15360 * config/sh/lib1funcs.asm (GCC_nested_trampoline): Align to an
15362 2001-06-03 Alexandre Oliva <aoliva@redhat.com>
15363 * config/sh/sh.c (dump_table): Add const0_rtx in calls of
15364 gen_consttable_4 and gen_consttable_8. Emit multiple labels
15365 and consttable_window_ends.
15366 2001-06-03 Graham Stott <grahams@redhat,com>
15367 * config/sh/sh.md (movdi split): Remove unused variable last_insn.
15368 2001-05-16 Alexandre Oliva <aoliva@redhat.com>
15369 * config/sh/sh.c (print_operand): Handle floating-point pair,
15370 vector and matrix registers.
15371 * config/sh/sh.h (REGISTER_MOVE_COST): Take floating-pointer
15372 vector modes into account.
15373 * config/sh/sh.md (movv2sf): Split move between registers into
15375 (movv4sf, movv16sf): Introduce insns that get split only after
15377 * config/sh/shmedia.h: Fix Copyright dates.
15378 * config/sh/ushmedia.h: Likewise. Move loop counter
15379 declarations into conditionals that uses them.
15380 (sh_media_FVADD_S, sh_media_FVSUB_S): Fix off-by-one error in
15382 * config/sh/sshmedia.h: Fix Copyright dates.
15383 (sh_media_PUTCFG): Fix constraints.
15384 2001-05-12 Alexandre Oliva <aoliva@redhat.com>
15385 * config/sh/sh.h (TARGET_PTRMEMFUNC_VBIT_LOCATION): Define to
15386 ptrmemfunc_vbit_in_delta for SH5.
15387 2001-05-08 Alexandre Oliva <aoliva@redhat.com>
15388 * config/sh/sh.h (TARGET_SWITCHES): Document -m5-*.
15389 * invoke.texi: Likewise.
15390 2001-04-14 Alexandre Oliva <aoliva@redhat.com>
15391 * config/sh/lib1funcs.asm (GCC_push_shmedia_regs,
15392 GCC_push_shmedia_regs_nofpu, GCC_pop_shmedia_regs,
15393 GCC_pop_shmedia_regs_nofpu): New global symbols.
15394 * config/sh/t-sh64 (LIB1ASMFUNCS): Add them.
15395 * config/sh/sh.h (SHMEDIA_REGS_STACK_ADJUST): New macro.
15396 * config/sh/sh.c (calc_live_regs): Account for PR's saving in
15397 compact function with nonlocal labels.
15398 (sh_expand_prologue) [SHcompact]: Push SHmedia regs if needed.
15399 (sh_expand_epilogue) [SHcompact]: Pop them when appropriate.
15400 (initial_elimination_offset): Account for their stack space.
15401 * config/sh/sh.md (shmedia_save_restore_regs_compact): New insn.
15402 * config/sh/sh.md (movsi_media, movsi_media_nofpu, movqi_media,
15403 movhi_media, movdi_media, movdi_media_nofpu, movdf_media,
15404 movdf_media_nofpu, movsf_media, movsf_media_nofpu): Require at
15405 least one of the operands to be a register.
15406 (movv2sf): Likewise. Renamed to movv2sf_i.
15407 (movdi, movdf, movv2sf, movv4sf, movv16sf, movsf):
15408 prepare_move_operands() before emitting SHmedia insns.
15409 2001-04-03 Alexandre Oliva <aoliva@redhat.com>
15410 * config/sh/crti.asm (init, fini) [__SH5__ && ! __SHMEDIA__]:
15411 Don't save nor initialize r12. Don't mis-align the stack.
15412 Pad the code with a nop.
15413 * config/sh/crti.asm: Don't restore r12. Don't mis-align the
15415 2001-03-13 Alexandre Oliva <aoliva@redhat.com>
15416 * gcc/longlong.h (__umulsidi3, count_leading_zeros)
15417 [__SHMEDIA__]: Implement.
15418 2001-03-11 Alexandre Oliva <aoliva@redhat.com>
15419 * config/sh/sh.md: Set latency of `pt' closer to reality.
15420 (movsi_media, movsi_media_nofpu, movdi_media, movdi_media_nofpu,
15421 movdf_media, movdf_media_nofpu, movsf_media, movsf_media_nofpu):
15422 Set move, load and store type attributes.
15423 * config/sh/sh.c (sh_loop_align) [TARGET_SH5]: Set to 3.
15424 * config/sh/sh.h (OVERRIDE_OPTIONS) [TARGET_SH5]: Disable
15426 * config/sh/sh.h (PROMOTE_MODE): Sign-extend SImode to DImode.
15427 * config/sh/sh-protos.h (sh_media_register_for_return): Declare.
15428 * config/sh/sh.c (sh_media_register_for_return): New function.
15429 (sh_expand_prologue) [TARGET_SHMEDIA]: Copy r18 to an available
15430 branch-target register.
15431 (sh_expand_epilogue) [TARGET_SHMEDIA]: Explicitly USE it.
15432 * config/sh/sh.md (return_media_i): Use any call-clobbered
15433 branch-target register.
15434 (return_media): If r18 wasn't copied in the prologue, copy it
15436 * config/sh/sh.h (CONDITIONAL_REGISTER_USAGE) [TARGET_SHMEDIA]:
15437 Clear class FP0_REGS.
15438 * config/sh/sh64.h (LINK_SPEC): Removed incorrect default copied
15440 2001-03-08 DJ Delorie <dj@redhat.com>
15441 * config/sh/sh.h (OVERRIDE_OPTIONS): Disable relaxing for SHMEDIA.
15442 2001-02-09 Alexandre Oliva <aoliva@redhat.com>
15443 * config/sh/sh.md (sibcall_compact): Set fp_mode to single.
15444 2001-02-07 Alexandre Oliva <aoliva@redhat.com>
15445 * config/sh/sh.h (INT_ASM_OP) [SHMEDIA64]: Use `.quad'.
15446 2001-02-03 Alexandre Oliva <aoliva@redhat.com>
15447 * config/sh/sh.h (INIT_CUMULATIVE_ARGS): Compute size of BLKmode
15448 return value correctly for call_cookie.
15449 2001-02-01 Alexandre Oliva <aoliva@redhat.com>
15450 * config/sh/crt1.asm (start): Modified so as to call
15451 ___setup_argv_and_call_main.
15452 2001-01-26 Alexandre Oliva <aoliva@redhat.com>
15453 * config/sh/sh.h (FUNCTION_ARG_ADVANCE): Don't count stack_regs in
15455 2001-01-20 Alexandre Oliva <aoliva@redhat.com>
15456 * config/sh/sh.h (STRIP_DATALABEL_ENCODING): New macro.
15457 (STRIP_NAME_ENCODING): Use it.
15458 (ASM_OUTPUT_LABELREF): Likewise. Don't call assemble_name().
15459 2001-01-19 Alexandre Oliva <aoliva@redhat.com>
15460 * config/sh/sh.md (sgeu) [! SHMEDIA]: Fix invocation of
15461 prepare_scc_operands().
15462 * config/sh/sh.h (SH_DATALABEL_ENCODING): Change to "#"...
15463 (DATALABEL_SYMNAME_P): ... so that we don't need memcmp here.
15464 2001-01-17 Alexandre Oliva <aoliva@redhat.com>
15465 * config/sh/sh.h (STRIP_NAME_ENCODING): Strip leading `*'.
15466 2001-01-13 Alexandre Oliva <aoliva@redhat.com>
15467 * config/sh/sh.md (shcompact_incoming_args): Use R0_REG.
15468 * config/sh/sh.md (R7_REG, R8_REG, R9_REG): Define as constants,
15469 used in shcompact_incoming_args.
15470 * config/sh/sh.c (sh_expand_epilogue): Fix thinko in previous
15472 * config/sh/crt1.asm (start) [SH5]: Switch to single-precision
15474 * config/sh/lib1funcs.asm (sdivsi3_i4, udivsi3_i4, set_fpscr):
15475 Adjust accordingly.
15476 * config/sh/sh.c (sh_expand_prologue, sh_expand_epilogue):
15477 Simplify. Adjust. Add sanity check.
15478 * config/sh/sh.h (TARGET_SWITCHES) [5-compact]: Set
15480 * config/sh/sh.md (udivsi3_i4_single, divsi3_i4_single): Match
15482 (udivsi3, divsi3): Use them.
15483 (force_mode_for_call): New insn.
15484 (call, call_value, sibcall_value): Emit it before SHcompact
15486 2001-01-11 Alexandre Oliva <aoliva@redhat.com>
15487 * config/sh/sh.md (call, call_value, sibcall): Make sure the
15488 call cookie is non-NULL before taking its value.
15489 2001-01-10 Alexandre Oliva <aoliva@redhat.com>
15490 * config.gcc (sh64): Set target_requires_64bit_host_wide_int.
15491 2001-01-09 Alexandre Oliva <aoliva@redhat.com>
15492 * config/sh/sh.md (shcompact_incoming_args): Set argument memory
15494 * config/sh/sh.h (STATIC_CHAIN_REGNUM) [SH5]: Use r1.
15495 * config/sh/sh.c (sh_expand_prologue) [SH5]: Use r0 as
15496 temporary for stack adjusts. Use MACL and MACH to pass
15497 arguments to shcompact_incoming_args.
15498 * config/sh/sh.md (shcompact_incoming_args): Adjust. Don't
15500 * config/sh/lib1funcs.asm (shcompact_incoming_args): Likewise.
15501 (nested_trampoline): Load static chain address into r1.
15502 * config/sh/sh.md (movdi_media splits): Fix sign-extension.
15503 2001-01-07 Alexandre Oliva <aoliva@redhat.com
15504 * config/sh/sh.c (fpul_operand) [SHMEDIA]: Just call
15505 fp_arith_reg_operand().
15506 2001-01-06 Alexandre Oliva <aoliva@redhat.com>
15507 * config/sh/sh.md (casesi): Sign-extend the first two operands,
15508 and use signed compares for them.
15509 * config/sh/sh.c (dump_table): Don't emit 8-byte constants after
15510 4-byte ones. Instead, inter-leave them, maintaining the 8-byte
15511 ones properly aligned.
15512 (find_barrier): Account for extra alignment needed for 8-byte wide
15514 (machine_dependent_reorg): Require a label for the second 4-byte
15515 constant after an 8-byte one.
15516 * config/sh/lib1funcs.asm (sdivsi3): Fix typo in yesterday's
15518 2001-01-05 Alexandre Oliva <aoliva@redhat.com>
15519 * config/sh/sh.c (machine_dependent_reorg) [SHCOMPACT]: Reset
15520 last_float when switching float modes.
15521 * config/sh/sh.md (movdf) [SH5]: Don't use stack-pointer
15522 auto-increment for general-purpose registers.
15523 * config/sh/lib1funcs.asm (sdivsi3) [SHMEDIA]: Sign-extend the
15525 * config/sh/sh.c (sh_expand_prologue) [SH5]: Use r1 as temporary
15527 * config/sh/sh.c (sh_builtin_saveregs): Support using all
15528 registers for varargs.
15529 2001-01-01 Alexandre Oliva <aoliva@redhat.com>
15530 * config/sh/sh.h (FUNCTION_ARG_ADVANCE): Simplify.
15531 * config/sh/sh.h (CALL_COOKIE_STACKSEQ,
15532 CALL_COOKIE_STACKSEQ_SHIFT, CALL_COOKIE_STACKSEQ_GET): New macros.
15533 (CALL_COOKIE_INT_REG_SHIFT): Adjust.
15534 (FUNCTION_ARG_ADVANCE): Use SHCOMPACT_FORCE_ON_STACK. Adjust
15535 call_cookie accordingly.
15536 (FUNCTION_ARG): Test SHCOMPACT_FORCE_ON_STACK.
15537 (SHCOMPACT_BYREF): Likewise.
15538 (SHCOMPACT_FORCE_ON_STACK): New macro.
15539 * config/sh/sh.c (sh_expand_prologue): Use new call_cookie format.
15540 (sh_builtin_saveregs): Likewise.
15541 * config/sh/lib1funcs.asm (shcompact_call_trampoline,
15542 shcompact_incoming_args): Use new shift values. Support
15543 sequences of consecutive and non-consecutive pushes/pops.
15544 * config/sh/sh.md (return): Don't explicitly use PR_REG.
15545 2001-01-05 Hans-Peter Nilsson <hpn@cygnus.com>
15546 * config/sh/sh.h (TEXT_SECTION): Define.
15547 * config/sh/elf.h (ASM_FILE_START): Output TEXT_SECTION_ASM_OP.
15548 2001-01-05 Alexandre Oliva <aoliva@redhat.com>
15549 * config/sh/sh.h (INIT_CUMULATIVE_LIBCALL_ARGS): New macro.
15550 * config/sh/sh.h (BASE_RETURN_VALUE_REG): Use FP regs for
15551 return values on FPU-enabled SHmedia.
15552 (FUNCTION_VALUE_REGNO_P): Mark FIRST_FP_RET_REG as used on
15553 FPU-enabled SHmedia.
15554 (INIT_CUMULATIVE_ARGS): Set up return trampoline only if
15555 value is returned in a non-FP reg and is not returned by
15557 * config/sh/sh.md (shcompact_return_tramp_i): Change type to
15559 2000-01-04 Alexandre Oliva <aoliva@redhat.com>
15560 * config/sh/sh.h (SH_MIN_ALIGN_FOR_CALLEE_COPY): New.
15561 (FUNCTION_ARG_CALLEE_COPIES): Require argument to be
15562 quad-aligned to be passed by callee-copy reference.
15563 2001-01-03 Alexandre Oliva <aoliva@redhat.com>
15564 * config/sh/elf.h (MAX_WCHAR_TYPE_SIZE): Define.
15565 * config/sh/sh64.h (MAX_WCHAR_TYPE_SIZE): Undefine.
15566 2001-01-02 Alexandre Oliva <aoliva@redhat.com>
15567 * config/sh/lib1funcs.asm (shcompact_call_trampoline): Fix error in
15568 copying low-numbered FP regs to r7 and r8.
15569 * config/sh/sh.h (FUNCTION_ARG_ADVANCE): Don't request copying of
15570 FP regs to general-purpose regs only if the copy was passed on the
15572 * config/sh/lib1funcs.asm (shcompact_call_trampoline): Fix typo in
15573 copying FP reg to r9.
15574 * config/sh/sh.h (FUNCTION_ARG_ADVANCE): Use trampoline to
15575 copy FP regs to general-purpose regs only in outgoing calls.
15576 * config/sh/sh.md (movdf_media, movsf_media): Revert incorrect
15577 change from 2000-10-30. Adjust for 64-bit (or 32-bit)
15579 * config/sh/sh.h (struct sh_args): Document all fields.
15580 (FUNCTION_OK_FOR_SIBCALL): Functions that receive arguments
15581 passed partially on the stack should not consider making
15583 * config/sh/sh.h (FUNCTION_ARG_ADVANCE): Add byref regs to
15584 stack_regs only for incoming calls. When passing FP args,
15585 make sure there are FP regs available before modifying
15587 (SHCOMPACT_BYREF): Pass double args in general-purpose
15588 registers by reference.
15589 2000-12-30 Alexandre Oliva <aoliva@redhat.com>
15590 * config/sh/sh.h (FUNCTION_OK_FOR_SIBCALL) [SHCOMPACT]: Don't
15591 attempt to generate sibcalls if the caller got any arguments
15593 * config/sh/lib1funcs.asm (set_fpscr) [SH5]: Default to double.
15594 * config/sh/sh.c (dump_table) [SHCOMPACT]: Align DImode and DFmode
15595 to 8-byte boundaries.
15596 * config/sh/sh.md (shcompact_preserve_incoming_args): New insn.
15597 * config/sh/sh.h (CALL_COOKIE_INT_REG_GET): New macro.
15598 * config/sh/sh.c (sh_expand_prologue): Preserve args that will be
15599 stored in the stack.
15600 * config/sh/lib1funcs.asm (ct_main_table, ia_main_table): Arrange
15601 for the offsets to have the ISA bit set.
15602 (shcompact_call_trampoline): Document. Swap r0 and r1, to match
15603 invocation. Use beq instead of bgt to mark end of sequence of
15605 (shcompact_incoming_args): Fix store of r2. Use beq instead of
15606 bgt to mark end of sequence of stores.
15607 * config/sh/sh.c (arith_operand): Don't check whether
15608 CONST_OK_FOR_J for now.
15609 * config/sh/sh.md (movdf_media, movsf_media): Use HOST_WIDE_INT
15610 instead of long for conversion.
15611 2000-12-29 Alexandre Oliva <aoliva@redhat.com>
15612 * config/sh/sh.c (print_operand_address): Convert INTVAL to int
15613 before passing it to fprintf.
15614 2000-12-28 Alexandre Oliva <aoliva@redhat.com>
15615 * config/sh/crt1.asm (start): Reset SR.FD, to enable the FP unit.
15616 Call set_fpscr before reading/writing SR.
15617 * config/sh/crt1.asm (start): Set SR.SZ and SR.PR, but not SR.FR.
15619 * config/sh/lib1funcs.asm: Add `.align 2' directives before
15621 (FMOVD_WORKS): Define on SH5 with FPU.
15622 (set_fpscr): Define on SH5. Remove separate _fpscr_values
15624 * config/sh/t-sh64 (LIB1ASMFUNCS): Add _set_fpscr instead of
15626 2000-12-28 Hans-Peter Nilsson <hpn@cygnus.com>
15627 * config/sh/lib1funcs.asm (ct_main_table): Align contents to even
15629 (ia_main_table): Ditto.
15630 2000-12-27 Alexandre Oliva <aoliva@redhat.com>
15631 * config/sh/sh.h (MAX_WCHAR_TYPE_SIZE): Don't define.
15632 * config/sh/sh64.h (WCHAR_TYPE, WCHAR_TYPE_SIZE): Reinstate
15633 the definitions from sh.h.
15634 * config/sh/sh.h (PTRDIFF_TYPE): Define as conditional on
15636 (SUBTARGET_CPP_SPEC): Arrange for __PTRDIFF_TYPE__ to be defined.
15637 * config/sh/elf.h (PTRDIFF_TYPE): Likewise.
15638 * config/sh/sh64.h (SUBTARGET_CPP_SPEC): Likewise.
15639 2000-12-26 Alexandre Oliva <aoliva@redhat.com>
15640 * config/sh/sh.md (movdi_media split): Don't add REG_LABEL notes.
15641 Increment LABEL_NUSES.
15643 * config/sh/sh.h (SIZE_TYPE): Define as conditional on
15645 (SUBTARGET_CPP_SPEC): Arrange for __SIZE_TYPE__ to be always
15647 * config/sh/elf.h (SIZE_TYPE): Likewise.
15648 * config/sh/sh64.h (SUBTARGET_CPP_SPEC): Likewise.
15649 * config/sh/lib1funcs.asm (shcompact_call_trampoline,
15650 shcompact_incoming_args): Load switch table addresses using
15652 * config/sh/sh.h (SUBTARGET_CPP_SPEC): Define __SIZE_TYPE__.
15653 (NO_BUILTIN_SIZE_TYPE): Define.
15654 (SIZE_TYPE): Don't define.
15655 * config/sh/sh64.h (SUBTARGET_CPP_SPEC): Define __SIZE_TYPE__.
15656 * config/sh/sh.h (CPP_SPEC): Fixed typo that prevented the
15657 definition of __SH5__=32 for -m5-compact-nofpu.
15658 * config/sh/sh.c (barrier_align): Ensure 32-bit alignment after
15660 2000-12-24 Alexandre Oliva <aoliva@redhat.com>
15661 * config/sh/sh.h (FUNCTION_ARG_PADDING): Removed.
15662 2000-12-23 Alexandre Oliva <aoliva@redhat.com>
15663 * config/sh/sh.h (TARGET_CACHE32): Enable on SH5.
15664 (FUNCTION_BOUNDARY): Ensure 32-bit alignment for SHmedia.
15665 (INSN_LENGTH_ALIGNMENT): Likewise.
15666 2000-12-22 Alexandre Oliva <aoliva@redhat.com>
15667 * config/sh/sh.md (call, call_value, sibcall): Simplify
15668 copying of non-branch-target register.
15669 2000-12-22 Alexandre Oliva <aoliva@redhat.com>
15670 * glimits.h (__LONG_MAX__): Revert 2000-12-13's patch.
15671 * config/sh/sh.h (CPP_SPEC): Define it here for 64-bit SHmedia.
15672 2000-12-22 Alexandre Oliva <aoliva@redhat.com>
15673 * config/sh/sh.h (GET_SH_ARG_CLASS): Handle complex
15674 floating-point values as structs.
15675 (FUNCTION_ARG): Use SH5_PROTOTYPED_FLOAT_ARG.
15676 (SH5_PROTOTYPELESS_FLOAT_ARG): List FP registers before
15677 general-purpose register.
15678 (SH5_PROTOTYPED_FLOAT_ARG): New macro.
15679 2000-12-20 Alexandre Oliva <aoliva@redhat.com>
15680 * config/sh/sh.md (addsi3): Force operand1 to reg for SHmedia.
15681 * config/sh/sh.md (movsi_media): Split CONST_DOUBLE loads too.
15682 * config/sh/sh.h (DATALABEL_REF_P): Don't require the CONST.
15683 (ENCODE_SECTION_INFO): Enclose variables and constants in
15685 (SH_DATALABEL_ENCODING, DATALABEL_SYMNAME_P): Define.
15686 (STRIP_NAME_ENCODING): Strip SH_DATALABEL_ENCODING off.
15687 (ASM_OUTPUT_LABELREF, AMS_OUTPUT_SYMBOL_REF): Define.
15688 * config/sh/sh.c (gen_datalabel_ref): Use UNSPEC_DATALABEL
15689 only for LABEL_REFs. For SYMBOL_REFs, prepend
15690 SH_DATALABEL_ENCODING to the symbol name.
15691 * config/sh/sh.md (indirect_jump): Use SUBREG instead of
15693 2000-12-20 Alexandre Oliva <aoliva@redhat.com>
15694 * config/sh/sh.md (casesi): Enclose ADDR_DIFF_VEC address in
15696 * config/sh/sh.c (gen_datalabel_ref): Accept LABEL_REFs.
15697 * config/sh/sh.h (DATALABEL_REF_NO_CONST_P): Likewise.
15698 (DATALABEL_REF_P): Don't require CONST.
15699 (ASM_OUTPUT_ADDR_DIFF_ELT): On SH5, output datalabel before
15701 2000-12-19 Alexandre Oliva <aoliva@redhat.com>
15702 * config/sh/sh.md (extendhidi2, extendqidi2): Use arithmetic shift
15704 2000-12-18 Alexandre Oliva <aoliva@redhat.com>
15705 * config/sh/sh.md (movsi_media, call, call_value, sibcall):
15706 Use shallow_copy_rtx and PUT_MODE to change the mode of
15707 SYMBOL_REFs, LABEL_REFs, CONSTs, etc.
15708 * config/sh/sh.h (PREFERRED_RELOAD_CLASS): Reload SYMBOL_REFs
15709 on SHmedia using GENERAL_REGs.
15710 * config/sh/sh.md (ble_media_i, blt_media_i, bleu_media_i,
15711 bltu_media_i): Fix reversion of conditions.
15712 2000-12-18 Alexandre Oliva <aoliva@redhat.com>
15713 * config/sh/sh.md (zero_extendhidi2): Use logical shift right.
15714 * config/sh/sh.c (output_far_jump): Save r13 in macl.
15715 2000-12-17 Alexandre Oliva <aoliva@redhat.com>
15716 * config/sh/sh.c (gen_datalabel_ref): Fix mode of the UNSPEC.
15717 2000-12-16 Alexandre Oliva <aoliva@redhat.com>
15718 * config/sh/lib1funcs.asm (ic_invalidate): Define for SH5.
15719 (GCC_nested_trampoline): Likewise.
15720 * config/sh/sh-protos.h (gen_datalabel_ref): Declare.
15721 * config/sh/sh.c (gen_datalabel_ref): Define.
15722 * config/sh/sh.h (TRAMPOLINE_SIZE): Adjust for SH5.
15723 (INITIALIZE_TRAMPOLINE): Likewise.
15724 (TRAMPOLINE_ADJUST_ADDRESS): Define.
15725 (DATALABEL_REF_NO_CONST_P, DATALABEL_REF_P): Define.
15726 (EXTRA_CONSTRAINT_T): Match DATALABEL unspecs.
15727 (OUTPUT_ADDR_CONST_EXTRA): Handle DATALABEL unspecs.
15728 * config/sh/sh.md (UNSPEC_DATALABEL): New constant.
15729 (ic_invalidate): Adjust for SH5.
15730 (ic_invalidate_line_media, ic_invalidate_line_compact): New insns.
15731 * config/sh/t-sh64 (LIB1ASMFUNCS): Added _ic_invalidate and
15732 _nested_trampoline.
15733 2000-12-15 Alexandre Oliva <aoliva@redhat.com>
15734 * config/sh/sh.h (MOVE_MAX): Set to 8 for SHmedia, 4 elsewhere.
15735 (MOVE_MAX_PIECES): Set to 8 on SHmedia too.
15736 2000-12-14 Alexandre Oliva <aoliva@redhat.com>
15737 * config/sh/sh.h (DBX_REGISTER_NUMBER): Adjust for sh64-elf-gdb.
15738 * config/sh/elf.h (DBX_REGISTER_NUMBER): Likewise.
15739 2000-12-14 Alexandre Oliva <aoliva@redhat.com>
15740 * config/sh/sh.c (target_reg_operand): Match only target-branch
15741 registers and pseudos that aren't virtual registers.
15742 * config/sh/sh.md (call, call_value, sibcall) [TARGET_SHMEDIA]:
15743 Copy operands that don't match target_reg_operand to pseudos.
15744 (call_media, call_value_media, sibcall_media): Use
15745 target_reg_operand instead of target_operand.
15746 2000-12-13 Alexandre Oliva <aoliva@redhat.com>
15747 * glimits.h (__LONG_MAX__) [SH5 == 64]: Adjust for 64 bits.
15748 * config/sh/sh.c (target_reg_operand): Match hardware registers
15749 other than branch-target registers.
15750 * config/sh/sh.md (zero_extendqidi2): Input operand is %1.
15751 * config/sh/lib1funcs.asm (sdivsi3) [SH5]: Make it global.
15752 (fpscr_values) [SH5 == 32]: Define.
15753 * config/sh/t-sh64 (LIB1ASMFUNCS): Add fpscr_values.
15754 * config/sh/sh.md (call, call_value, sibcall) [TARGET_SHMEDIA]:
15755 Handle function addresses coming in SUBREGs.
15756 2000-12-12 Alexandre Oliva <aoliva@redhat.com>
15757 * config/sh/lib1funcs.asm (shcompact_call_trampoline,
15758 shcompact_return_trampoline): Use datalabel where appropriate.
15759 2000-12-09 Alexandre Oliva <aoliva@redhat.com>
15760 * config/sh/sh.h (SECONDARY_OUTPUT_RELOAD_CLASS): Use a
15761 general-purpose register to copy one branch-target register to
15763 2000-12-06 Alexandre Oliva <aoliva@redhat.com>
15764 * config/sh/sh.c (target_operand): Accept LABEL_REFs and
15765 SYMBOL_REFs with VOIDmode.
15766 * config/sh/sh.md (ble_media_i, blt_media_i, bleu_media_i,
15767 bltu_media_i): New insns.
15768 2000-12-06 Alexandre Oliva <aoliva@redhat.com>
15769 * config/sh/sh.h (RETURN_IN_MEMORY): Adjust for SH5 ABI.
15770 (INIT_CUMULATIVE_ARGS): Likewise.
15771 2000-12-01 Alexandre Oliva <aoliva@redhat.com>
15772 * machmode.def (V16SFmode): New mode.
15773 * c-common.c (type_for_mode): Support V2SF and V16SF.
15774 * tree.c (build_common_tree_nodes_2): Likewise.
15775 * tree.h (tree_index): Likewise.
15776 * calls.c (emit_call_1): Take args_so_far. Adjust all
15777 callers. Introduce CALL_POPS_ARGS.
15778 * tm.texi (CALL_POPS_ARGS): Document.
15779 * config/sh/crt1.asm: Implement in SHmedia mode.
15780 * config/sh/crti.asm, config/sh/crtn.asm: Likewise
15781 * config/sh/elf.h (ASM_SPEC, LINK_SPEC): Support SH5 flags.
15782 (DBX_REGISTER_NUMBER): Renumber registers for SH5.
15783 * config/sh/lib1funcs.asm: Disable functions unused in SH5.
15784 Implement divsi and udivsi in SHmedia mode. Introduce
15785 SHcompact trampolines.
15786 * config/sh/sh.c (GEN_MOV, GEN_ADD3, GEN_SUB3): Use DImode
15788 (regno_reg_class): Rewrite.
15789 (fp_reg_names): Remove.
15790 (sh_register_names, sh_additional_register_names): New.
15791 (print_operand): Added `u'. Support SUBREGs in addresses.
15792 Add parentheses around shifted CONSTs.
15793 (output_file_start): Output .mode and .abi directives.
15794 (shiftcosts, addsubcosts, multcosts): Adjust.
15795 (output_stack_adjust): Compute alignment. Sanity-check SIZE.
15796 (push_regs): Take array of HOST_WIDE_INTs. Adjust callers.
15797 (calc_live_regs): Output to array of HOST_WIDE_INTs. Count
15798 bytes, not registers. Take into account the need for the
15799 SHcompact incoming args trampoline. Adjust all callers.
15800 (sh_expand_prologue): Take stack_regs into account. Call
15801 incoming args trampoline. Keep stack aligned as per SH5 ABI.
15802 (sh_expand_epilogue): Take stack_regs into accoutn. Keep
15803 stack aligned as per SH5 ABI.
15804 (sh_builtin_saveregs): Support SH5 ABI.
15805 (sh_build_va_list, sh_va_start): Likewise.
15806 (initial_elimination_offset): Take alignment into account.
15807 Compute location of PR according to the SH5 stack frame.
15808 (arith_reg_operand): Reject branch-target registers.
15809 (shmedia_6bit_operand): New.
15810 (logical_operand): Use CONST_OK_FOR_P on SHmedia.
15811 (target_reg_operand): Match DImode only. Accept SUBREGs.
15812 (target_operand): New.
15813 * config/sh/sh.h (CPP_SPEC, SUBTARGET_CPP_SPEC): Support SH5 flags.
15814 (CONDITIONAL_REGISTER_USAGE): Implement SH5 ABI. Initialize
15815 SIBCALL_REGS for SHmedia.
15816 (TARGET_SH3E, TARGET_SH4): Only if SH1_BIT is set too.
15817 (TARGET_FPU_DOUBLE, TARGET_FPU_ANY): New.
15818 (TARGET_SHMEDIA32, TARGET_SHMEDIA64): New.
15819 (TARGET_SWITCHES): New SH5 flags.
15820 (OVERRIDE_OPTIONS): Set SH5-specific options. Use
15821 VALID_REGISTER_P to disable unsupported registers.
15822 (LONG_TYPE_SIZE, LONG_LONG_TYPE_SIZE): Set.
15823 (POINTER_SIZE, PARM_BOUNDARY): Adjust.
15824 (FUNCTION_ARG_PADDING): Define.
15825 (FASTEST_ALIGNMENT): Adjust.
15826 (SH_REGISTER_NAMES_INITIALIZER): New.
15827 (sh_register_names): Declare.
15828 (DEBUG_REGISTER_NAMES): Define.
15829 (REGISTER_NAMES): Define based on sh_register_names.
15830 (SH_ADDITIONAL_REGISTER_NAMES_INITIALIZER): New.
15831 (sh_additional_register_names): Declare.
15832 (LAST_GENERAL_REG, LAST_FP_REG, LAST_XD_REG): Adjust for SHmedia.
15833 (FIRST_TARGET_REG, LAST_TARGET_REG): Define.
15834 (TARGET_REGISTER_P, SHMEDIA_REGISTER_P, VALID_REGISTER_P): Define.
15835 (REGISTER_NATURAL_MODE): Define.
15836 (FIRST_PSEUDO_REGISTER): Adjust.
15837 (FIXED_REGISTERS, CALL_USED_REGISTERS): Adjust.
15838 (HARD_REGNO_CALL_PART_CLOBBERED): Define.
15839 (HARD_REGNO_NREGS, HARD_REGNO_MODE_OK): Adjust.
15840 (VECTOR_MODE_SUPPORTED_P): Define.
15841 (REG_CLASS_CONTENTS): Adjust.
15842 (SMALL_REGISTER_CLASSES): Adjust.
15843 (REG_ALLOC_ORDER): Adjust.
15844 (INDEX_REG_CLASS): Adjust.
15845 (CONST_OK_FOR_O, CONST_OK_FOR_P): New.
15846 (CONST_OK_FOR_LETTER_P): Adjust.
15847 (PREFERRED_RELOAD_CLASS): Adjust.
15848 (SECONDARY_OUTPUT_RELOAD_CLASS): Adjust.
15849 (SECONDARY_INPUT_RELOAD_CLASS): Adjust.
15850 (NPARM_REGS, FIRST_PARM_REG, FIRST_RET_REG): Adjust.
15851 (FIRST_FP_PARM_REG): Adjust.
15852 (CALL_POPS_ARGS): Define.
15853 (FUNCTION_ARG_REGNO_P): Adjust.
15854 (struct sh_args): New fields.
15855 (GET_SH_ARG_CLASS): Adjust.
15856 (INIT_CUMULATIVE_ARGS): Adjust.
15857 (INIT_CUMULATIVE_INCOMING_ARGS): Define.
15858 (FUNCTION_ARG_ADVANCE): Adjust.
15859 (FUNCTION_ARG): Adjust.
15860 (FUNCTION_ARG_PASS_BY_REFERENCE, SHCOMPACT_BYREF): Define.
15861 (FUNCTION_ARG_CALLEE_COPIES): Define.
15862 (SH5_PROTOTYPELESS_FLOAT_ARG): Define.
15863 (STRICT_ARGUMENT_NAMING): Define.
15864 (PRETEND_OUTGOING_VARARGS_NAMED): Adjust.
15865 (FUNCTION_ARG_PARTIAL_NREGS): Adjust.
15866 (SH5_WOULD_BE_PARTIAL_NREGS): Define.
15867 (SETUP_INCOMING_VARARGS): Adjust.
15868 (HAVE_POST_INCREMENT, HAVE_PRE_DECREMENT): Adjust.
15869 (USE_LOAD_POST_INCREMENT, USE_STORE_PRE_DECREMENT): Adjust.
15870 (REGNO_OK_FOR_INDEX_P, REG_OK_FOR_INDEX_P): Adjust.
15871 (SUBREG_OK_FOR_INDEX_P): Adjust.
15872 (EXTRA_CONSTRAINT_S): Update.
15873 (EXTRA_CONSTRAINT_T): New.
15874 (EXTRA_CONSTRAINT): Adjust.
15875 (GO_IF_LEGITIMATE_INDEX): Adjust.
15876 (GO_IF_LEGITIMATE_ADDRESS): Adjust.
15877 (LEGITIMIZE_ADDRESS, LEGITIMIZE_RELOAD_ADDRESS): Adjust.
15878 (MOVE_MAX): Adjust.
15879 (MAX_MOVE_MAX): Define.
15881 (CONST_COSTS): Adjust.
15882 (REGISTER_MOVE_COST): Adjust.
15883 (BRANCH_COST): Adjust.
15884 (TEXT_SECTION_ASM_OP): Adjust.
15885 (DBX_REGISTER_NUMBER): Adjust.
15886 (ASM_OUTPUT_DOUBLE_INT): New.
15887 (UNALIGNED_DOUBLE_INT_ASM_OP): New.
15888 (PREDICATE_CODES): Adjust.
15889 (PROMOTE_MODE): Adjust.
15890 (CRT_CALL_STATIC_FUNCTION): Do not define for SHmedia.
15891 * config/sh/sh.md (AP_REG, PR_REG, T_REG, GBR_REG): Renumber.
15892 (MACH_REG, MACL_REG, FPUL_REG, RAP_REG, FPSCR_REG): Renumber.
15893 (PR_MEDIA_REG, T_MEDIA_REG, R10_REG): New.
15894 (DR0_REG, DR2_REG, DR4_REG): Renumber.
15895 (TR0_REG, TR1_REG, TR2_REG): New.
15896 (XD0_REG): Renumber.
15897 (UNSPEC_COMPACT_ARGS): New.
15898 (type): Added pt and ptabs.
15899 (length): Default to 4 on SHmedia. Default pt length to 12
15900 and 20 on SHmedia32 and SHmedia64, respectively.
15901 (pt): New function unit.
15902 (movdi, movsi): Add types pt and ptabs. Don't increment LABEL_NUSES.
15903 Add whitespace between operands of SHmedia instructions.
15905 (adddi3_media, addsi3_media): Adjust constraints.
15906 (subsi3) [SHmedia]: Force operand 1 into a register.
15907 (udivsi3_i1_media, udivsi3_i4_media): New.
15908 (udivsi3): Support SHmedia.
15909 (divsi3_i1_media, divsi3_i4_media): New.
15910 (divsi3): Support SHmedia.
15911 (anddi3, iordi3, xordi3): Adjust constraints.
15912 (zero_extendhidi2, zero_extendqidi2): New.
15913 (extendsidi2, extendhidi2, extendqidi2): New.
15914 (push, pop, push_e, push_fpul, push_4): Disable on SH5.
15915 (pop_e, pop_fpul, pop_4): Likewise.
15916 (movsi_media): Support FP and BT registers.
15917 (movsi_media_nofpu): New. Adjust splits to DImode.
15918 (lduw, ldub): Renamed to zero_extend* above.
15919 (movqi_media): Fix typo.
15920 (movdi_media): Support FP and BT registers.
15921 (movdi_media_nofpu): New. Adjust splits for SHmedia32.
15922 (movdi_const_32bit): New.
15923 (shori_media): Require immediate operand. Use `u' for output.
15924 (movdf_media, movsf_media): Simplified.
15925 (movdf_media_nofpu, movsf_media_nofpu): New.
15926 (movdf, movsf): Adjust
15927 (movv2sf, movv2sf, movv16sf): New.
15928 (beq_media, beq_media_i): Adjust constraints. Don't use
15929 scratch BT register.
15930 (bne_media, bne_media_i): Likewise.
15931 (bgt_media, bgt_media_i): Likewise.
15932 (bge_media, bge_media_i): Likewise.
15933 (bgtu_media, bgtu_media_i): Likewise.
15934 (bgeu_media, bgeu_media_i): Likewise.
15935 (beq, bne, bgt, blt, ble, bge, bgtu, bltu, bgeu, bleu,
15936 bunordered): Emit jump insn. Force operands to registers when
15938 (jump_media, jump): Simplify.
15939 (call_compact, call_compact_rettramp): New.
15940 (call_value_compact, call_value_compact_rettramp): New.
15941 (call_media, call_value_media): Simplify.
15942 (sibcall_compact, sibcall_media): New.
15943 (call, call_value): Adjust for SHmedia and SHcompact.
15944 (sibcall, sibcall_value, untyped_call): Likewise.
15945 (sibcall_epilogue): Preserve r0 across epilogue for SHcompact.
15946 (indirect_jump): Adjust for SHmedia.
15947 (casesi_jump_media): New.
15948 (nop): Re-enable for SHmedia.
15949 (call_site): Restrict to SH1.
15950 (casesi): Adjust for SHmedia.
15951 (casesi_shift_media, casesi_load_media): New.
15952 (return): Explicitly use PR register. Call return trampoline
15954 (return_i): Explicitly use PR register.
15955 (shcompact_return_tramp, shcompact_return_tramp_i): New.
15956 (return_media): Adjust.
15957 (shcompact_incoming_args): New.
15958 (epilogue): Adjust.
15959 (seq, slt, sle, sgt, sge, sgtu, sltu, sleu, sgeu, sne): Adjust.
15960 (movstrsi): Disable on SH5.
15961 (fpu_switch0, fpu_switch1, movpsi): Enable on SH4.
15962 (addsf3, addsf3_media): Test TARGET_SHMEDIA_FPU.
15963 (subsf3, subsf3_media): Likewise.
15964 (mulsf3, mulsf3_media, mac_media): Likewise.
15965 (divsf3, divsf3_media): Likewise.
15966 (floatdisf2, floatsisf2_media): Likewise. Adjust constraints.
15967 (floatsisf2, fux_truncsfsi2): Likewise.
15968 (fix_truncsfdi2, fix_truncsfsi2_media): Likewise. Adjust
15970 (cmpeqsf_media, cmpgtsf_media, cmpgesf_media): Likewise.
15971 (cmpunsf_media, cmpsf): Likewise.
15972 (negsf2, negsf2_media, sqrtsf2, sqrtsf2_media): Likewise.
15973 (abssf2, abssf2_media): Likewise.
15974 (adddf3, adddf3_media, subdf3, subdf3_media): Likewise.
15975 (muldf3, muldf3_media, divdf3, divdf3_media): Likewise.
15976 (floatdidf2, floatsidf2_media): Likewise. Adjust constraints.
15977 (floatsidf2, fix_truncdfsi2): Likewise.
15978 (fix_truncdfdi2, fix_truncdfsi2_media): Likewise. Adjust
15980 (cmpeqdf_media, cmpgtdf_media): Likewise.
15981 (cmpgedf_media, cmpundf_media, cmpdf): Likewise.
15982 (negdf2, negdf2_media, sqrtdf2, sqrtdf2_media): Likewise.
15983 (absdf2, absdf2_media): Likewise.
15984 (extendsfdf2, extendsfdf2_media): Likewise.
15985 (truncsfdf2, truncsfdf2_media): Likewise.
15986 * config/sh/sh64.h: New file.
15987 * config/sh/t-sh64: New file.
15988 * config/sh/shmedia.h: New file.
15989 * config/sh/ushmedia.h: New file.
15990 * config/sh/sshmedia.h: New file.
15991 * configure.in: Added sh64-*-elf.
15992 * configure: Rebuilt.
15993 2000-10-10 Alexandre Oliva <aoliva@redhat.com>
15994 * config/sh/sh.c (GEN_MOV, GEN_ADD3, GEN_SUB3): New macros.
15995 (reg_class_from_letter): Use `b' for TARGET_REGS.
15996 (print_operand): Support `%M', `%m', `AND' and
15997 `ASHIFTRT'. Do not precede constants with `#' on SHmedia.
15998 (andcosts): Adjust for SHmedia.
15999 (output_stack_adjust, sh_expand_prologue, sh_expand_epilogue):
16001 (target_reg_operand): New function.
16002 * config/sh/sh-protos.h (target_reg_operand): Declare.
16003 * config/sh/sh.h (CONDITIONAL_REGISTER_USAGE): Don't disable
16004 FP registers on SH5.
16005 (HARD_REGNO_MODE_OK): Accept them whenever they're acceptable
16007 (TARGET_REGISTER_P): New macro.
16008 (reg_class, REG_CLASS_NAMES, REG_CLASS_CONTENTS): Added TARGET_REGS.
16009 (FUNCTION_VALUE): Use DImode for promoted types on SHmedia.
16010 (EXTRA_CONSTRAINT_S): New macro.
16011 (EXTRA_CONSTRAINT): Adjust.
16012 (FLOAT_TYPE_SIZE): Define to 32.
16013 (Pmode): DImode on SHmedia.
16014 (CONST_COSTS): Adjust for SHmedia literals.
16015 (PREDICATE_CODES): Added target_reg_operand.
16016 (PROMOTE_MODE): Promote signed types to DImode on SHmedia.
16017 * config/sh/sh.md: Remove all attrs from SHmedia insns.
16018 (cmpeqdi_media, cmpgtdi_media, cmpgtudi_media): New insns.
16019 (cmpdi): Accept SHmedia.
16020 (movdicc_false, movdicc_true): New insns.
16021 (movdicc): New expand.
16022 (adddi3): Accept arith_operand for op2, but FAIL on SH1 if
16024 (addsi3_media): Match `S' constraint.
16025 (anddi3, andcdi3, iordi3, xordi3, negdi_media): New insns.
16026 (negdi2): Expand for SHmedia.
16027 (one_cmpldi2): New expand.
16028 (zero_extendsidi2): Change from expand to insn.
16029 (extendsidi2): Add constraints.
16030 (movdi_media, movsi_media): Change `%x' to `%M'. Use `%m' for
16031 LD/ST address. Fix SI immediate loading split.
16032 (movhi_media, movqi_media, lduw, ldub): New insns.
16033 (movhi, movqi): Accept SHmedia.
16034 (shori_media, movdi_media): Relax input constraints. Split
16035 symbolic constants.
16036 (movdf_media, movsf_media): New insn. New split to movdi.
16037 (movdf, movsf): Match on SHmedia.
16038 (beq_media, bne_media, bgt_media, bge_media, bgtu_media,
16039 bgeu_media): New insns and splits. New insns with `_i' suffix.
16040 (beq, bne, bgt, blt, ble, bge, bgtu, bltu, bgeu, bleu): Adjust.
16041 (bunordered): New expand.
16042 (jump_compact): Renamed from `jump'.
16043 (jump_media): New insn.
16044 (jump): New expand.
16045 (call_media, call_value_media): New insns.
16046 (call, call_value): Adjust.
16047 (indirect_jump_compact): Renamed from `indirect_jump'.
16048 (indirect_jump_media): New insn.
16049 (indirect_jump): New expand.
16050 (untyped_call, return): Accept SHmedia.
16051 (return_media): New insn.
16052 (prologue, epilogue, blockage): Accept SHmedia.
16053 (seq, slt, sle, sgt, sge, sgtu, sltu, sleu, sgeu, sne): Adjust.
16054 (sunordered): New expand.
16055 (addsf3, subsf3, mulsf3, divsf3, floatsisf2, fix_truncsfsi2,
16056 cmpsf, negsf2, sqrtsf2, abssf2): Adjust for SHmedia.
16057 (addsf3_media, subsf3_media, mulsf3_media, mac_media,
16058 divsf3_media, floatdisf2, floatsisf2_media, fix_truncsfdi2,
16059 fix_truncsfsi2_media, cmpeqsf_media, cmpgtsf_media,
16060 cmpgesf_media, cmpunsf_media, negsf2_media, sqrtsf2_media,
16061 abssf2_media): New insns.
16062 (adddf3, subdf3, muldf3, divdf3, floatsidf2, fix_truncdfsi2,
16063 cmpdf, negdf2, sqrtdf2, absdf2): Adjust for SHmedia.
16064 (adddf3_media, subdf3_media, muldf3_media, divdf3_media,
16065 floatdidf2, floatsidf2_media, fix_truncdfdi2,
16066 fix_truncdfsi2_media, cmpeqdf_media, cmpgtdf_media,
16067 cmpgedf_media, cmpundf_media, negdf2_media, sqrtdf2_media,
16068 absdf2_media): New insns.
16069 (extendsfdf2, truncdfsf2): Adjust for SHmedia.
16070 (extendsfdf2_media, truncdfsf2_media): New insns.
16071 2000-09-14 Alexandre Oliva <aoliva@redhat.com>
16072 * config/sh/sh.c (machine_dependent_reorg): On shmedia, skip for now.
16073 * config/sh/sh.h (CONST_OK_FOR_J): Document.
16074 (LEGITIMATE_CONSTANT_P): Accept CONST_DOUBLEs on shmedia.
16075 * config/sh/sh.md (adddi3): New expand.
16076 (adddi3_media, adddi3z_media): New insns.
16077 (adddi3_compact): Renamed from adddi3.
16078 (addsi3_media): Use add.l r63 to add constant zero.
16079 (subdi3): New expand.
16080 (subdi3_media): New insn.
16081 (subdi3_compact): Renamed from subdi3.
16082 (mulsidi3): New expand.
16083 (mulsidi3_media): New insn.
16084 (mulsidi3_compact): Renamed from mulsidi3.
16085 (umulsidi3): New expand.
16086 (umulsidi3_media): New insn.
16087 (umulsidi3_compact): Renamed from umulsidi3.
16088 (ashlsi3_media, ashrsi3_media, lshrsi3_media): New insns.
16089 (ashlsi3, ashrsi3, lshrsi3): Use them.
16090 (ashldi3_media, ashrdi3_media, lshrdi3_media): New insns.
16091 (ashldi3, ashrdi3, lshrdi3): Use them.
16092 (zero_extendsidi2): New expand.
16093 (extendsidi2): New insn.
16094 (movsi_media): New insn. Split to movdi to load constants.
16095 (movsi): Enable for shmedia.
16096 (movdi_media): New insn. Use shori_media to load wide constants.
16097 (short_media): New insn.
16098 (movdi): Enable for shmedia.
16099 2000-09-08 Alexandre Oliva <aoliva@redhat.com>
16100 * config/sh/sh.h (CPP_SPEC): Added `m5'.
16101 (SUBTARGET_CPP_SPEC): Added `!m5'.
16102 (SH5_BIT, TARGET_SH5, TARGET_SHMEDIA, TARGET_SHCOMPACT): New macros.
16103 (TARGET_SWITCHES): Added `5' and `5-compact'. Added SH1_BIT
16104 to all other SH variants.
16105 (TARGET_DEFAULT): Set to SH1_BIT.
16106 (OVERRIDE_OPTIONS): Recognize sh5 CPU.
16107 (BITS_PER_WORD): Raise to 64 on shmedia.
16108 (MAX_BITS_PER_WORD): Change to 64.
16109 (MAX_LONG_TYPE_SIZE, MAX_WCHAR_TYPE_SIZE): Set to MAX_BITS_PER_WORD.
16110 (INT_TYPE_SIZE): Keep as 32.
16111 (UNITS_PER_WORD): Raise to 8 on shmedia.
16112 (MIN_UNITS_PER_WORD): Keep as 4.
16113 (POINTER_SIZE): Raise to 64 on shmedia.
16114 (CONST_OK_FOR_J): New macro.
16115 (CONST_OK_FOR_LETTER_P): Use it.
16116 (processor_type): Add PROCESSOR_SH5.
16117 * config/sh/sh.md: Conditionalize all expands, insns and
16118 splits to TARGET_SH1.
16120 (addsi3_compact): Renamed from...
16121 (addsi3): Now an expand.
16122 (addsi3_media, subsi3_media): New insns.
16123 (subsi3): Don't negate constants with SHmedia.
16125 * hooks.c: New file.
16126 * hooks.h: New file.
16127 * Makefile.in (HOOKS_H): New.
16128 (TARGET_DEF_H): Added $(HOOKS_H).
16129 (OBJS): Added hooks.o.
16130 (cfgcleanup.o, bb-reorder.o): Added target.h.
16131 (hooks.o): Added dependencies.
16132 * target-def.h (TARGET_CANNOT_MODIFY_JUMPS_P): New, added to...
16133 (TARGET_INITIALIZER): this.
16134 * doc/tm.texi (TARGET_CANNOT_MODIFY_JUMPS_P): Document.
16135 * target.h (struct gcc_target): Added cannot_modify_jumps_p.
16136 * bb-reorder.c: Include target.h.
16137 (reorder_basic_blocks): Skip if cannot modify jumps.
16138 * cfgcleanup.c: Include target.h.
16139 (try_optimize_cfg): Skip merge blocking if cannot modify jumps.
16141 2002-02-08 Chris Demetriou <cgd@broadcom.com>
16143 * config/mips/mips.md (casesi_internal, casesi_internal_di):
16144 Protect jump delay slot instructions with .set noreorder and
16147 2002-02-08 Chris Demetriou <cgd@broadcom.com>
16149 * config/mips/mips.md (casesi_internal_di): Calculate
16150 the index into the target offset table correctly.
16152 2002-02-08 Richard Henderson <rth@redhat.com>
16154 * expr.c (expand_expr): Mind EXPAND_INITIALIZER for truncation also.
16155 * final.c (output_addr_const): Accept and discard SUBREG.
16156 * varasm.c (decode_addr_const): Don't abort on unknown expressions --
16157 mark them unknown instead.
16158 (simplify_subtraction): Handle RTX_UNKNOWN.
16159 (initializer_constant_valid_p): Strip NOP_EXPRs that narrow the mode.
16161 2002-02-08 David Edelsohn <edelsohn@gnu.org>
16163 * doc/invoke.texi (RS/6000 and PowerPC Options): Fix typo.
16165 2002-02-08 Richard Henderson <rth@redhat.com>
16167 * config/alpha/elf.h (ASM_OUTPUT_ALIGNED_BSS): New.
16169 2002-02-08 Andreas Jaeger <aj@suse.de>
16171 * config.gcc (x86_64-*-linux): Add t-linux64 makefile fragment.
16172 * config/i386/t-linux64: New file.
16174 2002-02-08 Jakub Jelinek <jakub@redhat.com>
16176 * c-common.c (c_expand_expr): Revert 2002-02-06 patch.
16177 * c-parse.in (compstmt): Clear last_expr_type.
16179 2002-02-07 Richard Henderson <rth@redhat.com>
16181 * loop.c (strength_reduce): Sink final_value when not
16184 2002-02-07 David O'Brien <obrien@FreeBSD.org>
16186 * config/sparc/freebsd.h: Fix mismatched spec {.
16188 2002-02-07 Richard Henderson <rth@redhat.com>
16190 * cfgrtl.c: Include recog.h and insn-config.h.
16191 (keep_with_call_p): Fix general_operand invocation.
16192 * Makefile.in (cfgrtl.o): Update dependencies.
16194 2002-02-07 Kazu Hirata <kazu@hxi.com>
16196 * config/h8300/h8300.c (two_insn_adds_subs_operand): Revise a
16197 comment. Accept HImode only if TARGET_H8300.
16199 2002-02-07 Eric Christopher <echristo@redhat.com>
16201 * config/mips/crtn.asm: Cleanup #ifdefs.
16203 2002-02-07 Eric Christopher <echristo@redhat.com>
16205 * config/mips/crti.asm: Add changes for mips16. mips16 uses
16206 register 7 as RA instead of $31.
16207 * config/mips/crtn.asm: Ditto.
16208 * config/mips/mips.c (mips_move_2words): Add case for
16209 TARGET_MIPS16 when HOST_BITS_PER_WIDE_INT >= 64.
16210 (compute_frame_size): Fix typo.
16211 (save_restore_insns): Ditto. Make documentation about using
16212 register $7 as return register more precise.
16213 (mips_expand_epilogue): Fix comment. Add code to work around not
16214 being able to add to the stack pointer directly.
16215 * config/mips/mips.h (EH_RETURN_DATA_REGNO): Change register number
16216 to 2 for TARGET_MIPS16 as we need 6 and 7 as clobbers in the
16219 2002-02-07 Tom Rix <trix@redhat.com>
16221 * config/rs6000/rs6000.c (reg_or_aligned_short_operand): New. For
16222 immediates in ldu and stdu DS opcode field.
16223 * config/rs6000/rs6000.md (movdi_update, movdi_update1): Use.
16224 * config/rs6000/rs6000-protos.h: Add reg_or_aligned_short_operand.
16225 * config/rs6000/rs6000.h (PREDICATE_CODES): Same.
16227 2002-02-07 Jeff Sturm <jsturm@one-point.com>
16229 * config/sparc/sparc.c (compute_frame_size): Don't correct frame
16230 offset for stack bias.
16232 2002-02-07 H.J. Lu <hjl@gnu.org>
16234 * config/mips/linux.h (SUBTARGET_ASM_DEBUGGING_SPEC): Defined.
16236 2002-02-07 Ulrich Weigand <uweigand@de.ibm.com>
16238 * testsuite/gcc.dg/cpp/charconst-2.c: Add -fsigned-char option.
16240 Thu Feb 7 12:14:17 CET 2002 Jan Hubicka <jh@suse.cz>
16242 * i386-protos.h (x86_order_regs_for_local_alloc): Declare
16243 * i386.c (x86_order_regs_for_local_alloc): New global function.
16244 * i386.h (REG_ALLOC_ORDER): CLeanup.
16245 (ORDER_REGS_FOR_LOCAL_ALLOC): New.
16247 2002-02-07 Richard Henderson <rth@redhat.com>
16249 PR optimization/2463
16250 * alias.c (find_base_value): Recall base values for fixed hard regs.
16251 * loop.c (loop_regs_update): Don't use single_set on non-insns.
16253 2002-02-07 Alexandre Oliva <aoliva@redhat.com>
16255 * config/mips/mips.md (define_delay) [mips16]: Adjust required
16258 2002-02-06 Richard Henderson <rth@redhat.com>
16261 * stmt.c (resolve_operand_name_1): Take more care with mixed
16262 named and unnamed operands.
16264 2002-02-06 Janis Johnson <janis187@us.ibm.com>
16265 Jan Hubicka <jh@suse.cz>
16267 * loop.c (remove_constant_addition): Avoid clobbering a shared
16270 2002-02-06 Ulrich Weigand <uweigand@de.ibm.com>
16272 * config.gcc (s390x-*-linux*): Add t-linux64 makefile fragment.
16273 * config/s390/t-linux64: New file.
16274 * config/s390/libgcc-glibc.ver: New file.
16276 2002-02-06 Ulrich Weigand <uweigand@de.ibm.com>
16278 * config/s390/linux64.h: Delete file.
16279 * config/s390/s390x.h: New file.
16280 * config.gcc (s390x-*-linux*): Use s390x.h instead of linux64.h
16281 as target header file.
16282 * config/s390/linux.h (TARGET_VERSION): Define depending on
16283 DEFAULT_TARGET_64BIT.
16284 (CPP_SPEC, ASM_SPEC, LINK_SPEC): Likewise.
16285 (SIZE_TYPE, PTRDIFF_TYPE): Likewise.
16286 (NO_BUILTIN_SIZE_TYPE, NO_BUILTIN_PTRDIFF_TYPE): Define.
16287 (CPP_ARCH31_SPEC, CPP_ARCH64_SPEC): New defines.
16288 (LINK_ARCH31_SPEC, LINK_ARCH64_SPEC): New defines.
16289 (EXTRA_SPEC): New define.
16290 * config/s390/s390.h (TARGET_VERSION): Define depending on
16291 DEFAULT_TARGET_64BIT.
16292 (MASK_RETURN_ADDR): Add run-time check for TARGET_64BIT.
16294 2002-02-06 Jason Merrill <jason@redhat.com>
16296 * c-decl.c (finish_function): Warn about a non-void function with
16297 no return statement and no abnormal exit.
16298 (current_function_returns_abnormally): New variable.
16299 (start_function): Clear it.
16300 (struct c_language_function): Add returns_abnormally.
16301 (push_c_function_context): Save it.
16302 (pop_c_function_context): Restore it.
16303 (builtin_function): Set TREE_THIS_VOLATILE on return fns.
16304 (grokdeclarator): Set C_FUNCTION_IMPLICIT_INT on functions without
16305 an explicit return type.
16306 * c-tree.h: Declare current_function_returns_abnormally.
16307 (C_FUNCTION_IMPLICIT_INT): New macro.
16308 * c-typeck.c (build_function_call): Set it.
16309 (c_expand_return): Set current_function_returns_value even if the
16310 value is erroneous.
16312 2002-02-06 Jakub Jelinek <jakub@redhat.com>
16315 * c-common.c (c_unsafe_for_reeval): Make COMPOUND_LITERAL_EXPR
16316 unsafe for reevaluation.
16318 2002-02-06 Jakub Jelinek <jakub@redhat.com>
16321 * c-common.c (c_expand_expr) [STMT_EXPR]: If last expression is not
16322 EXPR_STMT, but COMPOUND_STMT, recurse into it.
16324 2002-02-06 Richard Henderson <rth@redhat.com>
16326 * cfganal.c (keep_with_call_p): Source for fixed_reg dest must
16327 be a general_operand. Dest for function value must be a pseudo.
16329 2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
16331 * dbxout.c (dbxout_symbol_location): Accept LABEL_REFs as well
16332 as SYMBOL_REFs from the constant pool.
16334 2002-02-06 Alexandre Oliva <aoliva@redhat.com>
16336 * dbxout.c (dbxout_parms): Apply DEBUGGER_ARG_OFFSET to parameters
16337 passed by invisible reference.
16339 2002-02-05 Richard Henderson <rth@redhat.com>
16341 * config/sparc/sparc.h (ARG_POINTER_CFA_OFFSET): No stack bias.
16343 2002-02-06 Hans-Peter Nilsson <hp@bitrange.com>
16345 Implement using "base addresses" in insn operands as default.
16346 * config/mmix/mmix.c (mmix_conditional_register_usage): if
16347 -mabi=gnu, modify fixed_regs to fit the GNU ABI.
16348 (mmix_extra_constraint): Use 'R' to indicate that GETA should be
16349 used to read the rtx value.
16350 (mmix_target_asm_function_epilogue): Fix spacing.
16351 (mmix_constant_address_p): Handle TARGET_BASE_ADDRESSES.
16352 (mmix_legitimate_address): Ditto.
16353 (mmix_encode_section_info): Set SYMBOL_REF_FLAG on rtx:es that
16354 should be loaded with a GETA insn. Don't allocate needless extra
16355 char for nul termination and fix misleading comment.
16356 (mmix_print_operand_address): Handle constants if
16357 TARGET_BASE_ADDRESSES.
16358 (mmix_output_register_setting): Use base addressing if
16359 TARGET_BASE_ADDRESSES and the number of insns is 3.
16360 * config/mmix/t-mmix (MULTILIB_EXTRA_OPTS): New.
16361 * config/mmix/mmix.md ("movdi"): Change the alternative with GETA
16362 to use R as constraint, add LDA to match s.
16363 * config/mmix/mmix.h (TARGET_BASE_ADDRESSES): New.
16364 (TARGET_DEFAULT): Add TARGET_MASK_BASE_ADDRESSES.
16365 (TARGET_SWITCHES): Add -mbase-addresses, -mno-base-addresses.
16366 (FIXED_REGISTERS): Make registers $231..$246 fixed by default.
16367 (MMIX_MMIXWARE_ABI_REG_ALLOC_ORDER): Move $231..$246 last, in
16368 order with other fixed registers.
16369 (MMIX_GNU_ABI_REG_ALLOC_ORDER): Put forward $231, in order with
16370 other parameter/call-clobbered registers.
16371 * doc/invoke.texi (Option Summary) <MMIX Options>: Add
16372 -mbase-addresses, -mno-base-addresses.
16373 (MMIX Options): Ditto.
16375 2002-02-05 John David Anglin <dave@hiauly1.hia.nrc.ca>
16377 * pa.h (PREDICATE_CODES): Add reg_before_reload_operand.
16379 2002-02-06 Aldy Hernandez <aldyh@redhat.com>
16381 * config/rs6000/altivec.h: Change elem to _S_elem.
16383 2002-02-05 Jason Thorpe <thorpej@wasabisystems.com>
16385 * config/netbsd.h (WCHAR_TYPE): Define.
16386 (WCHAR_TYPE_SIZE): Ditto.
16387 (WINT_TYPE): Ditto.
16388 * config/alpha/netbsd.h (WCHAR_TYPE): Remove.
16389 (WCHAR_UNSIGNED): Ditto.
16390 (WCHAR_TYPE_SIZE): Ditto.
16391 (WINT_TYPE): Ditto.
16392 * config/arm/netbsd.h: Likewise.
16393 * config/i386/netbsd-elf.h: Likewise.
16394 * config/i386/netbsd.h: Likewise.
16395 * config/m68k/netbsd-elf.h: Likewise.
16396 * config/m68k/netbsd.h: Likewise.
16397 * config/ns32k/netbsd.h: Likewise.
16398 * config/sparc/netbsd.h: Likewise.
16399 * config/vax/netbsd.: Likewise.
16401 2002-02-05 Alexandre Oliva <aoliva@redhat.com>
16403 * target.h (struct gcc_target): Added ms_bitfield_layout_p.
16404 * target-def.h (TARGET_MS_BITFIELD_LAYOUT_P): New. Added to...
16405 (TARGET_INITIALIZER): this.
16406 * doc/tm.texi (TARGET_MS_BITFIELD_LAYOUT_P): Document.
16407 (BITFIELD_NBYTES_LIMITED): Markup fix.
16408 * tree.h (default_ms_bitfield_layout_p): Declare.
16409 (record_layout_info): Added prev_field.
16410 * tree.c (default_ms_bitfield_layout_p): New fn.
16411 * c-decl.c (finish_struct): Disregard EMPTY_FIELD_BOUNDARY and
16412 PCC_BITFIELD_TYPE_MATTERS for MS bit-field layout.
16413 * stor-layout.c: Include target.h.
16414 (start_record_layout): Initialize prev_field.
16415 (place_field): Handle MS bit-field layout, and disregard
16416 EMPTY_FIELD_BOUNDARY, BITFIELD_NBYTES_LIMITED and
16417 PCC_BITFIELD_TYPE_MATTERS in this case. Update prev_field.
16418 * Makefile.in (stor-layout.o): Adjust dependencies.
16420 2002-02-05 Jason Merrill <jason@redhat.com>
16422 * collect2.c (dump_file): Pass DMGL_VERBOSE to cplus_demangle.
16424 2002-02-05 Andreas Jaeger <aj@suse.de>
16426 * crtstuff.c: Fix comments.
16428 2002-02-05 Richard Henderson <rth@redhat.com>
16431 * loop.c (loop_iv_add_mult_emit_before): Copy multiplier as well.
16432 (loop_iv_add_mult_sink, loop_iv_add_mult_hoist): Likewise.
16435 * config/mips/mips.c (function_arg): Handle TImode.
16436 (function_arg_advance): Likewise.
16438 2002-02-05 Aldy Hernandez <aldyh@redhat.com>
16440 * config/rs6000/altivec.h (vec_step_help): Rename to
16443 2002-02-05 Aldy Hernandez <aldyh@redhat.com>
16445 * config/rs6000/altivec.h: Fix typos.
16447 2002-02-05 Jason Thorpe <thorpej@wasabisystems.com>
16449 * config/arm/netbsd.h: Correct a comment.
16451 2002-02-05 Aldy Hernandez <aldyh@redhat.com>
16453 * config/rs6000/rs6000.c (altivec_init_builtins): Fix typo
16454 building void typed builtins.
16456 * config/rs6000/altivec.h (vec_ld*): Fix typos.
16457 (vec_step): Implement for C++.
16459 Mon Feb 4 19:23:19 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
16461 * final.c (final_scan_insn): Add case for NOTE_INSN_LOOP_END_TOP_COND.
16463 2002-02-04 Richard Henderson <rth@redhat.com>
16465 * combine.c (nonzero_bits): Re-introduce special case for
16466 sp/fp/ap wrt REGNO_POINTER_ALIGN.
16468 2002-02-05 Aldy Hernandez <aldyh@redhat.com>
16470 * doc/extend.texi: Warn about unsupported usage of altivec
16473 * config/rs6000/rs6000.md (altivec_vcmp*_p): Remove.
16474 (altivec_predicate_*): New.
16476 * config/rs6000/altivec.h: Rewrite predicates to use new builtins.
16477 Add C++ version of vec_*() functions.
16479 * config/rs6000/rs6000.c (bdesc_altivec_preds): New.
16480 (bdesc_2arg): Remove altivec predicates.
16481 (altivec_expand_builtin): Handle predicates.
16482 (altivec_init_builtins): Handle predicates.
16483 (altivec_expand_predicate_builtin): New.
16485 2002-02-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
16487 * pa.c (DO_FRAME_NOTES): Move forward.
16488 (store_reg): Revise handling of frame notes.
16489 (load_reg): Likewise.
16490 (set_reg_plus_d): Likewise.
16491 (hppa_expand_prologue): Likewise.
16492 (hppa_expand_epilogue): Likewise.
16494 2002-02-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
16496 * unwind-dw2-fde-glibc.c: Define _GNU_SOURCE if not defined.
16498 2002-02-04 Jakub Jelinek <jakub@redhat.com>
16500 PR c/4475, c++/3780:
16501 * c-common.def (SWITCH_STMT): Add SWITCH_TYPE operand.
16502 * c-common.h (SWITCH_TYPE): Define.
16503 * c-typeck.c (c_start_case): Set SWITCH_TYPE.
16504 * stmt.c (all_cases_count): Set lastval to thisval at end of loop.
16505 Rename spareness variable to sparseness.
16506 (expand_end_case_type): Renamed from expand_end_case, use orig_type
16507 if non-NULL instead of TREE_TYPE (orig_index).
16508 * tree.h (expand_end_case_type): Renamed from expand_end_case.
16509 (expand_end_case): Define using expand_end_case_type.
16510 * c-semantics.c (genrtl_switch_stmt): Pass SWITCH_TYPE
16511 to expand_end_case_type.
16512 * doc/c-tree.texi (SWITCH_STMT): Document SWITCH_TYPE.
16514 2002-02-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
16516 * pa.h (PREFERRED_STACK_BOUNDARY): Define to match standard rounding.
16517 (BIGGEST_ALIGNMENT): Change to 128.
16519 2002-02-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
16521 * pa32-linux.h (LINK_COMMAND_SPEC): Define.
16523 2002-02-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
16525 * pa.md (call_internal_reg_64bit): Remove unused variable.
16527 2002-02-04 Nick Clifton <nickc@cambridge.redhat.com>
16529 * config/arm/arm.h (machine_function): Add uses_anonymous_args
16531 (SETUP_INCOMING_VARARGS): Set uses_anonymous_args.
16532 * config/arm/arm.c (current_function_anonymous_args): Delete,
16533 replace uses with cfun->machine->uses_anonymous_args.
16534 (arm_reorg): Do not reset uses_anonymous_args.
16536 * config/arm/arm.c (arm_hard_regno_mode_ok): Allow any value in
16537 any geenral register.
16539 2001-02-04 Bernd Schmidt <bernds@redhat.com>s
16541 * cfgrtl.c (force_nonfallthru_and_redirect): Don't try to redirect
16544 2002-02-04 Richard Henderson <rth@redhat.com>
16546 * combine.c (force_to_mode): Remove STACK_BIAS code.
16547 (nonzero_bits): Likewise. Replace sp/fp special case with
16548 REGNO_POINTER_ALIGN.
16550 * config/sparc/sparc.h (FRAME_POINTER_REGNUM): Change to SFP.
16551 (HARD_FRAME_POINTER_REGNUM): New.
16552 (FIRST_PSEUDO_REGISTER, REG_CLASS_CONTENTS): Update.
16553 (FIXED_REGS, CALL_USED_REGS): Update.
16554 (REG_ALLOC_ORDER, REGISTER_NAMES): Update.
16555 (CONDITIONAL_REGISTER_USAGE): Update for HFP.
16556 (HARD_REGNO_NREGS): Update for SFP.
16557 (STACK_POINTER_OFFSET): Include bias here ...
16558 (FIRST_PARM_OFFSET): ... not here.
16559 (STACK_BIAS): Remove.
16560 (INIT_EXPANDERS): New.
16561 (STARTING_FRAME_OFFSET): Do not include bias.
16562 (ELIMINABLE_REGS, CAN_ELIMINATE, INITIAL_ELIMINATION_OFFSET): New.
16563 (REGNO_OK_FOR_INDEX_P, REGNO_OK_FOR_BASE_P): Update for SFP.
16564 (REG_OK_FOR_INDEX_P, REG_OK_FOR_BASE_P): Likewise.
16565 * config/sparc/aout.h (DBX_REGISTER_NUMBER): Update for HFP.
16566 * config/sparc/litecoff.h, config/sparc/sol2.h: Likewise.
16567 * config/sparc/sparc.c (mem_min_alignment): Update for HFP.
16568 (sparc_nonflat_function_prologue, epilogue_renumber): Likewise.
16569 (MUST_SAVE_REGISTER): Likewise.
16570 (sparc_flat_function_prologue): Likewise.
16571 (sparc_flat_function_epilogue): Likewise.
16572 (HARD_FRAME_POINTER_MASK): Rename from FRAME_POINTER_MASK.
16573 (sparc_init_modes): SFP is GENERAL_REGS.
16574 (sparc_builtin_saveregs): SFP does not have bias applied.
16576 2002-02-04 Richard Henderson <rth@redhat.com>
16578 * config/alpha/alpha.c (current_function_is_thunk): Don't check
16579 current_function_is_thunk.
16580 (alpha_sa_mask): Distinguish between current_function_is_thunk
16581 called from ASM_OUTPUT_MI_THUNK and not.
16582 (alpha_does_function_need_gp): Thunks always need gp.
16583 (alpha_start_function, alpha_output_function_end_prologue): Likewise.
16584 (alpha_output_mi_thunk_osf): New.
16585 * config/alpha/alpha-protos.h: Update.
16586 * config/alpha/alpha.h (ASM_OUTPUT_MI_THUNK): New.
16588 2002-02-04 Richard Sandiford <rsandifo@redhat.com>
16590 * c-typeck.c (build_c_cast): Warn when qualifiers are added to
16591 function types, not when they're taken away.
16593 Mon Feb 4 09:05:58 2002 Jeffrey A Law (law@redhat.com)
16595 * cfgrtl.c (try_redirect_by_replacing_jump): Remove associated
16596 CODE_LABEL and jump table when replacing a table jump with a
16599 2002-02-04 Ulrich Weigand <uweigand@de.ibm.com>
16601 * config/s390/s390-protos.h (legitimize_la_operand,
16602 s390_secondary_input_reload_class, s390_plus_operand,
16603 s390_expand_plus_operand): Add prototypes.
16605 config/s390/s390.c (s390_secondary_input_reload_class,
16606 s390_plus_operand, s390_expand_plus_operand): New functions.
16608 (struct s390_address): New member 'pointer'.
16609 (s390_decompose_address): Compute it.
16610 (legitimate_la_operand_p): Use it.
16611 (legitimize_la_operand): New function.
16612 (movti, movdi, movdf splitters): Call it.
16614 config/s390/s390.h (SECONDARY_INPUT_RELOAD_CLASS): Define.
16615 (PREDICATE_CODES): Add s390_plus_operand.
16617 config/s390/s390.md (adddi3_inv_64, addaddr_ccclobber): Delete.
16618 (la_ccclobber): Allow GENERAL_REGS as output operand.
16620 (reload_load_address, *reload_load_address_reg_0, *la, *do_la_reg_0,
16621 *reload_la_64, *reload_la_31 and splitters): Delete, replace by ...
16622 (*la_64, *la_31, reload_indi, reload_insi): ... these.
16624 2002-02-04 Ulrich Weigand <uweigand@de.ibm.com>
16626 * gcc/config/s390/s390.h (CRT_CALL_STATIC_FUNCTION): Fixed
16627 register names for regular asm () construct.
16629 2002-02-04 Jakub Jelinek <jakub@redhat.com>
16631 * config/i386/i386.md (movsf_1): Allow moving SF values in MMX
16634 2002-02-04 Jakub Jelinek <jakub@redhat.com>
16636 * combine.c (recog_for_combine): Create a dummy insn with PATTERN
16639 2002-02-04 Hartmut Penner <hpenner@de.ibm.com>
16641 * varasm.c (decode_rtx_const): Allow unspec (symbol_ref) in
16642 constant pool to be identical by string address and index.
16644 2002-02-04 Anthony Green <green@redhat.com>
16646 * output.h (SECTION_OVERRIDE): Define.
16647 * varasm.c (named_section): Obey SECTION_OVERRIDE.
16649 2002-02-03 Jason Thorpe <thorpej@wasabisystems.com>
16651 * config.gcc (arm*-*-netbsdelf*): Placeholder to prevent match
16652 by existing arm*-*-netbsd* (a.out) target.
16653 (ns32k-*-netbsdelf*): Likewise.
16654 (sparc-*-netbsdelf*): Likewise.
16655 (vax-*-netbsdelf*): Likewise.
16657 2002-02-03 Danny Smith <dannysmith@users.sourceforge.net>
16659 * gthr-win32.h: Protect against conflicting typedef for BOOL in windows
16660 headers and libobjc headers.
16662 2002-02-03 Mumit Khan <khan@nanotech.wisc.edu>
16664 * gthr-win32.h (__mingwthr_key_dtor): Use extern "C" linkage for C++.
16665 (_mingw.h): Remove duplicate include.
16667 2002-02-03 Jason Thorpe <thorpej@wasabisystems.com>
16669 * config.gcc: Set cpu_type to m68k for 68010, as well.
16670 (m68010-*-netbsdelf*): New...
16671 (m68k*-*-netbsdelf*): ...targets.
16672 * config/m68k/netbsd-elf.h: New file.
16674 2002-02-02 Kazu Hirata <kazu@hxi.com>
16676 * config/h8300/h8300.c (hand_list): Move inside function_arg.
16678 2002-02-02 Kazu Hirata <kazu@hxi.com>
16680 * config/h8300/h8300.c (h8_push_ops): Move inside
16682 (h8_pop_ops): Likewise.
16683 (h8_move_ops): Likewise.
16685 2002-02-02 Kazu Hirata <kazu@hxi.com>
16687 * config/h8300/h8300.c (os_task): Make it static.
16688 (monitor): Likewise.
16689 (pragma_saveall): Likewise.
16691 2002-02-02 Alexandre Oliva <aoliva@redhat.com>
16693 * config/sh/sh.md (ic_invalidate_line): Make sure the immediate
16694 constant is a valid sign-extension for Pmode.
16696 2002-02-02 Kazu Hirata <kazu@hxi.com>
16698 * config/h8300/h8300.c: Fix formatting.
16700 2002-02-02 Kazu Hirata <kazu@hxi.com>
16702 * config/h8300/h8300.md: Fix formatting.
16704 2002-02-02 Kazu Hirata <kazu@hxi.com>
16706 * config/h8300/h8300.md (one_cmpl patterns): Tighten the
16707 predicates of operands[1]. Split the patterns for each
16710 2002-02-02 Kazu Hirata <kazu@hxi.com>
16712 * config/h8300/h8300.md (xor patterns): Tighten the predicates
16713 of operands[1] to register_operand.
16715 2002-02-02 Neil Booth <neil@daikokuya.demon.co.uk>
16717 * cpphash.h (struct spec_nodes): Remove n__CHAR_UNSIGNED__.
16718 * cpphash.c (_cpp_init_hashtable): Similarly.
16719 * cppinit.c (cpp_create_reader): Default the signed_char flag.
16720 (init_builtins): Define __CHAR_UNSIGNED__ appropriately.
16721 (COMMAND_LINE_OPTIONS): Recognise -f{un,}signed-char.
16722 (cpp_handle_option): Handle the new options.
16723 * cpplex.c (cpp_interpret_charconst): Use new flag.
16724 * cpplib.h (struct cpp_options): New member signed_char.
16725 * gcc.c (cpp_unique_options): Remove %c spec and documentation.
16726 (cpp_options): Handle -fsigned-char and -funsigned-char.
16727 (static_specs): Remove signed_char_spec.
16728 (do_spec1): Don't handle %c.
16729 * system.h: Poison SIGNED_CHAR_SPEC.
16730 * tradcif.y (yylex): Use flag_signed_char.
16731 * tradcpp.h (flag_signed_char): New.
16732 * tradcpp.c (flag_signed_char): New.
16733 (main): Handle new command-line options.
16734 (initialize_builtins): Define __CHAR_UNSIGNED__ if appropriate.
16736 * alpha/alpha.h (SIGNED_CHAR_SPEC): Remove.
16737 * avr/avr.h: Remove old comments.
16738 * i960/i960.h (CPP_SPEC): Pass -fsigned-char if -mic*.
16739 (CC1_SPEC): Pass -fsigned-char if -mic*.
16740 (SIGNED_CHAR_SPEC): Remove.
16742 * tm.texi (SIGNED_CHAR_SPEC): Remove documentation.
16744 2002-02-01 Eric Christopher <echristo@redhat.com>
16746 From Daniel Jacobowitz <dmj+@andrew.cmu.edu>
16747 * config/mips/mips.h (FUNCTION_PROFILER): Fix function profiling.
16748 * config/mips/linux.h (ASM_OUTPUT_REG_PUSH): Undefine.
16749 (ASM_OUTPUT_REG_POP): Ditto.
16751 2002-02-02 Neil Booth <neil@daikokuya.demon.co.uk>
16753 * c-decl.c, tree.c, tree.h, objc/objc-act.c: Revert bitfield
16756 2002-02-02 Jakub Jelinek <jakub@redhat.com>
16758 * config/i386/i386.h (CPP_CPUCOMMON_SPEC): Add missing | separators.
16760 2002-02-02 Jakub Jelinek <jakub@redhat.com>
16763 * expmed.c (expand_mult_highpart): Use immed_double_const for wide_op1
16766 2002-02-01 Janis Johnson <janis187@us.ibm.com>
16768 * cfganal.c: Include tm_p.h.
16769 (keep_with_call_p): Fix the test that determines if a register holds
16770 the return value of a call.
16772 2002-02-01 DJ Delorie <dj@redhat.com>
16774 * config/sparc/sparc.c (sparc_emit_set_symbolic_const64): If
16775 we are given conflicting registers, switch to the other one we
16776 had allocated for us.
16777 * config/sparc/sparc.md (reload_indi, reload_outdi): Pass op[2]
16778 as TImode so we know when the "other" register is available.
16780 2002-02-01 David O'Brien <obrien@FreeBSD.org>
16782 * config/sparc/sol2-sld-64.h: Include sparc/biarch64.h rather than
16785 2002-02-01 Janis Johnson <janis187@us.ibm.com>
16787 * cfganal.c (keep_with_call_p): New function.
16788 (flow_call_edges_add): Prevent splitting a block between a call and
16789 a single-set instruction that should be kept in the same block.
16791 2002-02-01 Craig Rodrigues <rodrigc@gcc.gnu.org>
16793 * doc/install.texi (avr): Update outdated URL.
16795 2002-01-30 Andrew Haley <aph@cambridge.redhat.com>
16797 * config/stormy16/stormy16.md (pushqi): New.
16801 (movhi): Remove stack operands.
16803 * config/stormy16/stormy16.h (PREDICATE_CODES): Add
16804 nonimmediate_nonstack_operand.
16805 * config/stormy16/stormy16.c (nonimmediate_nonstack_operand):
16807 * config/stormy16/stormy16-protos.h (nonimmediate_nonstack_operand)
16810 2002-01-31 Jason Merrill <jason@redhat.com>
16812 * Makefile.in (c-parse.c): Handle .output file.
16813 * objc/Make-lang.in (objc-parse.c): Likewise.
16815 2002-02-01 Alexandre Oliva <aoliva@redhat.com>
16817 * config/mips/mips.h (ENDIAN_SPEC): Output the endianness flag if
16818 the -me[lb] option is given. Don't output the default flag
16821 2002-01-31 Zack Weinberg <zack@codesourcery.com>
16823 * c-lex.c (yyparse): Call debug_hooks->start_source_file for
16824 the primary source file; this has not been done yet.
16825 * c-decl.c (c_expand_body): Reset input_filename from
16826 DECL_SOURCE_FILE (fndecl) before calling init_function_start.
16828 2002-01-31 Kazu Hirata <kazu@hxi.com>
16830 * rtlanal.c (subreg_regno_offset): Do not use
16831 SUBREG_REGNO_OFFSET.
16832 * system.h: Add SUBREG_REGNO_OFFSET to the GCC poison list.
16833 * doc/tm.texi (SUBREG_REGNO_OFFSET): Remove.
16835 2002-01-31 Joseph S. Myers <jsm28@cam.ac.uk>
16837 * gccbug.in: Follow GNU Coding Standards for --version. Use GCC
16838 version rather than GNATS version in --version output.
16840 2002-01-31 Richard Sandiford <rsandifo@redhat.com>
16842 * ifcvt.c (noce_process_if_block): Make a copy of the destination
16843 when copying back from a temporary.
16845 2002-01-30 Richard Henderson <rth@redhat.com>
16847 * ifcvt.c (dead_or_predicable): Handling merging when other_bb
16848 and new_dest are the same.
16850 2002-01-30 Richard Henderson <rth@redhat.com>
16853 * rtl.h (NOTE_INSN_LOOP_END_TOP_COND): New.
16854 * rtl.c (note_insn_name): Update.
16855 * emit-rtl.c (remove_unnecessary_notes): Kill it.
16856 * stmt.c (expand_end_loop): Kill jump opt code. Use LOOP_END_TOP_COND
16857 to perform loop rotation.
16858 (expand_exit_loop_top_cond): New.
16859 * tree.h (expand_exit_loop_top_cond): Declare it.
16860 * c-semantics.c (genrtl_while_stmt): Use it.
16861 (genrtl_for_stmt): Likewise.
16863 2002-01-30 Alexandre Oliva <aoliva@redhat.com>
16865 * config/mips/mips.h (PARM_BOUNDARY): Guarantee alignment of
16866 arguments to 64-bit boundaries on 64-bit ABIs.
16868 2002-01-30 Steve Ellcey <sje@cup.hp.com>
16870 * loop.c (loop_invariant_p): Special case pic_offset_table_rtx.
16872 2002-01-31 Joseph S. Myers <jsm28@cam.ac.uk>
16874 * c-decl.c (grokdeclarator): Handle type being a typedef for an
16877 2002-01-30 David O'Brien <obrien@FreeBSD.org>
16879 * config.gcc: Include sparc/biarch64.h rather than sparc/sparc_bi.h.
16880 * config/sparc/sparc_bi.h: Remove file.
16881 * config/sparc/biarch64.h: New file (rename of sparc_bi.h).
16883 2002-01-30 Richard Henderson <rth@redhat.com>
16885 * sched-deps.c (sched_analyze): Make a call read the frame pointer.
16887 2002-01-30 Zack Weinberg <zack@codesourcery.com>
16889 * expmed.c (emit_store_flag): Call protect_from_queue on op0 and op1.
16891 2002-01-30 Jason Merrill <jason@redhat.com>
16893 * dwarf2out.c (dwarf_cfi_name): Add other DWARF 3 codes.
16894 (output_cfi): Likewise. Disable DW_CFA_GNU_negative_offset_extended.
16895 (reg_save): Use DW_CFA_offset_extended_sf instead.
16897 * dwarf2out.c (dwarf2out_finish): Don't abort if there were errors.
16899 2002-01-29 Jakub Jelinek <jakub@redhat.com>
16901 * cselib.c (cselib_record_sets): Use IF_THEN_ELSE result
16904 2002-01-29 Aldy Hernandez <aldyh@redhat.com>
16906 * rs6000.md ("*call_value_local32"): Remove constraints.
16907 ("*call_value_local64"): Same.
16908 ("*call_value_indirect_nonlocal_aix32"): Same.
16909 ("*call_value_nonlocal_aix32"): Same.
16910 ("*call_value_indirect_nonlocal_aix64"): Same.
16911 ("*call_value_nonlocal_aix64"): Same.
16912 ("*call_value_nonlocal_sysv"): Same.
16914 2002-01-29 Richard Henderson <rth@redhat.com>
16916 * config/alpha/elf.h (SDB_DEBUGGING_INFO): Undef.
16918 2002-01-29 Richard Henderson <rth@redhat.com>
16920 * expr.c (force_operand): Ignore flag_pic for detecting pic
16922 * regclass.c (init_reg_sets_1): Test fixed_regs not flag_pic
16923 for determining if PIC_OFFSET_TABLE_REGNUM is call-clobbered.
16924 * resource.c (mark_target_live_regs): Use regs_invalidated_by_call
16925 instead of open-coded loop.
16926 * doc/tm.texi (PIC_OFFSET_TABLE_REGNUM): Clarify that it must
16927 be fixed when in use.
16929 2002-01-29 Richard Henderson <rth@redhat.com>
16931 * sched-int.h (struct deps_reg): Add uses_length, clobbers_length.
16932 * sched-rgn.c (propagate_deps): Update them.
16933 * sched-deps.c (sched_analyze_insn): Update them. Flush the
16934 clobbers list when either gets too long.
16936 2002-01-29 Jakub Jelinek <jakub@redhat.com>
16938 * config/i386/i386.h (LIMIT_RELOAD_CLASS): Handle LEGACY_REGS
16939 and INDEX_REGS the same as GENERAL_REGS.
16940 (SECONDARY_OUTPUT_RELOAD_CLASS): Likewise.
16942 2002-01-29 Neil Booth <neil@daikokuya.demon.co.uk>
16944 * tree.c (build_nonstandard_integer_type): Correct prototype.
16946 2002-01-29 Ulrich Weigand <uweigand@de.ibm.com>
16948 * config/s390/s390.md (movstrsico, movstrdix_64,
16949 movstrsix_31): Remove, replace by ...
16950 (movstrdi_short, movstrsi_short, movstrdi_long,
16951 movstrsi_long): ... these. New.
16952 (movstrdi, movstrsi): Adapt.
16954 (rotldi3, rotlsi3, ashldi3, *ashldi3_31, *ashldi3_64,
16955 ashlsi3, lshrdi3, *lshrdi3_31, *lshrdi3_64, lshrsi3):
16956 Remove unnecessary CC clobber.
16957 (*ashrdi3_cc_31, *ashrdi3_cconly_31, *ashrdi3_cc_64,
16958 *ashrdi3_cconly_64, *ashrsi3_cc, *ashrsi3_cconly): New.
16960 (divmoddi4): Don't partially initialize TImode register.
16962 2002-01-29 Geoffrey Keating <geoffk@redhat.com>
16964 * doc/sourcebuild.texi (C Tests): Document gcc.dg/debug directory.
16966 2002-01-29 Richard Henderson <rth@redhat.com>
16968 * flow.c (print_rtl_and_abort): Remove.
16969 (print_rtl_and_abort_fcn): Remove.
16970 (verify_local_live_at_start): Use dump_bb instead.
16971 (verify_wide_reg): Likewise. Take a basic_block, not rtl endpoints.
16972 (verify_wide_reg_1): Return 2 on mode test failure.
16974 2002-01-29 Neil Booth <neil@daikokuya.demon.co.uk>
16976 PR c/3325, c/3326, c/2511, c/3347
16977 * c-decl.c (enum_decl_context): Remove BITFIELD.
16978 (grokdeclarator): Take bitfield width as an input.
16979 Ensure bitfields are given the correct type. Perform
16980 bitfield width validation with build_bitfield_integer_type
16981 rather than waiting for finish_struct.
16982 (grok_typename, grok_typename_in_parm_context, start_decl,
16983 push_parmdecl, grokfield, start_function): Update calls to
16985 (build_bitfield_integer_type): New function.
16986 (finish_struct): Move bitfield validation to grokdeclarator
16987 and build_bitfield_integer_type.
16988 * tree.c (build_nonstandard_integer_type): New function.
16989 * tree.h (build_nonstandard_integer_type): New prototype.
16991 * objc-act.c (objc_copy_list): Remove DECL_INITIAL kludge.
16993 2002-01-29 Jakub Jelinek <jakub@redhat.com>
16996 * cppinit.c (cpp_handle_option): Add ignore argument, if it is zero,
16997 don't ignore unrecognized -W* options.
16998 (cpp_handle_options): Pass 1 as last argument to cpp_handle_option.
16999 * cpplib.h (cpp_handle_option): Adjust prototype.
17000 * c-decl.c (c_decode_options): Pass 0 as last argument to
17004 * gcc.c (cpp_unique_options): Split from cpp_options.
17005 (cpp_options): Source cpp_unique_options.
17006 (default_compilers): Use cpp_unique_options instead of cpp_options
17007 when used together with cc1_options.
17008 (static_specs): Add cpp_unique_options.
17009 * objc/lang-specs.h: Use cpp_unique_options instead of cpp_options
17010 when used together with cc1_options.
17012 2002-01-29 Kazu Hirata <kazu@hxi.com>
17014 * config/h8300/h8300-protos.h: Update the prototype of
17016 * config/h8300/h8300.c (output_a_shift): Remove an unused
17017 argument 'insn'. Remove redundant code.
17018 * config/h8300/h8300.md: Adust to the new prototype of
17021 2002-01-29 Kazu Hirata <kazu@hxi.com>
17023 * config/h8300/h8300-protos.h: Update the prototypes of
17024 emit_a_rotate and expand_a_rotate.
17025 * config/h8300/h8300.c (emit_a_rotate): Change the type of the
17026 first argument to 'enum rtx_code'.
17027 (expand_a_rotate): Likewise.
17029 2002-01-28 Kazu Hirata <kazu@hxi.com>
17031 * config/h8300/h8300-protos.h: Update the prototype of
17033 * config/h8300/h8300.c (output_simode_bld): Remove an argumen
17035 * config/h8300/h8300.md: Adjust to the new prototype.
17037 2002-01-28 Kazu Hirata <kazu@hxi.com>
17039 * conifg/h8300/h8300.c (h8300_adjust_insn_length): Remove
17042 2002-01-28 John David Anglin <dave@hiauly1.hia.nrc.ca>
17044 * emit-rtl.c (gen_rtx_REG): Check that the PIC_OFFSET_TABLE_REGNUM
17045 is a fixed register before returning pic_offset_table_rtx.
17046 * loop.c (scan_loop): Don't hoist insns that set pic_offset_table_rtx
17047 when PIC_OFFSET_TABLE_REG_CALL_CLOBBERED is defined.
17049 2002-01-28 Jason Merrill <jason@redhat.com>
17051 * dwarf2.h: Sync with src version.
17053 2002-01-28 Paul Koning <pkoning@equallogic.com>
17055 * builtin-types.def (BT_FN_VOID_CONST_PTR_VAR): Replace
17056 BT_FN_VOID_PTR_VAR.
17057 * builtins.def (BUILT_IN_PREFETCH): Change first argument to be const.
17058 * doc/extend.texi (__builtin_prefetch): Update documentation:
17059 first argument is now const void ptr.
17061 2002-01-28 Kazu Hirata <kazu@hxi.com>
17063 * config/h8300/h8300-protos.h: Remove an unused prototype.
17065 2002-01-28 Roman Zippel <zippel@linux-m68k.org>
17067 * toplev.c (lang_independent_init): Round up identifier size.
17069 2002-01-28 Richard Earnshaw <rearnsha@arm.com>
17071 * config.gcc: Revert previous change.
17073 2002-01-28 Andris Pavenis <pavenis@latnet.lv>
17075 * config/i386/djgpp.h: Use STRIP_NAME_ENCODING in macro UNIQUE_SECTION
17077 2002-01-28 Richard Earnshaw <rearnsha@arm.com>
17079 * config.gcc (*-*-netbsdelf*): Set up generic parameters.
17080 (*-*-netbsd*): Always use collect2. Remove collect2 settings from
17081 other non-elf netbsd config frags.
17082 * config/netbsd-aout.h (STARTFILE_SPEC): Don't pull in c++rt0 since
17083 collect2 will does that.
17084 * config/netbsd.h (LIBGCC_SPEC): Add white space before -lgcc, so that
17085 shared-lib frobbing will work.
17087 2002-01-28 Kazu Hirata <kazu@hxi.com>
17089 * config/h8300/h8300.h: Fix formatting.
17090 * config/h8300/h8300.md: Likewise.
17092 2002-01-28 Loren J. Rittle <ljrittle@acm.org>
17094 * fixinc/inclhack.def (strict_ansi_not): Add a bypass based on
17095 the old, removed AAA_standards fix.
17096 * fixinc/fixincl.x: Rebuilt.
17098 2002-01-28 Hans-Peter Nilsson <hp@axis.com>
17100 * config/cris/cris.h (CRT_CALL_STATIC_FUNCTION): Change to emit
17101 atexit call in crtbegin, hooked in after call to frame_dummy;
17102 register EH before registering __fini__start.
17104 2002-01-28 Aldy Hernandez <aldyh@redhat.com>
17106 * config/rs6000/altivec.h: Remove spurious semicolons.
17108 2002-01-27 Kazu Hirata <kazu@hxi.com>
17110 * config/h8300/h8300.md: Replace dead bit extraction patterns
17111 with ones that work.
17113 Sun Jan 27 13:23:40 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
17115 * emit-rtl.c (get_mem_attrs): Don't default alignment for non-BLKmode
17116 if not STRICT_ALIGNMENT.
17117 * rtl.h (MEM_ALIGN): Likewise.
17119 2002-01-27 Craig Rodrigues <rodrigc@gcc.gnu.org>
17121 * doc/invoke.texi (-fdump-translation-unit): Revert this
17122 patch: 2001-10-21 Craig Rodrigues <rodrigc@gcc.gnu.org>
17124 2002-01-27 Kazu Hirata <kazu@hxi.com>
17126 * config/h8300/h8300.md (define_constants): New.
17127 (anonymous patterns) Use defined constants appropriately.
17129 2002-01-27 Kazu Hirata <kazu@hxi.com>
17131 * config/h8300/h8300.c (function_arg): Remove redundant code.
17133 2002-01-26 Richard Henderson <rth@redhat.com>
17135 * sched-deps.c (reg_pending_uses_head): New.
17136 (reg_pending_barrier): Rename from reg_pending_sets_all.
17137 (find_insn_list): Don't mark inline.
17138 (find_insn_mem_list): Remove.
17139 (add_dependence_list, add_dependence_list_and_free): New.
17140 (flush_pending_lists): Replace only_write param with separate
17141 for_read and for_write parameters. Update all callers. Use
17142 add_dependence_list_and_free.
17143 (sched_analyze_1): Do not add reg dependencies here; just set
17144 the pending bits. Use add_dependence_list.
17145 (sched_analyze_2): Likewise.
17146 (sched_analyze_insn): Replace schedule_barrier_found with
17147 reg_pending_barrier. Add all dependencies for pending reg
17148 uses, sets, and clobbers.
17149 (sched_analyze): Don't add reg dependencies for calls, just
17150 set pending bits. Use regs_invalidated_by_call. Treat
17151 sched_before_next_call as a normal list, not a fake insn.
17152 (init_deps): No funny init for sched_before_next_call.
17153 (free_deps): Free pending mems lists. Don't zero reg_last.
17154 (init_deps_global): Init reg_pending_uses.
17155 (finish_deps_global): Free it.
17156 * sched-int.h (deps): Make in_post_call_group_p boolean. Update docs.
17157 (find_insn_mem_list): Remove.
17158 * sched-rgn.c (concat_INSN_LIST, concat_insn_mem_list): New.
17159 (propagate_deps): Use them. Zero temp mem lists.
17161 2002-01-26 Richard Henderson <rth@redhat.com>
17163 * Makefile.in (CRTSTUFF_CFLAGS): New.
17164 (crtbegin.o, crtend.o, crtbeginS.o, crtendS.o, crtbeginT.o): Use it.
17165 * config.gcc (alpha-linux, alpha-freebsd, alpha-netbsd): Use plain
17166 crtstuff.c instead of alpha assembly version.
17167 * crtstuff.c (CRT_CALL_STATIC_FUNCTION): Rewrite to assume the
17168 entire dummy function sequence. Use FORCE_CODE_SECTION_ALIGN
17169 not FORCE_{INIT,FINI}_SECTION_ALIGN.
17170 (__do_global_dtors_aux): Mark used.
17171 (frame_dummy, __do_global_ctors_aux): Mark used.
17172 (fini_dummy, init_dummy): Remove.
17174 * config/alpha/crtbegin.asm: Remove file.
17175 * config/alpha/crtend.asm: Remove file.
17176 * config/alpha/t-crtbe: Remove file.
17177 * config/alpha/elf.h (CRT_CALL_STATIC_FUNCTION): New.
17178 (LINK_EH_SPEC): New.
17180 * config/cris/cris.h (CRT_CALL_STATIC_FUNCTION): Rewrite old
17181 FORCE_INIT_SECTION_ALIGN hack. Register __fini_start before
17182 calling constructors.
17183 * config/cris/linux.h (CRT_CALL_STATIC_FUNCTION): Undef.
17185 * config/i386/i386.h (CRT_CALL_STATIC_FUNCTION): New.
17186 * config/i386/linux.h (CRT_CALL_STATIC_FUNCTION): Replace old
17187 CRT_END_INIT_DUMMY hack.
17188 * config/i386/sol2.h (FORCE_CODE_SECTION_ALIGN): Replace
17189 FORCE_{INIT,FINI}_SECTION_ALIGN.
17191 * config/mcore/mcore-elf.h (FORCE_CODE_SECTION_ALIGN): Replace
17192 FORCE_{INIT,FINI}_SECTION_ALIGN.
17194 * config/s390/s390.h (CRT_CALL_STATIC_FUNCTION): Update for new
17195 invocation sequence.
17196 * config/sh/sh.h (CRT_CALL_STATIC_FUNCTION): Likewise.
17198 * doc/tm.texi (CRT_CALL_STATIC_FUNCTION): Update.
17199 (FORCE_CODE_SECTION_ALIGN): New.
17201 2002-01-26 Richard Henderson <rth@redhat.com>
17203 * config/cris/cris.c (cris_print_operand): Handle 64-bit CONST_INT.
17205 2002-01-26 Richard Henderson <rth@redhat.com>
17207 * config/alpha/alpha.c (alpha_sa_mask): Mark RA for unicos here too.
17208 (alpha_sa_size): Use alpha_sa_mask to compute size of saved regs.
17210 2002-01-26 Kazu Hirata <kazu@hxi.com>
17212 * config/h8300/h8300.md: Remove bit extraction patterns that
17213 cannot be triggered.
17214 Restrict each bit extraction pattern to a variant on which the
17217 2002-01-26 Joseph S. Myers <jsm28@cam.ac.uk>
17219 * doc/include/texinfo.tex: Update to version 2002-01-04.07.
17221 2002-01-26 Kazu Hirata <kazu@hxi.com>
17223 * config/h8300/h8300.md: Remove bit test patterns that cannot
17225 Restrict each bit test pattern to a variant on which the
17228 2002-01-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
17230 * builtins.c (expand_builtin_strncat): Remove redundant check for
17233 2002-01-25 David O'Brien <obrien@FreeBSD.org>
17235 * config/i386/x86-64.h (DEFAULT_PCC_STRUCT_RETURN): Do not overide
17237 * config/i386/freebsd64.h (DEFAULT_PCC_STRUCT_RETURN): Do not override
17240 2002-01-25 Geoffrey Keating <geoffk@redhat.com>
17242 * dbxout.c (dbxout_init): Use assemble_name rather than just
17243 stripping off the first character.
17244 (dbxout_source_file): Likewise.
17246 2002-01-25 DJ Delorie <dj@redhat.com>
17248 * config/sparc/sparc.c (sparc_emit_set_symbolic_const64): Compare
17249 using rtx_equal_p, not by comparing pointers.
17251 2002-01-25 Steve Ellcey <sje@cup.hp.com>
17253 * emit-rtl.c (gen_rtx_REG): Always return the same rtx
17254 for PIC_OFFSET_TABLE_REGNUM.
17255 (init_emit_once): Use gen_raw_REG to initialize pic_offset_table_rtx.
17257 2002-01-25 David O'Brien <obrien@FreeBSD.org>
17259 * config.gcc (x86_64-*-freebsd*): New target.
17260 (x86_64-*-netbsd*,x86_64-*-linux*): Use ${tm_file} rather than its
17262 (i[34567]86-*-freebsd*): Don't include svr4.h.
17263 * config/i386/freebsd64.h: New file.
17265 2002-01-25 Douglas B Rupp <rupp@gnat.com>
17267 * config/alpha/x-vms (version): Make static.
17269 * config/alpha/vms.h (MD_FALLBACK_FRAME_STATE_FOR): Fix error
17270 in previous checkin.
17272 * Makefile.in (install-headers-cp): New target.
17273 * config.gcc (alpha-dec-*vms*): Install headers with
17276 Fri Jan 25 22:42:49 CET 2002 Jan Hubicka <jh@suse.cz>
17278 * unroll.c (unroll_loop): Lower final_value to nonmemory operand;
17281 Fri Jan 25 08:26:19 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
17283 * builtins.c (expand_builtin_strncpy): Use integer_zerop instead
17284 of compare_tree_int.
17285 (expand_builtin_strncat): Likewise.
17286 * c-decl.c (finish_struct): Use tree_low_cst.
17287 * tree.h (compare_tree_int): Arg is unsigned HOST_WIDE_INT.
17288 * tree.c (compare_tree_int): Likewise.
17290 2002-01-25 Ulrich Weigand <uweigand@de.ibm.com>
17292 * reload1.c (eliminate_regs_in_insn): Recognize frame pointer
17293 adjustments even if they are implemented by more than two insns.
17295 Fri Jan 25 20:43:56 CET 2002 Jan Hubicka <jh@suse.cz>
17297 * df.c (df_ref_create, df_ref_record_1, df_ref_record): Kill BB arg.
17298 * df.h (struct ref): Kill B.
17299 (DF_REF_BB, DF_REF_BBNO): Use BLOCK_FOR_INSN.
17301 * basic-block.h (PROP_EQUAL_NOTES): New flag.
17302 * flow.c (propagate_one_insn): Use it.
17303 (mark_used_regs): Handle NIL.
17305 2002-01-25 Geoffrey Keating <geoffk@redhat.com>
17307 * config/stormy16/stormy16.md (tablejump_pcrel): Use a MEM
17310 2002-01-25 David Edelsohn <edelsohn@gnu.org>
17312 * rs6000.md (prefetch): Make address V4SI mode so that the address
17313 is restricted to legitimate form for instruction.
17315 2002-01-25 Bob Wilson <bob.wilson@acm.org>
17317 * doc/install.texi (xtensa-*-elf): New target.
17318 (xtensa-*-linux*): New target.
17319 * doc/contrib.texi: Add myself.
17321 2002-01-25 Nick Clifton <nickc@cambridge.redhat.com>
17323 * config/arm/arm.c (arm_hard_regno_mode_ok): Allow any general
17324 purpose register to hold an SImode (or smaller) value.
17326 2002-01-25 Jakub Jelinek <jakub@redhat.com>
17328 * unwind-dw2-fde-glibc.c: If inhibit_libc, use __register_frame*
17330 * crtstuff.c: Likewise.
17332 2002-01-25 Kazu Hirata <kazu@hxi.com>
17334 * config/h8300/h8300.md (negation patterns): Tighten
17335 predicates to register_operand.
17337 2002-01-24 Aldy Hernandez <aldyh@redhat.com>
17339 * loop.c (emit_prefetch_instructions): Use the prefetch insn's
17342 * builtins.c (expand_builtin_prefetch): Same.
17344 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
17346 * config/sh/sh.md (sym_label2reg): Make sure all CONSTs have
17349 2002-01-24 Kazu Hirata <kazu@hxi.com>
17351 * config/h8300/h8300.c (print_operand): Remove support for
17352 operand character 'A'.
17353 * config/h8300/h8300.md (three anonymous patterns): Replace
17354 operand character 'A' with either 'T' or 'S'.
17356 2002-01-24 Kazu Hirata <kazu@hxi.com>
17358 * config/h8300/h8300.c (print_operand): Remove support for
17359 operand character 'U'.
17361 2002-01-24 Andris Pavenis <pavenis@latnet.lv>
17363 * config/i386/t-djgpp: Use NATIVE_SYSTEM_HEADER_DIR.
17365 2002-01-24 Nick Clifton <nickc@cambridge.redhat.com>
17367 * config/arm/arm.c (arm_hard_regno_mode_ok): Allow SImode
17368 values to be assigned to the stack pointer.
17370 2002-01-14 Hartmut Penner <hpenner@de.ibm.com>
17372 * emit_rtl.c (gen_lowpart_common): Conversion from const_int
17373 to const_double needs to be done right for big-endian systems.
17375 2002-01-24 Jason Merrill <jason@redhat.com>
17378 * config/sparc/sparc.md (call-jump peepholes): Pass the right insn
17379 to can_throw_internal.
17381 2002-01-23 Richard Henderson <rth@redhat.com>
17383 * fold-const.c (fold): Change UINT_MAX test to check vs precision
17384 rather than TYPE_MAX_VALUE. Fix indentation and a bogus negation.
17386 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
17388 * config/sh/sh.md (symGOT_load, sym2GOT, sym2GOTOFF): New expands.
17389 (symGOT2reg): Use them, then set as GOT value as unchanging.
17390 (symGOTOFF2reg): Set REG_EQUAL note. Use a different pseudo
17391 as a temporary, if possible.
17392 (symPLT_label2reg): Enclose (pc) in UNSPEC_PIC. Emit
17393 sym@PLT-(.LPCS#+2-.) instead of sym@PLT+.-(.LPCS#+2).
17395 2002-01-23 Kazu Hirata <kazu@hxi.com>
17397 * config/h8300/h8300.md: Fix xorqi and xorqi so that they will
17398 accept to accept 0x80 as operands[2].
17400 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
17402 * config/sparc/sparc.md (fix_trunctfdi2): Correct typo in mode.
17404 2002-01-23 Richard Henderson <rth@redhat.com>
17406 * config/alpha/alpha.md (call_value_osf_1_er peepholes): Fix typo.
17408 2002-01-23 Aldy Hernandez <aldyh@redhat.com>
17410 * c-parse.in (parmlist_or_identifiers): Add maybe_attribute.
17411 (parmlist_or_identifiers_1): Verify that only a parmlist follows
17414 2002-01-23 Richard Henderson <rth@redhat.com>
17416 * expr.c (move_by_pieces_1): Extend size before negation.
17418 * config/m68k/t-m68kbare (MULTILIB_OPTIONS): Add 68040 and 68060.
17419 (MULTILIB_MATCHES): Remove 68040 and 68060 aliases.
17420 (MULTILIB_EXCEPTIONS): Ignore 68881 and soft-float for 68040 and 68060.
17421 * config/m68k/t-m68kelf: Likewise.
17423 2002-01-23 Bob Wilson <bob.wilson@acm.org>
17425 * config/xtensa/elf.h: New file.
17426 * config/xtensa/lib1funcs.asm: New file.
17427 * config/xtensa/lib2funcs.S: New file.
17428 * config/xtensa/linux.h: New file.
17429 * config/xtensa/t-xtensa: New file.
17430 * config/xtensa/xtensa-config.h: New file.
17431 * config/xtensa/xtensa-protos.h: New file.
17432 * config/xtensa/xtensa.c: New file.
17433 * config/xtensa/xtensa.h: New file.
17434 * config/xtensa/xtensa.md: New file.
17435 * config.gcc (xtensa-*-elf*): New target.
17436 (xtensa-*-linux*): New target.
17437 * cse.c (canon_hash): Compare rtx pointers instead of register
17438 numbers. This is required for the Xtensa port.
17439 * integrate.c (copy_insn_list): Handle case where the static
17440 chain is in memory and the memory address has to be copied to
17442 * doc/invoke.texi (Option Summary): Add Xtensa options.
17443 (Xtensa Options): New node.
17444 * doc/md.texi (Machine Constraints): Add Xtensa machine constraints.
17446 2002-01-23 Zack Weinberg <zack@codesourcery.com>
17448 * diagnostic.c (internal_error): Do ICE suppression only
17449 when ENABLE_CHECKING is not defined.
17451 * c-typeck.c (require_complete_type): Return error_mark_node
17452 if type is error_mark_node.
17454 2002-01-23 Janis Johnson <janis187@us.ibm.com>
17456 * toplev.c (process_options): Disable -fprefetch-loop-arrays with
17457 -Os and issue a warning.
17459 2002-01-23 Zack Weinberg <zack@codesourcery.com>
17461 * doc/fragments.texi, doc/hostconfig.texi: Update to reflect
17462 current (lack of) need for host configuration by hand.
17464 * doc/gccint.texi, doc/rtl.texi, doc/tm.texi: Adjust cross
17465 references. Documentation of some target macros moved from
17466 hostconfig.texi to tm.texi.
17468 2002-01-23 Will Cohen <wcohen@redhat.com>
17470 * config/arm/arm.h (THUMB_FUNCTION_PROFILER): Define if not currently
17473 2002-01-23 Kazu Hirata <kazu@hxi.com>
17475 * config/h8300/h8300.md (*andorhi3): Accept 0x8000 as an
17478 2002-01-23 Jason Merrill <jason@redhat.com>
17480 * tree.c (build1): Don't set TREE_READONLY on INDIRECT_REF.
17482 * function.c (assign_parms): Don't put args of inline functions
17483 into registers when not optimizing.
17485 2002-01-23 Nick Clifton <nickc@cambridge.redhat.com>
17487 * config/arm/arm.md (UNSPEC_PROLOGUE_USE): New unspec constant.
17488 (prologue_use): New pattern.
17489 * config/arm/arm.c (expand_prologue): Use gen_prologue_use in
17490 preference to gen_rtx_USE.
17491 (thumb_expand_prologue): Use gen_prologue_use in preference to
17493 (thumb_expand_epilogue): Use gen_prologue_use in preference to
17496 2002-01-23 Hans-Peter Nilsson <hp@bitrange.com>
17498 * loop.c [!HAVE_prefetch] (CODE_FOR_prefetch): Define to 0.
17500 2002-01-23 Neil Booth <neil@daikokuya.demon.co.uk>
17503 * doc/extend.texi: Correct documentation of __alignof__.
17505 2002-01-22 Zack Weinberg <zack@codesourcery.com>
17507 * params.h: Rename arguments of DEFPARAM so that it will be
17508 recognized as a translation keyword.
17510 2002-01-22 Aldy Hernandez <aldyh@redhat.com>
17512 * extend.texi: Document altivec functions.
17513 Fix N-bit adjectives in X86 builtin documentation.
17515 2002-01-22 Alexandre Oliva <aoliva@redhat.com>
17517 * reload.c (reg_overlap_mentioned_for_reload_p): Handle PLUS and
17518 auto_inc_dec values.
17520 2002-01-22 Richard Earnshaw <rearnsha@arm.com>
17522 * config/netbsd-aout.h (SWITCH_TAKES_ARG): Remove bogus white space
17524 (ASM_DECLARE_OBJECT_NAME): Add missing backslash before final line.
17526 2002-01-22 Alexandre Oliva <aoliva@redhat.com>
17528 * config/i386/freebsd-aout.h (ASM_QUAD): Undefine.
17530 2002-01-22 Richard Henderson <rth@redhat.com>
17532 * config/alpha/alpha.c (split_small_symbolic_mem_operand): Use
17533 copy_insn not copy_rtx.
17535 2002-01-23 Alan Modra <amodra@bigpond.net.au>
17537 * combine.c (simplify_and_const_int): Don't trunc_int_for_mode
17538 "nonzero" as that might add "1" bits. Ensure "constop" is
17539 properly sign extened.
17540 (force_to_mode): Tweak for sign extended constop.
17542 2002-01-22 Richard Henderson <rth@redhat.com>
17544 * config/alpha/alpha.c (some_small_symbolic_mem_operand) Use
17545 for_each_rtx instead of assuming we're already looking at the MEM.
17546 (split_small_symbolic_mem_operand): Likewise.
17547 * config/alpha/alpha.h (PREDICATE_CODES): Update.
17548 * config/alpha/alpha.md (small symbolic memory splitters): Update.
17550 2002-01-22 Richard Henderson <rth@redhat.com>
17552 * config/alpha/alpha.md (divmodsi_internal_er): Generate lituse
17553 sequence number for the literal.
17554 (divmoddi_internal_er): Likewise.
17556 2002-01-22 Craig Rodrigues <rodrigc@gcc.gnu.org>
17559 * aclocal.m4 (AM_ICONV): Put linking flags for libiconv
17560 in LIBICONV variable.
17561 * configure: Regenerated.
17563 2002-01-22 Krister Walfridsson <cato@df.lth.se>
17565 * dependence.c (build_def_use): Remove array_idx.
17567 * dwarfout.c (last_filename): Remove.
17568 (output_compile_unit_die): Remove last_filename.
17570 2002-01-22 Roger Sayle <roger@eyesopen.com>
17571 Richard Henderson <rth@redhat.com>
17574 * fold-const.c (fold): Optimize unsigned comparisons against
17575 UINT_MAX (and similar unsigned constants).
17577 2002-01-22 Janis Johnson <janis187@us.ibm.com>
17579 * Makefile.in (loop.o): Depend on OPTABS_H.
17580 * loop.c (emit_prefetch_instructions): Check the prefetch operand
17581 against the predicate.
17584 * config/i386/i386.md (prefetch_sse): Specify "p" as a constraint
17585 for the address operand.
17587 2002-01-22 Richard Henderson <rth@redhat.com>
17589 * config/alpha/freebsd.h (FUNCTION_PROFILER): Remove.
17591 2002-01-22 Craig Rodrigues <rodrigc@gcc.gnu.org>
17594 * config/i386/sysv4.h (CPP_SPEC): Define, and add CPU
17595 preprocessor flags.
17597 2002-01-22 Jason Thorpe <thorpej@wasabisystems.com>
17599 * config.gcc (x86_64-*-netbsd*): New target.
17600 * config/i386/netbsd64.h: New file.
17602 2002-01-22 Aldy Hernandez <aldyh@redhat.com>
17604 * regrename.c (kill_value): Fix typo.
17606 2002-01-22 Aldy Hernandez <aldyh@redhat.com>
17608 * doc/tm.texi: Remove STARTING_FRAME_PHASE.
17610 * config/rs6000/rs6000.h: Same.
17612 * function.c (instantiate_virtual_regs): Remove
17613 STARTING_FRAME_PHASE.
17614 (assign_stack_local_1): Same.
17615 Calculate frame phase.
17617 2002-01-22 Nick Clifton <nickc@redhat.com>
17619 * config/arm/arm.h (CONDITIONAL_REGISTER_USAGE): Move 'regno'
17620 variable declaration to outer scope in order to simplify
17622 (HARD_REGNO_MODE_OK): Replace macro body with a with a call to
17623 arm_hard_regno_mode_ok.
17624 * config/arm/arm-protos.h: Add a prototype for
17625 arm_hard_regno_mode_ok.
17626 * config/arm/arm.c (soft_df_operand): Remove now redundant
17627 check for DImode values using IP_REGNUM.
17628 (nonimmediate_soft_df_operand): Remove now redundant check for
17629 DImode values using IP_REGNUM.
17630 (arm_hard_regno_mode_ok): New function. New check: make sure
17631 that DImode values are not stored in IP_REGNUM.
17633 * config/arm/arm.c (arm_expand_prologue): Replace REG_MAYBE_DEAD
17635 (thumb_expand_prologue): Replace REG_MAYBE_DEAD note with a USE.
17637 2002-01-22 Jason Merrill <jason@redhat.com>
17639 * c-semantics.c (genrtl_compound_stmt): Only check nesting
17640 consistency if this COMPOUND_STMT is scoped.
17642 2002-01-22 Kazu Hirata <kazu@hxi.com>
17644 * predict.c: Fix formatting.
17645 * print-tree.c: Likewise.
17646 * protoize.c: Likewise.
17647 * real.h: Likewise.
17649 * sbitmap.h: Likewise.
17650 * scan.c: Likewise.
17651 * sched-deps.c: Likewise.
17652 * sched-vis.c: Likewise.
17653 * sdbout.c: Likewise.
17654 * sibcall.c: Likewise.
17656 * ssa-ccp.c: Likewise.
17657 * ssa-dce.c: Likewise.
17658 * stmt.c: Likewise.
17659 * stor-layout.c: Likewise.
17660 * system.h: Likewise.
17662 Tue Jan 22 06:26:33 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
17664 * tree.c (int_fits_type_p): If bounds of a subtype are variable, see
17665 if fits in bounds of base type.
17667 * dwarf2out.c (equate_decl_number_to_die): Add "int" to decls.
17668 (loc_descriptor_from_tree, case CALL_EXPR, case ADDR_EXPR): New.
17669 (add_bound_info, default): If can't find a context, make a
17671 (dwarf2out_finish): Check for SAVE_EXPR in node->created_for.
17673 2002-01-22 Hans-Peter Nilsson <hp@axis.com>
17675 * c-typeck.c (parser_build_binary_op): If result from
17676 build_binary_op is ERROR_MARK just return error_mark_node without
17677 further processing.
17679 2002-01-21 Jason Thorpe <thorpej@wasabisystems.com>
17681 * config/netbsd.h (TARGET_HAS_F_SETLKW): define.
17682 Split a.out-specific bits into...
17683 * config/netbsd-aout.h: ...this.
17684 * config/netbsd-elf.h: New file.
17685 * config/alpha/netbsd-elf.h: Remove.
17686 * config/alpha/netbsd.h: Rewrite for a NetBSD/alpha ELF target.
17687 * config/i386/netbsd-elf.h (LIB_SPEC): Remove.
17688 (STARTFILE_SPEC): Remove redundant definition.
17689 (ENDFILE_SPEC): Likewise.
17690 (LINK_SPEC): Likewise.
17691 (CPP_SPEC): Likewise.
17692 (ASM_SPEC): Likewise.
17693 (LIB_SPEC): Likewise.
17694 (SWITCH_TAKES_ARG): Likewise.
17695 (TARGET_MEM_FUNCTIONS): Likewise.
17696 (CPP_PREDEFINES): Redefine.
17697 (ASM_FINAL_SPEC): Remove redefinition.
17698 (ASM_COMMENT_START): Redefine.
17699 (FUNCTION_PROFILER): Define.
17700 (TARGET_VERSION): Redefine.
17701 Comment and formatting cleanup.
17702 * config/i386/netbsd.h: Include <netbsd-aout.h>.
17703 * config/m68k/netbsd.h: Include <netbsd-aout.h>.
17704 * config/mips/netbsd.h: Rewrite for NetBSD/mips ELF target,
17705 big- or little-endian.
17706 * config/ns32k/netbsd.h: Include <netbsd-aout.h>.
17707 * config.gcc (*-*-netbsd*): Add definitions common to all
17709 (alpha*-*-netbsd*): Remove redundant xm_defines, gas, and
17710 gnu_ld definitions. Add netbsd-elf.h to and remove
17711 alpha/netbsd-elf.h from tm_file. Remove alpha/t-crtfm from
17712 tmake_file, and don't lose previous tmake_file contents.
17713 (arm*-*-netbsd*): Add netbsd-aout.h to tm_file.
17714 (i[34567]86-*-netbsdelf*): Remove redundant xm_defines, gas, and
17715 gnu_ld definitions. Add netbsd-elf.h to tm_file.
17716 (mips-dec-netbsd*): Remove as alias for mipsel-*-netbsd*.
17717 (mipsel-*-netbsd*): Rename this to...
17718 (mips*-*-netbsd*): ...this. Add elfos.h to tm_file. Add
17719 mips/little.h to tm_file for mips*el-*.
17720 (powerpc-*-netbsd*): Remove redundant xm_defines definition.
17721 (sparc-*-netbsd*): Add netbsd-aout.h to tm_file.
17722 (vax-*-netbsd*): Add netbsd-aout.h to tm_file.
17724 2002-01-21 John David Anglin <dave@hiauly1.hia.nrc.ca>
17726 * pa-protos.h (reg_before_reload_operand): New function prototype.
17727 * pa.c (reg_before_reload_operand): New function implementation.
17728 * pa.md (decrement_and_branch_until_zero, movb): Use it. Change "!*m"
17729 contraints to "*m".
17731 2002-01-21 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
17733 * combine.c (simplify_and_const_int): Properly sign-extend CONSTOP.
17735 2002-01-21 John David Anglin <dave@hiauly1.hia.nrc.ca>
17737 * pa64-hpux.h (MD_EXEC_PREFIX): Set to "/usr/ccs/bin".
17738 (MD_STARTFILE_PREFIX): Set to "/usr/ccs/lib/pa20_64/".
17739 (MD_STARTFILE_PREFIX_1): Set to "/opt/langtools/lib/pa20_64/".
17740 (EH_FRAME_IN_DATA_SECTION): Define and update comment on init sections.
17741 (ENDFILE_SPEC): Undefine.
17742 (STARTFILE_SPEC): Redefine for PA.
17744 2002-01-21 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
17746 * config/rs6000/t-ppccomm (CRTSTUFF_T_CFLAGS_S): Re-add -fPIC.
17748 2002-01-21 Daniel Jacobowitz <drow@mvista.com>
17750 * config.gcc: Add entries to supported PowerPC --with-cpu
17753 2002-01-21 Jakub Jelinek <jakub@redhat.com>
17755 * config/i386/i386.c (ix86_function_arg_regno_p): Never return
17756 true for 64-bit mode only SSE registers in 32-bit mode.
17758 2002-01-21 Kazu Hirata <kazu@hxi.com>
17760 * unwind-dw2.c: Fix formatting.
17761 * unwind-dw2-fde.c: Likewise.
17762 * unwind-dw2-fde.h: Likewise.
17763 * unwind-pe.h: Likewise.
17764 * varasm.c: Likewise.
17765 * varray.h: Likewise.
17767 2002-01-21 Hans-Peter Nilsson <hp@bitrange.com>
17769 Remove workaround for register stack overwrite bug in mmix.
17770 * config/mmix/mmix.c (mmix_target_asm_function_prologue): Remove
17771 support for TARGET_REG_STACK_FILL_BUG.
17772 * config/mmix/mmix.h: Remove member has_call_without_parameters.
17773 (TARGET_MASK_REG_STACK_FILL_BUG, TARGET_REG_STACK_FILL_BUG):
17775 (TARGET_DEFAULT): Remove TARGET_MASK_REG_STACK_FILL_BUG.
17776 (TARGET_SWITCHES): Remove -mreg-stack-fill-bug-workaround and
17777 -mno-reg-stack-fill-bug-workaround.
17778 * config/mmix/mmix.md ("call", "call_value"): Don't set struct
17779 machine member has_call_without_parameters.
17780 * doc/invoke.texi (Option Summary) <MMIX Options>: Remove
17781 -mreg-stack-fill-bug-workaround and
17782 -mno-reg-stack-fill-bug-workaround.
17783 (MMIX Options): Ditto.
17785 2002-01-21 Kazu Hirata <kazu@hxi.com>
17787 * config/h8300/h8300.c (function_arg): Replace 0 with NULL_RTX
17789 Remove redundant code.
17791 2002-01-21 Joseph S. Myers <jsm28@cam.ac.uk>
17793 * config/alpha/alpha.h, config/arc/arc.h, config/avr/avr.h,
17794 config/c4x/c4x.h, config/d30v/d30v.h, config/dsp16xx/dsp16xx.h,
17795 config/fr30/fr30.h, config/ia64/ia64.h, config/m68hc11/m68hc11.h,
17796 config/mips/mips.h, config/rs6000/rs6000.h, config/sparc/sparc.h,
17797 config/stormy16/stormy16.h, config/v850/v850.h: Remove commented
17798 out target macro definitions and non-target-specific comments
17799 mostly taken from old versions of the manual.
17801 2002-01-20 Kazu Hirata <kazu@hxi.com>
17803 * config/h8300/h8300.h: Fix comment formatting.
17804 * config/ia64/aix.h: Likewise.
17805 * config/ia64/ia64-protos.h: Likewise.
17806 * config/ia64/ia64.c: Likewise.
17807 * config/ia64/ia64.h: Likewise.
17808 * config/ia64/ia64intrin.h: Likewise.
17809 * config/ia64/linux.h: Likewise.
17810 * config/ia64/unwind-aix.c: Likewise.
17811 * config/ia64/unwind-ia64.c: Likewise.
17813 2002-01-20 Kazu Hirata <kazu@hxi.com>
17815 * config/h8300/h8300.c: Revise comments about shift code.
17817 2002-01-20 Kazu Hirata <kazu@hxi.com>
17819 * config/h8300/h8300.c (function_arg): Update a comment.
17821 2002-01-20 Kazu Hirata <kazu@hxi.com>
17823 * config/h8300/h8300.md: Update the comments at the beginning
17826 2002-01-20 Kazu Hirata <kazu@hxi.com>
17828 * config/i370/i370.c: Fix comment formatting.
17829 * config/i370/i370.h: Likewise.
17830 * config/i370/i370.md: Likewise.
17831 * config/i370/linux.h: Likewise.
17833 Sun Jan 20 18:40:14 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
17835 * reg-stack.c (subst_stack_regs): Properly check for deleted insn.
17837 * dwarf2out.c (loc_descriptor_from_tree): Add TRUTH_*_EXPR cases.
17838 (gen_struct_or_union_type_die): Don't SIGSEGV if no TYPE_STUB_DECL
17839 in incomplete case.
17841 2002-01-20 Graham Stott <grahams@redhat.com>
17843 * cfgloop.c (flow_loop_preheader_scan): Fix typo.
17845 2002-01-19 John David Anglin <dave@hiauly1.hia.nrc.ca>
17847 * config.gcc (hppa*64*-*-hpux11*): Fix tmake_file.
17849 2002-01-19 Tom Rix <trix@redhat.com>
17851 * config/rs6000/rs6000.md: Fix DF split for 64 bit hosts.
17853 2002-01-18 Aldy Hernandez <aldyh@redhat.com>
17855 * doc/tm.texi (STARTING_FRAME_PHASE): Document.
17857 * function.c (assign_stack_local_1): Adjust x_frame_offset with
17858 STARTING_FRAME_PHASE.
17859 (STARTING_FRAME_PHASE): New.
17860 (instantiate_virtual_regs): Check saneness of
17861 STARTING_FRAME_PHASE.
17863 * config/rs6000/rs6000.h (STARTING_FRAME_PHASE): New.
17865 2002-01-19 Alexandre Oliva <aoliva@redhat.com>
17867 * config/sh/sh.md (movdf_i4 split): Fix alter_subreg calls.
17869 2002-01-18 Craig Rodrigues <rodrigc@gcc.gnu.org>
17871 * doc/install.texi (hppa*-hp-hpux11): Clarify that GCC 2.95.x cannot
17872 be used for bootstrapping GCC 3.0.
17874 2002-01-18 Kazu Hirata <kazu@hxi.com>
17876 * config/h8300/h8300.md: Fix an insn length.
17878 2002-01-18 Kazu Hirata <kazu@hxi.com>
17880 * bitmap.h: Fix comment formatting.
17881 * combine.c: Likewise.
17882 * cppfiles.c: Likewise.
17883 * c-pragma.h: Likewise.
17884 * c-typeck.c: Likewise.
17886 * dwarf2out.c: Likewise.
17887 * function.c: Likewise.
17889 * genattrtab.c: Likewise.
17890 * gthr-win32.h: Likewise.
17891 * haifa-sched.c: Likewise.
17892 * predict.c: Likewise.
17893 * rtlanal.c: Likewise.
17895 * unwind-dw2-fde.h: Likewise.
17896 * unwind-pe.h: Likewise.
17897 * vmsdbgout.c: Likewise.
17899 Thu Jan 17 15:28:26 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
17901 * attribs.c (decl_attributes): Clear ATTR_FLAG_TYPE_IN_PLACE
17902 if type_required and passed decl.
17904 2002-01-17 Aldy Hernandez <aldyh@redhat.com>
17906 * config.gcc (cpu_type): Include altivec.h in powerpc
17910 * config/rs6000/altivec.h: New.
17912 2002-01-17 David Edelsohn <edelsohn@gnu.org>
17914 * doc/install.texi (*-ibm-aix*): Update assembler and exception
17915 handling information.
17916 * doc/trouble.texi (Interoperation): Add libstdc++ information
17918 (Misunderstandings): Add template instantiation and static template
17919 member information for AIX.
17921 2002-01-17 Jason Merrill <jason@redhat.com>
17923 * dbxout.c (dbxout_type): Support const and volatile.
17925 * except.c (add_partial_entry): Remove backwards compatibility code.
17926 (end_protect_partials): Likewise.
17928 2002-01-17 Jakub Jelinek <jakub@redhat.com>
17930 * config/ia64/ia64.md (prologue_use): New.
17931 * config/ia64/ia64.c (ia64_expand_prologue): Use
17932 gen_prologue_use instead of gen_rtx_USE.
17933 (group_barrier_needed_p): Handle CODE_FOR_prologue_use the same way
17934 as CODE_FOR_pred_rel_mutex.
17935 (ia64_sched_reorder2): Likewise.
17937 2002-01-16 Eric Christopher <echristo@redhat.com>
17939 * config/mips/r3900.h: Reformat.
17940 (SUBTARGET_CPP_SIZE_SPEC): Remove.
17941 * config/mips/isa3264.h (SUBTARGET_CPP_SIZE_SPEC): Ditto.
17942 * config/mips/mips.h (ABI_GAS_ASM_SPEC): Default to "".
17943 (SUBTARGET_CPP_SIZE_SPEC): Rewrite.
17944 * config/mips/t-elf: Remove mips3 multilib.
17946 2002-01-16 H.J. Lu <hjl@gnu.org>
17948 * config/mips/linux.h: Include "mips/abi64.h".
17950 2002-01-16 H.J. Lu <hjl@gnu.org>
17952 * config/mips/t-linux: New.
17954 * config.gcc: Add mips/t-linux to tmake_file for mips*-*-linux*.
17956 * config/mips/linux.h: Don't include "gofast.h".
17957 (INIT_SUBTARGET_OPTABS): Removed.
17959 2002-01-16 Kazu Hirata <kazu@hxi.com>
17961 * config/h8300/h8300-protos.h: Replace emit_a_shift with
17963 * config/h8300/h8300.c: Likewise.
17964 * config/h8300/h8300.md: Likewise.
17966 2002-01-16 Kazu Hirata <kazu@hxi.com>
17968 * config/h8300/h8300.md (pushqi1_h8300): Use a tab instead of
17969 spaces after an opcode name.
17970 (pushqi1_h8300hs): Likewise.
17971 (pushhi1_h8300hs): Likewise.
17973 2002-01-16 Kazu Hirata <kazu@hxi.com>
17975 * doc/extend.texi: Replace "option" with "attribute"
17978 2002-01-16 Jakub Jelinek <jakub@redhat.com>
17980 * config/alpha/alpha.c (some_small_symbolic_mem_operand): Look into
17981 (and:DI () (const_int -8)).
17982 (split_small_symbolic_mem_operand): Split
17983 (mem (and:DI () (const_int -8)).
17985 2002-01-16 Jakub Jelinek <jakub@redhat.com>
17988 * config/sparc/sparc.c (ultrasparc_adjust_cost): Handle TYPE_IDIV the
17989 same way as TYPE_IMUL.
17990 (ultrasparc_sched_reorder): Likewise.
17991 * config/sparc/sparc.md (type): Add comment to update
17992 ultrasparc_sched_reorder when making changes.
17994 2002-01-16 Kazu Hirata <kazu@hxi.com>
17996 * doc/invoke.texi: Change the dump file name of block
17997 reordering pass from 28.bbro to 29.bbro.
17998 Mention -dk option.
18000 Wed Jan 16 17:54:22 CET 2002 Jan Hubicka <jh@suse.cz>
18002 * i386.md (minsf splitter): Fix pasto.
18004 2002-01-16 Nick Clifton <nickc@cambridge.redhat.com>
18006 * config/arm/arm.c (arm_expand_prologue): Add REG_MAYBE_DEAD note
18007 to frame pointer initialisation instruction.
18008 (thumb_expand_prologue): Add REG_MAYBE_DEAD note to frame pointer
18009 initialisation instruction.
18010 (soft_df_operand): Do not accept the IP register.
18011 (nonimmediate_soft_df_operand): Do not accept the IP register.
18013 2002-01-16 Jakub Jelinek <jakub@redhat.com>
18016 * config/sparc/sparc.c (sparc_override_options): Avoid MASK_V9 and
18017 MASK_V8 being both set.
18019 2002-01-16 Ulrich Weigand <uweigand@de.ibm.com>
18021 * config/s390/s390.c (s390_emit_prologue): Do not emit USE
18022 insn for GOT register; add REG_MAYBE_DEAD notes instead.
18023 config/s390/s390.md (call, call_value): Add GOT register to
18024 CALL_INSN_FUNCTION_USAGE where needed.
18025 (call_exp, call_value_exp): New.
18027 2002-01-16 Nick Clifton <nickc@cambridge.redhat.com>
18029 * config/arm/arm.c: General formatting tidy up.
18031 2002-01-16 Graham Stott <grahams@redhat.com>
18033 * calls.c (try_to_integrate): Use "(size_t)" intermediate
18034 cast and when casting an integer literal to "rtx" pointer.
18035 (expand_call): Likewise.
18036 * flow.c (try_pre_increment): Likewise.
18037 (find_use_as_address): Likewise.
18038 * integrate.c (expand_iline_function): Likewise.
18039 * regmove.c (try_auto_increment): Likewise.
18041 2002-01-16 Graham Stott <grahams@redhat.com>
18043 * sched-rgn.c (passed): Use sbitmap_free.
18044 (header): Likewise.
18046 (in_queue): Likewise.
18047 (in_stack): Likewise.
18049 2002-01-15 Eric Christopher <echristo@redhat.com>
18051 * flow.c (propagate_one_insn): Change to use fatal_insn.
18053 2002-01-15 Kazu Hirata <kazu@hxi.com>
18055 * expmed.c (extract_fixed_bit_field): Remove unused code.
18056 * system.h: Poison SLOW_ZERO_EXTEND.
18057 * doc/tm.texi: Remove.
18058 * config/1750a/1750a.h (SLOW_ZERO_EXTEND): Remove.
18059 * config/arm/arm.h: Likewise.
18060 * config/avr/avr.h: Likewise.
18061 * config/clipper/clipper.h: Likewise.
18062 * config/convex/convex.h: Likewise.
18063 * config/d30v/d30v.h: Likewise.
18064 * config/dsp16xx/dsp16xx.h: Likewise.
18065 * config/elxsi/elxsi.h: Likewise.
18066 * config/fr30/fr30.h: Likewise.
18067 * config/h8300/h8300.h: Likewise.
18068 * config/i370/i370.h: Likewise.
18069 * config/i386/i386.h: Likewise.
18070 * config/m68k/m68k.h: Likewise.
18071 * config/mips/mips.h: Likewise.
18072 * config/ns32k/ns32k.h: Likewise.
18073 * config/pdp11/pdp11.h: Likewise.
18074 * config/pj/pj.h: Likewise.
18075 * config/s390/s390.h: Likewise.
18076 * config/sh/sh.h: Likewise.
18077 * config/stormy16/stormy16.h: Likewise.
18078 * config/v850/v850.h: Likewise.
18079 * config/vax/vax.h: Likewise.
18080 * config/we32k/we32k.h: Likewise.
18082 2002-01-15 Aldy Hernandez <aldyh@redhat.com>
18084 * config/rs6000/rs6000.md (altivec_stvx): Add parallels to stvx.
18085 (altivec_lvsl): Change constraint to b.
18086 (altivec_lvsr): Same.
18087 (altivec_lvebx): Same.
18088 (altivec_lvehx): Same.
18089 (altivec_lvewx): Same.
18090 (altivec_lvxl): Same.
18091 (altivec_lvx): Same.
18092 (altivec_stvx): Add parallel.
18093 (altivec_stvxl): Same.
18094 (altivec_stvehx): Same.
18095 (altivec_stvebx): Same.
18096 (altivec_stvebx): Same.
18098 2002-01-15 Aldy Hernandez <aldyh@redhat.com>
18100 * config.gcc: Change altivec.h to altivec-defs.h.
18102 * config/rs6000/altivec.h: Delete.
18104 * config/rs6000/altivec-defs.h: Add.
18106 2002-01-15 John David Anglin <dave@hiauly1.hia.nrc.ca>
18108 * vax.c (vax_rtx_cost): Return MAX_COST for unsupported MULT, UDIV
18111 * vax.h (INDEX_TERM_P): Restrict indexing to modes which have a size
18112 less than or equal to eight bytes.
18114 * vax.md (andsi3): Remove constraints and change SET destination
18115 operand type to nonimmediate_operand.
18116 (andhi3, andqi3): Likewise. Don't clear high order bits of operand 1
18117 when it is a CONST_INT.
18119 2002-01-15 Jason Merrill <jason@redhat.com>
18121 * c-common.def (FILE_STMT): New code.
18122 * c-common.c (statement_code_p): It's a statement.
18123 * c-common.h (stmt_tree_s): Add x_last_filename.
18124 (FILE_STMT_FILENAME_NODE, FILE_STMT_FILENAME): New macros.
18125 (last_expr_filename): New macro.
18126 * c-semantics.c (begin_stmt_tree): Initialize it.
18127 (add_stmt): If the filename changed, also insert a
18129 (expand_stmt): Handle seeing one.
18131 2002-01-15 Eric Christopher <echristo@redhat.com>
18133 * flow.c (propagate_one_insn): Add error message and print out
18134 insn for debugging.
18136 2002-01-15 Joseph S. Myers <jsm28@cam.ac.uk>
18138 * system.h (ASM_IDENTIFY_GCC, STDC_VALUE, TRAMPOLINE_ALIGN,
18139 ASM_IDENTIFY_GCC_AFTER_SOURCE): Poison.
18140 * config/pdp11/pdp11.h (TRAMPOLINE_ALIGN): Rename to
18141 TRAMPOLINE_ALIGNMENT.
18142 * config/arm/arm.h, config/mcore/mcore.h: Likewise. Change value
18144 * config/i386/cygwin.h (PCC_BITFIELDS_TYPE_MATTERS): Rename to
18145 PCC_BITFIELD_TYPE_MATTERS.
18146 * config/interix.h (STDC_VALUE): Remove. Use
18147 STDC_0_IN_SYSTEM_HEADERS.
18148 * config/darwin.h (ASM_IDENTIFY_GCC), config/dsp16xx/dsp16xx.h
18149 (ASM_IDENTIFY_GCC), config/stormy16/stormy16.h (ASM_IDENTIFY_GCC,
18150 ASM_IDENTIFY_GCC_AFTER_SOURCE): Remove.
18152 2002-01-15 Craig Rodrigues <rodrigc@gcc.gnu.org>
18154 * doc/install.texi (hppa*-hp-hpux11): --enable-threads does
18155 not work on this platform currently.
18157 2002-01-15 Joseph S. Myers <jsm28@cam.ac.uk>
18159 * c-typeck.c (build_unary_op): Don't wrap msgid argument of
18160 readonly_warning in _().
18162 2002-01-15 Douglas B Rupp <rupp@gnat.com>
18164 * gcc.c (delete_if_ordinary): Backout previous change.
18166 2002-01-15 Kazu Hirata <kazu@hxi.com>
18168 * config/h8300/h8300.c (print_operand): Remove support for
18169 unused operand characters.
18171 * read-rtl.c: Fix formatting.
18172 * real.c: Likewise.
18173 * recog.c: Likewise.
18174 * regclass.c: Likewise.
18175 * regmove.c: Likewise.
18176 * reg-stack.c: Likewise.
18177 * reload1.c: Likewise.
18178 * rtlanal.c: Likewise.
18180 2002-01-15 Kazu Hirata <kazu@hxi.com>
18182 * config/i386/i386.c: Fix formatting.
18184 2002-01-15 Jakub Jelinek <jakub@redhat.com>
18186 * c-typeck.c (process_init_element): Don't save_expr
18187 COMPOUND_LITERAL_EXPR if just its initializer will be used.
18189 2002-01-15 David Edelsohn <edelsohn@gnu.org>
18191 * config/rs6000/rs6000.c (rs6000_output_function_epilogue): Do not
18192 emit optional traceback table if optimize_size or TARGET_ELF.
18193 * config/rs6000/rs6000.md (prefetch): New.
18195 2002-01-15 Andreas Jaeger <aj@suse.de>
18197 * config.gcc (x86_64-*-*): Install mmintrin.h and xmmintrin.h.
18199 2002-01-15 Kazu Hirata <kazu@hxi.com>
18201 * mips-tfile.c: Fix formatting.
18203 Tue Jan 15 00:56:11 CET 2002 Jan Hubicka <jh@suse.cz>
18205 * unroll.c (final_reg_note_copy): Fix previous commit.
18207 2002-01-14 Kazu Hirata <kazu@hxi.com>
18209 * config/h8300/h8300-protos.h: Remove the prototype for
18211 * config/h8300/h8300.c (eq_operator): Remove.
18213 2002-01-14 Richard Henderson <rth@redhat.com>
18215 * config/i386/i386.md (prefetch): Tidy.
18216 (prefetch_3dnow): Fix locality operand.
18218 2002-01-14 Richard Henderson <rth@redhat.com>
18220 * config/mips/mips.h (HI_AND_FP_REGS): New register class.
18221 (CLASS_CANNOT_CHANGE_MODE): Disallow HI in little-endian mode.
18223 2002-01-14 Hans-Peter Nilsson <hp@bitrange.com>
18225 * reload1.c (reload_combine): Pass reg_sum replacement through
18226 copy_rtx in loop performing multiple changes.
18228 2002-01-14 Jakub Jelinek <jakub@redhat.com>
18230 * except.c (remove_unreachable_regions): New.
18231 (free_eh_status): Clear exception_handler_labels.
18232 (convert_from_eh_region_ranges): Call remove_unreachable_regions.
18233 (find_exception_handler_labels): Don't add the same label more than
18235 (remove_exception_handler_label): Don't die if
18236 find_exception_handler_labels hasn't been called for the current
18239 Mon Jan 14 21:26:13 CET 2002 Jan Hubicka <jh@suse.cz>
18241 * toplev.c (rest_of_compilation): Rebuild jump labels after
18244 2002-01-14 Joseph S. Myers <jsm28@cam.ac.uk>
18246 * doc/extend.texi: Move documentation of X86 built-in functions
18248 * doc/invoke.texi: From here.
18249 * doc/sourcebuild.texi: Document location of documentation for
18250 machine built-in functions.
18252 2002-01-13 Christopher Faylor <cgf@redhat.com>
18254 * cppfiles.c (TEST_THRESHOLD): New macro.
18255 (SHOULD_MMAP): Ditto.
18256 (read_include_file): Use SHOULD_MMAP macro to decide when mmap should
18259 Mon Jan 14 20:23:34 CET 2002 Jan Hubicka <jh@suse.cz>
18261 * unroll.c (final_reg_note_copy): Properly handle
18263 (unroll_loops): Fix LOOP_CONDITION heuristics.
18265 2002-01-14 Geoffrey Keating <geoffk@redhat.com>
18267 * doc/invoke.texi (Xstormy16 Options): Add xstormy16 option.
18268 * doc/md.texi (Machine Constraints): Use @minus{} where appropriate.
18270 Mon Jan 14 20:18:19 CET 2002 Jan Hubicka <jh@suse.cz>
18272 * cfgcleanup.c (try_forward_edges): Avoid infinite loop at infinite
18275 2002-01-14 Tom Rix <trix@redhat.com>
18277 * config/rs6000/rs6000.md: Fix typo with sradi.
18279 2002-01-14 Ulrich Weigand <uweigand@de.ibm.com>
18281 * config/s390/s390.md (movstrdix_64, movstrsix_31, movstrdi_64,
18282 movstrsi_31, clrstrsi_64, clrstrsi_31): Improve RTL templates.
18283 (clrstrdi, clrstrsi): Adapt callers.
18285 (extendsidi2, zero_extendsidi2): Remove no-conflict blocks.
18287 (movti splitter): Never use register 0 as base register.
18289 2002-01-14 Hartmut Penner <hpenner@de.ibm.com>
18291 * combine.c (simplify_shift_const): Always generate new rtx
18292 for shift expression instead of reusing given expression.
18294 Mon Jan 14 07:08:55 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
18296 * config/alpha/alpha.c (alpha_expand_mov): Don't call
18297 alpha_legitimize_address unless mode is Pmode.
18299 2002-01-13 Geoffrey Keating <geoffk@redhat.com>
18301 * doc/md.texi (Modifiers): Document the '*' constraint for the
18304 * doc/md.texi (Machine Constraints): Add constraints for xstormy16.
18305 * doc/extend.texi (Function Attributes): 'interrupt' is valid
18308 2002-01-13 Richard Henderson <rth@redhat.com>
18310 * reload.c (find_reloads): Use a hard reg destination as reload reg
18311 for an input reload of the source.
18313 2002-01-13 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
18315 * doc/install.texi (Binaries): Make link to ftp.writtenword.com
18318 Sun Jan 13 07:23:01 2002 Douglas B Rupp <rupp@gnat.com>
18320 * Makefile.in (LIB2FUNCS): Split into LIB2FUNCS_1 and LIB2FUNCS_2.
18321 * mklibgcc.in (LIB2FUNCS): Split into LIB2FUNCS_1 and LIB2FUNCS_2.
18323 * config/alpha/x-vms (USE_COLLECT2): Set to empty.
18325 Sun Jan 13 06:55:31 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
18327 * dwarf2out.c (mem_loc_descriptor, case ADDRESSOF): New case.
18329 2002-01-12 Tom Rix <trix@redhat.com>
18331 * config/rs6000/rs6000.c (rs6000_emit_set_long_const): Use ior for
18334 2002-01-12 Richard Henderson <rth@redhat.com>
18336 * config/i386/i386.c (bdesc_2arg): Mark psadbw MASK_3DNOW_A.
18338 * doc/invoke.texi: Update Alpha options.
18340 * doc/invoke.texi: Update i386 built-in function lists.
18342 Sat Jan 12 17:38:11 CET 2002 Jan Hubicka <jh@suse.cz>
18344 * unroll.c (final_reg_note_copy): Avoid crash on REG_LABEL note
18345 referencing outside.
18347 Sat Jan 12 08:54:51 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
18349 * diagnostic.c (warn_deprecated_use): Rework to lower indentation.
18350 * expr.c (emit_move_insn_1): Remove warning, use HOST_WIDE_INT for
18351 offsets, and change line folding.
18352 * optabs.c (expand_binop): Remove warnings.
18353 * sdbout.c (sdbout_record_type_name): Constify NAME to avoid warning.
18355 2002-01-12 Graham Stott <grahams@redhat.com>
18357 * attribs.c (handle_deprecated_attribute): constify WHAT.
18358 * diagnostic.c (warn_deprecated_use): Add braces, fixes
18359 dangling else warning and constify WHAT.
18360 * except.h (struct function, struct inline_remap): Move
18361 struct tag forward defs before all prototypes.
18362 (duplicate_eh_regions): Whitespace.
18364 2002-01-12 Nick Clifton <nickc@cambridge.redhat.com>
18366 * config/arm/arm.h (ARM_LEGITIMIZE_RELOAD_ADDRESS): Use
18367 MODE_BASE_REG_CLASS.
18368 (THUMB_LEGITIMIZE_RELOAD_ADDRESS): Use MODE_BASE_REG_CLASS.
18370 2002-01-12 Richard Henderson <rth@redhat.com>
18372 * config/i386/i386.c (override_options): If SSE, enable sse prefetch.
18373 (ix86_expand_vector_move): New.
18374 (bdesc_2arg): Remove andps, andnps, orps, xorps.
18375 (ix86_init_mmx_sse_builtins): Make static. Remove composite builtins.
18376 Remove old prefetch builtins. Special case the logicals removed above.
18377 (ix86_expand_builtin): Likewise.
18378 (safe_vector_operand): Use V4SFmode, not TImode.
18379 (ix86_expand_store_builtin): Remove shuffle arg. Update callers.
18380 (ix86_expand_timode_binop_builtin): New.
18381 * config/i386/i386-protos.h: Update.
18382 * config/i386/i386.h (enum ix86_builtins): Update.
18383 * config/i386/i386.md: Correct predicates on MMX/SSE patterns.
18384 Use ix86_expand_vector_move in vector move expanders.
18385 (movti_internal, movti_rex64): Add xorps alternative.
18386 (sse_clrv4sf): Rename and adjust from sse_clrti.
18387 (prefetch): Don't work so hard.
18388 (prefetch_sse, prefetch_3dnow): Use PREFETCH rtx, not UNSPEC.
18389 * config/i386/xmmintrin.h (__m128): Use V4SFmode.
18390 (_mm_getcsr, _mm_setcsr): Fix typo in builtin name.
18392 2002-01-11 Richard Henderson <rth@redhat.com>
18394 * config/i386/mmintrin.h: New file.
18395 * config/i386/xmmintrin.h: New file.
18396 * config.gcc (i?86-*-*): Add extra_headers.
18397 * simplify-rtx.c (simplify_unary_operation): Handle saturating
18399 (simplify_binary_operation): Handle saturating arithmetic codes.
18400 * config/i386/i386.c (ix86_expand_sse_comi): Return the full result,
18401 not the lowpart subreg.
18402 (ix86_expand_builtin): Return a TImode dummy register instead of 0
18404 * config/i386/i386.md (mmx_clrdi): Override memory attribute.
18406 2002-01-12 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
18408 * conflict.c (conflict_graph_compute): Free regsets when finished.
18409 * ssa.c (compute_coalesced_reg_partition): Likewise.
18411 2002-01-12 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
18413 * global.c (find_reg): Check for HARD_REGNO_CALL_PART_CLOBBERED
18414 every where we allocate a register.
18416 2002-01-12 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
18418 * gcse.c (compute_pre_data, pre_gcse): Use sbitmap_free.
18419 * lcm.c (compute_earliest, compute_farthest): Likewise.
18421 2002-01-11 Janis Johnson <janis187@us.ibm.com>
18423 * expr.c (expand_assignment): Fix misuse of MEM_KEEP_ALIAS_SET.
18425 2002-01-11 Janis Johnson <janis187@us.ibm.com>
18427 * doc/rtl.texi (Insns): Fix 2 typos.
18429 2002-01-11 Joseph S. Myers <jsm28@cam.ac.uk>
18431 * doc/invoke.texi: Avoid overfull hboxes. Add summary of D30V
18432 options. Use @table @gcctabopt for MMIX options. Add index
18433 entries for MMIX options. Start new paragraph with first
18434 heading of the machine-dependent options.
18436 2002-01-11 Craig Rodrigues <rodrigc@gcc.gnu.org>
18439 * config/ns32k/ns32k.md: Fix spelling mistake of "than" in comments.
18440 * combine.c (force_to_mode): Same.
18441 * reload1.c (clear_reload_reg_in_use): Same.
18443 2002-01-11 Nick Clifton <nickc@cambridge.redhat.com>
18445 * config/arm/arm.c (arm_gen_constant): Correct test of 'remainder'
18448 2002-01-11 Andreas Jaeger <aj@suse.de>,
18449 Brad Lucier <lucier@math.purdue.edu>
18451 * config/i386/i386.h (CPP_CPUCOMMON_SPEC): Remove wrong
18454 Fri Jan 11 07:35:12 2002 Douglas B Rupp <rupp@gnat.com>
18456 * config/alpha/vms.h: (MD_FALLBACK_FRAME_STATE_FOR): Fix errors.
18457 Protect with IN_LIBGCC.
18458 (LINK_EH_SPEC): Add required trailing space.
18460 Fri Jan 11 09:25:05 2002 Nicola Pero <n.pero@mi.flashnet.it>
18462 * c-tree.h: Move function declarations so that they are listed
18463 under the filename which contains them.
18464 (check_identifier, finish_decl_top_level,
18465 lookup_name_current_level_global, shadow_record_fields): Remove.
18467 2002-01-11 Andreas Jaeger <aj@suse.de>
18469 * config/i386/i386.h (CPP_CPUCOMMON_SPEC): Remove duplicated
18472 2002-01-10 Richard Henderson <rth@redhat.com>
18474 * config/alpha/alpha.c (print_operand): Add 'J'.
18475 * config/alpha/alpha.md (call_osf_1_er, call_value_osf_1_er): Take a
18476 new operand with the sequence number for the lituse. When splitting
18477 the insns, use gen_movdi_er_high_g and generate a sequence number.
18478 (gen_movdi_er_high_g): Print the sequence number if non-zero.
18480 2002-01-10 Aldy Hernandez <aldyh@redhat.com>
18482 * config/rs6000/rs6000.c (altivec_init_builtins): Add support for
18483 lvebx, lvehx, lvewx, lvxl, lvx, stvx, stvebx, stvehx, stvewx,
18485 (altivec_expand_builtin): Same.
18486 (altivec_expand_stv_builtin): New.
18488 * config/rs6000/rs6000.h (rs6000_builtins): Same.
18490 * config/rs6000/rs6000.md ("altivec_lvebx"): New.
18491 ("altivec_lvehx"): New.
18492 ("altivec_lvewx"): New.
18493 ("altivec_lvxl"): New.
18494 ("altivec_lvx"): New.
18495 ("altivec_stvx"): New.
18496 ("altivec_stvebx"): New.
18497 ("altivec_stvehx"): New.
18498 ("altivec_stvewx"): New.
18499 ("altivec_stvxl"): New.
18501 2002-01-10 Richard Henderson <rth@redhat.com>
18503 * cfgrtl.c (delete_insn): Assert insn hasn't been deleted yet.
18504 * reload1.c (delete_output_reload): Zap spill_reg_store. Take
18505 care not to delete instructions twice.
18507 2002-01-10 Zack Weinberg <zack@codesourcery.com>
18509 * toplev.c: Don't declare environ (it's not used anywhere).
18510 * configure.in: Don't check for declaration of environ.
18511 * config/i386/xm-mingw32.h: Don't #define environ.
18512 * config.in, configure: Regenerate.
18514 2002-01-10 Zack Weinberg <zack@codesourcery.com>
18516 * configure.in: Set stage1_cflags for powerpc-*-darwin*.
18517 * configure: Regenerate.
18519 * config/interix.h: Set DO_GLOBAL_CTORS_BODY and
18520 DO_GLOBAL_DTORS_BODY here, not in xm-interix.h.
18521 * config/alpha/vms.h: Set INCLUDE_DEFAULTS here, not in
18523 * config/m68k/t-next: Set OTHER_FIXINCLUDES_DIRS and
18524 LIMITS_H_TEST here, not in m68k/x-next.
18525 * config/rs6000/beos.h: Set STANDARD_INCLUDE_DIR and
18526 SYSTEM_INCLUDE_DIR here, not in rs6000/xm-beos.h.
18528 * config/x-interix: Don't set RANLIB, RANLIB_TEST, SHELL,
18529 LIBGCC2_INCLUDES, or SYSTEM_HEADER_DIR.
18530 * config/alpha/x-vms: Don't set USE_COLLECT2. Add comments.
18532 * config/i386/x-djgpp: Renamed i386/t-djgpp.
18533 * config/m88k/x-dolph: Renamed m88k/t-dolph.
18534 * config/m88k/x-texXD88: Renamed m88k/t-texXD88.
18535 * config/pa/x-pa-mpeix: Renamed pa/t-mpeix. Update for
18536 replacement of quadlib.asm with quadlib.c.
18538 * config/x-interix3, config/xm-interix.h, config/i386/x-beos,
18539 config/i386/xm-osf1elf.h, config/rs6000/x-darwin,
18540 config/rs6000/xm-beos.h: Delete file.
18542 * config.gcc: Update to match above changes.
18544 2002-01-10 Kazu Hirata <kazu@hxi.com>
18546 * config/h8300/h8300.h: Fix comment typos.
18547 * config/h8300/h8300.md: Likewise.
18548 * config/h8300/lib1funcs.asm: Likewise.
18550 2002-01-10 Dale Johannesen <dalej@apple.com>
18552 PR optimization/5269
18553 * unroll.c (precondition_loop_p): Make *increment be the correct
18554 sign when n_iterations known, to avoid confusing caller.
18556 2002-01-10 Kazu Hirata <kazu@hxi.com>
18558 * doc/extend.texi (deprecated): Fix a typo.
18560 Thu Jan 10 22:35:54 CET 2002 Jan Hubicka <jh@suse.cz>
18562 * basic-block.h (update_br_prob_note): Declare.
18563 * cfgcleanup.c (try_simplify_condjump): Call update_br_prob_note.
18564 (try_forward_edges): Care negative frequencies and update note.
18565 (outgoing_edges_match): Tweek conditional merging heuristics.
18566 (try_crossjump_to_edge): use update_br_prob_note.
18567 * cfglayout.c (fixup_reorder_chain): Likewise.
18568 * cfrtl.c (update_br_prob_note): New.
18569 * ifcvt.c (dead_or_predicable): Call update_br_prob_note.
18571 * i386.c (ix86_decompose_address): Return -1 if address contains
18573 (legitimate_address_p): Require ix86_decompose_address to return 1.
18575 * gcse.c (hash_scan_set): Use CONSTANT_INSN_P.
18576 (cprop_insn): Likewise.
18578 2002-01-10 Kazu Hirata <kazu@hxi.com>
18580 * toplev.c: Fix formatting.
18581 * tree.c: Likewise.
18582 * tree-dump.c: Likewise.
18583 * unroll.c: Likewise.
18584 * unwind-dw2.c: Likewise.
18585 * unwind-dw2-fde.c: Likewise.
18586 * unwind-dw2-fde-glibc.c: Likewise.
18587 * unwind-sjlj.c: Likewise.
18589 2002-01-10 Joseph S. Myers <jsm28@cam.ac.uk>
18591 * doc/invoke.texi: Document PDP-11 options.
18593 2002-01-10 Kazu Hirata <kazu@hxi.com>
18595 * config/h8300/h8300.h: Fix formatting.
18597 2002-01-10 Ira Ruben <ira@apple.com>
18599 Add __attribute__ ((deprecated)).
18600 * extend.texi: Document __attribute__ ((deprecated)).
18601 * invoke.texi: Document -Wno-deprecated-declarations.
18602 * testsuite/g++.dg/other/deprecated.C: New C++ test.
18603 * testsuite/gcc.dg/deprecated.c: New C test.
18604 * attribs.c (enum attrs): Declare handle_deprecated_attribute().
18605 (c_common_attribute_table): Add "deprecated" entry.
18606 (handle_deprecated_attribute): New function.
18607 * c-decl.c (deprecated_states): New enum.
18608 deprecated_state: State of "deprecated" handling.
18609 (start_decl): Set deprecated_state based on attributes.
18610 (grokdeclarator): Test for deprecated uses, propagate attribute.
18611 * c-typeck.c (build_component_ref): Test for deprecated fields.
18612 (build_external_ref): Test for deprecated primaries.
18613 * diagnostic.c (warn_deprecated_use) New function to issue
18614 warnings about __attribute__ ((depricated)) references.
18615 * flags.h (warn_deprecated_decl): Extern declared for
18616 -W[no-]deprecated-declarations option.
18617 * print-tree.c (print_node): Show deprecated flag status.
18618 * toplev.c (warn_deprecated_decl): Defined.
18619 (W_options): Added "deprecated-declaration".
18620 * toplev.h (warn_deprecated_use): Extern declared.
18621 * tree.h (struct tree_common): Define deprecated_flag.
18622 (TREE_DEPRECATED): New macro to access flag.
18623 * cp/call.c (build_call): Test for deprecated calls.
18624 * cp/class.c (add_implicitly_declared_members): Set global
18625 flag to tell grokdeclarator to not issue deprecated warnings.
18626 * cp/cp-tree.h: Add extern for adding_implicit_members.
18627 * cp/decl.c (deprecated_states): New enum.
18628 (start_decl): Set deprecated_state based on attributes.
18629 (grokdeclarator): Test for deprecated uses, propagate attribute.
18630 * cp/lex.c (do_identifier): Test for deprecated primaries.
18631 * cp/typeck.c (build_component_ref): Test for deprecated fields.
18633 2002-01-10 Ira Ruben <ira@apple.com>
18635 Fix to assign attributes to inline member functions.
18636 * cp/decl.c (start_method): Handle attrlist.
18638 2002-01-10 Kazu Hirata <kazu@hxi.com>
18640 * combine.c (expand_field_assignment): Use subreg_lsb().
18642 2002-01-10 David Edelsohn <edelsohn@gnu.org>
18644 * alias.c (find_base_value): Add cases for HIGH, PRE_INC, PRE_DEC,
18645 POST_INC, POST_DEC, PRE_MODIFY, and POST_MODIFY.
18646 (find_base_term): Add cases for TRUNCATE, PRE_MODIFY, and POST_MODIFY.
18647 Recurse for any operand of AND as long as constant is non-zero.
18649 2002-01-10 Kazu Hirata <kazu@hxi.com>
18651 * config/h8300/h8300.md: Remove constraints from expanders.
18653 2002-01-10 Kazu Hirata <kazu@hxi.com>
18655 * varasm.c: Fix formatting.
18656 * varray.c: Likewise.
18657 * vmsdbgout.c: Likewise.
18658 * xcoffout.c: Likewise.
18660 Thu Jan 10 17:19:12 CET 2002 Jan Hubicka <jh@suse.cz>
18662 * cfgcleanup.c (try_forward_edges): Properly initialize nthreaded_edges;
18663 update edge probabilities to match.
18665 2002-01-10 Joseph S. Myers <jsm28@cam.ac.uk>
18667 * Makefile.in ($(docdir)/gccint.info, gccint.dvi): Add additional
18669 * doc/languages.texi, doc/sourcebuild.texi: New files.
18670 * doc/configfiles.texi: Make a subsubsection. Update.
18671 * doc/configterms.texi: Add @node. Remove warning that this isn't
18672 instructions for building GCC.
18673 * doc/makefile.texi: Make a subsection.
18674 * doc/gccint.texi: Update.
18676 Thu Jan 10 16:39:58 CET 2002 Jan Hubicka <jh@suse.cz>
18678 * i386.md (sse_mov?fcc_const0_?): Fix constraints.
18680 Thu Jan 10 12:45:50 2002 Nicola Pero <n.pero@mi.flashnet.it>
18682 * doc/cpp.texi: Document the __OBJC__ preprocessor macro.
18684 Thu Jan 10 11:19:18 CET 2002 Jan Hubicka <jh@suse.cz>
18686 * optabs.c (expand_fix): Look for wider integer modes first.
18688 * i386.md (mov?f): Avoid the fake const double trick for medium
18690 (min?f*/max?f*): Prohibit memory operands for i387 variant.
18691 (fop_df_4): Disable for SSE compilation.
18693 2002-01-10 Graham Stott <grahams@redhat.com>
18695 * dwarf2out.c (indirect_string_alloc, output_indirect_string):
18696 Move prototype into DWARF2_DEBUGGING_INFO conditional block.
18698 2002-01-10 Richard Henderson <rth@redhat.com>
18700 * config/alpha/alpha.md (extendsidi2_fix): Penalize f/f alternative.
18702 2002-01-10 Richard Henderson <rth@redhat.com>
18704 * regrename.c (find_oldest_value_reg): Fix typo in mode change check.
18705 (copyprop_hardreg_forward_1): Likewise. Use mode_change_ok.
18707 2002-01-10 Kazu Hirata <kazu@hxi.com>
18709 * combine.c (can_combine_p): Fix a comment typo.
18711 2002-01-09 Zack Weinberg <zack@codesourcery.com>
18713 * Makefile.in (s-gencheck, s-options, s-specs): Handle an
18714 empty list correctly. Change loop index $t to $f for
18715 consistency with rest of Makefile.
18717 2002-01-08 Aldy Hernandez <aldyh@redhat.com>
18719 * testuite/gcc.dg/altivec-4.c: Add test for mtvscr, dssall,
18720 mfvscr, dss, lvsl, lvsr, dstt, dstst, dststt, dst.
18722 * config/rs6000/rs6000.c (altivec_expand_builtin): Add support for
18723 mtvscr, dssall, mfvscr, dss, lvsl, lvsr, dstt, dst, dstst, dststt.
18724 (altivec_init_builtins): Same.
18725 (altivec_expand_unop_builtin): Return NULL_RTX on error.
18726 (altivec_expand_binop_builtin): Same.
18727 (altivec_expand_ternop_builtin): Same.
18730 * config/rs6000/rs6000.md ("altivec_mtvscr"): New.
18731 ("altivec_vctuxs"): Fix typo.
18732 ("altivec_vnmsubfp"): Same.
18733 ("altivec_dssall"): New.
18734 ("altivec_mfvscr"): New.
18735 ("altivec_dss"): New.
18736 ("altivec_lvsl"): New.
18737 ("altivec_lvsr"): New.
18738 ("altivec_dstt"): New.
18739 ("altivec_dstst"): New.
18740 ("altivec_dststt"): New.
18741 ("altivec_dst"): New.
18743 * config/rs6000/rs6000.h (rs6000_builtins): Add mtvscr, dssall,
18744 mfvscr, dss, lvsl, lvsr, dstt, dstst, dststt, dst.
18746 2002-01-09 Richard Henderson <rth@redhat.com>
18748 * config/alpha/alpha.md (prologue_mcount): Remove lituse_jsr reloc.
18750 2002-01-10 Hans-Peter Nilsson <hp@bitrange.com>
18752 * config/mmix/mmix.c (mmix_asm_identify_gcc): Remove unused
18754 * config/mmix/mmix-protos.h (mmix_asm_identify_gcc): Don't
18756 * config/mmix/mmix.h (ASM_IDENTIFY_GCC): Remove unused macro.
18758 2002-01-09 Kazu Hirata <kazu@hxi.com>
18760 * read-rtl.c: Fix formatting.
18761 * real.c: Likewise.
18762 * regclass.c: Likewise.
18763 * regrename.c: Likewise.
18764 * reg-stack.c: Likewise.
18765 * reload1.c: Likewise.
18766 * reload.c: Likewise.
18769 2002-01-09 Kazu Hirata <kazu@hxi.com>
18771 * rtlanal.c (find_reg_fusage): Use XEXP instead of SET_DEST
18772 to extract items in the expr_list chain.
18774 2002-01-09 Richard Henderson <rth@redhat.com>
18776 * config/vax/vax.c (vax_rtx_cost): Never abort.
18778 * config/vax/vax.h (REAL_ARITHMETIC): Define.
18780 2002-01-09 Jan Hubicka <jh@suse.cz>
18782 * gcse.c (cprop_jump): Delete insn if simplified jump is no-op.
18784 2002-01-09 Richard Henderson <rth@redhat.com>
18786 * config/arm/arm.c (arm_gen_constant): Use trunc_int_for_mode.
18787 Unify code from various alternatives.
18789 2002-01-09 Richard Henderson <rth@redhat.com>
18791 * regrename.c (copy_value): Ignore the copy if the source register
18792 is present in the value chain with a narrower mode.
18794 2002-01-09 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
18796 * real.c (c4xtoe, toc4x): Do some special conversion on long doubles
18797 for the c4x target. Also improve layout.
18799 2002-01-09 Richard Henderson <rth@redhat.com>
18801 * config/m32r/m32r.c (move_src_operand): Fix 32-bit int test.
18802 * config/m32r/m32r.md (and ior xor splitters): Swap operands
18803 to match insn patterns.
18805 2002-01-09 Richard Henderson <rth@redhat.com>
18807 * regrename.c (find_oldest_value_reg): Use gen_rtx_raw_REG.
18808 (copyprop_hardreg_forward_1): Likewise.
18810 2002-01-09 John David Anglin <dave@hiauly1.hia.nrc.ca>
18812 * pa.md (decrement_and_branch_until_zero): Change predicate for
18813 operand 0 from register_operand to reg_or_nonsymb_mem_operand.
18815 2002-01-09 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
18817 * ginclude/stddef.h: Define _BSD_WCHAR_T_DEFINED_ if _BSD_WCHAR_T_
18818 gets undefined. For Darwin.
18820 2002-01-09 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
18822 * config/c4x/c4x.h: Use PUSH_ARGS and PUSH_ROUNDING for stack passing.
18824 2002-01-09 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
18826 * config/c4x/c4x/md: Remove extraneous constraints from define_splits.
18828 2002-01-08 Richard Henderson <rth@redhat.com>
18830 * regrename.c (copy_value): Ignore overlapping copies.
18832 2002-01-08 Richard Henderson <rth@redhat.com>
18834 * config/alpha/alpha.c (alpha_split_conditional_move): Call copy_rtx
18835 as needed to avoid shared structure.
18837 2002-01-08 Kazu Hirata <kazu@hxi.com>
18839 * config/h8300/h8300.c (get_shift_alg): Fix 15-bit LSHIFTRT on
18842 2002-01-08 Joseph S. Myers <jsm28@cam.ac.uk>
18844 * doc/tm.texi (EASY_DIV_EXPR, IMPLICIT_FIX_EXPR,
18845 LONGJMP_RESTORE_FROM_STACK, MAX_INT_TYPE_SIZE): Remove
18846 documentation of obsolete macros.
18847 * system.h: Poison these macros.
18848 * config/1750a/1750a.h, config/a29k/a29k.h, config/alpha/alpha.h,
18849 config/arc/arc.h, config/arm/arm.h, config/avr/avr.h,
18850 config/c4x/c4x.h, config/clipper/clipper.h,
18851 config/convex/convex.h, config/cris/cris.h, config/d30v/d30v.h,
18852 config/dsp16xx/dsp16xx.h, config/elxsi/elxsi.h,
18853 config/fr30/fr30.h, config/h8300/h8300.h, config/i370/i370.h,
18854 config/i386/i386.h, config/i860/i860.h, config/i960/i960.h,
18855 config/ia64/ia64.h, config/m32r/m32r.h, config/m68hc11/m68hc11.h,
18856 config/m68k/m68k.h, config/m88k/m88k.h, config/mcore/mcore.h,
18857 config/mips/mips.h, config/mmix/mmix.h, config/mn10200/mn10200.h,
18858 config/mn10300/mn10300.h, config/ns32k/ns32k.h, config/pa/pa.h,
18859 config/pdp11/pdp11.h, config/pj/pj.h, config/romp/romp.h,
18860 config/rs6000/rs6000.h, config/s390/s390.h, config/sh/sh.h,
18861 config/sparc/sparc.h, config/stormy16/stormy16.h,
18862 config/v850/v850.h, config/vax/vax.h, config/we32k/we32k.h: Remove
18863 definitions and commented out definitions of obsolete macros.
18864 * config/mips/iris5.h (MAX_WCHAR_TYPE_SIZE): Don't define in terms
18865 of MAX_INT_TYPE_SIZE.
18867 2002-01-08 Ulrich Weigand <uweigand@de.ibm.com>
18869 * config/s390/s390.c (s390_preferred_reload_class): Never
18870 return ADDR_REGS if it isn't a subset of the given class.
18871 * config/s390/s390.h (REGISTER_MOVE_COST): Penalize not just
18872 FP_REGS, but all superclasses as well.
18874 * config/s390/s390.c (s390_function_profiler): Fix thinko.
18876 * config/s390/s390.md (cmpdi_ccu_mem, cmpsi_ccu_mem,
18877 cmphi_ccu_mem, cmpqi_ccu_mem): First operand of compare
18878 must not be a const_int.
18880 2002-01-08 Richard Henderson <rth@redhat.com>
18882 * Makefile.in (toplev.o): Depend on options.h.
18883 (gcc.o): Depend on specs.h.
18885 2002-01-08 Jakub Jelinek <jakub@redhat.com>
18887 * expr.c (store_expr): Convert VOIDmode constants back to target's
18890 2002-01-08 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
18892 * doc/invoke.texi: Markup gcc as @command. Refer to
18893 http://gcc.gnu.org/onlinedocs/gcc/Contributors.html instead
18894 of http://gcc.gnu.org/thanks.html.
18896 2002-01-08 Dale Johannesen <dalej@apple.com>
18898 * config/rs6000/rs6000.md: Add missing int register
18899 target case to movdf_low.
18901 2002-01-08 Zack Weinberg <zack@codesourcery.com>
18903 * Makefile.in (cs-tconfig.h): Don't depend on $(CONFIG_H) or
18904 except.h. Remove commands to define USING_SJLJ_EXCEPTIONS.
18905 (cppinit.o): Depend on except.h.
18906 (gencheck.h, options.h, specs.h, s-gencheck, s-options,
18907 s-specs): New rules.
18909 * configure.in: Don't AC_DEFINE_UNQUOTED PACKAGE or VERSION.
18910 Don't create specs.h/options.h/gencheck.h here. Remove
18911 unnecessary variable settings from last argument of AC_OUTPUT.
18912 * config.in, configure: Regenerate.
18913 * intl.c: Hardcode package name as "gcc".
18915 * cppinit.c: Include except.h.
18916 (builtin_array): Define __USING_SJLJ_EXCEPTIONS__ when
18918 * unwind-dw2.c, unwind-sjlj.c, config/ia64/unwind-ia64.c:
18919 Use #if(n)def __USING_SJLJ_EXCEPTIONS, not #if
18920 (!)USING_SJLJ_EXCEPTIONS.
18921 * doc/cpp.texi: Document __USING_SJLJ_EXCEPTIONS__.
18923 2002-01-08 Joseph S. Myers <jsm28@cam.ac.uk>
18925 * doc/tm.texi (ASM_OUTPUT_EH_REGION_BEG, ASM_OUTPUT_EH_REGION_END,
18926 ASM_OUTPUT_LABELREF_AS_INT, DOESNT_NEED_UNWINDER, EH_TABLE_LOOKUP,
18927 OBJC_SELECTORS_WITHOUT_LABELS, OMIT_EH_TABLE): Remove
18928 documentation of obsolete macros.
18929 * system.h: Poison these macros.
18930 * config/d30v/d30v.h, config/ns32k/encore.h,
18931 config/stormy16/stormy16.h: Remove definitions and commented out
18932 definitions of obsolete macros.
18934 Tue Jan 8 15:56:41 2002 Nicola Pero <nicola@brainstorm.co.uk>
18936 * objc/objc-act.c (handle_class_ref): Mark the declaration of
18937 %sobjc_class_ref_%s as used - to prevent unwanted compiler
18940 2002-01-08 Ulrich Weigand <uweigand@de.ibm.com>
18942 * config/s390/linux.h (ASM_OUTPUT_LABELREF): Remove.
18943 * config/s390/s390.c (s390_emit_epilog): Add REG_FRAME_RELATED_EXPR
18944 to insn adjusting stack/frame pointer.
18945 * config/s390/s390.md (reload_la_64, reload_la_31): Do not
18946 accept operands that cause the insn to be non-splittable.
18948 2002-01-08 Graham Stott <grahams@redhat.com>
18950 * c-tree.h (C_TYPE_FIELDS_READONLY): Uppercase macro parameter.
18951 (C_TYPE_FIELDS_VOLATILE): Likewise.
18952 (C_TYPE_BEING_DEFINED): Likewise.
18953 (C_IS_RESERVED_WORD): Likewise.
18954 (C_TYPE_VARIABLE_SIZE): Likewise.
18955 (C_DECL_VARIABLE_SIZE): Likewise.
18956 (C_MISSING_PROTOTYPE_WARNED): Likewise.
18957 (C_SET_EXP_ORIGINAL_CODE): Likewise.
18958 (C_TYPEDEF_EXPLICITLY_SIGNED): Uppercase macro parameter and remove
18960 (C_DECL_ANTICIPATED): Likewise.
18961 (c_build_type_variant): Add parenthesis.
18963 2002-01-08 Joseph S. Myers <jsm28@cam.ac.uk>
18965 * gcc.c (option_map): Remove --version.
18966 (process_command): Handle -fversion following the GNU Coding
18967 Standards. Partially addresses PR other/704.
18969 2002-01-08 Graham Stott <grahams@redhat.com>
18971 * combine.c (combine_instructions): Fix typo.
18973 2002-01-08 Graham Stott <grahams@redhat.com>
18975 * debug.h: Use "tree" and "rtx" throughout.
18977 * debug.c: Likewise.
18979 2002-01-08 Nick Clifton <nickc@cambridge.redhat.com>
18981 * dbxout.c (dbxout_symbol_location): If a symbol ref is in the
18982 constant pool, use the pool's version of the symbol instead.
18984 2002-01-07 Richard Henderson <rth@redhat.com>
18986 * regrename.c (find_oldest_value_reg): Ignore the value chain if
18987 the original register was copied in a mode with a fewer number of
18988 hard registers than the desired mode.
18989 (copyprop_hardreg_forward_1): Likewise.
18990 (debug_value_data): Fix loop test.
18991 * toplev.c (parse_options_and_default_flags): Reenable
18992 -fcprop-registers at -O1.
18994 2002-01-07 Aldy Hernandez <aldyh@redhat.com>
18996 * config/rs6000/rs6000.c (bdesc_2arg): Add altivec predicates.
18997 (altivec_init_builtins): New node v4si_ftype_v16qi_v16qi.
18999 * config/rs6000/rs6000.h (rs6000_builtins): Add enums for altivec
19002 * config/rs6000/rs6000.md: Add altivec predicate patterns.
19004 2002-01-07 John David Anglin <dave@hiauly1.hia.nrc.ca>
19006 * pa.c (FUNC_BEGIN_PROLOG_LABEL, current_function_number): Define.
19007 (pa_output_function_prologue): Output local label at the beginning of
19008 the prologue when profiling.
19009 (hppa_profile_hook): Use the local label rather than the function label.
19010 * pa.h (PROFILE_BEFORE_PROLOGUE): Define.
19012 2002-01-07 Aldy Hernandez <aldyh@redhat.com>
19014 * config/rs6000/rs6000.c (print_operand): Remove extra space.
19015 (altivec_expand_unop_builtin): Fix thinko.
19016 (altivec_expand_binop_builtin): Same.
19017 (altivec_expand_ternop_builtin): Same.
19018 (altivec_expand_builtin): Same.
19020 2002-01-07 Richard Henderson <rth@redhat.com>
19022 * config/rs6000/xcoff.h (ASM_FILE_START): Reverted to profile_flag.
19024 2002-01-07 Jason Merrill <jason@redhat.com>
19026 * unwind-dw2.c (execute_cfa_program): Use < again.
19028 2002-01-07 Jakub Jelinek <jakub@redhat.com>
19030 * predict.c (combine_predictions_for_insn): Avoid division by zero.
19032 2002-01-07 Jakub Jelinek <jakub@redhat.com>
19034 * simplify-rtx.c (simplify_plus_minus): Bump n_ops for NOT.
19035 Don't allow -1 - x -> ~x simplifications in the first pass.
19037 2002-01-07 Aldy Hernandez <aldyh@redhat.com>
19039 * rs6000.c (altivec_expand_ternop_builtin): Don't die on invalid
19041 (altivec_expand_binop_builtin): Same.
19042 (altivec_expand_unop_builtin): Same.
19043 (print_operand): Fix typo.
19044 (bdesc_1arg): Add vupk* variants.
19046 * rs6000.h (rs6000_builtins): Add vupk* enums.
19048 * rs6000.md: Add altivec_vupk* variants.
19050 2002-01-07 Joseph S. Myers <jsm28@cam.ac.uk>
19052 * doc/gcc.texi, doc/gccint.texi, doc/cppinternals.texi,
19053 doc/install.texi, doc/invoke.texi, doc/rtl.texi: Update copyright
19054 and last update dates.
19056 2002-01-07 Janis Johnson <janis187@us.ibm.com>
19058 * doc/rtl.texi (Flags): Clean up documentation of RTL flags
19060 2002-01-07 Marek Michalkiewicz <marekm@amelek.gda.pl>
19062 * config/avr/avr.c (avr_mcu_types): Add new MCU types.
19063 * config/avr/avr.h (CPP_SPEC): Likewise.
19064 (LINK_SPEC): Likewise.
19065 (CRT_BINUTILS_SPECS): Likewise.
19066 * config/avr/t-avr (MULTILIB_MATCHES): Likewise.
19067 * doc/invoke.texi (AVR Options): Document them.
19069 Mon Jan 7 11:59:34 CET 2002 Jan Hubicka <jh@suse.cz>
19071 * unroll.c (copy_loop_body): Always properly update JUMP_LABEL and
19074 2002-01-07 Graham Stott <grahams@redhat.com>
19076 * config/i386/i386.h: Update copyright date.
19077 (HALF_PIC_PTR): Add parenthesis.
19078 (OPTIMIZATION_OPTIONS): Whitespace, add parenthesis and wrap.
19079 (CONSTANT_ALIGNMENT): Add parenthesis.
19080 (DATA_ALIGNMENT): Likewise.
19081 (LOCAL_ALIGNMENT): Likewise.
19082 (FUNCTION_ARG_BOUNDARY): Whitespace, add parenthesis and wrap.
19083 (IS_STACK_MODE): Uppercase macro parameter, add parenthesis and wrap.
19084 (CONDITIONAL_REGISTER_USAGE): Wrap in do {...} while (0).
19085 (HARD_REGNO_NREGS): Add paranethesis.
19086 (VALID_SSE_REG_MODE): Whitespace.
19087 (VALID_MMX_REG_MODE): Whitespace.
19088 (VALID_FP_MODE_P): Uppercase macros parameter and whitespace.
19089 (ix86_hard_regno_mode_ok): Add parenthesis.
19090 (HARD_REGNO_CALLER_SAVE_MODE): Whitespace.
19091 (RETURN_IN_MEMORY): Whitespace.
19092 (N_REG_CLASSES): Add parenthesis.
19093 (INTEGER_CLASS_P): Add parenthesis and wrap.
19094 (FLOAT_CLASS_P): Likewise.
19095 (SSE_CLASS_P): Likewise.
19096 (MMX_CLASS_P): Likewise.
19097 (MAYBE_INTEGER_CLASS_P): Likewise.
19098 (MAYBE_FLOAT_CLASS_P): Likewise.
19099 (MAYBE_SSE_CLASS_P): Likewise.
19100 (MAYBE_MMX_CLASS_P): Likewise.
19101 (Q_CLASS_P): Likewise.
19102 (GENERAL_REGNO_P): Uppercase macro parameter.
19103 (REX_INT_REGNO_P): Uppercase macro parameter and wrap.
19104 (FP_REGNO_P): Likewise.
19105 (ANY_FP_REGNO_P): Uppercase macro parameter.
19106 (SSE_REGNO_P): Likewise.
19107 (SSE_REGNO): Likewise.
19108 (SSE_REG_P): Likewise.
19109 (SSE_FLOAT_MODE_P): Likewise.
19110 (MMX_REGNO_P): Likewise.
19111 (MMX_REG_P):Likewise.
19112 (STACK_REG_P): Likewise.
19113 (NON_STACK_REG_P): Likewise.
19114 (STACK_TOP_P): Likewise.
19115 (CONVERT_HARD_REGISTER_TO_SSA_P): Add parenthesis.
19116 (PREFERRED_RELOAD_CLASS): Add parenthesis and whitespace.
19117 (SECONDARY_MEMORY_NEEDED): Likewise.
19118 (SECONDARY_OUTPUT_RELOAD_CLASS): Whitespace.
19119 (MD_ASM_CLOBBERS): Whitespace and wrap.
19120 (MUST_PASS_IN_STACK): Whitespace and wrap.
19121 (RETURN_POPS_ARGS): Add parenthesis.
19122 (INIT_CUMULATIVE_ARGS): Likewise.
19123 (FUNCTION_ARG): Likewise.
19124 (FUNCTION_OK_FOR_SIBCALL): Add parenthesis and whitespace.
19125 (SETUP_INCOMING_VARARGS): Likewise.
19126 (BUILD_VA_LIST_TYPE): Add parenthesis.
19127 (EXPAND_BUILTIN_VA_START): Uppercase macro paremeters and add
19129 (EXPAND_BUILTIN_VA_ARG): Likewise.
19130 (FUNCTION_PROFILER): Wrap in do { ... } while (0) and add parenthesis.
19131 (INITIALIZE_TRAMPOLINE): Add parenthesis.
19132 (INITIAL_ELIMINATION_OFFSET): Likewise.
19133 (REGNO_OK_FOR_INDEX_P): Add parenthesis.
19134 (REGNO_OK_FOR_BASE_P): Likewise.
19135 (REGNO_OK_FOR_SIREG_P): Add parenthesis and wrap.
19136 (REGNO_OK_FOR_DIREG_P): Likewise.
19137 (REG_OK_FOR_INDEX_P): Whitespace.
19138 (REG_OK_FOR_BASE_P): Whitespace.
19139 (GO_IF_LEGITIMATE_ADDRESS): Wrap in do { ... } while (0) and add
19141 (FIND_BASE_TERM): Fix typo.
19142 (LEGITIMIZE_ADDRESS): Wrap in { .. } while (0) and add parenthesis.
19143 (REWRITE_ADDRESS): Uppercase macro parameter and whitespace.
19144 (SYMBOLIC_CONST; Whitespace.
19145 (GO_IF_MODE_DEPENDENT_ADDRESS):Wrap in { .. } while (0) and wrap.
19146 (ENCODE_SECTION_INFO): Whitespace.
19147 (FINALIZE_PIC): Remove do { ... } while (0).
19148 (PROMOTE_MODE): Wrap in do { ... } while (0).
19149 (CONST_COSTS): Whitespace.
19150 (RTX_COSTS): Add paramethesis, whitespace and wrap.
19151 (REGISTER_MOVE_COST): Add parenthesis.
19152 (MEMORY_MOVE_COST): Likewise.
19153 (EXTRA_CC_MODES): Whitespace.
19154 (SELECT_CC_MODE): Add parenthesis and whitespace.
19155 (DBX_REGISTER_NUMBER): Uppercase macro parameter and add parenthsis.
19156 (ASM_PREFERRED_EH_DATA_FORMAT): Add parenthesis and whitespace.
19157 (ASM_OUTPUT_LABEL): Add paramethesis.
19158 (ASM_OUTPUT_REG_PUSH): Add parenthesis and whitespace.
19159 (ASM_OUTPUT_REG_POP): Likewise.
19160 (ASM_OUTPUT_ADDR_VEC_ELT): Add parenthesis.
19161 (ASM_OUTPUT_ADDR_DIFF_ELT): Likewise.
19163 * config/i386/i386.c: Update copyright.
19164 (CHECK_STACK_LIMIT): Add parenthesis.
19165 (AT_BP): Uppercase macro parameter.
19166 (x86_64_int_parameter_registers): Constify.
19167 (x86_64_int_return_registers): Likewise.
19168 (ix86_compare_op0): Use rtx.
19169 (construct_container): Constify INTREG parameter.
19170 (function_arg): Use rtx.
19172 * diagnostic.h: Update copyright date.
19173 (output_buffer_state): Add parenthesis.
19174 (output_buffer_format_args): Likewise.
19176 * combine.c (combine_instructions): Replace XEXP (links, 0)
19179 2002-01-06 H.J. Lu <hjl@gnu.org>
19181 * cfgcleanup.c (thread_jump): Fix 2 typos.
19183 2002-01-06 Aldy Hernandez <aldyh@redhat.com>
19185 * config.gcc: Add support for --enable-altivec.
19187 2002-01-06 Craig Rodrigues <rodrigc@gcc.gnu.org>
19189 * emit-rtl.c (gen_highpart): Add check for NULL_RTX.
19191 2002-01-06 Jakub Jelinek <jakub@redhat.com>
19193 * objc/objc-act.c (handle_impent): Use assemble_variable to emit
19194 __objc_class_name_*.
19196 2002-01-06 Craig Rodrigues <rodrigc@gcc.gnu.org>
19198 * doc/install.texi (sparcv9-*-solaris2*): Add documentation.
19200 2002-01-06 Richard Henderson <rth@redhat.com>
19202 * reorg.c (emit_delay_sequence): Remove death notes, not merely
19203 nop them out. Increment label reference count for REG_LABEL.
19204 (fill_slots_from_thread): Frob label reference count around
19205 delete_related_insns.
19207 2002-01-05 Richard Henderson <rth@redhat.com>
19209 * cfgcleanup.c (try_forward_edges): Detect infinite loops while
19212 2002-01-05 Richard Henderson <rth@redhat.com>
19214 * c-decl.c (c_expand_body): Don't call outlining_inline_function.
19215 * integrate.c (output_inline_function): Likewise.
19216 * toplev.c (rest_of_compilation): Do it here instead. Move call
19217 to remove_unnecessary_notes after emitting abstract instance.
19218 Force an emitted nested function to have its parent emited as well.
19219 * dwarf2out.c (loc_descriptor_from_tree): Read mode after checking
19221 (rtl_for_decl_location): Do not look at reload data structures
19222 before reload has run.
19224 2002-01-05 Kazu Hirata <kazu@hxi.com>
19226 * cse.c: Fix formatting.
19227 * dwarf2asm.c: Likewise.
19228 * dwarf2out.c: Likewise.
19229 * explow.c: Likewise.
19230 * expmed.c: Likewise.
19231 * function.c: Likewise.
19232 * gcov.c: Likewise.
19233 * gencheck.c: Likewise.
19234 * genrecog.c: Likewise.
19235 * ggc-common.c: Likewise.
19236 * ggc-page.c: Likewise.
19237 * global.c: Likewise.
19239 2002-01-05 Kazu Hirata <kazu@hxi.com>
19241 * combine.c: Fix formatting.
19243 2002-01-05 Craig Rodrigues <crodrigu@bbn.com>
19246 * config/ia64/ia64.h (RENAME_EXTENDED_BLOCKS): Remove.
19248 2002-01-05 David Edelsohn <edelsohn@gnu.org>
19250 * config/rs6000/rs6000.h (TARGET_POWERPC): For IN_LIBGCC2, define
19251 as 1 for __powerpc64__ as well.
19253 * config/rs6000/t-aix43 (T_ADAFLAGS): Define.
19255 * alias.c (find_base_value, PLUS/MINUS): If we found a base,
19258 2002-01-05 Daniel Berlin <dan@dberlin.org>
19260 * lcm.c: Revert change, due to performance regression it causes on
19261 SPEC because it's slightly more conservative (sigh, I hate
19264 Sat Jan 5 11:52:05 CET 2002 Jan Hubicka <jh@suse.cz>
19266 * cfgcleanup.c (try_forward_edges): Allow multiple jump threading.
19268 2002-01-05 Neil Booth <neil@daikokuya.demon.co.uk>
19270 * doc/cppinternals.texi: Update.
19272 2002-01-05 Hans-Peter Nilsson <hp@bitrange.com>
19274 * doc/invoke.texi (Option Summary) <MMIX Options>: Document
19275 -mbranch-predict, -mreg-stack-fill-bug-workaround and their
19277 (MMIX Options): Ditto. Fix item/itemx typo for -mno-zero-extend.
19278 * config/mmix/mmix.c (mmix_target_asm_function_prologue): Rework
19279 kludge for pre-october-14th mmix versions to handle new-found bug
19280 with PUSHJ/PUSHGO and the register stack.
19281 * config/mmix/mmix.h (struct machine_function): Rename member
19282 has_call_value_without_parameters to has_call_without_parameters.
19283 All referers changed.
19284 (TARGET_MASK_REG_STACK_FILL_BUG, TARGET_DEFAULT
19285 TARGET_MASK_BRANCH_PREDICT): New macros.
19286 (TARGET_SWITCHES): New options -mreg-stack-fill-bug-workaround,
19287 -mno-reg-stack-fill-bug-workaround.
19288 * config/mmix/mmix.md ("call"): Set struct machine member
19289 has_call_without_parameters.
19291 Sat Jan 5 02:20:22 CET 2002 Jan Hubicka <jh@suse.cz>
19293 * cfgcleanup.c (thread_jump): Fix handling of reversed branches.
19295 Sat Jan 5 01:35:29 CET 2002 Jan Hubicka <jh@suse.cz>
19297 * cfgcleanup.c: Include tm_p.h
19298 (mark_effect): Fix handling of hard register; fix handling of SET
19300 2002-01-04 Kazu Hirata <kazu@hxi.com>
19302 * config/h8300/h8300.md (anonymous patterns): Check that
19303 operands are registers before using REGNO on them.
19305 2002-01-03 Roland McGrath <roland@frob.com>
19307 * doc/invoke.texi (RS/6000 and PowerPC Options): Add -mcall-gnu.
19309 2002-01-04 Jakub Jelinek <jakub@redhat.com>
19311 * tree.h (expand_expr_stmt_value): Add maybe_last argument.
19312 * c-common.h (genrtl_expr_stmt_value): Likewise.
19313 * stmt.c (expand_expr_stmt): Pass 1 as maybe_last.
19314 (expand_expr_stmt_value): Add maybe_last argument.
19315 Don't warn about statement with no effect if it is the last statement
19316 in expression statement.
19317 * c-semantics.c (genrtl_expr_stmt): Pass 1 as maybe_last.
19318 (genrtl_expr_stmt_value): Add maybe_last argument, pass it down to
19319 expand_expr_stmt_value.
19320 (expand_stmt) [EXPR_STMT]: Pass 1 as maybe_last to
19321 genrtl_expr_stmt_value if t is the last EXPR_STMT in its scope.
19322 * expr.c (expand_expr) [LABELED_BLOCK_EXPR, LOOP_EXPR]: Pass 1
19323 as maybe_last to expand_expr_stmt_value.
19325 Fri Jan 4 11:45:05 2002 Jeffrey A Law (law@redhat.com)
19327 * c-common.c (c_expand_start_cond): Expect the IF_STMT node to
19328 be passed in, do not build it.
19329 (c_begin_if_stmt): New function.
19330 (c_begin_while_stmt, c_finish_while_stmt_cond): Likewise.
19331 * c-common.h (c_expand_start_cond): Update prototype.
19332 (c_begin_if_stmt): Prototype new function.
19333 (c_begin_while_stmt, c_finish_while_stmt_cond): Likewise.
19334 * c-parse.in (if_prefix): Use c_begin_if_stmt,
19335 c_begin_while_stmt and c_finish_while_stmt_cond.
19337 2002-01-04 William Cohen <wcohen@redhat.com>
19339 * config/pa/elf.h (ASM_FILE_START): Reverted to profile_flag.
19340 * config/pa/pa-linux.h (ASM_FILE_START): Likewise.
19341 * config/pa/pa64-hpux.h (ASM_FILE_START): Likewise.
19342 * config/pa/som.h (ASM_FILE_START): Likewise.
19344 2002-01-04 Daniel Berlin <dan@cgsoftware.com>
19346 * lcm.c: Include df.h.
19347 Add available_transfer_function prototype.
19348 (compute_available): Rework to use iterative dataflow framework.
19349 (struct bb_info): s/bb_info/lcm_bb_info/g to avoid conflict
19350 with bb_info in df.h
19351 (available_transfer_function): New function.
19353 * Makefile.in (lcm.o): add df.h to dependencies.
19355 2002-01-04 Richard Henderson <rth@redhat.com>
19357 * config/alpha/alpha.c (some_operand): Accept HIGH.
19358 (input_operand): Likewise; accept simple references to globals.
19359 (alpha_const_ok_for_letter_p): New, outlined from alpha.h.
19360 (alpha_const_double_ok_for_letter_p): Likewise.
19361 (alpha_extra_constraint): Likewise.
19362 (alpha_preferred_reload_class): Likewise. Do not force
19363 symbolic constants to memory.
19364 (alpha_legitimate_address_p): Accept simple references
19365 to small_symbolic_operand.
19366 (alpha_legitimize_address): New arg scratch. Be prepared to be
19367 called when no_new_pseudos. Emit simple symbolic references.
19368 Split integers into low, high, and rest.
19369 (alpha_expand_mov): Use alpha_legitimize_address.
19370 (some_small_symbolic_mem_operand): New.
19371 (split_small_symbolic_mem_operand): New.
19372 * config/alpha/alpha-protos.h: Update.
19373 * config/alpha/alpha.h (CONST_OK_FOR_LETTER_P): Out-line.
19374 (CONST_DOUBLE_OK_FOR_LETTER_P): Likewise.
19375 (EXTRA_CONSTRAINT): Likewise.
19376 (PREFERRED_RELOAD_CLASS): Likewise.
19377 (LEGITIMIZE_ADDRESS): Update for alpha_legitimize_address change.
19378 (PREDICATE_CODES): Update.
19379 * config/alpha/alpha.md: New post-reload splitters to convert
19380 simplfied symbolic operands to the form that references $29.
19381 (divide expanders): Use emit_move_insn, not gen_movdi_er_high_g.
19382 (movdi_er_nofix, movdi_er_fix): Accept any symbolic operand.
19384 2002-01-03 Richard Henderson <rth@redhat.com>
19386 * local-alloc.c (function_invariant_p): Update commentary.
19388 2002-01-04 H.J. Lu <hjl@gnu.org>
19390 * toplev.c (rest_of_compilation): Fix a typo when calling
19393 2002-01-03 Kazu Hirata <kazu@hxi.com>
19395 * c-common.c: Fix formatting.
19396 * diagnostic.c: Likewise.
19397 * doloop.c: Likewise.
19398 * dwarf2out.c: Likewise.
19400 2002-01-03 Kazu Hirata <kazu@hxi.com>
19402 * config/h8300/h8300.c (output_logical_op): Use 'not.w' instead
19403 of 'neg.w' when xoring with 0x0000ffff or 0xffff0000.
19405 2002-01-03 Neil Booth <neil@daikokuya.demon.co.uk>
19407 * cpperror.c: Update comments and copyright.
19408 * cppexp.c, cppfiles.c, cpphash.c, cpphash.h, cppinit.c,
19409 cpplex.c, cpplib.c, cpplib.h, cppmacro.c, cppmain.c: Similarly.
19411 2002-01-03 John David Anglin <dave@hiauly1.hia.nrc.ca>
19413 * collect2.c (main): Use strcmp when testing for "-shared".
19415 2002-01-03 Neil Booth <neil@daikokuya.demon.co.uk>
19417 * cppmacro.c: Don't include intl.h. Update comments.
19418 (new_number_token): Allocate enough buffer for 64-bit unsigned
19419 integers; update prototype.
19420 * cppmain.c: Update comments.
19422 2002-01-03 William Cohen <wcohen@redhat.com>
19424 * function.h (struct function): Add profile.
19425 (current_function_profile): New.
19426 doc/extend.texi: Update documentation.
19427 * final.c (final_start_function): Use current_function_profile
19428 instead of profile_flag.
19429 (profile_after_prologue): Likewise.
19430 * function.c (expand_function_start): Likewise.
19431 (expand_function_start): Likewise.
19432 * config/alpha/alpha.c (direct_call_operand):
19433 (alpha_does_function_need_gp): Likewise.
19434 (alpha_expand_prologue): Likewise.
19435 * config/arm/arm.c (arm_expand_prologue): Likewise.
19436 thumb_expand_prologue: Likewise.
19437 * config/d30v/d30v.c (d30v_stack_info): Likewise.
19438 * config/fr30/fr30.c (MUST_SAVE_RETURN_POINTER): Likewise.
19439 (fr30_expand_prologue): Likewise.
19440 * config/i386/cygwin.h (SUBTARGET_PROLOGUE): Likewise.
19441 * config/i386/i386.c (ix86_osf_output_function_prologue): Likewise.
19442 * config/i386/i386.h (FINALIZE_PIC): Likewise.
19443 * config/i386/win32.h (SUBTARGET_PROLOGUE): Likewise.
19444 * config/i960/i960.c (i960_output_function_prologue): Likewise.
19445 * config/ia64/ia64.c (ia64_compute_frame_size): Likewise.
19446 * config/m32r/m32r.c (MUST_SAVE_RETURN_ADDR): Likewise.
19447 (m32r_expand_prologue): Likewise.
19448 * config/m88k/m88k.c (m88k_layout_frame): Likewise.
19449 (m88k_expand_prologue): Likewise.
19450 * config/m88k/m88k.h (ADJUST_INSN_LENGTH): Likewise.
19451 * config/mips/mips.c (compute_frame_size): Likewise.
19452 (mips_expand_prologue): Likewise.
19453 (mips_can_use_return_insn): Likewise.
19454 * config/pa/elf.h (ASM_FILE_START): Likewise.
19455 * config/pa/pa-linux.h (ASM_FILE_START): Likewise.
19456 * config/pa/pa64-hpux.h (ASM_FILE_START): Likewise.
19457 * config/pa/som.h (ASM_FILE_START): Likewise.
19458 * config/romp/romp.c (romp_using_r14): Likewise.
19459 * config/rs6000/rs6000.c (first_reg_to_save): Likewise.
19460 (rs6000_stack_info): Likewise.
19461 * config/rs6000/sysv4.h (ASM_DECLARE_FUNCTION_NAME): Likewise.
19462 * config/rs6000/xcoff.h (ASM_FILE_START): Likewise.
19463 * config/v850/v850.c (compute_register_save_size): Likewise.
19465 2002-01-03 Jakub Jelinek <jakub@redhat.com>
19467 * simplify-rtx.c (simplify_binary_operation) [DIV]: If
19468 gen_lowpart_common fails, use gen_lowpart_SUBREG.
19470 2002-01-03 Turly O'Connor <turly@apple.com>
19472 * darwin.c (machopic_output_possible_stub_label): Don't generate
19473 stub routines for pseudo-stubs which we've just defined.
19475 2002-01-03 Kazu Hirata <kazu@hxi.com>
19477 * builtins.c: Fix formatting.
19478 * c-typeck.c: Likewise.
19479 * combine.c: Likewise.
19480 * expr.c: Likewise.
19481 * loop.c: Likewise.
19483 2002-01-03 Andreas Schwab <schwab@suse.de>
19485 * cppfiles.c (_cpp_pop_file_buffer): Change return type to bool
19486 and return true if _cpp_push_next_buffer pushed a new include
19488 * cpplib.c (_cpp_pop_buffer): Only call obstack_free if
19489 _cpp_pop_file_buffer did not push a new file.
19490 * cpphash.h (_cpp_pop_file_buffer): Update declaration.
19492 2002-01-02 Eric Christopher <echristo@redhat.com>
19494 * final.c (final_scan_insn): Change 0 -> NULL_RTX in
19495 FIND_REG_INC_NOTE call. Update copyright.
19496 * loop.c (canonicalize_condition): Ditto.
19497 * reorg.c (delete_scheduled_jump): Ditto.
19499 2002-01-03 Kazu Hirata <kazu@hxi.com>
19501 * gcse.c: Fix formatting.
19503 2002-01-03 Graham Stott <grahams@redhat.com>
19505 * mkconfig.sh: Output to config.h, hconfig.h and tconfig.h
19506 forward defs for struct tags rtx_def, union_tree, rtvec_def
19507 also output corresponding typedefs for rtx, tree, and rtvec.
19509 * system.h: Move forward defs for struct tags rtx_def, union_tree,
19510 rtvec_def along with corresponding typedefs for rtx, tree, and
19511 rtvec to config.h, hconfig.h, tconfig.h.
19513 2002-01-03 Graham Stott <grahams@redhat.com>
19515 * tree.h: Update copyright date.
19516 (IS_EXPR_CODE_CLASS): Add parenthesis.
19517 (TREE_SET_CODE): Add whitespace.
19518 (TREE_CHECK): Add parenthesis.
19519 (TREE_CLASS_CODE): Add parenthesis and wrap long line.
19520 (CST_OR_CONSTRUCTOR_CHECK):
19521 (EXPR_CHECK): Add parenthis, whitespace and wrap line.
19522 (TREE_SYMBOL_REFERENCED): Whitespace.
19523 (INT_CST_LT): Likewise.
19524 (INT_CST_LT_UNSIGNED): Likewise.
19525 (tree_real_cst): Unwrap comment.
19526 (tree_string): Likewise.
19527 (tree_complex): Likewise.
19528 (IDENTIFIER_POINTER): correct cast.
19529 (SAVE_EXPR_CONTEXT): Whitespace.
19530 (EXPR_WFL_FILENAME_NODE): Likewise.
19531 (EXPR_WFL_FILENAME): Remove parenthesis.
19532 (DECL_ORIGIN): Add parenthesis.
19533 (DECL_FROM_INLINE): Use NULL_TREE.
19534 (build_int_2): Whitespace.
19535 (build_type_variant): Add parenthesis.
19537 * gcc/jcf-parse.c: Update copyright date.
19538 (yyparse): Constify resource_filename.
19540 2002-01-03 Graham Stott <grahams@redhat.com>
19542 * rtl.h: Update copyright date.
19543 (RTL_CHECK1): Wrap long line.
19544 (RTL_CHECK2): Likewise.
19545 (RTL_CHECKC1): Wrap long line and whitespace.
19546 (RTL_CHECKC2): Likewise.
19547 (XWINT): Whitespace.
19553 (XBITMAP): Likewise.
19555 (XBBDEF): Likewise.
19557 (X0WINT): Likewise.
19559 (X0UINT): Likewise.
19563 (X0MODE): Likewise.
19564 (X0BITMAP): Likewise.
19565 (X0TREE): Likewise.
19566 (X0BBDEF): Likewise.
19567 (X0ADVFLAGS): Likewise.
19568 (X0CSELIB): Likewise.
19569 (X0MEMATTR): Likewise.
19570 (XCWINT): Likewise.
19572 (XCUINT): Likewise.
19576 (XCMODE): Likewise.
19577 (XCBITMAP): Likewise.
19578 (XCTREE): Likewise.
19579 (XCBBDEF): Likewise.
19580 (XCADVFLAGS): Likewise.
19581 (XCCSELIB): Likewise.
19582 (XC2EXP): Likewise.
19583 (INSN_UID): Likewise.
19584 (PREV_INSN): Likewise.
19585 (PATTERN): Likewise.
19586 (INSN_CODE): Likewise.
19587 (PUT_REG_NOTE_KIND): Likewise.
19588 (CODE_LABEL_NUMBER): Likewise.
19589 (NOTE_SOURCE_FILE): Likewise.
19590 (NOTE_BLOCK): Likewise.
19591 (NOTE_EH_HANDLER): Likewise.
19592 (NOTE_RANGE_INFO): Likewise.
19593 (NOTE_LIVE_INFO): Likewise.
19594 (NOTE_BASIC_BLOCK): Likewise.
19595 (NOTE_EXPECTED_VALUE): Likewise.
19596 (NOTE_LINE_NUMBER): Likewise.
19597 (LABEL_NAME): Likewise.
19598 (LABEL_NUSES): Likewise.
19599 (LABEL_ALTERNATE_NAME): Likewise.
19600 (ADDRESSOF_DECL): Likewise.
19601 (JUMP_LABEL): Likewise.
19602 (LABEL_NEXTREF): Likewise.
19604 (ORIGINAL_REGNO: Likewise.
19605 (HARD_REGISTER_NUM_P): Add parenthesis.
19606 (SUBREG_REG): Whitespace.
19607 (SUBREG_BYTE): Likewise.
19608 (ASM_OPERANDS_TEMPLATE): Remove parenthesis.
19609 (ASM_OPERANDS_OUTPUT_CONSTRAINT): Likewise.
19610 (ASM_OPERANDS_OUTPUT_IDX): Likewise.
19611 (ASM_OPERANDS_INPUT_VEC): Likewise.
19612 (ASM_OPERANDS_INPUT_CONSTRAINT_VEC): Likewise.
19613 (ASM_OPERANDS_INPUT): Likewise.
19614 (ASM_OPERANDS_INPUT_LENGTH): Likewise.
19615 (ASM_OPERANDS_INPUT_CONSTRAINT_EXP): Likewise.
19616 (ASM_OPERANDS_INPUT_CONSTRAINT): Likewise.
19617 (ASM_OPERANDS_INPUT_MODE): Likewise.
19618 (ASM_OPERANDS_SOURCE_FILE): Likewise.
19619 (ASM_OPERANDS_SOURCE_LINE): Likewise.
19620 (MEM_SET_IN_STRUCT_P): Minor reformat.
19621 (TRAP_CONDITION): Whitespace.
19622 (TRAP_CODE): Likewise.
19623 (COND_EXEC_TEST): Likewise.
19624 (COND_EXEC_CODE): Likewise.
19625 (FIND_REG_INC_NOTE): Uppercase macro args and add parenthesis.
19626 (PHI_NODE_P): Add parenthesis.
19627 (plus_constant): Whitespace and add parenthesis.
19629 2002-01-03 Kazu Hirata <kazu@hxi.com>
19631 * config/avr/avr.c: Fix comment typos.
19632 * config/c4x/c4x.md: Likewise.
19633 * config/dsp16xx/dsp16xx.h: Likewise.
19634 * config/dsp16xx/dsp16xx.md: Likewise.
19635 * config/i386/i386.md: Likewise.
19636 * config/ia64/ia64.c: Likewise.
19637 * config/m32r/m32r.h: Likewise.
19638 * config/m68hc11/m68hc11.md: Likewise.
19639 * config/mmix/mmix.c: Likewise.
19640 * config/mn10200/mn10200.c: Likewise.
19641 * config/romp/romp.c: Likewise.
19642 * config/sh/sh.c: Likewise.
19643 * config/stormy16/stormy16.c: Likewise.
19644 * config/stormy16/stormy16.h: Likewise.
19645 * config/stormy16/stormy16.md: Likewise.
19647 2002-01-03 Graham Stott <grahams@redhat.com>
19649 * loop.h: Update copyright date.
19650 (LOOP_MOVABLES): Fix typo.
19651 (LOOP_REGS): Likewise.
19652 (LOOP_IVS): Likewise.
19654 2002-01-03 Graham Stott <grahams@redhat.com>
19656 * cppinit.c: Update copyright date.
19657 Don't include output.h
19658 * Makefile.in: Update copyright date.
19661 2002-01-02 Craig Rodrigues <rodrigc@gcc.gnu.org>
19664 * invoke.texi (-mthreads): Remove from documented RS/6000 options.
19665 (-pthread) Add to RS/6000 options.
19667 2002-01-02 Kazu Hirata <kazu@hxi.com>
19669 * except.c: Fix comment typos.
19670 * loop.c: Likewise.
19671 * varasm.c: Likewise.
19672 * doc/tm.texi: Fix a typo.
19674 2002-01-02 Jakub Jelinek <jakub@redhat.com>
19676 * c-typeck.c (output_init_element): Allow initializing static storage
19677 duration objects with compound literals.
19679 2002-01-02 Richard Henderson <rth@redhat.com>
19681 * objc/objc-act.c (hack_method_prototype): Clear current_function_decl
19684 2002-01-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
19686 * gcc.c (default_compilers): Const-ify.
19687 * mips-tdump.c (stab_names): Likewise.
19688 * mips-tfile.c (map_coff_types, map_coff_storage,
19689 map_coff_sym_type, map_coff_derived_type, stabs_symbol,
19690 pseudo_ops_t, pseudo_ops): Likewise.
19691 * protoize.c (default_include): Likewise
19693 * real.c (GET_REAL, PUT_REAL): Don't cast away const-ness.
19694 (ezero, ehalf, eone, etwo, e32, elog2, esqrt2, epi): Const-ify.
19695 Add array size in declaration.
19696 (endian, emov, eisneg, eisinf, eisnan, eiisnan, eiisneg, emovi,
19697 emovo, emovz, eiisinf, ecmpm, eaddm, esubm, m16m, edivm, emulm,
19698 esub, eadd, eadd1, ediv, emul, e53toe, e64toe, e113toe, e24toe,
19699 etoe113, etoe64, etoe53, etoe24, ecmp, eround, ltoe, ultoe,
19700 eifrac, euifrac, e24toasc, e53toasc, e64toasc, e113toasc, etoasc,
19701 efloor, efrexp, eldexp, eremain, dectoe, etodec, ibmtoe, etoibm,
19702 c4xtoe, etoc4x, uditoe, ditoe, etoudi, etodi, esqrt, etens,
19703 emtens, make_nan): Const-ify.
19704 (TFbignan, TFlittlenan, XFbignan, XFlittlenan, DFbignan,
19705 DFlittlenan, SFbignan, SFlittlenan): Make static and const-ify.
19707 2002-01-02 Joseph S. Myers <jsm28@cam.ac.uk>
19709 * config.gcc (ia64-*-*): Set extra_headers.
19710 (alpha*-dec-osf*): Likewise. Don't use alpha/t-osf.
19711 * config/alpha/t-osf: Remove.
19712 * config/ia64/t-ia64 (EXTRA_HEADERS): Remove.
19714 2002-01-02 David Edelsohn <edelsohn@gnu.org>
19716 * config/rs6000/t-aix43: Revert previous change.
19718 2002-01-02 Jason Merrill <jason@redhat.com>
19720 * c-decl.c (c_expand_body): Call outlining_inline_function when
19721 emitting an inline function out of line.
19723 2002-01-02 Richard Henderson <rth@redhat.com>
19725 * dwarf2out.c (limbo_die_node): Add created_for member.
19726 (new_die): New argument created_for. Update all callers.
19727 (mark_limbo_die_list): New.
19728 (dwarf2out_init): Register limbo_die_list as a root.
19729 (dwarf2out_finish): Force insert limbo dies into their function
19732 2002-01-02 Nathan Sidwell <nathan@codesourcery.com>
19735 * doc/invoke.texi (-Wold-style-cast): Only warn about non-void casts.
19737 2002-01-02 Kazu Hirata <kazu@hxi.com>
19739 * config/h8300/fixunssfsi.c: Update copyright.
19742 * config/h8300/h8300.c: Update copyright.
19743 Eliminate warnings.
19745 2002-01-02 Kazu Hirata <kazu@hxi.com>
19747 * config/romp/romp.c: Fix comment formatting.
19748 * config/romp/romp.h: Likewise.
19749 * config/romp/romp.md: Likewise.
19750 * config/s390/s390.c: Likewise.
19751 * config/stormy16/stormy16.c: Likewise.
19752 * config/stormy16/stormy16.h: Likewise.
19754 2002-01-02 Alexandre Oliva <aoliva@redhat.com>
19756 * c-common.h (genrtl_expr_stmt_value): Declare.
19757 * c-semantics.c (genrtl_goto_stmt): Redirect to...
19758 (genrtl_goto_stmt_value): ... this new function. Pass new
19759 argument down to expand_expr_stmt_value, taking
19760 TREE_ADDRESSABLE into account.
19761 * c-common.c (c_expand_expr): Mark the last EXPR_STMT of a
19762 STMT_EXPR as addressable, i.e., one whose result we want.
19763 * expr.c (expand_expr): Don't save expression statement value
19764 of labeled_blocks or loop_exprs.
19765 * stmt.c (expand_expr_stmt): Redirect to...
19766 (expand_expr_stmt_value): ... this new function. Use new
19767 argument to tell whether to save expression value.
19768 (expand_end_stmt_expr): Reset last_expr_type and
19769 last_expr_value if we don't have either.
19770 * tree-inline.c (declare_return_variable): Mark its use
19771 statement as addressable.
19772 * tree.h: Document new use of TREE_ADDRESSABLE.
19773 (expand_expr_stmt_value): Declare.
19775 2002-01-01 Tom Rix <trix@redhat.com>
19777 * config/rs6000/rs6000.c (rs6000_emit_set_long_const): Fix for use by
19778 rs6000_emit_allocate_stack.
19780 2002-01-01 Joseph S. Myers <jsm28@cam.ac.uk>
19782 * configure.in: Prepend ${srcdir}/config/${cpu_type}/ instead of
19783 ${srcdir}/ginclude/ to every entry in extra_headers.
19784 * configure: Regenerate.
19785 * ginclude/math-3300.h: Rename to config/m68k/math-3300.h.
19786 * ginclude/math-68881.h: Rename to config/m68k/math-68881.h.
19787 * ginclude/ppc-asm.h: Rename to config/rs6000/ppc-asm.h.
19788 * ginclude/proto.h: Rename to config/convex/proto.h.
19790 Tue Jan 1 17:12:56 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
19792 * attribs.c (handle_vector_size_attribute): Use host_integerp
19793 and tree_int_cst; remove warnings.
19794 * caller-save.c (insert_restore): Add cast to get rid of warning.
19795 (insert_save): Likewise.
19796 * emit-rtl.c (adjust_address_1, offset_address): Likewise.
19797 * regmove.c (find_matches): Add temporary var to kill a warning.
19799 2002-01-01 Douglas B Rupp <rupp@gnat.com>
19801 * config/alpha/vms.h (DWARF2_UNWIND_INFO, EH_RETURN_HANDLER_RTX,
19802 LINK_EH_SPEC, MD_FALLBACK_FRAME_STATE_FOR): Define.
19803 * config/alpha/t-vms (EXTRA_PARTS): Add vms-dwarf2eh.o
19804 (vms-dwarf2eh.o): Add Makefile rule.
19805 * config/alpha/vms-ld.c (main): Handle vms-dwarf2eh.o.
19806 * config/alpha/vms-dwarf2eh.asm: New file.
19808 * gcc.c (delete_if_ordinary): Delete all versions.
19810 2002-01-01 Hans-Peter Nilsson <hp@bitrange.com>
19812 * config/mmix/mmix.md: Update FIXME to not mention
19814 (MMIX_rJ_REGNUM): New define_constants constant.
19815 ("movqi", "movsi", "movdi", "*movdicc_real_foldable",
19816 "*movdicc_real"): Adjust contraints formatting.
19817 ("*bCC_foldable"): Add %+ for P in output format and delete FIXME
19818 for branch prediction.
19819 ("*bCC", "*bCC_inverted_foldable", "*bCC_inverted"): Add %+ in
19821 ("*call_real", "*call_value_real", "nonlocal_goto_receiver",
19822 "*nonlocal_goto_receiver_expanded"): Use MMIX_rJ_REGNUM instead of
19823 number. Delete related FIXMEs.
19824 * config/mmix/mmix.h (MMIX_INCOMING_RETURN_ADDRESS_REGNUM): Change
19825 from number to MMIX_rJ_REGNUM.
19826 (TARGET_MASK_BRANCH_PREDICT): New.
19827 (TARGET_DEFAULT): Change to TARGET_MASK_BRANCH_PREDICT.
19828 (TARGET_SWITCHES): Update comment. Correct -mno-toplevel-symbols
19829 value. Add -mbranch-predict and -mno-branch-predict.
19830 (TARGET_VERSION): Drop date.
19831 (ADDITIONAL_REGISTER_NAMES): Use MMIX_rJ_REGNUM, not number.
19832 * config/mmix/mmix.c (mmix_encode_section_info): Correct condition
19833 for finding out global symbols.
19834 (mmix_asm_output_labelref): Revert condition for global symbol.
19835 (mmix_print_operand): <case '+'>: Emit P for a likely branch.
19836 (mmix_print_operand_punct_valid_p): A '+' is valid.
19838 See ChangeLog.6 for earlier changes.