re PR c++/15764 (no cleanup if temporary's dtor terminates with an exception)
[gcc.git] / gcc / ChangeLog
1 2007-10-03 Jason Merrill <jason@redhat.com>
2
3 PR c++/15764
4 * tree-eh.c (same_handler_p): New fn.
5 (optimize_double_finally): New fn.
6 (refactor_eh_r): New fn.
7 (refactor_eh): New fn.
8 (pass_refactor_eh): New pass.
9 * tree-pass.h: Declare it.
10 * passes.c (init_optimization_passes): Add it.
11
12 2007-10-03 Doug Kwan <dougkwan@google.com>
13 Richard Guenther <rguenther@suse.de>
14
15 PR debug/31899
16 * dwarf2out.c (reference_to_unused): Disable sanity checking,
17 be conservative instead.
18
19 2007-10-03 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
20
21 PR fortran/26682
22 * doc/invoke.texi (-fwhole-program): Document that Fortran
23 doesn't support this option.
24
25 2007-10-02 Richard Sandiford <rsandifo@nildram.co.uk>
26
27 PR middle-end/33617
28 * expr.c (expand_expr_addr_expr_1): Pass CONSTRUCTORs to
29 expand_expr.
30
31 2007-10-02 David Daney <ddaney@avtrex.com>
32
33 * config/mips/mips.md (sync_compare_and_swap<mode>): Handle compare
34 against constant zero.
35 * config/mips/mips.h (MIPS_COMPARE_AND_SWAP): Handle constant zero
36 operand.
37
38 2007-09-02 Kenneth Zadeck <zadeck@naturalbridge.com>
39
40 * ra-conflict.c: New file.
41 * ra.h: New file.
42 * reload.c (push_reload, find_dummy_reload): Change DF_RA_LIVE
43 usage to DF_LIVE usage.
44 * rtlanal.c (subreg_nregs_with_regno): New function.
45 * df-scan.c (df_def_record_1, df_uses_record): Add code to set
46 DF_REF_EXTRACT, DF_REF_STRICT_LOWER_PART, and DF_REF_SUBREG flags.
47 (df_has_eh_preds): Removed.
48 (df_bb_refs_collect, df_bb_refs_collect, df_bb_refs_collect,
49 df_exit_block_uses_collect): Changed call from df_has_eh_preds to
50 bb_has_eh_pred.
51 * global.c (allocno, max_allocno, conflicts, allocno_row_words,
52 reg_allocno, EXECUTE_IF_SET_IN_ALLOCNO_SET): Moved to ra.h
53 (SET_ALLOCNO_LIVE, CLEAR_ALLOCNO_LIVE): Moved to ra-conflicts.c.
54 (regs_set, record_one_conflict, record_conflicts, mark_reg_store,
55 mark_reg_clobber, mark_reg_conflicts, mark_reg_death): Deleted.
56 (global_alloc): Turn off rescanning insns after call to
57 global_conflicts and added call to set_preferences.
58 (global_conflicts): Moved to ra-alloc.c.
59 (set_preferences_1, set_preferences): New function.
60 (mirror_conflicts): Changed types for various variables.
61 (mark_elimination): Change DF_RA_LIVE
62 usage to DF_LIVE usage.
63 (build_insn_chain): Rewritten from scratch and made local.
64 (print_insn_chain, print_insn_chains): New functions.
65 (dump_conflicts): Do not print conflicts for fixed_regs.
66 (rest_of_handle_global_alloc): Turn off insn rescanning.
67 * hard-reg-set.h: Fixed comment.
68 * local-alloc.c (update_equiv_regs): Change DF_RA_LIVE
69 usage to DF_LIVE usage and delete refs to TOP sets.
70 (block_alloc): Mark regs as live if they are in the artificial
71 defs at top of block.
72 (find_stack_regs): New function.
73 (rest_of_handle_local_alloc): Changed urec problem to live
74 problem and do not turn off df rescanning.
75 * df.h (DF_UREC, DF_UREC_BB_INFO, DF_LIVE_TOP, DF_RA_LIVE_IN,
76 DF_RA_LIVE_TOP, DF_RA_LIVE_OUT, df_urec_bb_info, df_urec,
77 df_urec_add_problem, df_urec_get_bb_info, df_has_eh_preds): Removed.
78 (DF_CHAIN, DF_NOTE, DF_CHAIN): Renumbered.
79 (DF_REF_EXTRACT, DF_REF_STRICT_LOWER_PART, DF_REF_SUBREG): New
80 fields in df_ref_flags. The rest have been renumbered.
81 * init-regs.c (initialize_uninitialized_regs): Enhanced debugging
82 at -O1.
83 * rtl.h (subreg_nregs_with_regno): New function.
84 * df-problems.c: (df_get_live_out, df_get_live_in,
85 df_get_live_top): Removed reference to DF_RA_LIVE.
86 (df_lr_reset, df_lr_transfer_function, df_live_free_bb_info,
87 df_live_alloc, df_live_reset, df_live_local_finalize,
88 df_live_free): Make top set only if different from in set.
89 (df_lr_top_dump, df_live_top_dump): Only print top set if
90 different from in set.
91 (df_lr_bb_local_compute): Removed unnecessary check.
92 (df_urec_problem_data, df_urec_set_bb_info, df_urec_free_bb_info,
93 df_urec_alloc, df_urec_mark_reg_change, earlyclobber_regclass,
94 df_urec_check_earlyclobber, df_urec_mark_reg_use_for_earlyclobber,
95 df_urec_mark_reg_use_for_earlyclobber_1, df_urec_bb_local_compute,
96 df_urec_local_compute, df_urec_init, df_urec_local_finalize,
97 df_urec_confluence_n, df_urec_transfer_function, df_urec_free,
98 df_urec_top_dump, df_urec_bottom_dump, problem_UREC,
99 df_urec_add_problem): Removed.
100 (df_simulate_fixup_sets): Changed call from df_has_eh_preds to
101 bb_has_eh_pred.
102 * Makefile.in (ra-conflict.o, ra.h): New dependencies.
103 * basic_block.h (bb_has_abnormal_pred): New function.
104 * reload1.c (compute_use_by_pseudos): Change DF_RA_LIVE
105 usage to DF_LIVE usage.
106
107 2007-10-02 Revital Eres <eres@il.ibm.com>
108
109 * config/rs6000/predicates.md (easy_vector_constant): Return false
110 for 750CL paired vectors.
111 * config/rs6000/paired.md (movv2sf_paired): Fix move of easy
112 vector constant.
113 (vec_initv2sf): Add new description.
114 (vconcatsf): Likewise.
115 * config/rs6000/rs6000-protos.h: Declare paired_expand_vector_init.
116 * config/rs6000/rs6000.c (paired_expand_vector_init): New function.
117
118 2007-10-01 Alexandre Oliva <aoliva@redhat.com>
119
120 * tree-ssa-sink.c (sink_code_in_bb): Don't stop sinking after
121 sinking the last stmt in a BB.
122
123 2007-10-01 Alexandre Oliva <aoliva@redhat.com>
124
125 PR middle-end/22156
126 * tree-sra.c (struct sra_elt): Add in_bitfld_block.
127 (sra_hash_tree): Handle BIT_FIELD_REFs.
128 (sra_elt_hash): Don't hash bitfld blocks.
129 (sra_elt_eq): Skip them in parent compares as well. Handle
130 BIT_FIELD_REFs.
131 (build_element_name_1): Handle BIT_FIELD_REFs.
132 (instantiate_element): Propagate nowarn from parents. Create
133 BIT_FIELD_REF for variables that are widened by scalarization.
134 Gimple-zero-initialize all bit-field variables that are not
135 part of parameters that are going to be scalarized on entry.
136 (instantiate_missing_elements_1): Return the sra_elt.
137 (canon_type_for_field): New.
138 (try_instantiate_multiple_fields): New. Infer widest possible
139 access mode from decl or member type, but clip it at word
140 size, and only widen it if a field crosses an alignment
141 boundary.
142 (instantiate_missing_elements): Use them.
143 (generate_one_element_ref): Handle BIT_FIELD_REFs.
144 (scalar_bitfield_p): New.
145 (sra_build_assignment): Optimize assignments from scalarizable
146 BIT_FIELD_REFs. Use BITS_BIG_ENDIAN to determine shift
147 counts.
148 (REPLDUP): New.
149 (sra_build_bf_assignment): New. Optimize assignments to
150 scalarizable BIT_FIELD_REFs.
151 (sra_build_elt_assignment): New. Optimize BIT_FIELD_REF
152 assignments to full variables.
153 (generate_copy_inout): Use the new macros and functions.
154 (generate_element_copy): Likewise. Handle bitfld differences.
155 (generate_element_zero): Don't recurse for blocks. Use
156 sra_build_elt_assignment.
157 (generate_one_element_init): Take elt instead of var. Use
158 sra_build_elt_assignment.
159 (generate_element_init_1): Adjust.
160 (bitfield_overlap_info): New struct.
161 (bitfield_overlaps_p): New.
162 (sra_explode_bitfield_assignment): New. Adjust widened
163 variables to account for endianness.
164 (sra_sync_for_bitfield_assignment): New.
165 (scalarize_use): Re-expand assignment to/from scalarized
166 BIT_FIELD_REFs. Explode or sync needed members for
167 BIT_FIELD_REFs accesses or assignments. Use REPLDUP.
168 (scalarize_copy): Use REPLDUP.
169 (scalarize_ldst): Move assert before dereference. Adjust EH
170 handling.
171 (dump_sra_elt_name): Handle BIT_FIELD_REFs.
172
173 2007-10-01 Paolo Bonzini <bonzini@gnu.org>
174
175 * simplify-rtx.c (comparison_result, simplify_relational_operation_1):
176 Rename CR_* constants to CMP_*. Fix spacing.
177
178 2007-10-01 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
179
180 PR other/33585
181 * Makefile.in (build_html_dir/gccinstall): gccinstall.texi needs
182 to be processed with the special script doc/install.texi2html.
183
184 2007-09-30 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
185
186 * doc/invoke.texi (Wall): List the options enabled by Wall.
187 (Wstrict-aliasing): Add missing @option.
188
189 2007-09-30 Richard Sandiford <rsandifo@nildram.co.uk>
190
191 * config/mips/mips.c (mips_split_64bit_move): Use gen_rtx_REG_offset
192 rather than gen_lowpart to change a register from DImode to DFmode.
193 (mips_cannot_change_mode_class): Only allow FPRs to change mode if
194 both FROM and TO are integer modes that are no bigger than 4 bytes.
195 (mips_mode_ok_for_mov_fmt_p): New function.
196 (mips_preferred_reload_class): Use it instead of FLOAT_MODE_P.
197 (mips_secondary_reload_class): Tweak formatting and comments.
198 Use reg_class_subset_p instead of direct comparisons with
199 classes. Only allow direct FPR<->FPR moves for modes that
200 satisfy mips_mode_ok_for_mov_fmt_p. Only allow loads and stores
201 for 4- and 8-byte types. Handle reloads in which X is an FPR.
202 * config/mips/mips.md (*movdi_gp32_fp64): Remove f<-f alternative.
203 (*movdi_64bit): Likewise.
204 (*movsi_internal): Likewise.
205 (*movhi_internal): Likewise.
206 (*movqi_internal): Likewise.
207
208 2007-09-30 Diego Novillo <dnovillo@google.com>
209
210 PR 33593
211 * tree-ssa-ter.c (is_replaceable_p): Return false if STMT may
212 throw an exception.
213
214 2007-09-30 Uros Bizjak <ubizjak@gmail.com>
215
216 PR tree-optimization/33597
217 * tree-vect-analyze.c (vect_build_slp_tree): Check if optab handler
218 for LSHIFT_EXPR and RSHIFT_EXPR is available for vec_mode.
219
220 2007-09-28 Uros Bizjak <ubizjak@gmail.com>
221
222 * config/i386/i386.c (ix86_expand_move): Use can_create_pseudo_p ()
223 instead of variants of (!reload_in_progress && !reload_completed).
224 (x86_expand_vector_move): Ditto.
225
226 2007-09-28 Ollie Wild <aaw@google.com>
227
228 Revert
229 2007-09-27 Ollie Wild <aaw@google.com>
230
231 * varasm.c (compare_constant): Removed call to
232 lang_hooks.expand_constant.
233 (copy_constants): Removed call to lang_hooks.expand_constant.
234 (compute_reloc_for_constant): Removed call to
235 lang_hooks.expand_constant.
236 (output_addressed_constants): Removed call to
237 lang_hooks.expand_constant.
238 (constructor_static_from_elts_p): Removed call to
239 lang_hooks.expand_constant.
240 (output_constant): Removed calls to lang_hooks.expand_constant.
241 * langhooks.h (struct lang_hooks): Removed field expand_constant.
242 * langhooks-def.h (lhd_return_tree): Removed.
243 (LANG_HOOKS_EXPAND_CONSTANT): Removed.
244 (LANG_HOOKS_INITIALIZER): Removed LANG_HOOKS_EXPAND_CONSTANT.
245 * langhooks.c (lhd_return_tree): Removed.
246
247 2007-09-28 Andrew Pinski <andrew_pinski@playstation.sony.com>
248
249 PR target/33347
250 * config/spu/spu.c (spu_expand_insv): Call copy_rtx on the second
251 argument to gen_selb.
252
253 2007-09-28 Chao-ying Fu <fu@mips.com>
254
255 * libgcc-std.ver: Add fixed-point routines to GCC_4.3.0 section.
256 * doc/libgcc.texi (Fixed-point fractional library routines):
257 Fix typos for neg and cmp functions.
258
259 2007-09-28 Michael Matz <matz@suse.de>
260
261 PR rtl-optimization/33552
262 * function.c (match_asm_constraints_1): Check for overlap in
263 inputs and replace all occurences.
264
265 2007-09-28 Richard Sandiford <rsandifo@nildram.co.uk>
266
267 * config/mips/mips.c (override_options): Fix comment typo.
268
269 2007-09-28 Jie Zhang <jie.zhang@analog.com>
270
271 * config.gcc (bfin*-linux-uclibc*): Set extra_parts
272 to "crtbegin.o crtbeginS.o crtend.o crtendS.o".
273 * config/bfin/t-bfin-linux (crti.o): Don't build.
274 (crtn.o): Likewise.
275 (EXTRA_MULTILIB_PARTS): Remove crti.o and crtn.o.
276 * config/bfin/t-bfin-uclinux (crti.o): Don't build.
277 (crtn.o): Likewise.
278 (EXTRA_MULTILIB_PARTS): Remove crti.o and crtn.o.
279
280 2007-09-27 Ollie Wild <aaw@google.com>
281
282 * varasm.c (compare_constant): Removed call to
283 lang_hooks.expand_constant.
284 (copy_constants): Removed call to lang_hooks.expand_constant.
285 (compute_reloc_for_constant): Removed call to
286 lang_hooks.expand_constant.
287 (output_addressed_constants): Removed call to
288 lang_hooks.expand_constant.
289 (constructor_static_from_elts_p): Removed call to
290 lang_hooks.expand_constant.
291 (output_constant): Removed calls to lang_hooks.expand_constant.
292 * langhooks.h (struct lang_hooks): Removed field expand_constant.
293 * langhooks-def.h (lhd_return_tree): Removed.
294 (LANG_HOOKS_EXPAND_CONSTANT): Removed.
295 (LANG_HOOKS_INITIALIZER): Removed LANG_HOOKS_EXPAND_CONSTANT.
296 * langhooks.c (lhd_return_tree): Removed.
297
298 2007-09-27 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
299
300 PR middle-end/33436
301 * expr.c (emit_group_load_1): Split constant double when destination
302 length is half source length.
303
304 2007-09-27 Richard Sandiford <rsandifo@nildram.co.uk>
305
306 * config/mips/mips.h (PTF_AVOID_BRANCHLIKELY): New macro.
307 (mips_cpu_info): Add tune_flags.
308 (GENERATE_BRANCHLIKELY): Remove TARGET_SR71K check.
309 * config/mips/mips.c (mips_cpu_info_table): Add tune_flags fields.
310 Remove end marker.
311 (override_options): Remove deprecation code. Use branch-likely
312 instructions for optimize_size or if the tuning flags do not
313 suggest otherwise. Tweak warning.
314 (mips_matching_cpu_name_p, mips_parse_cpu): Use ARRAY_SIZE.
315
316 2007-09-27 Matthias Klose <doko@ubuntu.com>
317
318 * config/i386/t-linux64 (MULTILIB_OSDIRNAMES): Use ../lib32 as the
319 multilib osdirname if it exists.
320 * config/rs6000/t-linux64 (MULTILIB_OSDIRNAMES): Likewise.
321
322 2007-09-27 Ian Lance Taylor <iant@google.com>
323
324 PR tree-optimization/33565
325 * tree-ssa-loop-ch.c (copy_loop_headers): Set TREE_NO_WARNING on
326 assignments of comparisons.
327 * tree-ssa-sccvn.c (simplify_binary_expression): Add stmt
328 parameter. Change caller. Defer overflow warnings around call to
329 fold_binary.
330 * fold-const.c (fold_undefer_overflow_warnings): Don't warn if
331 TREE_NO_WARNING is set on the statement.
332 * tree-ssa-forwprop.c
333 (tree_ssa_forward_propagate_single_use_vars): Don't test
334 TREE_NO_WARNING when calling fold_undefer_overflow_warnings.
335 * tree-cfg.c (fold_cond_expr_cond): Likewise.
336
337 2007-09-27 Joseph Myers <joseph@codesourcery.com>
338
339 * config/rs6000/rs6000.c (rs6000_legitimize_address): Do not
340 reduce offset by units of 0x10000 for SPE vector modes or modes
341 used with E500 double instructions.
342
343 2007-09-04 Paolo Bonzini <bonzini@gnu.org>
344
345 * simplify-rtx.c (comparison_result): New.
346 (simplify_const_relational_operation): Use it instead of the five
347 "equal|op[01]ltu?" variables; consequently remove redundant "else"s.
348 Improve bounds-checking optimizations; remove subsumed POPCOUNT
349 optimizations. Extract nonzero_address_p optimizations into a
350 separate "if" together with optimizations where op1 is const0_rtx.
351 Optimize comparing an IOR with zero. Simplify op0 RELOP op0 for
352 floating-point arguments too when appropriate. Hoist test for ABS
353 outside the final switch statement.
354 * cse.c (fold_rtx): Don't look for an IOR equivalent of
355 folded_arg0 if we found a constant equivalent. Remove
356 transformations done in simplify-rtx.c for "op0 RELOP op0".
357
358 2007-09-27 Jakub Jelinek <jakub@redhat.com>
359
360 * builtins.c (expand_builtin, expand_builtin_object_size,
361 expand_builtin_memory_chk, maybe_emit_chk_warning,
362 maybe_emit_sprintf_chk_warning): Use new %K format string specifier
363 for diagnostics.
364 * expr.c (expand_expr_real_1): Likewise.
365 * langhooks-def.h (struct diagnostic_info): Add forward decl.
366 (lhd_print_error_function): Add third argument.
367 * langhooks.h (struct diagnostic_info): Add forward decl.
368 (struct lang_hooks): Add third argument to print_error_function.
369 * diagnostic.h (diagnostic_info): Add abstract_origin field.
370 (diagnostic_last_function_changed, diagnostic_set_last_function): Add
371 second argument.
372 (diagnostic_report_current_function): Likewise.
373 * toplev.c (announce_function): Pass NULL as second argument to
374 diagnostic_set_last_function.
375 * diagnostic.c (diagnostic_report_current_function): Add second
376 argument, pass it as third argument to lang_hooks.print_error_function.
377 (default_diagnostic_starter): Pass DIAGNOSTIC as second argument
378 to diagnostic_report_current_function.
379 (diagnostic_report_diagnostic): Initialize diagnostic->abstract_origin
380 and message.abstract_origin.
381 (verbatim): Initialize abstract_origin.
382 * pretty-print.h (text_info): Add abstract_origin field.
383 * pretty-print.c (pp_base_format): Handle %K.
384 * langhooks.c (lhd_print_error_function): Add third argument. If
385 diagnostic->abstract_origin, print virtual backtrace.
386 * c-format.c (gcc_diag_char_table, gcc_tdiag_char_table,
387 gcc_cdiag_char_table, gcc_cxxdiag_char_table): Support %K.
388 (init_dynamic_diag_info): Likewise.
389
390 2007-09-26 David Daney <ddaney@avtrex.com>
391
392 PR target/33479
393 * config/mips/mips.md (sync_compare_and_swap<mode>, sync_old_add<mode>,
394 sync_new_add<mode>, sync_old_<optab><mode>, sync_new_<optab><mode>,
395 sync_old_nand<mode>, sync_new_nand<mode>,
396 sync_lock_test_and_set<mode>): Fix '&' constraint modifiers.
397 Update length attributes.
398 (sync_add<mode>, sync_sub<mode>, sync_old_sub<mode>,
399 sync_new_sub<mode>, sync_<optab><mode>, sync_nand<mode>): Update
400 length attributes.
401 * config/mips/mips.h (MIPS_COMPARE_AND_SWAP, MIPS_SYNC_OP,
402 MIPS_SYNC_OLD_OP, MIPS_SYNC_NEW_OP, MIPS_SYNC_NAND,
403 MIPS_SYNC_OLD_NAND, MIPS_SYNC_NEW_NAND, MIPS_SYNC_EXCHANGE): Add
404 post-loop sync.
405
406 2007-09-26 Richard Guenther <rguenther@suse.de>
407
408 PR tree-optimization/33563
409 * tree-ssa-dse.c (get_use_of_stmt_lhs): Rename to ...
410 (get_kill_of_stmt_lhs): ... this. Re-structure. Handle
411 aggregate stores.
412 (dse_optimize_stmt): Call get_kill_of_stmt_lhs instead of
413 get_use_of_stmt_lhs.
414
415 2007-09-26 Joseph Myers <joseph@codesourcery.com>
416
417 PR c/25309
418 * c-common.c (complete_array_type): Diagnose too-large arrays and
419 set type to error_mark_node.
420
421 2007-09-26 Richard Guenther <rguenther@suse.de>
422
423 PR tree-optimization/30375
424 PR tree-optimization/33560
425 * tree-ssa-dse.c (get_use_of_stmt_lhs): Give up on uses
426 with calls.
427
428 Revert
429 2006-05-22 Aldy Hernandez <aldyh@redhat.com>
430
431 * tree-ssa-dse.c (aggregate_vardecl_d): New.
432 (dse_global_data): Add aggregate_vardecl field.
433 (dse_possible_dead_store_p): New.
434 Add prev_defvar variable.
435 Allow immediate uses and previous immediate uses to differ
436 if they are setting different parts of the whole.
437 (get_aggregate_vardecl): New.
438 (dse_record_partial_aggregate_store): New.
439 (dse_whole_aggregate_clobbered_p): New.
440 (dse_partial_kill_p): New.
441 Call dse_maybe_record_aggregate_store().
442 When checking whether a STMT and its USE_STMT refer to the
443 same memory address, check also for partial kills that clobber
444 the whole.
445 Move some variable definitions to the block where they are used.
446 (aggregate_vardecl_hash): New.
447 (aggregate_vardecl_eq): New.
448 (aggregate_vardecl_free): New.
449 (aggregate_whole_store_p): New.
450 (tree_ssa_dse): Initialize and free aggregate_vardecl.
451 Mark which aggregate stores we care about.
452
453 2007-09-25 DJ Delorie <dj@redhat.com>
454
455 PR target/33551
456 * config/m32c/m32c.c (m32c_immd_dbl_mov): Use INTVAL instead of
457 XINT.
458
459 2007-09-25 Michael Meissner <michael.meissner@amd.com>
460
461 PR target/33524
462 * config/i386/i386.c (ix86_expand_sse5_unpack): Change to call
463 gen_sse5_pperm_sign_v4si_v2di and gen_sse5_pperm_zero_v4si_v2di
464 for vector int32 -> int64 conversions. Don't write beyond the end
465 of the allocated vector for int32 -> int64 conversions.
466
467 2007-09-25 Revital Eres <eres@il.ibm.com>
468
469 * config/rs6000/paired.h (paired_sel): New.
470 * config/rs6000/rs6000.c (bdesc_3arg): Add selv2sf4.
471 (rs6000_expand_ternop_builtin): Pass zero const_double operand
472 when expanding selv2sf.
473 * config/rs6000/rs6000.h (rs6000_builtins): Add
474 PAIRED_BUILTIN_SELV2SF4.
475
476 2007-09-25 Joseph Myers <joseph@codesourcery.com>
477
478 PR c/32295
479 * c-typeck.c (default_conversion): Call require_complete_type
480 before perform_integral_promotions.
481 (build_unary_op): Call require_complete_type except for ADDR_EXPR.
482 (build_c_cast): Call require_complete_type except for casts to
483 void types.
484 (convert_for_assignment): Call require_complete_type.
485
486 2007-09-25 Revital Eres <eres@il.ibm.com>
487
488 * config/spu/spu.md: Fix doloop pattern.
489
490 2007-09-25 Bernd Schmidt <bernd.schmidt@analog.com>
491
492 * config/bfin/bfin.c (expand_prologue_reg_save,
493 expand_epilogue_reg_restore): Code to save and restore I/M/B/L regs and
494 ASTAT moved here...
495 (expand_interrupt_handler_prologue, expand_interrupt_handler_epilogue):
496 ... from here. New argument ALL; callers changed.
497 (n_regs_saved_by_prologue): Count ASTAT for plain saveall functions.
498 (bfin_expand_prologue, bfin_expand_epilogue): Deal with functions that
499 have the "saveall" attribute.
500
501 2007-09-25 Hans-Peter Nilsson <hp@bitrange.com>
502
503 * config/mmix/mmix.h (FUNCTION_INCOMING_ARG_REGNO_P): Don't define
504 bogus target macro.
505 (INCOMING_REGNO, OUTGOING_REGNO): Define.
506 * config/mmix/mmix.c (mmix_opposite_regno): New function.
507 * config/mmix/mmix-protos.h (mmix_opposite_regno): Prototype.
508
509 * config/mmix/mmix.md ("*cmpcc_folded"): In condition, gate
510 with REG_P tests before REGNO access.
511
512 2007-09-24 DJ Delorie <dj@redhat.com>
513
514 PR target/31482
515 * config/m32c/cond.md (stzx_reversed_<mode>): Add an output
516 constraint.
517 (movqicc_<code>_<mode>): Likewise.
518 (movhicc_<code>_<mode>): Likewise.
519
520 2007-09-24 Rask Ingemann Lambertsen <rask@sygehus.dk>
521
522 PR target/33184
523 * config/m32c/m32c.c (m32c_eh_return_data_regno): Leave an address
524 register for reload.
525
526 2007-09-24 Danny Smith <dannysmith@user.sourceforge.net>
527
528 PR c++/14688
529 * config/i386/i386.c (ix86_comp_type_attributes): Check
530 METHOD_TYPE too.
531
532 2007-09-24 Roman Zippel <zippel@linux-m68k.org>
533
534 * config/m68k/m68k.h (ASM_OUTPUT_ALIGN_WITH_NOP): New, use
535 "move.l %a4,%a4" to produce nops.
536 * config/m68k/m68k.c (override_options): Reset align options,
537 if neccessary align macro isn't avaible.
538
539 2007-09-24 Roman Zippel <zippel@linux-m68k.org>
540
541 config/m68k/linux.h (PREFERRED_STACK_BOUNDARY): New.
542
543 2007-09-24 Roman Zippel <zippel@linux-m68k.org>
544
545 * config/m68k/m68k.c (strict_low_part_peephole_ok): Don't leave
546 the basic block.
547 * config/m68k/m68k.md (movsi_m68k): Allow certain constant when
548 reload is completed.
549 (peephole pattern): Convert most of them to RTL peephole pattern.
550
551 2007-09-24 Roman Zippel <zippel@linux-m68k.org>
552
553 * config/m68k/m68k.c (notice_update_cc): Recognize fp compare
554 (moved from fp compare patterns).
555 * config/m68k/m68k.md (cmp<mode>, cmp<mode>_68881, cmp<mode>_cf):
556 Cleanup predicates to relieve reload.
557 (conditional_trap): Reject conditional trap with fp condition.
558 * gcc/config/m68k/predicates.md (fp_src_operand): New, reject
559 certain constants early.
560
561 2007-09-24 Roman Zippel <zippel@linux-m68k.org>
562
563 * gcc/final.c (final_scan_insn): Remove accidentally duplicated code.
564
565 2007-09-24 Andrew Pinski <andrew_pinski@playstation.sony.com>
566
567 * config.gcc (powerpc*-*-*): --with-cpu=cell is a 64bit CPU.
568 Allow --with-tune=cell and --with-cpu=cell.
569
570 2007-09-24 David Edelsohn <edelsohn@gnu.org>
571
572 * config/rs6000/rs6000-protos.h (rs6000_emit_swrsqrtsf): Declare.
573 * config/rs6000/rs6000.opt (swdiv): Change option to ...
574 (recip): this.
575 * config/rs6000/rs6000.c (rs6000_builtin_reciprocal): New
576 function.
577 (TARGET_BUILTIN_RECIPROCAL): Use it.
578 (rs6000_builtin_expand): Expand recip, recipf, and rsqrtf.
579 (rs6000_init_builtins): Initialize recip, recipf, and rsqrtf.
580 (rs6000_emit_swrsqrtsf): New.
581 * config/rs6000/rs6000.h (rs6000_builtins): Add recip, recipf, and
582 rsqrtf.
583 * config/rs6000/rs6000.md (UNSPEC_RSQRT): Define.
584 (divsf3): Remove swdiv support.
585 (recipsf3): New.
586 (rsqrtsf2): New.
587 (rsqrt_internal1): New.
588 (divdf3): Remove swdiv support.
589 (reciptdf3): New.
590
591 2007-09-24 Jakub Jelinek <jakub@redhat.com>
592
593 PR c++/33506
594 * langhooks.h (struct lang_hooks_for_types): Add type_hash_eq
595 field.
596 * langhooks-def.h (LANG_HOOKS_TYPE_HASH_EQ): Define.
597 (LANG_HOOKS_FOR_TYPES_INITIALIZER): Add LANG_HOOKS_TYPE_HASH_EQ.
598 * tree.c (type_hash_eq): For FUNCTION_TYPE use
599 lang_hooks.type.type_hash_eq in addition to generic tests.
600
601 2007-09-24 Pranav Bhandarkar <pranav.bhandarkar@celunite.com>
602 Ramana Radhakrishnan <ramana@hercules.pun.celunite.com>
603
604 * tree-inline.h (eni_weights): Add field target_builtin_cost to
605 reflect the cost per call to a target specific builtin.
606 * tree-inline.c (estimate_num_insns_1): If it is a CALL_EXPR for a
607 call to a target specific builtin, then use target_builtin_call_cost.
608 (init_inline_once): Initialize target_builtin_call_cost field.
609
610 2007-09-24 Kai Tietz <kai.tietz@onevision.com>
611
612 PR middle-end/33472
613 * config/i386/i386.c (return_in_memory_ms_64): Handle return types for
614 complex types.
615
616 2007-09-23 H.J. Lu <hongjiu.lu@intel.com>
617
618 * configure.ac (ld_vers): Support GNU linker version xx.xx.*
619 * configure: Regenerated.
620
621 2007-09-23 Ollie Wild <aaw@google.com>
622
623 * fold-const.c (fold_binary): Fold BIT_AND_EXPR's with a pointer
624 operand.
625 (get_pointer_modulus_and_residue): New function.
626
627 2007-09-23 Richard Sandiford <rsandifo@nildram.co.uk>
628
629 * config/mips/mips.c (build_mips16_call_stub): On 64-bit targets,
630 combine an SC return value into a single register.
631
632 2007-09-23 Richard Sandiford <rsandifo@nildram.co.uk>
633
634 * opth-gen.awk (target_flags_explicit): Declare.
635 * toplev.h (target_flags_explicit): Delete declaration.
636 * toplev.c (target_flags): Likewise.
637 * config/mips/mips.h (mips_llsc_setting, mips_llsc): Delete.
638 (GENERATE_SYNC, GENERATE_LL_SC): Redefine using target_explicit_flags.
639 Never return true for TARGET_MIPS16.
640 * config/mips/mips.c (mips_llsc): Delete.
641 (mips_handle_option): Remove -mllsc handling.
642 (mips_strip_unspec_address): Tweak comment.
643 * config/mips/mips.opt (mllsc): Use a target mask.
644
645 2007-09-23 Richard Sandiford <rsandifo@nildram.co.uk>
646
647 * doc/tm.texi (POINTERS_EXTEND_UNSIGNED): Document extensions to
648 word_mode as well as Pmode.
649
650 2007-09-23 Richard Sandiford <rsandifo@nildram.co.uk>
651
652 * function.c (assign_parm_setup_block): Explicitly convert BLKmode
653 parameters from word_mode to the subword type if such a truncation
654 is not a no-op.
655
656 2007-09-23 Jakub Jelinek <jakub@redhat.com>
657
658 * configure.ac (MAKEINFO): Handle makeinfo version 4.10 and above.
659 * configure: Regenerated.
660
661 2007-09-23 Jan Hubicka <jh@suse.cz>
662
663 * params.def (INLINE_CALL_COST): Set to 12.
664 * invoke.texi (inline-call-cost): Update default value.
665
666 2007-09-23 Eric Botcazou <ebotcazou@adacore.com>
667
668 * config/alpha/alpha.md (movti): Use operand_subword for the split.
669
670 2007-09-23 Ayal Zaks <zaks@il.ibm.com>
671 Revital Eres <eres@il.ibm.com>
672
673 * modulo-sched.c (doloop_register_get): Rewrite the loop which
674 checks whether the count_reg is found outside the control part.
675
676 2007-09-23 Jakub Jelinek <jakub@redhat.com>
677
678 * expr.c (expand_expr_real_1) <case CALL_EXPR>: Use get_callee_fndecl
679 instead of checking CALL_EXPR_FN directly to test for builtins.
680 If error or warning attributes are present, print
681 error resp. warning.
682 * c-common.c (handle_error_attribute): New function.
683 (c_common_attribute_table): Add error and warning
684 attributes.
685 * doc/extend.texi: Document error and warning attributes.
686
687 * tree.h (block_nonartificial_location): New prototype.
688 * tree.c (block_nonartificial_location): New function.
689 * dwarf2out.c (gen_subprogram_die): Add DW_AT_artificial
690 if artificial attribute is present on abstract inline decl.
691 * c-common.c (handle_artificial_attribute): New function.
692 (c_common_attribute_table): Add artificial attribute.
693 * final.c (override_filename, override_linenum): New variables.
694 (final_scan_insn): For DBX_DEBUG or SDB_DEBUG, set override_filename
695 and override_linenum if inside of a block inlined from
696 __attribute__((__artificial__)) function.
697 (notice_source_line): Honor override_filename and override_linenum.
698 * doc/extend.texi: Document __attribute__((__artificial__)).
699 * config/i386/emmintrin.h: Add __artificial__ attribute to
700 all __always_inline__ functions.
701 * config/i386/mmintrin.h: Likewise.
702 * config/i386/tmmintrin.h: Likewise.
703 * config/i386/mm3dnow.h: Likewise.
704 * config/i386/pmmintrin.h: Likewise.
705 * config/i386/ammintrin.h: Likewise.
706 * config/i386/xmmintrin.h: Likewise.
707 * config/i386/smmintrin.h: Likewise.
708 * config/i386/bmmintrin.h: Likewise.
709 * config/i386/mmintrin-common.h: Likewise.
710
711 PR middle-end/28755
712 * expr.c (expand_constructor): New function.
713 (expand_expr_real_1) <case CONSTRUCTOR>: Call it.
714 (expand_expr_real_1) <case ARRAY_REF>: Call it if VALUE is
715 CONSTRUCTOR.
716
717 2007-09-23 Richard Sandiford <rsandifo@nildram.co.uk>
718
719 * config/mips/mips.c (dump_constants_1): Generalize to include
720 fractional and accumulator modes.
721
722 2007-09-23 Richard Sandiford <rsandifo@nildram.co.uk>
723
724 * config/mips/mips.h (ISA_HAS_DSP, ISA_HAS_DSPR2): New macros.
725 * config/mips/mips.c (mips_set_mips16_mode): Don't clear the DSP
726 flags for MIPS16.
727 (override_options): Check TARGET_HARD_FLOAT_ABI instead of
728 TARGET_HARD_FLOAT when testing whether -mpaired-single is
729 supported.
730 (mips_conditional_register_usage): Check ISA_HAS_DSP instead of
731 TARGET_DSP.
732 * config/mips/constraints.md (ka): Check ISA_HAS_DSPR2 instead of
733 TARGET_DSPR2.
734 * config/mips/mips.md (ANYF): Require TARGET_HARD_FLOAT for V2SF.
735 (mulv2sf3, movv2sf, movv2sf_hardfloat_64bit): Require
736 TARGET_HARD_FLOAT.
737 (<u>mulsidi3_32bit_internal, <u>msubsidi4, <u>maddsidi4): Check
738 ISA_HAS_DSPR2 instead of TARGET_HAS_DSPR2.
739 * config/mips/mips-dsp.md: Use ISA_HAS_DSP instead of TARGET_HAS_DSP
740 throughout.
741 * config/mips/mips-dspr2.md: Likewise ISA_HAS_DSPR2 and
742 TARGET_HAS_DSPR2.
743 * config/mips/mips-fixed.md: Use ISA_HAS_DSP and ISA_HAS_DSPR2
744 instead of TARGET_HAS_DSP and TARGET_HAS_DSPR2.
745 * config/mips/mips-ps-3d.md: Add TARGET_HARD_FLOAT to V2SF patterns.
746
747 2007-09-22 Jason Merrill <jason@redhat.com>
748
749 PR c++/19407
750 * attribs.c (lookup_attribute_spec): Split out...
751 (decl_attributes): From here.
752 * tree.h: Declare it.
753
754 2007-09-22 Richard Sandiford <rsandifo@nildram.co.uk>
755
756 * doc/sourcebuild.texi: Document dg-add-options mips16_attribute.
757
758 2007-09-22 Eric Botcazou <ebotcazou@adacore.com>
759
760 * tree-inline.c (remap_type_1): Correctly chain variants.
761
762 2007-09-22 Richard Guenther <rguenther@suse.de>
763
764 PR tree-optimization/33146
765 * fold-const.c (fold_binary): Use the original tree
766 for negating.
767 * tree.h (STRIP_SIGN_NOPS): Converting from or to pointer
768 also changes "sign".
769
770 2007-09-22 Eric Botcazou <ebotcazou@adacore.com>
771
772 PR target/32325
773 * except.c (finish_eh_generation): Call commit_edge_insertions if
774 there are insns queued on the entry edge.
775 * config/alpha/alpha.c (alpha_gp_save_rtx): Insert the insns on
776 the entry edge.
777
778 2007-09-22 Richard Sandiford <rsandifo@nildram.co.uk>
779
780 * doc/sourcebuild.texi (dg-add-c99-runtime-options): Document.
781
782 2007-09-19 Michael Meissner <michael.meissner@amd.com>
783
784 * gcc/config/i386/i386.c: Delete trailing whitespace.
785 * gcc/config/i386/i386.h: Ditto.
786 * gcc/config/i386/bmmintrin.h: Ditto.
787 * gcc/config/i386/sync.md: Ditto.
788 * gcc/config/i386/ppro.md: Ditto.
789 * gcc/config/i386/mmx.md: Ditto.
790 * gcc/config/i386/constraints.md: Ditto.
791 * gcc/config/i386/sse.md: Ditto.
792 * gcc/config/i386/athlon.md: Ditto.
793 * gcc/config/i386/i386.md: Ditto.
794
795 2007-09-21 Richard Guenther <rguenther@suse.de>
796
797 PR tree-optimization/33508
798 * tree-ssa-alias.c (mark_aliases_call_clobbered): Avoid
799 quadratic loop by keeping a bitmap of variables we have
800 to clobber all subvariables for.
801 (set_initial_properties): Likewise.
802
803 2007-09-21 Richard Sandiford <rsandifo@nildram.co.uk>
804
805 * config/mips/t-sde (TARGET_LIBGCC2_CFLAGS): Delete.
806
807 2007-09-20 Nigel Stephens <nigel@mips.com>
808 Chao-ying Fu <fu@mips.com>
809
810 * c-decl.c (finish_declspecs): When _Sat is used without
811 _Fract or _Accum, set the default type to cts_fract.
812 This avoids a warning of "type defaults to int".
813
814 2007-09-20 Joseph Myers <joseph@codesourcery.com>
815
816 * c-decl.c (check_bitfield_type_and_width): Don't allow _Bool
817 bit-fields wider than one bit.
818
819 2007-09-20 Jakub Jelinek <jakub@redhat.com>
820
821 PR debug/33316
822 * dwarf2out.c (modified_type_die): Handle TYPE_DECL with NULL
823 DECL_NAME.
824 * dbxout.c (dbxout_type): Likewise.
825
826 PR c/33238
827 PR c/27301
828 * gimplify.c (gimplify_vla_decl): New function.
829 (gimplify_decl_expr): Move VLA decl handling to gimplify_vla_decl.
830 Call it.
831 (gimplify_target_expr): Handle variable length TARGET_EXPRs.
832
833 2007-09-20 Richard Sandiford <rsandifo@nildram.co.uk>
834
835 * doc/invoke.texi (-minterlink-mips16): Document.
836 * config/mips/mips.opt (minterlink-mips16): New option.
837 * config/mips/mips.c (mips_function_ok_for_sibcall): Handle
838 -minterlink-mips16
839
840 2007-09-20 Joseph Myers <joseph@codesourcery.com>
841
842 * doc/extend.texi (Attribute Syntax): Remove old speculative
843 future direction.
844
845 2007-09-20 Mark Shinwell <shinwell@codesourcery.com>
846
847 * combine.c: Include cgraph.h.
848 (setup_incoming_promotions): Rework to allow more aggressive
849 elimination of sign extensions when all call sites of the
850 current function are known to lie within the current unit.
851
852 2007-09-20 Richard Sandiford <rsandifo@nildram.co.uk>
853
854 * dse.c (find_shift_sequence): No-op rework of control flow.
855
856 2007-09-19 Richard Sandiford <rsandifo@nildram.co.uk>
857
858 * config/mips/mips.c (build_mips16_call_stub): Tidy. Fix second
859 GPR for DCmode on 64-bit targets. Remove redundant fallback.
860
861 2007-09-19 Andrew Pinski <andrew_pinski@playstation.sony.com>
862
863 * cfgexpand.c (dump_stack_var_partition): Use the correct
864 index for the offset.
865
866 2007-09-19 Joseph Myers <joseph@codesourcery.com>
867
868 * config/mips/sde.h: Switch to GPLv3.
869
870 2007-09-19 Eric Botcazou <ebotcazou@adacore.com>
871
872 * tree-sra.c (decide_block_copy): Decide if there are groups.
873
874 2007-09-19 Roman Zippel <zippel@linux-m68k.org>
875
876 * config/m68k/m68k.c (output_move_himode): Remove jump table
877 recognition.
878 config/m68k/m68k.md (lea): Likewise.
879 * config/m68k/m68k.c (print_operand_address): Use simple pc
880 relative addressing.
881
882 2007-09-19 Bernd Schmidt <bernd.schmidt@analog.com>
883
884 * doc/tm.texi (IS_ASM_LOGICAL_LINE_SEPARATOR): Document new argument.
885 * final.c (IS_ASM_LOGICAL_LINE_SEPARATOR): Provide two-argument
886 default definition.
887 (asm_insn_count): Pass template as second argument to it.
888 * config/avr/avr.h (IS_ASM_LOGICAL_LINE_SEPARATOR): Likewise.
889 * config/pa/pa.h (IS_ASM_LOGICAL_LINE_SEPARATOR): Likewise.
890 * config/stormy16/stormy16.h (IS_ASM_LOGICAL_LINE_SEPARATOR): Likewise.
891 * config/cris/cris.h (IS_ASM_LOGICAL_LINE_SEPARATOR): Likewise.
892 * config/sh/sh.c (IS_ASM_LOGICAL_LINE_SEPARATOR): Likewise.
893 (sh_insn_length_adjustment): Pass template as second argument to it.
894 * config/bfin/bfin.h (IS_ASM_LOGICAL_LINE_SEPARATOR): New macro.
895
896 * config/bfin/bfin.md (define_asm_attributes): New.
897
898 2007-09-19 Jie Zhang <jie.zhang@analog.com>
899
900 * config.gcc (bfin*-linux-uclibc*): Add ./linux-sysroot-suffix.h
901 to tm_file.
902 * config/bfin/print-sysroot-suffix.sh: New.
903 * config/bfin/t-bfin-elf (EXTRA_PARTS): Remove.
904 (MULTILIB_OPTIONS, MULTILIB_DIRNAMES, MULTILIB_MATCHES,
905 MULTILIB_EXCEPTIONS): Redefine with new multilibs.
906 * config/bfin/t-bfin-uclinux (EXTRA_PARTS): Remove.
907 (MULTILIB_OPTIONS, MULTILIB_DIRNAMES, MULTILIB_MATCHES,
908 MULTILIB_EXCEPTIONS): Redefine with new multilibs.
909 * config/bfin/t-bfin-linux (EXTRA_PARTS): Remove.
910 (MULTILIB_OPTIONS, MULTILIB_DIRNAMES, MULTILIB_MATCHES,
911 MULTILIB_EXCEPTIONS): Redefine with new multilibs.
912 (linux-sysroot-suffix.h): New target.
913 * config/bfin/bfin.opt (mcsync-anomaly): Use Var instead of Mask.
914 (mspecld-anomaly): Likewise.
915 * config/bfin/bfin-protos.h (enum bfin_cpu_type): Renamed from
916 (enum bfin_cpu): ... this. Add BFIN_CPU_BF522, BFIN_CPU_BF525,
917 BFIN_CPU_BF527, BFIN_CPU_BF538, BFIN_CPU_BF539, BFIN_CPU_BF542,
918 BFIN_CPU_BF544, BFIN_CPU_BF548, and BFIN_CPU_BF549.
919 (bfin_si_revision): Declare.
920 (bfin_workarounds): Declare.
921 (WA_SPECULATIVE_LOADS): Define.
922 (ENABLE_WA_SPECULATIVE_LOADS): Define.
923 (WA_SPECULATIVE_SYNCS): Define.
924 (ENABLE_WA_SPECULATIVE_SYNCS): Define.
925 * config/bfin/elf.h (STARTFILE_SPEC): Rename crt532.o to basiccrt.o.
926 (LIB_SPEC): Add %s to the linker scripts.
927 Use proper linker script for bf522, bf525, bf527,
928 bf538, bf539, bf542, bf544, bf548, and bf549.
929 * config/bfin/bfin.c (bfin_si_revision): Define.
930 (bfin_workarounds): Define.
931 (struct bfin_cpu): New.
932 (bfin_cpus): New.
933 (bfin_handle_option): Handle silicon revision part of -mcpu option.
934 (override_options): Set bfin_workarounds.
935 (length_for_loop): Replace TARGET_CSYNC_ANOMALY with
936 ENABLE_WA_SPECULATIVE_SYNCS, TARGET_SPECLD_ANOMALY with
937 ENABLE_WA_SPECULATIVE_LOADS.
938 (bfin_reorg): Likewise.
939 * config/bfin/bfin.h (TARGET_CPU_CPP_BUILTINS): Define
940 macros for bf522, bf525, bf527, bf538, bf539,
941 bf542, bf544, bf548, and bf549.
942 Define __SILICON_REVISION__ and __WORKAROUND_* macros if needed.
943 Don't define __ID_SHARED_LIB__ when -msep-data.
944 (TARGET_DEFAULT): Define as 0.
945 (DRIVER_SELF_SPECS): Add -mcpu=bf532 if no -mcpu option.
946 * doc/invoke.texi (Blackfin Options): Document silicon
947 revision part of -mcpu option and it now accepts bf522, bf525,
948 bf527, bf538, bf539, bf542, bf544, bf548, and bf549.
949
950 2007-09-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
951
952 * alias.c (memory_modified_1): Deconstify.
953 (memory_modified_in_insn_p): Don't use const_note_stores.
954 * rtl.h (const_note_stores): Delete.
955 * rtlanal.c (const_note_stores): Likewise.
956
957 2007-09-18 Richard Sandiford <rsandifo@nildram.co.uk>
958
959 * dse.c (find_shift_sequence): Temporarily revert to forbidding
960 word shifts.
961
962 2007-09-18 Rask Ingemann Lambertsen <rask@sygehus.dk>
963
964 PR target/33388
965 PR target/33397
966 * config/fr30/fr30.md (addsi3): Check REG_P() before calling REGNO().
967 (addsi_small_int): Likewise.
968 (addsi_big_int): Use rtx_equal_p() instead of REGNO() comparison.
969 (one_cmplsi2): Likewise.
970 (negsi2): Delete.
971 (enter_func): Expand insn using hard_frame_pointer_rtx and
972 stack_pointer_rtx.
973 (*enter_func): New.
974 * config/fr30/fr30.c (fr30_expand_prologue): Check for
975 hard_frame_pointer_rtx instead of using REGNO() check.
976 Properly sign extend GEN_INT() argument.
977
978 2007-09-18 Roman Zippel <zippel@linux-m68k.org>
979
980 * config/m68k/m68k.c (override_options): Remove USE_GAS,
981 use %. syntax.
982 (output_dbcc_and_branch, output_scc_di): Replace all jbcc
983 alternatives with just jcc.
984 * config/m68k/m68k.md (addsi_lshrsi_31, beq0_di, bne0_di,
985 bge0_di, blt0_di, bgtu, bltu, bgeu, bleu, bgtu_rev,
986 bltu_rev, bgeu_rev, bleu_rev, jump, dbne_hi, dbne_si,
987 dbge_hi, dbge_si): Likewise.
988
989 2007-09-18 Roman Zippel <zippel@linux-m68k.org>
990
991 * config/m68k/m68k.md (beq, bne, bgt, blt, bge, ble, bordered,
992 bunordered, buneq, bunge, bungt, bunle, bunlt, bltgt, beq_rev,
993 bne_rev, bgt_rev, blt_rev, bge_rev, ble_rev, bordered_rev,
994 bunordered_rev, buneq_rev, bunge_rev, bungt_rev, bunle_rev,
995 bunlt_rev, bltgt_rev): Replace all fbcc with fjcc.
996
997 2007-09-18 Maxim Kuvyrkov <maxim@codesourcery.com>
998
999 * config/m68k/m68k-devices.def (51qe): New device.
1000 * config/m68k/m68k.c (FL_FOR_isa_c): Remove division unit. Add it
1001 to all uses of FL_FOR_isa_c for compatibility.
1002 (all_microarchs): Add cfv1 microarchitecture.
1003 (m68k_handle_option): Handle m51qe option.
1004 * config/m68k/m68k.h (TARGET_CPU_CPP_BUILTINS): Handle 51QE.
1005 (TUNE_CFV1): New macro.
1006 (enum uarch_type): Add ucfv1.
1007 * doc/invoke.texi: Document 51qe device and cfv1 microarchitecture.
1008
1009 2007-09-18 Richard Guenther <rguenther@suse.de>
1010
1011 PR tree-optimization/31863
1012 * tree-ssa-structalias.c (create_variable_info_for): Always
1013 free the fieldstack.
1014
1015 2007-09-18 Dorit Nuzman <dorit@il.ibm.com>
1016
1017 * opts.c (decode_options): Enable vectorization under -O3.
1018
1019 2007-09-18 Richard Guenther <rguenther@suse.de>
1020
1021 PR tree-optimization/33340
1022 * tree-ssa-sccvn.c (set_ssa_val_to): Do not set values to
1023 SSA_NAMEs that occur in abnormal PHI nodes.
1024
1025 2007-09-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1026
1027 * tree-cfg.c (is_ctrl_altering_stmt, tree_block_ends_with_call_p):
1028 Don't use const_get_call_expr_in.
1029 * tree-gimple.c (const_get_call_expr_in): Delete.
1030 * tree-gimple.h (const_get_call_expr_in): Likewise.
1031
1032 2007-09-18 Richard Sandiford <rsandifo@nildram.co.uk>
1033
1034 * df-scan.c (df_notes_rescan): Do nothing if the instruction does
1035 not yet have a basic block.
1036 * dse.c (find_shift_sequence): Don't set DF_NO_INSN_RESCAN.
1037
1038 2007-09-18 Richard Sandiford <rsandifo@nildram.co.uk>
1039
1040 * config/mips/mips.c (mips_file_start): Add ".previous" directives
1041 to both ".section"s.
1042
1043 2007-09-17 Richard Sandiford <rsandifo@nildram.co.uk>
1044
1045 * config/mips/mips.c (mips_output_mi_thunk): Use
1046 mips_function_ok_for_sibcall and const_call_insn_operand
1047 to determine if a direct sibcall is allowed. Use
1048 mips_classify_symbol to determine a global pointer is needed.
1049
1050 2007-09-17 Richard Sandiford <rsandifo@nildram.co.uk>
1051
1052 * config/mips/mips.md (*clear_upper32): Use "W" as the memory operand.
1053
1054 2007-09-17 Chao-ying Fu <fu@mips.com>
1055 Nigel Stephens <nigel@mips.com>
1056
1057 * config/fixed-bit.h: New file.
1058 * config/fixed-bit.c: New file.
1059 * doc/libgcc.texi (Fixed-point fractional library routines): New node.
1060
1061 2007-09-18 Jakub Jelinek <jakub@redhat.com>
1062
1063 * c-format.h (format_kind_info): Add alloc_char field.
1064 * c-format.c (scanf_flag_specs): Add 'm'.
1065 (scanf_flag_pairs): Add 'a', 'm' pair.
1066 (scan_char_table): Allow 'm' modifier for c, s, [, C and S.
1067 (format_types_orig): Add alloc_char fields.
1068 (check_format_info_main): Rename aflag to alloc_flag.
1069 Handle fki->alloc_char. modifier after width and before length
1070 modifiers. Move FMT_FLAG_SCANF_A_KLUDGE handling before
1071 length modifiers as well.
1072 * config/sol2-c.c (solaris_format_types): Add alloc_char field.
1073
1074 PR middle-end/33423
1075 * builtins.c (expand_builtin_memory_chk): Handle COMPOUND_EXPRs
1076 returned by build_call_expr.
1077
1078 2007-09-17 Eric Botcazou <ebotcazou@adacore.com>
1079
1080 * tree-sra.c (maybe_lookup_element_for_expr) <COMPONENT_REF>: Return
1081 NULL for variable-sized records too.
1082 (sra_walk_expr) <COMPONENT_REF>: Stop at variable-sized records too.
1083
1084 2007-09-17 Tom Tromey <tromey@redhat.com>
1085
1086 * c-decl.c (pushdecl): Don't set DECL_LANG_SPECIFIC.
1087 (c_builtin_function): Likewise.
1088 (grokdeclarator): Likewise.
1089
1090 2007-09-17 Zdenek Dvorak <ook@ucw.cz>
1091
1092 PR rtl-optimization/26449
1093 * loop-invariant.c (move_invariant_reg): Do not use force_operand.
1094 (seq_insns_valid_p): Removed.
1095
1096 2007-09-17 Eric Botcazou <ebotcazou@adacore.com>
1097
1098 * tree-nomudflap.c (gate_mudflap): New static function.
1099 (pass_mudflap_1): Use it as gate function.
1100 (pass_mudflap_2): Likewise.
1101
1102 2007-09-17 Jan Hubicka <jh@suse.cz>
1103
1104 PR middle-end/33348
1105 PR target/33406
1106 * loop-invariant.c (move_invariant_reg): Unshare sequence.
1107
1108 2007-09-17 Victor Kaplansky <victork@il.ibm.com>
1109
1110 PR tree-optimization/33319
1111 * tree-vect-analyze.c (vect_same_range_drs): New.
1112 (vect_vfa_range_equal): New.
1113 (vect_is_duplicate_ddr): Removed.
1114 (vect_mark_for_runtime_alias_test): Do not perform marking when
1115 optimizing for size or max_param for alias checking is zero.
1116 Move the function before vect_analyze_data_ref_dependence.
1117 (vect_analyze_data_ref_dependence): Add call to
1118 vect_mark_for_runtime_alias_test in two cases when dependence
1119 is not clear.
1120 (vect_analyze_data_ref_dependences): Do not call to
1121 vect_mark_for_runtime_alias_test.
1122 (vect_prune_runtime_alias_test_list): New.
1123 (vect_analyze_loop): Add call to vect_prune_runtime_alias_test_list.
1124 * tree-vect-transform.c (vect_estimate_min_profitable_iters):
1125 Update vec_outside_cost.
1126 (vect_vfa_segment_size): More compact code, use TYPE_SIZE_UNIT.
1127 (vect_create_cond_for_alias_checks): Build the base address of data
1128 reference from DR_GROUP_FIRST_DR.
1129 (vect_loop_versioning): New.
1130 (vect_transform_loop): Add a call to vect_loop_versioning.
1131 Remove factored out code.
1132
1133 2007-09-16 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
1134
1135 PR middle-end/33273
1136 * expr.c (store_expr): Call adjust_address to change mode of dest_mem
1137 to BLKmode.
1138
1139 2007-09-16 Richard Sandiford <rsandifo@nildram.co.uk>
1140
1141 * dse.c (find_shift_sequence): Allow word as well as subword shifts.
1142 Do the tentative shift expansion with the DF_NO_INSN_RESCAN flag set.
1143 Fix the call to insn_rtx_cost. Skip access sizes that require a
1144 real truncation of the store register. Use convert_move instead
1145 of gen_lowpart when narrowing the result.
1146 (replace_read): Use convert_move instead of gen_lowpart when
1147 narrowing the store rhs.
1148
1149 2007-09-16 Richard Sandiford <rsandifo@nildram.co.uk>
1150
1151 * config/mips/mips.md (SHORT): Fix long line.
1152 (SUBDI): New mode iterator. Extend the shift-and-truncate insns
1153 to QImode and HImode.
1154
1155 2007-09-16 Richard Sandiford <rsandifo@nildram.co.uk>
1156
1157 * config/mips/mips.h (POINTERS_EXTEND_UNSIGNED): Define.
1158
1159 2007-09-15 Zdenek Dvorak <ook@ucw.cz>
1160
1161 * tree-parloops.c: New file.
1162 * tree-ssa-operands.h (free_stmt_operands): Declare.
1163 * tree-ssa-loop-manip.c (split_loop_exit_edge): Return the new basic
1164 block.
1165 * tree-pass.h (pass_parallelize_loops): Declare.
1166 * omp-low.c (expand_omp_parallel, expand_omp_for): Update SSA form for
1167 virtual operands.
1168 (build_omp_regions_1): Allow analysing just a single OMP region and
1169 its subregions.
1170 ( build_omp_regions_root, omp_expand_local): New functions.
1171 (build_omp_regions): Add argument to build_omp_regions_1 call.
1172 * builtins.def (DEF_GOMP_BUILTIN): Initialize OMP builtins when
1173 autoparallelization is run.
1174 * timevar.def (TV_TREE_PARALLELIZE_LOOPS): New.
1175 * tree-ssa-loop.c (gate_tree_parallelize_loops, tree_parallelize_loops,
1176 pass_parallelize_loops): New.
1177 * common.opt (ftree-parallelize-loops): New.
1178 * tree-flow.h (omp_expand_local, tree_duplicate_sese_tail,
1179 parallelize_loops): Declare.
1180 (add_phi_args_after_copy, split_loop_exit_edge): Declaration changed.
1181 * Makefile.in (tree-parloops.o): Added.
1182 * tree-cfg.c (add_phi_args_after_copy_edge, tree_duplicate_sese_tail):
1183 New functions.
1184 (add_phi_args_after_copy_bb): Use add_phi_args_after_copy_edge.
1185 (add_phi_args_after_copy): Call add_phi_args_after_copy_edge for
1186 one extra edge as well.
1187 (tree_duplicate_sese_region): Add argument to add_phi_args_after_copy.
1188 Use VEC_free to free doms vector.
1189 (move_block_to_fn): Update loop info. Remove phi nodes for virtual
1190 operands. Recompute operand caches in the new function.
1191 (move_sese_region_to_fn): Update loop info.
1192 * passes.c (init_optimization_passes): Add pass_parallelize_loops.
1193 * tree-ssa-operands.c (free_stmt_operands): New function.
1194
1195 * doc/passes.texi: Document autoparallelization.
1196 * doc/invoke.texi (-ftree-parallelize-loops): New option.
1197
1198 2007-09-15 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
1199
1200 PR target/33062
1201 * pa.c (function_value): Use GET_MODE_BITSIZE instead of
1202 TYPE_PRECISION.
1203
1204 2007-09-15 Dorit Nuzman <dorit@il.ibm.com>
1205
1206 * tree-vect-transform.c (vect_get_vec_defs_for_stmt_copy): check if
1207 the VEC is not NULL.
1208 (vectorizable_type_demotion, vectorizable_type_promotion): Check that
1209 get_vectype_for_scalar_type succeeded.
1210 (vectorizable_conversion): Likewise.
1211
1212 2007-09-14 Jan Hubicka <jh@suse.cz>
1213
1214 * config/i386/i386.md (*floatdi<mode>2_i387): Guard against
1215 TARGET_64BIT.
1216
1217 2007-09-14 Uros Bizjak <ubizjak@gmail.com>
1218
1219 PR target/33438
1220 * config/i386/i386.md (fmodxf3): Copy operands[2] to temporary
1221 register when operands[2] equals operands[1].
1222 (remainderxf3): Ditto.
1223
1224 2007-09-14 Sandra Loosemore <sandra@codesourcery.com>
1225 Nigel Stephens <nigel@mips.com>
1226
1227 * doc/tm.texi (LIBGCC2_UNWIND_ATTRIBUTE): Document.
1228 * unwind-generic.h (LIBGCC2_UNWIND_ATTRIBUTE): Define.
1229 (_Unwind_RaiseException): Add LIBGCC2_UNWIND_ATTRIBUTE to
1230 declaration.
1231 (_Unwind_ForcedUnwind): Likewise.
1232 (_Unwind_Resume): Likewise.
1233 (_Unwind_Resume_or_Rethrow): Likewise.
1234 (_Unwind_Backtrace): Likewise.
1235 (_Unwind_SjLj_RaiseException): Likewise.
1236 (_Unwind_SjLj_ForcedUnwind): Likewise.
1237 (_Unwind_SjLj_Resume): Likewise.
1238 (_Unwind_SjLj_Resume_or_Rethrow): Likewise.
1239 * unwind.inc (_Unwind_RaiseException): Add LIBGCC2_UNWIND_ATTRIBUTE
1240 to definition.
1241 (_Unwind_ForcedUnwind): Likewise.
1242 (_Unwind_Resume): Likewise.
1243 (_Unwind_Resume_or_Rethrow): Likewise.
1244 (_Unwind_Backtrace): Likewise.
1245 * unwind-compat.c (_Unwind_Backtrace): Likewise.
1246 (_Unwind_ForcedUnwind): Likewise.
1247 (_Unwind_RaiseException): Likewise.
1248 (_Unwind_Resume): Likewise.
1249 (_Unwind_Resume_or_Rethrow): Likewise.
1250
1251 * config/mips/mips.h (LIBGCC2_UNWIND_ATTRIBUTE): Define to force
1252 nomips16 mode when IN_LIBGCC2 with hard float.
1253
1254 2007-09-14 Richard Sandiford <rsandifo@nildram.co.uk>
1255
1256 * config/mips/sdemtk.opt: Update to GPLv3.
1257 * config/mips/sdemtk.h: Likewise.
1258
1259 2007-09-14 Nigel Stephens <nigel@mips.com>
1260
1261 * config.gcc (mips*-*-linux*): Recognise mipsisa32r2 and set
1262 MIPS_ISA_DEFAULT appropriately. Don't make soft-float the default
1263 for mipsisa32-*-linux*.
1264
1265 2007-09-14 Nigel Stephens <nigel@mips.com>
1266 David Ung <davidu@mips.com>
1267 Thiemo Seufer <ths@mips.com>
1268 Richard Sandiford <richard@codesourcery.com>
1269
1270 * config.gcc (mips*-sde-elf*): Add support for the SDE C libraries.
1271 * configure.ac: Add a mipssde threading type.
1272 * configure: Regenerate.
1273 * config/mips/sdemtk.h: New file.
1274 * config/mips/t-sdemtk: Likewise.
1275 * config/mips/sdemtk.opt: Likewise.
1276 * gthr-mipssde.h: Likewise.
1277 * config/mips/sde.h (FUNCTION_PROFILER): Move to config/mips/sdemtk.h.
1278 * config/mips/mips.h (MIPS_SAVE_REG_FOR_PROFILING_P): New macro.
1279 (MIPS_ICACHE_SYNC): New macro, split from ...
1280 * config/mips/mips.md (clear_cache): ...here.
1281 * config/mips/mips.c (mips_save_reg_p): Check
1282 MIPS_SAVE_REG_FOR_PROFILING_P on profiled functions.
1283 (build_mips16_function_stub): Use targetm.strip_name_encoding.
1284 (build_mips16_call_stub): Likewise.
1285
1286 2007-09-14 Richard Sandiford <richard@codesourcery.com>
1287
1288 * Makefile.in (stmp-int-hdrs): Depend on fixinc_list.
1289
1290 2007-09-14 Jakub Jelinek <jakub@redhat.com>
1291
1292 PR target/32337
1293 * config/ia64/ia64.c (find_gr_spill): Don't decrement
1294 current_frame_info.n_local_regs. Don't return emitted local
1295 regs.
1296 (ia64_compute_frame_size): Improve unwind hack to put
1297 RP, PFS, FP in that order by allowing some of the registers
1298 been already emitted, as long as they are emitted to the
1299 desired register.
1300
1301 2007-09-14 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
1302
1303 * config/spu/vmx2spu.h (vec_extract, vec_insert, vec_lvlx,
1304 vec_lvlxl, vec_lvrx, vec_lvrxl, vec_promote, vec_splats,
1305 vec_stvlx, vec_stvlxl, vec_stvrx, vec_stvrxl): New intrinsics.
1306
1307 2007-09-13 Eric Christopher <echristo@apple.com>
1308 Kenneth Zadeck <zadeck@naturalbridge.com>
1309
1310 * dse.c (find_shift_sequence): New function.
1311 (replace_read): Add case to remove read if it requires shift.
1312 * config/i386/i386.c (ix86_expand_prologue): Fixed typo in comment.
1313
1314 2007-09-13 Tom Tromey <tromey@redhat.com>
1315
1316 * c-common.c (fname_as_string): Update.
1317 * c-parser.c (c_parser) <lex_untranslated_string>: New field.
1318 (c_lex_one_token): Update. Add 'parser' argument.
1319 (c_parser_simple_asm_expr): Update.
1320 (c_parser_attributes): Update.
1321 (c_parser_asm_statement): Update.
1322 (c_parser_asm_operands): Update.
1323 (c_parser_peek_token): Update.
1324 (c_parser_peek_2nd_token): Update.
1325 * c-lex.c (c_lex_string_translate): Remove.
1326 (c_lex_return_raw_strings): Likewise.
1327 (c_lex_with_flags): Added 'lex_flags' argument.
1328 (lex_string): Added 'translate' argument.
1329 * c-pragma.h (c_lex_with_flags): Update.
1330 (c_lex_string_translate, c_lex_return_raw_strings): Remove.
1331 (C_LEX_STRING_NO_TRANSLATE): New define.
1332 (C_LEX_RAW_STRINGS): Likewise.
1333
1334 2007-09-13 Bernd Schmidt <bernd.schmidt@analog.com>
1335
1336 From Jie Zhang:
1337 * config/bfin/bfin.c (enum bfin_builtins): Add BFIN_BUILTIN_ONES,
1338 BFIN_BUILTIN_CPLX_MUL_16_S40, BFIN_BUILTIN_CPLX_MAC_16_S40,
1339 BFIN_BUILTIN_CPLX_MSU_16_S40, and BFIN_BUILTIN_CPLX_SQU.
1340 (bfin_init_builtins): Initialize __builtin_bfin_ones,
1341 __builtin_bfin_min_fr1x16, __builtin_bfin_max_fr1x16,
1342 __builtin_bfin_min_fr1x32, __builtin_bfin_max_fr1x32,
1343 __builtin_bfin_cmplx_add, __builtin_bfin_cmplx_sub,
1344 __builtin_bfin_cmplx_mul_s40, __builtin_bfin_cmplx_mac_s40,
1345 __builtin_bfin_cmplx_msu_s40 and __builtin_bfin_csqu_fr16.
1346 (bdesc_1arg): Add __builtin_bfin_ones.
1347 (bfin_expand_builtin): Expand __builtin_bfin_cmplx_mul_s40,
1348 __builtin_bfin_cmplx_mac_s40, __builtin_bfin_cmplx_msu_s40,
1349 and __builtin_bfin_csqu_fr16.
1350 * config/bfin/bfin.md (UNSPEC_ONES): New constant.
1351 (ones): New define_insn.
1352 (ssaddhi3_parts): New define_insn.
1353 (sssubhi3_parts): New define_insn.
1354 (flag_mulhi_parts): New define_insn.
1355
1356 2007-09-13 Seongbae Park <seongbae.park@gmail.com>
1357
1358 * common.opt (femit-class-debug-always): Turn off by default.
1359
1360 2007-09-13 Bernd Schmidt <bernd.schmidt@analog.com>
1361
1362 * config/bfin/bfin.md (reload_outpdi, reload_inpdi): New patterns.
1363 * config/bfin/bfin.c (bfin_secondary_reload): Make sure we use them.
1364
1365 2007-09-13 James E. Wilson <wilson@specifix.com>
1366
1367 PR tree-optimization/33389
1368 * tree-ssa-operands.c (append_vuse): If ann->in_vdef_list true,
1369 then set build_loads before returning.
1370
1371 2007-09-13 Sandra Loosemore <sandra@codesourcery.com>
1372 David Ung <davidu@mips.com>
1373
1374 * config/mips/mips.h (ASM_OUTPUT_REG_PUSH): Replace {d}subu with
1375 {d}addiu and a negative immediate such that it works with MIPS16
1376 instructions.
1377
1378 2007-09-13 H.J. Lu <hongjiu.lu@intel.com>
1379
1380 PR bootstrap/33418
1381 * configure.ac (ld_vers): Support Linux linker.
1382 * configure: Regenerated.
1383
1384 2007-09-13 Richard Sandiford <richard@codesourcery.com>
1385 Sandra Loosemore <sandra@codesourcery.com>
1386
1387 * config/mips/mips.h (SYMBOL_FLAG_MIPS16_FUNC): Delete.
1388 (SYMBOL_REF_MIPS16_FUNC_P): Delete.
1389 * config/mips/mips.c (mips_attribute_table): Turn mips16 and
1390 nomips16 into decl attributes.
1391 (TARGET_INSERT_ATTRIBUTES): Override.
1392 (TARGET_MERGE_DECL_ATTRIBUTES): Likewise.
1393 (TARGET_FUNCTION_ATTRIBUTE_INLINABLE_P): Always return true.
1394 (mips_mips16_type_p, mips_nomips16_type_p): Delete in favor of...
1395 (mips_mips16_decl_p, mips_nomips16_decl_p): ...these new functions.
1396 (mips_comp_type_attributes): Remove mips16 and nomips16 handling.
1397 (mips_use_mips16_mode_p): Reimplement as a function that takes
1398 a decl and considers only decl attributes. If the decl is nested
1399 function, use its parent attributes.
1400 (mips_function_ok_for_sibcall): Use mips_use_mips16_mode_p
1401 instead of SYMBOL_REF_MIPS16_FUNC_P.
1402 (mips_set_mips16_mode): Move call to sorry here from old
1403 mips_use_mips16_mode_p.
1404 (mflip_mips16_entry): New structure.
1405 (mflip_mips16_htab): New variable.
1406 (mflip_mips16_htab_hash, mflip_mips16_htab_eq): New functions.
1407 (mflip_mips16_use_mips16_p, mips_insert_attributes): Likewise.
1408 (mips_merge_decl_attributes): New function.
1409 (mips_set_current_function): Reinstate call to mips_set_mips16_mode.
1410 Use mips_use_mips16_mode_p.
1411 (mips_output_mi_thunk): Use mips_use_mips16_mode_p instead of
1412 SYMBOL_REF_MIPS16_FUNC_P.
1413 (mips_encode_section_info): Don't set SYMBOL_FLAG_MIPS16_FUNC.
1414
1415 2007-09-13 Richard Sandiford <richard@codesourcery.com>
1416
1417 * c-parser.c (c_parser_struct_declaration): Check for a null return.
1418
1419 2007-09-13 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
1420
1421 PR driver/33309
1422 * gcc.c (xputenv): Make argument const, and use CONST_CAST.
1423
1424 2007-09-12 Michael Meissner <michael.meissner@amd.com>
1425 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
1426 Tony Linthicum <tony.linthicum@amd.com>
1427
1428 * tree.h (function_args_iterator): New type to iterate over
1429 function arguments.
1430 (FOREACH_FUNCTION_ARGS_PTR): Iterator macros for iterating over
1431 function arguments providing a pointer to the argument.
1432 (FOREACH_FUNCTION_ARGS): Iterator macros for iterating over
1433 function arguments providing the argument.
1434 (function_args_iter_init): Inline function to initialize
1435 function_args_iterator.
1436 (function_args_iter_cond_ptr): Inline function to return the next
1437 pointer to hold the argument.
1438 (function_args_iter_cond): Inline function to return the next
1439 argument.
1440 (function_args_iter_cond_next): Advance the function args
1441 iterator.
1442 (stdarg_p): New function, return true if variable argument
1443 function.
1444 (prototype_p): New function, return true if function is
1445 prototyped.
1446 (function_args_count): New function, count the number of arguments
1447 of a function.
1448
1449 * tree.c (stdarg_p): New function, return true if variable
1450 argument function.
1451 (prototype_p): New function, return true if function is
1452 prototyped.
1453
1454 * config/i386/i386.h (TARGET_SSE5): New macro for SSE5.
1455 (TARGET_ROUND): New macro for the round/ptest instructions which
1456 are shared between SSE4.1 and SSE5.
1457 (OPTION_MASK_ISA_ROUND): Ditto.
1458 (OPTION_ISA_ROUND): Ditto.
1459 (TARGET_FUSED_MADD): New macro for -mfused-madd swtich.
1460 (TARGET_CPU_CPP_BUILTINS): Add SSE5 support.
1461
1462 * config/i386/i386.opt (-msse5): New switch for SSE5 support.
1463 (-mfused-madd): New switch to give users control over whether the
1464 compiler optimizes to use the multiply/add SSE5 instructions.
1465
1466 * config/i386/i386.c (m_AMD_MULTIPLE): Rename from
1467 m_ATHLON_K8_AMDFAM10, and change all uses.
1468 (enum pta_flags): Add PTA_SSE5.
1469 (ix86_handle_option): Turn off 3dnow if -msse5.
1470 (override_options): Add SSE5 support.
1471 (print_operand): %Y prints comparison codes for SSE5 com/pcom
1472 instructions.
1473 (ix86_expand_sse_movcc): Add SSE5 support.
1474 (ix86_expand_sse5_unpack): New function to use pperm to unpack a
1475 vector type to the next largest size.
1476 (ix86_expand_sse5_pack): New function to use pperm to pack a
1477 vector type to the next smallest size.
1478 (IX86_BUILTIN_FMADDSS): New for SSE5 intrinsic.
1479 (IX86_BUILTIN_FMADDSD): Ditto.
1480 (IX86_BUILTIN_FMADDPS): Ditto.
1481 (IX86_BUILTIN_FMADDPD): Ditto.
1482 (IX86_BUILTIN_FMSUBSS): Ditto.
1483 (IX86_BUILTIN_FMSUBSD): Ditto.
1484 (IX86_BUILTIN_FMSUBPS): Ditto.
1485 (IX86_BUILTIN_FMSUBPD): Ditto.
1486 (IX86_BUILTIN_FNMADDSS): Ditto.
1487 (IX86_BUILTIN_FNMADDSD): Ditto.
1488 (IX86_BUILTIN_FNMADDPS): Ditto.
1489 (IX86_BUILTIN_FNMADDPD): Ditto.
1490 (IX86_BUILTIN_FNMSUBSS): Ditto.
1491 (IX86_BUILTIN_FNMSUBSD): Ditto.
1492 (IX86_BUILTIN_FNMSUBPS): Ditto.
1493 (IX86_BUILTIN_FNMSUBPD): Ditto.
1494 (IX86_BUILTIN_PCMOV_V2DI): Ditto.
1495 (IX86_BUILTIN_PCMOV_V4SI): Ditto.
1496 (IX86_BUILTIN_PCMOV_V8HI): Ditto.
1497 (IX86_BUILTIN_PCMOV_V16QI): Ditto.
1498 (IX86_BUILTIN_PCMOV_V4SF): Ditto.
1499 (IX86_BUILTIN_PCMOV_V2DF): Ditto.
1500 (IX86_BUILTIN_PPERM): Ditto.
1501 (IX86_BUILTIN_PERMPS): Ditto.
1502 (IX86_BUILTIN_PERMPD): Ditto.
1503 (IX86_BUILTIN_PMACSSWW): Ditto.
1504 (IX86_BUILTIN_PMACSWW): Ditto.
1505 (IX86_BUILTIN_PMACSSWD): Ditto.
1506 (IX86_BUILTIN_PMACSWD): Ditto.
1507 (IX86_BUILTIN_PMACSSDD): Ditto.
1508 (IX86_BUILTIN_PMACSDD): Ditto.
1509 (IX86_BUILTIN_PMACSSDQL): Ditto.
1510 (IX86_BUILTIN_PMACSSDQH): Ditto.
1511 (IX86_BUILTIN_PMACSDQL): Ditto.
1512 (IX86_BUILTIN_PMACSDQH): Ditto.
1513 (IX86_BUILTIN_PMADCSSWD): Ditto.
1514 (IX86_BUILTIN_PMADCSWD): Ditto.
1515 (IX86_BUILTIN_PHADDBW): Ditto.
1516 (IX86_BUILTIN_PHADDBD): Ditto.
1517 (IX86_BUILTIN_PHADDBQ): Ditto.
1518 (IX86_BUILTIN_PHADDWD): Ditto.
1519 (IX86_BUILTIN_PHADDWQ): Ditto.
1520 (IX86_BUILTIN_PHADDDQ): Ditto.
1521 (IX86_BUILTIN_PHADDUBW): Ditto.
1522 (IX86_BUILTIN_PHADDUBD): Ditto.
1523 (IX86_BUILTIN_PHADDUBQ): Ditto.
1524 (IX86_BUILTIN_PHADDUWD): Ditto.
1525 (IX86_BUILTIN_PHADDUWQ): Ditto.
1526 (IX86_BUILTIN_PHADDUDQ): Ditto.
1527 (IX86_BUILTIN_PHSUBBW): Ditto.
1528 (IX86_BUILTIN_PHSUBWD): Ditto.
1529 (IX86_BUILTIN_PHSUBDQ): Ditto.
1530 (IX86_BUILTIN_PROTB): Ditto.
1531 (IX86_BUILTIN_PROTW): Ditto.
1532 (IX86_BUILTIN_PROTD): Ditto.
1533 (IX86_BUILTIN_PROTQ): Ditto.
1534 (IX86_BUILTIN_PROTB_IMM): Ditto.
1535 (IX86_BUILTIN_PROTW_IMM): Ditto.
1536 (IX86_BUILTIN_PROTD_IMM): Ditto.
1537 (IX86_BUILTIN_PROTQ_IMM): Ditto.
1538 (IX86_BUILTIN_PSHLB): Ditto.
1539 (IX86_BUILTIN_PSHLW): Ditto.
1540 (IX86_BUILTIN_PSHLD): Ditto.
1541 (IX86_BUILTIN_PSHLQ): Ditto.
1542 (IX86_BUILTIN_PSHAB): Ditto.
1543 (IX86_BUILTIN_PSHAW): Ditto.
1544 (IX86_BUILTIN_PSHAD): Ditto.
1545 (IX86_BUILTIN_PSHAQ): Ditto.
1546 (IX86_BUILTIN_FRCZSS): Ditto.
1547 (IX86_BUILTIN_FRCZSD): Ditto.
1548 (IX86_BUILTIN_FRCZPS): Ditto.
1549 (IX86_BUILTIN_FRCZPD): Ditto.
1550 (IX86_BUILTIN_CVTPH2PS): Ditto.
1551 (IX86_BUILTIN_CVTPS2PH): Ditto.
1552 (IX86_BUILTIN_COMEQSS): Ditto.
1553 (IX86_BUILTIN_COMNESS): Ditto.
1554 (IX86_BUILTIN_COMLTSS): Ditto.
1555 (IX86_BUILTIN_COMLESS): Ditto.
1556 (IX86_BUILTIN_COMGTSS): Ditto.
1557 (IX86_BUILTIN_COMGESS): Ditto.
1558 (IX86_BUILTIN_COMUEQSS): Ditto.
1559 (IX86_BUILTIN_COMUNESS): Ditto.
1560 (IX86_BUILTIN_COMULTSS): Ditto.
1561 (IX86_BUILTIN_COMULESS): Ditto.
1562 (IX86_BUILTIN_COMUGTSS): Ditto.
1563 (IX86_BUILTIN_COMUGESS): Ditto.
1564 (IX86_BUILTIN_COMORDSS): Ditto.
1565 (IX86_BUILTIN_COMUNORDSS): Ditto.
1566 (IX86_BUILTIN_COMFALSESS): Ditto.
1567 (IX86_BUILTIN_COMTRUESS): Ditto.
1568 (IX86_BUILTIN_COMEQSD): Ditto.
1569 (IX86_BUILTIN_COMNESD): Ditto.
1570 (IX86_BUILTIN_COMLTSD): Ditto.
1571 (IX86_BUILTIN_COMLESD): Ditto.
1572 (IX86_BUILTIN_COMGTSD): Ditto.
1573 (IX86_BUILTIN_COMGESD): Ditto.
1574 (IX86_BUILTIN_COMUEQSD): Ditto.
1575 (IX86_BUILTIN_COMUNESD): Ditto.
1576 (IX86_BUILTIN_COMULTSD): Ditto.
1577 (IX86_BUILTIN_COMULESD): Ditto.
1578 (IX86_BUILTIN_COMUGTSD): Ditto.
1579 (IX86_BUILTIN_COMUGESD): Ditto.
1580 (IX86_BUILTIN_COMORDSD): Ditto.
1581 (IX86_BUILTIN_COMUNORDSD): Ditto.
1582 (IX86_BUILTIN_COMFALSESD): Ditto.
1583 (IX86_BUILTIN_COMTRUESD): Ditto.
1584 (IX86_BUILTIN_COMEQPS): Ditto.
1585 (IX86_BUILTIN_COMNEPS): Ditto.
1586 (IX86_BUILTIN_COMLTPS): Ditto.
1587 (IX86_BUILTIN_COMLEPS): Ditto.
1588 (IX86_BUILTIN_COMGTPS): Ditto.
1589 (IX86_BUILTIN_COMGEPS): Ditto.
1590 (IX86_BUILTIN_COMUEQPS): Ditto.
1591 (IX86_BUILTIN_COMUNEPS): Ditto.
1592 (IX86_BUILTIN_COMULTPS): Ditto.
1593 (IX86_BUILTIN_COMULEPS): Ditto.
1594 (IX86_BUILTIN_COMUGTPS): Ditto.
1595 (IX86_BUILTIN_COMUGEPS): Ditto.
1596 (IX86_BUILTIN_COMORDPS): Ditto.
1597 (IX86_BUILTIN_COMUNORDPS): Ditto.
1598 (IX86_BUILTIN_COMFALSEPS): Ditto.
1599 (IX86_BUILTIN_COMTRUEPS): Ditto.
1600 (IX86_BUILTIN_COMEQPD): Ditto.
1601 (IX86_BUILTIN_COMNEPD): Ditto.
1602 (IX86_BUILTIN_COMLTPD): Ditto.
1603 (IX86_BUILTIN_COMLEPD): Ditto.
1604 (IX86_BUILTIN_COMGTPD): Ditto.
1605 (IX86_BUILTIN_COMGEPD): Ditto.
1606 (IX86_BUILTIN_COMUEQPD): Ditto.
1607 (IX86_BUILTIN_COMUNEPD): Ditto.
1608 (IX86_BUILTIN_COMULTPD): Ditto.
1609 (IX86_BUILTIN_COMULEPD): Ditto.
1610 (IX86_BUILTIN_COMUGTPD): Ditto.
1611 (IX86_BUILTIN_COMUGEPD): Ditto.
1612 (IX86_BUILTIN_COMORDPD): Ditto.
1613 (IX86_BUILTIN_COMUNORDPD): Ditto.
1614 (IX86_BUILTIN_COMFALSEPD): Ditto.
1615 (IX86_BUILTIN_COMTRUEPD): Ditto.
1616 (IX86_BUILTIN_PCOMEQUB): Ditto.
1617 (IX86_BUILTIN_PCOMNEUB): Ditto.
1618 (IX86_BUILTIN_PCOMLTUB): Ditto.
1619 (IX86_BUILTIN_PCOMLEUB): Ditto.
1620 (IX86_BUILTIN_PCOMGTUB): Ditto.
1621 (IX86_BUILTIN_PCOMGEUB): Ditto.
1622 (IX86_BUILTIN_PCOMFALSEUB): Ditto.
1623 (IX86_BUILTIN_PCOMTRUEUB): Ditto.
1624 (IX86_BUILTIN_PCOMEQUW): Ditto.
1625 (IX86_BUILTIN_PCOMNEUW): Ditto.
1626 (IX86_BUILTIN_PCOMLTUW): Ditto.
1627 (IX86_BUILTIN_PCOMLEUW): Ditto.
1628 (IX86_BUILTIN_PCOMGTUW): Ditto.
1629 (IX86_BUILTIN_PCOMGEUW): Ditto.
1630 (IX86_BUILTIN_PCOMFALSEUW): Ditto.
1631 (IX86_BUILTIN_PCOMTRUEUW): Ditto.
1632 (IX86_BUILTIN_PCOMEQUD): Ditto.
1633 (IX86_BUILTIN_PCOMNEUD): Ditto.
1634 (IX86_BUILTIN_PCOMLTUD): Ditto.
1635 (IX86_BUILTIN_PCOMLEUD): Ditto.
1636 (IX86_BUILTIN_PCOMGTUD): Ditto.
1637 (IX86_BUILTIN_PCOMGEUD): Ditto.
1638 (IX86_BUILTIN_PCOMFALSEUD): Ditto.
1639 (IX86_BUILTIN_PCOMTRUEUD): Ditto.
1640 (IX86_BUILTIN_PCOMEQUQ): Ditto.
1641 (IX86_BUILTIN_PCOMNEUQ): Ditto.
1642 (IX86_BUILTIN_PCOMLTUQ): Ditto.
1643 (IX86_BUILTIN_PCOMLEUQ): Ditto.
1644 (IX86_BUILTIN_PCOMGTUQ): Ditto.
1645 (IX86_BUILTIN_PCOMGEUQ): Ditto.
1646 (IX86_BUILTIN_PCOMFALSEUQ): Ditto.
1647 (IX86_BUILTIN_PCOMTRUEUQ): Ditto.
1648 (IX86_BUILTIN_PCOMEQB): Ditto.
1649 (IX86_BUILTIN_PCOMNEB): Ditto.
1650 (IX86_BUILTIN_PCOMLTB): Ditto.
1651 (IX86_BUILTIN_PCOMLEB): Ditto.
1652 (IX86_BUILTIN_PCOMGTB): Ditto.
1653 (IX86_BUILTIN_PCOMGEB): Ditto.
1654 (IX86_BUILTIN_PCOMFALSEB): Ditto.
1655 (IX86_BUILTIN_PCOMTRUEB): Ditto.
1656 (IX86_BUILTIN_PCOMEQW): Ditto.
1657 (IX86_BUILTIN_PCOMNEW): Ditto.
1658 (IX86_BUILTIN_PCOMLTW): Ditto.
1659 (IX86_BUILTIN_PCOMLEW): Ditto.
1660 (IX86_BUILTIN_PCOMGTW): Ditto.
1661 (IX86_BUILTIN_PCOMGEW): Ditto.
1662 (IX86_BUILTIN_PCOMFALSEW): Ditto.
1663 (IX86_BUILTIN_PCOMTRUEW): Ditto.
1664 (IX86_BUILTIN_PCOMEQD): Ditto.
1665 (IX86_BUILTIN_PCOMNED): Ditto.
1666 (IX86_BUILTIN_PCOMLTD): Ditto.
1667 (IX86_BUILTIN_PCOMLED): Ditto.
1668 (IX86_BUILTIN_PCOMGTD): Ditto.
1669 (IX86_BUILTIN_PCOMGED): Ditto.
1670 (IX86_BUILTIN_PCOMFALSED): Ditto.
1671 (IX86_BUILTIN_PCOMTRUED): Ditto.
1672 (IX86_BUILTIN_PCOMEQQ): Ditto.
1673 (IX86_BUILTIN_PCOMNEQ): Ditto.
1674 (IX86_BUILTIN_PCOMLTQ): Ditto.
1675 (IX86_BUILTIN_PCOMLEQ): Ditto.
1676 (IX86_BUILTIN_PCOMGTQ): Ditto.
1677 (IX86_BUILTIN_PCOMGEQ): Ditto.
1678 (IX86_BUILTIN_PCOMFALSEQ): Ditto.
1679 (IX86_BUILTIN_PCOMTRUEQ): Ditto.
1680 (bdesc_ptest): Change OPTION_MASK_ISA_SSE4_1 to
1681 OPTION_MASK_ISA_ROUND for instructions that are shared between
1682 SSE4.1 and SSE5.
1683 (bdesc_2arg): Ditto.
1684 (bdesc_sse_3arg): Ditto.
1685 (enum multi_arg_type): New enum for describing the various SSE5
1686 intrinsic argument types.
1687 (bdesc_multi_arg): New table for SSE5 intrinsics.
1688 (ix86_init_mmx_sse_builtins): Add SSE5 intrinsic support.
1689 (ix86_expand_multi_arg_builtin): New function for creating SSE5
1690 intrinsics.
1691 (ix86_expand_builtin): Add SSE5 intrinsic support.
1692 (ix86_sse5_valid_op_p): New function to validate SSE5 3 and 4
1693 operand instructions.
1694 (ix86_expand_sse5_multiple_memory): New function to split the
1695 second memory reference from SSE5 instructions.
1696 (type_has_variadic_args_p): Delete in favor of stdarg_p.
1697 (ix86_return_pops_args): Use stdarg_p to determine if the function
1698 has variable arguments.
1699 (ix86_setup_incoming_varargs): Ditto.
1700 (x86_this_parameter): Ditto.
1701
1702 * config/i386/i386-protos.h (ix86_expand_sse5_unpack): Add
1703 declaration.
1704 (ix86_expand_sse5_pack): Ditto.
1705 (ix86_sse5_valid_op_p): Ditto.
1706 (ix86_expand_sse5_multiple_memory): Ditto.
1707
1708 * config/i386/i386.md (UNSPEC_SSE5_INTRINSIC): Add new UNSPEC
1709 constant for SSE5 support.
1710 (UNSPEC_SSE5_UNSIGNED_CMP): Ditto.
1711 (UNSPEC_SSE5_TRUEFALSE): Ditto.
1712 (UNSPEC_SSE5_PERMUTE): Ditto.
1713 (UNSPEC_SSE5_ASHIFT): Ditto.
1714 (UNSPEC_SSE5_LSHIFT): Ditto.
1715 (UNSPEC_FRCZ): Ditto.
1716 (UNSPEC_CVTPH2PS): Ditto.
1717 (UNSPEC_CVTPS2PH): Ditto.
1718 (PCOM_FALSE): Add new constant for true/false SSE5 comparisons.
1719 (PCOM_TRUE): Ditto.
1720 (COM_FALSE_S): Ditto.
1721 (COM_FALSE_P): Ditto.
1722 (COM_TRUE_S): Ditto.
1723 (COM_TRUE_P): Ditto.
1724 (type attribute): Add ssemuladd, sseiadd1, ssecvt1, sse4arg types.
1725 (unit attribute): Add support for ssemuladd, ssecvt1, sseiadd1 sse4arg
1726 types.
1727 (memory attribute): Ditto.
1728 (sse4_1_round<mode>2): Use TARGET_ROUND instead of TARGET_SSE4_1.
1729 Use SSE4_1_ROUND_* constants instead of hard coded numbers.
1730 (rint<mode>2): Use TARGET_ROUND instead of TARGET_SSE4_1.
1731 (floor<mode>2): Ditto.
1732 (ceil<mode>2): Ditto.
1733 (btrunc<mode>2): Ditto.
1734 (nearbyintdf2): Ditto.
1735 (nearbyintsf2): Ditto.
1736 (sse_setccsf): Disable if SSE5.
1737 (sse_setccdf): Ditto.
1738 (sse5_setcc<mode>): New support for SSE5 conditional move.
1739 (sse5_pcmov_<mode>): Ditto.
1740
1741 * config/i386/sse.md (SSEMODE1248): New mode iterator for SSE5.
1742 (SSEMODEF4): Ditto.
1743 (SSEMODEF2P): Ditto.
1744 (ssemodesuffixf4): New mode attribute for SSE5.
1745 (ssemodesuffixf2s): Ditto.
1746 (ssemodesuffixf2c): Ditto.
1747 (sserotatemax): Ditto.
1748 (ssescalarmode): Ditto.
1749 (sse_maskcmpv4sf3): Disable if SSE5.
1750 (sse_maskcmpv2df3): Ditto.
1751 (sse_vmmaskcmpv4sf3): Ditto.
1752 (sse5_fmadd<mode>4): Add SSE5 floating point multiply/add
1753 instructions.
1754 (sse5_vmfmadd<mode>4): Ditto.
1755 (sse5_fmsub<mode>4): Ditto.
1756 (sse5_vmfmsub<mode>4): Ditto.
1757 (sse5_fnmadd<mode>4): Ditto.
1758 (sse5_vmfnmadd<mode>4): Ditto.
1759 (sse5_fnmsub<mode>4): Ditto.
1760 (sse5_vmfnmsub<mode>4): Ditto.
1761 (sse5i_fmadd<mode>4): Ditto.
1762 (sse5i_fmsub<mode>4): Ditto.
1763 (sse5i_fnmadd<mode>4): Ditto.
1764 (sse5i_fnmsub<mode>4): Ditto.
1765 (sse5i_vmfmadd<mode>4): Ditto.
1766 (sse5i_vmfmsub<mode>4): Ditto.
1767 (sse5i_vmfnmadd<mode>4): Ditto.
1768 (sse5i_vmfnmsub<mode>4): Ditto.
1769 (mulv16qi3): Add SSE5 support.
1770 (mulv4si3): Ditto.
1771 (sse5_mulv4si3): New insn for 32-bit multiply support on SSE5.
1772 (sse2_mulv4si3): Disable if SSE5.
1773 (sse4_1_roundpd): Use TARGET_ROUND instead of TARGET_SSE4_1.
1774 (sse4_1_roundps): Ditto.
1775 (sse4_1_roundsd): Ditto.
1776 (sse4_1_roundss): Ditto.
1777 (sse_maskcmpv4sf3): Disable if SSE5 so the SSE5 instruction will
1778 be generated.
1779 (sse_maskcmpsf3): Ditto.
1780 (sse_vmmaskcmpv4sf3): Ditto.
1781 (sse2_maskcmpv2df3): Ditto.
1782 (sse2_maskcmpdf3): Ditto.
1783 (sse2_vmmaskcmpv2df3): Ditto.
1784 (sse2_eq<mode>3): Ditto.
1785 (sse2_gt<mode>3): Ditto.
1786 (sse5_pcmov_<mode>): Add SSE5 support.
1787 (vec_unpacku_hi_v16qi): Ditto.
1788 (vec_unpacks_hi_v16qi): Ditto.
1789 (vec_unpacku_lo_v16qi): Ditto.
1790 (vec_unpacks_lo_v16qi): Ditto.
1791 (vec_unpacku_hi_v8hi): Ditto.
1792 (vec_unpacks_hi_v8hi): Ditto.
1793 (vec_unpacku_lo_v8hi): Ditto.
1794 (vec_unpacks_lo_v8hi): Ditto.
1795 (vec_unpacku_hi_v4si): Ditto.
1796 (vec_unpacks_hi_v4si): Ditto.
1797 (vec_unpacku_lo_v4si): Ditto.
1798 (vec_unpacks_lo_v4si): Ditto.
1799 (sse5_pmacsww): New SSE5 intrinsic insn.
1800 (sse5_pmacssww): Ditto.
1801 (sse5_pmacsdd): Ditto.
1802 (sse5_pmacssdd): Ditto.
1803 (sse5_pmacssdql): Ditto.
1804 (sse5_pmacssdqh): Ditto.
1805 (sse5_pmacsdqh): Ditto.
1806 (sse5_pmacsswd): Ditto.
1807 (sse5_pmacswd): Ditto.
1808 (sse5_pmadcsswd): Ditto.
1809 (sse5_pmadcswd): Ditto.
1810 (sse5_pcmov_<move>): Conditional move support on SSE5.
1811 (sse5_phaddbw): New SSE5 intrinsic insn.
1812 (sse5_phaddbd): Ditto.
1813 (sse5_phaddbq): Ditto.
1814 (sse5_phaddwd): Ditto.
1815 (sse5_phaddwq): Ditto.
1816 (sse5_phadddq): Ditto.
1817 (sse5_phaddubw): Ditto.
1818 (sse5_phaddubd): Ditto.
1819 (sse5_phaddubq): Ditto.
1820 (sse5_phadduwd): Ditto.
1821 (sse5_phadduwq): Ditto.
1822 (sse5_phaddudq): Ditto.
1823 (sse5_phsubbw): Ditto.
1824 (sse5_phsubwd): Ditto.
1825 (sse5_phsubdq): Ditto.
1826 (sse5_pperm): Ditto.
1827 (sse5_pperm_sign_v16qi_v8hi): New insns for pack/unpack with SSE5.
1828 (sse5_pperm_zero_v16qi_v8hi): Ditto.
1829 (sse5_pperm_sign_v8hi_v4si): Ditto.
1830 (sse5_pperm_zero_v8hi_v4si): Ditto.
1831 (sse5_pperm_sign_v4si_v2di): Ditto.
1832 (sse5_pperm_sign_v4si_v2di): Ditto.
1833 (sse5_pperm_pack_v2di_v4si): Ditto.
1834 (sse5_pperm_pack_v4si_v8hi): Ditto.
1835 (sse5_pperm_pack_v8hi_v16qi): Ditto.
1836 (sse5_perm<mode>): New SSE5 intrinsic insn.
1837 (rotl<mode>3): Ditto.
1838 (sse5_rotl<mode>3): Ditto.
1839 (sse5_ashl<mode>3): Ditto.
1840 (sse5_lshl<mode>3): Ditto.
1841 (sse5_frcz<mode>2): Ditto.
1842 (sse5s_frcz<mode>2): Ditto.
1843 (sse5_cvtph2ps): Ditto.
1844 (sse5_cvtps2ph): Ditto.
1845 (sse5_vmmaskcmp<mode>3): Ditto.
1846 (sse5_com_tf<mode>3): Ditto.
1847 (sse5_maskcmp<mode>3): Ditto.
1848 (sse5_maskcmp_uns<mode>3): Ditto.
1849 (sse5_maskcmp_uns2<mode>3): Ditto.
1850 (sse5_pcom_tf<mode>3): Ditto.
1851
1852 * config/i386/predicates.md (const_0_to_31_operand): New predicate
1853 to match 0..31.
1854 (sse5_comparison_float_operator): New predicate to match the
1855 comparison operators supported by the SSE5 com instruction.
1856 (ix86_comparison_int_operator): New predicate to match just the
1857 signed int comparisons.
1858 (ix86_comparison_uns_operator): New predicate to match just the
1859 unsigned int comparisons.
1860
1861 * doc/invoke.texi (-msse5): Add documentation.
1862 (-mfused-madd): Ditto.
1863
1864 * doc/extend.texi (x86 intrinsics): Document new SSE5 intrinsics.
1865
1866 * config.gcc (i[34567]86-*-*): Include bmmintrin.h and
1867 mmintrin-common.h.
1868 (x86_64-*-*): Ditto.
1869
1870 * config/i386/cpuid.h (bit_SSE5): Define SSE5 bit.
1871
1872 * config/i386/bmmintrin.h: New file, provide common x86 compiler
1873 intrinisics for SSE5.
1874
1875 * config/i386/smmintrin.h: Move instructions shared with SSE5 to
1876 mmintrin-common.h.
1877
1878 * config/i386/mmintrin-common.h: New file, to contain common
1879 instructions between SSE4.1 and SSE5.
1880
1881 * config/i386/netware.c (gen_stdcall_or_fastcall_decoration): Use
1882 FOREACH_FUNCTION_ARGS to iterate over the argument list.
1883 (gen_regparm_prefix): Ditto.
1884
1885 * config/i386/winnt.c (gen_stdcall_or_fastcall_suffix): Use
1886 FOREACH_FUNCTION_ARGS to iterate over the argument list. Use
1887 prototype_p to determine if a function is prototyped.
1888
1889 2007-09-12 Janis Johnson <janis187@us.ibm.com>
1890
1891 * config/dfp-bit.c (dfp_conversion_exception): New function.
1892 (DFP_TO_DFP) Add new variants to use direct conversions in decNumber.
1893 (DFP_TO_INT): Ditto.
1894 (INT_TO_DFP): Ditto.
1895 * config/dfp-bit.h (DEC_FLOAT_FROM_INT, DEC_FLOAT_TO_INT): New.
1896
1897 2007-09-12 Jakub Jelinek <jakub@redhat.com>
1898
1899 PR target/32338
1900 * config/ia64/ia64.c (ia64_expand_epilogue): Emit blockage
1901 before sp restoration even when total_size is 0, but
1902 frame_pointer_needed.
1903
1904 2007-09-12 Bob Wilson <bob.wilson@acm.org>
1905
1906 * config/xtensa/xtensa.c (machine_function): Add vararg_a7_copy.
1907 (xtensa_copy_incoming_a7): Use start_sequence instead of
1908 push_to_sequence. Stash insns in vararg_a7_copy for builtin_saveregs.
1909 (xtensa_builtin_saveregs): Place code from vararg_a7_copy at the start
1910 of the saveregs sequence.
1911
1912 2007-09-12 Richard Sandiford <richard@codesourcery.com>
1913
1914 * c-tree.h (grokfield): Add a "tree *" argument.
1915 * c-decl.c (grokdeclarator): Take a pointer to the decl's attributes.
1916 Chain nested decl attributes to it. Don't call decl_attributes here.
1917 (groktypename): Pass grokdeclarator a pointer to the attribute list.
1918 (start_decl, grokparm, push_parm_decl, start_function): Likewise.
1919 (grokfield): Take a pointer to the decl's attributes and pass
1920 it to grokdeclarator.
1921 * c-parser.c (c_parser_struct_declaration): Update the calls to
1922 grokfield. Call decl_attributes for anonymous struct and union
1923 fields.
1924
1925 2007-09-12 Jan Hubicka <jh@suse.cz>
1926
1927 * c-objc-common.h (LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION): Kill.
1928
1929 2007-09-12 Ira Rosen <irar@il.ibm.com>
1930
1931 PR tree-optimization/32377
1932 * tree-vect-analyze.c (vect_analyze_data_ref_dependence): Distinguish
1933 between positive and negative dependence distance using DDR_REVERSED_P.
1934
1935 2007-09-12 Dorit Nuzman <dorit@il.ibm.com>
1936
1937 PR tree-optimization/33373
1938 * tree-vect-analyze (vect_determine_vectorization_factor): Call
1939 TREE_INT_CST_LOW when comparing TYPE_SIZE_UNIT.
1940
1941 2007-09-12 Jan Hubicka <jh@suse.cz>
1942
1943 PR target/33393
1944 * i386.md (floatsisf2_mixed_memory, floatsisf2_sse_memory): Disable
1945 for !SSE_MATH
1946
1947 2007-09-12 Christian Bruel <christian.bruel@st.com>
1948
1949 * sh.h (SH_DBX_REGISTER_NUMBER): Added fpscr, fixed sr/gbr regs.
1950 * linux-unwind.h (SH_DWARF_FRAME_GBR): fixed.
1951
1952 2007-09-12 Ira Rosen <irar@il.ibm.com>
1953
1954 * tree-vect-transform.c (vect_get_slp_defs): Don't build a vector
1955 for oprnd1 if not required.
1956 (vectorizable_operation): Use scalar operand in SLP in case of
1957 shift with scalar argument.
1958
1959 2007-09-12 Ira Rosen <irar@il.ibm.com>
1960
1961 * params.def (PARAM_MIN_VECT_LOOP_BOUND): Change default and minimum
1962 to 1.
1963
1964 2007-09-11 James E. Wilson <wilson@specifix.com>
1965
1966 * defaults.h (DWARF2_UNWIND_INFO): Don't define if
1967 TARGET_UNWIND_INFO is defined.
1968 * config/ia64/ia64.h (INCOMING_RETURN_ADDR_RTX): Delete undef
1969 after definition.
1970
1971 2007-09-12 Kaz Kojima <kkojima@gcc.gnu.org>
1972
1973 * config/sh/sh.c (calc_live_regs): Use
1974 current_function_saves_all_registers instead of
1975 current_function_has_nonlocal_label.
1976 (sh_allocate_initial_value): Likewise.
1977 (sh_get_pr_initial_val): Likewise.
1978 * config/sh/sh.h (SHMEDIA_REGS_STACK_ADJUST): Likewise.
1979 * config/sh/sh.md (load_ra): Likewise.
1980
1981 2007-09-12 Hans-Peter Nilsson <hp@axis.com>
1982
1983 * config/cris/t-linux (LIMITS_H_TEST): Only define if not inhibit_libc.
1984
1985 PR target/33360
1986 * config/cris/cris.c (cris_expand_pic_call_address): Fix typo in
1987 GET_CODE (x) == CONST_INT to CONST_INT_P (x) transformation.
1988
1989 2007-09-12 Sa Liu <saliu@de.ibm.com>
1990
1991 * config/spu/spu.c (spu_emit_branch_or_set): Handle NaN values as
1992 operands to DFmode GE or LE compares.
1993
1994 2007-09-12 Bernd Schmidt <bernd.schmidt@analog.com>
1995
1996 * config/bfin/bfin.h (enum reg_class, REG_CLASS_CONTENTS,
1997 REG_CLASS_NAMES): Add P0REGS.
1998 (REGNO_REG_CLASS): Return it where appropriate.
1999 (REG_CLASS_FROM_CONSTRAINT): Add 'qA'.
2000 (CLASS_LIKELY_SPILLED_P): P0REGS is likely_spilled.
2001 * doc/md.texi (Blackfin family): Document 'q' constraints.
2002
2003 2007-09-11 Steve Kenton <skenton@ou.edu>
2004
2005 * pa/linux-unwind.h: Guard with inhibit_libc.
2006 * pa/hpux-unwind.h: Likewise.
2007
2008 2007-09-11 David Daney <ddaney@avtrex.com>
2009
2010 * doc/invoke.texi: Document new MIPS -mllsc and -mno-llsc options.
2011 * doc/install.texi: Document new --with-llsc and --without-llsc
2012 options.
2013 * config.gcc: Handle --with-llsc and --without-llsc configure options.
2014 * config/mips/mips.md (sync, memory_barrier): Wrap sync instrunction
2015 in %| and %- operand codes. Depend on GENERATE_SYNC instead of
2016 ISA_HAS_SYNC.
2017 (sync_compare_and_swap<mode>, sync_add<mode>, sync_sub<mode>,
2018 sync_old_add<mode>, sync_old_sub<mode>, sync_new_add<mode>,
2019 sync_new_sub<mode>, sync_<optab><mode>, sync_old_<optab><mode>,
2020 sync_new_<optab><mode>, sync_nand<mode>, sync_old_nand<mode>,
2021 sync_new_nand<mode>, sync_lock_test_and_set<mode>): Depend on
2022 GENERATE_LL_SC instead of ISA_HAS_LL_SC.
2023 * config/mips/mips.opt (mllsc): New option.
2024 * config/mips/mips.c (mips_llsc): Define variable.
2025 (mips_handle_option): Handle mllsc option.
2026 (override_options): Set mips_print_operand_punct for '|' and '-'.
2027 (print_operand): Add new %| and %- operand codes.
2028 * config/mips/mips.h (mips_llsc_setting): New enum type.
2029 (mips_llsc): Declare.
2030 (OPTION_DEFAULT_SPECS): Add llsc handling.
2031 (GENERATE_SYNC): New macro.
2032 (GENERATE_LL_SC): New macro.
2033 (MIPS_COMPARE_AND_SWAP, MIPS_SYNC_OP, MIPS_SYNC_OLD_OP,
2034 MIPS_SYNC_NEW_OP, MIPS_SYNC_NAND, MIPS_SYNC_OLD_NAND,
2035 MIPS_SYNC_NEW_NAND, MIPS_SYNC_EXCHANGE): Wrap instructions
2036 in %| and %- operand codes.
2037
2038 2007-09-11 Eric Botcazou <ebotcazou@adacore.com>
2039
2040 * tree-ssa-structalias.c (push_fields_onto_fieldstack): Deal with
2041 TYPE_NONALIASED_COMPONENT like with DECL_NONADDRESSABLE_P.
2042
2043 2007-09-11 Jason Merrill <jason@redhat.com>
2044
2045 PR middle-end/27945
2046 * stor-layout.c (layout_decl): Do pack variable size fields.
2047
2048 2007-09-11 Maxim Kuvyrkov <maxim@codesourcery.com>
2049
2050 * config/m68k/predicates.md (movsi_const0_operand,
2051 non_symbolic_call_operand): New predicates.
2052
2053 * config/m68k/constraints.md (Cs, Ci, C0, Cj, CQ, CW, CZ, CS, Ap, Ac):
2054 New constraints.
2055 * doc/md.texi (Constraints for Particular Machines: Motorola 680x0):
2056 Document constraints N, O, P, R, S, T, Q, U, W, Cs, Ci, C0, Cj, CQ,
2057 CW, CZ, CS, Ap and Ac.
2058
2059 * config/m68k/m68k.md (UNSPEC_IB): New constant.
2060 (constraints.md): New include.
2061 (cpu, type, type1, opx, opy, opx_type, opy_type, size, opx_access,
2062 opx_mem, opy_mem, op_mem, guess, split): New attributes.
2063 (movdf_internal): Name pattern. Fix to use alternatives. Add split.
2064 Specify attributes.
2065 (pushdi): Add split.
2066 (tstsi_internal): Name pattern. Fix to use alternatives. Specify
2067 attributes. Split tstsi_internal_68020_cf from it.
2068 (tstsi_internal_68020_cf): New pattern.
2069 (tsthi_internal, tstqi_internal): Name pattern. Specify attributes.
2070 (tst<mode>_cf): Specify attributea.
2071 (cmpsi_cf): Name pattern. Specify attributes.
2072 (cmp<mode>_68881, cmp<mode>_cf): Specify type attribute.
2073 (pushexthisi_const): Fix to use alternatives. Specify
2074 attributes.
2075 (movsi_const0): Split movsi_const0_68000_10 and movsi_const0_68040_60
2076 from it. Fix to use alternatives. Specify attributes.
2077 (movsi_const0_68040_10, movsi_const0_68040_60): New patterns.
2078 (movsi_cf, movstrictqi_cf): Fix to use alternatives. Specify
2079 attributes.
2080 (movsf_cf_soft): Specify attributes.
2081 (movdf_cf_soft): Add split.
2082 (pushasi, zero_extendhisi2_cf, zero_extendqisi2_cfv4,
2083 cfv4_extendhisi2, 68k_extendhisi2, extendqihi2, cfv4_extendqisi2,
2084 68k_extendqisi2, truncdfsf2_cf): Specify attributes.
2085 (truncdfsf2_68881): Name pattern. Specify attributes.
2086 (floatsi<mode>2_cf, floathi<mode>2_68881, floathi<mode>2_cf,
2087 floatqi<mode>2_68881, floatqi<mode>2_cf, ftrunc<mode>2_cf,
2088 fix<mode>qi2_cf, fix<mode>hi2_cf, fix<mode>si2_cf, adddi_dishl32):
2089 Specify attributes.
2090 (addsi3_5200): Fix to use alternatives. Specify attributes.
2091 Add splits.
2092 (add<mode>3_cf, subdi_dishl32): Specify attributes.
2093 (subsi3): Add alternative for subq.l. Specify attributes.
2094 (sub<mode>3_cf, mulhi3, mulhisi3): Specify attributes.
2095 (mulhisisi3_s, mulsi3_68020, mulsi3_cf): Name pattern. Specify
2096 attributes.
2097 (umulhisi3): Specify attributes.
2098 (mulhisisi3_z): Name pattern. Specify attributes.
2099 (fmul<mode>3_cf, div<mode>3_cf, negsi2_internal, negsi2_5200,
2100 sqrt<mode>2_68881, clzsi2, one_cmplsi2_5200, subreghi1ashrdi_const32,
2101 subregsi1ashrdi_const32, ashrsi3, subreg1lshrdi_const32, lshrsi3,
2102 bsetmemqi): Specify attributes.
2103 (bsetmemqi_ext): Name pattern. Specify attributes.
2104 (bclrmemqi): Specify attributes.
2105 (bclrmemqi_ext, scc, sls): Name pattern. Specify attributes.
2106 (beq, bne, bgt, bgtu, blt, bltu, bge, bgeu, ble, bleu): Specify
2107 attributes.
2108 (beq2, bne2, bgt2, bgtu2, blt2, bltu2, bge2, bgeu2, ble2, bleu2): Name
2109 pattern. Specify attributes.
2110 (jump): Specify attributes.
2111 (tablejump_internal): Name pattern. Specify attributes.
2112 (call_value): Split into non_symbolic_call_value,
2113 symbolic_call_value_jsr, symbolic_call_value_bsr. Fix to use
2114 alternatives. Specify attributes.
2115 (non_symbolic_call_value, symbolic_call_value_jsr,
2116 symbolic_call_value_bsr): New patterns.
2117 (nop, return, unlink, indirect_jump): Specify attributes.
2118 (trap): Fix condition. Specify attributes.
2119 (ib): New pattern.
2120
2121 * config/m68k/m68k.c (m68k_symbolic_call_var): New variable.
2122 (override_options): Initialize it. Initialize m68k_sched_cpu.
2123 (CONST_METHOD): Rename to M68K_CONST_METHOD, move to m68k.h.
2124 (const_method): Make global, rename to m68k_const_method.
2125 (const_int_cost, output_move_const_into_data_reg): Update.
2126 (output_move_double): Parametrize to emit rtl code, rename to
2127 handle_move_double.
2128 (output_reg_adjust, emit_reg_adjust, output_compadr, output_movsi,
2129 emit_movsi): New static functions.
2130 (output_move_double): New function with semantics of old
2131 output_move_double.
2132 (m68k_emit_move_double): New function.
2133 (m68k_sched_cpu): New variable.
2134 (attr_op_type): New enum.
2135 (sched_guess_p): New variable.
2136 (sched_address_type, sched_operand_type, sched_attr_op_type):
2137 New static functions.
2138 (m68k_sched_attr_opx_type, m68k_sched_attr_opy_type,
2139 m68k_sched_attr_size, m68k_sched_attr_op_mem): New functions.
2140 (sched_branch_type): New static variable.
2141 (m68k_sched_branch_type): New function.
2142 * config/m68k/m68k.h (M68K_SYMBOLIC_CALL): New enum.
2143 (m68k_symbolic_call_var): Declare.
2144 (M68K_CONST_METHOD): Rename from CONST_METHOD. Move here from m68k.c.
2145 (m68k_const_method, m68k_emit_move_double, m68k_sched_cpu,
2146 m68k_sched_attr_opx_type, m68k_sched_attr_opy_type,
2147 m68k_sched_attr_size, m68k_sched_attr_op_mem, m68k_sched_branch_type):
2148 Declare.
2149
2150 2007-09-11 Jakub Jelinek <jakub@redhat.com>
2151
2152 * builtins.def (BUILT_IN_VA_ARG_PACK_LEN): New builtin.
2153 * builtins.c (expand_builtin) <case BUILT_IN_VA_ARG_PACK_LEN>: Issue
2154 error if __builtin_va_arg_pack_len () wasn't optimized out during
2155 inlining.
2156 * tree-inline.c (copy_bb): Replace __builtin_va_arg_pack_len ()
2157 with the number of inline's anonymous arguments.
2158 * doc/extend.texi: Document __builtin_va_arg_pack_len ().
2159
2160 2007-09-11 Zdenek Dvorak <ook@ucw.cz>
2161
2162 * fold-const.c (extract_muldiv_1): Do not simplify
2163 var * c * c to var.
2164
2165 2007-09-11 Jan Hubicka <jh@suse.cz>
2166
2167 * i386.h (ix86_tune_indices): Add X86_TUNE_INTER_UNIT_CONVERSIONS.
2168 (TARGET_INTER_UNIT_CONVERSIONS): New.
2169 * i386.md (floatsi expanders): Remove redundant check for SImode
2170 source; offload to memory when asked for.
2171 (floatsisf2_mixed, floatsisf2_sse, floatsidf2_mixed, floatsidf2_sse
2172 floatdisf2_mixed, floatsisf2_sse, floatsidf2_mixed, floatsidf2_sse):
2173 Update conditions;
2174 (floatsisf2_mixed_memory, floatsisf2_sse_memory,
2175 floatsidf2_mixed_memory, floatsidf2_sse_memory
2176 floatdisf2_mixed_memory, floatsisf2_sse_memory,
2177 floatsidf2_mixed_memory, floatsidf2_sse_memory): New.
2178
2179 2007-09-11 Jan Hubicka <jh@suse.cz>
2180
2181 * toplev.c (process_options): all frontends now do unit-at-a-time.
2182 * cgraphunit.c: update comments.
2183 (cgraph_expand_function): call passmanager dirrectly; emit thunks.
2184 * c-decl.c (finish_function): use cgraph_add_new_function.
2185 * function.c (expand_function_end): We are always unit-at-a-time.
2186
2187 2007-09-11 Richard Sandiford <richard@codesourcery.com>
2188
2189 * config/mips/mips.c (mips_set_mips16_mode): Use separate anchor
2190 settings for MIPS16.
2191 (mips_use_anchors_for_symbol_p): Use default_use_anchors_for_symbol_p.
2192
2193 2007-09-11 Richard Sandiford <richard@codesourcery.com>
2194
2195 * config/mips/mips.c (mips_symbol_insns_1): Allow LEAs of
2196 SYMBOL_FORCE_TO_MEM constants.
2197 (mips_rtx_costs): Give a cost of 1 to force_to_mem_operands.
2198 (mips16_rewrite_pool_refs_info): New structure.
2199 (mips16_rewrite_pool_constant): New function, split out from...
2200 (mips16_rewrite_pool_refs): ...here. Take a pointer to a
2201 mips16_rewrite_pool_refs_info structure rather than a pointer
2202 to a constant pool. Force force_to_mem_operands into memory.
2203 (mips16_lay_out_constants): Update call to mips16_rewrite_pool_refs.
2204 * config/mips/predicates.md (force_to_mem_operand): New predicate.
2205 * config/mips/constraints.md (kf): New constraint.
2206 * config/mips/mips.md (*movdi_64bit_mips16): Add a d <- kf alternative.
2207 (*movsi_mips16): Likewise.
2208
2209 2007-09-11 Richard Sandiford <richard@codesourcery.com>
2210 Nigel Stephens <nigel@mips.com>
2211 David Ung <davidu@mips.com>
2212
2213 * config/mips/mips.h (CONSTANT_POOL_COST): Move to...
2214 * config/mips/mips.c: ...here and set to 4 for TARGET_MIPS16.
2215 (mips16_constant_cost, mips_immediate_operand_p, mips_binary_cost)
2216 (mips_fp_mult_cost, mips_fp_div_cost, mips_sign_extend_cost)
2217 (mips_zero_extend_cost): New functions.
2218 (mips_rtx_costs): Treat COMPARE constants as having zero cost.
2219 Use the new functions. Tweak many cost estimates, both here
2220 and in the new subroutines. Return false when the cost of the
2221 operands has not been calculated. Check for *clear_upper32.
2222 Check for floating-point multiply-add, reciprocal and rsqrt
2223 patterns. Handle comparison and rotation codes.
2224
2225 2007-09-11 Danny Smith <dannysmith@users.sourceforge.net>
2226
2227 * config/i386/cygming.h (TARGET_STRIP_NAME_ENCODING): Don't
2228 override default.
2229 * config/i386/i386.c (get_dllimport_decl): Don't strip
2230 FASTCALL_PREFIX.
2231
2232 2007-09-10 Janis Johnson <janis187@us.ibm.com>
2233
2234 PR c/30013
2235 * config/dfp-bit.c: Don't skip TFmode conversions; move strto*
2236 declarations to top.
2237 (DFP_TO_BFP): Use for either XFmode or TFmode.
2238 (BFP_TO_DFP): Use for either XFmode or TFmode; always use cast
2239 of BFP_VIA_TYPE.
2240 * config/dfp-bit.h: Include float.h.
2241 (LONG_DOUBLE_HAS_XF_MODE, LONG_DOUBLE_HAS_TF_MODE): Define if long
2242 double is one of these modes, rather than using LIBGCC_HAS_*F_MODE
2243 which doesn't mean the same thing.
2244 (BFP_KIND): Use 4 to mean TFmode.
2245 (BFP_FMT): Specify the number of decimal digits based on the
2246 number of mantissa digits.
2247 (BFP_VIA_TYPE): Binary float type to use as cast for sprintf.
2248 (BFP_TO_DFP, DFP_TO_BFP): Define names for TFmode variants.
2249 (STR_TO_BFP): Use strtold for XFmode or TFmode.
2250 (TFtype): Define if TFmode is supported.
2251 * doc/libgcc.texi (Decimal float library routines): Document
2252 TF conversion functions.
2253
2254 2007-09-10 Chao-ying Fu <fu@mips.com>
2255
2256 * config/mips/mips.c (mips_scalar_mode_supported_p): Declare.
2257 (TARGET_SCALAR_MODE_SUPPORTED_P): Define.
2258 (mips_emit_compare): Process fixed-point modes.
2259 (mips_pad_arg_upward): Support fixed-point types.
2260 (override_options): Allow fixed-point modes in accumulators.
2261 (mips_pass_by_reference): Pass DQ, UDQ, DA, and UDA modes in registers.
2262 (mips_vector_mode_supported_p): Support V2HQmode, V2UHQmode, V2HAmode,
2263 V2UHAmode, V4QQmode, and V4UQQmode when TARGET_DSP.
2264 (mips_scalar_mode_supported_p): New function to accept fixed-point
2265 modes if the width is not greater than two BITS_PER_WORD.
2266 * config/mips/mips.h (SHORT_FRACT_TYPE_SIZE, FRACT_TYPE_SIZE,
2267 LONG_FRACT_TYPE_SIZE, LONG_LONG_FRACT_TYPE_SIZE,
2268 SHORT_ACCUM_TYPE_SIZE, ACCUM_TYPE_SIZE, LONG_ACCUM_TYPE_SIZE,
2269 LONG_LONG_ACCUM_TYPE_SIZE): Define.
2270 * config/mips/mips.md ("d"): Update mode attribute for fixed-point
2271 modes.
2272 ("IMODE"): New mode attribute.
2273 (mips-fixed.md): Include.
2274 * config/mips/mips-modes.def: Create VECTOR_MODES for FRACT, UFRACT,
2275 ACCUM, UACCUM.
2276 * config/mips/mips-fixed.md: New file.
2277
2278 2007-09-11 Ben Elliston <bje@au.ibm.com>
2279
2280 * config/spu/spu.md: Formatting fixes.
2281
2282 2007-09-10 Janis Johnson <janis187@us.ibm.com>
2283
2284 * config/dfp-bit.c (dfp_unary_func): Delete.
2285 (dfp_unary_op): Delete.
2286 (dfp_binary_op): Use decFloat functions instead of decNumber
2287 functions for binary operations.
2288 (d32_binary_op): Convert 32-bit operands to 64 bits for evaluation.
2289 (dnn_binary_op): Call dfp_binary_op with decFloat rather than
2290 DFP_C_TYPE.
2291 (dfp_compare_op): Use decFloat functions insteadof decNumber
2292 functions for comparisons.
2293 (d32_compare_op): Convert 32-bit operands to 64 bits for evaluation.
2294 (dnn_binary_op): Call dfp_compare_op with decFloat rather than
2295 DFP_C_TYPE.
2296 (DFP_ADD, DFP_SUB, DFP_MULTIPLE, DFP_DIVIDE): Use macros for
2297 call to dxx_binary_op and decFloat function.
2298 (DFP_EQ, DFP_NE, DFP_LT, DFP_GT, DFP_LE, DFP_GE): Use macros for
2299 calls to dxx_binary_op and decFloat function.
2300 * config/dfp-bit.h: Include decFloat header files.
2301 (decFloat, DFP_BINARY_OP, DFP_COMPARE_OP, DEC_FLOAT_ADD,
2302 DEC_FLOAT_SUBTRACT, DEC_FLOAT_MULTIPLY, DEC_FLOAT_DIVIDE,
2303 DEC_FLOAT_COMPARE, DEC_FLOAT_IS_ZERO, DEC_FLOAT_IS_NAN,
2304 DEC_FLOAT_IS_SIGNED: Define for each of 3 operand widths.
2305
2306 2007-09-10 Harsha Jagasia <harsha.jagasia@amd.com>
2307 Jan Sjodin <jan.sjodin@amd.com>
2308
2309 * tree-vect-analyze.c (vect_analyze_operations): Change
2310 comparison of loop iterations with threshold to less than
2311 or equal to instead of less than. Reduce
2312 min_scalar_loop_bound by one.
2313 * tree-vect-transform.c (vect_estimate_min_profitable_iters):
2314 Change prologue and epilogue iterations estimate to vf/2,
2315 when unknown at compile-time. Change versioning guard
2316 cost to taken_branch_cost. If peeling for alignment is
2317 unknown at compile-time, change peel guard costs to one
2318 taken branch and one not-taken branch per peeled loop.
2319 If peeling for alignment is known but number of scalar loop
2320 iterations is unknown at compile-time, change peel guard
2321 costs to one taken branch per peeled loop. Change the cost
2322 model equation to consider vector iterations as the loop
2323 iterations less the prologue and epilogue iterations.
2324 Change outside vector cost check to less than or equal to
2325 zero instead of equal to zero.
2326 (vect_do_peeling_for_loop_bound): Reduce
2327 min_scalar_loop_bound by one.
2328 * tree-vectorizer.h: Add TARG_COND_TAKEN_BRANCH_COST and
2329 TARG_COND_NOT_TAKEN_BRANCH_COST.
2330 * config/i386/i386.h (processor_costs): Add
2331 scalar_stmt_cost, scalar_load_cost, scalar_store_cost,
2332 vec_stmt_cost, vec_to_scalar_cost, scalar_to_vec_cost,
2333 vec_align_load_cost, vect_unalign_load_cost,
2334 vec_store_cost, cond_taken_branch_cost,
2335 cond_not_taken_branch_cost.
2336 Define macros for x86 costs.
2337 * config/i386/i386.c:
2338 (size_cost): Set scalar_stmt_cost, scalar_load_cost,
2339 scalar_store_cost, vec_stmt_cost, vec_to_scalar_cost,
2340 scalar_to_vec_cost, vec_align_load_cost,
2341 vect_unalign_load_cost, vec_store_cost,
2342 cond_taken_branch_cost, cond_not_taken_branch_cost to one.
2343 (i386_cost, i486_cost, pentium_cost, pentiumpro_cost,
2344 geode_cost, k6_cost, athlon_cost, pentium4_cost, nocona_cost,
2345 core2_cost, generic64_cost, generic32_cost): Set to default
2346 untuned costs.
2347 (k8_cost, amdfam10_cost): Costs for vectorization tuned.
2348 (x86_builtin_vectorization_cost): New.
2349
2350 2007-09-10 Janis Johnson <janis187@us.ibm.com>
2351 Ben Elliston <bje@au.ibm.com>
2352
2353 * dfp.c: Include decimal128Local.h;
2354 (dfp_byte_swap): Remove.
2355 (encode_decimal32, decode_decimal32): Don't handle endianness.
2356 (encode_decimal64, decode_decimal64): Ditto.
2357 (encode_decimal128, decode_decimal128): Ditto.
2358 * config/dfp-bit.c (host_to_ieee32, ieee_to_host_32): Ditto.
2359 (__swap64): Remove.
2360 (host_to_ieee_64, ieee_to_host_64): Don't handle endianness.
2361 (__swap128): Remove
2362 (host_to_ieee_128, ieee_to_host_128): Don't handle endianness.
2363 * Makefile.in (DECNUM_H): Add decimal128Local.h.
2364
2365 2007-09-10 David Daney <ddaney@avtrex.com>
2366
2367 * config/mips/mips.md (UNSPEC_MEMORY_BARRIER): New entry in
2368 define_constants.
2369 (memory_barrier): Rewrote as an insn that clobbers memory.
2370
2371 2007-09-10 Richard Sandiford <richard@codesourcery.com>
2372
2373 * config/mips/mips.c (mips_global_pointer): Check
2374 call_really_used_regs instead of call_used_regs.
2375 (mips_save_reg_p): Likewise. Save all call-saved registers
2376 if current_function_saves_all_registers. Fix indentation.
2377 No longer treat $18 as a special case.
2378 (compute_frame_size): Guard FPR loop with TARGET_HARD_FLOAT.
2379
2380 2007-09-10 Richard Sandiford <richard@codesourcery.com>
2381
2382 * config/mips/mips.h (MIPS_ARCH_FLOAT_SPEC): New macro.
2383 * config/mips/mips.c (mips_cpu_info_table): Mention it in the
2384 the introductory comment.
2385 (MIPS_MARCH_CONTROLS_SOFT_FLOAT): Delete.
2386 (override_options): Don't test for it.
2387 * config/mips/sde.h (MIPS_MARCH_CONTROLS_SOFT_FLOAT): Delete.
2388 (DRIVER_SELF_SPECS): Add MIPS_ARCH_FLOAT_SPEC.
2389 * config/mips/vr.h: As for config/mips/sde.h.
2390
2391 2007-09-10 Trevor Smigiel <trevor_smigiel@playstation.sony.com>
2392 Revital Eres <eres@il.ibm.com>
2393
2394 * target.h (struct gcc_target.sched): New field: sms_res_mii.
2395 (struct ddg): Define.
2396 * target-def.h (TARGET_SCHED_SMS_RES_MII): Define.
2397 (TARGET_SCHED): Add TARGET_SCHED_SMS_RES_MII.
2398 * config/spu/spu.c: Include ddg.h.
2399 (TARGET_SCHED_SMS_RES_MII): Define.
2400 (spu_sms_res_mii): New function to calculate mii.
2401 * modulo-sched (res_MII): Use it.
2402 * doc/tm.texi: Document TARGET_SCHED_SMS_RES_MII.
2403
2404 2007-09-10 Andreas Krebbel <krebbel1@de.ibm.com>
2405
2406 * config/s390/s390.c (s390_dump_pool): Create copy of constant
2407 pool entries since they might hold values that must not be shared.
2408
2409 2007-09-10 Uros Bizjak <ubizjak@gmail.com>
2410
2411 PR target/33369
2412 * gcc/config/i386/sse.md (ashr<mode>3): Change op2 mode to SImode.
2413 Use 'N' operand constraint for op2.
2414 (lshr<mode>3): Ditto.
2415 (ashl<mode>3): Ditto.
2416 (vec_shl_<mode>): Use const_0_to_255_mul_8_operand predicate for op2.
2417 (vec_shr_<mode>): Ditto.
2418 * gcc/config/i386/i386.c (ix86_expand_builtin) [IX86_BUILTIN_PSLL?128,
2419 IX86_BUILTIN_PSRA*?128, IX86_BUILTIN_PSRL?128]: Convert op1 to SImode.
2420
2421 2007-09-10 Andreas Krebbel <krebbel1@de.ibm.com>
2422
2423 * config/s390/s390.md ("fixuns_trunc<BFP:mode><GPR:mode>2"):
2424 Change mode macro in the last real_2expN parameter to uppercase.
2425
2426 2007-09-10 Michael Matz <matz@suse.de>
2427
2428 * tree-pass.h (pass_cselim): Declare new pass.
2429 * passes.c (init_optimization_passes): Link in pass_cselim.
2430 * tree-ssa-phiopt.c (tree_ssa_phiopt_worker): Renamed from
2431 tree_ssa_phiopt; add do_store_elim parameter, handle it by calling
2432 cond_store_replacement.
2433 (condstoretemp): New static variable.
2434 (cond_store_replacement): New function.
2435 (tree_ssa_phiopt, tree_ssa_cs_elim): New wrappers around
2436 tree_ssa_phiopt_worker.
2437 (struct name_to_bb): New.
2438 (get_non_trapping, name_to_bb_hash, name_to_bb_eq, add_or_mark_expr,
2439 nt_init_block, nt_fini_block): New static functions.
2440 (seen_ssa_names, nontrap_set): New static variables.
2441 (gate_cselim, pass_cselim): Define new pass.
2442 * common.opt (ftree-cselim): New flag.
2443 * toplev.c (process_options): Set flag_tree_cselim if required.
2444
2445 2007-09-10 Hans-Peter Nilsson <hp@axis.com>
2446
2447 * simplify-rtx.c (simplify_relational_operation_1): For recent
2448 canonicalization, don't recurse if op1 equals both PLUS arguments.
2449
2450 2007-09-09 David Daney <ddaney@avtrex.com>
2451
2452 * optabs.c (expand_sync_operation): Use plus insn if minus
2453 CONST_INT_P(val).
2454 (expand_sync_fetch_operation): Ditto.
2455
2456 2007-09-09 H.J. Lu <hongjiu.lu@intel.com>
2457
2458 * i386.md (*floatsisf2_mixed_vector): Use cvtdq2ps instead
2459 of cvtpq2ps.
2460 (*floatsisf2_sse_vector): Likewise.
2461
2462 2007-09-09 Krister Walfridsson <cato@df.lth.se>
2463
2464 * config/netbsd.h (HANDLE_PRAGMA_PACK_PUSH_POP): Define to 1.
2465
2466 2007-09-09 H.J. Lu <hongjiu.lu@intel.com>
2467
2468 * config/i386/i386.h (ix86_tune_indices): Rename
2469 X86_USE_VECTOR_CONVERTS to X86_TUNE_USE_VECTOR_CONVERTS.
2470 (TARGET_USE_VECTOR_CONVERTS): Updated.
2471 * config/i386/i386.c: Likewise.
2472
2473 2007-09-09 Sandra Loosemore <sandra@codesourcery.com>
2474 Nigel Stephens <nigel@mips.com>
2475
2476 * doc/invoke.texi (Overall Options): Add .sx file extension
2477 as a synonym for .S.
2478 * cppspec.c (known_suffixes): Likewise.
2479 * gcc.c (default_compilers): Likewise.
2480
2481 2007-09-09 Rask Ingemann Lambertsen <rask@sygehus.dk>
2482
2483 PR target/30315
2484 * config/i386/i386.h (CANONICALIZE_COMPARISON): Delete.
2485 * simplify-rtx.c (simplify_relational_operation_1): Add the
2486 canonicalization from i386.h.
2487 * doc/md.texi (Canonicalization of Instructions): Document it.
2488
2489 2007-09-09 Jan Hubicka <jh@suse.cz>
2490 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
2491
2492 * i386.h (ix86_tune_indices): Add X86_USE_VECTOR_CONVERTS.
2493 (TARGET_USE_VECTOR_CONVERTS): New.
2494 * i386.md: New post-reload splitters for converting SF to DF and DF to
2495 SF.
2496 (floatsi* expander): Special case vector conversions.
2497 (floatsisf2_mixed_vector, floatsisf2_sse_vector_nointernunit,
2498 floatsisf2_sse_vector_internunit, floatsisf2_sse_vector,
2499 floatsidf2_mixed_vector, floatsidf2_sse_vector): New.
2500 (floatsisf2_mixed, floatsisf2_sse, floatsidf2_mixed, floatsidf2_sse):
2501 Disable when doing vector converts.
2502 (floatsi<mode>2_i387): Disable when
2503 * sse.md (vec_dupv2df): Export.
2504 * i386.c (ix86_tune_features): Enable SSE conversions.
2505
2506 2007-09-09 Richard Guenther <rguenther@suse.de>
2507
2508 * tree-ssa-operands.c (add_virtual_operand): Only mark
2509 stores as has_volatile_ops if alias information is not available.
2510
2511 2007-09-09 Revital Eres <eres@il.ibm.com>
2512
2513 * doc/contrib.texi: Add myself.
2514
2515 2007-09-09 Ira Rosen <irar@il.ibm.com>
2516
2517 * tree-vectorizer.h (stmt_vinfo_set_inside_of_loop_cost,
2518 stmt_vinfo_set_outside_of_loop_cost): New functions.
2519 * tree-vect-transform.c (vect_get_cost_fields): Remove.
2520 (vect_model_simple_cost): Call
2521 stmt_vinfo_set_inside/outside_of_loop_cost to set the relevant cost
2522 field instead of calling vect_get_cost_fields.
2523 (vect_model_store_cost, vect_model_load_cost): Likewise.
2524
2525 2007-09-09 Revital Eres <eres@il.ibm.com>
2526
2527 * config/rs6000/rs6000.c (paired_init_builtins): Add const
2528 declaration to bdesc_paired_preds variable.
2529 (paired_expand_builtin): Likewise.
2530
2531 2007-09-09 Revital Eres <eres@il.ibm.com>
2532
2533 * dbgcnt.def (sms_sched_loop): New counter.
2534 * modulo-sched.c: Use sms_sched_loop instead of
2535 MAX_SMS_LOOP_NUMBER to determine the maximum number of loops to
2536 perform swing modulo scheduling on. Include dbgcnt.h.
2537 * Makefile.in: Add DBGCNT_H to modulo-sched.o.
2538 * params.def: Remove PARAM_MAX_SMS_LOOP_NUMBER.
2539
2540 2007-09-09 Uros Bizjak <ubizjak@gmail.com>
2541
2542 * config/i386/i386.md (X87MODEF12, SSEMODEF): Remove mode iterators.
2543 Substitute all uses with ...
2544 (MODEF): New mode iterator.
2545
2546 (fix_trunc<mode>_fisttp_i387_1): Remove operand constraints
2547 from pre-regalloc define_insn_and_split splitter pattern.
2548 (*fix_trunc<mode>_i387_1): Ditto.
2549 (*fistdi2_1): Ditto.
2550 (*fist<mode>2_1): Ditto.
2551 (frndintxf2_floor): Ditto.
2552 (*fist<mode>2_floor_1): Ditto.
2553 (frndintxf2_ceil): Ditto.
2554 (*fist<mode>2_ceil_1): Ditto.
2555 (frndintxf2_trunc): Ditto.
2556 (frndintxf2_mask_pm): Ditto.
2557
2558 (prologue): Use (const_int 0) as never generated filler insn.
2559 (epilogue): Ditto.
2560 (sibcall_epilogue): Ditto.
2561 (eh_return_si): Ditto.
2562 (eh_return_di): Ditto.
2563
2564 (add<mode>3): Rename from adddf3 and addsf3. Macroize expander
2565 using MODEF mode iterator.
2566 (sub<mode>3): Rename from subdf3 and subsf3. Macroize expander
2567 using MODEF mode iterator.
2568 (mul<mode>3): Rename from muldf3 and mulsf3. Macroize expander
2569 using MODEF mode iterator.
2570 (nearbyint<mode>2): Rename from nearbyintdf2 and nearbyintsf2.
2571 Macroize expander using MODEF mode iterator.
2572
2573 (zero_extendsidi2): Remove operand constraints from expander.
2574 (smuldi3_highpart): Ditto.
2575 (indirect_jump): Ditto.
2576 (tablejump): Ditto.
2577 (rsqrtsf2): Ditto.
2578 * config/i386/sse.md (storentv4sf): Ditto.
2579 (storentv2df): Ditto.
2580 (storentv2di): Ditto.
2581 (storentsi): Ditto.
2582 (sse2_cvtpd2ps): Ditto.
2583 (vec_interleave_highv16qi): Ditto.
2584 (vec_interleave_lowv16qi): Ditto.
2585 (vec_interleave_highv8hi): Ditto.
2586 (vec_interleave_lowv8hi): Ditto.
2587 (vec_interleave_highv4si): Ditto.
2588 (vec_interleave_lowv4si): Ditto.
2589 (vec_interleave_highv2di): Ditto.
2590 (vec_interleave_lowv2di): Ditto.
2591 (sse2_maskmovdqu): Ditto.
2592 * config/i386/mmx.md (mmx_maskmovq): Ditto.
2593
2594 2007-09-09 Ira Rosen <irar@il.ibm.com>
2595
2596 * tree-vectorizer.h (enum vect_def_type): Start enumeration from 1.
2597 (struct _slp_tree, struct _slp_instance): Define new data structures
2598 along macros for their access.
2599 (struct _loop_vec_info): Define new fields: strided_stores,
2600 slp_instances, and slp_unrolling_factor along macros for their access.
2601 (enum slp_vect_type): New.
2602 (struct _stmt_vec_info): Define new field, slp_type, and macros for
2603 its access.
2604 (STMT_VINFO_STRIDED_ACCESS): New macro.
2605 (vect_free_slp_tree): Declare.
2606 (vectorizable_load): Add an argument of type slp_tree.
2607 (vectorizable_store, vectorizable_operation, vectorizable_conversion,
2608 vectorizable_assignment): Likewise.
2609 (vect_model_simple_cost, vect_model_store_cost, vect_model_load_cost):
2610 Declare (make extern).
2611 * tree-vectorizer.c (new_stmt_vec_info): Initialize the new field.
2612 (new_loop_vec_info): Likewise.
2613 (destroy_loop_vec_info): Free memory allocated for SLP structures.
2614 * tree-vect-analyze.c: Include recog.h.
2615 (vect_update_slp_costs_according_to_vf): New.
2616 (vect_analyze_operations): Add argument for calls to vectorizable_ ()
2617 functions. For not pure SLP stmts with strided access check that the
2618 group size is power of 2. Update the vectorization factor according to
2619 SLP. Call vect_update_slp_costs_according_to_vf.
2620 (vect_analyze_group_access): New.
2621 (vect_analyze_data_ref_access): Call vect_analyze_group_access.
2622 (vect_free_slp_tree): New functions.
2623 (vect_get_and_check_slp_defs, vect_build_slp_tree, vect_print_slp_tree,
2624 vect_mark_slp_stmts, vect_analyze_slp_instance, vect_analyze_slp,
2625 vect_make_slp_decision, vect_detect_hybrid_slp_stmts,
2626 vect_detect_hybrid_slp): Likewise.
2627 (vect_analyze_loop): Call vect_analyze_slp, vect_make_slp_decision
2628 and vect_detect_hybrid_slp.
2629 * tree-vect-transform.c (vect_estimate_min_profitable_iters): Take
2630 SLP costs into account.
2631 (vect_get_cost_fields): New function.
2632 (vect_model_simple_cost): Make extern, add SLP parameter and handle
2633 SLP.
2634 (vect_model_store_cost, vect_model_load_cost): Likewise.
2635 (vect_get_constant_vectors): New function.
2636 (vect_get_slp_vect_defs, vect_get_slp_defs,
2637 vect_get_vec_defs_for_stmt_copy, vect_get_vec_defs_for_stmt_copy,
2638 vect_get_vec_defs): Likewise.
2639 (vectorizable_reduction): Don't handle SLP for now.
2640 (vectorizable_call): Don't handle SLP for now. Add argument to
2641 vect_model_simple_cost.
2642 (vectorizable_conversion): Handle SLP (call vect_get_vec_defs to
2643 get SLPed and vectorized defs). Fix indentation and spacing.
2644 (vectorizable_assignment): Handle SLP.
2645 (vectorizable_induction): Don't handle SLP for now.
2646 (vectorizable_operation): Likewise.
2647 (vectorizable_type_demotion): Add argument to
2648 vect_model_simple_cost.
2649 (vectorizable_type_promotion): Likewise.
2650 (vectorizable_store, vectorizable_load): Handle SLP.
2651 (vectorizable_condition): Don't handle SLP for now.
2652 (vect_transform_stmt): Add a new argument for SLP. Check that there is
2653 no SLP transformation required for unsupported cases. Add SLP
2654 argument for supported cases.
2655 (vect_remove_stores): New function.
2656 (vect_schedule_slp_instance, vect_schedule_slp): Likewise.
2657 (vect_transform_loop): Schedule SLP instances.
2658 * Makefile.in: (tree-vect-analyze.o): Depend on recog.h.
2659
2660 2007-09-09 Andrew Haley <aph@redhat.com>
2661
2662 * optabs.c (sign_expand_binop): Set libcall_gen = NULL in the fake
2663 signed optab.
2664
2665 2007-09-09 Hans-Peter Nilsson <hp@axis.com>
2666
2667 Divide REG_LABEL notes into REG_LABEL_OPERAND and REG_LABEL_TARGET.
2668 * doc/rtl.texi (Insns): Specify when a label_ref makes a jump_insn.
2669 Similar for what label_refs can go in the JUMP_TARGET field. Split
2670 REG_LABEL documentation into REG_LABEL_TARGET and REG_LABEL_OPERAND.
2671 * reload.c (find_reloads): Generate REG_LABEL_OPERAND, not
2672 REG_LABEL when replacing an operand with a LABEL_REF for a
2673 non-jump insn.
2674 (subst_reloads): When replacing a LABEL_REG with a register,
2675 instead of generating a REG_LABEL note, assert that there already
2676 is one or that the label is a known target for the insn.
2677 * rtlanal.c (computed_jump_p): Instead of looking for a REG_LABEL
2678 note, check the JUMP_LABEL field. Remove "else" after return.
2679 * reorg.c (emit_delay_sequence): Replace case for REG_LABEL with
2680 cases for REG_LABEL_OPERAND and REG_LABEL_TARGET.
2681 (fill_slots_from_thread): Handle both REG_LABEL_OPERAND and
2682 REG_LABEL_TARGET notes, including the JUMP_TARGET field on JUMP_P
2683 insns. Iterate over all notes; don't assume there's only one.
2684 * cse.c (recorded_label_ref): Adjust comment to refer to
2685 REG_LABEL_OPERAND.
2686 (cse_extended_basic_block): Do LABEL_REF check for all INSN_P
2687 insns, not just NONJUMP_INSN_P.
2688 (check_for_label_ref): For JUMP_P insns, check that the LABEL_REF
2689 isn't a jump target.
2690 * jump.c (rebuild_jump_labels): Adjust head comment.
2691 (init_label_info): Ditto. Remove REG_LABEL_OPERAND notes only;
2692 don't reset REG_LABEL_TARGET notes, including the JUMP_LABEL field.
2693 (mark_all_labels): For JUMP_P insns without a target, check if the
2694 the target is noted on the previous nonjump insn.
2695 (mark_jump_label_1): New function, guts from mark_jump_label.
2696 <case IF_THEN_ELSE>: Handle first operand as a non-target when
2697 marking jump target labels.
2698 <case LABEL_REF>: Adjust for whether to generate a
2699 REG_LABEL_TARGET or a REG_LABEL_OPERAND note.
2700 For 'E' format rtl, iterate in descending element order.
2701 (delete_related_insns): Handle both REG_LABEL_TARGET and
2702 REG_LABEL_OPERAND notes. For JUMP_P insns with labels with zero
2703 reference count, delete and fallthrough. Move finding-next-
2704 non-deleted insn last in the function. Look at all INSN_P insns
2705 for REG_LABEL_OPERAND notes.
2706 (redirect_jump_2): Assert that OLABEL equals the old JUMP_LABEL of
2707 JUMP.
2708 * print-rtl.c (print_rtx): For JUMP_P insns and a non-NULL
2709 JUMP_LABEL, output the INSN_UID of it.
2710 * gcse.c: Adjust comments as appropriate to say REG_LABEL_OPERAND
2711 and/or REG_LABEL_TARGET.
2712 (add_label_notes): Only add REG_LABEL_OPERAND notes. Put in line
2713 with jump.c copy by only adding notes for labels actually
2714 referenced in the insn.
2715 * emit-rtl.c (try_split): Don't assume only NONJUMP_INSN_P need
2716 usage count increment; handle all INSN_P trial insns.
2717 (emit_copy_of_insn_after): Change to not copy REG_LABEL_OPERAND
2718 notes.
2719 * rtl.h (struct rtx_def) <volatil>: Adjust to mention
2720 REG_LABEL_TARGET and REG_LABEL_OPERAND.
2721 (LABEL_REF_NONLOCAL_P): Allow REG_LABEL_TARGET and
2722 REG_LABEL_OPERAND.
2723 * combine.c (distribute_notes): Adjust for REG_LABEL_TARGET on
2724 JUMP_P insns and REG_LABEL_OPERAND everywhere.
2725 * sched-rgn.c (is_cfg_nonregular): Check for REG_LABEL_OPERANDS
2726 on all INSN_P insns.
2727 * reg-notes.def (LABEL_TARGET, LABEL_OPERAND): Split from LABEL.
2728 * cfgrtl.c (delete_insn): Adjust to handle REG_LABEL_TARGET and
2729 REG_LABEL_OPERAND notes.
2730 * reload1.c (calculate_needs_all_insns): Adjust comments.
2731 (set_label_offsets): Adjust to look for REG_LABEL_OPERAND notes.
2732 * config/alpha/alpha.md (split for load of an address into a
2733 four-insn sequence on Unicos/Mk): Adjust to use
2734 REG_LABEL_OPERAND.
2735 * config/sh/sh.md (sh_reorg, final_prescan_insn): Ditto.
2736
2737 2007-09-09 Laurynas Biveinis <laurynas.biveinis@gmail.com>
2738
2739 Revert:
2740 2007-09-05 Laurynas Biveinis <laurynas.biveinis@gmail.com>
2741 * regrename.c (copyprop_hardreg_forward_1): New variable next. Use
2742 FOR_BB_INSNS_SAFE instead of for loop.
2743 * cse.c (cse_extended_basic_block): Likewise.
2744 * postreload.c (reload_cse_regs_1): New variable next. Make sure
2745 that the for loop does not invoke NEXT_INSN on a deleted insn.
2746 * function.c (instantiate_virtual_regs): Likewise.
2747 * lower-subreg.c (remove_retval_note): Likewise.
2748 (decompose_multiword_subregs): Use FOR_BB_INSNS_SAFE instead of
2749 FOR_BB_INSNS.
2750 * emit-rtl.c (remove_insn): Set NEXT_INSN and PREV_INSN to NULL on
2751 a deleted insn.
2752 * cfgrtl.c (delete_insn): Set JUMP_LABEL to NULL on a deleted
2753 insn, if it's a jump.
2754 (try_redirect_by_replacing_jump): New variable jump_p. Call
2755 tablejump_p before delete_insn_chain.
2756 * reload1.c (reload): New variable next. Make sure that the for
2757 loop does not invoke NEXT_INSN on a deleted insn.
2758 (fixup_eh_region_note): Make the loop terminate if i becomes NULL.
2759 (delete_output_reload): New variable prev. Make sure the the for
2760 loops do not invoke PREV_INSN on a deleted insn.
2761
2762 2007-09-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
2763
2764 * pa/constraints.md: Remove 'X' from unused letters comment.
2765
2766 2007-09-08 Richard Guenther <rguenther@suse.de>
2767
2768 * tree-tailcall.c (find_tail_calls): If we don't have aliases
2769 computed check stmt_ann->references_memory instead of counting
2770 virtual operands.
2771
2772 2007-09-08 Segher Boessenkool <segher@kernel.crashing.org>
2773
2774 * cse.c (fold_rtx): Use validate_unshare_change() instead of
2775 validate_change() in one more case.
2776
2777 2007-09-08 Zdenek Dvorak <ook@ucw.cz>
2778
2779 PR tree-optimization/32283
2780 * tree-ssa-loop-ivopts.c (may_eliminate_iv): Use
2781 estimated_loop_iterations.
2782 (determine_use_iv_cost_condition): Decrease cost of expressions
2783 used in iv elimination.
2784
2785 2007-09-08 Richard Guenther <rguenther@suse.de>
2786
2787 * tree-cfg.c (verify_gimple_expr): Avoid building new
2788 pointer types, use TYPE_POINTER_TO if available instead.
2789
2790 2007-09-08 Uros Bizjak <ubizjak@gmail.com>
2791
2792 PR target/33329
2793 PR rtl-optimization/26449
2794 * config/i386/sse.md (mulv4si3): Do not expand sse2 sequence.
2795 (*sse2_mulv4si3): New define_insn_and_split pattern. Split insn in
2796 split1 pass.
2797 (mulv16qi3): Implement as define_insn_and_split pattern instead of
2798 define_expand. Split insn in split1 pass.
2799 (mulv2di3): Ditto.
2800
2801 2007-09-08 Dorit Nuzman <dorit@il.ibm.com>
2802
2803 PR tree-optimization/33301
2804 * tree-vect-analyze (analyze_operations): Look at the type of the rhs
2805 when relevant.
2806
2807 2007-09-07 Zdenek Dvorak <ook@ucw.cz>
2808
2809 PR tree-optimization/32183
2810 * Makefile.in (tree-ssa-reassoc.o): Also depend on $(CFGLOOP_H).
2811
2812 * tree-ssa-reassoc.c: Include cfgloop.h.
2813 (is_reassociable_op): Add a loop argument and return true only
2814 for inside loop.
2815 (linearize_expr): Updated.
2816 (should_break_up_subtract): Likewise.
2817 (linearize_expr_tree): Likewise.
2818 (init_reassoc): Call loop_optimizer_init with
2819 AVOID_CFG_MODIFICATIONS. Remove calculate_dominance_info call
2820 with CDI_DOMINATORS.
2821 (fini_reassoc): Call loop_optimizer_finalize.
2822
2823 2007-09-07 Sterling Augustine <sterling@tensilica.com>
2824
2825 * config/xtensa/lib2funcs.S (__xtensa_sync_caches): Use an ISYNC even
2826 if there is no i-cache.
2827
2828 2007-09-07 Richard Guenther <rguenther@suse.de>
2829
2830 Reapply
2831 2007-09-06 Richard Guenther <rguenther@suse.de>
2832
2833 PR tree-optimization/32586
2834 * tree-ssa-sccvn.c (simplify_binary_expression): Avoid
2835 folding if nothing changed.
2836 (simplify_unary_expression): New function. Do tree combining
2837 on conversion like codes.
2838 (try_to_simplify): Call it.
2839
2840 2007-09-07 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
2841
2842 PR target/33286
2843 * gthr-posix.h (__gthread_active_p): Add implementation for hppa-hpux.
2844 (__gthread_active,__gthread_start, __gthread_active_init): New.
2845 * gthr-posix95.h: Likewise.
2846
2847 2007-09-07 Roman Zippel <zippel@linux-m68k.org>
2848
2849 * function.h (struct function): Rename calls_unwind_init
2850 to saves_all_registers.
2851 (current_function_saves_all_registers): Renamed from
2852 current_function_calls_unwind_init.
2853 * reload1.c (reload): Set current_function_saves_all_registers.
2854 * except.c (expand_builtin_unwind_init): Likewise.
2855 * config/m68k/m68k.c (m68k_save_reg): Use
2856 current_function_saves_all_registers to save pic register.
2857
2858 2007-09-07 Janis Johnson <janis187@us.ibm.com>
2859
2860 config/m68k/m68k.c (floating_exact_log2): Update call to real_2expN.
2861 config/s390/s390.md (fixuns_trunc<BFP:mode><GPR:mode>2): Ditto.
2862
2863 Reapply reverted changes:
2864
2865 2007-09-06 Jan Hubicka <jh@suse.cz>
2866
2867 * config/i386.c (ix86_expand_lround, ix86_expand_round): Update call
2868 of real_2expN.
2869
2870 2007-09-06 Richard Sandiford <richard@codesourcery.com>
2871
2872 * config/mips/mips.md (fixuns_truncdfsi2, fixuns_truncdfdi2)
2873 (fixuns_truncsfsi2, fixuns_truncsfdi2): Update calls to real_2expN.
2874
2875 2007-09-05 Janis Johnson <janis187@us.ibm.com>
2876
2877 * optabs.c (expand_float): Convert unsigned integer as signed only
2878 if it provides sufficient accuracy; add mode argument to real_2expN.
2879 (expand_fix): Fix comment typos; extend binary float into mode
2880 wider than destination for converion to unsigned integer; add mode
2881 argument to real_2expN.
2882 * real.c (real_2expN): Add mode argument to special-case decimal
2883 float values.
2884 * real.h (real_2expN): Ditto.
2885 * fixed-value.c (check_real_for_fixed_mode): Add mode argument to
2886 real_2expN.
2887 (fixed_from_string): Ditto.
2888 (fixed_to_decimal): Ditto.
2889 (fixed_convert_from_real): Ditto.
2890 (real_convert_from_fixed): Ditto.
2891 * config/rs6000/rs6000.md (FP): Include DD and TD modes.
2892 * config/rs6000/dfp.md (extendddtd2, adddd3, addtd3, subdd3, subtd3,
2893 muldd3, multd3, divdd3, divtd3, cmpdd_internal1, cmptd_internal1,
2894 floatditd2, ftruncdd2, fixdddi2, ftrunctd2, fixddi2): New.
2895
2896 2007-09-07 Diego Novillo <dnovillo@google.com>
2897
2898 * tree-flow.h (const_block_stmt_iterator): Remove.
2899 Update all users to use block_stmt_iterator.
2900 * tree-iterator.h (const_tree_stmt_iterator): Remove.
2901 Update all users to use tree_stmt_iterator.
2902
2903 2007-09-07 Sandra Loosemore <sandra@codesourcery.com>
2904
2905 * config/mips/mips.c (mips_set_current_function): Temporarily
2906 make this a no-op to fix bootstrap errors, pending rewrite.
2907
2908 2007-09-07 Jan Hubicka <jh@suse.cz>
2909
2910 * reorg.c (dbr_schedule): Move code removing placeholder USEs later
2911 in the pass.
2912
2913 2007-09-07 Dorit Nuzman <dorit@il.ibm.com>
2914
2915 PR tree-optimization/33299
2916 * tree-vect-transform.c (vect_create_epilog_for_reduction): Update
2917 uses for all relevant loop-exit phis, not just the first.
2918
2919 2007-09-07 Richard Guenther <rguenther@suse.de>
2920
2921 PR middle-end/33330
2922 * tree-ssa-operands.c (access_can_touch_variable): An access
2923 of the form (*p)[0] can touch a variable of same size.
2924
2925 2007-09-07 Jan Hubicka <jh@suse.cz>
2926
2927 * passes.c (init_optimization_passes): Add simple dce and addressable
2928 passes.
2929 * tree-ssa.c (execute_update_addresses_taken): New function.
2930 (pass_update_address_taken): New.
2931 * tree-ssa-dse.c (execute_simple_dse): New function.
2932 (pass_simple_dse): New.
2933 * tree-pass.h (pass_simple_dse, pass_update_address_taken): Declare.
2934
2935 2007-09-07 Tobias Burnus <burnus@net-b.de>
2936
2937 PR middle-end/33321
2938 * doc/invoke.texi: Fix -Wstrict-overflow= table.
2939
2940 2007-09-07 Richard Guenther <rguenther@suse.de>
2941
2942 Revert
2943 2007-09-06 Richard Guenther <rguenther@suse.de>
2944
2945 PR tree-optimization/32586
2946 * tree-ssa-sccvn.c (simplify_binary_expression): Avoid
2947 folding if nothing changed.
2948 (simplify_unary_expression): New function. Do tree combining
2949 on conversion like codes.
2950 (try_to_simplify): Call it.
2951
2952 2007-09-07 Richard Guenther <rguenther@suse.de>
2953 Uros Bizjak <ubizjak@gmail.com>
2954
2955 PR tree-optimization/32821
2956 * tree_if_conv.c (combine_blocks): Use alloc_stmt_list instead of
2957 NULL in the call to set_bb_stmt_list.
2958
2959 2007-09-07 Richard Sandiford <richard@codesourcery.com>
2960
2961 * config/mips/mips.c (build_mips16_call_stub): Emit all direct
2962 float calls here, rather than leaving some to the caller.
2963 Use call_internal_direct and call_value_internal_direct.
2964 * config/mips/mips.md (call_internal_direct): New pattern.
2965 (call_value_internal_direct): Likewise.
2966
2967 2007-09-07 Richard Sandiford <richard@codesourcery.com>
2968
2969 * config/mips/mips.c (mips_base_move_loop_invariants): New variable.
2970 (mips_set_mips16_mode): Restore flag_move_loop_invariants, then set
2971 to 0 for MIPS16.
2972 (override_options): Set mips_base_move_loop_invariants.
2973
2974 2007-09-07 Richard Sandiford <richard@codesourcery.com>
2975
2976 * config/mips/mips.opt (mcode-readable=): Move to keep list
2977 alphabetical.
2978
2979 2007-09-07 Richard Sandiford <richard@codesourcery.com>
2980
2981 * doc/invoke.texi: Document the MIPS -mlocal-sdata, -mextern-sdata
2982 and -mgpopt options. Adjust the -G documentation to match.
2983 * config/mips/mips.opt (mextern-data, mgpopt, mlocal-data): New.
2984 * config/mips/mips.c (mips_rtx_constant_in_small_data_p): New
2985 function, split out from mips_classify_symbol. Return false for
2986 !TARGET_LOCAL_SDATA.
2987 (mips_classify_symbol): Call mips_rtx_constant_in_small_data_p.
2988 Only use GP-relative accesses for non-pool symbols if TARGET_GPOPT.
2989 (override_options): Check whether the -mgpopt setting is consistent
2990 with the other flags.
2991 (symbolic_expression_p): Delete.
2992 (mips_select_rtx_section): Use mips_rtx_constant_in_small_data_p
2993 and default_elf_select_rtx_section.
2994 (mips_in_small_data_p): Honor section attributes for MIPS16 too.
2995 Return false for local data unless TARGET_LOCAL_SDATA. Likewise
2996 external data and TARGET_EXTERN_SDATA.
2997
2998 2007-09-07 Tobias Burnus <burnus@net-b.de>
2999
3000 PR fortran/33303
3001 * doc/cpp.texi (Common Predefined Macros): Add __GFORTRAN__.
3002
3003 2007-09-05 Laurynas Biveinis <laurynas.biveinis@gmail.com>
3004
3005 * regrename.c (copyprop_hardreg_forward_1): New variable next. Use
3006 FOR_BB_INSNS_SAFE instead of for loop.
3007 * cse.c (cse_extended_basic_block): Likewise.
3008 * postreload.c (reload_cse_regs_1): New variable next. Make sure
3009 that the for loop does not invoke NEXT_INSN on a deleted insn.
3010 * function.c (instantiate_virtual_regs): Likewise.
3011 * lower-subreg.c (remove_retval_note): Likewise.
3012 (decompose_multiword_subregs): Use FOR_BB_INSNS_SAFE instead of
3013 FOR_BB_INSNS.
3014 * emit-rtl.c (remove_insn): Set NEXT_INSN and PREV_INSN to NULL on
3015 a deleted insn.
3016 * cfgrtl.c (delete_insn): Set JUMP_LABEL to NULL on a deleted
3017 insn, if it's a jump.
3018 (try_redirect_by_replacing_jump): New variable jump_p. Call
3019 tablejump_p before delete_insn_chain.
3020 * reload1.c (reload): New variable next. Make sure that the for
3021 loop does not invoke NEXT_INSN on a deleted insn.
3022 (fixup_eh_region_note): Make the loop terminate if i becomes NULL.
3023 (delete_output_reload): New variable prev. Make sure the the for
3024 loops do not invoke PREV_INSN on a deleted insn.
3025
3026 2007-09-06 Zdenek Dvorak <ook@ucw.cz>
3027
3028 * cgraphbuild.c (rebuild_cgraph_edges): Export.
3029 * cgraph.h (rebuild_cgraph_edges): Declare.
3030 * tree-pass.h (pass_expand_omp_ssa): New.
3031 * omp-low.c (find_omp_clause): Export.
3032 (copy_var_decl): Split from omp_copy_decl_2.
3033 (build_omp_barrier): Return the call to emit instead of emitting
3034 it directly.
3035 (lower_rec_input_clauses, expand_omp_single): Gimplify the result of
3036 build_omp_barrier.
3037 (extract_omp_for_data, expand_parallel_call, expand_omp_parallel,
3038 expand_omp_for_generic, expand_omp_for_static_nochunk,
3039 expand_omp_for_static_chunk, expand_omp_for, expand_omp_sections):
3040 Adapted to work on SSA form.
3041 (execute_expand_omp): Do not invalidate dominance information.
3042 (gate_expand_omp): Do not run with -fopenmp-ssa flag.
3043 (gate_expand_omp_ssa, pass_expand_omp_ssa): New.
3044 * gimplify.c (gimplify_omp_for): Ensure that the control variable is
3045 a gimple_reg.
3046 (force_gimple_operand): Allow gimplifying code expressions without
3047 value.
3048 * tree-predcom.c (mark_virtual_ops_for_renaming): Handle phi nodes.
3049 * common.opt (fopenmp-ssa): New.
3050 * tree-flow.h (find_omp_clause, copy_var_decl): Declare.
3051 * Makefile.in (tree-cfg.o): Add TREE_INLINE_H dependency.
3052 * tree-cfg.c: Include tree-inline.h.
3053 (struct move_stmt_d): Replace vars_to_remove by vars_map field.
3054 (replace_by_duplicate_decl, replace_ssa_name,
3055 mark_virtual_ops_in_region): New functions.
3056 (move_stmt_r, move_block_to_fn, move_sese_region_to_fn): Adapted
3057 to work on SSA form.
3058 * passes.c (init_optimization_passes): Add pass_expand_omp_ssa pass.
3059 * tree-ssa-operands.c (get_expr_operands): Handle operands of OMP
3060 constructs.
3061
3062 2007-09-06 Laurynas Biveinis <laurynas.biveinis@gmail.com>
3063
3064 * tree-loop-linear.c: Include obstack.h.
3065 (linear_transform_loops): New obstack lambda_obstack.
3066 Initialize it, pass it to gcc_loopnest_to_lambda_loopnest,
3067 lambda_loopnest_transform, lambda_loopnest_to_gcc_loopnest calls
3068 and free afterwards.
3069 * lambda.h (struct obstack): New forward declaration.
3070 (lambda_linear_expression_new): New parameter of type struct
3071 obstack *.
3072 (lambda_loopnest_new): Likewise.
3073 (lambda_loopnest_transform): Likewise.
3074 (lambda_body_vector_new): Likewise.
3075 (lambda_body_vector_compute_new): Likewise.
3076 (gcc_loopnest_to_lambda_loopnest): Likewise.
3077 (lambda_loopnest_to_gcc_loopnest): Likewise.
3078 * lambda-code.c: Include obstack.h.
3079 (lambda_lattice_new): New parameter lambda_obstack. Use it for
3080 allocation of ret.
3081 (lambda_body_vector_new): Likewise.
3082 (lambda_linear_expression_new): Likewise.
3083 (lambda_lattice_new): Likewise.
3084 (lambda_loopnest_new): Likewise. Additionally use obstack to
3085 allocate LN_LOOPS(ret).
3086 (lambda_lattice_compute_base): New parameter lambda_obstack. Pass
3087 it to lambda_lattice_new.
3088 (lambda_body_vector_compute_new): New parameter lambda_obstack.
3089 Pass it to lambda_body_vector_new.
3090 (lambda_lattice_compute_base): New paramater lambda_obstack. Pass
3091 it to lambda_lattice_new.
3092 (compute_nest_using_fourier_motzkin): New parameter lambda_obstack.
3093 Pass it to lambda_loopnest_new, lambda_linear_expression_new.
3094 (lambda_compute_target_space): Likewise.
3095 (lambda_compute_auxillary_space): New parameter lambda_obstack.
3096 Pass it to lambda_lattice_compute_base and
3097 compute_nest_using_fourieer_motzkin.
3098 (lambda_loopnest_transform): New parameter lambda_obstack. Pass
3099 it to lambda_lattice_compute_base, lambda_lattice_auxillary_space
3100 and lambda_lattice_compute_target_space.
3101 (gcc_tree_to_linear_expression): Nex parameter lambda_obstack.
3102 Pass it to lambda_linear_expression_new.
3103 (gcc_loop_to_lambda_loop): New parameter lambda_obstack. Pass it
3104 to gcc_tree_to_linear_expression.
3105 (gcc_loopnest_to_lambda_loopnest): New parameter lambda_obstack.
3106 Pass it to gcc_loop_to_lambda_loop and lambda_loopnest_new.
3107 (lambda_loopnest_to_gcc_loopnest): New parameter lambda_obstack.
3108 Pass it to lambda_body_vector_new and
3109 lambda_body_vector_compute_new.
3110 * Makefile.in (tree-loop-linear.o): Add $(OBSTACK_H) dependency.
3111 (lambda-code.o): Likewise.
3112
3113 2007-09-06 Chao-ying Fu <fu@mips.com>
3114
3115 * ginclude/stdfix.h: New file.
3116 * Makefile.in (USER_H): Add $(srcdir)/ginclude/stdfix.h.
3117 (convert.o): Add dependence on fixed-value.h.
3118 * c-convert.c (convert): Support FIXED_POINT_TYPE.
3119 * c-cppbuiltin.c (builtin_define_fixed_point_constants): New function
3120 to define fixed-point constants.
3121 (c_cpp_builtins): Define fixed-point constants.
3122 * convert.c (fixed-value.h): New include.
3123 (convert_to_real): Update comment to include fixed-point.
3124 Support FIXED_POINT_TYPE.
3125 (convert_to_integer): Update comment to include fixed-point.
3126 Support FIXED_POINT_TYPE.
3127 (convert_to_complex): Support FIXED_POINT_TYPE.
3128 (convert_to_fixed): New function.
3129 * convert.h (convert_to_fixed): Declare.
3130 * genopinit.c: Add comment about $Q for only fixed-point modes.
3131 (optabs): Add fract_optab, fractuns_optab, satfract_optab,
3132 satfractuns_optab, add_optab, ssadd_optab, usadd_optab, sub_optab,
3133 sssub_optab, ussub_optab, smul_optab, ssmul_optab, usmul_optab,
3134 ssmadd_widen_optab, usmadd_widen_optab, ssdiv_optab, udiv_optab,
3135 usdiv_optab, ssashl_optab, usashl_optab, neg_optab, ssneg_optab,
3136 usneg_optab for fixed-point modes.
3137 (gen_insn): Add force_fixed to track the $Q format for all fixed-point
3138 modes.
3139 * optabs.c (optab_for_tree_code): For *DIV_EXPR, LSHIFT_EXPR,
3140 PLUS_EXPR, MINUS_EXPR, MULT_EXPR, NEGATE_EXPR, return signed or
3141 unsigned saturation optabs, when type is saturating.
3142 (shift_optab_p): Return true for SS_ASHIFT or US_ASHIFT.
3143 (expand_fixed_convert): New function.
3144 (gen_fixed_libfunc, gen_signed_fixed_libfunc,
3145 gen_unsigned_fixed_libfunc, gen_int_fp_fixed_libfunc,
3146 gen_int_fp_signed_fixed_libfunc, gen_int_fixed_libfunc,
3147 gen_int_signed_fixed_libfunc, gen_int_unsigned_fixed_libfunc,
3148 gen_fract_conv_libfunc, gen_fractuns_conv_libfunc,
3149 gen_satfract_conv_libfunc, gen_satfractuns_conv_libfunc): New
3150 functions.
3151 (init_optabs): Initialize ssadd_optab, usadd_optab, sssub_optab,
3152 ussub_optab, ssmul_optab, usmul_optab, ssmadd_widen_optab,
3153 usmadd_widen_optab, ssmsub_widen_optab, usmsub_widen_optab,
3154 ssdiv_optab, usdiv_optab, ssashl_optab, usashl_optab, ssneg_optab,
3155 usneg_optab, fract_optab, fractuns_optab, satfract_optab,
3156 satfractuns_optab.
3157 Initialize fixed-point libraries, including add, ssadd, usadd, sub,
3158 sssub, ussub, mul, ssmul, usmul, div, ssdiv, udiv, usdiv, ashl,
3159 ssashl, usashl, ashr, lshr, neg, ssneg, usneg, cmp, fract, satfract,
3160 fractuns, satfractuns.
3161 * optabs.h (enum optab_index): Add OTI_ssadd, OTI_usadd, OTI_sssub,
3162 OTI_ussub, OTI_ssmul, OTI_usmul, OTI_ssdiv, OTI_usdiv, OTI_ssneg,
3163 OTI_usneg, OTI_ssashl, OTI_usashl, OTI_ssmadd_widen, OTI_usmadd_widen,
3164 OTI_ssmsub_widen, OTI_usmsub_widen.
3165 (ssadd_optab, usadd_optab, sssub_optab, ussub_optab, ssmul_optab,
3166 usmul_optab, ssdiv_optab, usdiv_optab, ssneg_optab, usneg_optab,
3167 ssashl_optab, usashl_optab, ssmadd_widen_optab, usmadd_widen_optab,
3168 umsub_widen_optab, usmsub_widen_optab): Define.
3169 (enum convert_optab_index): Add COI_fract, COI_fractuns, COI_satfract,
3170 COI_satfractuns.
3171 (fract_optab, fractuns_optab, satfract_optab, satfractuns_optab):
3172 Define.
3173 (expand_fixed_convert): Declare.
3174 * expr.c (convert_move): Support the move of fixed-point modes.
3175 (emit_move_insn_1): Handle fixed-point mode to move via integer.
3176 (categorize_ctor_elements_1): Handle FIXED_CST.
3177 (count_type_elements): Handle FIXED_POINT_TYPE.
3178 (expand_expr_real_1): For VECTOR_CST, check MODE_VECTOR_FRACT,
3179 MODE_VECTOR_UFRACT, MODE_VECTOR_ACCUM, MODE_VECTOR_UACCUM.
3180 Support FIXED_CST.
3181 For PLUS_EXPR and MINUS_EXPR, support saturating and non-saturating
3182 multiply and add/subtract for fixed-point types.
3183 For MULT_EXPR, *DIV_EXPR, *SHIFT_EXPR, if the mode if a fixed-point
3184 mode, we jump to binop directly.
3185 Support FIXED_CONVERT_EXPR.
3186 (do_store_flag): Check FIXED_CST to put a constant second.
3187 (vector_mode_valid_p): Handle MODE_VECTOR_FRACT,
3188 MODE_VECTOR_UFRACT, MODE_VECTOR_ACCUM, MODE_VECTOR_UACCUM.
3189 (const_vector_from_tree): Support FIXED_CST.
3190 * doc/extend.texi (Fixed-Point): New node.
3191 * doc/md.texi (ssadd, usadd, sssub, ussub, ssmul, usmul, ssdiv, usdiv,
3192 ssmadd, usmadd, ssmsub, usmsub, ssashl, usashl, ssneg, usneg, fract,
3193 satfract, fractuns, satfractuns): Document them.
3194
3195 2007-09-07 Bernd Schmidt <bernd.schmidt@analog.com>
3196
3197 * config/bfin/bfin.h (PREFERRED_RELOAD_CLASS): Don't reload autoinc
3198 addresses into I registers.
3199
3200 2007-09-06 Jan Hubicka <jh@suse.cz>
3201 Andreas Tobler <a.tobler@schweiz.org>
3202
3203 * config/darwin.c (machopic_indirect_data_reference): Avoid invalid
3204 sharing.
3205 (machopic_legitimize_pic_address): Likewise.
3206
3207 2007-09-06 Andrew Pinski <andrew_pinski@playstation.sony.com>
3208 Jan Hubicka <jh@suse.cz>
3209
3210 * config/spu/spu.md (floatsidf2): Use convert_optab_libfunc
3211 instead of ufloat_optab->handlers directly.
3212 (floatdidf2): Likewise.
3213
3214 2007-09-06 Sandra Loosemore <sandra@codesourcery.com>
3215
3216 * config/mips/mips.c: Include diagnostic.h.
3217 (mips_set_current_function): Check errorcount and sorrycount
3218 before generating RTL.
3219
3220 2007-09-06 Richard Sandiford <richard@codesourcery.com>
3221
3222 PR target/33256
3223 * config/mips/mips.c (mips_classify_symbolic_expression): New function.
3224 (mips_classify_address): Use it instead of mips_symbolic_constant_p.
3225 (print_operand_reloc): Likewise.
3226
3227 2007-09-06 Janis Johnson <janis187@us.ibm.com>
3228
3229 Revert:
3230
3231 2007-09-06 Jan Hubicka <jh@suse.cz>
3232
3233 * i386.c (ix86_expand_lround, ix86_expand_round): Update call of
3234 real_2expN.
3235
3236 2007-09-06 Richard Sandiford <richard@codesourcery.com>
3237
3238 * config/mips/mips.md (fixuns_truncdfsi2, fixuns_truncdfdi2)
3239 (fixuns_truncsfsi2, fixuns_truncsfdi2): Update calls to real_2expN.
3240
3241 2007-09-05 Janis Johnson <janis187@us.ibm.com>
3242
3243 * optabs.c (expand_float): Convert unsigned integer as signed only
3244 if it provides sufficient accuracy; add mode argument to real_2expN.
3245 (expand_fix): Fix comment typos; extend binary float into mode
3246 wider than destination for converion to unsigned integer; add mode
3247 argument to real_2expN.
3248 * real.c (real_2expN): Add mode argument to special-case decimal
3249 float values.
3250 * real.h (real_2expN): Ditto.
3251 * fixed-value.c (check_real_for_fixed_mode): Add mode argument to
3252 real_2expN.
3253 (fixed_from_string): Ditto.
3254 (fixed_to_decimal): Ditto.
3255 (fixed_convert_from_real): Ditto.
3256 (real_convert_from_fixed): Ditto.
3257 * config/rs6000/rs6000.md (FP): Include DD and TD modes.
3258 * config/rs6000/dfp.md (extendddtd2, adddd3, addtd3, subdd3, subtd3,
3259 muldd3, multd3, divdd3, divtd3, cmpdd_internal1, cmptd_internal1,
3260 floatditd2, ftruncdd2, fixdddi2, ftrunctd2, fixddi2): New.
3261
3262 2007-09-06 Tom Tromey <tromey@redhat.com>
3263
3264 * tree-cfg.c (remove_bb): Only warn if line is non-zero.
3265 * c-pch.c (c_common_read_pch): Restore current location after
3266 reading PCH file.
3267 * tree.c (expand_location): Update.
3268 (expr_filename): Changed return type. Unified the two cases.
3269 (expr_lineno): Likewise.
3270 (annotate_with_file_line): Don't use EXPR_LINENO and EXPR_FILENAME
3271 as lvalues.
3272 * toplev.c (line_table): Changed type.
3273 (general_init): Update.
3274 (realloc_for_line_map): New function.
3275 (general_init): Allocate line_table using GC.
3276 * fix-header.c (line_table): Changed type.
3277 (read_scan_file): Update.
3278 (read_scan_file): Update.
3279 * c-ppoutput.c (maybe_print_line): Update.
3280 (print_line): Update.
3281 (cb_line_change): Update.
3282 (cb_define): Update.
3283 (pp_file_change): Update.
3284 * c-opts.c (c_common_init_options): Update.
3285 (finish_options): Update.
3286 (push_command_line_include): Update.
3287 * c-lex.c (cb_line_change): Update.
3288 (cb_def_pragma): Update.
3289 (cb_define): Update.
3290 (cb_undef): Update.
3291 (c_lex_with_flags): Use cpp_get_token_with_location.
3292 * input.h (line_table): Changed type.
3293 (location_from_locus): New macro.
3294 * tree.h (EXPR_FILENAME): No longer an lvalue.
3295 (EXPR_LINENO): Likewise.
3296 (expr_locus, set_expr_locus): Declare separately for
3297 USE_MAPPED_LOCATION.
3298 (expr_filename, expr_lineno): Changed return type.
3299 * gimplify.c (tree_to_gimple_tuple): Use SET_EXPR_LOCUS.
3300 * cfgexpand.c (expand_gimple_cond_expr): Use location_from_locus.
3301 (expand_gimple_basic_block): Likewise.
3302 * final.c (final_scan_insn): Use expanded_location.
3303
3304 2007-09-06 Richard Guenther <rguenther@suse.de>
3305
3306 PR tree-optimization/32586
3307 * tree-ssa-sccvn.c (simplify_binary_expression): Avoid
3308 folding if nothing changed.
3309 (simplify_unary_expression): New function. Do tree combining
3310 on conversion like codes.
3311 (try_to_simplify): Call it.
3312 * builtins.c (fold_builtin_cexp): Fold the built expressions.
3313 * fold-const.c (fold_unary): Test result of get_callee_fndecl().
3314
3315 2007-09-06 Jan Hubicka <jh@suse.cz>
3316
3317 PR target/33318
3318 * cse.c (fold_rtx): Avoid invalid sharing.
3319
3320 2007-09-06 Richard Sandiford <richard@codesourcery.com>
3321
3322 * config/mips/mips.md (fixuns_truncdfsi2, fixuns_truncdfdi2)
3323 (fixuns_truncsfsi2, fixuns_truncsfdi2): Update calls to real_2expN.
3324
3325 2007-09-06 Revital Eres <eres@il.ibm.com>
3326
3327 * config/rs6000/rs6000.c (rs6000_legitimate_offset_address_p):
3328 Fix offsettable memory reference for 750CL.
3329
3330 2007-09-06 Pat Haugen <pthaugen@us.ibm.com>
3331
3332 * reload.c (find_reloads_address_1): Try to preserve original
3333 base/index regclass of operands.
3334 * regrename.c (scan_rtx_address): Likewise.
3335 (replace_oldest_value_addr): Likewise.
3336
3337 2007-09-06 Richard Guenther <rguenther@suse.de>
3338
3339 PR tree-optimization/33302
3340 * domwalk.c (walk_dominator_tree): The exit block is
3341 interesting even if it is not reachable.
3342
3343 2007-09-06 Richard Sandiford <richard@codesourcery.com>
3344
3345 PR middle-end/33306
3346 * optabs.c (avoid_expensive_constant): Do nothing if MODE is VOIDmode.
3347
3348 2007-09-06 Basile Starynkevitch <basile@starynkevitch.net>
3349
3350 * cfg.c (dump_bb_info, dump_edge_info): Added cfun test for
3351 robustness.
3352
3353 2007-09-05 Ian Lance Taylor <iant@google.com>
3354
3355 * tree-pretty-print.c (dump_decl_name): Cast LABEL_DECL_UID to int
3356 when printing.
3357 (dump_generic_node): Likewise.
3358 * print-rtl.c (print_decl_name): Likewise.
3359 * print-tree.c (print_node_brief): Likewise.
3360 (print_node): Likewise.
3361 * Makefile.in (RTL_BASE_H): Add alias.h.
3362 (TREE_H): Likewise.
3363
3364 2007-09-06 Jesper Nilsson <jesper.nilsson@axis.com>
3365
3366 * longlong.h [__CRIS_arch_version >= 8] (count_trailing_zeros):
3367 Defined.
3368 * config/cris/cris.md (ctzsi2, cris_swap_bits): Implemented.
3369 * config/cris/cris.h (CTZ_DEFINED_VALUE_AT_ZERO): Defined.
3370
3371 2007-09-06 Jie Zhang <jie.zhang@analog.com>
3372
3373 * config.gcc (tm_file): Add linux.h for bfin*-uclinux*.
3374 (tm_defines): Define UCLIBC_DEFAULT to 1.
3375 (extra_options): Add linux.opt.
3376 * config/bfin/linux.h (CPLUSPLUS_CPP_SPEC): Don't define.
3377 (CRT_CALL_STATIC_FUNCTION): Likewise.
3378 (NO_IMPLICIT_EXTERN_C): Likewise.
3379 (TARGET_OS_CPP_BUILTINS): Define as LINUX_TARGET_OS_CPP_BUILTINS.
3380 * config/bfin/elf.h (OBJECT_FORMAT_ELF): Don't define.
3381 * config/bfin/uclinux.h (CPLUSPLUS_CPP_SPEC): Don't define.
3382 (ENDFILE_SPEC): Don't define.
3383 (LIB_SPEC): Likewise.
3384 (CRT_CALL_STATIC_FUNCTION): Likewise.
3385 (NO_IMPLICIT_EXTERN_C): Likewise.
3386 (LINUX_TARGET_OS_CPP_BUILTINS): Likewise.
3387 (TARGET_OS_CPP_BUILTINS): Define as LINUX_TARGET_OS_CPP_BUILTINS.
3388
3389 2007-09-06 Jan Hubicka <jh@suse.cz>
3390
3391 * i386.c (ix86_expand_lround, ix86_expand_round): Update call of
3392 real_2expN.
3393
3394 2007-09-06 Jan Hubicka <jh@suse.cz>
3395
3396 * opts.c (common_handle_option): Enable inlining functions for
3397 -fprofile-generate.
3398
3399 2007-09-06 Jakub Jelinek <jakub@redhat.com>
3400
3401 * builtin-attrs.def (ATTR_NONNULL_3): New.
3402 (DEF_FORMAT_ATTRIBUTE): Use just ATTR_NONNULL_##FA instead of
3403 ATTR_NOTHROW_NONNULL_##FA.
3404 (DEF_FORMAT_ATTRIBUTE_NOTHROW, DEF_FORMAT_ATTRIBUTE_BOTH): New macros.
3405 (ATTR_FORMAT_PRINTF_NOTHROW_2_0, ATTR_PRINTF_NOTHROW_2_3,
3406 ATTR_FORMAT_PRINTF_NOTHROW_3_0, ATTR_FORMAT_PRINTF_NOTHROW_3_4,
3407 ATTR_FORMAT_PRINTF_NOTHROW_4_0, ATTR_PRINTF_NOTHROW_4_5,
3408 ATTR_FORMAT_PRINTF_NOTHROW_5_0, ATTR_FORMAT_PRINTF_NOTHROW_5_6,
3409 ATTR_FORMAT_SCANF_NOTHROW_2_0, ATTR_FORMAT_SCANF_NOTHROW_2_3,
3410 ATTR_FORMAT_STRFTIME_NOTHROW_3_0, ATTR_FORMAT_STRFMON_NOTHROW_3_4):
3411 New.
3412 (ATTR_FORMAT_PRINTF_4_0, ATTR_PRINTF_4_5, ATTR_FORMAT_PRINTF_5_0,
3413 ATTR_FORMAT_PRINTF_5_6, ATTR_FORMAT_STRFTIME_3_0,
3414 ATTR_FORMAT_NOTHROW_3_4): Remove.
3415 * builtins.def (snprintf, sprintf, sscanf, vsnprintf, vsprintf,
3416 vsscanf, strfmon, strftime, __snprintf_chk, __sprintf_chk,
3417 __vsnprintf_chk, __vsprintf_chk): Use ATTR_FORMAT_*_NOTHROW_*
3418 instead of ATTR_FORMAT_*_*.
3419
3420 2007-09-06 Hans-Peter Nilsson <hp@axis.com>
3421
3422 * config/cris/cris.c (cris_emit_movem_store): Call copy_rtx on
3423 parts re-used for REG_FRAME_RELATED_EXPR.
3424
3425 2007-09-05 Janis Johnson <janis187@us.ibm.com>
3426
3427 * optabs.c (expand_float): Convert unsigned integer as signed only
3428 if it provides sufficient accuracy; add mode argument to real_2expN.
3429 (expand_fix): Fix comment typos; extend binary float into mode
3430 wider than destination for converion to unsigned integer; add mode
3431 argument to real_2expN.
3432 * real.c (real_2expN): Add mode argument to special-case decimal
3433 float values.
3434 * real.h (real_2expN): Ditto.
3435 * fixed-value.c (check_real_for_fixed_mode): Add mode argument to
3436 real_2expN.
3437 (fixed_from_string): Ditto.
3438 (fixed_to_decimal): Ditto.
3439 (fixed_convert_from_real): Ditto.
3440 (real_convert_from_fixed): Ditto.
3441 * config/rs6000/rs6000.md (FP): Include DD and TD modes.
3442 * config/rs6000/dfp.md (extendddtd2, adddd3, addtd3, subdd3, subtd3,
3443 muldd3, multd3, divdd3, divtd3, cmpdd_internal1, cmptd_internal1,
3444 floatditd2, ftruncdd2, fixdddi2, ftrunctd2, fixddi2): New.
3445
3446 2007-09-05 Ian Lance Taylor <iant@google.com>
3447
3448 * init-regs.c (initialize_uninitialized_regs): Call
3449 emit_insn_before rather than add_insn_before.
3450
3451 2007-09-05 Jakub Jelinek <jakub@redhat.com>
3452
3453 * builtins.def (BUILT_IN_VA_ARG_PACK): New built-in.
3454 * tree.h (CALL_EXPR_VA_ARG_PACK): Define.
3455 * tree-inline.h (copy_body_data): Add call_expr field.
3456 * tree-inline.c (expand_call_inline): Initialize call_expr.
3457 (copy_bb): Append anonymous inline fn arguments to arguments
3458 when inlining a CALL_EXPR_VA_ARG_PACK call.
3459 * builtins.c (expand_builtin): Issue an error if
3460 BUILT_IN_VA_ARG_PACK is seen during expand.
3461 (fold_call_expr, fold_builtin_call_array): Don't fold
3462 CALL_EXPR_VA_ARG_PACK CALL_EXPRs or calls with
3463 __builtin_va_arg_pack () call as last argument.
3464 * gimplify.c (gimplify_call_expr): If last argument to a vararg
3465 function is __builtin_va_arg_pack (), decrease number of call
3466 arguments and instead set CALL_EXPR_VA_ARG_PACK on the CALL_EXPR.
3467 * expr.c (expand_expr_real_1): Issue an error if
3468 CALL_EXPR_VA_ARG_PACK CALL_EXPR is seen during expand.
3469 * tree-pretty-print.c (dump_generic_node): Handle printing
3470 CALL_EXPR_VA_ARG_PACK bit on CALL_EXPRs.
3471 * doc/extend.texi (__builtin_va_arg_pack): Document.
3472
3473 2007-09-05 Adam Nemet <anemet@caviumnetworks.com>
3474
3475 PR tree-optimization/21513
3476 * builtins.c (build_builtin_expect_predicate): New function.
3477 (fold_builtin_expect): Add argument for expected value.
3478 Distribute __builtin_expect over short-circuiting operations.
3479 Fold nested builtin_expects.
3480 (fold_builtin_2): Adjust call to fold_builtin_expect.
3481
3482 2007-09-05 Rask Ingemann Lambertsen <rask@sygehus.dk>
3483
3484 PR web/32965
3485 PR tree-optimization/13756
3486 * doc/invoke.texi (Options That Control Optimization): Document
3487 -ftree-dse.
3488
3489 2007-09-05 Uros Bizjak <ubizjak@gmail.com>
3490
3491 * gcc/config/i386/cpuid.h: New file.
3492 * gcc/config/i386/driver-i386.c: Include cpuid.h.
3493 (describe_cache): Shrink size and line strings to 100 bytes.
3494 (detect_caches_amd): Return "" for unsupported max_ext_level.
3495 Use __cpuid function.
3496 (detect_caches_intel): Return "" for unsupported max_level.
3497 Use __cpuid function.
3498 (host_detect_local_cpu): Change feature flag variables to
3499 unsigned int. Initialize only extended feature flag variables.
3500 Use __get_cpuid_max to determine max supported cpuid level.
3501 Use __cpuid function to determine supported features. Fix
3502 calculation of family id. Remove is_amd and check signature
3503 directly. Check for Geode signature. Handle family 4 id.
3504 [PROCESSOR_GENERIC32]: New default for unknown family id. Move
3505 cpu discovery code to lower part of the function.
3506 [PROCESSOR_PENTIUM, PROCESSOR_K6, PROCESSOR_ATHLON]: Do not tune
3507 for sub-architecture.
3508 [PROCESSOR_PENTIUMPRO]: Simplify cpu discovery code.
3509 [PROCESSOR_K8]: Add k8-sse3 architecture.
3510 [PROCESSOR_NOCONA]: Remove.
3511 [PROCESSOR_GENERIC64]: Ditto.
3512 * gcc/config/i386/x-i386 (driver-i386.o): Depend on cpuid.h.
3513 * gcc/config/i386/crtfastmath.c: Include cpuid.h. Use __get_cpuid
3514 to check for SSE and FXSAVE support.
3515 * gcc/config/i386/t-crtfm (crtfastmath.o): Depend on cpuid.h.
3516 Add -minline-all-stringops.
3517 * gcc/config.gcc (i[34567]86-*-*): Add cpuid.h to extra_headers.
3518 (x86_64-*-*): Ditto.
3519
3520 2007-09-05 Jie Zhang <jie.zhang@analog.com>
3521
3522 * config/bfin/linux-unwind.h: New file.
3523 * config/bfin/linux.h (MD_UNWIND_SUPPORT): Define.
3524 * config/bfin/uclinux.h (MD_UNWIND_SUPPORT): Define.
3525
3526 2007-09-05 Laurynas Biveinis <laurynas.biveinis@gmail.com>
3527
3528 * Makefile.in (stmt.o): Add alloc-pool.h dependency.
3529 * stmt.c: Include alloc-pool.h.
3530 (struct case_node): Remove GTY marker.
3531 (add_case_node): New parameter case_node_pool. Use it for
3532 allocation of r.
3533 (expand_case): New allocation pool case_node_pool. Initialize it,
3534 pass to add_case_node and free it.
3535
3536 2007-09-05 Sandra Loosemore <sandra@codesourcery.com>
3537 David Ung <davidu@mips.com>
3538 Nigel Stephens <nigel@mips.com>
3539
3540 Add mips16/nomips16 function attributes and -mflip-mips16 option
3541 for testing mixed-mode compilation.
3542
3543 * config/mips/mips.opt (mflip-mips16): New.
3544
3545 * config/mips/mips.h (SYMBOL_FLAG_MIPS16_FUNC): Define.
3546 (SYMBOL_FLAG_MIPS16_FUNC_P): Define.
3547
3548 * config/mips/mips.c (mips_base_target_flags): New.
3549 (mips_base_mips16): New.
3550 (mips_base_schedule_insns): New.
3551 (mips_base_reorder_blocks_and_partition): New.
3552 (mips_base_align_loops): New.
3553 (mips_base_align_jumps): New.
3554 (mips_base_align_functions): New.
3555 (mips16_flipper): New.
3556 (mips_attribute_table): Add "mips16" and "nomips16" entries.
3557 (TARGET_SET_CURRENT_FUNCTION): Define.
3558 (mips_mips16_type_p, mips_nomips16_type_p): New.
3559 (mips_comp_type_attributes): Check mips16/nomips16 attributes.
3560 (mips_function_ok_for_sibcall): Make it deal with functions with
3561 mips16 attributes.
3562 (mips_init_split_addresses): New, split out from override_options.
3563 (mips_init_relocs): New, split out from override_options.
3564 (was_mips16_p): New.
3565 (mips_set_mips16_mode): New, split out from override_options.
3566 (mips_set_current_function): New.
3567 (override_options): Add sorry for unsupported mips16/pic
3568 combination. Remove error for mips16/dsp combination. Save
3569 base option settings.
3570 (mips_file_start): Move mips16 mode setting output from here....
3571 (mips_output_function_prologue): ....to here.
3572 (mips_output_mi_thunk): Check for mips16 function.
3573 (build_mips16_function_stub): Don't set .mips16 here.
3574 (build_mips16_call_stub): Likewise.
3575 (mips_expand_builtin): Error in mips16 mode.
3576 (mips_use_mips16_mode_p): New.
3577 (mips_encode_section_info): Check for mips16 function, and set
3578 SYMBOL_REF_FLAGS accordingly.
3579
3580 * doc/extend.texi (Function Attributes): Document new
3581 mips16/nomips16 attributes.
3582 * doc/invoke.texi (Option Summary): Add -mflip-mips16.
3583 (MIPS Options): Document -mflip-mips16.
3584
3585 2007-09-05 Sandra Loosemore <sandra@codesourcery.com>
3586
3587 * config/mips/mips.c (mips_legitimize_tls_address): Call sorry
3588 if we encounter TLS address in MIPS16 mode.
3589 (mips_legitimize_const_move): Check cannot_force_const_mem for
3590 the (const (plus symbol offset)) case; this forces invalid TLS
3591 address in MIPS16 mode to be caught by the above call to sorry.
3592 (override_options): Don't reset targetm.have_tls in MIPS16 mode,
3593 because that now enables emutls, which is not ABI compatible
3594 with native TLS in non-MIPS16 mode.
3595
3596 2007-09-05 Sandra Loosemore <sandra@codesourcery.com>
3597
3598 Add target hook invoked when cfun changes.
3599
3600 * doc/tm.texi (TARGET_SET_CURRENT_FUNCTION): Document.
3601 * target.h (struct gcc_target): Add set_current_function.
3602 * target-def.h (TARGET_SET_CURRENT_FUNCTION): Define.
3603 (TARGET_INITIALIZER): Add initializer for set_current_function.
3604 * tree.h (push_struct_function): New.
3605 * tree-inline.h (push_cfun, pop_cfun): Move declarations to...
3606 * function.h: Here.
3607 (set_cfun): Declare.
3608 * tree-inline.c (cfun_stack, push_cfun, pop_cfun): Moved to...
3609 * function.c: Here.
3610 (push_function_context_to): Use allocate_struct_function
3611 to create null context, not init_dummy_function_start. Use set_cfun.
3612 (pop_function_context_from): Use set_cfun.
3613 (in_dummy_function): New.
3614 (invoke_set_current_function_hook): New.
3615 (set_cfun): New.
3616 (push_cfun, pop_cfun): Use set_cfun.
3617 (push_struct_function): New.
3618 (allocate_struct_function): Call invoke_set_current_function_hook
3619 before returning.
3620 (prepare_function_start): Don't set cfun here. Remove unused
3621 argument; fix all callers.
3622 (init_dummy_function_start): Fiddle with in_dummy_function. Call
3623 push_struct_function.
3624 (init_function_start): Set cfun here.
3625 (expand_dummy_function_end): Fiddle with in_dummy_function. Pop cfun.
3626 * omp-low.c (create_omp_child_function): Use push_struct_function
3627 and pop_cfun to save/restore state.
3628 (expand_omp_parallel): Remove unused saved_cfun variable.
3629 * cgraphunit.c (ipa_passes): Use set_cfun.
3630 * gimple-low.c (record_vars_into): Use push_cfun/pop_cfun here.
3631 * dwarf2out.c (dwarf2out_abstract_function): Likewise.
3632 * matrix-reorg.c (transform_allocation_sites): Likewise.
3633 (matrix_reorg): Use set_cfun.
3634 * gimplify.c (gimplify_function_tree): Use push_cfun/pop_cfun here.
3635 * tree-optimize.c (tree_rest_of_compilation): Remove one redundant
3636 assignment to cfun; use set_cfun for the other.
3637 * tree-cfg.c (move_sese_region_to_fn): Use set_cfun.
3638 (dump_function_to_file): Use push_cfun/pop_cfun here.
3639 * c-decl.c (finish_function): Use set_cfun.
3640
3641 2007-09-05 Kenneth Zadeck <zadeck@naturalbridge.com>
3642
3643 * regrename.c (rerename_optimize): Use deferred rescanning and
3644 insert explicit calls to rescan insns when changed.
3645
3646 2007-09-05 Jan Hubicka <jh@suse.cz>
3647
3648 * optabs.c (libfunc_entry): Change optab to integer.
3649 (hash_libfunc, convert_optab_libfunc, optab_libfunc,
3650 set_optab_libfunc, set_conv_libfunc): Use optable indexes instead
3651 of pointers for hashing.
3652
3653 2007-09-05 Jan Hubicka <jh@suse.cz>
3654
3655 * regrename.c (pass_regrename, pass_cprop_hardreg): Add RTL sharing
3656 verifier.
3657 * fwprop.c (pass_rtl_fwprop, pass_rtl_fwprop_add): Likewise.
3658 * see.c (pass_see): Likewise.
3659 * tracer.c (pass_tracer): Likewise.
3660 * postreload-gcse.c (pass_gcse2): Likewise.
3661 * postreload.c (pass_postreload_cse): Likewise.
3662 * mode-switching.c (pass_mode_switching): Likewise.
3663 * modulo-sched.c (pass_sms): Likewise.
3664 * cse.c (cse_insn): Likewise.
3665 * web.c (pass_web): Likweise.
3666 * combine-stack-adj.c (pass_stack_adjustments): Likewise.
3667 * dce.c (pass_ud_rtl_dce, pass_fast_rtl_dce): Likewise.
3668 * loop-init.c (pass_rtl_loop_init): Likewise.
3669 (pass_rtl_loop_done, pass_rtl_move_loop_, pass_rtl_unswitch,
3670 pass_rtl_unroll_and, pass_rtl_doloop): Likewise.
3671 * global.c (pass_global_alloc): Likewise.
3672 * ifcvt.c (pass_rtl_ifcvt, pass_if_after_combine,
3673 pass_if_after_reload): Likewise.
3674 * reload.c (pass_peephole2, pass_split_for_shoren_branches): Likewise.
3675 * dse.c (pass_rtl_dse1, pass_rtl_dse2): Likewise.
3676 * regmove.c (pass_regmove): Likewise.
3677 * function.c (pass_thread_prologugues_epilogues): Likewise.
3678 * gcse.c (pass_gcse): Likewise.
3679 * rtl-factoring.c (pass_rtl_seqabstr): Likewise.
3680 * lower-subreg.c (pass_lower_subreg2): Likewise.
3681 * bt-load.c (pass_branch_target_load): Likewise.
3682 * emit-rtl.c (pass_unshare_all_rtl): Likewise.
3683 * cfgcleanup.c (pass_jump, pass_jump2): Likewise.
3684 * combine.c (pass_combine): Likewise.
3685 * bb-reorder.c (pass_duplicate_comp, pass_reorder_blocks): Likewise.
3686 (pass_partition_blocks): Likewise.
3687 * var-tracking.c (pass_variable_track): Likewise.
3688 * reg-stack.c (pass_stack_regs_run): Likewise.
3689 * sched-rgn.c (pass_sched, pass_sched2): Likewise.
3690 * passes.c (pass_postreload): Likewise.
3691 (execute_function_todo): Add TODO_verify_rtl_sharing handling code.
3692 * tree-pass.h (TODO_verify_rtl_sharing): New.
3693 (TODO_update_ssa, TODO_update_ssa_no_phi, TODO_update_ssa_full_phi,
3694 TODO_update_ssa_only_virtuals, TODO_remove_unused_locals,
3695 TODO_set_props, TODO_df_finish, TODO_df_verify,
3696 TODO_mark_first_instance, TODO_rebuild_alias): Renumber.
3697
3698 2007-09-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3699
3700 * fold-const.c (all_ones_mask_p, sign_bit_p, simple_operand_p,
3701 fold_real_zero_addition_p, reorder_operands_p,
3702 div_if_zero_remainder, fold_undefer_overflow_warnings,
3703 int_binop_types_match_p, fold_convert_const_int_from_int,
3704 fold_convert_const_int_from_real,
3705 fold_convert_const_int_from_fixed,
3706 fold_convert_const_real_from_real,
3707 fold_convert_const_real_from_fixed,
3708 fold_convert_const_fixed_from_fixed,
3709 fold_convert_const_fixed_from_int,
3710 fold_convert_const_fixed_from_real, maybe_lvalue_p,
3711 fold_checksum_tree, fold_check_failed, print_fold_checksum,
3712 debug_fold_checksum, multiple_of_p): Constify.
3713 * tree-flow-inline.h (get_lineno): Likewise.
3714 * tree-flow.h (get_lineno): Likewise.
3715 * tree-object-size.c (compute_object_offset, addr_object_size,
3716 alloc_object_size, pass_through_call): Likewise.
3717 * tree-pretty-print.c (op_symbol, print_call_name,
3718 print_struct_decl, do_niy): Likewise.
3719 * tree.h (fold_undefer_overflow_warnings, multiple_of_p,
3720 debug_fold_checksum): Likewise.
3721
3722 2007-09-04 Steven Bosscher <steven@gcc.gnu.org>
3723
3724 PR middle-end/33029
3725 * lower-subreg.c (resolve_clobber): If we remove a REG_LIBCALL
3726 note, remove the associated REG_RETVAL note.
3727
3728 2007-09-04 Andrew Pinski <andrew_pinski@playstation.sony.com>
3729
3730 * config.gcc (powerpc*-*-*): Install
3731 spu2vmx.h, vec_types.h, and si2vmx.h headers.
3732 * config/rs6000/spu2vmx.h: New header.
3733 * config/rs6000/si2vmx.h: New header.
3734 * config/rs6000/vec_types.h: New header.
3735
3736 2007-09-05 Ben Elliston <bje@au.ibm.com>
3737
3738 * varasm.c (initializer_constant_valid_p): Fix comment typo.
3739
3740 2007-09-05 Ben Elliston <bje@au.ibm.com>
3741
3742 * config/rs6000/ppu_intrinsics.h (__ldarx): Use `Z' constraint,
3743 not `m' for *ptrp.
3744 (__stdcx): Make asm volatile.
3745 (__stwcx, __stdcx): Return only 0 or 1.
3746
3747 2007-09-05 Jan Hubicka <jh@suse.cz>
3748
3749 Revert:
3750
3751 2007-09-04 Jan Hubicka <jh@suse.cz>
3752 * tree-tailcall.c (eliminate_tail_call): Expect unrenamed return value.
3753
3754 2007-09-04 Richard Guenther <rguenther@suse.de>
3755 * tree-ssa-operands.c (add_virtual_operand): Only mark
3756 stores as has_volatile_ops if alias information is not available.
3757
3758 2007-09-05 Jakub Jelinek <jakub@redhat.com>
3759
3760 * config/rs6000/tramp.asm: Include config.h.
3761 Check __PIC__ or __pic__ macro instead of SHARED.
3762
3763 PR rtl-optimization/32300
3764 * see.c (see_copy_insn): New function.
3765 (see_def_extension_not_merged, see_merge_one_use_extension,
3766 see_merge_one_def_extension): Use it. Avoid changing
3767 PREV_INSN/NEXT_INSN chains directly, insted emit insns
3768 into sequences. Call df_insn_delete on temporary insns
3769 that won't be emitted into the insn stream.
3770 (rest_of_handle_see): Turn off DF_DEFER_INSN_RESCAN
3771 and run df_process_deferred_rescans () before run_fast_dce.
3772
3773 PR tree-optimization/33017
3774 * tree-data-ref.c (split_constant_offset) <case SSA_NAME>: Don't
3775 recurse for pure or const function calls.
3776
3777 2007-09-04 Laurynas Biveinis <laurynas.biveinis@gmail.com>
3778
3779 * c-format.c: Include alloc-pool.h.
3780 (check_format_info_main): New argument fwt_alloc. Use allocation
3781 pool instead of GC. Remove GC deallocation code.
3782 (check_format_arg): Create allocation pool, pass it to
3783 check_format_info_main and free it afterwards.
3784 * Makefile.in (c-format.o): Add alloc-pool.h dependency.
3785
3786 2007-09-05 Ben Elliston <bje@au.ibm.com>
3787
3788 * config/rs6000/ppu_intrinsics.h (__protected_stream_count):
3789 Rename count macro arugment for clarity.
3790 (__protected_unlimited_stream_set): Pass UG=1 to __dcbt_TH1000.
3791 (__protected_stream_set): Likewise, pass 0.
3792
3793 2007-09-04 Jan Hubicka <jh@suse.cz>
3794
3795 * tree-tailcall.c (eliminate_tail_call): Expect unrenamed return value.
3796
3797 2007-09-04 Jan Hubicka <jh@suse.cz>
3798
3799 * invoke.texi (-finline-small-functions): Document.
3800 * ipa-inline.c (cgraph_default_inline_p): Do not use DECL_INLINE
3801 when deciding what is inlinable.
3802 (cgraph_decide_recursive_inlining): Handle flag_inline_functions.
3803 (cgraph_decide_inlining_of_small_function): Handle new flags.
3804 (cgraph_decide_inlining_incrementally): Likewise.
3805 * opts.c (decode_options): Enable flag_inline_small_functions at -O2
3806 * common.opt (finline-small-functions): New.
3807 * Makefile.in (build/gengtype.o-warn): Work around PR29478
3808
3809 2007-09-04 Richard Guenther <rguenther@suse.de>
3810
3811 * tree-ssa-operands.c (add_virtual_operand): Only mark
3812 stores as has_volatile_ops if alias information is not available.
3813
3814 2007-09-04 Andrew Haley <aph@redhat.com>
3815
3816 * config/arm/libgcc-bpabi.ver: Add _Unwind_Backtrace as GCC_4.3.0.
3817
3818 2007-09-04 Andrew Haley <aph@redhat.com>
3819
3820 * config/arm/libunwind.S (UNWIND_WRAPPER _Unwind_Backtrace): New.
3821 * config/arm/unwind-arm.h (__gnu_Unwind_Backtrace): New.
3822 * config/arm/unwind-arm.c (__gnu_Unwind_Backtrace): New.
3823
3824 2007-09-04 Emmanuel Thome <Emmanuel.Thome@inria.fr>
3825
3826 PR c++/14178
3827 * common.opt: Mention ABI version 2 in comment.
3828
3829 2007-09-04 Jan Hubicka <jh@suse.cz>
3830
3831 * optabs.c (debug_optab_libfunc): Update; make available to gdb.
3832 (libfunc_entry): New structure.
3833 (libfunc_hash): New hashtable.
3834 (hash_libfunc): New function.
3835 (eq_libfunc): New function.
3836 (convert_optab_libfunc): New function.
3837 (optab_libfunc): New function.
3838 (expand_binop, sign_expand_binop, expand_twoval_binop_libfunc,
3839 expand_unop, prepare_cmp_insn, prepare_float_insn, gen_add2_insn,
3840 expand_float, expand_fix, new_optab, new_convert_optab):
3841 Update for new libfunc API.
3842 (init_libfunc, init_integral_libfuncs,
3843 init_floating_libfuncs, init_interclass_conv_libfuncs
3844 init_intraclass_conv_libfuncs): Remove; reorganize all logic to:
3845 (gen_libfunc, gen_int_libfunc, gen_fp_libfunc, gen_int_fp_libfunc,
3846 gen_intv_fp_libfunc, gen_interclass_conv_libfunc,
3847 gen_int_to_fp_conv_libfunc, gen_ufloat_conv_libfunc,
3848 gen_int_to_fp_nondecimal_conv_libfunc, gen_fp_to_int_conv_libfunc,
3849 gen_intraclass_conv_libfunc, gen_trunc_conv_libfunc,
3850 gen_extend_conv_libfunc): New.
3851 (init_one_libfunc): Revamp for hashtables.
3852 (set_conv_libfunc): Likewise.
3853 (init_optabs): Initialize hashtable; use lazy initialization where
3854 possible.
3855 * optabs.h (optab_handlers): Move out of GGC.
3856 (optab, convert_optab): Move out of GGC; add lazy gen info.
3857 (code_to_optab, convert_optab_table, optab_table): Move out of GGC.
3858 (optab_libfunc, convert_optab_libfunc): New.
3859 * builtins.c (expand_builtin_powi): Update for new API.
3860 * expr.c (convert_move): Likewise.
3861 * expmed.c (expand_divmod): Likewise.
3862
3863 2007-09-04 Daniel Jacobowitz <dan@codesourcery.com>
3864
3865 * config/rs6000/rs6000.c (rs6000_stack_info): Allocate space for the
3866 GOT pointer only if there is a constant pool. Use the allocated space
3867 for SPE also.
3868
3869 2007-09-04 Daniel Jacobowitz <dan@codesourcery.com>
3870
3871 * config/rs6000/linux-unwind.h (ppc_fallback_frame_state): Correct
3872 typo for AltiVec.
3873
3874 2007-09-04 Revital Eres <eres@il.ibm.com>
3875 Richard Guenther <rguenther@suse.de>
3876 R. Clint Whaley <whaley@cs.utsa.edu>
3877
3878 * doc/invoke.texi (-fassociative-math, -freciprocal-math):
3879 Document new flags.
3880 * tree-tailcall.c (process_assignment): Use -fassociative-math
3881 when reodering operands of floating-point type.
3882 * fold-const.c (fold_comparison, fold_binary): Use
3883 -fassociative-math and -freciprocal-math instead of
3884 -funsafe-math-optimization flag.
3885 * toplev.h (set_unsafe_math_optimizations_flags): Declare function.
3886 * tree-ssa-math-opts.c (gate_cse_reciprocals): Use
3887 -freciprocal-math instead of -funsafe-math-optimizations.
3888 * opts.c (set_fast_math_flags): Set -freciprocal-math and
3889 -fassociative-math when -ffast-math is set.
3890 (set_unsafe_math_optimizations_flags): New Function
3891 to set -freciprocal-math and -fassociative-math when
3892 -funsafe-math-optimizations is set.
3893 (common_handle_option): Call it.
3894 * tree-vectorizer.c (vect_is_simple_reduction): Use
3895 -fassociative-math when doing reduction on floats.
3896 * loop-unroll.c (analyze_insn_to_expand_var): Use
3897 -fassociative-math when expanding an accumulator of type float.
3898 * simplify-rtx.c (simplify_binary_operation_1): Use
3899 -fassociative-math and -freciprocal-math when reordeing operands
3900 of floating-point type.
3901 * combine.c (combine_simplify_rtx): Likewise.
3902 * tree-ssa-reassoc.c (break_up_subtract_bb, reassociate_bb):
3903 Likewise.
3904 * common.opt (-fassociative-math, -freciprocal-math): New flags.
3905
3906 2007-09-04 Paolo Carlini <pcarlini@suse.de>
3907
3908 PR c++/18608
3909 * doc/install.texi (--enable-__cxa_atexit): Fix typo.
3910
3911 2007-09-04 Jan Hubicka <jh@suse.cz>
3912
3913 * regrename.c(copyprop_hardreg_forward_1): Unshare when doing copyprop.
3914
3915 2007-09-04 Jan Hubicka <jh@suse.cz>
3916
3917 * regrename.c (build_def_use): Don't share RTL between MATCH_OPERATOR
3918 and corresponding MATCH_DUP.
3919
3920 2007-09-04 Uros Bizjak <ubizjak@gmail.com>
3921
3922 PR middle-end/33187
3923 * combine.c (subst): Do not try to simplify X if it represents load
3924 of FP constant from the constant pool via float extension.
3925
3926 2007-09-04 Ben Elliston <bje@au.ibm.com>
3927
3928 * c-opts.c: Include "tm_p.h".
3929 * Makefile.in (c-opts.o): Add $(TM_P_H) as a dependency.
3930
3931 2007-09-04 Richard Guenther <rguenther@suse.de>
3932
3933 PR tree-optimization/33291
3934 * tree-pretty-print.c (dump_generic_node): Dump all
3935 qualifiers for pointer types, not only first. Dump
3936 qualifiers for aggregate types as well.
3937 * tree-ssa-ccp.c (maybe_fold_offset_to_array_ref): Always
3938 use the canonical type for building ARRAY_REFs.
3939 * gimplify.c (canonicalize_addr_expr): Clean up. The
3940 correct validness check is compatibility of the pointer
3941 types. Always use the canonical type for building
3942 ARRAY_REFs and ADDR_EXPRs.
3943 * tree-ssa-forwprop.c (forward_propagate_addr_expr): Revert
3944 change that disabled propagation of ADDR_EXPRs into statements
3945 with volatile ops.
3946
3947 2007-09-03 Zack Weinberg <zack@codesourcery.com>
3948
3949 * config/arm/arm.md (mulsidi3, umulsidi3, mulsi3_highpart)
3950 (umulsi3_highpart): Make into expanders; existing insns are
3951 now named *[insn]_nov6. Add stars to existing [insn]_v6
3952 counterparts' names.
3953
3954 2007-09-03 Daniel Jacobowitz <dan@codesourcery.com>
3955
3956 * Makefile.in (DRIVER_DEFINES, gcc.o, gccspec.o, protoize.o)
3957 (unprotoize.o): Remove SHLIB_MULTILIB.
3958
3959 2007-09-03 Eric Weddington <eweddington@cso.atmel.com>
3960
3961 * doc/extend.texi: Document progmem attribute for AVR.
3962
3963 2007-09-03 Anatoly Sokolov <aesok@post.ru>
3964
3965 PR target/28902
3966 * config/avr/avr.h (TARGET_VTABLE_ENTRY_ALIGN): Define.
3967
3968 2007-09-03 Zack Weinberg <zack@codesourcery.com>
3969
3970 * optabs.c (expand_ffs): Initialize val and defined_at_zero
3971 to avoid warnings.
3972
3973 * optabs.c: Remove unnecessary forward declarations.
3974 (expand_unop_direct): New, broken out of expand_unop.
3975 (expand_doubleword_clz): New.
3976 (expand_ctz): Move above expand_ffs. Use
3977 start_sequence, end_sequence, add_equal_note, and
3978 expand_unop_direct. Add more commentary.
3979 (expand_ffs): Try both ctz optab and expand_ctz.
3980 Generate a test and branch if the hardware doesn't give us
3981 a useful value for input zero. Style improvements similar to
3982 expand_ctz.
3983
3984 * config/arm/arm.md (ffssi2, ctzsi2): Delete.
3985
3986 2007-09-03 Zack Weinberg <zack@codesourcery.com>
3987
3988 * config.gcc: Delete stanza for arm-semi-aof and
3989 armel-semi-aof targets.
3990 * config/arm/arm-protos.h
3991 * config/arm/arm.c
3992 * config/arm/arm.h: Delete all #ifdef AOF_ASSEMBLER blocks;
3993 make all #ifndef AOF_ASSEMBLER blocks unconditional. Also
3994 delete aof_pic_label and remove mention of AOF in comments.
3995 * config/arm/arm.md: Delete patterns used only for AOF assembly.
3996 * config/arm/aof.h
3997 * config/arm/semiaof.h
3998 * config/arm/t-semi: Delete file.
3999
4000 2007-09-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4001
4002 * system.h (CONST_CAST2, CONST_CAST_TREE, CONST_CAST_RTX,
4003 CONST_CAST_BB): New macros for type-specific casts.
4004 (CONST_CAST): Add a TYPE parameter and define it in terms of
4005 CONST_CAST2.
4006
4007 * c-decl.c (c_make_fname_decl): Supply a TYPE for CONST_CAST.
4008 * c-lex.c (cb_ident, lex_string): Likewise,
4009 * c-typeck.c (free_all_tagged_tu_seen_up_to): Likewise,
4010 * config/i386/i386.c (ix86_function_regparm,
4011 ix86_function_sseregparm): Use CONST_CAST_TREE.
4012 * config/mmix/mmix.c (mmix_encode_section_info): Supply a TYPE for
4013 CONST_CAST.
4014 * gcc.c (set_spec, read_specs, for_each_path, execute, do_spec_1,
4015 give_switch, set_multilib_dir): Likewise,
4016 * gengtype-parse.c (string_seq, typedef_name): Likewise,
4017 * gimple-low.c (block_may_fallthru): Use CONST_CAST_TREE.
4018 * jump.c (reversed_comparison_code_parts): Use CONST_CAST_RTX.
4019 * passes.c (execute_one_pass): Supply a TYPE for CONST_CAST.
4020 * prefix.c (update_path): Likewise,
4021 * pretty-print.c (pp_base_destroy_prefix): Likewise,
4022 * rtlanal.c (keep_with_call_p): Use CONST_CAST_RTX.
4023 * tree-cfg.c (tree_can_merge_blocks_p,
4024 tree_block_ends_with_condjump_p): Use CONST_CAST_BB.
4025 * tree-eh.c (lookup_stmt_eh_region_fn): USe CONST_CAST_TREE.
4026 * tree.c (build_string): Supply a TYPE for CONST_CAST.
4027 (attribute_list_contained): Use CONST_CAST_TREE.
4028
4029 2007-09-03 Krister Walfridsson <cato@df.lth.se>
4030
4031 * config/netbsd-elf.h (USE_LD_AS_NEEDED): Define.
4032
4033 2007-09-03 Richard Sandiford <richard@codesourcery.com>
4034
4035 PR middle-end/33290
4036 * optabs.c (avoid_expensive_constant): Canonicalize CONST_INTs
4037 before forcing them into a register.
4038
4039 2007-09-03 Richard Sandiford <richard@codesourcery.com>
4040
4041 * config/mips/mips.md (fetchop_bit): Use define_code_iterator
4042 rather than define_code_macro.
4043
4044 2007-09-03 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
4045
4046 * gcc.c (xputenv): New function.
4047 (putenv_from_prefixes): Use xputenv instead of putenv.
4048 (process_command): Use xputenv instead of putenv.
4049 (set_collect_gcc_options): Use xputenv instead of putenv.
4050 (main): Use xputenv instead of putenv.
4051
4052 2007-09-03 Jesper Nilsson <jesper.nilsson@axis.com>
4053
4054 * config/cris/cris.h (TARGET_HAS_SWAP): Defined to describe
4055 availability of swap instruction.
4056 * config/cris/cris.md (bswapsi2): Implement using swap instruction.
4057
4058 2007-09-03 Revital Eres <eres@il.ibm.com>
4059
4060 * doc/invoke.texi (-fmodulo-sched-allow-regmoves): Update
4061 Documentation.
4062
4063 2007-09-03 Vladimir Yanovsky <yanov@il.ibm.com>
4064 Ayal Zaks <zaks@il.ibm.com>
4065 Revital Eres <eres@il.ibm.com>
4066
4067 * modulo-sched.c (ps_insert_empty_row, verify_partial_schedule,
4068 compute_split_row): New functions.
4069 (ps_unschedule_node): Remove.
4070 (normalize_sched_times): Iterate over the already scheduled
4071 insns instead of the number of nodes.
4072 (MAX_SPLIT_NUM): New definition.
4073 (sms_schedule_by_order): Change the scheduling heuristic to
4074 avoid useless increases of initiation interval ii.
4075 (get_sched_window): Add dump printouts.
4076
4077 2007-09-02 David Daney <ddaney@avtrex.com>
4078
4079 * config/mips/mips.md (UNSPEC_COMPARE_AND_SWAP, UNSPEC_SYNC_OLD_OP,
4080 UNSPEC_SYNC_NEW_OP, UNSPEC_SYNC_EXCHANGE): New define_constants.
4081 (optab, insn): Add more attributes.
4082 (fetchop_bit): New code macro.
4083 (immediate_insn): New code macro attribute.
4084 (sync): Change condition to ISA_HAS_SYNC.
4085 (rdhwr): Change predicate for operand 0 to register_operand.
4086 (memory_barrier): New expand.
4087 (sync_compare_and_swap<mode>, sync_add<mode>, sync_sub<mode>,
4088 sync_old_add<mode>, sync_old_sub<mode>, sync_new_add<mode>,
4089 sync_new_sub<mode>, sync_<optab><mode>, sync_old_<optab><mode>,
4090 sync_new_<optab><mode>, sync_nand<mode>, sync_old_nand<mode>,
4091 sync_new_nand<mode>, sync_lock_test_and_set<mode>): New insns.
4092 * config/mips/mips.h (ISA_HAS_SYNC, ISA_HAS_LL_SC): New ISA predicates.
4093 (MIPS_COMPARE_AND_SWAP, MIPS_SYNC_OP, MIPS_SYNC_OLD_OP,
4094 MIPS_SYNC_NEW_OP, MIPS_SYNC_NAND, MIPS_SYNC_OLD_NAND,
4095 MIPS_SYNC_NEW_NAND, MIPS_SYNC_EXCHANGE): New Macros.
4096
4097 2007-09-03 Jesper Nilsson <jesper.nilsson@axis.com>
4098 Hans-Peter Nilsson <hp@axis.com>
4099
4100 * config/cris/cris.h (TARGET_HAS_LZ, CLZ_DEFINED_VALUE_AT_ZERO):
4101 Defined to describe availability and behavior of CLZ.
4102 * config/cris/cris.md (clzsi2): Implement using lz instruction.
4103 * config/cris/cris.opt: Tweak comment for "-metrax4".
4104 * config/cris/arit.c (LZ): When defined, define as __builtin_clz.
4105 * longlong.h [__CRIS__ && __CRIS_arch_version >= 3]
4106 (count_leading_zeros): Define.
4107
4108 2007-09-01 Laurynas Biveinis <laurynas.biveinis@gmail.com>
4109
4110 * ggc-page.c (ggc_pch_read): Call validate_free_objects.
4111
4112 2007-09-02 Joseph Myers <joseph@codesourcery.com>
4113
4114 PR middle-end/33272
4115 * c-decl.c (grokdeclarator): Apply qualifiers to type of parameter
4116 decayed from array.
4117
4118 2007-09-01 Kazu Hirata <kazu@codesourcery.com>
4119
4120 * config/arm/arm.c, config/rs6000/ppu_intrinsics.h,
4121 config/spu/spu.c, df-scan.c, fixed-value.c, fold-const.c,
4122 ginclude/tgmath.h, haifa-sched.c, optabs.c, recog.c,
4123 sched-deps.c, sched-int.h, system.h, target.h,
4124 tree-ssa-live.c, tree-vect-transform.c, tree-vectorizer.c,
4125 tree.def: Fix comment typos.
4126
4127 2007-09-01 Kazu Hirata <kazu@codesourcery.com>
4128
4129 * config/m68k/m68k.c (TARGET_DEFAULT_TARGET_FLAGS): Remove.
4130 (override_options): Turn on -mstrict-align on non-ColdFire
4131 targets.
4132 * config/m68k/m68k.h (BIGGEST_ALIGNMENT): Update a comment.
4133
4134 2007-09-01 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4135
4136 * c-common.c (const_strip_array_types): Delete.
4137 * c-common.h (const_strip_array_types): Likewise.
4138 * emit-rtl.c (const_next_insn, const_previous_insn,
4139 const_next_nonnote_insn, const_prev_nonnote_insn,
4140 const_next_real_insn, const_prev_real_insn,
4141 const_next_active_insn, const_prev_active_insn, const_next_label,
4142 const_prev_label): Delete.
4143 * gimple-low.c (block_may_fallthru): Use expr_last.
4144 * jump.c (reversed_comparison_code_parts): Use prev_nonnote_insn.
4145 * rtl.h (const_previous_insn, const_next_insn,
4146 const_prev_nonnote_insn, const_next_nonnote_insn,
4147 const_prev_real_insn, const_next_real_insn,
4148 const_prev_active_insn, const_next_active_insn, const_prev_label,
4149 const_next_label): Delete.
4150 * rtlanal.c (keep_with_call_p): Use next_nonnote_insn.
4151 * system.h (CONST_CAST): Update comment.
4152 * tree-cfg.c (tree_can_merge_blocks_p): Use last_stmt.
4153 (const_first_stmt, const_last_stmt): Delete.
4154 (tree_block_ends_with_condjump_p): Use last_stmt.
4155 * tree-flow.h (const_first_stmt, const_last_stmt): Delete.
4156 * tree-iterator.c (const_expr_first, const_expr_last,
4157 const_expr_only): Delete.
4158 * tree.c (const_lookup_attribute): Likewise.
4159 (attribute_list_contained): Use lookup_attribute.
4160 * tree.h (const_lookup_attribute, const_expr_first,
4161 const_expr_last, const_expr_only): Delete.
4162
4163 2007-09-01 Richard Guenther <rguenther@suse.de>
4164
4165 * tree-ssa-alias.c (create_name_tags): Use TYPE_VOLATILE
4166 instead of TREE_THIS_VOLATILE.
4167 * tree-ssa-operands.c (add_virtual_operand): Do not set
4168 has_volatile_ops. Do not check s_ann for NULL.
4169 (get_indirect_ref_operands): Likewise.
4170 (get_expr_operands): Likewise. For all reference trees
4171 set has_volatile_ops based on TREE_THIS_VOLATILE. Also
4172 check base of reference for TREE_THIS_VOLATILE.
4173
4174 2007-09-01 Richard Guenther <rguenther@suse.de>
4175
4176 * tree-cfg.c (verify_gimple_expr): Fix check for conversions
4177 between integral types. Also allow conversions between
4178 pointer types.
4179
4180 2007-08-31 Andrew Pinski <andrew_pinski@playstation.sony.com>
4181
4182 * optabs.c (prepare_float_lib_cmp): Use
4183 libgcc_cmp_return_mode instead of word_mode.
4184 * config/dfp-bit.h: Likewise.
4185 * config/fp-bit.h: Likewise.
4186 * config/spu/spu.c (spu_libgcc_cmp_return_mode):
4187 New function.
4188 (spu_libgcc_shift_count_mode): New function.
4189 (TARGET_LIBGCC_CMP_RETURN_MODE): Define.
4190 (TARGET_LIBGCC_SHIFT_COUNT_MODE): Define.
4191
4192 2007-08-31 Joseph Myers <joseph@codesourcery.com>
4193
4194 * tree-pretty-print.c: Include output.h.
4195 (dump_decl_name, dump_generic_node): Use %wd with pp_printf, not
4196 HOST_WIDE_INT_PRINT_DEC.
4197 * Makefile.in (tree-pretty-print.o): Add dependency on output.h.
4198
4199 2007-08-31 Zdenek Dvorak <ook@ucw.cz>
4200
4201 PR rtl-optimization/33224
4202 * loop-iv.c (latch_dominating_def): Check that the definition belongs
4203 to the analysed region.
4204
4205 2007-08-31 Richard Guenther <rguenther@suse.de>
4206
4207 * function.c (allocate_struct_function): Do not set
4208 current_function_returns_pointer.
4209 * function.h (struct var_refs_queue): Remove.
4210 (struct simple_obstack_stack): Likewise.
4211 (struct function): Remove fixup_var_refs_queue member.
4212 Remove returns_pointer flag.
4213 (current_function_returns_pointer): Remove define.
4214
4215 2007-08-31 Nick Clifton <nickc@redhat.com>
4216
4217 * tree-ssa-coalesce.c (compare_pairs): Use the elements as
4218 secondary keys in order to obtain a stable sort.
4219
4220 2007-08-31 Nick Clifton <nickc@redhat.com>
4221
4222 PR target/33132
4223 * config/m32r/constraints.md: Add W constraint for integer zero.
4224 * config/m32r/m32r.md (get_pc): Use W and i constraints.
4225 Fix length calculation by using alternatives.
4226
4227 2007-08-31 Richard Sandiford <richard@codesourcery.com>
4228
4229 * optabs.c (shift_optab_p, commutative_optab_p): New functions,
4230 split out from expand_binop.
4231 (avoid_expensive_constant): New function.
4232 (expand_binop_directly): Remove commutative_op argument and
4233 (expand_binop_directly): Remove commutative_op argument and
4234 call cummutative_optab_p instead. Do not change op0 or op1
4235 when swapping xop0 and xop1. Apply avoid_expensive_constant
4236 to each argument after potential swapping. Enforce the
4237 canonical order of commutative operands.
4238 (expand_binop): Use shift_optab_p and commutative_optab_p.
4239 Update the calls to expand_binop_directly. Only force constants
4240 into registers when widening an operation. Only swap operands
4241 once a direct expansion has been rejected.
4242 (expand_twoval_binop): Only force constants into registers when
4243 using a direct expansion.
4244
4245 2007-08-31 Maxim Kuvyrkov <maxim@codesourcery.com>
4246
4247 * sched-deps.c (update_dep): Mark arguments with ATTRIBUTE_UNUSED.
4248 (sched_analyze_insn): Don't postprocess speculative dependencies when
4249 target has no scheduling.
4250 * tree-vect-transform.c (vect_estimate_min_profitable_iters): Fix
4251 'uninitialized' warning.
4252
4253 2007-08-31 Richard Guenther <rguenther@suse.de>
4254
4255 * tree.c (build_complex_type): Always set TYPE_NAME for
4256 comples types.
4257
4258 2007-08-31 Olivier Hainque <hainque@adacore.com>
4259
4260 * config/rs6000/xcoff.h (XCOFF_CSECT_DEFAULT_ALIGNMENT_STR): New
4261 internal macro. Default alignment factor for csect directives, chosen
4262 to match what BIGGEST_ALIGNMENT allows.
4263 (DATA_SECTION_ASM_OP): Use it.
4264 * config/rs6000/rs6000.c
4265 (rs6000_xcoff_output_readonly_section_asm_op):
4266 Use XCOFF_CSECT_DEFAULT_ALIGNMENT_STR.
4267 (rs6000_xcoff_output_readwrite_section_asm_op): Likewise.
4268
4269 2007-08-31 Olivier Hainque <hainque@adacore.com>
4270
4271 * dbxout.c (dbxout_block): Move declaration within the first
4272 #if defined (DBX_DEBUGGING_INFO) block. Rearrange another such
4273 block to include the definition, together with the associated
4274 helpers.
4275
4276 2007-08-31 David Edelsohn <edelsohn@gnu.org>
4277 Revital Eres <eres@il.ibm.com>
4278
4279 * doc/invoke.texi (-mpaired): Document flag.
4280 * config.gcc: Include paired.h in powerpc extra_headers and
4281 750cl.h in powerpc-*-linux*paired*.
4282 * config/rs6000/rs6000.opt (-mpaired): New flag.
4283 * config/rs6000/rs6000.c (paired_init_builtins,
4284 paired_expand_builtin, paired_expand_lv_builtin,
4285 paired_expand_stv_builtin, paired_expand_predicate_builtin):
4286 New functions to support the paired single builtin functions.
4287 (rs6000_hard_regno_mode_ok): Handle PAIRED_VECTOR_MODE.
4288 (def_builtin, bdesc_3arg, bdesc_2arg, bdesc_1arg): Add paired
4289 single builtins.
4290 (bdesc_paired_preds): New structure for paired predicate
4291 instructions.
4292 (rs6000_expand_builtin): Expand paired single builtins.
4293 (rs6000_init_builtins): Init paired single builtins.
4294 (rs6000_common_init_builtins): Add v2sf_ftype_v2sf_v2sf_v2sf.
4295 Rename v2sf_ftype_v2sf_v2sf to v2sf_ftype_v2sf_v2sf_spe
4296 and v2sf_ftype_v2sf_spe to v2sf_ftype_v2sf. Add new types
4297 v2sf_ftype_v2sf_v2sf and v2sf_ftype_v2sf.
4298 (rs6000_vector_mode_supported_p): Support paired vector mode.
4299 * config/rs6000/rs6000.h: (UNITS_PER_PAIRED_WORD,
4300 PAIRED_VECTOR_MODE, PAIRED_SIMD_REGNO_P, TARGET_PAIRED_FLOAT):
4301 New.
4302 (LOCAL_ALIGNMENT): Handle PAIRED_VECTOR_MODE.
4303 (DATA_ALIGNMENT): Likewise.
4304 (UNITS_PER_SIMD_WORD): Handle PAIRED_VECTOR_MODE.
4305 (rs6000_builtins): Add PAIRED builtins.
4306 * config/rs6000/rs6000.md: Include paired.md.
4307 * config/rs6000/paired.h: New.
4308 * config/rs6000/paired.md: New.
4309 * config/rs6000/750cl.h: New.
4310 * config/rs6000/spe.md: Recognize movv2sf instruction for 750cl.
4311
4312 2007-08-30 Ollie Wild <aaw@google.com>
4313
4314 * c-opts.c (c_common_handle_option): Support -fno-directives-only.
4315 * gcc.c (default_compilers): Add -fno-directives-only to
4316 @assembler-with-cpp.
4317
4318 2007-08-30 Sandra Loosemore <sandra@codesourcery.com>
4319
4320 PR middle-end/33211
4321
4322 * regclass.c (initial_fixed_regs): Revert previous change and make
4323 it const again.
4324 (initial_call_used_regs): Likewise.
4325 (initial_call_really_used_regs): Delete, reverting previous addition.
4326 (initial_reg_names): Likewise.
4327 (init_reg_sets): Revert previous change.
4328 (saved_fixed_regs): New.
4329 (saved_call_used_regs): New.
4330 (saved_call_really_used_regs): New.
4331 (saved_reg_names): New.
4332 (save_register_info): New.
4333 (restore_register_info): New.
4334 (init_reg_sets_1): Replace reset of register info with call to
4335 restore_register_info.
4336 * rtl.h (save_register_info): Declare.
4337 * toplev.c (backend_init): Call save_register_info.
4338
4339 2007-08-30 Laurynas Biveinis <laurynas.biveinis@gmail.com>
4340
4341 * tree-ssa-propagate.c (set_rhs): Remove the copied annotation
4342 from the original statement.
4343
4344 2007-08-30 Chao-ying Fu <fu@mips.com>
4345
4346 * c-lex.c (interpret_fixed): Declare.
4347 (interpret_float): Process _Fract and _Accum.
4348 (interpret_fixed): New function.
4349 * final.c (output_addr_const): Process CONST_FIXED.
4350 * simplify-rtx.c (simplify_const_unary_operation): Handle US_NEG.
4351 (simplify_binary_operation_1): Handle US_ASHIFT, SS_MULT, US_MULT,
4352 SS_DIV, US_DIV.
4353 (simplify_const_binary_operation): Handle SS_MULT, US_MULT, SS_DIV,
4354 US_DIV, US_ASHIFT.
4355 (simplify_immed_subreg): Support CONST_FIXED.
4356 Process MODE_FRACT, MODE_UFRACT, MODE_ACCUM, MODE_UACCUM.
4357 (simplify_subreg): Support CONST_FIXED.
4358
4359 2007-08-30 Andrew Pinski <andrew_pinski@playstation.sony.com>
4360
4361 * config/rs6000/ppu_intrinsics.h: New file.
4362 * config.gcc (powerpc*-*-* <extra_headers>): Install
4363 ppu_intrinsics.h.
4364
4365 2007-08-30 Kenneth Zadeck <zadeck@naturalbridge.com>
4366
4367 * cfg.c (dump_flow_info): Change to also print entry and exit
4368 block info.
4369 * print-rtl.c (print_rtl_single): Allow to print rtl with
4370 -fdump-unnumbered.
4371
4372 2007-08-30 Kenneth Zadeck <zadeck@naturalbridge.com>
4373
4374 * df-core.h (df_dump_region): New function.
4375 * df.h (df_dump_region): New function.
4376 * loop-invariant.c (find_defs): Add call to df_dump_region.
4377 * loop-iv.c (iv_analysis_loop_init): Changed call from df_dump to
4378 df_dump_region.
4379
4380 2007-08-30 Jakub Jelinek <jakub@redhat.com>
4381
4382 PR target/33168
4383 * config/rs6000/rs6000.c (rs6000_elf_in_small_data_p): Return
4384 true if any of the compare_section_name calls returned true,
4385 rather than if any returned false.
4386
4387 2007-08-30 Richard Guenther <rguenther@suse.de>
4388
4389 PR tree-optimization/33199
4390 * tree-ssa-structalias.c (handle_lhs_call): New function.
4391 (find_func_aliases): In non-IPA mode make sure that for
4392 calls that return a pointer we add a constraint for the
4393 result to point to anything.
4394
4395 2007-08-30 Richard Guenther <rguenther@suse.de>
4396
4397 * doc/invoke.texi (-mveclibabi): Document new target option.
4398 * config/i386/i386.opt (-mveclibabi): New target option.
4399 * config/i386/i386.c (ix86_veclib_handler): Handler for
4400 vectorization library support.
4401 (override_options): Handle the -mveclibabi option, initialize
4402 the vectorization library handler.
4403 (ix86_builtin_vectorized_function): As fallback call the
4404 vectorization library handler, if set.
4405 (ix86_veclibabi_acml): New static function for ACML ABI style
4406 vectorization support.
4407
4408 2007-08-30 Jakub Jelinek <jakub@redhat.com>
4409
4410 * config/rs6000/rs6000.c (rs6000_emit_sync): For QI or HI mode
4411 used_m, even if it is 32-bit aligned, adjust used_m MEM to have
4412 SImode and update m. Don't run gen_lowpart_common on arbitrary
4413 memory address, force it to register first.
4414
4415 PR middle-end/32758
4416 * dce.c (dce_process_block): Don't delete setters of
4417 artificially used registers.
4418
4419 2007-08-30 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
4420
4421 * config/s390/s390.md ("*add<mode>3_alc_carry1_cc",
4422 "*add<mode>3_alc_carry1_cconly", "*add<mode>3_alc_carry2_cc",
4423 "*add<mode>3_alc_carry2_cconly"): New insn definitions.
4424
4425 2007-08-30 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
4426
4427 * config/s390/s390.c (s390_expand_addcc): Emit canonical alc
4428 pattern.
4429 * config/s390/s390.md ("*add<mode>3_alc_cc", "*add<mode>3_alc",
4430 "addti3", "*adddi3_31z", "*scond<mode>"): Make alc pattern canonical.
4431
4432 2007-08-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4433
4434 * system.h: Activate -Wcast-qual as warning-only.
4435
4436 2007-08-29 Paolo Bonzini <bonzini@gnu.org>
4437
4438 PR target/33168
4439 * config/rs6000/rs6000.c (compare_section_name): New function.
4440 (rs6000_elf_in_small_data_p): Compare section prefixes instead
4441 of full name.
4442
4443 2007-08-29 Olivier Hainque <hainque@adacore.com>
4444
4445 * xcoffout.c: #include debug.h.
4446 * Makefile.in (xcoffout.o): Add debug.h dependency.
4447
4448 2007-08-29 Uros Bizjak <ubizjak@gmail.com>
4449
4450 * simplify-rtx.c (simplify_binary_operation_1) [VEC_SELECT]:
4451 Change CONST_VECTOR_ELT to XVECEXP in elem calculation.
4452
4453 2007-08-29 Richard Guenther <rguenther@suse.de>
4454
4455 * tree-pretty-print.c (dump_generic_node): Print
4456 label DECL_UID as D.%u.
4457 * tree-dfa.c (dump_variable): Print DECL_UID as D.%u.
4458
4459 2007-08-29 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
4460
4461 * gcc/builtin-types.def (BT_FN_PTR_PTR_SIZE): New type.
4462 * gcc/builtins.def (BUILT_IN_REALLOC): New builtin.
4463
4464 2007-08-29 Douglas Gregor <doug.gregor@gmail.com>
4465
4466 PR c++/33194
4467 * tree.c (build_type_attribute_qual_variant): Set canonical types
4468 on the final, unqualified attribute variant before building the
4469 qualified version.
4470
4471 2007-08-29 Jie Zhang <jie.zhang@analog.com>
4472
4473 * config/bfin/bfin.c (bfin_expand_builtin): Fix the argument
4474 order of __builtin_bfin_cmplx_mac and __builtin_bfin_cmplx_msu.
4475
4476 2007-08-29 Jie Zhang <jie.zhang@analog.com>
4477
4478 Revert
4479 2007-08-29 Jie Zhang <jie.zhang@analog.com>
4480 * config/bfin/bfin.md (composev2hi): Put operands into vector
4481 with correct order.
4482
4483 2007-08-29 Jie Zhang <jie.zhang@analog.com>
4484
4485 * config/bfin/bfin.md (composev2hi): Put operands into vector
4486 with correct order.
4487
4488 2007-08-29 Jie Zhang <jie.zhang@analog.com>
4489
4490 * config/bfin/bfin.c (bfin_expand_call): Inline PLT with l1_text
4491 attribute when appropriate.
4492 (bfin_handle_l1_text_attribute): New.
4493 (bfin_handle_l1_data_attribute): New.
4494 (bfin_attribute_table): Add attributes: l1_text, l1_data,
4495 l1_data_A and l1_data_B.
4496 * doc/extend.texi (node Function Attributes): Document l1_text
4497 function attribute.
4498 (Variable Attributes): Add Blackfin subsection. Document l1_data,
4499 l1_data_A and l1_data_B variable attributes.
4500
4501 2007-08-28 Jie Zhang <jie.zhang@analog.com>
4502
4503 * config/bfin/bfin.opt (minline-plt): Add.
4504 * config/bfin/bfin.c (bfin_expand_call): Inline PLT when emit
4505 call to global functions.
4506 * doc/invoke.texi (Option Summary): Mention -minline-plt.
4507 (Blackfin Options): Document -minline-plt.
4508
4509 2007-08-28 Nathan Sidwell <nathan@codesourcery.com>
4510
4511 * config/m68k/m68k.c (m68k_get_function_kind): Assert we're never
4512 given a non-function.
4513 (m68k_ok_for_sibcall_p): Only sibcall functions of the same kind.
4514
4515 2007-08-28 DJ Delorie <dj@redhat.com>
4516
4517 * config/sh/sh.c (sh_gimplify_va_arg_expr): Fix sh2a support.
4518
4519 2007-08-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4520
4521 * system.h (CONST_CAST): Avoid union for gcc-4.0.x.
4522
4523 2007-08-28 Richard Guenther <rguenther@suse.de>
4524
4525 * tree.h (struct tree_function_decl): Increase size of
4526 function_code bitfield.
4527
4528 2007-08-28 Nathan Sidwell <nathan@codesourcery.com>
4529 Kazu Hirata <kazu@codesourcery.com>
4530
4531 * gcc/config/m68k/linux.h
4532 (M68K_HONOR_TARGET_STRICT_ALIGNMENT): Redefine as 0.
4533 * config/m68k/m68k.c (TARGET_RETURN_IN_MEMORY): New.
4534 (m68k_return_in_memory): New.
4535 * gcc/config/m68k/m68k.h (M68K_HONOR_TARGET_STRICT_ALIGNMENT):
4536 New.
4537
4538 2007-08-28 Uros Bizjak <ubizjak@gmail.com>
4539
4540 PR target/32661
4541 * simplify-rtx.c (simplify_binary_operation_1) [VEC_SELECT]:
4542 Simplify nested VEC_SELECT (with optional VEC_CONCAT operator as
4543 operand) when top VEC_SELECT extracts scalar element.
4544 * config/i386/sse.md (*vec_extract_v4si_mem): New pattern.
4545 (*vec_extract_v4sf_mem): Ditto.
4546
4547 2007-08-28 Jakub Jelinek <jakub@redhat.com>
4548
4549 PR middle-end/32370
4550 * passes.c (init_optimization_passes): Move pass_df_finish
4551 after pass_postreload sublist.
4552
4553 PR rtl-optimization/33148
4554 * simplify-rtx.c (simplify_unary_operation_1): Only optimize
4555 (neg (lt X 0)) if X has scalar int mode.
4556
4557 PR debug/32914
4558 * dwarf2out.c (rtl_for_decl_init): If vector decl has CONSTRUCTOR
4559 initializer, use build_vector_from_ctor if possible to create
4560 VECTOR_CST out of it. If vector initializer is not VECTOR_CST
4561 even after this, return NULL.
4562
4563 2007-08-28 Gabriel Dos Reis <gdr@integrable-solutions.net>
4564
4565 * c-pretty-print.c (pp_c_constant): Handle COMPLEX_CST.
4566
4567 2007-08-28 Richard Guenther <rguenther@suse.de>
4568
4569 * tree.h (DECL_DISREGARD_INLINE_LIMITS): New.
4570 (struct tree_function_decl): Make function_code a bitfield.
4571 Add disregard_inline_limits flag.
4572 * cgraphunit.c (cgraph_process_new_functions): Check
4573 DECL_DISREGARD_INLINE_LIMITS instead of disregard_inline_limits_p.
4574 (cgraph_preserve_function_body_p): Likewise.
4575 * ipa-inline.c (compute_inline_parameters): Likewise.
4576 * c-decl.c (finish_function): Set DECL_DISREGARD_INLINE_LIMITS
4577 for GNU C extern inline functions.
4578 (merge_decls): Merge DECL_DISREGARD_INLINE_LIMITS.
4579 * tree-inline.c (disregard_inline_limits_p): Remove.
4580 * tree-inline.h (disregard_inline_limits_p): Likewise.
4581 * c-common.c (handle_always_inline_attribute): Set
4582 DECL_DISREGARD_INLINE_LIMITS.
4583 * langhooks.c (add_builtin_function): Verify the function code
4584 fits in the bitfield.
4585
4586 2007-08-28 Mircea Namolaru <namolaru@il.ibm.com>
4587 Vladimir Yanovsky <yanov@il.ibm.com>
4588 Revital Eres <eres@il.ibm.com>
4589 Andrey Belevantsev <abel@ispras.ru>
4590
4591 * config/spu/spu.md: Recognize doloop pattern when -fmodulo-sched
4592 is set.
4593 * modulo-sched.c: Add documentation regarding do-loop.
4594 (doloop_register_get): Change number of arguments to support
4595 the new do-loop pattern and check whether COUNT_REG has no other
4596 occurences in the loop besides in the control part.
4597 (duplicate_insns_of_cycles): Do not duplicate the insn which
4598 changes count_reg as it is already adjusted.
4599 (generate_prolog_epilog): New argument to support the new
4600 do-loop pattern. Change the subtract instruction to use
4601 expand_simple_binop. Call duplicate_insns_of_cycles with new
4602 argument.
4603 (sms_schedule): Call doloop_register_get and
4604 generate_prolog_epilog with new argument. Do not handle loops
4605 with single sets insns with subreg in their lhs.
4606 * loop-doloop.c (doloop_optimize): Support for another do-loop
4607 pattern.
4608 (doloop_condition_get): Gets an instruction instead of a pattern
4609 and change the return condition when the do-loop pattern is
4610 not parallel.
4611 * ddg.c (create_ddg_dep_from_intra_loop_link): Handle only reg
4612 deps when considering to not create edges.
4613
4614 2007-08-27 Alexandre Oliva <aoliva@redhat.com>
4615
4616 * doc/extend.texi (gnu_inline funtion attribute): Document C++
4617 behavior.
4618
4619 2007-08-27 Jason Merrill <jason@redhat.com>
4620
4621 PR c++/31337
4622 * gimplify.c (gimplify_modify_expr): Discard the assignment of
4623 zero-sized types after calling gimplify_modify_expr_rhs.
4624
4625 2007-08-27 Sandra Loosemore <sandra@codesourcery.com>
4626
4627 * regclass.c (init_reg_autoinc): Fix typo.
4628
4629 2007-08-27 Daniel Berlin <dberlin@dberlin.org>
4630
4631 Fix PR tree-optimization/33173
4632 * tree-ssa-alias.c (find_used_portions): Fix reversed test.
4633
4634 2007-08-27 H.J. Lu <hongjiu.lu@intel.com>
4635
4636 PR target/31385
4637 * config/i386/i386.h (VALID_DFP_MODE_P): New.
4638 * config/i386/i386.c (ix86_hard_regno_mode_ok): Allow DFP in
4639 GPR.
4640
4641 2007-08-27 Sandra Loosemore <sandra@codesourcery.com>
4642 David Ung <davidu@mips.com>
4643 Nigel Stephens <nigel@mips.com>
4644
4645 Separate target-specific initialization from general
4646 back-end initialization.
4647
4648 * toplev.c (init_alignments): New, split out from...
4649 (process_options): ...here.
4650 (backend_init_target): New, split out from...
4651 (backend_init): ...here.
4652 (lang_dependent_init_target): New, split out from...
4653 (lang_dependent_init): ...here.
4654 (target_reinit): New.
4655 * toplev.h (target_reinit): Declare.
4656 * expr.c (init_expr_target): Renamed from init_expr_once, since it
4657 now can be called more than once. Update comments.
4658 * expr.h (init_expr_target): Likewise.
4659 * alias.c (init_alias_target): Renamed from init_alias_once, since it
4660 now can be called more than once. Explicitly zero
4661 static_reg_base_value.
4662 * emit-rtl.c (init_emit_regs): New, split out from...
4663 (init_emit_once): Here.
4664 * regclass.c (initial_fixed_regs, initial_call_used_regs): Make
4665 non-const, so that changes from command-line arguments can overwrite
4666 values provided by the static initializers.
4667 (initial_call_really_used_regs): New, used similarly to the above.
4668 (initial_reg_names): Likewise.
4669 (last_mode_for_init_move_cost): Promoted function-local static to
4670 file-scope static to make it accessible outside init_move_cost.
4671 (init_reg_sets): Do not initialize fixed_regs and call_used_regs yet.
4672 Do not initialize inv_reg_alloc_order yet, either. Do initialize
4673 reg_names since it is needed for parsing command-line options.
4674 (init_move_cost): Use last_mode_for_init_move_cost instead of
4675 function-local static.
4676 (init_reg_sets_1): Initialize fixed_regs, call_used_regs, and
4677 call_really_used_regs now. Reinitialize reg_names. Also
4678 initialize inv_reg_alloc_order. Zero reg_class_subunion and
4679 reg_class_superunion. Clear losing_caller_save_reg_set.
4680 Preserve global registers if called more than once. Reset
4681 move cost, may_move_in_cost, may_move_out_cost, and
4682 last_mode_for_init_move_cost.
4683 (init_reg_modes_target): Renamed from init_reg_modes_once, since it
4684 can now be invoked more than once. Update comments.
4685 (init_regs): Update comments.
4686 (fix_register): Update initial_fixed_regs, initial_call_used_regs,
4687 and initial_call_really_used_regs, instead of the non-initial
4688 variables. This allows us to save the command-line register settings
4689 after target reinitialization.
4690 (init_reg_autoinc): Zero forbidden_inc_dec_classes.
4691 * rtl.h (init_emit_regs): Declare.
4692 (init_reg_modes_target, init_alias_target): Renamed as described
4693 above.
4694 * reload1.c (init_reload): Update comments.
4695 * optabs.c (init_optabs): Likewise.
4696 * cfgloopanal.c (init_set_costs): Explicitly zero target_avail_regs.
4697
4698 2007-08-26 Chao-ying Fu <fu@mips.com>
4699
4700 * rtl.h (XCNMPFV): Preserve const-ness of parameters through use of
4701 __typeof().
4702
4703 2007-08-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4704
4705 * alias.c (memory_modified_1, memory_modified_in_insn_p):
4706 Constify.
4707 * basic-block.h (tree_predicted_by_p, rtl_predicted_by_p):
4708 Likewise.
4709 * bb-reorder.c (copy_bb_p): Likewise.
4710 * cfghooks.c (can_remove_branch_p, can_merge_blocks_p,
4711 predicted_by_p, can_duplicate_block_p, block_ends_with_call_p,
4712 block_ends_with_condjump_p): Likewise.
4713 * cfghooks.h (can_remove_branch_p, can_merge_blocks_p,
4714 predicted_by_p, can_duplicate_block_p, block_ends_with_call_p,
4715 block_ends_with_condjump_p): Likewise.
4716 * cfglayout.c (cfg_layout_can_duplicate_bb_p): Likewise.
4717 * cfgrtl.c (can_delete_note_p, can_delete_label_p,
4718 rtl_can_merge_blocks, cfg_layout_can_merge_blocks_p,
4719 rtl_block_ends_with_call_p, rtl_block_ends_with_condjump_p,
4720 need_fake_edge_p, rtl_can_remove_branch_p): Likewise.
4721 * dbxout.c (dbx_debug_hooks, xcoff_debug_hooks): Use
4722 debug_true_const_tree instad of debug_true_tree.
4723 * debug.c (do_nothing_debug_hooks): Likewise.
4724 * debug.h (ignore_block, debug_true_const_tree): Constify.
4725 * dwarf2out.c (stack_adjust_offset, clobbers_queued_reg_save,
4726 dwarf2out_ignore_block, is_pseudo_reg, is_tagged_type,
4727 decl_ultimate_origin, block_ultimate_origin, lookup_decl_loc,
4728 same_dw_val_p, add_ranges, is_subrange_type, type_is_enum,
4729 dbx_reg_number, is_based_loc, field_type,
4730 simple_type_align_in_bits, simple_decl_align_in_bits,
4731 simple_type_size_in_bits, field_byte_offset, insert_float,
4732 type_tag, member_declared_type, is_redundant_typedef,
4733 secname_for_decl, is_inlined_entry_point): Likewise.
4734 * emit-rtl.c (const_next_insn, const_previous_insn,
4735 const_next_nonnote_insn, const_prev_nonnote_insn,
4736 const_next_real_insn, const_prev_real_insn,
4737 const_next_active_insn, const_prev_active_insn, const_next_label,
4738 const_prev_label): Likewise.
4739 * except.h (lookup_stmt_eh_region_fn, lookup_stmt_eh_region):
4740 Likewise.
4741 * haifa-sched.c (may_trap_exp, haifa_classify_insn,
4742 find_set_reg_weight, no_real_insns_p, find_set_reg_weight,
4743 sched_insn_is_legitimate_for_speculation_p): Likewise.
4744 * jump.c (reversed_comparison_code_parts,
4745 reversed_comparison_code, reversed_comparison, condjump_label):
4746 Likewise.
4747 * predict.c (rtl_predicted_by_p, tree_predicted_by_p): Likewise.
4748 * reg-stack.c (stack_regs_mentioned_p, stack_regs_mentioned):
4749 Likewise.
4750 * rtl.h (const_previous_insn, const_next_insn,
4751 const_prev_nonnote_insn, const_next_nonnote_insn,
4752 const_prev_real_insn, const_next_real_insn,
4753 const_prev_active_insn, const_next_active_insn, const_prev_label,
4754 const_next_label, modified_between_p, modified_in_p,
4755 const_note_storeskeep_with_call_p, condjump_label,
4756 reversed_comparison, reversed_comparison_code,
4757 reversed_comparison_code_parts, memory_modified_in_insn_p,
4758 stack_regs_mentioned): Likewise.
4759 * rtlanal.c (modified_between_p, modified_in_p, const_note_stores,
4760 keep_with_call_p): Likewise.
4761 * sched-deps.c (deps_may_trap_p, sched_get_condition,
4762 conditions_mutex_p, sched_insns_conditions_mutex_psd_next_list,
4763 sd_lists_size, sd_lists_empty_p): Likewise.
4764 * sched-int.h (sched_insns_conditions_mutex_p,
4765 haifa_classify_insn, no_real_insns_p,
4766 sched_insn_is_legitimate_for_speculation_p, sd_next_list,
4767 sd_lists_size, sd_lists_empty_p): Likewise.
4768 * sdbout.c (sdb_debug_hooks): Likewise.
4769 * tree-cfg.c (tree_can_merge_blocks_p, is_ctrl_altering_stmt,
4770 stmt_ends_bb_p, tree_can_remove_branch_p, tree_can_duplicate_bb_p,
4771 -tree_block_ends_with_call_p, tree_block_ends_with_condjump_p):
4772 Likewise.
4773 * tree-eh.c (lookup_stmt_eh_region_fn, lookup_stmt_eh_region,
4774 tree_can_throw_internal): Likewise.
4775 * tree-flow-inline.h (phi_nodes): Likewise.
4776 * tree-flow.h (phi_nodesstmt_ends_bb_p, is_ctrl_altering_stmt,
4777 tree_can_throw_internal, lookup_stmt_eh_region): Likewise.
4778 * tree-gimple.c (const_get_call_expr_in): Likewise.
4779 * tree-gimple.h (const_get_call_expr_in): Likewise.
4780 * tree.c (const_lookup_attribute, attribute_list_equal,
4781 attribute_list_contained): Likewise.
4782 * tree.h (attribute_list_equal, attribute_list_contained,
4783 const_lookup_attribute): Likewise.
4784 * vmsdbgout.c (vmsdbgout_ignore_block): Likewise.
4785
4786 2007-08-26 Bernhard Fischer <aldot@gcc.gnu.org>
4787
4788 * tree-ssa-sccvn.c, tree-ssa-sccvn.h, tree-vn.c,
4789 tree-ssa-pre.c: Remove unnecessary trailing whitespace.
4790
4791 2007-08-26 H.J. Lu <hongjiu.lu@intel.com>
4792
4793 PR target/32991
4794 * config/alpha/constraints.md: Delete "svn:mime-type" property
4795 with svn propdel "svn:mime-type".
4796
4797 2007-08-26 H.J. Lu <hongjiu.lu@intel.com>
4798
4799 PR middle-end/33181
4800 * ifcvt.c (noce_get_alt_condition): Make sure that the previous
4801 non NOTE insn doesn't cross basic block.
4802 (noce_try_abs): Likewise.
4803 (noce_process_if_block): Likewise.
4804
4805 2007-08-26 David Edelsohn <edelsohn@gnu.org>
4806
4807 PR target/33151
4808 * config/rs6000/predicates.md (offsettable_mem_operand): Memory
4809 operand without auto-inc-dec.
4810 * config/rs6000/rs6000.md (floatsidf2_internal): Use
4811 offsettable_mem_operand.
4812 (floatunssidf2_internal): Same.
4813 (fix_truncdfsi2_internal): Same.
4814 (floatsidf_ppc64): Same.
4815 (floatunssidf_ppc64): Same.
4816 (fix_trunctfsi2_internal): Same.
4817
4818 2007-08-26 Bernhard Fischer <aldot@gcc.gnu.org>
4819
4820 PR bootstrap/30620
4821 * Makefile.in (libbackend.o): Add gcov-iov.h dependency and
4822 pass defines needed for version.c.
4823
4824 2007-08-25 Joseph Myers <joseph@codesourcery.com>
4825
4826 * configure.ac (--debug-prefix-map check): Change assembler
4827 version presumed to have feature to 2.18.
4828 * configure: Regenerate.
4829
4830 2007-08-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4831
4832 * c-common.c (vector_types_convertible_p,
4833 decl_with_nonnull_addr_p, c_promoting_integer_type_p,
4834 self_promoting_args_p): Constify.
4835 * c-common.h (has_c_linkage, decl_with_nonnull_addr_p,
4836 c_promoting_integer_type_p, self_promoting_args_p,
4837 anon_aggr_type_p, vector_types_convertible_p): Likewise.
4838 * c-decl.c (anon_aggr_type_p): Likewise.
4839 * * c-dump.c (dump_stmt): Likewise.
4840 * c-objc-common.c (has_c_linkage): Likewise.
4841 * c-tree.h (same_translation_unit_p): Likewise.
4842 * c-typeck.c (null_pointer_constant_p,
4843 tagged_types_tu_compatible_p, function_types_compatible_p,
4844 type_lists_compatible_p, lvalue_or_else, lvalue_p,
4845 comptypes_internal, struct tagged_tu_seen_cache,
4846 same_translation_unit_p, alloc_tagged_tu_seen_cache,
4847 c_size_in_bytes): Likewise.
4848 * ggc-common.c (compare_ptr_data, hash_descriptor, eq_descriptor,
4849 hash_ptr, eq_ptr): Likewise.
4850 * langhooks-def.h (lhd_decl_ok_for_sibcall,
4851 LANG_HOOKS_OMP_PRIVATIZE_BY_REFERENCE): Likewise.
4852 * langhooks.c (lhd_decl_ok_for_sibcall): Likewise.
4853 * langhooks.h (ok_for_sibcall, omp_privatize_by_reference):
4854 Likewise.
4855 * optabs.c (optab_for_tree_code): Likewise.
4856 * optabs.h (optab_for_tree_code): Likewise.
4857 * rtl.h (simplify_rtx): Likewise.
4858 * simplify-rtx.c (simplify_rtx): Likewise.
4859 * tree-dump.c (queue, queue_and_dump_index, queue_and_dump_type,
4860 dump_flag, dump_node): Likewise.
4861 * tree-dump.h (struct dump_info, dump_stmt, queue_and_dump_index,
4862 queue_and_dump_type, dump_flag): Likewise.
4863 * tree-flow.h (vect_can_force_dr_alignment_p): Likewise.
4864 * tree-pass.h (dump_node): Likewise.
4865 * tree-vectorizer.c (vect_can_force_dr_alignment_p,
4866 supportable_narrowing_operation): Likewise.
4867 * tree-vectorizer.h (vect_can_force_dr_alignment_p,
4868 supportable_narrowing_operation): Likewise.
4869 * tree-vrp.c (needs_overflow_infinity, supports_overflow_infinity,
4870 is_negative_overflow_infinity, is_positive_overflow_infinity,
4871 is_overflow_infinity, vrp_val_is_max, vrp_val_is_min,
4872 nonnull_arg_p, get_value_range, vrp_operand_equal_p,
4873 update_value_range, add_equivalence, ssa_name_nonnegative_p,
4874 ssa_name_nonzero_p, fp_predicate): Likewise.
4875 * tree.c (auto_var_in_fn_p, empty_body_p): Likewise.
4876 * tree.h (empty_body_p, auto_var_in_fn_p, ssa_name_nonzero_p,
4877 ssa_name_nonnegative_p): Likewise.
4878
4879 2007-08-25 Hans Kester <hans.kester@ellips.nl>
4880
4881 * config.gcc : Add x86_64-elf target.
4882
4883 2007-08-25 Jakub Jelinek <jakub@redhat.com>
4884
4885 * expr.c (store_expr): Fix order of store_by_pieces arguments.
4886
4887 2007-08-24 Sandra Loosemore <sandra@codesourcery.com>
4888 Nigel Stephens <nigel@mips.com>
4889
4890 PR target/11787
4891
4892 * doc/tm.texi (SET_RATIO, SET_BY_PIECES_P): Document new macros.
4893 (STORE_BY_PIECES_P): No longer applies to __builtin_memset.
4894 * expr.c (SET_BY_PIECES_P): Define.
4895 (can_store_by_pieces, store_by_pieces): Add MEMSETP argument; use
4896 it to decide whether to use SET_BY_PIECES_P or STORE_BY_PIECES_P.
4897 (store_expr): Pass MEMSETP argument to can_store_by_pieces and
4898 store_by_pieces.
4899 * expr.h (SET_RATIO): Define.
4900 (can_store_by_pieces, store_by_pieces): Update prototypes.
4901 * builtins.c (expand_builtin_memcpy): Pass MEMSETP argument to
4902 can_store_by_pieces/store_by_pieces.
4903 (expand_builtin_memcpy_args): Likewise.
4904 (expand_builtin_strncpy): Likewise.
4905 (expand_builtin_memset_args): Likewise. Also remove special case
4906 for optimize_size so that can_store_by_pieces/SET_BY_PIECES_P can
4907 decide what to do instead.
4908 * value-prof.c (tree_stringops_transform): Pass MEMSETP argument
4909 to can_store_by_pieces.
4910
4911 * config/sh/sh.h (SET_BY_PIECES_P): Clone from STORE_BY_PIECES_P.
4912 * config/s390/s390.h (SET_BY_PIECES_P): Likewise.
4913
4914 * config/mips/mips.opt (mmemcpy): Change from Var to Mask.
4915 * config/mips/mips.c (override_options): Make -Os default to -mmemcpy.
4916 * config/mips/mips.h (MIPS_CALL_RATIO): Define.
4917 (MOVE_RATIO, CLEAR_RATIO, SET_RATIO): Define.
4918 (STORE_BY_PIECES_P): Define.
4919
4920 2007-08-24 Tom Tromey <tromey@redhat.com>
4921
4922 * varpool.c (varpool_last_needed_node): Fix comment typo.
4923 * c-decl.c (duplicate_decls): Fix comment typo.
4924 (clone_underlying_type): Update comment.
4925
4926 2007-08-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4927
4928 * config/alpha/alpha.c (alpha_mangle_type, decl_has_samegp,
4929 alpha_in_small_data_p, alpha_split_complex_arg,
4930 alpha_stdarg_optimize_hook, TARGET_ASM_CAN_OUTPUT_MI_THUNK):
4931 Constify.
4932 * config/arm/arm-protos.h (arm_mangle_type): Likewise.
4933 * config/arm/arm.c (arm_comp_type_attributes, arm_mangle_type):
4934 Likewise.
4935 * config/bfin/bfin.c (funkind, bfin_comp_type_attributes,
4936 TARGET_ASM_CAN_OUTPUT_MI_THUNK): Likewise.
4937 * config/darwin-protos.h (darwin_binds_local_p): Likewise.
4938 * config/darwin.c (darwin_binds_local_p): Likewise.
4939 * config/frv/frv.c (frv_string_begins_with, frv_in_small_data_p):
4940 Likewise.
4941 * config/i386/i386-protos.h (i386_pe_binds_local_p,
4942 i386_pe_valid_dllimport_attribute_p): Likewise.
4943 * config/i386/i386.c (ix86_function_regparm,
4944 ix86_comp_type_attributes, ix86_ms_bitfield_layout_p,
4945 x86_can_output_mi_thunk, ix86_mangle_type,
4946 TARGET_USE_BLOCKS_FOR_CONSTANT_P): Likewise.
4947 * config/i386/winnt.c (i386_pe_valid_dllimport_attribute_p,
4948 i386_pe_binds_local_p): Likewise.
4949 * config/ia64/ia64.c
4950 (ia64_first_cycle_multipass_dfa_lookahead_guard_spec,
4951 ia64_needs_block_p, ia64_in_small_data_p, ia64_mangle_type,
4952 ia64_invalid_conversion, ia64_invalid_unary_op,
4953 ia64_invalid_binary_op, TARGET_ASM_CAN_OUTPUT_MI_THUNK):
4954 Likewise.
4955 * config/m32c/m32c.c (m32c_comp_type_attributes): Likewise.
4956 * config/m32r/m32r.c (m32r_in_small_data_p): Likewise.
4957 * config/m68k/m68k.c (TARGET_ASM_CAN_OUTPUT_MI_THUNK): Likewise.
4958 * config/mips/mips.c (mips_use_blocks_for_constant_p,
4959 mips_in_small_data_p, mips_use_anchors_for_symbol_p,
4960 mips_comp_type_attributes, TARGET_ASM_CAN_OUTPUT_MI_THUNK,
4961 mips_near_type_p, mips_far_type_p, mips_global_symbol_p,
4962 mips_symbol_binds_local_p, mips_classify_symbol): Likewise.
4963 * config/pa/pa.c (pa_commutative_p): Likewise.
4964 * config/rs6000/rs6000-protos.h (rs6000_elf_in_small_data_p):
4965 Likewise.
4966 * config/rs6000/rs6000.c (rs6000_invalid_within_doloop,
4967 rs6000_ms_bitfield_layout_p, rs6000_mangle_type,
4968 rs6000_use_blocks_for_constant_p,
4969 rs6000_vector_alignment_reachable, rs6000_is_opaque_type,
4970 invalid_arg_for_unprototyped_fn, TARGET_ASM_CAN_OUTPUT_MI_THUNK,
4971 TARGET_SPLIT_COMPLEX_ARG, rs6000_elf_in_small_data_p): Likewise.
4972 * config/s390/s390.c (s390_mangle_type,
4973 TARGET_ASM_CAN_OUTPUT_MI_THUNK, TARGET_INVALID_WITHIN_DOLOOP):
4974 Likewise.
4975 * config/score/score.c (TARGET_ASM_CAN_OUTPUT_MI_THUNK,
4976 th_in_small_data_p): Likewise.
4977 * config/sh/sh.c (sh_ms_bitfield_layout_p,
4978 sh_dwarf_calling_convention, TARGET_ASM_CAN_OUTPUT_MI_THUNK):
4979 Likewise.
4980 * config/sparc/sparc.c (sparc_can_output_mi_thunk,
4981 sparc_mangle_type): Likewise.
4982 * config/spu/spu.c (spu_vector_alignment_reachable): Likewise.
4983 * config/xtensa/xtensa.c (TARGET_SPLIT_COMPLEX_ARG): Likewise.
4984 * emit-rtl.c (const_fixed_htab_hash, const_fixed_htab_eq):
4985 Likewise.
4986 * hooks.c (hook_bool_mode_const_rtx_false,
4987 hook_bool_mode_const_rtx_true,
4988 hook_bool_const_tree_hwi_hwi_const_tree_false,
4989 hook_bool_const_tree_hwi_hwi_const_tree_true,
4990 hook_int_const_tree_0, hook_int_const_tree_const_tree_1,
4991 hook_constcharptr_const_tree_null,
4992 hook_constcharptr_const_rtx_null,
4993 hook_constcharptr_const_tree_const_tree_null,
4994 hook_constcharptr_int_const_tree_null,
4995 hook_constcharptr_int_const_tree_const_tree_null): New.
4996 (hook_bool_mode_rtx_false, hook_bool_mode_rtx_true,
4997 hook_bool_tree_hwi_hwi_tree_false,
4998 hook_bool_tree_hwi_hwi_tree_true, hook_int_tree_0,
4999 hook_int_tree_tree_1, hook_constcharptr_tree_null,
5000 hook_constcharptr_rtx_null, hook_constcharptr_tree_tree_null,
5001 hook_constcharptr_int_tree_null,
5002 hook_constcharptr_int_tree_tree_null): Delete.
5003 (default_can_output_mi_thunk_no_vcall): Constify.
5004 * hooks.h (hook_bool_mode_rtx_false, hook_bool_mode_rtx_true,
5005 hook_bool_tree_hwi_hwi_tree_false,
5006 hook_bool_tree_hwi_hwi_tree_true, hook_int_tree_0,
5007 hook_int_tree_tree_1, hook_constcharptr_tree_null,
5008 hook_constcharptr_rtx_null, hook_constcharptr_tree_tree_null,
5009 hook_constcharptr_int_tree_null,
5010 hook_constcharptr_int_tree_tree_null): Delete.
5011 (hook_bool_mode_const_rtx_false, hook_bool_mode_const_rtx_true,
5012 hook_bool_const_tree_hwi_hwi_const_tree_false,
5013 hook_bool_const_tree_hwi_hwi_const_tree_true,
5014 hook_int_const_tree_0, hook_int_const_tree_const_tree_1,
5015 hook_constcharptr_const_tree_null,
5016 hook_constcharptr_const_rtx_null,
5017 hook_constcharptr_const_tree_const_tree_null,
5018 hook_constcharptr_int_const_tree_null,
5019 hook_constcharptr_int_const_tree_const_tree_null): New.
5020 (default_can_output_mi_thunk_no_vcall): Constify.
5021 * integrate.c (function_attribute_inlinable_p): Likewise.
5022 * integrate.h (function_attribute_inlinable_p): Likewise.
5023 * jump.c (rtx_renumbered_equal_p): Likewise.
5024 * output.h (decl_readonly_section, categorize_decl_for_section,
5025 default_use_anchors_for_symbol_p, default_binds_local_p,
5026 default_binds_local_p_1): Likewise.
5027 * rtl.h (rtx_renumbered_equal_p, decl_default_tls_model):
5028 Likewise.
5029 * target-def.h (TARGET_ASM_CAN_OUTPUT_MI_THUNK,
5030 TARGET_VALID_DLLIMPORT_ATTRIBUTE_P, TARGET_VECTOR_OPAQUE_P,
5031 TARGET_COMMUTATIVE_P, TARGET_USE_BLOCKS_FOR_CONSTANT_P,
5032 TARGET_COMP_TYPE_ATTRIBUTES,
5033 TARGET_FUNCTION_ATTRIBUTE_INLINABLE_P,
5034 TARGET_MS_BITFIELD_LAYOUT_P, TARGET_MANGLE_TYPE,
5035 TARGET_IN_SMALL_DATA_P, TARGET_INVALID_CONVERSION,
5036 TARGET_INVALID_UNARY_OP, TARGET_INVALID_BINARY_OP,
5037 TARGET_DWARF_CALLING_CONVENTION): Likewise.
5038 * target.h (can_output_mi_thunk, needs_block_p,
5039 first_cycle_multipass_dfa_lookahead_guard_spec,
5040 vector_alignment_reachable, comp_type_attributes,
5041 function_attribute_inlinable_p, ms_bitfield_layout_p, mangle_type,
5042 commutative_p, use_blocks_for_constant_p,
5043 use_anchors_for_symbol_p, in_small_data_p, binds_local_p,
5044 vector_opaque_p, dwarf_calling_convention, stdarg_optimize_hook,
5045 invalid_within_doloop, valid_dllimport_attribute_p,
5046 split_complex_arg, invalid_arg_for_unprototyped_fn,
5047 invalid_conversion, invalid_unary_op, invalid_binary_op):
5048 Likewise.
5049 * targhooks.c (default_invalid_within_doloop,
5050 hook_invalid_arg_for_unprototyped_fn,
5051 default_builtin_vector_alignment_reachable): Likewise.
5052 (hook_bool_rtx_commutative_p): Delete.
5053 (hook_bool_const_rtx_commutative_p): New.
5054 * targhooks.h (default_invalid_within_doloop,
5055 default_builtin_vector_alignment_reachable,
5056 hook_invalid_arg_for_unprototyped_fn): Constify.
5057 (hook_bool_rtx_commutative_p): Delete.
5058 (hook_bool_const_rtx_commutative_p): New.
5059 * varasm.c (bss_initializer_p, decl_default_tls_model,
5060 categorize_decl_for_section, decl_readonly_section,
5061 default_use_anchors_for_symbol_p, default_binds_local_p,
5062 default_binds_local_p_1): Constify.
5063
5064 2007-08-24 Jie Zhang <jie.zhang@analog.com>
5065
5066 * config/bfin/bfin.h (TARGET_CPU_CPP_BUILTINS): Define
5067 __NO_BUILTIN if -fno-builtin.
5068
5069 2007-08-24 Jie Zhang <jie.zhang@analog.com>
5070
5071 * config/bfin/bfin.c (print_operand): Report error instead of
5072 ICE for wrong operand.
5073
5074 2007-08-24 Michael Matz <matz@suse.de>
5075
5076 * Makefile.in (GTFILES_H): Use $(patsubst) instead of $(subst).
5077
5078 2007-08-24 Richard Guenther <rguenther@suse.de>
5079
5080 PR middle-end/33166
5081 * tree-ssa.c (useless_type_conversion_p): Split into a
5082 recursive and a non-recursive part.
5083 (useless_type_conversion_p_1): New function.
5084 * tree-ssa-ccp.c (fold_stmt_r): Make sure that the result
5085 from maybe_fold_offset_to_reference is trivially convertible
5086 to the desired type before doing the simplification.
5087
5088 2007-08-24 Jakub Jelinek <jakub@redhat.com>
5089
5090 * expr.c (store_expr): Optimize initialization of an array
5091 with STRING_CST.
5092 * expr.h (builtin_strncpy_read_str): New prototype.
5093 * builtins.c (builtin_strncpy_read_str): Remove prototype.
5094 No longer static.
5095
5096 2007-08-24 Uros Bizjak <ubizjak@gmail.com>
5097
5098 PR middle-end/33157
5099 * ifcvt.c (noce_find_if_block): Do not clear if_info.cond_earliest
5100 field when initializing if_info structure.
5101
5102 2007-08-24 Richard Guenther <rguenther@suse.de>
5103
5104 * Makefile.in (tree-inline.o): Add $(TARGET_H) and $(INTEGRATE_H)
5105 dependencies.
5106 * c-objc-common.c (c_cannot_inline_tree_fn): Remove.
5107 * langhooks.c (lhd_tree_inlining_cannot_inline_tree_fn): Likewise.
5108 * tree-inline.c (inlinable_function_p): Fold in common parts of
5109 the cannot_inline_tree_fn langhook.
5110 * langhooks-def.h (lhd_tree_inlining_cannot_inline_tree_fn): Remove.
5111 (LANG_HOOKS_TREE_INLINING_CANNOT_INLINE_TREE_FN): Likewise.
5112 (LANG_HOOKS_TREE_INLINING_INITIALIZER): Remove initializer for
5113 cannot_inline_tree_fn langhook.
5114 * langhooks.h (struct lang_hooks_for_tree_inlining): Remove
5115 cannot_inline_tree_fn member.
5116
5117 2007-08-24 Richard Guenther <rguenther@suse.de>
5118
5119 * expr.c (get_inner_reference): Do computation of bitoffset
5120 from offset in a way we can detect overflow reliably.
5121
5122 2007-08-24 Jie Zhang <jie.zhang@analog.com>
5123
5124 * crtstuff.c (USE_PT_GNU_EH_FRAME): Don't define for uClibc.
5125
5126 2007-08-24 Jie Zhang <jie.zhang@analog.com>
5127
5128 * config/bfin/bfin.opt (mfast-fp): Add.
5129 * config/bfin/linux.h (LINK_GCC_C_SEQUENCE_SPEC): Let
5130 libbffastfp override libgcc if -mfast-fp.
5131 * config/bfin/bfin.h (LINK_GCC_C_SEQUENCE_SPEC): Likewise.
5132 * doc/invoke.texi (Option Summary): Mention -mfast-fp.
5133 (Blackfin Options): Document -mfast-fp.
5134
5135 2007-08-24 Jakub Jelinek <jakub@redhat.com>
5136
5137 PR tree-optimization/32573
5138 PR middle-end/32946
5139 * tree-data-ref.c (initialize_data_dependence_relation): Clear
5140 DDR_SUBSCRIPTS, DDR_DIR_VECTS and DDR_DIST_VECTS at the beginning.
5141 (finalize_ddr_dependent): Clear DDR_SUBSCRIPTS after freeing it.
5142 (build_classic_dist_vector): Return false rather than true if
5143 DDR_ARE_DEPENDENT is non-NULL at the beginning. Return false
5144 if either subscript_dependence_tester_1 or build_classic_dist_vector_1
5145 returned false. Don't call save_dist_v before calling
5146 build_classic_dist_vector_1.
5147 (free_dependence_relation): Don't guard freeing DDR_SUBSCRIPTS
5148 with NULL DDR_ARE_DEPENDENT. Also free DDR_DIST_VECTS and/or
5149 DDR_DIR_VECTS vectors.
5150
5151 2007-08-23 Brian Sidebotham <brian.sidebotham@gmail.com>
5152
5153 * configure.ac (leb128): Modify sed statement to work with any
5154 binutils version string.
5155 * configure: Regenerate
5156
5157 2007-08-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5158
5159 * config/arc/arc-protos.h arc_select_cc_mode, gen_compare_reg):
5160 Wrap in RTX_CODE macro guard.
5161 * config/arm/pe.c (arm_dllexport_p, arm_dllimport_p,
5162 arm_dllexport_name_p, arm_dllimport_name_p, arm_mark_dllexport,
5163 arm_mark_dllimport, arm_pe_encode_section_info,
5164 arm_pe_unique_section): Use ISO-C function declarations.
5165 * config/c4x/c4x-c.c (c4x_parse_pragma, c4x_pr_CODE_SECTION,
5166 c4x_pr_DATA_SECTION, c4x_pr_FUNC_IS_PURE,
5167 c4x_pr_FUNC_NEVER_RETURNS, c4x_pr_INTERRUPT, c4x_pr_ignored):
5168 Likewise.
5169 * config/iq2000/iq2000.h (ASM_OUTPUT_SKIP): Fix format warning.
5170 * config/m68hc11/m68hc11.h (ASM_OUTPUT_EXTERNAL): Undef before
5171 defining.
5172 * config/mips/mips.h (ASM_DECLARE_OBJECT_NAME): Fix format
5173 warnings.
5174 * config/mn10300/mn10300.h (OUTPUT_ADDR_CONST_EXTRA): Likewise.
5175 * config/pdp11/pdp11.c (pdp11_output_function_epilogue): Likewise.
5176 (register_move_cost): Use ISO-C function declarations.
5177 * config/pdp11/pdp11.h (PRINT_OPERAND): Fix format warnings.
5178 * config/score/score-protos.h (score_declare_object): Add
5179 ATTRIBUTE_PRINTF_4.
5180 * config/score/score.h (ASM_DECLARE_OBJECT_NAME): Fix format
5181 warnings.
5182 * final.c (profile_function): Avoid empty if-bodies.
5183
5184
5185 * calls.c (must_pass_in_stack_var_size,
5186 must_pass_in_stack_var_size_or_pad): Constify.
5187 * config/alpha/alpha-protos.h (function_value): Likewise.
5188 * config/alpha/alpha.c (alpha_return_in_memory,
5189 alpha_pass_by_reference, function_value,
5190 unicosmk_must_pass_in_stack, TARGET_PROMOTE_FUNCTION_ARGS,
5191 TARGET_PROMOTE_FUNCTION_RETURN, TARGET_PROMOTE_PROTOTYPES):
5192 Likewise.
5193 * config/arc/arc.c (arc_return_in_memory, arc_pass_by_reference,
5194 TARGET_PROMOTE_FUNCTION_ARGS, TARGET_PROMOTE_FUNCTION_RETURN,
5195 TARGET_PROMOTE_PROTOTYPES): Likewise.
5196 * config/arm/arm-protos.h (arm_return_in_memory,
5197 arm_pad_arg_upward, arm_function_value): Likewise.
5198 * config/arm/arm.c (arm_pass_by_reference,
5199 arm_promote_prototypes, arm_return_in_msb, arm_must_pass_in_stack,
5200 TARGET_PROMOTE_FUNCTION_ARGS, TARGET_PROMOTE_FUNCTION_RETURN,
5201 arm_function_value, arm_return_in_memory, arm_pad_arg_upward):
5202 Likewise.
5203 * config/arm/arm.h (ARM_DECLARE_FUNCTION_NAME): Likewise.
5204 * config/avr/avr-protos.h (avr_function_value): Likewise.
5205 * config/avr/avr.c (avr_return_in_memory,
5206 gas_output_limited_string, gas_output_ascii, avr_function_value,
5207 avr_return_in_memory): Likewise.
5208 * config/bfin/bfin-protos.h (bfin_return_in_memory): Likewise.
5209 * config/bfin/bfin.c (bfin_pass_by_reference,
5210 bfin_return_in_memory, TARGET_PROMOTE_PROTOTYPES,
5211 TARGET_PROMOTE_FUNCTION_ARGS, TARGET_PROMOTE_FUNCTION_RETURN):
5212 Likewise.
5213 * config/cris/cris.c (cris_pass_by_reference,
5214 TARGET_PROMOTE_FUNCTION_ARGS): Likewise.
5215 * config/crx/crx.c (crx_return_in_memory): Likewise.
5216 * config/darwin.c (function_base, machopic_function_base_name):
5217 Likewise.
5218 * config/fr30/fr30.c (fr30_must_pass_in_stack,
5219 TARGET_PROMOTE_PROTOTYPES): Likewise.
5220 * config/frv/frv.c (frv_must_pass_in_stack): Likewise.
5221 * config/h8300/h8300.c (h8300_return_in_memory): Likewise.
5222 * config/i386/i386-protos.h (ix86_return_in_memory,
5223 ix86_sol10_return_in_memory): Likewise.
5224 * config/i386/i386.c (ix86_function_value,
5225 ix86_function_sseregparm, ix86_must_pass_in_stack,
5226 type_natural_mode, classify_argument, examine_argument,
5227 construct_container, ix86_pass_by_reference, function_value_32,
5228 function_value_64, ix86_function_value_1, return_in_memory_32,
5229 return_in_memory_64, return_in_memory_ms_64,
5230 ix86_return_in_memory, ix86_sol10_return_in_memory,
5231 TARGET_PROMOTE_PROTOTYPES): Likewise.
5232 * config/ia64/ia64-protos.h (ia64_function_value,
5233 ia64_hpux_function_arg_padding): Likewise.
5234 * config/ia64/ia64.c (hfa_element_mode, ia64_return_in_memory,
5235 ia64_function_value, bundle_state_hash, bundle_state_eq_p,
5236 ia64_hpux_function_arg_padding): Likewise.
5237 * config/iq2000/iq2000-protos.h (function_arg,
5238 iq2000_function_value): Likewise.
5239 * config/iq2000/iq2000.c (iq2000_return_in_memory,
5240 iq2000_pass_by_reference, TARGET_PROMOTE_FUNCTION_ARGS,
5241 TARGET_PROMOTE_FUNCTION_RETURN, TARGET_PROMOTE_PROTOTYPES,
5242 function_arg, iq2000_function_value): Likewise.
5243 * config/m32c/m32c-protos.h (m32c_function_value,
5244 m32c_promote_function_return): Likewise.
5245 * config/m32c/m32c.c (m32c_pass_by_reference,
5246 m32c_promote_prototypes, m32c_promote_function_return,
5247 m32c_function_value): Likewise.
5248 * config/m32r/m32r.c (m32r_return_in_memory,
5249 m32r_pass_by_reference, TARGET_PROMOTE_PROTOTYPES,
5250 m32r_in_small_data_p): Likewise.
5251 * config/m68hc11/m68hc11-protos.h (m68hc11_function_arg_padding):
5252 Likewise.
5253 * config/m68hc11/m68hc11.c (m68hc11_return_in_memory,
5254 m68hc11_function_arg_padding): Likewise.
5255 * config/m68k/m68k-protos.h (m68k_function_value): Likewise.
5256 * config/m68k/m68k.c (TARGET_PROMOTE_PROTOTYPES,
5257 m68k_function_value): Likewise.
5258 * config/mcore/mcore-protos.h (mcore_num_arg_regs,
5259 mcore_function_value): Likewise.
5260 * config/mcore/mcore.c (handle_structs_in_regs,
5261 mcore_return_in_memory, TARGET_PROMOTE_FUNCTION_ARGS,
5262 TARGET_PROMOTE_FUNCTION_RETURN, TARGET_PROMOTE_PROTOTYPES,
5263 mcore_num_arg_regs, mcore_function_value): Likewise.
5264 * config/mips/mips-protos.h (mips_pad_arg_upward,
5265 mips_function_value): Likewise.
5266 * config/mips/mips.c (mips_fpr_return_fields, mips_return_in_msb,
5267 mips_return_in_memory, mips_pass_by_reference, mips_callee_copies,
5268 TARGET_PROMOTE_FUNCTION_ARGS, TARGET_PROMOTE_FUNCTION_RETURN,
5269 TARGET_PROMOTE_PROTOTYPES, mips_pad_arg_upward,
5270 mips_function_value): Likewise.
5271 * config/mmix/mmix-protos.h (mmix_function_outgoing_value):
5272 Likewise.
5273 * config/mmix/mmix.c (mmix_pass_by_reference,
5274 TARGET_PROMOTE_FUNCTION_ARGS, mmix_function_outgoing_value,
5275 mmix_encode_section_info): Likewise.
5276 * config/mn10300/mn10300-protos.h (mn10300_function_value):
5277 Likewise.
5278 * config/mn10300/mn10300.c (mn10300_return_in_memory,
5279 mn10300_pass_by_reference, TARGET_PROMOTE_PROTOTYPES,
5280 mn10300_function_value): Likewise.
5281 * config/mt/mt-protos.h (mt_function_value): Likewise.
5282 * config/mt/mt.c (mt_pass_by_reference, mt_function_value,
5283 mt_pass_in_stack, TARGET_PROMOTE_PROTOTYPES): Likewise.
5284 * config/pa/pa-protos.h (function_arg_padding, function_value,
5285 pa_return_in_memory): Likewise.
5286 * config/pa/pa.c (pa_pass_by_reference,
5287 TARGET_PROMOTE_FUNCTION_RETURN, TARGET_PROMOTE_PROTOTYPES,
5288 function_arg_padding, function_value, pa_return_in_memory):
5289 Likewise.
5290 * config/pdp11/pdp11.c (pdp11_return_in_memory): Likewise.
5291 * config/rs6000/rs6000-protos.h (rs6000_function_value,
5292 function_arg_padding): Likewise.
5293 * config/rs6000/rs6000.c (rs6000_return_in_memory,
5294 rs6000_darwin64_record_arg_recurse, rs6000_darwin64_record_arg,
5295 rs6000_pass_by_reference, rs6000_must_pass_in_stack,
5296 TARGET_PROMOTE_FUNCTION_ARGS, TARGET_PROMOTE_FUNCTION_RETURN,
5297 function_arg_padding, altivec_expand_dst_builtin,
5298 altivec_expand_builtin, rs6000_expand_builtin, spe_init_builtins,
5299 altivec_init_builtins, rs6000_common_init_builtins,
5300 rs6000_function_value): Likewise.
5301 * s390/s390-protos.h (s390_function_value): Likewise.
5302 * config/s390/s390.c (s390_function_arg_size,
5303 s390_pass_by_reference, s390_return_in_memory,
5304 s390_function_value, TARGET_PROMOTE_FUNCTION_ARGS,
5305 TARGET_PROMOTE_FUNCTION_RETURN): Likewise.
5306 * config/score/score-protos.h (score_function_value): Likewise.
5307 * config/score/score.c (score_arg_partial_bytes,
5308 TARGET_PROMOTE_FUNCTION_ARGS, TARGET_PROMOTE_FUNCTION_RETURN,
5309 TARGET_PROMOTE_PROTOTYPES, score_return_in_memory,
5310 score_pass_by_reference, score_add_offset, score_function_value):
5311 Likewise.
5312 * config/sh/sh-protos.h (sh_attr_renesas_p,
5313 sh_promote_prototypes): Likewise.
5314 * config/sh/sh.c (sh_return_in_memory, sh_pass_by_reference,
5315 sh_callee_copies, sh_promote_prototypes, shcompact_byref,
5316 sh_attr_renesas_p): Likewise.
5317 * config/sparc/sparc-protos.h (function_value,
5318 function_arg_padding): Likewise.
5319 * config/sparc/sparc.c (sparc_promote_prototypes,
5320 sparc_return_in_memory, sparc_pass_by_reference,
5321 TARGET_PROMOTE_FUNCTION_ARGS, TARGET_PROMOTE_FUNCTION_RETURN,
5322 function_arg_record_value_2, function_arg_record_value_1,
5323 function_arg_record_value, function_arg_record_value,
5324 function_arg_padding, function_value): Likewise.
5325 * config/spu/spu-protos.h (spu_function_value): Likewise.
5326 * config/spu/spu.c (spu_pass_by_reference, spu_return_in_memory,
5327 spu_function_value): Likewise.
5328 * config/stormy16/stormy16-protos.h (xstormy16_function_value):
5329 Likewise.
5330 * config/stormy16/stormy16.c (xstormy16_return_in_memory,
5331 xstormy16_function_value, TARGET_PROMOTE_FUNCTION_ARGS,
5332 TARGET_PROMOTE_FUNCTION_RETURN, TARGET_PROMOTE_PROTOTYPES):
5333 Likewise.
5334 * config/v850/v850.c (v850_return_in_memory,
5335 v850_pass_by_reference, TARGET_PROMOTE_PROTOTYPES): Likewise.
5336 * config/vax/vax.c (TARGET_PROMOTE_PROTOTYPES): Likewise.
5337 * config/xtensa/xtensa.c (xtensa_return_in_msb,
5338 xtensa_return_in_memory, TARGET_PROMOTE_FUNCTION_ARGS,
5339 TARGET_PROMOTE_FUNCTION_RETURN, TARGET_PROMOTE_PROTOTYPES):
5340 Likewise.
5341 * explow.c (promote_mode, hard_function_value): Likewise.
5342 * expr.h (hard_function_value, promote_mode): Likewise.
5343 * function.c (aggregate_value_p): Likewise.
5344 * hooks.c (hook_bool_const_tree_true): New.
5345 * hooks.h (hook_bool_const_tree_true): New.
5346 * sdbout.c (SET_KNOWN_TYPE_TAG, plain_type_1): Constify.
5347 * target-def.h (TARGET_PROMOTE_FUNCTION_ARGS,
5348 TARGET_PROMOTE_FUNCTION_RETURN, TARGET_PROMOTE_PROTOTYPES,
5349 TARGET_RETURN_IN_MSB): Likewise.
5350 * target.h (promote_function_args, promote_function_return,
5351 promote_prototypes, return_in_memory, return_in_msb,
5352 pass_by_reference, must_pass_in_stack, callee_copies,
5353 function_value): Likewise.
5354 * targhooks.c (default_return_in_memory,
5355 hook_pass_by_reference_must_pass_in_stack,
5356 hook_callee_copies_named,
5357 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_false,
5358 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_true,
5359 default_function_value): Likewise.
5360 * targhooks.h (default_return_in_memory,
5361 hook_pass_by_reference_must_pass_in_stack,
5362 hook_callee_copies_named,
5363 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_false,
5364 hook_bool_CUMULATIVE_ARGS_mode_tree_bool_true,
5365 default_function_value): Likewise.
5366 * tree-ssa-structalias.c (const_equiv_class_label_t): New.
5367 (equiv_class_label_hash, equiv_class_label_eq): Constify.
5368 * tree-vectorizer.c (bb_in_loop_p): Likewise.
5369 * tree.c (needs_to_live_in_memory): Likewise.
5370 * tree.h (struct tree_type, needs_to_live_in_memory,
5371 aggregate_value_p, must_pass_in_stack_var_size,
5372 must_pass_in_stack_var_size_or_pad): Likewise.
5373 * vmsdbgout.c (write_debug_addr, write_debug_delta4,
5374 write_debug_string, ASM_OUTPUT_DEBUG_STRING, write_rtnbeg,
5375 lookup_filename): Likewise.
5376
5377 2007-08-23 Uros Bizjak <ubizjak@gmail.com>
5378
5379 PR target/17390
5380 * config/i386/i386.c (ix86_expand_fp_compare): Expand fp comparison to
5381 fake fcomi i387 instruction for !TARGET_CMOVE.
5382 (ix86_expand_branch): Expand natural sequence with one jump for
5383 all targets, not only TARGET_CMOVE.
5384 * config/i386/i386.md (*cmpfp_0_cc): New define_insn_and_split
5385 pattern to implement fake fcomi sequence. Split instruction after
5386 reload to correct compare sequences.
5387 (*cmpfp_xf_cc): Ditto.
5388 (*cmpfp_<mode>_cc): Ditto.
5389 (*cmpfp_u_cc): Ditto.
5390 (*cmpfp_<mode>_cc): Ditto.
5391
5392 2007-08-23 Richard Guenther <rguenther@suse.de>
5393
5394 * tree-pretty-print.c (dump_generic_node): Annotate
5395 GIMPLE_MODIFY_STMTs with volatile ops with "{v}".
5396
5397 2007-08-23 Richard Guenther <rguenther@suse.de>
5398
5399 * builtins.c (expand_builtin_mathfn): Wrap argument in
5400 save_expr directly instead of re-building the call.
5401 (expand_builtin_mathfn_2): Likewise.
5402 (expand_builtin_mathfn_3): Likewise.
5403 (expand_builtin_interclass_mathfn): Likewise.
5404 (expand_builtin_int_roundingfn): Set arg.
5405 (expand_builtin_int_roundingfn_2): Likewise.
5406
5407 2007-08-23 Paolo Bonzini <bonzini@gnu.org>
5408
5409 * config/i386/sse.md (*sse_and<mode>3, *sse_ior<mode>3,
5410 *sse_nand<mode>3, *sse_xor<mode>3): New.
5411
5412 2007-08-23 Uros Bizjak <ubizjak@gmail.com>
5413
5414 * config/i386/i386.h (PRINT_OPERAND_PUNCT_VALID_P): Add ';' code.
5415 * config/i386/i386.c (print_operand): Handle ';' code. Output
5416 semicolon for TARGET_MACHO.
5417 * config/i386/sync.md (*sync_compare_and_swap<mode>): Use '%;' to
5418 emit semicolon after 'lock' prefix.
5419 (sync_double_compare_and_swap<mode>): Ditto.
5420 (*sync_double_compare_and_swapdi_pic): Ditto.
5421 (*sync_compare_and_swap_cc<mode>): Ditto.
5422 (sync_double_compare_and_swap_cc<mode>): Ditto.
5423 (*sync_double_compare_and_swap_ccdi_pic): Ditto.
5424 (sync_old_add<mode>): Ditto.
5425 (sync_add<mode>): Ditto.
5426 (sync_sub<mode>): Ditto.
5427 (sync_ior<mode>): Ditto.
5428 (sync_and<mode>): Ditto.
5429 (sync_xor<mode>): Ditto.
5430
5431 2007-08-22 Chao-ying Fu <fu@mips.com>
5432
5433 * rtl.c (rtx_code_size): Check CONST_FIXED to calcualte correct sizes
5434 in DEF_RTL_EXPR.
5435 (copy_rtx): Handle CONST_FIXED.
5436 (rtx_equal_p): Likewise.
5437 * rtl.h (fixed_value.h): New include.
5438 (rtx_def): Add a new field of fixed_value to u.
5439 (XCNMPFV): Define for accessing fixed_value.
5440 (CONST_FIXED_VALUE, CONST_FIXED_VALUE_HIGH, CONST_FIXED_VALUE_LOW):
5441 Define.
5442 * rtl.def (CONST_FIXED): New constant.
5443 (SS_MULT, US_MULT, SS_DIV, US_DIV, FRACT_CONVERT,
5444 UNSIGNED_FRACT_CONVERT, SAT_FRACT, UNSIGNED_SAT_FRACT, US_NEG,
5445 US_ASHIFT): New codes.
5446 * doc/rtl.texi (Expressions): Document const_fixed, us_neg, ss_mult,
5447 us_mult, ss_div, us_div, us_ashift, fract_convert, sat_fract,
5448 unsigned_fract_convert, unsigned_sat_fract): Document them.
5449 * varasm.c (assemble_integer): Extend to support fixed-point constants
5450 by using different machine classes.
5451 (decode_addr_const): Handle FIXED_CST.
5452 (const_hash_1): Likewise.
5453 (compare_constant): Likewise.
5454 (copy_constant): Likewise.
5455 (const_rtx_hash_1): Handle CONST_FIXED.
5456 (output_constant_pool_2): Handle MODE_FRACT, MODE_UFRACT, MODE_ACCUM,
5457 MODE_UACCUM, MODE_VECTOR_FRACT, MODE_VECTOR_UFRACT, MODE_VECTOR_ACCUM,
5458 MODE_VECTOR_UACCUM.
5459 (initializer_constant_valid_p): Handle FIXED_CST.
5460 (output_constant): Support FIXED_POINT_TYPE.
5461 * gengenrtl.c (excluded_rtx): Check CONST_FIXED to exclude.
5462 * cse.c (hash_rtx): Support CONST_FIXED.
5463 (exp_equiv_p): Likewise.
5464 (cannon_reg): Likewise.
5465 (fold_rtx): Likewise.
5466 (equiv_constant): Likewise.
5467 (cse_process_notes_1): Likewise.
5468 (count_reg_usage): Likewise.
5469 * cselib.c (entry_and_rtx_equal_p): Check CONST_FIXED.
5470 (rtx_equal_for_cselib_p): Handle CONST_FIXED.
5471 (wrap_constant): Check CONST_FIXED.
5472 (cselib_hash_rtx): Support CONST_FIXED.
5473 (cselib_subst_to_values): Likewise.
5474 * df-scan.c (df_uses_record): Likewise.
5475 * gcse.c (want_to_gcse_p): Likewise.
5476 (oprs_unchanged_p): Likewise.
5477 (oprs_not_set_p): Likewise.
5478 (compute_transp): Likewise.
5479 (extract_mentioned_regs_helper): Likewise.
5480 * genemit.c (gen_exp): Likewise.
5481 * local-alloc.c (equiv_init_varies_p): Likewise.
5482 (contains_replace_regs): Likewise.
5483 (memref_referenced_p): Likewise.
5484 * loop-invariant.c (check_maybe_invariant): Likewise.
5485 (hash_invariant_expr_1): Likewise.
5486 (invariant_expr_equal_p): Likewise.
5487 * postreload-gcse.c (oprs_unchanged_p): Likewise.
5488 * regclass.c (reg_scan_mark_refs): Likewise.
5489 * regrename.c (scan_rtx): Likewise.
5490 * resource.c (mark_referenced_resources): Likewise.
5491 (mark_set_resources): Likewise.
5492 * rtlanal.c (rtx_unstable_p): Likewise.
5493 (rtx_varies_p): Likewise.
5494 (count_occurrences): Likewise.
5495 (reg_mentioned_p): Likewise.
5496 (modified_between_p): Likewise.
5497 (modified_in_p): Likewise.
5498 (volatile_insn_p): Likewise.
5499 (volatile_refs_p): Likewise.
5500 (side_effects_p): Likewise.
5501 (may_trap_p_1): Likewise.
5502 (inequality_comparisons_p): Likewise.
5503 (computed_jump_p_1): Likewise.
5504 (commutative_operand_precedence): Likewise.
5505 * sched-deps.c (sched_analyze_2): Likewise.
5506 * sched-vis.c (print_value): Likewise.
5507 * reload.c (operands_match_p): Likewise.
5508 (subst_reg_equivs): Likewise.
5509 * reload1.c (eliminate_regs_1): Likewise.
5510 (elimination_effects): Likewise.
5511 (scan_paradoxical_subregs): Likewise.
5512 * alias.c (rtx_equal_for_memref_p): Likewise.
5513 * Makefile.in (RTL_BASE_H): Add fixed-value.h.
5514 * emit-rtl.c (const_fixed_htab): New hash table.
5515 (const_fixed_htab_hash, const_fixed_htab_eq, lookup_const_fixed):
5516 Declare.
5517 (const_fixed_htab_hash, const_fixed_htab_eq, lookup_const_fixed,
5518 const_fixed_from_fixed_value): New functions.
5519 (verify_rtx_sharing): Handle CONST_FIXED.
5520 (copy_rtx_if_shared_1): Likewise.
5521 (reset_used_flags): Likewise.
5522 (set_used_flags): Likewise.
5523 (copy_insn_1): Likewise.
5524 (init_emit_once): Create const_fixed_htab.
5525 Store fixed-point scalar and vector zero and one to const_tiny_rtx.
5526
5527 2007-08-22 Zdenek Dvorak <ook@ucw.cz>
5528
5529 PR tree-optimization/32949
5530 * tree-ssa-loop-niter.c (scev_probably_wraps_p): Test nowrap_type_p
5531 before failing for ivs with non-constant step.
5532
5533 2007-08-22 Hans-Peter Nilsson <hp@axis.com>
5534
5535 * doc/md.texi (Iterators): Renamed from Macros. All contents
5536 changed to reflect rename of respectively define_code_macro and
5537 define_mode_macro to define_code_iterator and define_mode_iterator.
5538 (Mode Iterators, Code Iterators): Similar.
5539 * read-rtl.c (struct iterator_group, struct iterator_traverse_data)
5540 (uses_mode_iterator_p, apply_mode_iterator, uses_code_iterator_p)
5541 (apply_iterator_to_string, uses_iterator_p, apply_iterator_traverse)
5542 (initialize_iterators, find_iterator, check_code_iterator)
5543 (map_attr_string, apply_mode_maps, apply_iterator_to_rtx, add_mapping)
5544 (read_mapping, read_rtx_1): Similar.
5545 * config/alpha/sync.md, config/alpha/alpha.md, config/frv/frv.md,
5546 config/s390/s390.md, config/m32c/blkmov.md, config/m32c/m32c.md,
5547 config/spu/spu.md, config/sparc/sparc.md, config/sparc/sync.md,
5548 config/i386/i386.md, config/i386/mmx.md, config/i386/sse.md,
5549 config/i386/sync.md, config/crx/crx.md, config/xtensa/xtensa.md,
5550 config/cris/cris.c, config/cris/cris.md, config/ia64/sync.md,
5551 config/ia64/div.md, config/ia64/vect.md, config/ia64/ia64.md,
5552 config/m68k/m68k.md, config/rs6000/spe.md, config/rs6000/altivec.md,
5553 config/rs6000/sync.md, config/rs6000/rs6000.md,
5554 config/arm/vec-common.md, config/arm/neon.md, config/arm/iwmmxt.md,
5555 config/arm/arm.md, config/mips/mips-dsp.md, config/mips/mips.md,
5556 config/vax/vax.md, config/bfin/bfin.md: Similar.
5557
5558 2007-08-22 David Daney <ddaney@avtrex.com>
5559
5560 * doc/install.texi (Testing): Mention testing on a simulator.
5561
5562 2007-08-22 Janis Johnson <janis187@us.ibm.com>
5563
5564 * config/dfp-bit.c (DFP_TO_DFP): Check for overflow.
5565
5566 * doc/libgcc.texi (Decimal float library routines): Fix formatting
5567 and rearrange floating point conversion functions into different
5568 categories.
5569
5570 2007-08-22 Maxim Kuvyrkov <maxim@codesourcery.com>
5571
5572 * target.h (struct gcc_target.sched: dfa_pre_advance_cycle,
5573 dfa_post_advance_cycle): New scheduler hooks.
5574 * target-def.h (TARGET_SCHED_DFA_PRE_ADVANCE_CYCLE,
5575 TARGET_SCHED_DFA_POST_ADVANCE_CYCLE): New macros to initialize
5576 new hooks.
5577 (TARGET_SCHED): Use them.
5578 * doc/tm.texi (TARGET_SCHED_DFA_PRE_ADVANCE_CYCLE,
5579 TARGET_SCHED_DFA_POST_ADVANCE_CYCLE): Document new hooks.
5580 * haifa-sched.c (advance_one_cycle): Invoke new hooks.
5581
5582 * genautomata.c (insn_has_dfa_reservation_p): New DFA interface
5583 function to facilitate debugging.
5584 (INSN_HAS_DFA_RESERVATION_P_FUNC_NAME): New macro.
5585 (output_insn_has_dfa_reservation_p): New static function to output
5586 insn_has_dfa_reservation_p ().
5587 (write_automata): Use it.
5588 * genattr.c (main): Output declaration for
5589 insn_has_dfa_reservation_p ().
5590
5591 2007-08-22 Christian Bruel <christian.bruel@st.com>
5592 Richard Guenther <rguenther@suse.de>
5593
5594 * fold-const.c (fold_binary): Optimize A-A if -ffinite-math-only.
5595 * simplify_rtx (simplify_binary_operation_1): Likewise.
5596
5597 2007-08-22 Rask Ingemann Lambertsen <rask@sygehus.dk>
5598
5599 PR rtl-optimization/32557
5600 * df-problems.c (df_note_bb_compute): Use mws->start_regno instead
5601 of REGNO (mws->mw_reg).
5602
5603 2007-08-22 Richard Guenther <rguenther@suse.de>
5604
5605 PR middle-end/33007
5606 * builtins.c (expand_builtin_int_roundingfn): Replace call
5607 argument wrapped with SAVE_EXPR directly.
5608 (expand_builtin_int_roundingfn_2): Likewise.
5609
5610 2007-08-22 Richard Guenther <rguenther@suse.de>
5611
5612 * tree-inline.c (inlinable_function_p): Restore disregarding
5613 inline limits for GNU extern inline functions.
5614
5615 2007-08-22 Richard Guenther <rguenther@suse.de>
5616
5617 PR middle-end/32563
5618 * tree.c (host_integerp): Treat sizetype as signed as it is
5619 sign-extended.
5620
5621 2007-08-21 Ian Lance Taylor <iant@google.com>
5622
5623 PR tree-optimization/33134
5624 * tree-vrp.c (adjust_range_with_scev): Call
5625 set_value_range_to_value.
5626
5627 2007-08-21 Aldy Hernandez <aldyh@redhat.com>
5628
5629 * value-prof.h (gimple_remove_histogram_value): Remove duplicate
5630 prototype.
5631
5632 2007-08-21 Aldy Hernandez <aldyh@redhat.com>
5633
5634 * tree-flow-inline.h (next_imm_use_stmt): Remove unecessary
5635 whitespace.
5636
5637 2007-08-21 Nathan Froyd <froydnj@codesourcery.com>
5638
5639 * config/rs6000/rs6000.c (expand_block_clear): Add TARGET_SPE
5640 cases to set eight bytes at a time.
5641 (expand_block_move): Likewise.
5642
5643 2007-08-21 Jakub Jelinek <jakub@redhat.com>
5644
5645 PR debug/32610
5646 * dwarf2out.c (gen_decl_die): Don't call
5647 gen_tagged_type_instantiation_die if decl doesn't have tagged type.
5648
5649 2007-08-21 Paul Brook <paul@codesourcery.com>
5650 Nathan Sidwell <nathan@codesourcery.com>
5651 Mark Mitchell <mark@codesourcery.com>
5652 Joseph Myers <joseph@codesourcery.com>
5653
5654 * configure.ac: Add --with-pkgversion and --with-bugurl.
5655 * configure: Regenerate.
5656 * doc/install.texi: Document them.
5657 * version.c (version_string): Remove VERSUFFIX.
5658 (VERSUFFIX): Remove.
5659 (pkgversion_string): New.
5660 (bug_report_url): Do not hard-code initializer.
5661 * version.h (pkgversion_string): Declare.
5662 * Makefile.in (PKGVERSION_s, BUGURL_s, PKGVERSION, BUGURL_TEXI):
5663 Define.
5664 (version.o): Define PKGVERSION and BUGURL.
5665 (gcc-vers.texi): Define VERSION_PACKAGE and BUGURL.
5666 (%.pod): Define BUGURL.
5667 * gcc.c (process_command, main): Use pkgversion_string.
5668 * toplev.c (compile_file, print_version): Likewise.
5669 * protoize.c (main): Likewise.
5670 * gcov.c (print_version): Likewise. Update copyright date.
5671 * gcov-dump.c (print_version): Likewise. Update copyright date.
5672 * mips-tdump.c (main): Likewise. Update copyright date.
5673 * mips-tfile.c (main): Likewise. Update copyright date.
5674 * doc/include/gcc-common.texi: Include VERSION_PACKAGE as subtitle.
5675 * doc/bugreport.texi: Use BUGURL for bug-reporting instructions;
5676 shorten description.
5677 * doc/gcc.texi: Include VERSION_PACKAGE in version description.
5678 * doc/gccint.texi: Likewise.
5679 * doc/invoke.texi: Use BUGURL for bug-reporting instructions.
5680 Update copyright date.
5681
5682 2007-08-21 Uros Bizjak <ubizjak@gmail.com>
5683
5684 * config/i386/i386.c (ix86_expand_clear): Use FLAGS_REG.
5685 (ix86_expand_strlensi_unroll_1): Ditto.
5686 (ix86_expand_branch): Use FLAGS_REG and FPSR_REG.
5687 (ix86_expand_carry_flag_compare): Update comment.
5688
5689 2007-08-21 Jakub Jelinek <jakub@redhat.com>
5690
5691 PR middle-end/32912
5692 * fold-const.c (fold_unary): Optimize BIT_NOT_EXPR of VECTOR_CST.
5693 (fold_binary): Handle vectors in X | ~X and X ^ ~X optimizations.
5694
5695 2007-08-21 Richard Guenther <rguenther@suse.de>
5696
5697 * fold-const.c (fold_binary): Revert removing of index +p PTR folding.
5698
5699 2007-08-21 Richard Guenther <rguenther@suse.de>
5700
5701 PR middle-end/33122
5702 * fold-const.c (fold_binary): Remove index +p PTR folding.
5703 Fix types of POINTER_PLUS_EXPR generated by folding of
5704 (PTR +p B) +p A.
5705
5706 2007-08-20 Chao-ying Fu <fu@mips.com>
5707
5708 * c-common.h (enum rid): Add new enumeration values of RID_SAT,
5709 RID_FRACT, and RID_ACCUM. RID_SAT needs to be inserted before
5710 RID_ONEWAY, so that it can be checked in declspecs_add_type.
5711 (c_common_fixed_point_type_for_size): Declare.
5712 * c-parser.c (reswords): Add _Fract, _Accum, and _Sat.
5713 (c_token_starts_typename): Handle RID_FRACT, RID_ACCUM, and RID_SAT.
5714 (c_token_starts_declspecs): Likewise.
5715 (c_parser_declspecs): Likewise.
5716 (c_parser_attributes): Likewise.
5717 * c-tree.h (enum c_typespec_keyword): Add cts_fract and cts_accum.
5718 (c_declspecs): Add saturating_p.
5719 * c-decl.c (build_null_declspecs): Initialize saturating_p.
5720 (declspecs_add_type): Avoid using complex with _Fract, _Accum, or
5721 _Sat. Handle RID_SAT.
5722 Avoid using void, bool, char, int, float, double, _Decimal32,
5723 _Decimal64, _Decimal128, and complex with _Sat.
5724 Handle RID_FRACT and RID_ACCUM.
5725 Make sure _Sat is used with _Fract or _Accum.
5726 (finish_declspecs): Handle cts_fract and cts_accum.
5727 * c-common.c (fixed-value.h): New include.
5728 (constant_expression_warning): Handle FIXED_CST.
5729 (overflow_warning): Likewise.
5730 (warnings_for_convert_and_check): Likewise.
5731 (c_common_fixed_point_type_for_size): New.
5732 (c_common_type_for_mode): Handle fixed-point modes to
5733 return various saturating/non-saturating, signed/unsigned types.
5734 (c_common_signed_or_unsigned_type): Support fixed-point types.
5735 (shorten_compare): Check fixed-point zero.
5736 Handle FIXED_POINT_TYPE.
5737 (c_common_truthvalue_conversion): Handle FIXED_CST.
5738 Handle FIXED_POINT_TYPE.
5739 (c_common_nodes_and_builtins): Record builtin types for fixed-point
5740 types.
5741 (handle_mode_attribute): Handle fixed-point modes. Need to check
5742 if the signness of base type and fixed-point modes are consistent.
5743 (handle_vector_size_attribute): Handle fixed-point modes.
5744 (same_scalar_type_ignoring_signedness): Handle FIXED_POINT_TYPE.
5745 (warn_for_div_by_zero): Check fixed-point zero.
5746 * c-typeck.c (c_common_type): Check FIXED_POINT_TYPE. Build
5747 a common fixed-point type based on fbit, ibit, sign, and saturation.
5748 (build_unary_op): Allow FIXED_POINT_TYPE for CONVERT_EXPR,
5749 NEGATE_EXPR, TRUTH_NOT_EXPR, PREINCREMENT_EXPR, POSTINCREMENT_EXPR,
5750 PREDECREMENT_EXPR, and POSTDECREMENT_EXPR.
5751 (convert_for_assignment): Support FIXED_POINT_TYPE.
5752 (digest_init): Handle FIXED_POINT_TYPE.
5753 (build_binary_op): Support FIXED_POINT_TYPE in *_DIV_EXPR,
5754 TRUTH_ANDIF_EXPR, TRUTH_ORIF_EXPR, TRUTH_AND_EXPR, TRUTH_OR_EXPR,
5755 TRUTH_XOR_EXPR, RSHIFT_EXPR, LSHIFT_EXPR, EQ_EXPR, NE_EXPR, LE_EXPR,
5756 GE_EXPR, LT_EXPR, GT_EXPR.
5757 * target-def.h (TARGET_FIXED_POINT_SUPPORTED_P): New.
5758 (TARGET_INITIALIZER): Add TARGET_FIXED_POINT_SUPPORTED_P.
5759 * target.h (gcc_target): Add fixed_point_supported_p.
5760 * targhooks.c (default_scalar_mode_supported_p): Handle MODE_FRACT,
5761 MODE_UFRACT, MODE_ACCUM, and MODE_UACCUM.
5762 (default_fixed_point_supported_p): Define.
5763 * targhooks.h (default_fixed_point_supported_p): Declare.
5764 * doc/tm.texi (TARGET_FIXED_POINT_SUPPORTED_P): Add.
5765 * doc/install.texi (Configuration): Add --enable-fixed-point.
5766 * configure.ac (--enable-fixed-point): New to enable fixed-point
5767 arithmetic extension to C. For mips targets, we enable it by default.
5768 * configure, config.in: Regenerate.
5769
5770 2007-08-20 Pawel Sikora <pluto@pld-linux.org>
5771
5772 * doc/invoke.texi (-Wnon-virtual-dtor): Update documentation.
5773
5774 2007-08-20 David Edelsohn <edelsohn@gnu.org>
5775
5776 * dwarf2out.c (text_section_used): Move declaration outside ifdef
5777 DWARF2_DEBUGGING_INFO.
5778 (cold_text_section_used): Same.
5779 (cold_text_section): Same.
5780
5781 2007-08-20 Richard Guenther <rguenther@suse.de>
5782
5783 * c-typeck.c (convert_for_assignment): Use the type of
5784 the member for the initialization.
5785
5786 2007-08-20 Richard Guenther <rguenther@suse.de>
5787
5788 * c-objc-common.c (c_disregard_inline_limits): Remove.
5789 * c-objc-common.h (c_disregard_inline_limits): Likewise.
5790 * cgraphunit.c (cgraph_process_new_functions): Call
5791 disregard_inline_limits_p.
5792 (cgraph_preserve_function_body_p): Likewise.
5793 * ipa-inline.c (compute_inline_parameters): Likewise.
5794 * langhooks-def.h (lhd_tree_inlining_disregard_inline_limits):
5795 Remove.
5796 (LANG_HOOKS_TREE_INLINING_DISREGARD_INLINE_LIMITS): Remove.
5797 (LANG_HOOKS_TREE_INLINING_INITIALIZER): Remove initializer for
5798 disregard_inline_limits langhook.
5799 * langhooks.c (lhd_tree_inlining_disregard_inline_limits):
5800 Remove.
5801 * langhooks.h (lang_hooks_for_tree_inlining): Remove
5802 disregard_inline_limits langhook.
5803 * tree-inline.c (disregard_inline_limits_p): New function.
5804 * tree-inline.h (disregard_inline_limits_p): Declare.
5805
5806 2007-08-20 Richard Guenther <rguenther@suse.de>
5807
5808 * langhooks-def.h (lhd_tree_inlining_auto_var_in_fn_p): Remove.
5809 (LANG_HOOKS_TREE_INLINING_AUTO_VAR_IN_FN_P): Likewise.
5810 (LANG_HOOKS_TREE_INLINING_INITIALIZER): Remove initializer for
5811 auto_var_in_fn_p langhook.
5812 * langhooks.c (lhd_tree_inlining_auto_var_in_fn_p): Rename and
5813 move ...
5814 * tree.c (auto_var_in_fn_p): ... here.
5815 (find_var_from_fn): Call auto_var_in_fn_p directly.
5816 * langhooks.h (lang_hooks_for_tree_inlining): Remove
5817 auto_var_in_fn_p langhook.
5818 * tree-inline.c (remap_decls): Call auto_var_in_fn_p directly.
5819 (copy_body_r): Likewise.
5820 (self_inlining_addr_expr): Likewise.
5821 * tree.h (auto_var_in_fn_p): Declare.
5822
5823 2007-08-20 Richard Guenther <rguenther@suse.de>
5824
5825 * tree.c (WALK_SUBTREE): Call walk_tree_1.
5826 (walk_type_fields): Take lh parameter.
5827 (walk_tree): Rename to ...
5828 (walk_tree_1): ... this. Do not call the walk_subtrees
5829 langhook but the now passed callback. Pass lh on recursion.
5830 (walk_tree_without_duplicates): Rename to ...
5831 (walk_tree_without_duplicates_1): ... this. Take lh parameter
5832 and call walk_tree_1.
5833 * tree.h (walk_tree_lh): New typedef.
5834 (walk_tree_1): Declare.
5835 (walk_tree_without_duplicates_1): Likewise.
5836 (walk_tree): New define to walk_tree_1 with NULL lh parameter.
5837 (walk_tree_without_duplicates): New define to
5838 walk_tree_without_duplicates_1 with NULL lh parameter.
5839 * langhooks.c (lhd_tree_inlining_walk_subtrees): Remove.
5840 * langhooks.h (lang_hooks_for_tree_inlining): Remove walk_subtrees
5841 langhook.
5842 * langhooks-def.h (lhd_tree_inlining_walk_subtrees): Remove.
5843 (LANG_HOOKS_TREE_INLINING_WALK_SUBTREES): Likewise.
5844 (LANG_HOOKS_TREE_INLINING_INITIALIZER): Remove walk_subtrees
5845 initializer.
5846
5847 2007-08-20 Andrew Pinski <andrew_pinski@playstation.sony.com>
5848
5849 PR middle-end/30564
5850 * tree-inline.c (optimize_inline_calls): Move the cgraph checking
5851 code in front of the compacting of basic blocks.
5852 Move the folding of statements inbetween the cgraph checking
5853 and compacting of basic blocks.
5854
5855 2007-08-19 Andrew Pinski <andrew_pinski@playstation.sony.com>
5856 Serge Belyshev <belyshev@depni.sinp.msu.ru>
5857
5858 PR target/32522
5859 * config/alpha/alpha.c (va_list_skip_additions): Check for
5860 POINTER_PLUS_EXPR in addition to PLUS_EXPR.
5861 (alpha_stdarg_optimize_hook): Look for POINTER_PLUS_EXPR instead of
5862 PLUS_EXPR when checking ap.__base.
5863 (alpha_va_start): Create POINTER_PLUS_EXPR instead of PLUS_EXPR
5864 when doing addition on pointer types. Use size_int instead of
5865 build_int_cst.
5866 (alpha_gimplify_va_arg_1): Likewise, but use sizetype instead of
5867 ptr_type in the second operand.
5868
5869 2007-08-19 Andrew Pinski <pinskia@gmail.com>
5870
5871 PR target/33115
5872 * config/i386/darwin.h (CC1_SPEC): Add %(cc1_cpu) in front.
5873
5874 2007-08-19 Andrew Pinski <andrew_pinski@playstation.sony.com>
5875
5876 PR middle-end/32940
5877 * cfgexpand.c (expand_one_register_var): Mark pointer
5878 DECL_ARTIFICIAL as REG_POINTER also.
5879 * stmt.c (expand_decl): Likewise.
5880
5881 2007-08-19 Daniel Berlin <dberlin@dberlin.org>
5882
5883 Fix PR 32772
5884 Fix PR 32716
5885 Fix PR 32328
5886 Fix PR 32303
5887
5888 * tree-flow.h (struct stmt_ann_d): Remove makes_clobbering_call.
5889 * tree-ssa-alias.c (init_transitive_clobber_worklist): Add
5890 on_worklist argument and avoid adding things to worklist multiple
5891 times.
5892 (add_to_worklist): Ditto.
5893 (mark_aliases_call_clobbered): Mark entire structure clobbered if
5894 single SFT is clobbered.
5895 (set_initial_properties): Ditto.
5896 (compute_call_clobbered): Update for changes to function
5897 arguments.
5898 (create_overlap_variables_for): Always create SFT for offset 0.
5899 (create_structure_vars): Handle PHI's, since we are in SSA form at
5900 this point.
5901 * tree-ssa-loop-ivopts.c (get_ref_tag): Don't return subvars.
5902 * tree-ssa-operands.c (access_can_touch_variable): Don't handle
5903 TARGET_MEM_REF.
5904 (add_vars_for_offset): Figure out aliases from access + points-to.
5905 (add_virtual_operand): Use add_vars-for_offset.
5906 (get_tmr_operands): Update for NMT changes, rewrite to be correct.
5907 (add_call_clobber_ops): Remove makes_clobbering_call set.
5908 (get_expr_operands): Always pass through the INDIRECT_REF
5909 reference.
5910 * tree-ssa-structalias.c (struct constraint_graph): Remove
5911 variables member.
5912 Add pe, pe_rep, pointer_label, loc_label, pointed_by, points_to,
5913 address_taken, pt_used, number_incoming.
5914 (FIRST_ADDR_NODE): Removed.
5915 (merge_graph_nodes): Remove broken code for the moment.
5916 (init_graph): New function.
5917 (build_pred_graph): Remove code to init_graph.
5918 Add location equivalence support.
5919 (struct scc_info): Rename roots to deleted.
5920 (scc_visit): Ditto.
5921 (init_scc_info): Ditto
5922 (init_topo_info): Use graph->size.
5923 (compute_topo_order): Ditto.
5924 (do_da_constraint): Removed.
5925 (do_sd_constraint): Remove calls to find().
5926 set_union_with_increment should always get 0 as last arg here.
5927 (do_complex_constraint): Replace do_da_constraint with assert.
5928 Stop calling find.
5929 (struct equiv_class_label): New.
5930 (pointer_equiv_class_table): Ditto.
5931 (location_equiv_class_table): Ditto.
5932 (equiv_class_label_hash): Ditto.
5933 (equiv_class_label_eq): Ditto
5934 (equiv_class_lookup): Ditto.
5935 (equiv_class_ladd): Ditto.
5936 (pointer_equiv_class): Ditto.
5937 (location_equiv_class): Ditto.
5938 (condense_visit): Rename and rewrite from label_visit to do only
5939 SCC related stuff for HU.
5940 (label_visit): Do HU work for HU.
5941 (perform_var_substitution): Update to do HU and location
5942 equivalence.
5943 (free_var_substitution_info): Update to free HU and location
5944 equivalence structures. */
5945 (find_equivalent_node): Update for pointer but not location
5946 equivalence.
5947 (unite_pointer_equivalences): New function.
5948 (move_complex_constraints): Rewrite to only do moving.
5949 (rewrite_constraints): Split out of move_complex_constraints.
5950 (solve_graph): Use graph->size.
5951 (process_constraint_1): Add from_call argument, use it.
5952 Split *a = &b into two constraints.
5953 (process_constraint): Use new process_constraint_1.
5954 (get_constraint_for_component_ref): Handle bitmaxsize == -1 case.
5955 (get_constraint_for): Handle non-pointer integers properly.
5956 Remove code that used to handle structures.
5957 (handle_ptr_arith): Fix a few bugs in pointer arithmetic handling
5958 with unknown addends.
5959 (handle_rhs_call): New function.
5960 (find_func_aliases): Use handle_rhs_call.
5961 (set_uids_in_ptset): Add an assert.
5962 (set_used_smts): Fix bug in not considering unified vars.
5963 (compute_tbaa_pruning): Stop initing useless iteration_obstack.
5964 (compute_points_to_sets): Update for other function changes.
5965 (delete_points_to_sets): Ditto.
5966 (ipa_pta_execute): Ditto.
5967 (pass_ipa_pta): We need to update SSA after ipa_pta.
5968
5969 2007-08-19 Jan Hubicka <jh@suse.cz>
5970
5971 * i386.md: Replace "rim" and "mri" constraints by "g".
5972
5973 2007-08-19 Joseph Myers <joseph@codesourcery.com>
5974
5975 * dwarf2out.c (text_section_used, cold_text_section_used,
5976 cold_text_section, dwarf2out_note_section_used): New.
5977 (dwarf2out_init): Initialize cold_text_section.
5978 (dwarf2out_switch_text_section, dwarf2out_begin_function): Call
5979 dwarf2out_note_section_used.
5980 (size_of_aranges): Only count entry for text section if it was
5981 used. Count entry for cold text section if it was used.
5982 (output_aranges): Only output entries for text section and cold
5983 text section if they were used.
5984
5985 2007-08-19 Andrew Pinski <pinskia@gmail.com>
5986
5987 * tree-pretty-print.c (debug_generic_expr): Add a comment about
5988 the function.
5989 (debug_generic_stmt): Likewise.
5990 (debug_tree_chain): Likewise.
5991
5992 2007-08-19 Dorit Nuzman <dorit@il.ibm.com>
5993
5994 * tree-data-refs.c (split_constant_offset): Expose.
5995 * tree-data-refs.h (split_constant_offset): Add declaration.
5996
5997 * tree-vectorizer.h (dr_alignment_support): Renamed
5998 dr_unaligned_software_pipeline to dr_explicit_realign_optimized.
5999 Added a new value dr_explicit_realign.
6000 (_stmt_vec_info): Added new fields: dr_base_address, dr_init,
6001 dr_offset, dr_step, and dr_aligned_to, along with new access
6002 functions for these fields: STMT_VINFO_DR_BASE_ADDRESS,
6003 STMT_VINFO_DR_INIT, STMT_VINFO_DR_OFFSET, STMT_VINFO_DR_STEP, and
6004 STMT_VINFO_DR_ALIGNED_TO.
6005
6006 * tree-vectorizer.c (vect_supportable_dr_alignment): Add
6007 documentation.
6008 In case of outer-loop vectorization with non-fixed misalignment - use
6009 the dr_explicit_realign scheme instead of the optimized realignment
6010 scheme.
6011 (new_stmt_vec_info): Initialize new fields.
6012
6013 * tree-vect-analyze.c (vect_compute_data_ref_alignment): Handle the
6014 'nested_in_vect_loop' case. Change verbosity level.
6015 (vect_analyze_data_ref_access): Handle the 'nested_in_vect_loop' case.
6016 Don't fail on zero step in the outer-loop for loads.
6017 (vect_analyze_data_refs): Call split_constant_offset to calculate
6018 base, offset and init relative to the outer-loop.
6019
6020 * tree-vect-transform.c (vect_create_data_ref_ptr): Replace the unused
6021 BSI function argument with a new function argument - at_loop.
6022 Simplify the condition that determines STEP. Takes additional argument
6023 INV_P. Support outer-loop vectorization (handle the
6024 nested_in_vect_loop case), including zero step in the outer-loop. Call
6025 vect_create_addr_base_for_vector_ref with additional argument.
6026 (vect_create_addr_base_for_vector_ref): Takes additional argument LOOP.
6027 Updated function documentation. Handle the 'nested_in_vect_loop' case.
6028 Fixed and simplified calculation of step.
6029 (vectorizable_store): Call vect_create_data_ref_ptr with loop instead
6030 of bsi, and with additional argument. Call bump_vector_ptr with
6031 additional argument. Fix typos. Handle the 'nested_in_vect_loop' case.
6032 (vect_setup_realignment): Takes additional arguments INIT_ADDR and
6033 DR_ALIGNMENT_SUPPORT. Returns another value AT_LOOP. Handle the case
6034 when the realignment setup needs to take place inside the loop.
6035 Support the dr_explicit_realign scheme. Allow generating the optimized
6036 realignment scheme for outer-loop vectorization. Added documentation.
6037 (vectorizable_load): Support the dr_explicit_realign scheme. Handle
6038 the 'nested_in_vect_loop' case, including loads that are invariant in
6039 the outer-loop and the realignment schemes. Handle the case when the
6040 realignment setup needs to take place inside the loop. Call
6041 vect_setup_realignment with additional arguments. Call
6042 vect_create_data_ref_ptr with additional argument and with loop instead
6043 of bsi. Fix 80-column overflow. Fix typos. Rename PHI_STMT to PHI.
6044 (vect_gen_niters_for_prolog_loop): Call
6045 vect_create_addr_base_for_vector_ref with additional arguments.
6046 (vect_create_cond_for_align_checks): Likewise.
6047 (bump_vector_ptr): Updated to support the new dr_explicit_realign
6048 scheme: takes additional argument bump; argument ptr_incr is now
6049 optional; updated documentation.
6050 (vect_init_vector): Takes additional argument (bsi). Use it, if
6051 available, to insert the vector initialization.
6052 (get_initial_def_for_induction): Pass additional argument in call to
6053 vect_init_vector.
6054 (vect_get_vec_def_for_operand): Likewise.
6055 (vect_setup_realignment): Likewise.
6056 (vectorizable_load): Likewise.
6057
6058 2007-08-19 Dorit Nuzman <dorit@il.ibm.com>
6059
6060 * tree-vectorizer.h (vect_is_simple_reduction): Takes a loop_vec_info
6061 as argument instead of struct loop.
6062 (nested_in_vect_loop_p): New function.
6063 (vect_relevant): Add enum values vect_used_in_outer_by_reduction and
6064 vect_used_in_outer.
6065 (is_loop_header_bb_p): New. Used to differentiate loop-header phis
6066 from other phis in the loop.
6067 (destroy_loop_vec_info): Add additional argument to declaration.
6068
6069 * tree-vectorizer.c (supportable_widening_operation): Also check if
6070 nested_in_vect_loop_p (don't allow changing the order in this case).
6071 (vect_is_simple_reduction): Takes a loop_vec_info as argument instead
6072 of struct loop. Call nested_in_vect_loop_p and don't require
6073 flag_unsafe_math_optimizations if it returns true.
6074 (new_stmt_vec_info): When setting def_type for phis differentiate
6075 loop-header phis from other phis.
6076 (bb_in_loop_p): New function.
6077 (new_loop_vec_info): Inner-loop phis already have a stmt_vinfo, so
6078 just update their loop_vinfo. Order of BB traversal now matters -
6079 call dfs_enumerate_from with bb_in_loop_p.
6080 (destroy_loop_vec_info): Takes additional argument to control whether
6081 stmt_vinfo of the loop stmts should be destroyed as well.
6082 (vect_is_simple_reduction): Allow the "non-reduction" use of a
6083 reduction stmt to be defines by a non loop-header phi.
6084 (vectorize_loops): Call destroy_loop_vec_info with additional argument.
6085
6086 * tree-vect-transform.c (vectorizable_reduction): Call
6087 nested_in_vect_loop_p. Check for multitypes in the inner-loop.
6088 (vectorizable_call): Likewise.
6089 (vectorizable_conversion): Likewise.
6090 (vectorizable_operation): Likewise.
6091 (vectorizable_type_promotion): Likewise.
6092 (vectorizable_type_demotion): Likewise.
6093 (vectorizable_store): Likewise.
6094 (vectorizable_live_operation): Likewise.
6095 (vectorizable_reduction): Likewise. Also pass loop_info to
6096 vect_is_simple_reduction instead of loop.
6097 (vect_init_vector): Call nested_in_vect_loop_p.
6098 (get_initial_def_for_reduction): Likewise.
6099 (vect_create_epilog_for_reduction): Likewise.
6100 (vect_init_vector): Check which loop to work with, in case there's an
6101 inner-loop.
6102 (get_initial_def_for_inducion): Extend to handle outer-loop
6103 vectorization. Fix indentation.
6104 (vect_get_vec_def_for_operand): Support phis in the case vect_loop_def.
6105 In the case vect_induction_def get the vector def from the induction
6106 phi node, instead of calling get_initial_def_for_inducion.
6107 (get_initial_def_for_reduction): Extend to handle outer-loop
6108 vectorization.
6109 (vect_create_epilog_for_reduction): Extend to handle outer-loop
6110 vectorization.
6111 (vect_transform_loop): Change assert to just skip this case. Add a
6112 dump printout.
6113 (vect_finish_stmt_generation): Add a couple asserts.
6114
6115 (vect_estimate_min_profitable_iters): Multiply
6116 cost of inner-loop stmts (in outer-loop vectorization) by estimated
6117 inner-loop bound.
6118 (vect_model_reduction_cost): Don't add reduction epilogue cost in case
6119 this is an inner-loop reduction in outer-loop vectorization.
6120
6121 * tree-vect-analyze.c (vect_analyze_scalar_cycles_1): New function.
6122 Same code as what used to be vect_analyze_scalar_cycles, only with
6123 additional argument loop, and loop_info passed to
6124 vect_is_simple_reduction instead of loop.
6125 (vect_analyze_scalar_cycles): Code factored out into
6126 vect_analyze_scalar_cycles_1. Call it for each relevant loop-nest.
6127 Updated documentation.
6128 (analyze_operations): Check for inner-loop loop-closed exit-phis during
6129 outer-loop vectorization that are live or not used in the outerloop,
6130 cause this requires special handling.
6131 (vect_enhance_data_refs_alignment): Don't consider versioning for
6132 nested-loops.
6133 (vect_analyze_data_refs): Check that there are no datarefs in the
6134 inner-loop.
6135 (vect_mark_stmts_to_be_vectorized): Also consider vect_used_in_outer
6136 and vect_used_in_outer_by_reduction cases.
6137 (process_use): Also consider the case of outer-loop stmt defining an
6138 inner-loop stmt and vice versa.
6139 (vect_analyze_loop_1): New function.
6140 (vect_analyze_loop_form): Extend, to allow a restricted form of nested
6141 loops. Call vect_analyze_loop_1.
6142 (vect_analyze_loop): Skip (inner-)loops within outer-loops that have
6143 been vectorized. Call destroy_loop_vec_info with additional argument.
6144
6145 * tree-vect-patterns.c (vect_recog_widen_sum_pattern): Don't allow
6146 in the inner-loop when doing outer-loop vectorization. Add
6147 documentation and printout.
6148 (vect_recog_dot_prod_pattern): Likewise. Also add check for
6149 GIMPLE_MODIFY_STMT (in case we encounter a phi in the loop).
6150
6151 2007-08-18 Andrew Pinski <pinskia@gmail.com>
6152
6153 * tree-affine.h (print_aff): New prototype.
6154 (debug_aff): Likewise.
6155 * tree-affine.c (print_aff): New function.
6156 (debug_aff): Likewise.
6157
6158 2007-08-18 Paul Brook <paul@codesourcery.com>
6159 Joseph Myers <joseph@codesourcery.com>
6160
6161 * common.opt (-fdebug-prefix-map=): New option.
6162 * opts.c: Include debug.h.
6163 (common_handle_option): Handle -fdebug-prefix-map.
6164 * final.c: Include ggc.h.
6165 (struct debug_prefix_map, debug_prefix_maps, add_debug_prefix_map,
6166 remap_debug_filename): New.
6167 * Makefile.in (final.o, opts.o): Update dependencies.
6168 * debug.h (remap_debug_filename, add_debug_prefix_map): Declare.
6169 * configure.ac: Check for assembler --debug-prefix-map support.
6170 * configure, config.in: Regenerate.
6171 * gcc.c (ASM_MAP): Define conditional on HAVE_AS_DEBUG_PREFIX_MAP.
6172 (ASM_DEBUG_SPEC): Include ASM_MAP.
6173 * doc/install.texi (--with-debug-prefix-map): Document.
6174 * doc/invoke.texi (-fdebug-prefix-map): Document.
6175 * dbxout.c (dbxout_init, dbxout_start_source_file,
6176 dbxout_source_file): Call remap_debug_filename.
6177 * dwarf2out.c (add_comp_dir_attribute, maybe_emit_file,
6178 dwarf2out_start_source_file, dwarf2out_finish): Call
6179 remap_debug_filename.
6180 (file_table_relative_p): Do not check d->emitted_number.
6181 * toplev.c (output_file_directive): Call remap_debug_filename.
6182 * vmsdbgout.c (write_srccorr): Call remap_debug_filename.
6183 * xcoffout.c (xcoffout_source_file): Call remap_debug_filename.
6184
6185 2007-08-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6186
6187 * loop-invariant.c (find_invariants_to_move): Add missing macro
6188 argument.
6189
6190 2007-08-17 Tom Tromey <tromey@redhat.com>
6191
6192 * tree.h (struct tree_label_decl): Removed old "java" fields.
6193
6194 2007-08-17 Richard Sandiford <richard@codesourcery.com>
6195 Nigel Stephens <nigel@mips.com>
6196
6197 * config/mips/sde.h (DRIVER_SELF_SPECS): Add commas.
6198 Treat -mno-data-in-code and -mcode-xonly as aliases for
6199 -mcode-readable=no and -mcode-readable=pcrel respectively.
6200 * config/mips/t-sde (TARGET_LIBGCC2_CFLAGS): Add -mcode-xonly.
6201 (MULTILIB_OPTIONS): Add -mcode-readable=no multilibs.
6202 (MULTILIB_DIRNAMES): Update accordingly.
6203
6204 2007-08-17 H.J. Lu <hongjiu.lu@intel.com>
6205
6206 * Makefile.in (version.o): Depend on $(REVISION) only if
6207 REVISION_s is defined.
6208
6209 2007-08-17 Sa Liu <saliu@de.ibm.com>
6210 Ulrich Weigand <uweigand@de.ibm.com>
6211
6212 PR middle-end/32970
6213 * tree.c (reconstruct_complex_type): For a pointer to a vector,
6214 use build_qualified_type to retain qualifiers of the base type.
6215
6216 2007-08-17 Chen Liqin <liqin@sunnorth.com.cn>
6217
6218 * config/score/score.md : Update pattern tablejump.
6219 * config/score/score.c : Update score_initialize_trampoline
6220 function.
6221 * config/score/score.h (TRAMPOLINE_TEMPLATE): Added macro.
6222 (TRAMPOLINE_INSNS, TRAMPOLINE_SIZE) Update macro.
6223 * doc/contrib.texi: Add my entry.
6224
6225 2007-08-16 H.J. Lu <hongjiu.lu@intel.com>
6226
6227 * Makefile.in (REVISION): New.
6228 (REVISION_c): New.
6229 (REVISION_s): New.
6230 (version.o): Also depend on $(REVISION). Add
6231 -DREVISION=$(REVISION_s).
6232
6233 * version.c (version_string): Add REVISION.
6234
6235 2007-08-16 Seongbae Park <seongbae.park@gmail.com>
6236
6237 * tree-eh.c (lower_try_finally_onedest): Reset the locus
6238 of GOTO that's relocated to a different block.
6239
6240 2007-08-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6241
6242 * c-common.c (const_strip_array_types): New.
6243 * c-common.h (lang_missing_noreturn_ok_p): Delete.
6244 (const_strip_array_types): New.
6245 * c-objc-common.c (c_disregard_inline_limits,
6246 c_warn_unused_global_decl): Constify.
6247 * c-tree.h (c_disregard_inline_limits, c_warn_unused_global_decl,
6248 c_vla_type_p, c_incomplete_type_error): Likewise.
6249 * c-typeck.c (c_incomplete_type_error, c_vla_type_p): Likewise.
6250 * hooks.c (hook_bool_const_tree_false): New.
6251 * hooks.h (hook_bool_const_tree_false): Likewise.
6252 * langhooks-def.h (lhd_warn_unused_global_decl,
6253 lhd_incomplete_type_error, lhd_expr_size,
6254 lhd_tree_inlining_disregard_inline_limits,
6255 lhd_tree_inlining_auto_var_in_fn_p, lhd_tree_dump_type_quals,
6256 LANG_HOOKS_GENERIC_TYPE_P, LANG_HOOKS_TYPE_MAX_SIZE): Constify.
6257 * langhooks.c (lhd_warn_unused_global_decl,
6258 lhd_incomplete_type_error,
6259 lhd_tree_inlining_disregard_inline_limits,
6260 lhd_tree_inlining_auto_var_in_fn_p, lhd_tree_dump_type_quals,
6261 lhd_expr_size): Likewise.
6262 * langhooks.h (lang_hooks_for_tree_inlining,
6263 lang_hooks_for_tree_dump, lang_hooks_for_types,
6264 lang_hooks_for_decls, lang_hooks): Likewise.
6265 * pointer-set.c (pointer_set_t, pointer_set_create,
6266 pointer_set_contains, insert_aux, pointer_set_insert,
6267 pointer_set_traverse, pointer_map_t, pointer_map_create,
6268 pointer_map_contains, pointer_map_insert, pointer_map_traverse):
6269 Likewise.
6270 * pointer-set.h (pointer_set_contains, pointer_set_insert,
6271 pointer_set_traverse, pointer_map_contains, pointer_map_insert,
6272 pointer_map_traverse): Likewise.
6273 * predict.c (assert_is_empty): Likewise.
6274 * tree-affine.c (free_name_expansion): Likewise.
6275 * tree-cfg.c (edge_to_cases_cleanup): Likewise.
6276 * tree.c (size_in_bytes, max_int_size_in_bytes): Likewise.
6277 * tree.h (size_in_bytes, max_int_size_in_bytes): Likewise.
6278
6279 2007-08-16 Victor Kaplansky <victork@il.ibm.com>
6280
6281 * tree-vectorizer.c (new_loop_vec_info): Initialize new
6282 field.
6283 (destroy_loop_vec_info): Add call to VEC_free.
6284 * tree-vectorizer.h (may_alias_ddrs): Define.
6285 (LOOP_VINFO_MAY_ALIAS_DDRS): Define.
6286 * tree-vect-analyze.c (vect_analyze_data_ref_dependence):
6287 Change reporting to dump.
6288 (vect_is_duplicate_ddr): New.
6289 (vect_mark_for_runtime_alias_test): New.
6290 (vect_analyze_data_ref_dependences) Add call to
6291 vect_mark_for_runtime_alias_test.
6292 (vect_enhance_data_refs_alignment): Define local variable
6293 vect_versioning_for_alias_required, don't perform
6294 peeling for alignment if versioning for alias is
6295 required.
6296 (vect_enhance_data_refs_alignment): Use
6297 PARAM_VECT_MAX_VERSION_FOR_ALIGNMENT_CHECKS instead of
6298 PARAM_VECT_MAX_VERSION_CHECKS.
6299 * tree-vect-transform.c
6300 (vect_create_cond_for_alias_checks): New.
6301 (vect_transform_loop): Add call to
6302 vect_create_cond_for_alias_checks.
6303 (vect_vfa_segment_size): New.
6304 * params.def (PARAM_VECT_MAX_VERSION_FOR_ALIGNMENT_CHECKS):
6305 Rename.
6306 (PARAM_VECT_MAX_VERSION_FOR_ALIAS_CHECKS): Define.
6307 * gcc/doc/invoke.texi
6308 (vect-max-version-for-alignment-checks): Document.
6309 (vect-max-version-for-alias-checks): Document.
6310 (vect-max-version-checks): Remove.
6311
6312 2007-08-16 Uros Bizjak <ubizjak@gmail.com>
6313
6314 * config/i386/i386.md (*rep_movdi_rex64): Emit "rep" prefix on
6315 the same line as the instruction for all asm dialects.
6316 (*rep_movsi): Ditto.
6317 (*rep_movsi_rex64): Ditto.
6318 (*rep_movqi): Ditto.
6319 (*rep_movqi_rex64): Ditto.
6320 (*rep_stosdi_rex64): Ditto.
6321 (*rep_stossi): Ditto.
6322 (*rep_stossi_rex64): Ditto.
6323 (*rep_stosqi): Ditto.
6324 (*rep_stosqi_rex64): Ditto.
6325 (*cmpstrnqi_nz_1): Ditto.
6326 (*cmpstrnqi_nz_rex_1): Ditto.
6327 (*cmpstrnqi_1): Ditto.
6328 (*cmpstrnqi_rex_1): Ditto.
6329 (*strlenqi_1): Ditto.
6330 (*strlenqi_rex_1): Ditto.
6331 * config/i386/sync.md (*sync_compare_and_swap<mode>): Emit "lock"
6332 prefix on the same line as the instruction for all asm dialects.
6333 (sync_double_compare_and_swap<mode>): Ditto.
6334 (*sync_double_compare_and_swapdi_pic): Ditto.
6335 (*sync_compare_and_swap_cc<mode>): Ditto.
6336 (sync_double_compare_and_swap_cc<mode>): Ditto.
6337 (*sync_double_compare_and_swap_ccdi_pic): Ditto.
6338 (sync_old_add<mode>): Ditto.
6339 (sync_add<mode>): Ditto.
6340 (sync_sub<mode>): Ditto.
6341 (sync_ior<mode>): Ditto.
6342 (sync_and<mode>): Ditto.
6343 (sync_xor<mode>): Ditto.
6344
6345 2007-08-16 Richard Sandiford <richard@codesourcery.com>
6346
6347 PR middle-end/32897
6348 * reload.c (find_reloads): Check that the memory returned by
6349 find_reloads_toplev was not the result of forcing a constant
6350 to memory.
6351 (find_reloads_toplev): Always use simplify_gen_subreg to get
6352 the subreg of a constant. If the result is also a constant,
6353 but not a legitimate one, force it into the constant pool
6354 and reload its address.
6355
6356 2007-08-15 David Edelsohn <edelsohn@gnu.org>
6357
6358 * config/rs6000/rs6000.c (rs6000_rtx_costs): Add CLZ, CTZ, and
6359 POPCOUNT.
6360
6361 2007-08-15 Daniel Jacobowitz <dan@codesourcery.com>
6362
6363 * config/rs6000/rs6000.c (rs6000_file_start): Output a .gnu_attribute
6364 directive for the current vector ABI.
6365
6366 2007-08-15 Steve Ellcey <sje@cup.hp.com>
6367
6368 PR target/32963
6369 * caller-save.c (reg_save_code): Set invalide status on restore code.
6370
6371 2007-08-15 Diego Novillo <dnovillo@google.com>
6372
6373 * tree-ssa-alias.c (compute_memory_partitions): Use
6374 alias_bitmap_obstack to allocate bitmaps.
6375 (reset_alias_info): Factor out of init_alias_info.
6376 Mark all name tags not associated to an SSA name for renaming.
6377 (init_alias_info): Call it.
6378 (create_name_tags): Tidy. Add comments.
6379 (dump_points_to_info_for): Do not call get_mem_sym_stats_for.
6380
6381 2007-08-15 Maxim Kuvyrkov <maxim@codesourcery.com>
6382
6383 * config/mips/mips.c (vr4130_swap_insns_p): Use new interface to
6384 scheduler dependencies.
6385
6386 2007-08-15 Rask Ingemann Lambertsen <rask@sygehus.dk>
6387
6388 * config/i386/i386.md (subsi3_carry_zext): Remove "m" constraint for
6389 "register_operand".
6390 (*iorsi_1_zext): Likewise.
6391 (*iorsi_1_zext_imm): Likewise.
6392 * config/i386/sse.md: (*sse4_1_extractps): Use "nonimmediate_operand"
6393 with "rm"/"xm" constraint.
6394 (sse2_vmsqrtv2df2): Likewise.
6395
6396 2007-08-15 Jakub Jelinek <jakub@redhat.com>
6397
6398 PR middle-end/33074
6399 * emit-rtl.c (try_split): Use INSN_LIST instead of EXPR_LIST for
6400 REG_LIBCALL note.
6401
6402 2007-08-14 Daniel Berlin <dberlin@dberlin.org>
6403
6404 * tree-pass.h (PROP_pta): Removed.
6405 (TODO_rebuild_alias): New.
6406 (pass_may_alias): Removed.
6407 * tree-ssa-ccp.c (execute_fold_all_builtins): Only rebuild
6408 aliasing if we changed something.
6409 * tree-ssa-alias.c (compute_may_aliases): Make non-static. Update
6410 SSA internally.
6411 (pass_may_alias): Removed.
6412 (create_structure_vars): Return TODO_rebuild_alias.
6413 * tree-ssa-pre.c (do_pre): Return TODO_rebuild_alias.
6414 * tree-sra.c (tree_sra): Only rebuild aliasing if something
6415 changed.
6416 (tree_sra_early): We never affect aliasing right now.
6417 * tree-flow.h (compute_may_aliases): New prototype.
6418 * passes.c: Remove pass_may_alias from the passes.
6419 (execute_function_todo): Support TODO_rebuild_alias.
6420
6421 2007-08-14 Kai Tietz <kai.tietz@onevision.com>
6422
6423 * i386.c: (legitimize_address): Move dllimported variable check
6424 infront of legitimizing pic address of CONST symbols.
6425
6426 2007-08-14 Steve Ellcey <sje@cup.hp.com>
6427
6428 PR tree-optimization/32941
6429 * tree-eh.c (struct leh_tf_state): Add goto_queue_map field.
6430 (goto_queue_cmp): Remove.
6431 (find_goto_replacement): Change search method.
6432 (maybe_record_in_goto_queue): Add assert.
6433 (lower_try_finally): Remove qsort call, add pointer_map_destroy call.
6434 * Makefile.in (tree-eh.o): Add pointer-set.h dependency.
6435
6436 2007-08-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6437
6438 * alias.c (component_uses_parent_alias_set): Constify.
6439 * alias.h (component_uses_parent_alias_set): Likewise.
6440 * cfgrtl.c (print_rtl_with_bb): Likewise.
6441 * double-int.c (tree_to_double_int, double_int_fits_to_tree_p,
6442 mpz_get_double_int): Likewise.
6443 * double-int.h (double_int_fits_to_tree_p, tree_to_double_int,
6444 mpz_get_double_int): Likewise.
6445 * expr.c (is_aligning_offset, undefined_operand_subword_p,
6446 mostly_zeros_p, all_zeros_p, safe_from_p, is_aligning_offset):
6447 Likewise.
6448 * expr.h (safe_from_p): Likewise.
6449 * gimple-low.c (try_catch_may_fallthru, block_may_fallthru):
6450 Likewise.
6451 * gimplify.c (should_carry_locus_p, zero_sized_field_decl,
6452 zero_sized_type, goa_lhs_expr_p): Likewise.
6453 * omp-low.c (is_variable_sized, use_pointer_for_field): Likewise.
6454 * rtl.h (print_rtl_with_bb): Likewise.
6455 * sched-vis.c (print_exp, print_value, print_pattern): Likewise.
6456 * tree-cfg.c (const_first_stmt, const_last_stmt): New.
6457 * tree-flow-inline.h (bb_stmt_list): Constify.
6458 (cbsi_start, cbsi_last, cbsi_end_p, cbsi_next, cbsi_prev,
6459 cbsi_stmt): New.
6460 * tree-flow.h (const_block_stmt_iterator, cbsi_start, cbsi_last,
6461 const_first_stmt, const_last_stmt): New.
6462 (block_may_fallthru, empty_block_p): Constify.
6463 * tree-iterator.c (EXPR_FIRST_BODY, EXPR_LAST_BODY,
6464 EXPR_ONLY_BODY): New.
6465 (expr_first, expr_last, expr_only): Use macro for body.
6466 (const_expr_first, const_expr_last, const_expr_only): New.
6467 * tree-iterator.h (const_tree_stmt_iterator, ctsi_start,
6468 ctsi_last, ctsi_end_p, ctsi_one_before_end_p, ctsi_next,
6469 ctsi_prev, ctsi_stmt): New.
6470 * tree-scalar-evolution.c (get_loop_exit_condition): Constify.
6471 * tree-scalar-evolution.h (get_loop_exit_condition): Likewise.
6472 * tree-ssa-loop-niter.c (loop_only_exit_p,
6473 derive_constant_upper_bound): Likewise.
6474 * tree-ssa-phiopt.c (empty_block_p): Likewise.
6475 * tree-ssa-threadupdate.c (redirection_block_p): Likewise.
6476 * tree-vectorizer.c (slpeel_can_duplicate_loop_p): Likewise.
6477 * tree-vectorizer.h (slpeel_can_duplicate_loop_p): Likewise.
6478 * tree-vrp.c (vrp_bitmap_equal_p): Likewise.
6479 * tree.c (get_type_static_bounds): Likewise.
6480 * tree.h (const_expr_first, const_expr_last, const_expr_only): New.
6481 (get_type_static_bounds): Constify.
6482
6483 2007-08-14 Rask Ingemann Lambertsen <rask@sygehus.dk>
6484
6485 PR target/30315
6486 * config/i386/i386.h (CANONICALIZE_COMPARISON): New.
6487 * config/i386/i386.md (plusminus)(addsub)(SWI): New.
6488 (*<addsub><mode>3_cc_overflow): New.
6489 (*add<mode>3_cconly_overflow): New.
6490 (*sub<mode>3_cconly_overflow): New.
6491 (*<addsub>si3_zext_cc_overflow): New.
6492 * config/i386/predicates.md (fcmov_comparison_operator): Accept
6493 CCCmode for LTU, GTU, LEU and GEU.
6494 (ix86_comparison_operator): Likewise.
6495 (ix86_carry_flag_operator): Carry flag is set if LTU or GTU in CCCmode.
6496 * config/i386/i386.c (put_condition_code): Support CCCmode.
6497 (ix86_cc_mode): Use CCCmode when testing for overflow of PLUS
6498 or MINUS expressions.
6499
6500 2007-08-14 Andrew Pinski <pinskia@gmail.com>
6501
6502 PR c/30428
6503 * c-typeck.c (build_binary_op): Disallow vector float types with
6504 BIT_IOR_EXPR, BIT_AND_EXPR, and BIT_XOR_EXPR.
6505
6506 2007-08-14 Maxim Kuvyrkov <maxim@codesourcery.com>
6507
6508 * sched-int.h (struct _dep): Rename field 'kind' to 'type'.
6509 (DEP_KIND): Rename to DEP_TYPE. Update all uses.
6510 (dep_def): New typedef.
6511 (init_dep_1, sd_debug_dep): Declare functions.
6512 (DEP_LINK_KIND): Rename to DEP_LINK_TYPE.
6513 (debug_dep_links): Remove.
6514 (struct _deps_list): New field 'n_links'.
6515 (DEPS_LIST_N_LINKS): New macro.
6516 (FOR_EACH_DEP_LINK): Remove.
6517 (create_deps_list, free_deps_list, delete_deps_list): Remove
6518 declaration.
6519 (deps_list_empty_p, debug_deps_list, add_back_dep_to_deps_list): Ditto.
6520 (find_link_by_pro_in_deps_list, find_link_by_con_in_deps_list): Ditto.
6521 (copy_deps_list_change_con, move_dep_link): Ditto.
6522 (struct haifa_insn_data): Split field 'back_deps' into 'hard_back_deps'
6523 and 'spec_back_deps'. New field 'resolved_forw_deps'. Remove field
6524 'dep_count'.
6525 (INSN_BACK_DEPS): Remove.
6526 (INSN_HARD_BACK_DEPS, INSN_SPEC_BACK_DEPS, INSN_RESOLVED_FORW_DEPS):
6527 New macros.
6528 (INSN_DEP_COUNT): Remove.
6529 (enum DEPS_ADJUST_RESULT): Add new constant DEP_NODEP. Fix comments.
6530 (spec_info, haifa_recovery_block_was_added_during_scheduling_p):
6531 Declare global variables.
6532 (deps_pools_are_empty_p, sched_free_deps): Declare functions.
6533 (add_forw_dep, compute_forward_dependences): Remove declarations.
6534 (add_or_update_back_dep, add_or_update_back_forw_dep): Ditto.
6535 (add_back_forw_dep, delete_back_forw_dep): Ditto.
6536 (debug_ds, sched_insn_is_legitimate_for_speculation_p): Declare
6537 functions.
6538 (SD_LIST_NONE, SD_LIST_HARD_BACK, SD_LIST_SPEC_BACK, SD_LIST_FORW):
6539 New constants.
6540 (SD_LIST_RES_BACK, SD_LIST_RES_FORW, SD_LIST_BACK): Ditto.
6541 (sd_list_types_def): New typedef.
6542 (sd_next_list): Declare function.
6543 (struct _sd_iterator): New type.
6544 (sd_iterator_def): New typedef.
6545 (sd_iterator_start, sd_iterator_cond, sd_iterator_next): New inline
6546 functions.
6547 (FOR_EACH_DEP): New cycle wrapper.
6548 (sd_lists_size, sd_lists_empty_p, sd_init_insn, sd_finish_insn):
6549 Declare functions.
6550 (sd_find_dep_between, sd_add_dep, sd_add_or_update_dep): Ditto.
6551 (sd_resolve_dep, sd_copy_back_deps, sd_delete_dep, sd_debug_lists):
6552 Ditto.
6553
6554 * sched-deps.c (init_dep_1): Make global.
6555 (DUMP_DEP_PRO, DUMP_DEP_CON, DUMP_DEP_STATUS, DUMP_DEP_ALL): New
6556 constants.
6557 (dump_dep): New static function.
6558 (dump_dep_flags): New static variable.
6559 (sd_debug_dep): New function.
6560 (add_to_deps_list, remove_from_deps_list): Update 'n_links' field of
6561 the list.
6562 (move_dep_link): Use remove_from_deps_list (), instead of
6563 detach_dep_link ().
6564 (dep_links_consistent_p, dump_dep_links, debug_dep_links): Remove.
6565 (dep_link_is_detached_p): New static function.
6566 (deps_obstack, dl_obstack, dn_obstack): Remove. Use dn_pool, dl_pool
6567 instead.
6568 (dn_pool, dl_pool): New alloc_pools.
6569 (dn_pool_diff, dl_pool_diff): New static variables.
6570 (create_dep_node, delete_dep_node): New static function.
6571 (create_deps_list): Make it static. Use alloc_pool 'dl_pool'.
6572 (deps_list_empty_p): Make it static. Use 'n_links' field.
6573 (deps_pools_are_empty_p): New static function.
6574 (alloc_deps_list, delete_deps_list): Remove.
6575 (dump_deps_list, debug_deps_list, add_back_dep_to_deps_list): Remove.
6576 (find_link_by_pro_in_deps_list, find_link_by_con_in_deps_list): Ditto.
6577 (copy_deps_list_change_con): Remove. Use sd_copy_back_deps () instead.
6578 (forward_dependency_cache): Remove.
6579 (maybe_add_or_update_back_dep_1, add_or_update_back_dep_1): Remove
6580 'back' from the names. Change signature to use dep_t instead of
6581 equivalent quad.
6582 (add_back_dep): Ditto. Make global.
6583 (check_dep_status): Rename to check_dep ().
6584 (sd_next_list, sd_lists_size, sd_lists_empty_p, sd_init_insn):
6585 New functions.
6586 (sd_finish_insn): Ditto.
6587 (sd_find_dep_between_no_cache): New static function.
6588 (sd_find_dep_between): New function.
6589 (ask_dependency_caches, set_dependency_caches): New static functions.
6590 (update_dependency_caches, change_spec_dep_to_hard, update_dep): Ditto.
6591 (add_or_update_dep_1): Separate pieces of functionality into
6592 ask_dependency_caches (), update_dependency_caches (),
6593 change_spec_dep_to_hard (), update_dep ().
6594 (get_back_and_forw_lists): New static function.
6595 (sd_add_dep): Separate setting of dependency caches into
6596 set_dependency_caches ().
6597 (sd_add_or_update_dep, sd_resolve_dep, sd_copy_back_deps):
6598 New functions.
6599 (sd_delete_dep): Ditto.
6600 (DUMP_LISTS_SIZE, DUMP_LISTS_DEPS, DUMP_LISTS_ALL): New constants.
6601 (dump_lists): New static function.
6602 (sd_debug_lists): New debug function.
6603 (delete_all_dependences, fixup_sched_groups): Update to use
6604 sd_* infrastructure.
6605 (sched_analyze_2): Create data-speculative dependency only if
6606 data-speculation is enabled.
6607 (sched_analyze_insn): If insn cannot be speculative, make all its
6608 dependencies non-speculative.
6609 (sched_analyze): Use sd_init_insn ().
6610 (add_forw_dep, compute_forward_dependencies): Remove.
6611 (delete_dep_nodes_in_back_deps): New static function.
6612 (sched_free_deps): New function.
6613 (init_dependency_caches): Init alloc_pools.
6614 (extend_depedency_caches): Update after removing of
6615 forward_dependency_cache.
6616 (free_dependency_caches): Ditto. Free alloc_pools.
6617 (adjust_add_sorted_back_dep, adjust_back_add_forw_dep): Remove.
6618 (delete_forw_dep, add_or_update_back_dep, add_or_update_back_forw_dep):
6619 Ditto.
6620 (add_back_forw_dep, delete_back_forw_dep): Ditto.
6621 (add_dependence): Use init_dep ().
6622 (get_dep_weak_1): New static function.
6623 (get_dep_weak): Move logic to get_dep_weak_1 ().
6624 (dump_ds): New static function moved from haifa-sched.c:
6625 debug_spec_status ().
6626 (debug_ds): New debug function.
6627 (check_dep_status): Rename to check_dep (). Update to check whole
6628 dependencies.
6629
6630 * haifa-sched.c (spec_info): Make global.
6631 (added_recovery_block_p): Rename to
6632 'haifa_recovery_block_was_added_during_current_schedule_block_p'.
6633 (haifa_recovery_block_was_added_during_scheduling_p): New variable.
6634 (dep_cost, priority, rank_for_schedule, schedule_insn): Update
6635 to use new interfaces.
6636 (ok_for_early_queue_removal): Ditto.
6637 (schedule_block): Initialize logical uids of insns emitted by the
6638 target.
6639 (sched_init): Initialize new variable.
6640 (fix_inter_tick, try_ready, fix_tick_ready): Update to use new
6641 interfaces.
6642 (extend_global): Initialize insn data.
6643 (init_h_i_d): Remove code that is now handled in sd_init_insn ().
6644 (process_insn_forw_deps_be_in_spec): Change signature. Update to use
6645 new interfaces.
6646 (add_to_speculative_block): Update to use new interfaces.
6647 (create_recovery_block): Set new variables.
6648 (create_check_block_twin, fix_recovery_deps): Update to use new
6649 interfaces.
6650 (sched_insn_is_legitimate_for_speculation_p): New function.
6651 (speculate_insn): Move checking logic to
6652 sched_insn_is_legitimate_for_speculation_p ().
6653 (sched_remove_insn): Finalize sched-deps information of instruction.
6654 (clear_priorities, add_jump_dependencies): Update to use new
6655 interfaces.
6656 (debug_spec_status): Rename to dump_ds () and move to sched-deps.c.
6657
6658 * sched-rgn.c (set_spec_fed, find_conditional_protection): Update
6659 to use new interfaces.
6660 (is_conditionally_protected, is_pfree, is_prisky) Ditto.
6661 (new_ready): Try to use control speculation only if it is available.
6662 (add_branch_dependences): Update to use new interfaces.
6663 (compute_block_backward_dependences): Rename to
6664 compute_block_dependences (). Call
6665 targetm.sched.dependencies_evaluation_hook ().
6666 (free_block_dependencies): New static function.
6667 (debug_dependencies): Update to use new interfaces.
6668 (schedule_region): Remove separate computation of forward dependencies.
6669 Move call of targetm.sched.dependencies_evaluation_hook () to
6670 compute_block_dependences (). Free dependencies at the end of
6671 scheduling the region.
6672
6673 * sched-ebb.c (earliest_block_with_similiar_load): Update to use
6674 new interfaces.
6675 (add_deps_for_risky_insns): Ditto.
6676 (schedule_ebb): Remove separate computation of forward dependencies.
6677 Free dependencies at the end of scheduling the ebb.
6678
6679 * ddg.c (create_ddg_dependence): Update to use new interfaces.
6680 (build_intra_loop_deps): Ditto. Remove separate computation of
6681 forward dependencies. Free sched-deps dependencies.
6682
6683 * config/ia64/ia64.c (ia64_dependencies_evaluation_hook): Update
6684 to use new interfaces.
6685 (ia64_dfa_new_cycle, ia64_gen_check): Ditto.
6686
6687 * config/rs6000/rs6000.c (rs6000_is_costly_dependence): Update to use
6688 new interfaces.
6689 (is_costly_group): Ditto.
6690
6691 2007-08-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6692
6693 * alias.c (rtx_equal_for_memref_p): Constify.
6694 * basic-block.h (const_edge, const_basic_block): New.
6695 (reg_set_to_hard_reg_set, dfs_enumerate_from, single_succ_p,
6696 single_pred_p, single_succ_edge, single_pred_edge, single_succ,
6697 single_pred, maybe_hot_bb_p, probably_cold_bb_p,
6698 probably_never_executed_bb_p, edge_probability_reliable_p,
6699 br_prob_note_reliable_p, forwarder_block_p, flow_nodes_print,
6700 inside_basic_block_p, control_flow_insn_p, dominated_by_p):
6701 Likewise.
6702 * bb-reorder.c (better_edge_p, push_to_next_round_p): Likewise.
6703 * bt-load.c (basic_block_freq, insn_sets_btr_p, can_move_up):
6704 Likewise.
6705 * cfganal.c (flow_active_insn_p, forwarder_block_p,
6706 flow_nodes_print, dfs_enumerate_from): Likewise.
6707 * cfgbuild.c (count_basic_blocks, inside_basic_block_p,
6708 control_flow_insn_p, count_basic_blocks): Likewise.
6709 * cfgloop.c (flow_bb_inside_loop_p, glb_enum_p,
6710 get_loop_body_with_size, loop_exit_edge_p): Likewise.
6711 * cfgloop.h (flow_bb_inside_loop_p, num_loop_insns,
6712 average_num_loop_insns, loop_exit_edge_p,
6713 just_once_each_iteration_p, can_duplicate_loop_p): Likewise.
6714 * cfgloopanal.c (just_once_each_iteration_p, num_loop_insns,
6715 average_num_loop_insns, seq_cost): Likewise.
6716 * cfgloopmanip.c (rpe_enum_p, can_duplicate_loop_p): Likewise.
6717 * dominance.c (dominated_by_p): Likewise.
6718 * emit-rtl.c (validate_subreg): Likewise.
6719 * except.c (can_throw_internal, can_throw_external): Likewise.
6720 * except.h (can_throw_internal, can_throw_external): Likewise.
6721 * gcse.c (gcse_constant_p, oprs_unchanged_p, oprs_anticipatable_p,
6722 oprs_available_p, hash_expr, expr_equiv_p, oprs_not_set_p,
6723 compute_transp, load_killed_in_block_p, reg_killed_on_edge,
6724 simple_mem, store_ops_ok, load_kills_store, find_loads,
6725 store_killed_in_insn, store_killed_after, store_killed_before,
6726 gcse_mem_operand, implicit_set_cond_p, store_killed_in_pat):
6727 Likewise.
6728 * ifcvt.c (count_bb_insns, cheap_bb_rtx_cost_p, noce_operand_ok,
6729 noce_mem_write_may_trap_or_fault_p): Likewise.
6730 * pointer-set.c (pointer_set_contains, pointer_map_contains):
6731 Likewise.
6732 * pointer-set.h (pointer_set_contains, pointer_map_contains):
6733 Likewise.
6734 * predict.c (can_predict_insn_p, maybe_hot_bb_p,
6735 probably_cold_bb_p, probably_never_executed_bb_p,
6736 edge_probability_reliable_p, br_prob_note_reliable_p,
6737 can_predict_insn_p): Likewise.
6738 * regclass.c (reg_set_to_hard_reg_set): Likewise.
6739 * resource.c (return_insn_p): Likewise.
6740 * rtl.h (reg_set_between_p, reg_set_p, validate_subreg):
6741 Likewise.
6742 * rtlanal.c (reg_set_between_p, reg_set_p): Likewise.
6743 * tracer.c (count_insns, ignore_bb_p, better_p): Likewise.
6744 * tree-cfg.c (verify_gimple_unary_expr, verify_gimple_binary_expr,
6745 verify_gimple_modify_stmt): Likewise.
6746 * tree-chrec.c (is_not_constant_evolution,
6747 is_multivariate_chrec_rec, is_multivariate_chrec,
6748 chrec_contains_symbols, chrec_contains_undetermined,
6749 tree_contains_chrecs, evolution_function_is_affine_multivariate_p,
6750 evolution_function_is_univariate_p, avoid_arithmetics_in_type_p,
6751 eq_evolutions_p, scev_direction): Likewise.
6752 * tree-chrec.h (automatically_generated_chrec_p, tree_is_chrec,
6753 eq_evolutions_p, is_multivariate_chrec, chrec_contains_symbols,
6754 chrec_contains_symbols_defined_in_loop,
6755 chrec_contains_undetermined, tree_contains_chrecs,
6756 evolution_function_is_affine_multivariate_p,
6757 evolution_function_is_univariate_p, chrec_zerop,
6758 evolution_function_is_constant_p, evolution_function_is_affine_p,
6759 evolution_function_is_affine_or_constant_p,
6760 tree_does_not_contain_chrecs, chrec_type): Likewise.
6761 * tree-data-ref.c (tree_fold_divides_p,
6762 object_address_invariant_in_loop_p, dr_may_alias_p,
6763 ziv_subscript_p, siv_subscript_p, gcd_of_steps_may_divide_p,
6764 same_access_functions, constant_access_functions,
6765 access_functions_are_affine_or_constant_p, find_vertex_for_stmt):
6766 Likewise.
6767 * tree-flow.h (scev_direction): Likewise.
6768 * tree-gimple.c (is_gimple_stmt): Likewise.
6769 * tree-outof-ssa.c (identical_copies_p, identical_stmt_lists_p):
6770 Likewise.
6771 * tree-pretty-print.c (op_prio): Likewise.
6772 * tree-scalar-evolution.c (chrec_contains_symbols_defined_in_loop,
6773 analyzable_condition, backedge_phi_arg_p): Likewise.
6774 * tree-scalar-evolution.h (get_chrec_loop): Likewise.
6775 * tree-ssa-operands.c (get_name_decl, operand_build_cmp): Likewise.
6776 * tree-ssa-threadupdate.c (dbds_continue_enumeration_p):
6777 Likewise.
6778
6779 2007-08-13 Dan Hipschman <dsh@google.com>
6780
6781 PR c/32953
6782 * c-format.c (check_format_arg): Move check for zero-length
6783 format strings below the check for unterminated strings.
6784
6785 2007-08-13 Andrew Pinski <pinskia@gmail.com>
6786
6787 PR C/30427
6788 * c-typeck.c (build_unary_op <case BIT_NOT_EXPR>): Reject vector float
6789 types.
6790
6791 2007-08-13 Nick Clifton <nickc@redhat.com>
6792
6793 * config/arm/arm_neon.h: Revert GPLv3 patch to this file.
6794
6795 2007-08-12 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
6796
6797 PR fortran/32860
6798 * c-format.c (gcc_gfc_length_specs): New array.
6799 (gcc_gfc_char_table): Add unsigned specifier, and references to
6800 the l length modifier.
6801 (format_types_orig): Use the new gcc_gfc_length_specs.
6802
6803 2007-08-12 Sa Liu <saliu@de.ibm.com>
6804
6805 * emit-rtl.c (try_split): Relink the insns with REG_LIBCALL note
6806 and with REG_RETVAL note after split.
6807
6808 2007-08-11 David Daney <ddaney@avtrex.com>
6809
6810 * config/mips/mips.c (mips_sched_reorder): Mark cycle parameter
6811 as ATTRIBUTE_UNUSED.
6812
6813 2007-08-11 David Edelsohn <edelsohn@gnu.org>
6814 Segher Boessenkool <segher@kernel.crashing.org>
6815
6816 * config/rs6000/rs6000.h (CC1_CPU_SPEC): Define as empty string if
6817 HAVE_LOCAL_CPU_DETECT not defined.
6818
6819 2007-08-11 Jan Hubicka <jh@suse.cz>
6820
6821 * cgraphunit.c (record_cdtor_fn): Declare all cdtors always inlined.
6822 (cgraph_process_new_functions): Honor previous value of
6823 disregard_inline_limits.
6824 * ipa-inline.c (compute_inline_parameters): Likewise.
6825
6826 2007-08-11 Ian Lance Taylor <iant@google.com>
6827
6828 * alias.h (alias_set_type): Define new type.
6829 (ALIAS_SET_MEMORY_BARRIER): Use it.
6830 * rtl.h: Include alias.h.
6831 (struct mem_attrs): Use alias_set_type.
6832 * tree.h: Include alias.h
6833 (struct tree_type): Use alias_set_type.
6834 (struct tree_struct_field_tag): Likewise.
6835 (struct tree_decl_common): Likewise.
6836 * alias.c (struct alias_set_entry): Use alias_set_type.
6837 (get_alias_set_entry, alias_set_subset_of): Likewise.
6838 (alias_sets_conflict_p): Likewise.
6839 (alias_sets_must_conflict_p): Likewise.
6840 (objects_must_conflict_p): Likewise.
6841 (get_alias_set, new_alias_set): Likewise.
6842 (record_alias_subset, record_component_aliases): Likewise.
6843 (varargs_set, frame_set): Change to alias_set_type.
6844 (get_varargs_alias_set): Use alias_set_type.
6845 (get_frame_alias_set): Likewise.
6846 * builtins.c (setjmp_alias_set): Change to alias_set_type.
6847 * dse.c (struct store_info): Use alias_set_type.
6848 (struct read_info, struct clear_alias_mode_holder): Likewise.
6849 (clear_alias_set_lookup, canon_address): Likewise.
6850 (record_store, check_mem_read_rtx): Likewise.
6851 (dse_record_singleton_alias_set): Likewise.
6852 (dse_invalidate_singleton_alias_set): Likewise.
6853 * emit-rtl.c (get_mem_attrs): Likewise.
6854 (set_mem_attributes_minus_bitpos): Likewise.
6855 (set_mem_alias_set): Likewise.
6856 * expr.c (store_constructor_field, store_field): Likewise.
6857 * gimplify.c (struct gimplify_init_ctor_preeval_data): Likewise.
6858 * langhooks.c (lhd_get_alias_set): Likewise.
6859 * langhooks-def.h (lhd_get_alias_set): Likewise.
6860 * reload1.c (alter_reg): Likewise.
6861 * tree-flow.h (struct fieldoff): Likewise.
6862 * tree-ssa-alias.c (struct alias_map_d): Likewise.
6863 (may_alias_p, get_smt_for, create_sft): Likewise.
6864 * tree-ssa-alias-warnings.c (nonstandard_alias_types_p): Likewise.
6865 * tree-ssa-structalias.c (set_uids_in_ptset): Likewise.
6866 (merge_smts_into): Likewise.
6867 * varasm.c (const_alias_set): Likewise.
6868 * c-common.c (strict_aliasing_warning): Likewise.
6869 (c_common_get_alias_set): Likewise.
6870 * dse.h (dse_record_singleton_alias_set): Update declaration.
6871 (dse_invalidate_singleton_alias_set): Likewise.
6872 * emit-rtl.h (set_mem_alias_set): Likewise.
6873 * c-common.h (c_common_get_alias_set): Likewise.
6874 * print-rtl.c (print_rtx): Cast MEM_ALIAS_SET when printing it.
6875 * print-tree.c (print_node): Likewise.
6876 * config/alpha/alpha.c (alpha_sr_alias_set): Change to
6877 alias_set_type.
6878 (alpha_setup_incoming_varargs): Use alias_set_type.
6879 * config/i386/i386.c (setup_incoming_varargs_64): Use
6880 alias_set_type.
6881 (setup_incoming_varargs_ms_64): Likewise.
6882 (ix86_GOT_alias_set): Likewise.
6883 * config/mn10300/mn10300.c (mn10300_builtin_saveregs): Likewise.
6884 * config/rs6000/rs6000.c (setup_incoming_varargs): Likewise.
6885 (set): Change to alias_set_type.
6886 (get_TOC_alias_set): Use alias_set_type.
6887 * config/rs6000/rs6000-protos.h (get_TOC_alias_set): Update
6888 declaration.
6889 * config/sh/sh.c (sh_builtin_saveregs): Use alias_set_type.
6890 * config/sparc/sparc.c (sparc_sr_alias_set): Change to
6891 alias_set_type.
6892 (struct_value_alias_set): Likewise.
6893 * Makefile.in (GTFILES): Add $(srcdir)/alias.h.
6894
6895 2007-08-11 Richard Sandiford <richard@codesourcery.com>
6896
6897 * config/vxworks-dummy.h (TARGET_VXWORKS): Define.
6898 * config/vxworks.h (TARGET_VXWORKS): Override.
6899 * config/mips/mips.h (TARGET_CPU_CPP_BUILTINS): Don't define
6900 "mips" if TARGET_VXWORKS.
6901
6902 2007-08-11 Richard Sandiford <richard@codesourcery.com>
6903
6904 * calls.c (avoid_likely_spilled_reg): New function.
6905 (expand_call): Use it.
6906
6907 2007-08-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6908
6909 * c-typeck.c (build_c_cast): Add OPT_Wcast_qual to warnings.
6910
6911 2007-08-10 Adam Nemet <anemet@caviumnetworks.com>
6912
6913 * config/mips/predicates.md (const_call_insn_operand): Invoke
6914 SYMBOL_REF_LONG_CALL_P only on SYMBOL_REFs.
6915
6916 2007-08-10 David Edelsohn <edelsohn@gnu.org>
6917
6918 PR target/33042
6919 * config/rs6000/driver-rs6000.c: Include link.h.
6920 Use ElfW instead of wordsize-specif typedef.
6921
6922 2007-08-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6923
6924 * system.h (CONST_CAST): New.
6925 * c-decl.c (c_make_fname_decl): Use it.
6926 * c-lex.c (cb_ident, lex_string): Likewise.
6927 * c-typeck.c (free_all_tagged_tu_seen_up_to): Likewise.
6928 * gcc.c (set_spec, read_specs, for_each_path, execute, do_spec_1,
6929 give_switch, set_multilib_dir): Likewise.
6930 * gengtype-parse.c (string_seq, typedef_name): Likewise.
6931 * passes.c (execute_one_pass): Likewise.
6932 * prefix.c (update_path): Likewise.
6933 * pretty-print.c (pp_base_destroy_prefix): Likewise.
6934 * tree.c (build_string): Likewise.
6935
6936 2007-08-10 Aldy Hernandez <aldyh@redhat.com>
6937
6938 * tree-flow-inline.h (is_exec_stmt): Remove.
6939 (is_label_stmt): Remove.
6940 * tree-flow.h: Remove prototypes for is_exec_stmt, get_filename, and
6941 is_label_stmt.
6942
6943 2007-08-10 Andreas Krebbel <krebbel1@de.ibm.com>
6944
6945 * lower-subreg.c (resolve_shift_zext): Don't adjust
6946 src_reg_num for wordmode operands.
6947
6948 2007-08-10 Sandra Loosemore <sandra@codesourcery.com>
6949 David Ung <davidu@mips.com>
6950
6951 * config/mips/mips.c (TARGET_SCHED_INIT): Define.
6952 (TARGET_SCHED_REORDER2): Define.
6953 (mips_maybe_swap_ready): New.
6954 (mips_last_74k_agen_insn): New.
6955 (mips_74k_agen_init): New.
6956 (mips_74k_agen_reorder): New function to group loads and stores
6957 in the ready queue.
6958 (mips_sched_init): New.
6959 (mips_sched_reorder): Don't do initialization here. Call
6960 mips_74k_agen_reorder.
6961 (mips_variable_issue): Call mips_74k_agen_init.
6962
6963 2007-08-10 Aldy Hernandez <aldyh@redhat.com>
6964
6965 * tree-flow-inline.h (get_filename): Remove.
6966
6967 2007-08-10 Richard Sandiford <richard@codesourcery.com>
6968
6969 * config/mips/mips-protos.h (mips_address_insns): Add a boolean
6970 argument.
6971 (mips_fetch_insns): Delete in favor of...
6972 (mips_load_store_insns): ...this new function.
6973 * config/mips/mips.c (mips_address_insns): Add a boolean argument
6974 to say whether multiword moves _might_ be split.
6975 (mips_fetch_insns): Delete in favor of...
6976 (mips_load_store_insns): ...this new function.
6977 (mips_rtx_costs): Update the call to mips_address_insns.
6978 (mips_address_cost): Likewise.
6979 * config/mips/mips.md (length): Use mips_load_store_insns instead
6980 of mips_fetch_insns.
6981 * config/mips/constraints.md (R): Use mips_address_insns rather
6982 than mips_fetch_insns. Assume that the move never needs to be split.
6983
6984 2007-08-09 Sandra Loosemore <sandra@codesourcery.com>
6985
6986 * config/mips/mips.opt (mhard-float, msoft-float): Make these
6987 control TARGET_HARD_FLOAT_ABI and TARGET_SOFT_FLOAT_ABI, rather
6988 than TARGET_HARD_FLOAT and TARGET_SOFT_FLOAT.
6989 * config/mips/mips.h (mips16_hard_float): Delete.
6990 (TARGET_HARD_FLOAT_ABI, TARGET_SOFT_FLOAT_ABI): Delete these
6991 definitions, and replace with....
6992 (TARGET_HARD_FLOAT, TARGET_SOFT_FLOAT): Define.
6993 * config/mips/mips.c (mips16_hard_float): Delete. Replace
6994 all references with (TARGET_MIPS16 && TARGET_HARD_FLOAT_ABI).
6995 (MIPS_MARCH_CONTROLS_SOFT_FLOAT): Update comments.
6996 (override_options): Replace MASK_SOFT_FLOAT references with
6997 MASK_SOFT_FLOAT_ABI. Delete twiddling with MASK_SOFT_FLOAT
6998 and mips16_hard_float when TARGET_MIPS16.
6999
7000 2007-08-09 Andrew Pinski <andrew_pinski@playstation.sony.com>
7001
7002 PR c/32796
7003 * c-typeck.c (build_binary_op): Check for non pointer types before
7004 calling int_fits_type_p.
7005
7006 2007-08-09 Andrew Pinski <andrew_pinski@playstation.sony.com>
7007
7008 PR middle-end/32813
7009 * fold-const.c (omit_one_operand): Return only the ommitted expression
7010 if the result is an empty statement.
7011 (pedantic_omit_one_operand): Likewise.
7012
7013 2007-08-09 Daniel Berlin <dberlin@dberlin.org>
7014
7015 * c-typeck.c (readonly_error): Improve error for assignment.
7016
7017 * c-pretty-print.c (pp_c_additive_expression): Handle pointer-plus
7018 expression.
7019 (pp_c_expression): Ditto.
7020
7021 2007-08-09 Simon Baldwin <simonb@google.com>
7022
7023 * simplify-rtx.c (simplify_binary_operation_1): Removed erroneous
7024 break that was preventing simplify_associative_operation() for xor.
7025
7026 2007-08-09 Sandra Loosemore <sandra@codesourcery.com>
7027 Nigel Stephens <nigel@mips.com>
7028
7029 * doc/tm.texi (CLZ_DEFINED_VALUE_AT_ZERO, CTZ_DEFINED_VALUE_AT_ZERO):
7030 Document change in interpretation of value from boolean to
7031 tri-state integer.
7032 * optabs.c (expand_ffs, expand_ctz): New functions to compute
7033 ffs and ctz using clz.
7034 (expand_unop): Call them.
7035 * config/rs6000/rs6000.h (CLZ_DEFINED_VALUE_AT_ZERO): Fix its
7036 result value.
7037 (CTZ_DEFINED_VALUE_AT_ZERO): Likewise.
7038 * config/mips/mips.h (CLZ_DEFINED_VALUE_AT_ZERO): Likewise, to
7039 enable the new ffs expansion on this target.
7040
7041 2007-08-09 Jan Hubicka <jh@suse.cz>
7042
7043 * optabs.c (expand_widen_pattern_expr): Use optabs accestors.
7044 (expand_ternary_op): Likewise.
7045 (expand_vec_shift_expr): Likewise.
7046 (expand_binop_directly): Likewise.
7047 (expand_binop): Likewise.
7048 (sign_expand_binop): Likewise.
7049 (expand_twoval_unop): Likewise.
7050 (expand_twoval_binop): Likewise.
7051 (expand_twoval_binop_libfunc): Likewise.
7052 (widen_clz): Likewise.
7053 (widen_bswap): Likewise.
7054 (expand_parity): Likewise.
7055 (expand_unop): Likewise.
7056 (expand_abs_nojump): Likewise.
7057 (expand_copysign): Likewise.
7058 (emit_no_conflict_block): Likewise.
7059 (emit_libcall_block): Likewise.
7060 (can_compare_p): Likewise.
7061 (prepare_cmp_insn): Likewise.
7062 (emit_cmp_and_jump_insn_1): Likewise.
7063 (prepare_float_lib_cmp): Likewise.
7064 (emit_conditional_add): Likewise.
7065 (gen_add2_insn): Likewise.
7066 (have_add2_insn): Likewise.
7067 (gen_sub2_insn): Likewise.
7068 (have_sub2_insn): Likewise.
7069 (can_extend_p): Likewise.
7070 (can_fix_p): Likewise.
7071 (can_float_p): Likewise.
7072 (expand_float): Likewise.
7073 (expand_fix): Likewise.
7074 (expand_sfix_optab): Likewise.
7075 (new_optab): Likewise.
7076 (new_convert_optab): Likewise.
7077 (init_libfuncs): Likewise.
7078 (init_interclass_conv_libfuncs): Likewise.
7079 (init_intraclass_conv_libfuncs): Likewise.
7080 (set_conv_libfunc): Likewise.
7081 (init_optabs): Likewise.
7082 (debug_optab_libfuncs): Likewise.
7083 (gen_cond_trap): Likewise.
7084 * optabs.h (optab_handler, convert_optab_hanlder): New.
7085 * genopinit.c: Update optabs generation table.
7086 * reload.c (find_reloads_address_1): Use optabs accestors.
7087 * builtins.c (expand_builtin_mathfn): Likewise.
7088 (expand_builtin_mathfn_2): Likewise.
7089 (expand_builtin_mathfn_3): Likewise.
7090 (expand_builtin_interclass_mathfn): Likewise.
7091 (expand_builtin_sincos): Likewise.
7092 (expand_builtin_cexpi): Likewise.
7093 (expand_builtin_powi): Likewise.
7094 (expand_builtin_strlen): Likewise.
7095 * dojump.c (do_jump): Likewise.
7096 * expr.c (convert_move): Likewise.
7097 (move_by_pieces): Likewise.
7098 (move_by_pieces_ninsns): Likewise.
7099 (can_store_by_pieces): Likewise.
7100 (store_by_pieces_1): Likewise.
7101 (emit_move_via_integer): Likewise.
7102 (emit_move_complex): Likewise.
7103 (emit_move_ccmode): Likewise.
7104 (emit_move_insn_1): Likewise.
7105 (emit_single_push_insn): Likewise.
7106 (store_constructor): Likewise.
7107 (expand_expr_real_1): Likewise.
7108 (do_store_flag): Likewise.
7109 * ada/misc.c (gnat_compute_largest_alignment): Likewise.
7110 (enumerate_modes): Likewise.
7111 * tree-vectorizer.c (vect_supportable_dr_alignment): Likewise.
7112 (supportable_widening_operation): Likewise.
7113 (supportable_narrowing_operation): Likewise.
7114 * expmed.c (store_bit_field_1): Likewise.
7115 (extract_bit_field_1): Likewise.
7116 (expand_mult_highpart_optab): Likewise.
7117 (expand_smod_pow2): Likewise.
7118 (expand_divmod): Likewise.
7119 (emit_store_flag): Likewise.
7120 * tree-vect-patterns.c
7121 (vect_pattern_recog_1): Likewise.
7122 * tree-ssa-loop-prefetch.c
7123 (nontemporal_store_p): Likewise.
7124 * tree-vect-transform.c (vect_model_reduction_cost): Likewise.
7125 (vect_create_epilog_for_reduction): Likewise.
7126 (vectorizable_reduction): Likewise.
7127 (vectorizable_operation): Likewise.
7128 (vect_strided_store_supported): Likewise.
7129 (vectorizable_store): Likewise.
7130 (vect_strided_load_supported): Likewise.
7131 (vectorizable_load): Likewise.
7132 * combine.c (simplify_comparison): Likewise.
7133 * tree-vect-generic.c
7134 (type_for_widest_vector_mode): Likewise.
7135 (expand_vector_operations_1): Likewise.
7136 * config/spu/spu.c (spu_expand_mov): Likewise.
7137 (spu_emit_vector_compare): Likewise.
7138 * config/rs6000/rs6000.c
7139 (rs6000_emit_vector_compare): Likewise.
7140 * stmt.c (add_case_node): Likewise.
7141 * reload1.c (gen_reload):
7142
7143 2007-08-09 Michael Matz <matz@suse.de>
7144
7145 * tree.h (fixed_zerop): Declare as taking a const_tree.
7146 * tree.c (fixed_zerop): Take a const_tree.
7147
7148 2007-08-09 Ira Rosen <irar@il.ibm.com>
7149
7150 * tree-vect-transform.c (vectorizable_store): Remove call to
7151 copy_virtual_operands() and call mark_symbols_for_renaming() for
7152 the created vector store.
7153 (vect_setup_realignment): Don't call copy_virtual_operands() and
7154 update_vuses_to_preheader().
7155 (vectorizable_load): Don't call copy_virtual_operands().
7156 (update_vuses_to_preheader): Remove.
7157
7158 2007-08-08 Chao-ying Fu <fu@mips.com>
7159
7160 * tree.def (FIXED_POINT_TYPE): New type.
7161 (FIXED_CST): New constant.
7162 (FIXED_CONVERT_EXPR): New expr.
7163 * doc/c-tree.texi (Types): Document FIXED_POINT_TYPE.
7164 (Expressions): Document FIXED_CST and FIXED_CONVERT_EXPR.
7165 * tree.h (struct tree_base): Add saturating_flag.
7166 Remove one bit of spare for saturating_flag.
7167 (NUMERICAL_TYPE_CHECK): Support FIXED_POINT_TYPE.
7168 (NON_SAT_FIXED_POINT_TYPE_P, SAT_FIXED_POINT_TYPE_P,
7169 FIXED_POINT_TYPE_P): Define.
7170 (TYPE_SATURATING): Define.
7171 (TREE_FIXED_CST_PTR, TREE_FIXED_CST): Define.
7172 (struct tree_fixed_cst): New.
7173 (TYPE_IBIT, TYPE_FBIT): Define.
7174 (tree_node): Add fixed_cst.
7175 (enum tree_index): Add new enumeration values of
7176 TI_SAT_SFRACT_TYPE, TI_SAT_FRACT_TYPE, TI_SAT_LFRACT_TYPE,
7177 TI_SAT_LLFRACT_TYPE, TI_SAT_USFRACT_TYPE, TI_SAT_UFRACT_TYPE,
7178 TI_SAT_ULFRACT_TYPE, TI_SAT_ULLFRACT_TYPE, TI_SFRACT_TYPE,
7179 TI_FRACT_TYPE, TI_LFRACT_TYPE, TI_LLFRACT_TYPE, TI_USFRACT_TYPE,
7180 TI_UFRACT_TYPE, TI_ULFRACT_TYPE, TI_ULLFRACT_TYPE,
7181 TI_SAT_SACCUM_TYPE, TI_SAT_ACCUM_TYPE, TI_SAT_LACCUM_TYPE,
7182 TI_SAT_LLACCUM_TYPE, TI_SAT_USACCUM_TYPE, TI_SAT_UACCUM_TYPE,
7183 TI_SAT_ULACCUM_TYPE, TI_SAT_ULLACCUM_TYPE, TI_SACCUM_TYPE,
7184 TI_ACCUM_TYPE, TI_LACCUM_TYPE, TI_LLACCUM_TYPE, TI_USACCUM_TYPE,
7185 TI_UACCUM_TYPE, TI_ULACCUM_TYPE, TI_ULLACCUM_TYPE,
7186 TI_QQ_TYPE, TI_HQ_TYPE,_TYPE, TI_SQ_TYPE, TI_DQ_TYPE, TI_TQ_TYPE,
7187 TI_UQQ_TYPE, TI_UHQ_TYPE, TI_USQ_TYPE, TI_UDQ_TYPE, TI_UTQ_TYPE,
7188 TI_SAT_QQ_TYPE, TI_SAT_HQ_TYPE, TI_SAT_SQ_TYPE, TI_SAT_DQ_TYPE,
7189 TI_SAT_TQ_TYPE, TI_SAT_UQQ_TYPE, TI_SAT_UHQ_TYPE, TI_SAT_USQ_TYPE,
7190 TI_SAT_UDQ_TYPE, TI_SAT_UTQ_TYPE, TI_HA_TYPE, TI_SA_TYPE, TI_DA_TYPE,
7191 TI_TA_TYPE, TI_UHA_TYPE, TI_USA_TYPE, TI_UDA_TYPE, TI_UTA_TYPE,
7192 TI_SAT_HA_TYPE, TI_SAT_SA_TYPE, TI_SAT_DA_TYPE, TI_SAT_TA_TYPE,
7193 TI_SAT_UHA_TYPE, TI_SAT_USA_TYPE, TI_SAT_UDA_TYPE, TI_SAT_UTA_TYPE.
7194 (sat_short_fract_type_node, sat_fract_type_node,
7195 sat_long_fract_type_node, sat_long_long_fract_type_node,
7196 sat_unsigned_short_fract_type_node, sat_unsigned_fract_type_node,
7197 sat_unsigned_long_fract_type_node,
7198 sat_unsigned_long_long_fract_type_node, short_fract_type_node,
7199 fract_type_node, long_fract_type_node, long_long_fract_type_node,
7200 unsigned_short_fract_type_node, unsigned_fract_type_node,
7201 unsigned_long_fract_type_node, unsigned_long_long_fract_type_node,
7202 sat_short_accum_type_node, sat_accum_type_node,
7203 sat_long_accum_type_node, sat_long_long_accum_type_node,
7204 sat_unsigned_short_accum_type_node, sat_unsigned_accum_type_node,
7205 sat_unsigned_long_accum_type_node,
7206 sat_unsigned_long_long_accum_type_node, short_accum_type_node,
7207 accum_type_node, long_accum_type_node, long_long_accum_type_node,
7208 unsigned_short_accum_type_node, unsigned_accum_type_node,
7209 unsigned_long_accum_type_node, unsigned_long_long_accum_type_node,
7210 qq_type_node, hq_type_node, sq_type_node, dq_type_node, tq_type_node,
7211 uqq_type_node, uhq_type_node, usq_type_node, udq_type_node,
7212 utq_type_node, sat_qq_type_node, sat_hq_type_node, sat_sq_type_node,
7213 sat_dq_type_node, sat_tq_type_node, sat_uqq_type_node,
7214 sat_uhq_type_node, sat_usq_type_node, sat_udq_type_node,
7215 sat_utq_type_node, ha_type_node, sa_type_node, da_type_node,
7216 ta_type_node, uha_type_node, usa_type_node, uda_type_node,
7217 uta_type_node, sat_ha_type_node, sat_sa_type_node, sat_da_type_node,
7218 sat_ta_type_node, sat_uha_type_node, sat_usa_type_node,
7219 sat_uda_type_node, sat_uta_type_node): New macro.
7220 (make_fract_type, make_accum_type): Declare.
7221 (make_signed_fract_type, make_unsigned_fract_type,
7222 make_sat_signed_fract_type, make_sat_unsigned_fract_type,
7223 make_signed_accum_type, make_unsigned_accum_type,
7224 make_sat_signed_accum_type, make_sat_unsigned_accum_type,
7225 make_or_reuse_signed_fract_type, make_or_reuse_unsigned_fract_type,
7226 make_or_reuse_sat_signed_fract_type,
7227 make_or_reuse_sat_unsigned_fract_type, make_or_reuse_signed_accum_type,
7228 make_or_reuse_unsigned_accum_type, make_or_reuse_sat_signed_accum_type,
7229 make_or_reuse_sat_unsigned_accum_type): New macro.
7230 (fixed_zerop): Declare.
7231 * defaults.h (SHORT_FRACT_TYPE_SIZE, FRACT_TYPE_SIZE,
7232 LONG_FRACT_TYPE_SIZE, LONG_LONG_FRACT_TYPE_SIZE,
7233 SHORT_ACCUM_TYPE_SIZE, ACCUM_TYPE_SIZE, LONG_ACCUM_TYPE_SIZE,
7234 LONG_LONG_ACCUM_TYPE_SIZE): Define.
7235 * treestruct.def: Add TS_FIXED_CST.
7236 * Makefile.in (c-pretty-print.o): Add dependence on fixed-value.h.
7237 (tree.o): Likewise.
7238 (tree-dump.o): Likewise.
7239 (print-tree.o): Likewise.
7240 (tree-pretty-print.o): Likewise.
7241 (fold-const.o): Likewise.
7242 * tree-complex.c (some_nonzerop): Handle FIXED_CST.
7243 * tree-gimple.c (is_gimple_formal_tmp_rhs): Handle FIXED_CST.
7244 (is_gimple_min_invariant): Handle FIXED_CST.
7245 * stor-layout.c (int_mode_for_mode): Handle MODE_FRACT, MODE_UFRACT,
7246 MODE_ACCUM, MODE_UACCUM, MODE_VECTOR_FRACT, MODE_VECTOR_UFRACT,
7247 MODE_VECTOR_ACCUM, MODE_VECTOR_UACCUM.
7248 (layout_type): Handle FIXED_POINT_TYPE.
7249 (make_fract_type, make_accum_type): New functions.
7250 * tree-browser.c (browse_tree): Handle FIXED_POINT_TYPE.
7251 * tree-dump.c (fixed-value.h): New include.
7252 (dump_fixed): New function.
7253 (dequeue_and_dump): Handle FIXED_POINT_TYPE and FIXED_CST.
7254 * tree-inline.c (remap_type_1): Handle FIXED_POINT_TYPE.
7255 (estimate_num_insns_1): Handle FIXED_CST and FIXED_CONVERT_EXPR.
7256 * tree-pretty-print.c (fixed-value.h): New include.
7257 (dump_generic_node): Handle FIXED_POINT_TYPE, FIXED_CST, and
7258 FIXED_CONVERT_EXPR.
7259 * tree-scalar-evolution.c (get_scalar_evolution): Handle FIXED_CST.
7260 * tree-ssa-loop-im.c (for_each_index): Handle FIXED_CST.
7261 * tree-ssa-pre.c (poolify_tree): Handle FIXED_CST.
7262 * tree-ssa-reassoc.c (break_up_subtract_bb): We can do reassociation
7263 for non-saturating fixed-point types.
7264 (reassociate_bb): Likewise.
7265 * emit-rtl.c (fixed-value.h): New include.
7266 (fconst0, fconst1): New array.
7267 (init_emit_once): Initialize fconst0 and fconst1 for fixed-point modes.
7268 * tree-vect-generic.c expand_vector_operation): Support
7269 MODE_VECTOR_FRACT, MODE_VECTOR_UFRACT, MODE_VECTOR_ACCUM, and
7270 MODE_VECTOR_UACCUM.
7271 (type_for_widest_vector_mode): Add one parameter for the
7272 saturating flag.
7273 Check scalar FRACT, UFRACT, ACCUM, and UACCUM mode to select their
7274 vector mode.
7275 Pass the satp parameter to type_for_mode for fixed-point types.
7276 (expand_vector_operations_1): Pass the saturating flag to
7277 type_for_widest_vector_mode.
7278 Support MODE_VECTOR_FRACT, MODE_VECTOR_UFRACT, MODE_VECTOR_ACCUM,
7279 and MODE_VECTOR_UACCUM.
7280 * tree-vect-transform.c (vect_is_simple_cond): Support FIXED_CST.
7281 (vectorizable_condition): Likewise.
7282 * tree.c (fixed-value.h): New include.
7283 (tree_code_size): Support FIXED_CST.
7284 (build_fixed): New function.
7285 (build_one_cst): Support FIXED_POINT_TYPE for accum types.
7286 (fixed_zerop): New function.
7287 (tree_node_structure): Support FIXED_CST.
7288 (type_contains_placeholder_1): Support FIXED_POINT_TYPE.
7289 (build_type_attribute_qual_variant): Handle FIXED_POINT_TYPE.
7290 (type_hash_eq): Handle FIXED_POINT_TYPE.
7291 (simple_cst_equal): Support FIXED_CST.
7292 (iterative_hash_expr): Handle FIXED_CST.
7293 (get_unwidened): Make sure type is not FIXED_POINT_TYPE.
7294 (get_narrower): Likewise.
7295 (variably_modified_type_p): Handle FIXED_POINT_TYPE.
7296 (make_or_reuse_fract_type, make_or_reuse_accum_type): New functions.
7297 (build_common_tree_nodes_2): Use MAKE_FIXED_TYPE_NODE_FAMILY and
7298 MAKE_FIXED_MODE_NODE macros to initialize fixed-point type
7299 nodes.
7300 (build_vector_type_for_mode): Handle MODE_VECTOR_FRACT,
7301 MODE_VECTOR_UFRACT, MODE_VECTOR_ACCUM, MODE_VECTOR_UACCUM.
7302 (initializer_zerop): Support FIXED_CST.
7303 (walk_tree): Handle FIXED_CST and FIXED_POINT_TYPE.
7304 * dwarf2out.c (base_type_die): Use DW_ATE_signed_fixed or
7305 DW_ATE_unsigned_fixed to describe FIXED_POINT_TYPE.
7306 (is_base_type): Handle FIXED_POINT_TYPE.
7307 (add_type_attribute): Handle FIXED_POINT_TYPE.
7308 (gen_type_die_with_usage): Handle FIXED_POINT_TYPE.
7309 * print-tree.c (fixed-value.h): New include.
7310 (print_node_brief): Support FIXED_CST.
7311 (print_node): Support FIXED_POINT_TYPE and FIXED_CST.
7312 * c-pretty-print.c (fixed-value.h): New include.
7313 (pp_c_type_specifier): Handle FIXED_POINT_TYPE. Need to pass
7314 TYPE_SATURATING to c_common_type_for_mode for fixed-point modes.
7315 (pp_c_direct_abstract_declarator): Handle FIXED_POINT_TYPE.
7316 Support fixed-point types for inner items in VECTOR_TYPE.
7317 (pp_c_direct_declarator): Likewise.
7318 (pp_c_declarator): Likewise.
7319 (pp_c_fixed_constant): New function.
7320 (pp_c_constant): Handle FIXED_CST.
7321 (pp_c_primary_expression): Likewise.
7322 (pp_c_expression): Likewise.
7323 * fold-const.c (fixed-value.h): New include.
7324 (negate_expr_p): Return true for FIXED_CST.
7325 (fold_negate_expr): Support FIXED_CST.
7326 (split_tree): Support FIXED_CST.
7327 (const_binop): Support FIXED_CST.
7328 (fold_convert_const_int_from_fixed): New function to convert from
7329 fixed to int.
7330 (fold_convert_const_real_from_fixed): New function to convert from
7331 fixed to real.
7332 (fold_convert_const_fixed_from_fixed): New function to convert from
7333 fixed to another fixed.
7334 (fold_convert_const_fixed_from_int): New function to convert from
7335 int to fixed.
7336 (fold_convert_const_fixed_from_real): New function to convert from
7337 real to fixed.
7338 (fold_convert_const): Support conversions from fixed to int, from
7339 fixed to real, from fixed to fixed, from int to fixed, and from real
7340 to fixed.
7341 (fold_convert): Support FIXED_CST and FIXED_POINT_TYPE.
7342 (operand_equal_p): Support FIXED_CST.
7343 (make_range): For fixed-point modes, we need to pass the
7344 saturating flag as the 2nd parameter.
7345 (tree_swap_operands_p): Handle FIXED_CST.
7346 (fold_plusminus_mult_expr): For fract modes, we cannot generate
7347 constant 1.
7348 (fold_unary): Support FIXED_CONVERT_EXPR.
7349 (fold_binary): Handle FIXED_CST.
7350 Make sure the type is not saturating, before associating operations.
7351 Ex: A + B + C, A * B * C, (A1 * C1) +/- (A2 * C2).
7352 (tree_expr_nonnegative_warnv_p): Handle FIXED_CST.
7353 (fold_negate_const): Support FIXED_CST.
7354 (fold_relational_const): Support FIXED_CST.
7355 * gimplify.c (omp_firstprivatize_type_sizes): Handle FIXED_POINT_TYPE.
7356 (gimplify_expr): Handle FIXED_CST.
7357 (gimplify_type_sizes): Handle FIXED_POINT_TYPE.
7358 * ipa-prop.c (ipa_callsite_compute_param): Support FIXED_CST.
7359 * ipa-type-escape.c (type_to_consider): Handle FIXED_POINT_TYPE.
7360 * doc/tm.texi (Type Layout): Document SHORT_FRACT_TYPE_SIZE,
7361 FRACT_TYPE_SIZE, LONG_FRACT_TYPE_SIZE, LONG_LONG_FRACT_TYPE_SIZE,
7362 SHORT_ACCUM_TYPE_SIZE, ACCUM_TYPE_SIZE, LONG_ACCUM_TYPE_SIZE,
7363 LONG_LONG_ACCUM_TYPE_SIZE.
7364 * dbxout.c (dbxout_type): Handle FIXED_POINT_TYPE.
7365 * c-aux-info.c (gen_type): Handle FIXED_POINT_TYPE.
7366 * tree-sra.c (is_sra_scalar_type): Support FIXED_POINT_TYPE.
7367 * expmed.c (extract_bit_field): Support MODE_FRACT, MODE_UFRACT,
7368 MODE_ACCUM, and MODE_UACCUM.
7369 * tree-vectorizer.c (vect_is_simple_reduction): Check for saturating
7370 fixed-point types to disable reduction.
7371 * explow.c (promote_mode): Support FIXED_POINT_TYPE.
7372
7373 2007-08-08 David Edelsohn <edelsohn@gnu.org>
7374
7375 * config/rs6000/x-rs6000: New file.
7376 * config/rs6000/darwin.h (CC1_SPEC): Add cc1_cpu.
7377 * config/rs6000/rs6000.h (EXTRA_SPECS): Add cc1_cpu.
7378 (EXTRA_SPEC_FUNCTIONS): Define.
7379 (HAVE_LOCAL_CPU_DETECT): Define.
7380 (CC1_CPU_SPEC): Define.
7381 * config/rs6000/driver-rs6000.c: New file.
7382 * config/rs6000/aix.h (CC1_SPEC): Define.
7383 * config/rs6000/sysv4.h (CC1_SPEC): Add cc1_cpu.
7384 * config.host: Add x-rs6000 to host_xmake_file if host and target
7385 are rs6000 or powerpc.
7386
7387 2007-08-08 Paolo Bonzini <paolo.bonzini@lu.unisi.ch>
7388
7389 * config/i386/t-crtstuff (CRTSTUFF_T_CFLAGS): Use +=.
7390
7391 2007-08-08 Richard Sandiford <richard@codesourcery.com>
7392 Sandra Loosemore <sandra@codesourcery.com>
7393 Chao-ying Fu <fu@mips.com>
7394 Nigel Stephens <nigel@mips.com>
7395 David Ung <davidu@mips.com>
7396
7397 * doc/invoke.texi (-mcode-readable): Document.
7398 * config/mips/mips.opt (mcode-readable): New option.
7399 * config/mips/mips-protos.h (SYMBOL_32_HIGH): New symbol type.
7400 * config/mips/mips.h (mips_code_readable_setting): New enum.
7401 (mips_code_readable): Declare.
7402 (TARGET_MIPS16_TEXT_LOADS, TARGET_MIPS16_PCREL_LOADS): New macros.
7403 (TARGET_MIPS16_SHORT_JUMP_TABLES): New macro.
7404 (JUMP_TABLES_IN_TEXT_SECTION): Use it.
7405 (CASE_VECTOR_MODE, CASE_VECTOR_PC_RELATIVE): Likewise. Remove
7406 boiler-plate comments.
7407 (ASM_OUTPUT_ADDR_DIFF_ELT): Use TARGET_MIPS16_SHORT_JUMP_TABLES.
7408 * config/mips/mips.c (mips_code_readable): New variable.
7409 (mips_classify_symbol): Only return SYMBOL_PC_RELATIVE for
7410 MIPS16 labels if TARGET_MIPS16_SHORT_JUMP_TABLES. Use both the
7411 context and -mcode-readable setting to restrict the use of
7412 SYMBOL_PC_RELATIVE for MIPS16 constant pool references.
7413 Only return TARGET_FORCE_TO_MEM if PC-relative loads are allowed.
7414 (mips_symbolic_constant_p): Handle SYMBOL_32_HIGH.
7415 (mips_blocks_for_constant_p): Only return false for
7416 TARGET_MIPS16_PCREL_LOADS.
7417 (mips_symbol_insns_1): Treat HIGHs as 2 extended instructions
7418 for MIPS16. Handle SYMBOL_32_HIGH.
7419 (mips_const_insns): Allow HIGHs for MIPS16 too.
7420 (mips_unspec_address_offset): New function, split out from...
7421 (mips_unspec_address): ...here.
7422 (mips_output_move): Handle MIPS16 HIGH moves. Use "li" to load
7423 16-bit symbolic constants. Assert approropiate conditions for
7424 using the "la" and "dla" macros.
7425 (mips_handle_option): Handle -mcode-readable=.
7426 (override_options): Use %hi/%lo relocations for TARGET_MIPS16 too.
7427 Set up mips_lo_relocs[SYMBOL_32_HIGH].
7428 (mips_strip_unspec_address): New function, split out from...
7429 (print_operand_reloc): ...here.
7430 (print_operand): Pass constants through mips_strip_unspec_address.
7431 (print_operand_address): Likewise.
7432 (mips_output_mi_thunk): Remove guard of mips16_lay_out_constants.
7433 (mips_select_rtx_section): Remove MIPS16 handling.
7434 (mips16_gp_pseudo_reg): Check currently_expanding_to_rtl.
7435 (mips16_rewrite_pool_refs): Wrap the labels in an address UNSPEC.
7436 (mips16_lay_out_constants): Do nothing unless
7437 TARGET_MIPS16_PCREL_LOADS.
7438 (mips_avoid_hazards): Remove guard of mips16_lay_out_constants.
7439 * config/mips/mips.md: Split HIGHs for MIPS16.
7440 (tablejump): Use TARGET_MIPS16_SHORT_JUMP_TABLES.
7441
7442 2007-08-08 Richard Sandiford <richard@codesourcery.com>
7443
7444 * config/mips/mips-protos.h (mips_emit_move): Declare.
7445 * config/mips/mips.c (mips_emit_move): New function.
7446 (mips_force_temporary): Use mips_emit_move instead of emit_move_insn.
7447 (mips_legitimize_const_move): Likewise.
7448 (mips_legitimize_move): Likewise.
7449 (mips_split_64bit_move): Likewise.
7450 (mips_restore_gp): Likewise.
7451 (mips_load_call_address): Likewise.
7452 (mips_emit_fcc_reload): Likewise.
7453 (mips_set_return_address): Likewise.
7454 (mips_block_move_straight): Likewise.
7455 (mips_block_move_loop): Likewise.
7456 (mips_setup_incoming_varargs): Likewise.
7457 (mips_save_reg): Likewise.
7458 (mips_expand_prologue): Likewise.
7459 (mips_restore_reg): Likewise.
7460 (mips_expand_epilogue): Likewise.
7461 (mips_output_mi_thunk): Likewise.
7462 (build_mips16_call_stub): Likewise.
7463 (mips_builtin_branch_and_move): Likewise.
7464 * config/mips/mips.h (INITIALIZE_TRAMPOLINE): Likewise.
7465 * config/mips/mips.md (fixuns_truncdfsi2): Likewise.
7466 (fixuns_truncdfdi2): Likewise.
7467 (fixuns_truncsfsi2): Likewise.
7468 (fixuns_truncsfdi2): Likewise.
7469 (loadgp_absolute): Likewise.
7470 (builtin_setjmp_setup): Likewise.
7471 (builtin_longjmp): Likewise.
7472 (untyped_call): Likewise.
7473
7474 2007-08-08 Richard Sandiford <richard@codesourcery.com>
7475
7476 * config/mips/mips-protos.h (mips_split_symbol): Add a mode and
7477 an "rtx *" argument. Return a bool.
7478 * config/mips/mips.c (mips_split_symbol): Accept arbitrary source
7479 values and return true if they can be split. Take the same kind of
7480 mode argument as mips_symbol_insns. Add a "lo_sum_out" parameter
7481 and store the lo_sum there if nonnull. Use the symbol type to
7482 determine whether a $gp or HIGH is needed.
7483 (mips_legitimize_address): Update call to mips_split_symbol and
7484 simplify accordingly.
7485 (mips_legitimize_const_move): Likewise.
7486 * config/mips/mips.md: In the combine define_split,
7487 check mips_split_symbol instead of splittable_symbolic_operand.
7488 Update use of mips_split_symbol in the generator code.
7489 * config/mips/predicates.md (splittable_symbolic_operand): Delete.
7490
7491 2007-08-08 Richard Sandiford <richard@codesourcery.com>
7492
7493 * config/mips/mips.c (mips_symbolic_address_p): Delete.
7494 (mips_symbol_insns_1): New function, split out from...
7495 (mips_symbol_insns): ...here. Take a mode argument. Treat loads
7496 and stores separately from load addresses.
7497 (mips_classify_address): Replace uses of mips_symbolic_address_p
7498 with uses of mips_symbol_insns.
7499 (mips_address_insns): Update calls to mips_symbol_insns.
7500 (mips_const_insns): Likewise.
7501 (mips_legitimize_address): Likewise.
7502
7503 2007-08-08 Richard Sandiford <richard@codesourcery.com>
7504
7505 * config/mips/mips-protos.h (SYMBOL_FORCE_TO_MEM): New symbol type.
7506 * config/mips/mips.c (mips_classify_symbol): Skip TARGET_ABICALLS
7507 block for locally-binding symbols if TARGET_ABSOLUTE_ABICALLS.
7508 Return SYMBOL_FORCE_TO_MEM instead of SYMBOL_ABSOLUTE for
7509 non-call contexts if TARGET_MIPS16.
7510 (mips_symbolic_constant_p): Handle SYMBOL_FORCE_TO_MEM.
7511 (mips_symbolic_address_p): Likewise. Remove special TARGET_MIPS16
7512 code for SYMBOL_ABSOLUTE.
7513 (mips_symbol_insns): Likewise.
7514
7515 2007-08-08 Richard Sandiford <richard@codesourcery.com>
7516
7517 * config/mips/mips-protos.h (mips_symbol_context): New enumeration.
7518 * config/mips/mips.c (mips_classify_symbol): Take a context argument.
7519 (mips_symbolic_constant_p): Likewise. Update the call to
7520 mips_classify_symbol.
7521 (mips_classify_address): Update the calls to mips_symbolic_constant_p.
7522 (mips_const_insns): Likewise. Update the call to mips_classify_symbol.
7523 (mips_legitimize_address): Update the call to mips_symbolic_constant_p.
7524 (print_operand_reloc): Add a context argument. Update the call to
7525 mips_symbolic_constant_p.
7526 (print_operand): Update the calls to print_operand_reloc.
7527 (print_operand_address): Use print_operand_reloc rather than
7528 print_operand.
7529 (mips_rewrite_small_data_p): Add a context argument. Update the call
7530 to mips_symbolic_constant_p.
7531 (mips_small_data_pattern_1): Make DATA the containing mem.
7532 Update the call to mips_rewrite_small_data_p.
7533 (mips_rewrite_small_data_1): Likewise.
7534 (mips_use_anchors_for_symbol_p): Update the call to
7535 mips_symbolic_constant_p.
7536 * config/mips/predicates.md (const_call_insn_operand): Likewise.
7537 (splittable_symbolic_operand): Likewise.
7538 (move_operand): Likewise.
7539 (absolute_symbolic_operand): Likewise.
7540 (got_disp_operand): Likewise.
7541 (got_page_ofst_operand): Likewise.
7542
7543 2007-08-08 Richard Sandiford <richard@codesourcery.com>
7544
7545 * config/mips/mips-protos.h (SYMBOL_GENERAL): Rename to...
7546 (SYMBOL_ABSOLUTE): ...this.
7547 (SYMBOL_SMALL_DATA): Rename to...
7548 (SYMBOL_GP_RELATIVE): ...this.
7549 (SYMBOL_CONSTANT_POOL): Rename to...
7550 (SYMBOL_PC_RELATIVE): ...this.
7551 * config/mips/mips.c (mips_classify_symbol, mips_symbolic_constant_p)
7552 (mips_symbolic_address_p, mips_symbol_insns, override_options)
7553 (mips_rewrite_small_data_p, mips_use_anchors_for_symbol_p): Update
7554 after above changes.
7555 * config/mips/predicates.md (const_call_insn_operand): Likewise.
7556 (general_symbolic_operand): Rename to...
7557 (absolute_symbolic_operand): ...this.
7558 * config/mips/mips.md: Update after above changes.
7559
7560 2007-08-08 Vladimir Yanovsky <yanov@il.ibm.com>
7561 Revital Eres <eres@il.ibm.com>
7562
7563 * ddg.c (print_ddg): Add dump information.
7564 * modulo-sched.c (print_node_sched_params): Add parameter and
7565 verbosity.
7566 (calculate_maxii): Remove function.
7567 (undo_generate_reg_moves): Likewise.
7568 (undo_permute_partial_schedule): Likewise.
7569 (kernel_number_of_cycles): Likewise.
7570 (MAXII_FACTOR): New definition to calculate the upper bound of II.
7571 (sms_schedule): Use it. Remove profitability checks.
7572 (sms_schedule_by_order): Fix order of nodes within the cycle.
7573
7574 2007-08-08 Samuel Thibault <samuel.thibault@ens-lyon.org>
7575
7576 * config/i386/gnu.h (STARTFILE_SPEC): Use gcrt0.o in profile mode, add
7577 -profile option, add pie support.
7578 (ENDFILE_SPEC): New spec.
7579 * config/gnu.h (LIB_SPEC): Add -profile option.
7580
7581 2007-08-08 Samuel Thibault <samuel.thibault@ens-lyon.org>
7582
7583 * config/i386/gnu.h (CPP_SPEC): Add -pthread option.
7584 * config/gnu.h (LIB_SPEC): Likewise.
7585
7586 2007-08-07 Yaz Saito <saito@google.com>
7587 Ian Lance Taylor <iant@google.com>
7588
7589 * common.opt (finstrument-functions-exclude-function-list): New
7590 option.
7591 (finstrument-functions-exclude-file-list): New option.
7592 * opts.c (char_p): Define and DEF_VEC.
7593 (flag_instrument_functions_exclude_functions): New static
7594 variable.
7595 (flag_instrument_functions_exclude_files): New static variable.
7596 (add_instrument_functions_exclude_list): New static function.
7597 (flag_instrument_functions_exclude_p): New function.
7598 (common_handle_option): Handle new options.
7599 * flags.h (flag_instrument_functions_exclude_p): Declare.
7600 * gimplify.c (gimplify_function_tree): Call
7601 flag_instrument_functions_exclude_p.
7602 * doc/invoke.texi (Option Summary): Mention new options.
7603 (Code Gen Options): Document new options.
7604
7605 2007-08-07 Ian Lance Taylor <iant@google.com>
7606
7607 PR rtl-optimization/32776
7608 * lower-subreg.c (resolve_clobber): Call resolve_reg_notes.
7609 (resolve_use): Likewise.
7610 (decompose_multiword_subregs): Remove "changed" local variable.
7611
7612 2007-08-07 Carlos O'Donell <carlos@codesourcery.com>
7613
7614 * configure.ac: Define HAVE_GNU_AS if $gas_flag is yes.
7615 * configure: Regenerate.
7616 * config.in: Regenerate.
7617 * gcc.c [HAVE_GNU_AS]: Add "%{v} %{w:-W} %{I*} " to asm_options
7618 spec string.
7619
7620 2007-08-07 Ian Lance Taylor <iant@google.com>
7621
7622 * lower-subreg.c (resolve_clobber): If the clobber has a LIBCALL
7623 note, just delete the insn.
7624
7625 2007-08-07 Andreas Schwab <schwab@suse.de>
7626
7627 PR bootstrap/32973
7628 * gengtype-lex.l: Ignore backslash/newline pair while scanning a
7629 struct definition.
7630
7631 2007-08-07 Andreas Krebbel <krebbel1@de.ibm.com>
7632
7633 * lower-subreg.c (resolve_subreg_use): Remove assertion.
7634 (find_decomposable_shift_zext, resolve_shift_zext): New functions.
7635 (decompose_multiword_subregs): Use the functions above to decompose
7636 multiword shifts and zero-extends.
7637
7638 2007-08-07 Rask Ingemann Lambertsen <rask@sygehus.dk>
7639
7640 * doc/sourcebuild.texi (Test Directives): Fix "compile" and
7641 "assemble" descriptions which were swapped.
7642
7643 2007-08-06 Chao-ying Fu <fu@mips.com>
7644
7645 * fixed-value.h: New file.
7646 * fixed-value.c: New file.
7647 * Makefile.in (OBJS-common): Add fixed-value.o.
7648 (fixed-value.o): New rule.
7649 (GTFILES): Add fixed-value.h.
7650 * double-int.c (double_int_scmp): We should use unsigned HOST_WIDE_INT
7651 to compare a.low and b.low.
7652 * gengtype.c (main): Handle FIXED_VALUE_TYPE type as scalar typedef.
7653
7654 2007-08-06 H.J. Lu <hongjiu.lu@intel.com>
7655 Daniel Jacobowitz <dan@codesourcery.com>
7656
7657 PR target/31868
7658 * config.gcc (x86_64-*-freebsd*): Add i386/t-crtstuff to
7659 tmake_file.
7660 (x86_64-*-netbsd*): Likewise.
7661 (x86_64-*-linux*): Likewise.
7662 (x86_64-*-kfreebsd*-gnu): Likewise.
7663 (x86_64-*-knetbsd*-gnu): Likewise.
7664 (i[34567]86-*-solaris2.1[0-9]*): Likewise.
7665
7666 * config/i386/t-linux64 (CRTSTUFF_T_CFLAGS): Removed.
7667
7668 * config/i386/t-crtstuff (CRTSTUFF_T_CFLAGS): Update comments.
7669 Add -fno-asynchronous-unwind-tables.
7670
7671 * config/t-freebsd (CRTSTUFF_T_CFLAGS_S): Add $(CRTSTUFF_T_CFLAGS).
7672 * config/t-libc-ok (CRTSTUFF_T_CFLAGS_S): Likewise.
7673 * config/t-lynx (CRTSTUFF_T_CFLAGS_S): Likewise.
7674 * config/t-netbsd (CRTSTUFF_T_CFLAGS_S): Likewise.
7675 * config/t-svr4 (CRTSTUFF_T_CFLAGS_S): Likewise.
7676
7677 2007-08-06 Steve Ellcey <sje@cup.hp.com>
7678
7679 * config/ia64/ia64.c (ia64_c_mode_for_suffix): New.
7680 (TARGET_C_MODE_FOR_SUFFIX): New.
7681
7682 2007-08-06 Steve Ellcey <sje@cup.hp.com>
7683
7684 * config/ia64/div.md (m2subrf4_cond): Change 'g' to 'G'.
7685
7686 2007-08-06 Steve Ellcey <sje@cup.hp.com>
7687
7688 * config/ia64/ia64.h (MODES_TIEABLE_P): Fix typo.
7689
7690 2007-08-06 H.J. Lu <hongjiu.lu@intel.com>
7691
7692 * config/i386/i386.md: Check TARGET_ macros and optimize_size
7693 before checking function returns in conditional expressions.
7694
7695 2007-08-06 Alfred Minarik <a.minarik@aon.at>
7696
7697 PR pch/13676
7698 * doc/invoke.texi: Add .hp, .hxx, .hpp, .h, .HPP, .tcc as c++ header.
7699
7700 2008-08-05 Andrew Pinski <andrew_pinski@playstation.sony.com>
7701
7702 PR middle-end/32988
7703 * tree.c (build2_stat): Instead of checking for INTEGER_TYPE, check
7704 for INTEGRAL_TYPE_P.
7705
7706 2008-08-05 Paolo Bonzini <bonzini@gnu.org>
7707
7708 * configure.ac: Remove --enable-checking=df from default settings.
7709 * tree-pass.h (TODO_df_verify): New. Shift TODO_mark_first_instance.
7710 * df-core.c (df_finish_pass) [ENABLE_CHECKING]: Schedule verification
7711 if the parameter is true.
7712 (df_analyze) [!ENABLE_DF_CHECKING]: Also do verification if the
7713 DF_VERIFY_SCHEDULED flag is true.
7714 * df.h (enum df_changeable_flags): Add DF_VERIFY_SCHEDULED.
7715 (df_finish_pass): Adjust prototype.
7716 * passes.c (execute_todo): Schedule verification if TODO_df_verify is
7717 true.
7718
7719 * see.c (pass_see): Add TODO_df_verify.
7720 * loop-init.c (pass_rtl_move_loop_invariants): Add TODO_df_verify.
7721 * global.c (rest_of_handle_global_alloc): Schedule verification
7722 after the pass.
7723 * local-alloc.c (rest_of_handle_local_alloc): Schedule verification
7724 before the pass.
7725 * function.c (pass_thread_prologue_and_epilogue): Add TODO_df_verify.
7726 * gcse.c (rest_of_handle_gcse): Adjust call to df_finish_pass.
7727 * loop-iv.c (iv_analysis_done): Schedule verification after the pass.
7728
7729 * config/sh/sh.c (sh_output_mi_thunk): Remove dead code.
7730 * config/ia64/ia64.c (ia64_reorg): Adjust call to df_finish_pass.
7731 * config/bfin/bfin.c (bfin_reorg): Adjust call to df_finish_pass.
7732
7733 2007-08-05 Vladimir Yanovsky <yanov@il.ibm.com>
7734 Revital Eres <eres@il.ibm.com>
7735
7736 * doc/invoke.texi (-fmodulo-sched-allow-regmoves): Document new
7737 flag.
7738 * ddg.c (create_ddg_dependence): Rename to...
7739 (create_ddg_dep_from_intra_loop_link): This. Do not check
7740 for interloop edges. Do not create anti dependence edge when
7741 a true dependence edge exists in the opposite direction and
7742 -fmodulo-sched-allow-regmoves is set.
7743 (build_intra_loop_deps): Call create_ddg_dep_from_intra_loop_link.
7744 (add_cross_iteration_register_deps): Create anti dependence edge
7745 when -fno-modulo-sched-allow-regmoves is set.
7746 * common.opt (-fmodulo-sched-allow-regmoves): New flag.
7747
7748 2007-08-04 Richard Sandiford <richard@codesourcery.com>
7749
7750 * config/arm/arm.md (movsi): Add braces.
7751
7752 2007-08-04 Andrew Pinski <andrew_pinski@playstation.sony.com>
7753
7754 PR middle-end/32780
7755 * fold-const.c (fold_binary <case MINUS_EXPR>): Fix the type of
7756 operands for the folding of "A - (A & B)" into "~B & A"; cast them
7757 to type.
7758
7759 2007-08-03 Zdenek Dvorak <ook@ucw.cz>
7760
7761 * tree-ssa-threadupdate.c (thread_through_all_blocks): Use loops'
7762 state accessor functions.
7763 * cfgloopmanip.c (remove_path, create_preheaders,
7764 force_single_succ_latches, fix_loop_structure): Ditto.
7765 * tree-ssa-loop-manip.c (rewrite_into_loop_closed_ssa,
7766 tree_duplicate_loop_to_header_edge): Ditto.
7767 * cfgloopanal.c (mark_irreducible_loops): Ditto.
7768 * loop-init.c (loop_optimizer_init, loop_optimizer_finalize):
7769 Ditto.
7770 * tree-cfgcleanup.c (cleanup_tree_cfg_noloop, repair_loop_structures,
7771 cleanup_tree_cfg): Ditto.
7772 * tree-cfg.c (tree_merge_blocks): Ditto.
7773 * cfgloop.c (rescan_loop_exit, record_loop_exits,
7774 release_recorded_exits, get_loop_exit_edges, verify_loop_structure,
7775 loop_preheader_edge, single_exit): Ditto.
7776 (flow_loops_find): Do not clear loops->state.
7777 * cfgloop.h (loops_state_satisfies_p, loops_state_set,
7778 loops_state_clear): New functions.
7779
7780 2007-08-03 Andrew Pinski <andrew_pinski@playstation.sony.com>
7781
7782 PR middle-end/32399
7783 * tree-ssa-address.c (add_to_parts): Use POINTER_PLUS_EXPR
7784 when adding to the base and convert ELT to sizetype instead of type.
7785
7786 2007-08-03 Andrew Pinski <andrew_pinski@playstation.sony.com>
7787
7788 PR middle-end/32304
7789 * ipa-reference.c (has_proper_scope_for_analysis): Return false when
7790 the decl's type has TYPE_NEEDS_CONSTRUCTING set.
7791
7792 2007-08-03 Andrew Pinski <andrew_pinski@playstation.sony.com>
7793
7794 PR middle-end/32935
7795 * fold-convert.c (fold_negate_expr <NOP_EXPR>): Convert back to the
7796 correct type the negate expression.
7797
7798 2007-08-03 Jan Hubicka <jh@suse.cz>
7799
7800 * i386.c (setup_incoming_varargs_64): Tolerate 64bit preferred
7801 stack boundary.
7802
7803 2007-08-03 David Edelsohn <edelsohn@gnu.org>
7804
7805 * config/rs6000/rs6000.c (struct processor_cost): Change
7806 l1_cache_lines to l1_cache_size. Add l2_cache_size.
7807 (*_cost): Convert l1 cache information to kilobytes. Add l2 cache
7808 information.
7809 (rios1_costs, rios2_cost): Correct cache line size.
7810 (rs6000_override_options): Set l2-cache-size parameter.
7811
7812 2007-08-03 Andrew Pinski <andrew_pinski@playstation.sony.com>
7813 Diego Novillo <dnovillo@google.com>
7814
7815 PR 31521
7816 * tree-vrp.c (simplify_div_or_mod_using_ranges): Also simplify
7817 if the range includes 0.
7818
7819 2007-08-03 Ben Elliston <bje@au.ibm.com>
7820
7821 * config/spu/spu.md (dftsv, dftsv_celledp): Attach the appropriate
7822 mode to unspec expressions to silence a warning from the generator
7823 programs.
7824
7825 2007-08-02 Steve Ellcey <sje@cup.hp.com>
7826
7827 * config/ia64/constraints.md ("U"): Make constraint vector only.
7828
7829 2007-08-02 Nathan Froyd <froydnj@codesourcery.com>
7830
7831 PR middle-end/25446
7832 * c-objc-common.c (c_cannot_inline_tree_fn): Check for an
7833 always_inline attribute on the function decl.
7834
7835 2007-08-02 Nathan Froyd <froydnj@codesourcery.com>
7836
7837 PR middle-end/25445
7838 * varasm.c (default_binds_local_p_1): Consult flag_whole_program
7839 if we are compiling with -fPIC.
7840
7841 2007-08-02 Sandra Loosemore <sandra@codesourcery.com>
7842 Nigel Stephens <nigel@mips.com>
7843
7844 * longlong.h [__mips__] (count_leading_zeros, COUNT_LEADING_ZEROS_0):
7845 Define for MIPS32 and MIPS64.
7846
7847 2007-08-02 Nick Clifton <nickc@redhat.com>
7848
7849 * config/host-hpux.c: Change copyright header to refer to version
7850 3 of the GNU General Public License and to point readers at the
7851 COPYING3 file and the FSF's license web page.
7852 * config/alpha/predicates.md, config/alpha/vms-ld.c,
7853 config/alpha/linux.h, config/alpha/alpha.opt,
7854 config/alpha/linux-elf.h, config/alpha/vms.h, config/alpha/elf.h,
7855 config/alpha/vms-unwind.h, config/alpha/ev4.md,
7856 config/alpha/ev6.md, config/alpha/alpha.c, config/alpha/vms-cc.c,
7857 config/alpha/alpha.h, config/alpha/sync.md,
7858 config/alpha/openbsd.h, config/alpha/alpha.md,
7859 config/alpha/alpha-modes.def, config/alpha/ev5.md,
7860 config/alpha/alpha-protos.h, config/alpha/freebsd.h,
7861 config/alpha/osf5.h, config/alpha/netbsd.h, config/alpha/vms64.h,
7862 config/alpha/constraints.md, config/alpha/osf.h,
7863 config/alpha/xm-vms.h, config/alpha/unicosmk.h, config/linux.h,
7864 config/frv/predicates.md, config/frv/frv.h, config/frv/linux.h,
7865 config/frv/frv.md, config/frv/frv.opt, config/frv/frv-modes.def,
7866 config/frv/frv-asm.h, config/frv/frv-protos.h,
7867 config/frv/frv-abi.h, config/frv/frv.c, config/s390/tpf.h,
7868 config/s390/s390.c, config/s390/predicates.md, config/s390/s390.h,
7869 config/s390/linux.h, config/s390/tpf.md, config/s390/tpf.opt,
7870 config/s390/2064.md, config/s390/2084.md, config/s390/s390.md,
7871 config/s390/s390.opt, config/s390/s390-modes.def,
7872 config/s390/fixdfdi.h, config/s390/constraints.md,
7873 config/s390/s390-protos.h, config/s390/s390x.h, config/elfos.h,
7874 config/dbxcoff.h, config/m32c/predicates.md, config/m32c/cond.md,
7875 config/m32c/m32c.c, config/m32c/minmax.md, config/m32c/blkmov.md,
7876 config/m32c/m32c-pragma.c, config/m32c/m32c.h,
7877 config/m32c/prologue.md, config/m32c/m32c.abi,
7878 config/m32c/muldiv.md, config/m32c/bitops.md, config/m32c/mov.md,
7879 config/m32c/addsub.md, config/m32c/m32c.md, config/m32c/m32c.opt,
7880 config/m32c/t-m32c, config/m32c/m32c-modes.def,
7881 config/m32c/jump.md, config/m32c/shift.md,
7882 config/m32c/m32c-protos.h, config/libgloss.h,
7883 config/spu/spu-protos.h, config/spu/predicates.md,
7884 config/spu/spu-builtins.h, config/spu/spu.c,
7885 config/spu/spu-builtins.def, config/spu/spu-builtins.md,
7886 config/spu/spu.h, config/spu/spu-elf.h, config/spu/constraints.md,
7887 config/spu/spu.md, config/spu/spu-c.c, config/spu/spu.opt,
7888 config/spu/spu-modes.def, config/spu/t-spu-elf, config/interix.h,
7889 config/sparc/hypersparc.md, config/sparc/predicates.md,
7890 config/sparc/linux.h, config/sparc/sp64-elf.h,
7891 config/sparc/supersparc.md, config/sparc/cypress.md,
7892 config/sparc/openbsd1-64.h, config/sparc/openbsd64.h,
7893 config/sparc/niagara.md, config/sparc/sparc.md,
7894 config/sparc/long-double-switch.opt, config/sparc/ultra3.md,
7895 config/sparc/sparc.opt, config/sparc/sync.md,
7896 config/sparc/sp-elf.h, config/sparc/sparc-protos.h,
7897 config/sparc/ultra1_2.md, config/sparc/biarch64.h,
7898 config/sparc/sparc.c, config/sparc/little-endian.opt,
7899 config/sparc/sysv4-only.h, config/sparc/sparc.h,
7900 config/sparc/linux64.h, config/sparc/freebsd.h,
7901 config/sparc/sol2.h, config/sparc/rtemself.h,
7902 config/sparc/netbsd-elf.h, config/sparc/vxworks.h,
7903 config/sparc/sparc-modes.def, config/sparc/sparclet.md,
7904 config/sparc/sysv4.h, config/vx-common.h, config/netbsd-aout.h,
7905 config/flat.h, config/m32r/m32r.md, config/m32r/predicates.md,
7906 config/m32r/little.h, config/m32r/m32r.c, config/m32r/m32r.opt,
7907 config/m32r/linux.h, config/m32r/constraints.md,
7908 config/m32r/m32r.h, config/m32r/m32r-protos.h, config/vxworks.opt,
7909 config/darwin-c.c, config/darwin.opt, config/i386/i386.h,
7910 config/i386/cygming.h, config/i386/linux.h, config/i386/cygwin.h,
7911 config/i386/i386.md, config/i386/netware-crt0.c,
7912 config/i386/sco5.h, config/i386/mmx.md, config/i386/vx-common.h,
7913 config/i386/kaos-i386.h, config/i386/winnt-stubs.c,
7914 config/i386/netbsd64.h, config/i386/djgpp.h, config/i386/gas.h,
7915 config/i386/sol2.h, config/i386/constraints.md,
7916 config/i386/netware-libgcc.c, config/i386/sysv5.h,
7917 config/i386/predicates.md, config/i386/geode.md,
7918 config/i386/x86-64.h, config/i386/kfreebsd-gnu.h,
7919 config/i386/freebsd64.h, config/i386/vxworksae.h,
7920 config/i386/pentium.md, config/i386/lynx.h, config/i386/i386elf.h,
7921 config/i386/rtemself.h, config/i386/netbsd-elf.h,
7922 config/i386/ppro.md, config/i386/k6.md, config/i386/netware.c,
7923 config/i386/netware.h, config/i386/i386-modes.def,
7924 config/i386/sysv4-cpp.h, config/i386/i386-interix.h,
7925 config/i386/cygwin1.c, config/i386/djgpp.opt, config/i386/uwin.h,
7926 config/i386/unix.h, config/i386/ptx4-i.h, config/i386/xm-djgpp.h,
7927 config/i386/att.h, config/i386/winnt.c, config/i386/beos-elf.h,
7928 config/i386/sol2-10.h, config/i386/darwin64.h, config/i386/sse.md,
7929 config/i386/i386.opt, config/i386/bsd.h, config/i386/cygming.opt,
7930 config/i386/xm-mingw32.h, config/i386/linux64.h,
7931 config/i386/openbsdelf.h, config/i386/xm-cygwin.h,
7932 config/i386/sco5.opt, config/i386/darwin.h, config/i386/mingw32.h,
7933 config/i386/winnt-cxx.c, config/i386/i386-interix3.h,
7934 config/i386/nwld.c, config/i386/nwld.h, config/i386/host-cygwin.c,
7935 config/i386/cygwin2.c, config/i386/i386-protos.h,
7936 config/i386/sync.md, config/i386/openbsd.h,
7937 config/i386/host-mingw32.c, config/i386/i386-aout.h,
7938 config/i386/nto.h, config/i386/biarch64.h,
7939 config/i386/i386-coff.h, config/i386/freebsd.h,
7940 config/i386/driver-i386.c, config/i386/knetbsd-gnu.h,
7941 config/i386/host-i386-darwin.c, config/i386/vxworks.h,
7942 config/i386/crtdll.h, config/i386/i386.c, config/i386/sysv4.h,
7943 config/darwin-protos.h, config/linux.opt, config/sol2.c,
7944 config/sol2.h, config/sh/symbian.c, config/sh/sh-protos.h,
7945 config/sh/linux.h, config/sh/elf.h, config/sh/superh.h,
7946 config/sh/sh4.md, config/sh/coff.h, config/sh/newlib.h,
7947 config/sh/embed-elf.h, config/sh/symbian-pre.h, config/sh/rtems.h,
7948 config/sh/kaos-sh.h, config/sh/sh4a.md, config/sh/constraints.md,
7949 config/sh/sh64.h, config/sh/sh.opt, config/sh/symbian-post.h,
7950 config/sh/sh-c.c, config/sh/predicates.md, config/sh/sh.c,
7951 config/sh/sh.h, config/sh/shmedia.md, config/sh/sh-modes.def,
7952 config/sh/little.h, config/sh/sh1.md, config/sh/sh4-300.md,
7953 config/sh/superh64.h, config/sh/rtemself.h,
7954 config/sh/netbsd-elf.h, config/sh/sh.md, config/sh/vxworks.h,
7955 config/usegas.h, config/svr3.h, config/pdp11/pdp11-protos.h,
7956 config/pdp11/2bsd.h, config/pdp11/pdp11.md, config/pdp11/pdp11.c,
7957 config/pdp11/pdp11.opt, config/pdp11/pdp11-modes.def,
7958 config/pdp11/pdp11.h, config/avr/rtems.h, config/avr/avr-protos.h,
7959 config/avr/predicates.md, config/avr/constraints.md,
7960 config/avr/avr.md, config/avr/avr.c, config/avr/avr.opt,
7961 config/avr/avr.h, config/sol2-protos.h, config/dbxelf.h,
7962 config/lynx.opt, config/crx/crx.h, config/crx/crx-protos.h,
7963 config/crx/crx.md, config/crx/crx.c, config/crx/crx.opt,
7964 config/c4x/c4x-c.c, config/c4x/c4x.c, config/c4x/c4x.opt,
7965 config/c4x/c4x-modes.def, config/c4x/rtems.h,
7966 config/c4x/predicates.md, config/c4x/c4x.h,
7967 config/c4x/c4x-protos.h, config/c4x/c4x.md, config/kfreebsd-gnu.h,
7968 config/xtensa/predicates.md, config/xtensa/xtensa.c,
7969 config/xtensa/linux.h, config/xtensa/xtensa.h,
7970 config/xtensa/elf.h, config/xtensa/xtensa.md,
7971 config/xtensa/xtensa.opt, config/xtensa/constraints.md,
7972 config/xtensa/xtensa-protos.h, config/dbx.h,
7973 config/stormy16/predicates.md, config/stormy16/stormy16.md,
7974 config/stormy16/stormy16.c, config/stormy16/stormy16.opt,
7975 config/stormy16/stormy16.h, config/stormy16/stormy16-protos.h,
7976 config/host-solaris.c, config/fr30/fr30.h,
7977 config/fr30/predicates.md, config/fr30/fr30-protos.h,
7978 config/fr30/fr30.md, config/fr30/fr30.c, config/fr30/fr30.opt,
7979 config/vxworksae.h, config/sol2-c.c, config/lynx.h,
7980 config/m68hc11/m68hc11-protos.h, config/m68hc11/predicates.md,
7981 config/m68hc11/m68hc11.md, config/m68hc11/m68hc11.c,
7982 config/m68hc11/m68hc11.opt, config/m68hc11/m68hc11.h,
7983 config/m68hc11/m68hc12.h, config/openbsd-oldgas.h,
7984 config/host-linux.c, config/interix3.h, config/cris/cris.c,
7985 config/cris/predicates.md, config/cris/linux.h,
7986 config/cris/cris.h, config/cris/aout.h, config/cris/cris.md,
7987 config/cris/linux.opt, config/cris/cris.opt, config/cris/elf.opt,
7988 config/cris/aout.opt, config/cris/cris-protos.h,
7989 config/vxworks-dummy.h, config/netbsd.h, config/netbsd-elf.h,
7990 config/iq2000/iq2000.h, config/iq2000/predicates.md,
7991 config/iq2000/iq2000-protos.h, config/iq2000/iq2000.md,
7992 config/iq2000/iq2000.c, config/iq2000/iq2000.opt,
7993 config/host-darwin.c, config/mt/mt.md, config/mt/mt.c,
7994 config/mt/mt.opt, config/mt/t-mt, config/mt/mt.h,
7995 config/mt/mt-protos.h, config/svr4.h, config/host-darwin.h,
7996 config/chorus.h, config/mn10300/mn10300.c,
7997 config/mn10300/mn10300.opt, config/mn10300/predicates.md,
7998 config/mn10300/mn10300.h, config/mn10300/linux.h,
7999 config/mn10300/constraints.md, config/mn10300/mn10300-protos.h,
8000 config/mn10300/mn10300.md, config/ia64/predicates.md,
8001 config/ia64/itanium1.md, config/ia64/unwind-ia64.h,
8002 config/ia64/ia64-c.c, config/ia64/sync.md, config/ia64/ia64.c,
8003 config/ia64/itanium2.md, config/ia64/ia64.h, config/ia64/vect.md,
8004 config/ia64/freebsd.h, config/ia64/ia64.md,
8005 config/ia64/ia64-modes.def, config/ia64/constraints.md,
8006 config/ia64/hpux.h, config/ia64/ia64-protos.h, config/windiss.h,
8007 config/gofast.h, config/rtems.h, config/sol2-10.h,
8008 config/m68k/predicates.md, config/m68k/m68k.md,
8009 config/m68k/linux.h, config/m68k/m68k-modes.def,
8010 config/m68k/print-sysroot-suffix.sh, config/m68k/m68k-protos.h,
8011 config/m68k/coff.h, config/m68k/m68k-none.h, config/m68k/ieee.opt,
8012 config/m68k/openbsd.h, config/m68k/m68k-aout.h,
8013 config/m68k/m68k.opt, config/m68k/m68020-elf.h,
8014 config/m68k/m68kelf.h, config/m68k/m68k-devices.def,
8015 config/m68k/uclinux-oldabi.h, config/m68k/m68k.c,
8016 config/m68k/constraints.md, config/m68k/rtemself.h,
8017 config/m68k/netbsd-elf.h, config/m68k/m68k.h,
8018 config/m68k/uclinux.h, config/rs6000/power4.md,
8019 config/rs6000/host-darwin.c, config/rs6000/6xx.md,
8020 config/rs6000/linux.h, config/rs6000/eabi.h,
8021 config/rs6000/aix41.opt, config/rs6000/xcoff.h,
8022 config/rs6000/secureplt.h, config/rs6000/linuxspe.h,
8023 config/rs6000/eabialtivec.h, config/rs6000/8540.md,
8024 config/rs6000/darwin8.h, config/rs6000/kaos-ppc.h,
8025 config/rs6000/windiss.h, config/rs6000/603.md,
8026 config/rs6000/aix41.h, config/rs6000/cell.md,
8027 config/rs6000/mpc.md, config/rs6000/aix43.h, config/rs6000/beos.h,
8028 config/rs6000/gnu.h, config/rs6000/rtems.h, config/rs6000/aix.opt,
8029 config/rs6000/darwin.md, config/rs6000/darwin64.h,
8030 config/rs6000/default64.h, config/rs6000/7xx.md,
8031 config/rs6000/darwin.opt, config/rs6000/spe.md,
8032 config/rs6000/rs6000.opt, config/rs6000/rs6000-c.c,
8033 config/rs6000/rios2.md, config/rs6000/linuxaltivec.h,
8034 config/rs6000/7450.md, config/rs6000/linux64.h,
8035 config/rs6000/constraints.md, config/rs6000/440.md,
8036 config/rs6000/darwin.h, config/rs6000/host-ppc64-darwin.c,
8037 config/rs6000/rs6000.c, config/rs6000/aix52.h,
8038 config/rs6000/rs6000.h, config/rs6000/power6.md,
8039 config/rs6000/predicates.md, config/rs6000/altivec.md,
8040 config/rs6000/aix64.opt, config/rs6000/rios1.md,
8041 config/rs6000/rs6000-modes.def, config/rs6000/rs64.md,
8042 config/rs6000/eabisim.h, config/rs6000/sysv4le.h,
8043 config/rs6000/darwin7.h, config/rs6000/dfp.md,
8044 config/rs6000/linux64.opt, config/rs6000/sync.md,
8045 config/rs6000/vxworksae.h, config/rs6000/power5.md,
8046 config/rs6000/lynx.h, config/rs6000/biarch64.h,
8047 config/rs6000/rs6000.md, config/rs6000/sysv4.opt,
8048 config/rs6000/eabispe.h, config/rs6000/e500.h,
8049 config/rs6000/freebsd.h, config/rs6000/rs6000-protos.h,
8050 config/rs6000/netbsd.h, config/rs6000/e500-double.h,
8051 config/rs6000/aix.h, config/rs6000/vxworks.h,
8052 config/rs6000/40x.md, config/rs6000/aix51.h,
8053 config/rs6000/sysv4.h, config/arc/arc-protos.h, config/arc/arc.md,
8054 config/arc/arc.c, config/arc/arc.opt, config/arc/arc-modes.def,
8055 config/arc/arc.h, config/mcore/mcore-elf.h,
8056 config/mcore/mcore-protos.h, config/mcore/predicates.md,
8057 config/mcore/mcore.md, config/mcore/mcore.c,
8058 config/mcore/mcore.opt, config/mcore/mcore.h,
8059 config/mcore/mcore-pe.h, config/darwin.c, config/freebsd-nthr.h,
8060 config/score/predicates.md, config/score/score-version.h,
8061 config/score/score-protos.h, config/score/misc.md,
8062 config/score/elf.h, config/score/score.c, config/score/mac.md,
8063 config/score/score7.md, config/score/score.h,
8064 config/score/score-conv.h, config/score/score-mdaux.c,
8065 config/score/score.md, config/score/score.opt,
8066 config/score/score-modes.def, config/score/score-mdaux.h,
8067 config/score/mul-div.S, config/arm/uclinux-elf.h,
8068 config/arm/semi.h, config/arm/ecos-elf.h, config/arm/arm1020e.md,
8069 config/arm/symbian.h, config/arm/linux-elf.h,
8070 config/arm/arm1026ejs.md, config/arm/arm1136jfs.md,
8071 config/arm/elf.h, config/arm/aout.h, config/arm/arm.c,
8072 config/arm/thumb2.md, config/arm/vec-common.md, config/arm/coff.h,
8073 config/arm/strongarm-pe.h, config/arm/arm.h,
8074 config/arm/cortex-a8-neon.md, config/arm/semiaof.h,
8075 config/arm/cortex-a8.md, config/arm/uclinux-eabi.h,
8076 config/arm/arm-modes.def, config/arm/linux-eabi.h,
8077 config/arm/rtems-elf.h, config/arm/neon-schedgen.ml,
8078 config/arm/arm-cores.def, config/arm/arm-protos.h,
8079 config/arm/vfp.md, config/arm/aof.h, config/arm/linux-gas.h,
8080 config/arm/wince-pe.h, config/arm/neon.md,
8081 config/arm/constraints.md, config/arm/neon.ml,
8082 config/arm/xscale-elf.h, config/arm/strongarm-coff.h,
8083 config/arm/arm.opt, config/arm/arm926ejs.md,
8084 config/arm/predicates.md, config/arm/iwmmxt.md,
8085 config/arm/arm_neon.h, config/arm/unknown-elf.h,
8086 config/arm/kaos-arm.h, config/arm/bpabi.h, config/arm/pe.opt,
8087 config/arm/neon-testgen.ml, config/arm/arm.md,
8088 config/arm/xscale-coff.h, config/arm/pe.c,
8089 config/arm/arm-generic.md, config/arm/pe.h,
8090 config/arm/kaos-strongarm.h, config/arm/freebsd.h,
8091 config/arm/neon-docgen.ml, config/arm/netbsd.h, config/arm/fpa.md,
8092 config/arm/strongarm-elf.h, config/arm/cirrus.md,
8093 config/arm/netbsd-elf.h, config/arm/vxworks.h,
8094 config/arm/neon-gen.ml, config/kaos.h, config/darwin-driver.c,
8095 config/pa/predicates.md, config/pa/pa64-hpux.h,
8096 config/pa/pa-hpux.opt, config/pa/som.h, config/pa/pa-hpux1010.opt,
8097 config/pa/pa-hpux1111.opt, config/pa/pa-pro-end.h,
8098 config/pa/elf.h, config/pa/fptr.c, config/pa/pa64-linux.h,
8099 config/pa/pa.md, config/pa/pa.opt, config/pa/pa-hpux.h,
8100 config/pa/pa-hpux10.h, config/pa/pa-hpux11.h,
8101 config/pa/pa-hpux1010.h, config/pa/pa-protos.h,
8102 config/pa/pa-osf.h, config/pa/pa-hpux1111.h, config/pa/pa-64.h,
8103 config/pa/milli64.S, config/pa/pa.c, config/pa/pa-linux.h,
8104 config/pa/pa.h, config/pa/pa32-linux.h, config/pa/pa64-hpux.opt,
8105 config/pa/pa64-regs.h, config/pa/pa-modes.def,
8106 config/pa/constraints.md, config/darwin9.h, config/mips/4100.md,
8107 config/mips/linux.h, config/mips/elfoabi.h, config/mips/elf.h,
8108 config/mips/sdb.h, config/mips/windiss.h, config/mips/rtems.h,
8109 config/mips/3000.md, config/mips/iris5.h, config/mips/5000.md,
8110 config/mips/7000.md, config/mips/9000.md, config/mips/4600.md,
8111 config/mips/linux64.h, config/mips/elforion.h,
8112 config/mips/constraints.md, config/mips/generic.md,
8113 config/mips/predicates.md, config/mips/4300.md,
8114 config/mips/mips-ps-3d.md, config/mips/iris.h, config/mips/24k.md,
8115 config/mips/mips.md, config/mips/mips.opt, config/mips/4k.md,
8116 config/mips/5k.md, config/mips/vr4120-div.S,
8117 config/mips/openbsd.h, config/mips/iris6.h, config/mips/4000.md,
8118 config/mips/mips-protos.h, config/mips/6000.md,
8119 config/mips/mips.c, config/mips/mips.h, config/mips/r3900.h,
8120 config/mips/74k.md, config/mips/netbsd.h, config/mips/vxworks.h,
8121 config/mips/mips-modes.def, config/mips/vr.h,
8122 config/soft-fp/t-softfp, config/openbsd.h, config/ptx4.h,
8123 config/freebsd-spec.h, config/vax/vax.c, config/vax/openbsd.h,
8124 config/vax/vax.h, config/vax/elf.h, config/vax/vax.md,
8125 config/vax/bsd.h, config/vax/vax.opt, config/vax/vax-modes.def,
8126 config/vax/openbsd1.h, config/vax/netbsd.h,
8127 config/vax/vax-protos.h, config/vax/netbsd-elf.h,
8128 config/vax/vaxv.h, config/vax/ultrix.h, config/freebsd.h,
8129 config/h8300/rtems.h, config/h8300/predicates.md,
8130 config/h8300/h8300.c, config/h8300/h8300.h, config/h8300/elf.h,
8131 config/h8300/h8300.md, config/h8300/h8300.opt,
8132 config/h8300/coff.h, config/h8300/h8300-protos.h,
8133 config/v850/v850.md, config/v850/predicates.md,
8134 config/v850/v850-c.c, config/v850/v850.c, config/v850/v850.opt,
8135 config/v850/v850.h, config/v850/v850-protos.h, config/vxworks.c,
8136 config/knetbsd-gnu.h, config/sol2-6.h, config/vxworks.h,
8137 config/mmix/mmix.h, config/mmix/predicates.md,
8138 config/mmix/mmix-protos.h, config/mmix/mmix.md,
8139 config/mmix/mmix.c, config/mmix/mmix.opt,
8140 config/mmix/mmix-modes.def, config/bfin/bfin.opt,
8141 config/bfin/rtems.h, config/bfin/bfin-modes.def,
8142 config/bfin/predicates.md, config/bfin/bfin-protos.h,
8143 config/bfin/bfin.c, config/bfin/bfin.h, config/bfin/bfin.md:
8144 Likewise.
8145
8146 2007-08-02 Richard Sandiford <richard@codesourcery.com>
8147
8148 * emit-rtl.c (reset_used_decls): Rename to...
8149 (set_used_decls): ...this. Set the used flag rather than clearing it.
8150 (unshare_all_rtl_again): Update accordingly. Set flags on argument
8151 DECL_RTLs rather than resetting them.
8152
8153 2007-08-02 Andreas Krebbel <krebbel1@de.ibm.com>
8154
8155 * config/s390/s390.md ("*xordi3_cconly"): Change xr to xg.
8156
8157 2007-08-01 Sandra Loosemore <sandra@codesourcery.com>
8158
8159 * reload.c (find_reloads_address_part): Pass correct MEMREFLOC
8160 argument to find_reloads_address.
8161
8162 2007-08-01 Daniel Jacobowitz <dan@codesourcery.com>
8163
8164 PR tree-optimization/32919
8165 * tree-ssa-sccvn.c (visit_phi): Do not visit abnormal PHIs.
8166 * tree-ssa-coalesce.c (ssa_conflicts_dump): New.
8167 (coalesce_ssa_name): Call it.
8168
8169 2007-08-01 Sandra Loosemore <sandra@codesourcery.com>
8170 David Ung <davidu@mips.com>
8171
8172 * config/mips/mips16.S (__mips16_unordsf2, __mips16_floatunsisf): New.
8173 (__mips16_unorddf2, __mips16_floatunsidf): New.
8174 * config/mips/mips.c (mips_init_libfuncs): Add optab entries for
8175 above functions.
8176 * config/mips/t-libgcc-mips16 (LIB1ASMFUNCS): Add new functions.
8177
8178 2007-08-01 Zdenek Dvorak <ook@ucw.cz>
8179
8180 * tree-pretty-print.c (dump_generic_node): Dump OMP_SECTIONS_SWITCH.
8181 Display new operands of OMP_SECTIONS and OMP_CONTINUE.
8182 * tree.h (OMP_SECTIONS_CONTROL): New macro.
8183 (OMP_DIRECTIVE_P): Add OMP_SECTIONS_SWITCH.
8184 * omp-low.c (get_ws_args_for, determine_parallel_type,
8185 expand_omp_for_generic, expand_omp_for_static_nochunk,
8186 expand_omp_for_static_chunk, expand_omp_for, expand_omp_sections):
8187 Work with more precise CFG.
8188 (build_omp_regions_1): Handle OMP_SECTIONS_SWITCH.
8189 (lower_omp_sections): Emit OMP_SECTIONS_SWITCH. Add arguments to
8190 OMP_CONTINUE.
8191 * tree-gimple.c (is_gimple_stmt): Handle OMP_SECTIONS_SWITCH.
8192 * gimple-low.c (lower_stmt): Ditto.
8193 * tree-inline.c (estimate_num_insns_1): Ditto.
8194 * tree.def (OMP_SECTIONS, OMP_CONTINUE): Added new operands.
8195 (OMP_SECTIONS_SWITCH): New.
8196 * tree-cfgcleanup.c (cleanup_omp_return): New.
8197 (cleanup_tree_cfg_bb): Call cleanup_omp_return.
8198 * tree-cfg.c (make_edges): Create back edges for OMP_CONTINUE
8199 and exit edge for OMP_FOR. Handle OMP_SECTIONS_SWITCH.
8200 (tree_redirect_edge_and_branch): Handle omp constructs.
8201
8202 * fortran/trans-openmp.c (gfc_trans_omp_sections): Build OMP_SECTIONS
8203 with three arguments.
8204
8205 2007-08-01 Zdenek Dvorak <ook@ucw.cz>
8206
8207 * tree-cfg.c (tree_merge_blocks): Preserve loop exit phi nodes only
8208 in loop closed ssa.
8209
8210 2007-08-01 Zdenek Dvorak <ook@ucw.cz>
8211
8212 * tree-ssa-threadupdate.c (thread_through_all_blocks): Record that
8213 the loop structures may need fixing.
8214 * tree-cfgcleanup.c (cleanup_tree_cfg_noloop, repair_loop_structures):
8215 New functions.
8216 (cleanup_tree_cfg_loop): Removed.
8217 (cleanup_tree_cfg): If loops need fixing, call repair_loop_structures.
8218 * tree-predcom.c (tree_predictive_commoning): Return TODO_cleanup_cfg
8219 instead of running cleanup_tree_cfg_loop.
8220 * cfgloop.h (LOOPS_NEED_FIXUP): New constant.
8221 * tree-flow.h (cleanup_tree_cfg_loop): Declaration removed.
8222 (tree_predictive_commoning): Declaration changed.
8223 * passes.c (execute_function_todo): Do not use cleanup_tree_cfg_loop.
8224
8225 2007-08-01 Zdenek Dvorak <ook@ucw.cz>
8226
8227 * doc/invoke.texi (l1-cache-size): Update documentation.
8228 (l2-cache-size): Document.
8229 * params.h (L2_CACHE_SIZE): New macro.
8230 * tree-ssa-loop-prefetch.c (L1_CACHE_SIZE_BYTES): Reflect
8231 that L1_CACHE_SIZE is in kB now.
8232 (L2_CACHE_SIZE_BYTES): New macro.
8233 (tree_ssa_prefetch_arrays): Show size in kB.
8234 * config/i386/i386.h (struct processor_costs): Add l1_cache_size
8235 and l2_cache_size fields.
8236 * config/i386/driver-i386.c (describe_cache): Detect cache size
8237 in kB.
8238 * config/i386/i386.c (size_cost, i386_cost, i486_cost,pentium_cost,
8239 pentiumpro_cost, geode_cost, k6_cost, athlon_cost, k8_cost,
8240 amdfam10_cost, pentium4_cost, nocona_cost, core2_cost,
8241 generic64_cost, generic32_cost): Add l1_cache_size and l2_cache_size.
8242 (override_options): Set l1-cache-size and l2-cache-size to default
8243 values if not specified otherwise.
8244 * params.def (PARAM_L1_CACHE_SIZE): Change to set in kB.
8245 (PARAM_L2_CACHE_SIZE): New.
8246
8247 2007-08-01 Nigel Stephens <nigel@mips.com>
8248 David Ung <davidu@mips.com>
8249 Thiemo Seufer <ths@mips.com>
8250 Chris Dearman <chris@mips.com>
8251 Richard Sandiford <richard@codesourcery.com>
8252
8253 * config.gcc (mips*-sde-elf*): New stanza.
8254 (mipsisa32-*-elf*, mipsisa32el-*-elf*, mipsisa32r2-*-elf*)
8255 (mipsisa32r2el-*-elf*, mipsisa64-*-elf*, mipsisa64el-*-elf*)
8256 (mipsisa64sb1-*-elf*, mipsisa64sb1el-*-elf*, mips-*-elf*)
8257 (mipsel-*-elf*, mips64-*-elf*, mips64el-*-elf*, mips64orion-*-elf*)
8258 (mips64orionel-*-elf*, mips*-*-rtems*, mips-wrs-windiss)
8259 (mipstx39-*-elf*, mipstx39el-*-elf*): Add mips/t-libgcc-mips16
8260 to tmake_file.
8261 * config/mips/sde.h: New file.
8262 * config/mips/t-libgcc-mips16: Likewise.
8263 * config/mips/t-sde: Likewise.
8264 * config/mips/linux.h (TARGET_OS_CPP_BUILTINS): Remove settings
8265 of _ABIN32, _ABI64, _ABIO32, _MIPS_SIM, _MIPS_SZLONG, _MIPS_SZPTR,
8266 _MIPS_FPSET and _MIPS_SZINT.
8267 * config/mips/iris.h (TARGET_OS_CPP_BUILTINS): Likewise.
8268 * config/mips/elfoabi.h (DRIVER_SELF_SPECS): Remove separate
8269 insertion of a default -mips option. Use MIPS_32BIT_OPTION_SPEC.
8270 * config/mips/t-isa3264 (LIB1ASMSRC, LIB1ASMFUNCS): Delete.
8271 * config/mips/t-r3900 (LIB1ASMSRC, LIB1ASMFUNCS): Likewise.
8272 * config/mips/t-elf (LIB1ASMSRC, LIB1ASMFUNCS): Likewise.
8273 * config/mips/mips.h (TARGET_CPU_CPP_BUITINS): Define _ABIO32,
8274 _ABIN32, _ABI64, _ABIO64, _MIPS_SIM, _MIPS_SZINT, _MIPS_SZLONG,
8275 _MIPS_SZPTR and _MIPS_FPSET.
8276 (MIPS_ISA_LEVEL_SPEC): Inject the default -mips option if no
8277 architecture is specified.
8278 (MIPS_32BIT_OPTION_SPEC): New macro.
8279
8280 2007-07-31 Dan Hipschman <dsh@google.com>
8281
8282 * gcc.c (end_going_arg): New function.
8283 (do_spec_2): Use it.
8284 (do_spec_1): Use it.
8285
8286 2007-07-31 H.J. Lu <hongjiu.lu@intel.com>
8287
8288 * ddg.c (add_cross_iteration_register_deps): Declare bb_info
8289 only if ENABLE_CHECKING is defined.
8290
8291 2007-07-31 Kenneth Zadeck <zadeck@naturalbridge.com>
8292
8293 * df.h (DF_RU, DF_RU_BB_INFO, df_ru_bb_info, df_ru,
8294 df_ru_add_problem, df_ru_get_bb_info): Removed.
8295 (DF_RD, DF_UREC, DF_CHAIN, DF_NOTE): Renumbered.
8296 * df-problems.c (df_ru_problem_data, df_ru_set_bb_info,
8297 df_ru_free_bb_info, df_ru_alloc,
8298 df_ru_bb_local_compute_process_def,
8299 df_ru_bb_local_compute_process_use, df_ru_bb_local_compute,
8300 df_ru_local_compute, df_ru_init_solution, df_ru_confluence_n,
8301 df_ru_transfer_function, df_ru_free, df_ru_start_dump,
8302 df_ru_top_dump, df_ru_bottom_dump, df_problem problem_RU,
8303 df_ru_add_problem): Removed.
8304
8305 2007-07-31 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
8306
8307 PR target/32847
8308 * pa.md (casesi32): Use match_scratch. Revise insn condition.
8309 (casesi32p, casesi64p): Likewise.
8310 (casesi): Adjust for above.
8311
8312 2007-07-31 Richard Sandiford <richard@codesourcery.com>
8313
8314 * mode-switching.c (create_pre_exit): Don't search past calls.
8315
8316 2007-07-31 Sandra Loosemore <sandra@codesourcery.com>
8317
8318 * config/mips/mips.h (ISA_HAS_SYNCI): Add !TARGET_MIPS16 test.
8319
8320 2007-07-31 Revital Eres <eres@il.ibm.com>
8321
8322 * ddg.c (add_deps_for_def): Rename to...
8323 (add_cross_iteration_register_deps): This. Change implementation
8324 to use only reaching def and def-use chains to construct the
8325 inter loop dependencies.
8326 (add_deps_for_use): Remove function.
8327 (build_inter_loop_deps): Call add_cross_iteration_register_deps
8328 function to build the inter loop dependencies.
8329 * modulo-sched.c (sms_schedule): Build only
8330 reaching def and def-use chains for the propose of the ddg
8331 construction.
8332
8333 2007-07-31 Julian Brown <julian@codesourcery.com>
8334
8335 * config/arm/neon.md (vec_set<mode>_internal, vec_setv2di_internal):
8336 New define_insns. Use correct RTL.
8337 (vec_set<mode>): Write as expander.
8338
8339 2007-07-31 Razya Ladelsky <razya@il.ibm.com>
8340
8341 * matrix-reorg.c (analyze_matrix_allocation_site): Avoid referring
8342 to an unallocated space.
8343
8344 2007-07-30 Jan Sjodin <jan.sjodin@amd.com>
8345
8346 * tree-data-ref.c
8347 (split_constant_offset): Enable split_constant_offset to extract
8348 constants from other statements.
8349 * tree-vect-transform.c
8350 (vect_create_addr_base_for_vector_ref): Generate data_ref_base
8351 to a temp var. Force base_offset to be simple.
8352
8353 2007-07-30 Seongbae Park <seongbae.park@gmail.com>
8354
8355 * df-scan.c (df_scan_verify): Remove artificial limit on
8356 the number of blocks for verification.
8357 * df-problems.c (df_lr_bb_local_compute, df_simulate_find_defs,
8358 df_simulate_defs): Avoid unnecessary insn checking for defs.
8359
8360 2007-07-29 Mark Mitchell <mark@codesourcery.com>
8361
8362 * config/m68k/lb1sf68.asm (FUNC): New macro.
8363 (__mulsi3): Use it.
8364 (__udivsi3): Likewise.
8365 (__divsi3): Likewise.
8366 (__umodsi3): Likewise.
8367 (__modsi3): Likewise.
8368 (__subdf3): Likewise.
8369 (__adddf3): Likewise.
8370 (__muldf3): Likewise.
8371 (__divdf3): Likewise.
8372 (__negdf2): Likewise.
8373 (__cmpdf2): Likewise.
8374 (__subsf3): Likewise.
8375 (__addsf3): Likewise.
8376 (__mulsf3): Likewise.
8377 (__divsf3): Likewise.
8378 (__negsf2): Likewise.
8379 (__cmpsf2): Likewise.
8380 (__eqdf2): Likewise.
8381 (__nedf2): Likewise.
8382 (__gtdf2): Likewise.
8383 (__gedf2): Likewise.
8384 (__ltdf2): Likewise.
8385 (__ledf2): Likewise.
8386 (__eqsf2): Likewise.
8387 (__nesf2): Likewise.
8388 (__gtsf2): Likewise.
8389 (__gesf2): Likewise.
8390 (__ltsf2): Likewise.
8391 (__lesf2): Likewise.
8392
8393 2007-07-30 Ollie Wild <aaw@google.com>
8394
8395 * c-ppoutput.c (print_lines_directives_only): New function.
8396 (scan_translation_unit_directives_only): New function.
8397 (preprocess_file): Add call to scan_translation_unit_directives_only.
8398 * c-opts.c (c_common_handle_option): Add OPT_fdirectives_only.
8399 (sanitize_cpp_opts): Add default flag_dump_macros setting for
8400 -fdirectives-only. Add errors for -fdirectives-only conflict with
8401 -Wunused-macros and -traditional.
8402 (finish_options): Add builtin macro initialization for
8403 -fdirectives-only + -fpreprocessed.
8404 * c.opt (fdirectives-only): New.
8405 * doc/cppopts.texi (fdirectives-only): New.
8406
8407 2007-07-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8408
8409 * alias.c (record_set, memory_modified_1): Constify.
8410 * bt-load.c (note_btr_set): Likewise.
8411 * caller-save.c (mark_set_regs, add_stored_regs): Likewise.
8412 * combine.c (set_nonzero_bits_and_sign_copies,
8413 expand_field_assignment, record_dead_and_set_regs_1,
8414 use_crosses_set_p, reg_dead_at_p_1, can_combine_p,
8415 likely_spilled_retval_1): Likewise.
8416 * config/frv/frv.c (frv_registers_update_1, frv_io_check_address,
8417 frv_io_handle_set): Likewise.
8418 * config/mips/mips.c (mips_sim_record_set,
8419 vr4130_true_reg_dependence_p_1): Likewise.
8420 * config/mt/mt.c (insn_dependent_p_1): Likewise.
8421 * config/s390/s390.c (s390_reg_clobbered_rtx): Likewise.
8422 * config/sh/sh.c (flow_dependent_p_1): Likewise.
8423 * cselib.c (cselib_invalidate_rtx_note_stores): Likewise.
8424 * dce.c (mark_nonreg_stores_1, mark_nonreg_stores_2): Likewise.
8425 * ddg.c (mark_mem_store): Likewise.
8426 * df-problems.c (df_urec_mark_reg_change): Likewise.
8427 * function.c (update_epilogue_consts): Likewise.
8428 * gcse.c (record_set_info, record_last_set_info,
8429 mems_conflict_for_gcse_p, canon_list_insert, reg_set_info,
8430 reg_clear_last_set): Likewise.
8431 * global.c (mark_reg_store, mark_reg_clobber, reg_becomes_live):
8432 Likewise.
8433 * jump.c (reversed_comparison_code_parts): Likewise.
8434 * local-alloc.c (validate_equiv_mem_from_store, no_equiv,
8435 reg_is_set): Likewise.
8436 * loop-iv.c (mark_altered): Likewise.
8437 * mode-switching.c (reg_becomes_live): Likewise.
8438 * optabs.c (no_conflict_move_test): Likewise.
8439 * postreload-gcse.c (record_last_set_info, find_mem_conflicts):
8440 Likewise.
8441 * postreload.c (reload_combine_note_store, move2add_note_store):
8442 Likewise.
8443 * regmove.c (flags_set_1): Likewise.
8444 * regrename.c (note_sets, kill_clobbered_value, kill_set_value):
8445 Likewise.
8446 * reload1.c (mark_not_eliminable, forget_old_reloads_1):
8447 Likewise.
8448 * resource.c (update_live_status): Likewise.
8449 * rtl.h (set_of, note_stores): Likewise.
8450 * rtlanal.c (set_of_1, parms_set, struct set_of_data, set_of,
8451 note_stores, parms_set): Likewise.
8452 * sched-rgn.c (sets_likely_spilled_1): Likewise.
8453 * stack-ptr-mod.c (notice_stack_pointer_modification_1):
8454 Likewise.
8455 * var-tracking.c (count_stores, add_stores): Likewise.
8456
8457 2007-07-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8458
8459 * alias.c (mems_in_disjoint_alias_sets_p,
8460 fixed_scalar_and_varying_struct_p, aliases_everything_p,
8461 nonoverlapping_component_refs_p, nonoverlapping_memrefs_p,
8462 write_dependence_p, mems_in_disjoint_alias_sets_p,
8463 read_dependence, true_dependence, canon_true_dependence,
8464 anti_dependence, output_dependence): Constify.
8465 * combine.c (extended_count): Likewise.
8466 * cse.c (cse_rtx_varies_p, hash_rtx, exp_equiv_p): Likewise.
8467 * cselib.c (get_value_hash, references_value_p,
8468 cselib_reg_set_mode, cselib_rtx_varies_p): Likewise.
8469 * cselib.h (cselib_reg_set_mode, references_value_p): Likewise.
8470 * emit-rtl.c (mem_expr_equal_p, active_insn_p): Likewise.
8471 * function.c (contains, prologue_epilogue_contains,
8472 sibcall_epilogue_contains): Likewise.
8473 * jump.c (simplejump_p, condjump_p, condjump_in_parallel_p,
8474 pc_set, any_uncondjump_p, any_condjump_p, onlyjump_p,
8475 only_sets_cc0_p, sets_cc0_p, rtx_renumbered_equal_p, true_regnum,
8476 reg_or_subregno): Likewise.
8477 * recog.c (asm_noperands): Likewise.
8478 * reload1.c (function_invariant_p): Likewise.
8479 * rtl.h (mem_expr_equal_p, active_insn_p, rtx_varies_p,
8480 rtx_addr_varies_p, asm_noperands, exp_equiv_p, hash_rtx,
8481 condjump_p, any_condjump_p, any_uncondjump_p, pc_set,
8482 simplejump_p, onlyjump_p, only_sets_cc0_p, sets_cc0_p,
8483 true_regnum, reg_or_subregno, condjump_in_parallel_p,
8484 extended_count, prologue_epilogue_contains,
8485 sibcall_epilogue_contains, function_invariant_p, true_dependence,
8486 canon_true_dependence, read_dependence, anti_dependence,
8487 output_dependence): Likewise.
8488 * rtlanal.c (rtx_varies_p, rtx_addr_varies_p): Likewise.
8489
8490 2007-07-30 Julian Brown <julian@codesourcery.com>
8491
8492 * config/arm/neon.md (V_ext): New mode attribute.
8493 (neon_vget_lane<mode>): Replace with define_expand.
8494 (neon_vget_lane<mode>_sext_internal)
8495 (neon_vget_lane<mode>_zext_internal): New define_insns for double
8496 and quad precision vectors.
8497 (neon_vget_lanedi): Add bounds check. Remove dead comment.
8498 * config/arm/neon.ml (get_lane): Make 32-bit get-lane intrinsics
8499 have typeless 32-bit result.
8500
8501 2007-07-30 Andrew Pinski <andrew_pinski@playstation.sony.com>
8502
8503 PR tree-opt/32527
8504 * tree-affine.h (aff_tree): The type of rest is sizetype for types
8505 of pointers.
8506 * tree-affine.c (aff_combination_scale): If type is a pointer type,
8507 use sizetype for rest.
8508 (aff_combination_add_elt): Likewise. Don't specialize pointer types.
8509 (aff_combination_convert): Don't convert rest for pointer types.
8510
8511 2007-07-28 Daniel Berlin <dberlin@dberlin.org>
8512
8513 * Makefile.in (tree-ssa-alias.o): Add alloc-pool.h
8514
8515 * tree-ssa-alias.c: Add alloc-pool.h.
8516 (init_alias_info): Free alias_bitmap_obstack.
8517 (delete_alias_info): Call delete_mem_ref_stats.
8518 (get_mem_sym_stats_for): Use alloc_pool.
8519 (init_mem_ref_stats): Do not delete mem_ref_stats here.
8520 (delete_mem_sym_stats): Removed.
8521
8522 2007-07-29 Sebastian Pop <sebpop@gmail.com>
8523
8524 * tree-data-ref.c (add_multivariate_self_dist): Parametric access
8525 functions cannot be represented as classical distance vectors.
8526
8527 2007-07-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8528
8529 * attribs.c (hash_attr, eq_attr, init_attributes): Constify.
8530 * builtins.c (validate_arg, builtin_mathfn_code,
8531 validate_arglist): Likewise.
8532 * calls.c (call_expr_flags): Likewise.
8533 * combine.c (reg_nonzero_bits_for_combine,
8534 reg_num_sign_bit_copies_for_combine, get_last_value,
8535 reg_truncated_to_mode): Likewise.
8536 * emit-rtl.c (subreg_lowpart_p): Likewise.
8537 * expr.c (highest_pow2_factor_for_target,
8538 categorize_ctor_elements_1, categorize_ctor_elements,
8539 count_type_elements, contains_packed_reference,
8540 highest_pow2_factor, highest_pow2_factor_for_target): Likewise.
8541 * fold-const.c (may_negate_without_overflow_p, int_const_binop,
8542 fold_convertible_p, operand_equal_p, tree_swap_operands_p,
8543 native_encode_int, native_encode_real, native_encode_complex,
8544 native_encode_vector, native_encode_expr, native_interpret_int,
8545 native_interpret_real, native_interpret_complex,
8546 native_interpret_vector, native_interpret_expr): Likewise.
8547 * function.c (use_register_for_decl): Likewise.
8548 * gimplify.c (get_name): Likewise.
8549 * langhooks-def.h (lhd_return_null_const_tree): New.
8550 (LANG_HOOKS_GET_CALLEE_FNDECL): Use it.
8551 * langhooks.c (lhd_return_null_const_tree): New.
8552 * langhooks.h (lang_get_callee_fndecl): Constify.
8553 * output.h (constructor_static_from_elts_p): Likewise.
8554 * rtl-factoring.c (gen_symbol_ref_rtx_for_label): Likewise.
8555 * rtl.h (nonzero_bits, num_sign_bit_copies, truncated_to_mode,
8556 subreg_lowpart_p, noop_move_p, struct rtl_hooks): Likewise.
8557 * rtlanal.c (cached_nonzero_bits, nonzero_bits1,
8558 cached_num_sign_bit_copies, num_sign_bit_copies1, noop_move_p,
8559 nonzero_bits, num_sign_bit_copies, truncated_to_mode): Likewise.
8560 * rtlhooks-def.h (reg_nonzero_bits_general,
8561 reg_num_sign_bit_copies_general, reg_truncated_to_mode_general):
8562 Likewise.
8563 * rtlhooks.c (reg_num_sign_bit_copies_general,
8564 reg_nonzero_bits_general, reg_truncated_to_mode_general):
8565 Likewise.
8566 * stmt.c (warn_if_unused_value, is_body_block): Likewise.
8567 * stor-layout.c (mode_for_size_tree): Likewise.
8568 * tree-ssa-loop-im.c (memref_eq): Likewise.
8569 * tree-ssa-loop-ivopts.c (tree_int_cst_sign_bit): Likewise.
8570 * tree.c (contains_placeholder_p, type_list_equal,
8571 simple_cst_equal, get_callee_fndecl, operand_equal_for_phi_arg_p):
8572 Likewise.
8573 * tree.h (tree_int_cst_sign_bit, may_negate_without_overflow_p,
8574 mode_for_size_tree, categorize_ctor_elements, count_type_elements,
8575 contains_placeholder_p, contains_packed_reference,
8576 get_callee_fndecl, operand_equal_for_phi_arg_p,
8577 warn_if_unused_value, is_body_block, native_encode_expr,
8578 native_interpret_expr, fold_convertible_p, operand_equal_p,
8579 int_const_binop, tree_swap_operands_p, builtin_mathfn_code,
8580 validate_arglist, simple_cst_equal, type_list_equal,
8581 use_register_for_decl, call_expr_flags, get_name,
8582 highest_pow2_factor): Likewise.
8583 (const_call_expr_arg_iterator_d,
8584 init_const_call_expr_arg_iterator, next_const_call_expr_arg,
8585 first_const_call_expr_arg, more_const_call_expr_args_p,
8586 FOR_EACH_CONST_CALL_EXPR_ARG): New.
8587 * varasm.c (constructor_static_from_elts_p): Constify.
8588
8589 2007-07-28 Kazu Hirata <kazu@codesourcery.com>
8590
8591 * cfglayout.c, config/arm/arm.c, config/arm/cortex-a8.md,
8592 config/arm/neon-schedgen.ml, config/arm/neon.ml,
8593 config/arm/vec-common.md, config/ia64/div.md, cselib.c,
8594 df-core.c, df.h, dominance.c, optabs.c, opts.c, reg-stack.c,
8595 regstat.c, target.h, tree-ssa-live.c, tree-ssa-pre.c,
8596 tree-vect-transform.c, tree.def: Fix comment typos. Follow
8597 spelling conventions.
8598 * doc/invoke.texi: Follow spelling conventions.
8599
8600 2007-07-29 Vladimir Yanovsky <yanov@il.ibm.com>
8601 Revital Eres <eres@il.ibm.com>
8602
8603 * modulo-sched.c (sms_schedule): Avoid loops which includes
8604 auto-increment instructions.
8605
8606 2007-07-28 Richard Guenther <rguenther@suse.de>
8607
8608 PR middle-end/32920
8609 * fold-const.c (fold_cond_expr_with_comparison): Convert
8610 operand zero of MIN/MAX_EXPR to correct type.
8611
8612 2007-07-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8613
8614 * calls.c (special_function_p, setjmp_call_p, alloca_call_p,
8615 flags_from_decl_or_type): Constify.
8616 * gcc.c (do_spec_1): Likewise.
8617 * print-tree.c (dump_addr, print_node_brief): Likewise.
8618 * tree-cfg.c (stmt_starts_bb_p, is_ctrl_stmt, computed_goto_p,
8619 simple_goto_p, tree_can_make_abnormal_goto, stmt_starts_bb_p,
8620 tree_purge_all_dead_eh_edges): Likewise.
8621 * tree-flow.h (is_ctrl_stmt, computed_goto_p, simple_goto_p,
8622 tree_can_make_abnormal_goto, tree_purge_all_dead_eh_edges):
8623 Likewise.
8624 * tree.c (expr_location, expr_has_location, expr_locus,
8625 expr_filename, expr_lineno, get_inner_array_type,
8626 fields_compatible_p): Likewise.
8627 * tree.h (get_inner_array_type, fields_compatible_p,
8628 expr_location, expr_has_location, expr_locus, expr_filename,
8629 expr_lineno, dump_addr, print_node_brief, flags_from_decl_or_type,
8630 setjmp_call_p, alloca_call_p): Likewise.
8631
8632 2007-07-28 Daniel Berlin <dberlin@dberlin.org>
8633
8634 * timevar.def: Add TV_CALL_CLOBBER, TV_FLOW_SENSITIVE,
8635 TV_FLOW_INSENSITIVE.
8636
8637 * tree-ssa-alias.c (compute_call_clobbered): Push/pop
8638 TV_CALL_CLOBBER.
8639 (compute_flow_sensitive_aliasing): Ditto for TV_FLOW_SENSITIVE.
8640 (compute_flow_insensitive_aliasing): Ditto for
8641 TV_FLOW_INSENSITIVE.
8642
8643 2007-07-27 Jan Hubicka <jh@suse.cz>
8644
8645 * config/i386/i386.c (register_move_cost): Remove accidentally
8646 comitted #if 0 block.
8647
8648 * attribs.c: Include hashtab.h
8649 (attribute_hash): New.
8650 (substring): New structure.
8651 (extract_attribute_substring, substring_hash, hash_attr, eq_attr):
8652 New function.
8653 (init_attributes): Initialize attribute hash.
8654 (decl_attributes): Use attribute hash.
8655 * Makefile.in (attribs.c): Depend on hashtab.h.
8656
8657 2007-07-27 Steve Ellcey <sje@cup.hp.com>
8658
8659 * config/ia64/vect.md (vec_initv2si): Remove bad BIG_ENDIAN test.
8660
8661 2007-07-27 Richard Sandiford <richard@codesourcery.com>
8662
8663 * doc/invoke.texi (mdsp, mdspr2): Document the __mips_dsp,
8664 __mips_dspr2 and __mips_dsp_rev macros.
8665 * config/mips/mips.h (TARGET_CPU_CPP_BUILTINS): Define __mips_dsp_rev.
8666
8667 2007-07-27 Douglas Gregor <doug.gregor@gmail.com>
8668
8669 * c-common.h (enum rid): Add RID_DECLTYPE, update RID_LAST_CXX0X.
8670
8671 2007-07-26 Kenneth Zadeck <zadeck@naturalbridge.com>
8672
8673 PR middle-end/32749
8674
8675 * df-problems.c (df_create_unused_note): Removed do_not_gen parm
8676 and the updating of the live and do_not_gen sets.
8677 (df_note_bb_compute): Added updating of live and do_not_gen sets
8678 for regular defs so that the case of clobber inside conditional
8679 call is processed correctly.
8680
8681 2007-07-27 Zdenek Dvorak <dvorakz@suse.cz>
8682
8683 * config/rs6000/rs6000.c (rs6000_gimplify_va_arg): Generate the
8684 operands with compatible type.
8685
8686 2007-07-27 Richard Sandiford <richard@codesourcery.com>
8687
8688 * expr.h (store_bit_field): Don't return a value.
8689 * expmed.c (check_predicate_volatile_ok): New function.
8690 (store_bit_field_1): New function, extracted from store_bit_field.
8691 Take a fallback_p argument and return true if the operation succeeded.
8692 Only use store_fixed_bit_field if fallback_p. Don't recompute
8693 mode_for_extraction; use op_mode instead. Try forcing memories
8694 into registers if the insv expander fails.
8695 (store_bit_field): Use store_bit_field_1 with fallback_p true.
8696 Don't return a value.
8697 (convert_extracted_bit_field): New function, extracted from
8698 store_bit_field.
8699 (extract_bit_field_1): Likewise. Take a fallback_p argument
8700 and return NULL if the operation succeeded. Only use
8701 extract_fixed_bit_field if fallback_p. Only calculate one
8702 extraction mode. Combine code for extv and extzv. Try forcing
8703 memories into registers if the ext(z)v expander fails.
8704 (extract_bit_field): Use extract_bit_field_1 with fallback_p true.
8705
8706 2007-07-27 Richard Sandiford <rsandifo@nildram.co.uk>
8707
8708 * df.h (df_mw_hardreg): Turn df_ref_type and df_ref_flags
8709 into bitfields.
8710 (df_ref): Likewise. Put regno with other integer fields.
8711
8712 2007-07-27 Richard Sandiford <rsandifo@nildram.co.uk>
8713
8714 * df.h (df_mw_hardreg): Remove "loc" field.
8715 * df-scan.c (df_ref_record): Don't set it. Remove redundant
8716 local variable.
8717 * df-problems.c (df_whole_mw_reg_unused_p): New function,
8718 split out from df_set_unused_notes_for_mw. Return false for
8719 partial references. Assert that mw_reg is a REG when returning true.
8720 (df_set_unused_notes_for_mw): Use it. Use mw_reg instead of *loc.
8721 (df_whole_mw_reg_dead_p): New function, split out from
8722 df_set_dead_notes_for_mw. Return false for partial references.
8723 Assert that mw_reg is a REG when returning true.
8724 (df_set_dead_notes_for_mw): Use it. Use mw_reg instead of *loc.
8725 Remove redundant bitmap check.
8726
8727 2007-07-26 H.J. Lu <hongjiu.lu@intel.com>
8728
8729 * config/ia64/t-ia64 ($(T)crtbegin.o): Removed.
8730 ($(T)crtend.o): Likwise.
8731 ($(T)crtbeginS.o): Likwise.
8732 ($(T)crtendS.o): Likwise.
8733 ($(T)crtfastmath.o): Likwise.
8734
8735 2007-07-26 Zdenek Dvorak <dvorakz@suse.cz>
8736
8737 * dominance.c (dom_computed, n_bbs_in_dom_tree): Removed.
8738 * function.h (dom_computed, n_bbs_in_dom_tree): New macros.
8739 * basic-block.h (struct control_flow_graph): Added x_dom_computed
8740 and x_n_bbs_in_dom_tree fields.
8741
8742 2007-07-26 Steve Ellcey <sje@cup.hp.com>
8743
8744 PR tree-optimization/32087
8745 * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop):
8746 Do not call scale_bbs_frequencies_int with prob of zero.
8747
8748 2007-07-26 Julian Brown <julian@codesourcery.com>
8749
8750 * config/arm/arm-protos.h (neon_lane_bounds, neon_const_bounds)
8751 (neon_element_bits): Add prototypes.
8752 * config/arm/arm.c (bounds_check, neon_lane_bounds)
8753 (neon_const_bounds, neon_element_bits): New functions.
8754 * config/arm/neon.md (neon_vget_lane<mode>, neon_vget_lanedi)
8755 (neon_vget_lanev2di, neon_vset_lane<mode>, neon_vset_lanedi)
8756 (neon_vset_lanev2di, neon_vdup_lane<mode>, neon_vdup_lanedi)
8757 (neon_vdup_lanev2di, neon_vcvt_n<mode>, neon_vmul_lane<mode>)
8758 (neon_vmull_lane<mode>, neon_vqdmull_lane<mode>)
8759 (neon_vqdmulh_lane<mode>, neon_vmla_lane<mode>)
8760 (neon_vmlal_lane<mode>, neon_vqdmlal_lane<mode>)
8761 (neon_vmls_lane<mode>, neon_vmlsl_lane<mode>)
8762 (neon_vqdmlsl_lane<mode>, neon_vext<mode>, neon_vshr_n<mode>)
8763 (neon_vshrn_n<mode>, neon_vqshrn_n<mode>, neon_vqshrun_n<mode>)
8764 (neon_vshl_n<mode>, neon_vshl_n<mode>, neon_vqshl_n<mode>)
8765 (neon_vqshlu_n<mode>, neon_vshll_n<mode>, neon_vsra_n<mode>)
8766 (neon_vsri_n<mode>, neon_vsli_n<mode>): Add bounds checks.
8767
8768 2007-07-26 Nathan Froyd <froydnj@codesourcery.com>
8769
8770 * config/vxworks.h (VXWORKS_LINK_SPEC): Fix typo.
8771 (HAVE_AS_GNU_ATTRIBUTE): Undefine.
8772
8773 2007-07-26 Mark Shinwell <shinwell@codesourcery.com>
8774 Julian Brown <julian@codesourcery.com>
8775
8776 * config/arm/arm.c (arm_mac_accumulator_is_mul_result): New.
8777 * config/arm/arm-protos.h (arm_mac_accumulator_is_mul_result): New.
8778 * config/arm/cortex-a8.md: New.
8779 * config/arm/cortex-a8-neon.md: New.
8780 * config/arm/neon-schedgen.ml: New.
8781 * config/arm/neon.md (vqh_mnem): New.
8782 (neon_type): New.
8783 (Is_float_mode): New.
8784 (Scalar_mul_8_16): New.
8785 (Is_d_reg): New.
8786 (V_mode_nunits): New.
8787 (All instruction patterns): Annotate with neon_type attribute
8788 values.
8789 * config/arm/arm.md: Include cortex-a8.md.
8790 (insn): Add smmla, umaal, smlald, smlsld, clz, mrs, msr and xtab
8791 values.
8792 Annotate instruction patterns accordingly.
8793 (generic_sched): Do not use generic scheduling for Cortex-A8.
8794 (generic_vfp): Do not use generic VFP scheduling for Cortex-A8.
8795
8796 2007-07-26 Daniel Jacobowitz <dan@codesourcery.com>
8797
8798 * fold-const.c (fold_read_from_constant_string): Use
8799 build_int_cst_type.
8800 * tree-ssa-ccp.c (fold_const_aggregate_ref): Likewise.
8801
8802 2007-07-26 Nick Clifton <nickc@redhat.com>
8803
8804 * tree-ssa-operands.h: Change copyright header to refer to version
8805 3 of the GNU General Public License and to point readers at the
8806 COPYING3 file and the FSF's license web page.
8807 * tree-vrp.c, regrename.c, attribs.c, loop-unswitch.c,
8808 sched-ebb.c, fwprop.c, tree-loop-linear.c, dwarf2asm.c,
8809 tree-into-ssa.c, dwarf2asm.h, tree-ssa-loop-im.c, sbitmap.c,
8810 targhooks.c, tree-dump.c, tree-complex.c, sbitmap.h, targhooks.h,
8811 tree-dump.h, regstat.c, see.c, machmode.h, hooks.c, cgraphbuild.c,
8812 hooks.h, genrecog.c, tree-ssa-threadupdate.c, gen-protos.c,
8813 flags.h, rtlhooks.c, gencheck.c, tree-ssa-loop-niter.c,
8814 opts-common.c, dbgcnt.def, tree-pretty-print.c, tracer.c,
8815 gengtype.c, mkconfig.sh, gengtype.h, tree-ssa-loop-unswitch.c,
8816 cgraph.c, c-lex.c, cgraph.h, libfuncs.h, cfgloopmanip.c,
8817 rtl-error.c, optabs.c, postreload-gcse.c, tree-ssa-loop-manip.c,
8818 optabs.h, genmddeps.c, defaults.h, postreload.c, value-prof.c,
8819 tree-ssa-loop-ch.c, tree-tailcall.c, gengenrtl.c, value-prof.h,
8820 genopinit.c, tree.c, tree.h, reload.c, tree-pass.h, ipa-cp.c,
8821 reload.h, bitmap.c, bitmap.h, tree-scalar-evolution.c,
8822 c-config-lang.in, tree-scalar-evolution.h, target.h, cppspec.c,
8823 rtlanal.c, ddg.c, lambda-mat.c, mips-tdump.c, ddg.h,
8824 tree-phinodes.c, mips-tfile.c, pointer-set.c, pointer-set.h,
8825 diagnostic.c, final.c, diagnostic.h, builtins.c, genoutput.c,
8826 gcc.c, lists.c, tree-ssa-alias-warnings.c, gcc.h, cfghooks.c,
8827 input.h, gensupport.c, fold-const.c, cfghooks.h, insn-notes.def,
8828 gensupport.h, builtin-attrs.def, sync-builtins.def, params.c,
8829 cfgloopanal.c, params.h, graphds.c, omp-low.c, tree-ssa-dse.c,
8830 graphds.h, gcov.c, cfg.c, genextract.c, ipa-reference.c,
8831 genautomata.c, tree-ssa-uncprop.c, auto-inc-dec.c, toplev.c,
8832 tree-gimple.c, ipa-reference.h, vmsdbgout.c, errors.c, toplev.h,
8833 reorg.c, tree-gimple.h, tree-chrec.c, pretty-print.c, errors.h,
8834 real.c, tree-chrec.h, pretty-print.h, debug.c, real.h, genemit.c,
8835 omega.c, c-cppbuiltin.c, genmultilib, debug.h, omega.h,
8836 tree-ssa-sccvn.c, genconfig.c, tree-ssa-sccvn.h, cgraphunit.c,
8837 regs.h, df-scan.c, vec.c, hosthooks-def.h, vec.h,
8838 tree-ssa-copyrename.c, scan.c, builtin-types.def, tree-ssa-ccp.c,
8839 scan.h, mode-classes.def, haifa-sched.c, dominance.c, dojump.c,
8840 double-int.c, gcov-io.c, dbxout.c, builtins.def, double-int.h,
8841 dbxout.h, tree-ssa-loop-ivopts.c, df-core.c, mode-switching.c,
8842 gengtype-lex.l, tree-nomudflap.c, modulo-sched.c, c-objc-common.c,
8843 hosthooks.h, c-objc-common.h, caller-save.c, graph.c,
8844 ipa-pure-const.c, graph.h, c-format.c, cse.c, fix-header.c,
8845 c-format.h, web.c, tree-stdarg.c, genpeep.c, tree-stdarg.h,
8846 tree-ssa-math-opts.c, xcoffout.c, tree-ssa-dom.c, tree-nrv.c,
8847 xcoffout.h, tree-ssa-propagate.c, ipa-utils.c,
8848 tree-ssa-propagate.h, tree-ssa-alias.c, loop-init.c, ipa-utils.h,
8849 gimple-low.c, rtl.def, c-tree.h, tree-ssa-sink.c, ipa-inline.c,
8850 mkmap-symver.awk, machmode.def, c-pch.c, cfganal.c, global.c,
8851 alloc-pool.c, c-semantics.c, alloc-pool.h, jump.c, ifcvt.c,
8852 dwarf2out.c, expr.c, cfgbuild.c, tree-browser.c, dwarf2out.h,
8853 expr.h, longlong.h, opts.c, gcov-iov.c, opts.h, dwarf2.h,
8854 genattrtab.c, genconditions.c, genattr.c, optc-gen.awk,
8855 timevar.def, tree-ssa-loop-ivcanon.c, hard-reg-set.h, predict.c,
8856 tree-ssa-loop.c, host-default.c, predict.h, recog.c, dbgcnt.c,
8857 recog.h, dbgcnt.h, c-aux-info.c, tree-ssa-address.c, timevar.c,
8858 dse.c, lcm.c, tree-ssa-ifcombine.c, timevar.h, dse.h,
8859 matrix-reorg.c, tree-vn.c, treestruct.def, fp-test.c, c-decl.c,
8860 tree-eh.c, c-errors.c, c-pretty-print.c, regmove.c,
8861 lambda-trans.c, c-pretty-print.h, et-forest.c, et-forest.h,
8862 ebitmap.c, configure.ac, local-alloc.c, function.c, langhooks.c,
8863 ebitmap.h, cppdefault.c, tree-vectorizer.c, function.h,
8864 langhooks.h, print-rtl.c, cppdefault.h, df.h, tree-vectorizer.h,
8865 sdbout.c, stor-layout.c, sdbout.h, rtlhooks-def.h, read-rtl.c,
8866 gcse.c, ipa-type-escape.c, vmsdbg.h, alias.c, gengtype-parse.c,
8867 ipa-type-escape.h, domwalk.c, alias.h, tree-if-conv.c, profile.c,
8868 init-regs.c, domwalk.h, ipa.c, gccbug.in, tree-data-ref.c,
8869 loop-unroll.c, tree-data-ref.h, tree-flow-inline.h, tree-affine.c,
8870 mkmap-flat.awk, tree-affine.h, tree-vect-analyze.c, c.opt, ggc.h,
8871 opt-gather.awk, c-typeck.c, gimplify.c, coretypes.h, exec-tool.in,
8872 insn-addr.h, tree-ssa-phiopt.c, c-pragma.c, c-pragma.h, calls.c,
8873 tree-ssa-coalesce.c, genmodes.c, loop-doloop.c, predict.def,
8874 dwarf.h, tree.def, rtl-factoring.c, lower-subreg.c, expmed.c,
8875 bt-load.c, ggc-common.c, genflags.c, tree-dfa.c, except.c,
8876 coverage.c, except.h, emit-rtl.c, cfgexpand.c, coverage.h,
8877 stringpool.c, cselib.c, emit-rtl.h, tree-cfgcleanup.c, c-opts.c,
8878 cselib.h, cfgcleanup.c, simplify-rtx.c, tree-ssa-pre.c, explow.c,
8879 tree-ssa-live.c, tree-sra.c, tree-ssa-live.h, tree-predcom.c,
8880 loop-invariant.c, genpreds.c, protoize.c, opth-gen.awk, c-dump.c,
8881 lambda.h, loop-iv.c, tree-mudflap.c, ipa-prop.c, print-tree.c,
8882 tree-mudflap.h, tree-ssa-copy.c, ipa-prop.h, cfglayout.c,
8883 tree-ssa-forwprop.c, c-convert.c, cfglayout.h, common.opt,
8884 ggc-zone.c, ggc-page.c, c-omp.c, tree-ssa-dce.c, gencodes.c,
8885 varasm.c, tree-vect-patterns.c, libada-mk.in, tree-ssa-ter.c,
8886 sched-deps.c, tree-nested.c, c-ppoutput.c, tree-ssa.c,
8887 target-def.h, tree-ssa-loop-prefetch.c, lambda-code.c,
8888 omp-builtins.def, rtl.c, regclass.c, stab.def, intl.c, rtl.h,
8889 intl.h, tree-inline.c, conditions.h, tree-inline.h, integrate.c,
8890 sched-int.h, tree-iterator.c, integrate.h, tree-iterator.h,
8891 genchecksum.c, tree-optimize.c, output.h, tree-vect-transform.c,
8892 tree-object-size.c, combine.c, tree-outof-ssa.c, addresses.h,
8893 bb-reorder.c, stack-ptr-mod.c, resource.c, var-tracking.c,
8894 cfgloop.c, system.h, resource.h, ggc-none.c, tree-profile.c,
8895 cfgloop.h, c-gimplify.c, c-common.c, opt-functions.awk,
8896 tree-vect-generic.c, tree-flow.h, df-problems.c, scan-decls.c,
8897 c-common.h, config.gcc, reg-stack.c, tlink.c, main.c, stub-objc.c,
8898 fixproto, config.host, Makefile.in, gccspec.c, sched-rgn.c,
8899 vecprim.h, basic-block.h, tree-ssa-structalias.c,
8900 tree-ssa-structalias.h, c-common.def, sched-vis.c, tree-cfg.c,
8901 passes.c, genconstants.c, c-incpath.c, c-incpath.h,
8902 struct-equiv.c, c-parser.c, tree-ssa-reassoc.c, varray.c, sreal.c,
8903 varray.h, dfp.c, sreal.h, combine-stack-adj.c, dfp.h,
8904 reg-notes.def, cfgrtl.c, config.build, varpool.c, gengtype-yacc.y,
8905 stmt.c, dce.c, tree-browser.def, prefix.c, statistics.h,
8906 params.def, dce.h, c-lang.c, gcov-dump.c, prefix.h,
8907 tree-ssanames.c, collect2.c, collect2.h, tree-ssa-threadedge.c,
8908 convert.c, convert.h, langhooks-def.h, reload1.c,
8909 tree-ssa-operands.c: Likewise.
8910
8911 2007-07-26 Jan Hubicka <jh@suse.cz>
8912
8913 * tree-ssa-live.c: Include debug.h and flags.h.
8914 (mark_scope_block_unused): New function.
8915 (remove_unused_scope_block_p): New function.
8916 (remove_unused_locals): Remove unused blocks too.
8917
8918 2007-07-25 Ian Lance Taylor <iant@google.com>
8919
8920 * combine.c (combine_max_regno): Remove. Remove all uses.
8921 (struct reg_stat_struct): Rename from struct reg_stat.
8922 (reg_stat_type): Define, and declare VECs.
8923 (reg_stat): Change from pointer to VEC. Change all uses.
8924 (combine_split_insns): New static function.
8925 (try_combine, find_split_point): Call it instead of split_insns.
8926
8927 2007-07-25 Zdenek Dvorak <dvorakz@suse.cz>
8928
8929 * cfghooks.c (split_block): Fix the information about loop latch.
8930
8931 2007-07-25 Zdenek Dvorak <dvorakz@suse.cz>
8932
8933 * cfgloopmanip.c (fix_loop_structure): Call force_single_succ_latches.
8934
8935 2007-07-25 Zdenek Dvorak <dvorakz@suse.cz>
8936
8937 * tree-ssa-threadupdate.c (create_edge_and_update_destination_phis):
8938 Scan the new edge for loop exit info.
8939
8940 2007-07-25 Andreas Tobler <a.tobler@schweiz.org>
8941
8942 * config/darwin.c: Include debug.h.
8943
8944 2007-07-25 Steve Ellcey <sje@cup.hp.com>
8945
8946 PR target/32218
8947 * tree-vect-patterns.c (vect_pattern_recog_1): Check for valid type.
8948
8949 2007-07-25 Steve Ellcey <sje@cup.hp.com>
8950
8951 * config/ia64/ia64.h (HARD_REGNO_NREGS): Handle RFmode.
8952 (HARD_REGNO_MODE_OK): Ditto.
8953 (MODES_TIEABLE_P): Ditto.
8954 (HARD_REGNO_CALLER_SAVE_MODE): Ditto.
8955 (CLASS_MAX_NREGS): Ditto.
8956 * config/ia64/ia64.c (ia64_print_operand_address): Add R format.
8957 * config/ia64/ia64.md (divsf3_internal_thr): Removed.
8958 (divdf3_internal_thr): Removed.
8959 * config/ia64/div.md: New file.
8960 * config/ia64/constraints.md: Add H constraint.
8961
8962 2007-07-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8963
8964 * sbitmap.c (sbitmap_verify_popcount, sbitmap_alloc_with_popcount,
8965 sbitmap_copy, sbitmap_copy_n, sbitmap_equal, sbitmap_empty_p,
8966 sbitmap_union_of_diff_cg, sbitmap_union_of_diff, sbitmap_not,
8967 sbitmap_difference, sbitmap_any_common_bits, sbitmap_a_and_b_cg,
8968 sbitmap_a_and_b, sbitmap_a_xor_b_cg, sbitmap_a_xor_b,
8969 sbitmap_a_or_b_cg, sbitmap_a_or_b, sbitmap_a_subset_b_p,
8970 sbitmap_a_or_b_and_c_cg, sbitmap_a_or_b_and_c,
8971 sbitmap_a_and_b_or_c_cg, sbitmap_a_and_b_or_c,
8972 sbitmap_first_set_bit, sbitmap_last_set_bit, dump_sbitmap,
8973 dump_sbitmap_file, debug_sbitmap, popcount_table,
8974 sbitmap_popcount): Constify.
8975 * sbitmap.h (const_sbitmap, const_sbitmap_ptr): New.
8976 (sbitmap_iterator, sbitmap_iter_init, dump_sbitmap,
8977 dump_sbitmap_file, sbitmap_copy, sbitmap_copy_n, sbitmap_equal,
8978 sbitmap_empty_p, sbitmap_union_of_diff, sbitmap_union_of_diff_cg,
8979 sbitmap_difference, sbitmap_not, sbitmap_a_or_b_and_c,
8980 sbitmap_a_or_b_and_c_cg, sbitmap_a_and_b_or_c,
8981 sbitmap_a_and_b_or_c_cg, sbitmap_any_common_bits, sbitmap_a_and_b,
8982 sbitmap_a_and_b_cg, sbitmap_a_or_b, sbitmap_a_or_b_cg,
8983 sbitmap_a_xor_b, sbitmap_a_xor_b_cg, sbitmap_a_subset_b_p,
8984 sbitmap_first_set_bit, sbitmap_last_set_bit, debug_sbitmap,
8985 sbitmap_popcount, sbitmap_verify_popcount): Constify.
8986
8987 2007-07-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8988
8989 * bitmap.c (hash_descriptor, eq_descriptor, bitmap_element_zerop,
8990 bitmap_copy, bitmap_clear_bit, popcount_table, bitmap_count_bits,
8991 bitmap_first_set_bit, bitmap_and, bitmap_and_into,
8992 bitmap_elt_copy, bitmap_and_compl, bitmap_and_compl_into,
8993 bitmap_compl_and_into, bitmap_elt_ior, bitmap_ior,
8994 bitmap_ior_into, bitmap_xor, bitmap_xor_into, bitmap_equal_p,
8995 bitmap_intersect_p, bitmap_intersect_compl_p,
8996 bitmap_ior_and_compl, bitmap_ior_and_compl_into,
8997 debug_bitmap_file, debug_bitmap, bitmap_print, bitmap_hash):
8998 Constify.
8999 * bitmap.h (bitmap_copy, bitmap_equal_p, bitmap_intersect_p,
9000 bitmap_intersect_compl_p, bitmap_count_bits, bitmap_and,
9001 bitmap_and_into, bitmap_and_compl, bitmap_and_compl_into,
9002 bitmap_compl_and_into, bitmap_ior, bitmap_ior_into, bitmap_xor,
9003 bitmap_xor_into, bitmap_ior_and_compl, bitmap_ior_and_compl_into,
9004 debug_bitmap, debug_bitmap_file, bitmap_print,
9005 bitmap_first_set_bit, bitmap_hash, bmp_iter_set_init,
9006 bmp_iter_and_init, bmp_iter_and_compl_init): Likewise.
9007
9008 2007-07-25 Daniel Berlin <dberlin@dberlin.org>
9009
9010 * config/darwin.c (darwin_override_options): Additional fix for
9011 debug info formats that don't support var tracking.
9012
9013 2007-07-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9014
9015 * cselib.c (entry_and_rtx_equal_p): Constify.
9016 * gengtype.c (output_mangled_typename, write_types, write_local):
9017 Likewise.
9018 * gengtype.h (const_type_p): New.
9019 * see.c (eq_descriptor_extension, hash_descriptor_extension):
9020 Constify.
9021 * tlink.c (scan_linker_output): De-constify.
9022 * tree-ssa-loop-im.c (memref_eq): Constify.
9023 * tree-ssa-structalias.c (const_shared_bitmap_info_t): New.
9024 (shared_bitmap_hash, shared_bitmap_eq): Constify.
9025
9026 2007-07-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9027
9028 * c-common.c (fname_as_string, c_type_hash): Constify.
9029 * c-typeck.c (free_all_tagged_tu_seen_up_to): Likewise.
9030 * cgraph.c (edge_hash, edge_eq): Likewise.
9031 * dwarf2out.c (decl_die_table_eq, decl_loc_table_eq): Likewise.
9032 * emit-rtl.c (mem_attrs_htab_eq, reg_attrs_htab_hash,
9033 reg_attrs_htab_eq): Likewise.
9034 * except.c (t2r_eq, t2r_hash, ttypes_filter_eq, ehl_hash, ehl_eq):
9035 Likewise.
9036 * genautomata.c (const_reserv_sets_t, const_unit_decl_t,
9037 const_decl_t, const_state_t, const_automata_list_el_t): New.
9038 (first_out_arc, DECL_UNIT, DECL_BYPASS, DECL_AUTOMATON, DECL_EXCL,
9039 DECL_PRESENCE, DECL_ABSENCE, DECL_RESERV, DECL_INSN_RESERV,
9040 automaton_decl_hash, automaton_decl_eq_p, insn_decl_hash,
9041 insn_decl_eq_p, decl_hash, decl_eq_p, alt_state_cmp,
9042 reserv_sets_cmp, reserv_sets_eq, state_hash, state_eq_p,
9043 automata_list_hash, automata_list_eq_p, compare_states_for_equiv,
9044 compare_max_occ_cycle_nums, out_state_arcs_num,
9045 compare_transition_els_num, units_cmp, state_reservs_cmp):
9046 Constify.
9047 * genmodes.c (cmp_modes): Likewise.
9048 * ggc-common.c (saving_htab_hash, saving_htab_eq): Likewise.
9049 * gimplify.c (compare_case_labels): Likewise.
9050 * ipa-type-escape.c (get_name_of_type, type_brand_s): Likewise.
9051 * loop-unroll.c (si_info_hash, ve_info_hash): Likewise.
9052 * matrix-reorg.c (mtt_info_hash): Likewise.
9053 * postreload-gcse.c (hash_expr_for_htab, expr_equiv_p): Likewise.
9054 * rtl-factoring.c (const_p_hash_bucket, const_p_hash_elem): New.
9055 (htab_hash_bucket, htab_hash_elem): Constify.
9056 * tree-browser.c (TB_parent_eq): Likewise.
9057 * tree-scalar-evolution.c (hash_scev_info): Likewise.
9058 * tree-ssa-alias.c (sort_tags_by_id): Likewise.
9059 * tree-ssa-coalesce.c (const_coalesce_pair_p): New.
9060 (coalesce_pair_map_hash, coalesce_pair_map_eq, compare_pairs):
9061 Constify.
9062 * tree-ssa-dom.c (avail_expr_hash, avail_expr_eq): Likewise.
9063 * tree-ssa-pre.c (const_expr_pred_trans_t): New.
9064 (expr_pred_trans_hash, expr_pred_trans_eq): Constify.
9065 * tree-ssa-sccvn.c (const_vn_binary_op_t, const_vn_unary_op_t,
9066 const_vn_phi_t, const_vn_reference_op_t, const_vn_reference_t):
9067 New.
9068 (vn_reference_op_eq, vn_reference_hash, vn_reference_eq,
9069 vn_unary_op_hash, vn_unary_op_eq, vn_binary_op_hash,
9070 vn_binary_op_eq, vn_phi_hash, vn_phi_eq): Constify.
9071 * tree-ssa-threadupdate.c (redirection_data_hash,
9072 redirection_data_eq): Likewise.
9073 * tree-ssa-uncprop.c (equiv_hash, equiv_eq): Likewise.
9074 * tree-ssa.c (var_ann_eq): Likewise.
9075 * tree-vrp.c (compare_case_labels): Likewise.
9076 * tree.c (int_cst_hash_hash, int_cst_hash_eq,
9077 tree_map_base_marked_p, type_hash_marked_p, tree_check_failed,
9078 tree_not_check_failed, tree_class_check_failed,
9079 tree_range_check_failed, tree_not_class_check_failed,
9080 omp_clause_check_failed, omp_clause_range_check_failed,
9081 tree_contains_struct_check_failed, tree_operand_check_failed):
9082 Likewise.
9083 * tree.h (tree_contains_struct_check_failed, tree_check_failed,
9084 tree_not_check_failed, tree_class_check_failed,
9085 tree_range_check_failed, tree_not_class_check_failed,
9086 tree_operand_check_failed, omp_clause_operand_check_failed,
9087 tree_operand_length): Likewise.
9088 * var-tracking.c (const_variable): New.
9089 (variable_htab_hash, variable_htab_eq): Constify.
9090 * varasm.c (const_desc_hash): Likewise.
9091
9092 2007-07-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9093
9094 * expr.c (handled_component_p): Constify.
9095 * fold-const.c (fit_double_type): Likewise.
9096 * real.h (real_value_from_int_cst): Likewise.
9097 * tree-flow-inline.h (gimple_in_ssa_p,
9098 gimple_aliases_computed_p, gimple_addressable_vars,
9099 gimple_call_clobbered_vars, gimple_referenced_vars,
9100 gimple_global_var, gimple_nonlocal_all, gimple_var_anns,
9101 end_htab_p, end_referenced_vars_p, var_ann, function_ann,
9102 may_aliases, end_readonly_imm_use_p, has_zero_uses,
9103 has_single_use, single_imm_use, num_imm_uses, is_exec_stmt,
9104 is_label_stmt, is_global_var, phi_ssa_name_p,
9105 factoring_name_p, is_call_clobbered, tree_common_ann,
9106 op_iter_done, end_imm_use_stmt_p, end_imm_use_on_stmt_p,
9107 unmodifiable_var_p, array_ref_contains_indirect_ref,
9108 ref_contains_array_ref, lookup_subvars_for_var,
9109 var_can_have_subvars, overlap_subvar, gimple_ssa_operands,
9110 gimple_mem_ref_stats): Likewise.
9111 * tree-flow.h (tree_common_ann, var_ann, function_ann,
9112 may_aliases, is_exec_stmt, is_label_stmt,
9113 ref_contains_array_ref, array_ref_contains_indirect_ref,
9114 var_can_have_subvars, overlap_subvar, is_call_clobbered,
9115 unmodifiable_var_p): Likewise.
9116 * tree-gimple.c (is_gimple_min_invariant): Likewise.
9117 * tree-gimple.h (is_gimple_min_invariant): Likewise.
9118 * tree.c (type_hash_list, attribute_hash_list, tree_size,
9119 cst_and_fits_in_hwi, real_value_from_int_cst,
9120 build_real_from_int_cst, integer_zerop, integer_onep,
9121 integer_all_onesp, integer_pow2p, integer_nonzerop, tree_log2,
9122 tree_floor_log2, real_zerop, real_onep, real_twop,
9123 real_minus_onep, really_constant_p, purpose_member, chain_member,
9124 list_length, fields_length, int_size_in_bytes, bit_position,
9125 int_bit_position, byte_position, int_byte_position, expr_align,
9126 array_type_nelts, tree_node_structure,
9127 type_contains_placeholder_1, iterative_hash_pointer,
9128 is_attribute_with_length_p, is_attribute_p, check_qualified_type,
9129 tree_map_base_eq, type_hash_list, type_hash_eq,
9130 attribute_hash_list, type_num_arguments, tree_int_cst_equal,
9131 tree_int_cst_lt, tree_int_cst_compare, host_integerp,
9132 tree_low_cst, tree_int_cst_msb, tree_int_cst_sgn,
9133 simple_cst_list_equal, compare_tree_int, iterative_hash_expr,
9134 int_fits_type_p, get_containing_scope, decl_function_context,
9135 decl_type_context, omp_clause_operand_check_failed,
9136 initializer_zerop, int_cst_value, num_ending_zeros): Likewise.
9137 * tree.h (omp_clause_operand_check_failed, tree_size,
9138 build_real_from_int_cst, array_type_nelts, purpose_member,
9139 tree_int_cst_equal, tree_int_cst_lt, tree_int_cst_compare,
9140 host_integerp, tree_low_cst, tree_int_cst_msb, tree_int_cst_sgn,
9141 is_attribute_p, check_qualified_type, expr_align,
9142 int_size_in_bytes, bit_position, int_bit_position, byte_position,
9143 int_byte_position, list_length, fields_length, initializer_zerop,
9144 integer_zerop, integer_onep, integer_all_onesp, integer_pow2p,
9145 integer_nonzerop, cst_and_fits_in_hwi, num_ending_zeros,
9146 tree_node_structure, handled_component_p, get_containing_scope,
9147 decl_function_context, decl_type_context, real_zerop,
9148 type_num_arguments, fit_double_type, really_constant_p,
9149 int_fits_type_p, tree_log2, tree_floor_log2, iterative_hash_expr,
9150 compare_tree_int, chain_member, simple_cst_list_equal, real_onep,
9151 real_twop, real_minus_onep, int_cst_value): Likewise.
9152
9153 2007-07-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9154
9155 * cfglayout.c (insn_scope, insn_line): Constify.
9156 * emit-rtl.c (const_int_htab_hash, const_int_htab_eq,
9157 const_double_htab_hash, const_double_htab_eq,
9158 mem_attrs_htab_hash): Likewise.
9159 * loop-iv.c (biv_eq): Likewise.
9160 * print-rtl.c (print_rtx, print_decl_name, print_mem_expr,
9161 print_inline_rtx, debug_rtx, debug_rtx_list, debug_rtx_range,
9162 debug_rtx_find, print_rtl, print_rtl_single, print_simple_rtl):
9163 Likewise.
9164 * rtl-error.c (location_for_asm, diagnostic_for_asm,
9165 error_for_asm, warning_for_asm, _fatal_insn,
9166 _fatal_insn_not_found): Likewise.
9167 * rtl.c (rtx_size, shared_const_p, shallow_copy_rtx_stat,
9168 rtx_equal_p, rtl_check_failed_bounds, rtl_check_failed_type1,
9169 rtl_check_failed_type2, rtl_check_failed_code1,
9170 rtl_check_failed_code2, rtl_check_failed_code_mode,
9171 rtvec_check_failed_bounds, rtl_check_failed_flag): Likewise.
9172 * rtl.h (rtl_check_failed_bounds, rtl_check_failed_type1,
9173 rtl_check_failed_type2, rtl_check_failed_code1,
9174 rtl_check_failed_code2, rtl_check_failed_code_mode,
9175 rtvec_check_failed_bounds, rtl_check_failed_flag, LABEL_KIND,
9176 SET_LABEL_KIND, rhs_regno, subreg_lsb, subreg_regno, subreg_nregs,
9177 shared_const_p, rtx_size, shallow_copy_rtx_stat, rtx_equal_p,
9178 get_pool_mode, insn_line, insn_file, simplify_replace_rtx,
9179 mode_signbit_p, rtx_addr_can_trap_p, nonzero_address_p,
9180 rtx_unstable_p, get_integer_term, get_related_value,
9181 offset_within_block_p, reg_mentioned_p, count_occurrences,
9182 reg_referenced_p, reg_used_between_p, no_labels_between_p,
9183 single_set_2, multiple_sets, set_noop_p, refers_to_regno_p,
9184 reg_overlap_mentioned_p, dead_or_set_p, dead_or_set_regno_p,
9185 find_reg_note, find_regno_note, find_reg_equal_equiv_note,
9186 find_constant_src, find_reg_fusage, find_regno_fusage,
9187 pure_call_p, remove_note, side_effects_p, volatile_refs_p,
9188 volatile_insn_p, may_trap_p, may_trap_after_code_motion_p,
9189 may_trap_or_fault_p, inequality_comparisons_p, tablejump_p,
9190 computed_jump_p, auto_inc_p, in_expr_list_p,
9191 remove_node_from_expr_list, loc_mentioned_in_p,
9192 label_is_jump_target_p, reversed_comparison_code_parts,
9193 debug_rtx, debug_rtx_list, debug_rtx_range, debug_rtx_find,
9194 print_mem_expr, print_rtl, print_simple_rtl, print_rtl_single,
9195 print_inline_rtx): Likewise.
9196 * rtlanal.c (covers_regno_p, covers_regno_no_parallel_p,
9197 computed_jump_p_1, nonzero_bits1, rtx_unstable_p,
9198 rtx_addr_can_trap_p_1, rtx_addr_can_trap_p, nonzero_address_p,
9199 get_integer_term, get_related_value, offset_within_block_p,
9200 count_occurrences, reg_mentioned_p, no_labels_between_p,
9201 reg_used_between_p, reg_referenced_p, single_set_2,
9202 multiple_sets, set_noop_p, refers_to_regno_p,
9203 reg_overlap_mentioned_p, dead_or_set_p,
9204 covers_regno_no_parallel_p, covers_regno_p,
9205 dead_or_set_regno_p, find_reg_note, find_regno_note,
9206 find_reg_equal_equiv_note, find_constant_src, find_reg_fusage,
9207 find_regno_fusage, pure_call_p, remove_note, in_expr_list_p,
9208 remove_node_from_expr_list, volatile_insn_p, volatile_refs_p,
9209 side_effects_p, may_trap_p_1, may_trap_p,
9210 may_trap_after_code_motion_p, may_trap_or_fault_p,
9211 inequality_comparisons_p, tablejump_p, computed_jump_p_1,
9212 computed_jump_p, auto_inc_p, loc_mentioned_in_p, subreg_lsb,
9213 subreg_regno, subreg_nregs, label_is_jump_target_p): Likewise.
9214 * simplify-rtx.c (neg_const_int, plus_minus_operand_p,
9215 mode_signbit_p, simplify_replace_rtx, plus_minus_operand_p):
9216 Likewise.
9217 * toplev.h (_fatal_insn_not_found, _fatal_insn, error_for_asm,
9218 warning_for_asm): Likewise.
9219 * tree.h (print_rtl): Likewise.
9220 * varasm.c (get_pool_mode): Likewise.
9221
9222 2007-07-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9223
9224 * c-lex.c (c_lex_with_flags, lex_string): Constify.
9225 * c-ppoutput.c (print_line, pp_dir_change): Likewise.
9226 * c-typeck.c (free_all_tagged_tu_seen_up_to): Likewise.
9227 * cfg.c (bb_copy_original_hash, bb_copy_original_eq): Likewise.
9228 * cfgloop.c (loop_exit_hash, loop_exit_eq): Likewise.
9229 * ddg.c (compare_sccs): Likewise.
9230 * df-scan.c (df_ref_compare, df_mw_compare): Likewise.
9231 * dfp.c (decimal_real_from_string, decimal_to_decnumber,
9232 decimal_to_binary, decimal_do_compare, decimal_real_to_decimal,
9233 decimal_do_fix_trunc, decimal_real_to_integer,
9234 decimal_real_to_integer2, decimal_real_maxval): Likewise.
9235 * dse.c (const_group_info_t): New.
9236 (invariant_group_base_eq, invariant_group_base_hash): Constify.
9237 * dwarf2out.c (const_dw_die_ref): New.
9238 (decl_die_table_hash, decl_die_table_eq, file_info_cmp): Constify.
9239 * tree-browser.c (TB_parent_eq): Likewise.
9240 * unwind-dw2-fde.c (__register_frame_info_bases,
9241 __deregister_frame_info_bases, fde_unencoded_compare, fde_split,
9242 add_fdes, linear_search_fdes, binary_search_unencoded_fdes):
9243 Likewise.
9244 * unwind-dw2-fde.h (get_cie, next_fde): Likewise.
9245 * unwind-dw2.c (uw_frame_state_for): Likewise.
9246 * value-prof.c (histogram_hash, histogram_eq): Likewise.
9247 * value-prof.h (const_histogram_value): New.
9248
9249 2007-07-25 Richard Sandiford <richard@codesourcery.com>
9250
9251 * config/mips/mips.c (machine_function): Add
9252 initialized_mips16_gp_pseudo_p.
9253 (mips16_gp_pseudo_reg): Do not emit the initialization of
9254 mips16_gp_pseudo_rtx when being called from the gimple cost-
9255 calculation routines; emit it on the first use outside those
9256 routines.
9257
9258 2007-07-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9259
9260 * coretypes.h (const_bitmap, const_rtx, const_rtvec, const_tree):
9261 New.
9262
9263 * rtl.h (RTL_CHECK1, RTL_CHECK2, RTL_CHECKC1, RTL_CHECKC2,
9264 RTVEC_ELT, XWINT, XCWINT, XCMWINT, XCNMPRV, BLOCK_SYMBOL_CHECK,
9265 RTL_FLAG_CHECK1, RTL_FLAG_CHECK2, RTL_FLAG_CHECK3,
9266 RTL_FLAG_CHECK4, RTL_FLAG_CHECK5, RTL_FLAG_CHECK6,
9267 RTL_FLAG_CHECK7, RTL_FLAG_CHECK8, LABEL_KIND, SET_LABEL_KIND):
9268 Preserve const-ness of parameters through use of __typeof(),
9269 also constify and tidy.
9270
9271 * tree.h (TREE_CHECK, TREE_NOT_CHECK, TREE_CHECK2,
9272 TREE_NOT_CHECK2, TREE_CHECK3, TREE_NOT_CHECK3, TREE_CHECK4,
9273 NON_TREE_CHECK4, TREE_CHECK5, TREE_NOT_CHECK5,
9274 CONTAINS_STRUCT_CHECK, TREE_CLASS_CHECK, TREE_RANGE_CHECK,
9275 OMP_CLAUSE_SUBCODE_CHECK, OMP_CLAUSE_RANGE_CHECK, EXPR_CHECK,
9276 GIMPLE_STMT_CHECK, NON_TYPE_CHECK, TREE_VEC_ELT_CHECK,
9277 PHI_NODE_ELT_CHECK, OMP_CLAUSE_ELT_CHECK, TREE_OPERAND_CHECK,
9278 TREE_OPERAND_CHECK_CODE, GIMPLE_STMT_OPERAND_CHECK,
9279 TREE_RTL_OPERAND_CHECK, TREE_CHAIN, TREE_TYPE): Likewise.
9280
9281 2007-07-25 Julian Brown <julian@codesourcery.com>
9282 Mark Shinwell <shinwell@codesourcery.com>
9283
9284 * config/alpha/alpha.c (alpha_mangle_fundamental_type): Rename to...
9285 (alpha_mangle_type): This.
9286 (TARGET_MANGLE_FUNDAMENTAL_TYPE): Don't define.
9287 (TARGET_MANGLE_TYPE): Define this instead.
9288 * config/arm/arm-protos.h (arm_mangle_type): Add prototype.
9289 * config/arm/arm.c (TARGET_MANGLE_TYPE): Define target hook.
9290 (arm_init_neon_builtins): Fix comment.
9291 (arm_mangle_map_entry): New.
9292 (arm_mangle_map): New.
9293 (arm_mangle_type): New.
9294 * config/i386/i386.c (ix86_mangle_fundamental_type): Rename to...
9295 (ix86_mangle_type): This. Use TYPE_MAIN_VARIANT and restrict
9296 mangled types to VOID_TYPE, BOOLEAN_TYPE, INTEGER_TYPE, REAL_TYPE.
9297 (TARGET_MANGLE_FUNDAMENTAL_TYPE): Don't define.
9298 (TARGET_MANGLE_TYPE): Define this instead.
9299 * config/ia64/ia64.c (ia64_mangle_fundamental_type): Rename to...
9300 (ia64_mangle_type): This. Use TYPE_MAIN_VARIANT and restrict
9301 mangled types to VOID_TYPE, BOOLEAN_TYPE, INTEGER_TYPE, REAL_TYPE.
9302 (TARGET_MANGLE_FUNDAMENTAL_TYPE): Don't define.
9303 (TARGET_MANGLE_TYPE): Define this instead.
9304 * config/rs6000/rs6000.c (rs6000_mangle_fundamental_type): Rename
9305 to...
9306 (rs6000_mangle_type): This. Use TYPE_MAIN_VARIANT.
9307 (TARGET_MANGLE_FUNDAMENTAL_TYPE): Don't define.
9308 (TARGET_MANGLE_TYPE): Define this instead.
9309 * config/s390/s390.c (s390_mangle_fundamental_type): Rename to...
9310 (s390_mangle_type): This.
9311 (TARGET_MANGLE_FUNDAMENTAL_TYPE): Don't define.
9312 (TARGET_MANGLE_TYPE): Define this instead.
9313 * config/sparc/sparc.c (sparc_mangle_fundamental_type): Rename to...
9314 (sparc_mangle_type): This.
9315 (TARGET_MANGLE_FUNDAMENTAL_TYPE): Don't define.
9316 (TARGET_MANGLE_TYPE): Define this instead.
9317 * cp/mangle.c (write_type): Call mangle_type target hook on all
9318 types before mangling. Use original type, not main variant, as
9319 argument.
9320 * target-def.h (TARGET_MANGLE_FUNDAMENTAL_TYPE): Rename hook to...
9321 (TARGET_MANGLE_TYPE): This.
9322 * target.h (gcc_target): Rename mangle_fundamental_type to
9323 mangle_type.
9324 * doc/tm.texi (TARGET_MANGLE_FUNDAMENTAL_TYPE): Rename section to...
9325 (TARGET_MANGLE_TYPE): This. Note slightly different semantics.
9326
9327 2007-07-25 Julian Brown <julian@codesourcery.com>
9328 Paul Brook <paul@codesourcery.com>
9329 Joseph Myers <joseph@codesourcery.com>
9330 Mark Shinwell <shinwell@codesourcery.com>
9331
9332 * Makefile.in (TEXI_GCC_FILES): Add arm-neon-intrinsics.texi.
9333 * config.gcc (arm*-*-*): Add arm_neon.h to extra headers.
9334 (with_fpu): Allow --with-fpu=neon.
9335 * config/arm/aof.h (ADDITIONAL_REGISTER_NAMES): Add Q0-Q15.
9336 * config/arm/aout.h (ADDITIONAL_REGISTER_NAMES): Add Q0-Q15.
9337 * config/arm/arm-modes.def (EI, OI, CI, XI): New modes.
9338 * config/arm/arm-protos.h (neon_immediate_valid_for_move)
9339 (neon_immediate_valid_for_logic, neon_output_logic_immediate)
9340 (neon_pairwise_reduce, neon_expand_vector_init, neon_reinterpret)
9341 (neon_emit_pair_result_insn, neon_disambiguate_copy)
9342 (neon_vector_mem_operand, neon_struct_mem_operand, output_move_quad)
9343 (output_move_neon): Add prototypes.
9344 * config/arm/arm.c (FL_NEON): New flag for NEON processor capability.
9345 (all_fpus): Add FPUTYPE_NEON.
9346 (fp_model_for_fpu): Add NEON field.
9347 (arm_return_in_memory): Return vectors <= 16 bytes in ARM registers.
9348 (arm_arg_partial_bytes): Allow NEON vectors to be passed partially
9349 in registers.
9350 (arm_legitimate_address_p): Don't support fancy addressing for NEON
9351 structure moves.
9352 (thumb2_legitimate_address_p): Likewise.
9353 (neon_valid_immediate): Recognize and prepare constants suitable for
9354 NEON instructions.
9355 (neon_immediate_valid_for_move): New function. Recognize and prepare
9356 immediates for NEON move instructions.
9357 (neon_immediate_valid_for_logic): New function. Recognize and
9358 prepare immediates for NEON logic instructions.
9359 (neon_output_logic_immediate): New function. Create asm string
9360 suitable for outputting immediate logic instructions.
9361 (neon_pairwise_reduce): New function. Implement reduction using
9362 pairwise operations.
9363 (neon_expand_vector_init): New function. Expand a (possibly
9364 non-constant) vector initialization.
9365 (neon_vector_mem_operand): New function. Memory operands supported
9366 for quad-word loads/stores to/from ARM or NEON registers. Don't
9367 allow base+offset addressing for core regs.
9368 (neon_struct_mem_operand): New function. Valid mems for NEON
9369 structure moves.
9370 (coproc_secondary_reload_class): Enable NEON registers to be loaded
9371 from neon_vector_mem_operand addresses without a secondary register.
9372 (add_minipool_forward_ref): Handle >8-byte minipool entries.
9373 (add_minipool_backward_ref): Likewise.
9374 (dump_minipool): Likewise.
9375 (push_minipool_fix): Likewise.
9376 (output_move_quad): New function. Output quad-word moves, loads and
9377 stores using ARM registers.
9378 (output_move_vfp): Add support for vectors in VFP (NEON) D
9379 registers.
9380 (output_move_neon): Output a NEON load/store to/from a quadword
9381 register.
9382 (arm_print_operand): Implement new codes:
9383 - 'c' for unadorned integers (without a # sign).
9384 - 'J', 'K' for reg+2/reg+3, reg+3/reg+2 in little/big-endian
9385 mode.
9386 - 'e', 'f' for the low and high D parts of a NEON Q register.
9387 - 'q' outputs a NEON Q register.
9388 - 'h' outputs ranges of D registers for VLDM/VSTM etc.
9389 - 'T' prints NEON opcode features from a coded bitmask.
9390 - 'F' is similar to T, but signed/unsigned codes both print as
9391 'i'.
9392 - 't' is similar to T, but 'u' is printed instead of 'p'.
9393 - 'O' prints 'r' if NEON instruction should perform rounding (as
9394 specified by bitmask), else prints nothing.
9395 - '#' is a punctuation character to stop operand numbers from
9396 running together with following digits in the assembler
9397 strings for instructions (when using mode attributes).
9398 (arm_assemble_integer): Handle extra NEON vector modes. Permute
9399 constant vectors in big-endian mode, where necessary.
9400 (arm_hard_regno_mode_ok): Allow vectors in VFP/NEON registers.
9401 Handle EI, OI, CI, XI modes.
9402 (ashlv4hi3, ashlv2si3, lshrv4hi3, lshrv2si3, ashrv4hi3)
9403 (ashrv2si3): Rename IWMMXT2_BUILTINs to...
9404 (ashlv4hi3_iwmmxt, ashlv2si3_iwmmxt, lshrv4hi3_iwmmxt)
9405 (lshrv2si3_iwmmxt, ashrv4hi3_iwmmxt, ashrv2si3_iwmmxt): New names.
9406 (neon_builtin_type_bits): Add enumeration, one bit for each vector
9407 type.
9408 (v8qi_UP, v4hi_UP, v2si_UP, v2sf_UP, di_UP, v16qi_UP, v8hi_UP)
9409 (v4si_UP, v4sf_UP, v2di_UP, ti_UP, ei_UP, oi_UP, UP): Define macros
9410 to turn v8qi, etc. into bits defined above.
9411 (neon_itype): New enumeration. Classifications of NEON builtins.
9412 (neon_builtin_datum): Define struct. Contains information about
9413 a single builtin (with multiple modes).
9414 (CF): Define helper macro for...
9415 (VAR1...VAR10): Define builtins with a type, name and 1-10 different
9416 modes.
9417 (neon_builtin_data): New array. Define information about builtins
9418 for use during initialization/expansion.
9419 (arm_init_neon_builtins): New function.
9420 (arm_init_builtins): Call arm_init_neon_builtins if TARGET_NEON is
9421 true.
9422 (neon_builtin_compare): New function.
9423 (locate_neon_builtin_icode): New function. Find an insn code for a
9424 builtin given a function code for that builtin. Also return type of
9425 builtin (NEON_BINOP, NEON_UNOP etc.).
9426 (builtin_arg): New enumeration. Types of arguments for builtins.
9427 (arm_expand_neon_args): New function. Expand a generic NEON builtin.
9428 Takes a variable argument list of builtin_arg types, terminated by
9429 NEON_ARG_STOP.
9430 (arm_expand_neon_builtin): New function. Expand a NEON builtin.
9431 (neon_reinterpret): New function. Expand NEON reinterpret intrinsic.
9432 (neon_emit_pair_result_insn): New function. Support returning pairs
9433 of vectors via a pointer.
9434 (neon_disambiguate_copy): New function. Set up operands for a
9435 multi-word copy such that registers do not get clobbered.
9436 (arm_expand_builtin): Call arm_expand_neon_builtin if fcode >=
9437 ARM_BUILTIN_NEON_BASE.
9438 (arm_file_start): Set float-abi attribute for NEON.
9439 (arm_vector_mode_supported_p): Enable NEON vector modes.
9440 (arm_mangle_map_entry): New.
9441 (arm_mangle_map): New.
9442 (arm_mangle_vector_type): New.
9443 * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Define __ARM_NEON__
9444 when appropriate.
9445 (TARGET_NEON): New macro. Target supports NEON.
9446 (fputype): Add FPUTYPE_NEON.
9447 (UNITS_PER_SIMD_WORD): Define. Allow quad-word registers to be used
9448 for vectorization based on command-line arg.
9449 (NEON_REGNO_OK_FOR_NREGS): Define.
9450 (VALID_NEON_DREG_MODE, VALID_NEON_QREG_MODE)
9451 (VALID_NEON_STRUCT_MODE): Define.
9452 (PRINT_OPERAND_PUNCT_VALID_P): '#' is valid punctuation.
9453 (arm_builtins): Add ARM_BUILTIN_NEON_BASE.
9454 * config/arm/arm.md (VUNSPEC_POOL_16): Insert constant for unspec.
9455 (consttable_16): Add pattern for outputting 16-byte minipool
9456 entries.
9457 (movv2si, movv4hi, movv8qi): Remove blank expanders (redefined in
9458 vec-common.md).
9459 (vec-common.md, neon.md): Include md files.
9460 * config/arm/arm.opt (mvectorize-with-neon-quad): Add option.
9461 * config/arm/constraints.md (constraint "Dn", "Dl", "DL"): Define.
9462 (memory_constraint "Ut", "Un", "Us"): Define.
9463 * config/arm/iwmmxt.md (VMMX, VSHFT): New mode macros.
9464 (MMX_char): New mode attribute.
9465 (addv8qi3, addv4hi3, addv2si3): Remove. Replace with...
9466 (*add<mode>3_iwmmxt): New insn pattern.
9467 (subv8qi3, subv4hi3, subv2si3): Remove. Replace with...
9468 (*sub<mode>3_iwmmxt): New insn pattern.
9469 (mulv4hi3): Rename to...
9470 (*mulv4hi3_iwmmxt): This.
9471 (smaxv8qi3, smaxv4hi3, smaxv2si3, umaxv8qi3, umaxv4hi3)
9472 (umaxv2si3, sminv8qi3, sminv4hi3, sminv2si3, uminv8qi3)
9473 (uminv4hi3, uminv2si3): Remove. Replace with...
9474 (*smax<mode>3_iwmmxt, *umax<mode>3_iwmmxt, *smin<mode>3_iwmmxt)
9475 (*umin<mode>3_iwmmxt): These.
9476 (ashrv4hi3, ashrv2si3, ashrdi3_iwmmxt): Replace with...
9477 (ashr<mode>3_iwmmxt): This new pattern.
9478 (lshrv4hi3, lshrv2si3, lshrdi3_iwmmxt): Replace with...
9479 (lshr<mode>3_iwmmxt): This new pattern.
9480 (ashlv4hi3, ashlv2si3, ashldi3_iwmmxt): Replace with...
9481 (ashl<mode>3_iwmmxt): This new pattern.
9482 * config/arm/neon-docgen.ml: New file. Generate documentation for
9483 intrinsics.
9484 * config/arm/neon-gen.ml: New file. Generate arm_neon.h header.
9485 * config/arm/arm_neon.h: New (autogenerated).
9486 * config/arm/neon-testgen.ml: New file. Generate NEON tests
9487 automatically.
9488 * config/arm/neon.md: New file. Define NEON instructions.
9489 * config/arm/neon.ml: New file. Abstract description of NEON
9490 instructions, used to generate arm_neon.h header, documentation and
9491 tests.
9492 * config/arm/t-arm (MD_INCLUDES): Add vec-common.md, neon.md.
9493 * vec-common.md: New file. Shared parts for iWMMXt and NEON vector
9494 support.
9495 * doc/extend.texi (ARM Built-in Functions): Rename and remove
9496 extraneous comma.
9497 (ARM NEON Intrinsics): New subsection.
9498 * doc/arm-neon-intrinsics.texi: New (autogenerated).
9499
9500 2007-07-25 Danny Smith <dannysmith@users.sourceforge.net>
9501
9502 * config/i386/i386-protos.h (i386_pe_asm_file_end): Remove
9503 prototype.
9504
9505 2007-07-24 Jan Hubicka <jh@suse.cz>
9506
9507 * regclass.c (move_table): New type.
9508 (move_cost, may_move_in_cost, may_move_out_cost): Use it.
9509 (init_move_cost): Break out from ...
9510 (init_reg_sets_1): ... here; simplify computation of
9511 have_regs-of_mode and contains_reg_of_mode.
9512 (record_reg_classes): Unswitch internal loops.
9513 (copy_cost): Trigger lazy initialization of move cost
9514 (record_address_regs): Likewise.
9515
9516 2007-07-24 Daniel Berlin <dberlin@dberlin.org>
9517
9518 * config/darwin.c (darwin_override_options): Don't force on
9519 flag_var_tracking_uninit when no debug info is requested.
9520
9521 2007-07-25 Zdenek Dvorak <dvorakz@suse.cz>
9522
9523 * cfgloop.c (init_loops_structure): New function.
9524 (flow_loops_find): Create root of the loop tree unconditionally.
9525
9526 2007-07-24 Daniel Jacobowitz <dan@codesourcery.com>
9527
9528 * tree-ssa-ccp.c (fold_const_aggregate_ref): Use fold_convert.
9529
9530 2007-07-24 Jan Hubicka <jh@suse.cz>
9531
9532 * caller-save.c: Include ggc.h, gt-caller-save.h
9533 (reg_save_code, reg_restore_code): Rename to ...
9534 (cached_reg_save_code, cached_reg_restore_code): ... those.
9535 (savepat, restpat, test_reg, test_mem, saveinsn, restinsn): New.
9536 (reg_save_code, reg_restore_code): New functions.
9537 (init_caller_save): Do not intialize
9538 reg_save_code/reg_restore_code tables.
9539 * Makefile.in: (gt-caller-save.h): New.
9540
9541 2007-07-24 Andreas Krebbel <krebbel1@de.ibm.com>
9542
9543 * tree-ssa-ifcombine.c (ifcombine_ifandif): Use a ONE operand
9544 with the mode of the original operand instead of
9545 integer_one_node.
9546
9547 2007-07-23 Jan Hubicka <jH@suse.cz>
9548
9549 * i386.c (ix86_secondary_memory_needed): Break out to...
9550 (inline_secondary_memory_needed): ... here.
9551 (ix86_memory_move_cost): Break out to ...
9552 (inline_memory_move_cost): ... here; add support for IN value of 2 for
9553 maximum of input and output; fix handling of Q_REGS on 64bit.
9554 (ix86_secondary_memory_needed): Microoptimize.
9555
9556 2007-07-23 Sebastian Pop <sebpop@gmail.com>
9557
9558 * tree-data-ref.c (find_vertex_for_stmt, create_rdg_edge_for_ddr,
9559 create_rdg_edges_for_scalar, create_rdg_edges, create_rdg_vertices,
9560 stmts_from_loop, known_dependences_p, build_rdg): New.
9561 * tree-data-ref.h: Depends on graphds.h.
9562 (rdg_vertex, RDGV_STMT, rdg_dep_type, rdg_edge, RDGE_TYPE): New.
9563 (build_rdg): Declared.
9564 * Makefile.in (TREE_DATA_REF_H): Depends on graphds.h.
9565
9566 2007-07-23 Daniel Berlin <dberlin@dberlin.org>
9567
9568 * tree-ssa-propagate.c (valid_gimple_expression_p): Match up with
9569 ccp_min_invariant.
9570
9571 2007-07-23 Peter Bergner <bergner@vnet.ibm.com>
9572 Jakub Jelinek <jakub@redhat.com>
9573
9574 PR middle-end/PR28690
9575 * optabs.c (expand_binop): (emit_cmp_and_jump_insns): Allow
9576 EQ compares.
9577 * rtlanal.c (commutative_operand_precedence): Prefer both REG_POINTER
9578 and MEM_POINTER operands over REG and MEM operands.
9579 (swap_commutative_operands_p): Change return value to bool.
9580 * rtl.h: Update the corresponding prototype.
9581 * tree-ssa-address.c (gen_addr_rtx): Use simplify_gen_binary
9582 instead of gen_rtx_PLUS.
9583 * simplify-rtx.c (simplify_plus_minus_op_data_cmp): Change return
9584 value to bool. Change function arguments to rtx's and update code
9585 to match.
9586 (simplify_plus_minus): Update the simplify_plus_minus_op_data_cmp
9587 calls to match the new declaration.
9588 * simplify-rtx.c (simplify_associative_operation): Don't
9589 reorder simplify_binary_operation arguments.
9590
9591 2007-07-23 Richard Sandiford <richard@codesourcery.com>
9592
9593 * config/mips/mips.c (override_options): Use mips_costs to derive
9594 the default branch cost.
9595 * config/mips/mips.h (BRANCH_COST): Use mips_branch_cost rather
9596 than mips_costs.
9597 * config/mips/mips.opt (mbranch-cost=): New option.
9598 * doc/invoke.texi (-mbranch-cost): Document new MIPS option.
9599
9600 2007-07-23 Richard Sandiford <richard@codesourcery.com>
9601
9602 * config/mips/mips.h (GR_REG_CLASS_P, COP_REG_CLASS_P): Delete.
9603 (SECONDARY_MEMORY_NEEDED): Delete commented-out definition.
9604 * config/mips/mips.c (mips_register_move_cost): Use reg_class_subset_p
9605 instead of GR_REG_CLASS_P and COP_REG_CLASS_P.
9606
9607 2007-07-23 Richard Sandiford <richard@codesourcery.com>
9608
9609 * config/mips/constraints.md (ks): New constraint.
9610 * config/mips/mips.md (*add<mode>3_sp1, *add<mode>3_sp2): Fold into...
9611 (*add<mode>3_mips16): ...here.
9612
9613 2007-07-21 Uros Bizjak <ubizjak@gmail.com>
9614
9615 * optabs.h (enum optab_index): Add new OTI_signbit.
9616 (signbit_optab): Define corresponding macro.
9617 (enum insn_code signbit_optab[]): Remove array.
9618 * optabs.c (init_optabs): Initialize signbit_optab using init_optab.
9619 (expand_copysign_absneg): If back end provides signbit insn, use it
9620 instead of bit operations on floating point argument.
9621 * builtins.c (enum insn_code signbit_optab[]): Remove array.
9622 (expand_builtin_signbit): Check signbit_optab->handlers[].insn_code
9623 for availability of signbit insn.
9624
9625 * config/i386/i386.md (signbit<mode>2): New insn pattern to implement
9626 signbitf, signbit and signbitl built-ins as inline x87 intrinsics when
9627 SSE mode is not active.
9628 (isinf<mode>2): Disable for mfpmath=sse,387.
9629
9630 2007-07-22 Ben Elliston <bje@au.ibm.com>
9631
9632 * regclass.c (invalid_mode_change_p): Attach ATTRIBUTE_UNUSED to
9633 `class' parameter.
9634 * struct-equiv.c (note_local_live): Likewise for `y_regno'.
9635
9636 2007-07-20 Richard Guenther <rguenther@suse.de>
9637
9638 * tree-cfg.c (verify_expr): COND_EXPRs can have any
9639 integral typed condition.
9640 * tree-ssa.c (useless_type_conversion_p): Do not preserve
9641 booleanness. Only preserve conversions from a non-base
9642 type to a base type, not in general between types with
9643 different TYPE_MIN_VALUE or TYPE_MAX_VALUE.
9644 * tree.def (COND_EXPR): Document that the condition
9645 can be of any integral type.
9646
9647 2007-07-20 Nigel Stephens <nigel@mips.com>
9648 Richard Sandiford <richard@codesourcery.com>
9649
9650 * config/mips/mips.h (mips_dwarf_regno): Declare.
9651 (DBX_REGISTER_NUMBER): Remove redundant brackets.
9652 (HI_REGNUM, LO_REGNUM): Define in an endian-dependent way.
9653 (AC1HI_REGNUM, AC1LO_REGNUM, AC2HI_REGNUM, AC2LO_REGNUM)
9654 (AC3HI_REGNUM, AC3LO_REGNUM, ACC_HI_REG_P): Delete.
9655 (reg_class): Rename HI_REG to MD0_REG and LO_REG to MD1_REG.
9656 (REG_CLASS_NAMES): Update accordingly.
9657 * config/mips/mips.c (mips_dwarf_regno): New array.
9658 (mips_regno_to_class): Rename HI_REG to MD0_REG and LO_REG to MD1_REG.
9659 (mips_subword): Remove special handling for accumulator registers.
9660 (override_options): Initiailize mips_dwarf_regno. Remove use
9661 of ACC_HI_REG_P.
9662 (mips_swap_registers): New function.
9663 (mips_conditional_register_usage): Swap accumulator registers
9664 around if TARGET_LITTLE_ENDIAN.
9665 (mips_cannot_change_mode_class): Remove special treatment of ACC_REGS.
9666 * config/mips/constraints.md (h, l): Use the endianness to choose
9667 between MD0_REG and MD1_REG.
9668 * config/mips/mips.md (*mfhilo_<mode>_macc): Use a fixed-string,
9669 alternative-dependent template.
9670
9671 2007-07-20 Richard Sandiford <richard@codesourcery.com>
9672
9673 * config/arm/arm.md (movsi): Use can_create_pseudo_p instead of
9674 no_new_pseudos.
9675
9676 2007-07-20 Zdenek Dvorak <dvorakz@suse.cz>
9677
9678 * function.c (thread_prologue_and_epilogue_insns): Fix exit
9679 predecessor fallthru flags.
9680
9681 2007-07-20 Zdenek Dvorak <dvorakz@suse.cz>
9682
9683 * tree-ssa-loop-niter.c (assert_loop_rolls_lt): Convert the operands
9684 of compare to the same type.
9685 * cfgloopmanip.c (add_loop): Update information about loop exits.
9686 (loop_version): Remove the innermost loop requirement.
9687 * tree-ssa-loop-manip.c (determine_exit_conditions): Convert bounds
9688 to sizetype for pointers.
9689
9690 2007-07-18 H.J. Lu <hongjiu.lu@intel.com>
9691
9692 * Makefile.in (D32PBIT_FUNCS): Add _sd_to_tf and _tf_to_sd.
9693 (D64PBIT_FUNCS): Add _dd_to_tf and _tf_to_dd.
9694 (D128PBIT_FUNCS): Add _td_to_tf and _tf_to_td.
9695
9696 * config/dfp-bit.c: Empty for TFmode conversions.
9697
9698 2007-07-18 Caroline Tice <ctice@apple.com>
9699
9700 * var-tracking.c (find_src_status): Check for COND_EXEC insns
9701 and handle them correctly; check that src is not NULL before
9702 trying to use it.
9703 (find_src_set_src): Likewise.
9704
9705 2007-07-18 Bob Wilson <bob.wilson@acm.org>
9706
9707 * config/xtensa/xtensa.c (xtensa_expand_mask_and_shift): New.
9708 (struct alignment_context, init_alignment_context): New.
9709 (xtensa_expand_compare_and_swap, xtensa_expand_atomic): New.
9710 * config/xtensa/xtensa.h (XCHAL_HAVE_RELEASE_SYNC): Add default.
9711 (XCHAL_HAVE_S32C1I): Likewise.
9712 (TARGET_RELEASE_SYNC, TARGET_S32C1I): New.
9713 * config/xtensa/xtensa.md (UNSPECV_MEMW): New constant.
9714 (UNSPECV_S32RI, UNSPECV_S32C1I): Likewise.
9715 (ATOMIC, HQI): New macros.
9716 (memory_barrier, *memory_barrier): New.
9717 (sync_lock_releasesi): New.
9718 (sync_compare_and_swapsi, sync_compare_and_swap<mode>): New.
9719 (sync_lock_test_and_set<mode>): New.
9720 (sync_<atomic><mode>): New.
9721 (sync_old_<atomic><mode>, sync_new_<atomic><mode>): New.
9722 * config/xtensa/xtensa-protos.h (xtensa_expand_compare_and_swap): New.
9723 (xtensa_expand_atomic): New.
9724
9725 2007-07-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9726
9727 PR target/30652
9728
9729 * builtins.c (expand_builtin_interclass_mathfn): Provide a generic
9730 transformation for builtin ISNORMAL.
9731 (expand_builtin): Handle BUILT_IN_ISNORMAL.
9732 * builtins.def (BUILT_IN_ISNORMAL): New.
9733 * doc/extend.texi: Document isnormal.
9734
9735 2007-07-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9736
9737 PR target/30652
9738
9739 * builtins.c (expand_builtin_interclass_mathfn): Allow for missing
9740 optabs infrastructure. Provide generic implementation for
9741 FINITE/ISFINITE.
9742 (expand_builtin): Handle FINITE/ISFINITE.
9743 (fold_builtin_classify): Make ISFINITE canonical instead of FINITE.
9744 (fold_builtin_1): Likewise.
9745
9746 * builtins.def (BUILT_IN_ISFINITE): New.
9747
9748 * doc/extend.texi: Document isfinite.
9749
9750 2007-07-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9751
9752 PR target/30652
9753 PR middle-end/20558
9754
9755 * builtins.c (expand_builtin_interclass_mathfn): Provide a
9756 generic fallback for isinf.
9757 * c-cppbuiltin.c (builtin_define_float_constants): Move FP max
9758 calculation code ...
9759 * real.c (get_max_float): ... to here.
9760 * real.h (get_max_float): New.
9761
9762 2007-07-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9763
9764 PR middle-end/32668
9765
9766 * builtin-attrs.def (ATTR_TYPEGENERIC,
9767 ATTR_CONST_NOTHROW_TYPEGENERIC): New.
9768
9769 * builtins.def (BUILT_IN_ISINF, BUILT_IN_ISNAN,
9770 BUILT_IN_ISGREATER, BUILT_IN_ISGREATEREQUAL, BUILT_IN_ISLESS,
9771 BUILT_IN_ISLESSEQUAL, BUILT_IN_ISLESSGREATER,
9772 BUILT_IN_ISUNORDERED): Use ATTR_CONST_NOTHROW_TYPEGENERIC.
9773
9774 * c-common.c (handle_type_generic_attribute): New.
9775 (c_common_attribute_table): Add "type generic".
9776
9777 * c-typeck.c (convert_arguments): Handle "type generic" functions.
9778
9779 2007-07-18 Daniel Berlin <dberlin@dberlin.org>
9780
9781 * tree-ssa-sccvn.c (try_to_simplify): Use valid_gimple_expression
9782 * tree-ssa-propagate (valid_gimple_expression): Handle ADDR_EXPR
9783 properly.
9784
9785 2007-07-18 Rask Ingemann Lambertsen <rask@sygehus.dk>
9786
9787 PR target/32808
9788 * config/cris/cris.c (cris_print_index): Don't use XEXP before
9789 checking that the operand is an expression.
9790
9791 2007-07-19 Christoph von Wittich <Christoph_vW@reactos.org>
9792 Danny Smith <dannysmith@users.sourceforge.net>
9793
9794 PR/other 30335
9795 * config/i386/host-mingw32.c (mingw32_gt_pch_use_address): Put
9796 file mapping object in local namespace if Windows version later
9797 than NT4
9798
9799 2007-07-18 Richard Sandiford <richard@codesourcery.com>
9800
9801 * config/arm/arm-protos.h (arm_cannot_force_const_mem): Declare.
9802 * config/arm/arm.c (TARGET_CANNOT_FORCE_CONST_MEM): Redefine to
9803 arm_cannot_force_const_mem.
9804 (arm_cannot_force_const_mem): New function.
9805 * config/arm/arm.h (ARM_OFFSETS_MUST_BE_WITHIN_SECTIONS_P): New macro.
9806 (LEGITIMATE_CONSTANT_P): Test arm_cannot_force_const_mem instead
9807 of arm_tls_referenced_p.
9808 * config/arm/arm.md (movsi): Split out-of-section constants when
9809 ARM_OFFSETS_MUST_BE_WITHIN_SECTIONS_P.
9810 * config/arm/vxworks.h (ARM_OFFSETS_MUST_BE_WITHIN_SECTIONS_P): Define.
9811
9812 2007-07-18 Richard Sandiford <richard@codesourcery.com>
9813
9814 * config/mips/mips.md (clear_cache): Treat the size argument as Pmode.
9815
9816 2007-07-18 Richard Sandiford <richard@codesourcery.com>
9817
9818 * config/mips/mips.md (*extendqihi2): Convert the destination
9819 to SImode.
9820
9821 2007-07-17 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
9822
9823 * config/pa/fptr.c: Update license header.
9824 * config/pa/milli64.S: Likewise.
9825
9826 2007-07-17 Nick Clifton <nickc@redhat.com>
9827
9828 * COPYING_v3: New file. Contains version 3 of the GNU General
9829 Public License.
9830 * COPYING.LIB_v3: New file. Contains version 3 of the GNU
9831 Lesser General Public License.
9832 * doc/include/gpl_v3.texi: New file. Contains version 3 of
9833 the GNU General Public License.
9834
9835 2007-07-17 Zdenek Dvorak <dvorakz@suse.cz>
9836
9837 PR rtl-optimization/32773
9838 * cfglayout.c (force_one_exit_fallthru): New function.
9839 (cfg_layout_finalize): Use it.
9840
9841 2007-07-16 Richard Guenther <rguenther@suse.de>
9842 Uros Bizjak <ubizjak@gmail.com>
9843
9844 * tree-if-conv.c (find_phi_replacement_condition): Unshare "*cond"
9845 before forcing it to gimple operand.
9846
9847 2007-07-16 Sandra Loosemore <sandra@codesourcery.com>
9848 David Ung <davidu@mips.com>
9849
9850 * config/mips/mips.h (TUNE_24K): Define.
9851 (TUNE_MACC_CHAINS): Add TUNE_24K.
9852 * config/mips/mips.md: (*mul_acc_si, *mul_sub_si): Change type to
9853 imadd.
9854 * config/mips/74k.md (r74k_int_mult): Split madd/msub to ..
9855 (r74k_int_madd): .. this new reservation.
9856 (define_bypass): Fixed bypasses for r74k_int_madd to use
9857 mips_linked_madd_p.
9858 * config/mips/24k.md (define_bypass): Define new
9859 r24k_int_mul3->r24k_int_madd bypass using mips_linked_madd_p.
9860
9861 2007-07-16 Sandra Loosemore <sandra@codesourcery.com>
9862 Nigel Stephens <nigel@mips.com>
9863
9864 * config/mips/mips.md: Include 20kc.md.
9865 * config/mips/20kc.md: New file.
9866 * config/mips/mips.c (mips_rtx_cost_data): Fill in 20Kc costs.
9867 (mips_adjust_cost): Tweak for 20Kc.
9868 (mips_issue_rate): Likewise.
9869 * config/mips/mips.h (TUNE_20KC): Define.
9870
9871 2007-07-16 David Edelsohn <edelsohn@gnu.og>
9872
9873 * config/rs6000/rs6000.c (struct processor_cost): Add
9874 cache_line_size, l1_cache_lines, and simultaneous_prefetches
9875 fields.
9876 (*_cost): Add cache information.
9877 (rs6000_override_options): Set cache parameters.
9878
9879 2007-07-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
9880
9881 PR bootstrap/3456
9882 * config.gcc (mips-sgi-irix[56]*): Enable pthread support.
9883 * doc/install.texi (mips-sgi-irix6): pthread support works now.
9884
9885 2007-07-16 Paul Brook <paul@codesourcery.com>
9886
9887 PR target/32753
9888 * config/arm/cirrus.md (cirrus_arm_movsi_insn): Remove dead insn.
9889 (cirrus_thumb2_movsi_insn): Ditto.
9890
9891 2007-07-15 Geoffrey Keating <geoffk@apple.com>
9892
9893 * config/rs6000/darwin-fallback.c (interpret_libc): Change
9894 CR2_REGNO to R_CR2.
9895
9896 2007-07-15 Andrew Haley <aph@redhat.com>
9897
9898 * unwind-sjlj.c (_Unwind_GetIPInfo): Check for context->fc != NULL
9899 before looking in the context.
9900
9901 2007-07-15 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
9902
9903 PR middle-end/32398
9904 PR middle-end/32769
9905 * pa-protos.h (pa_eh_return_handler_rtx): Declare.
9906 * pa.c (pa_extra_live_on_entry, rp_saved): Declare.
9907 (TARGET_EXTRA_LIVE_ON_ENTRY): Define.
9908 (pa_output_function_prologue): Use rp_saved and
9909 current_function_is_leaf to generate .CALLINFO statement.
9910 (hppa_expand_prologue): Set rp_saved.
9911 (hppa_expand_epilogue): Use rp_saved.
9912 (pa_extra_live_on_entry, pa_eh_return_handler_rtx): New functions.
9913 * pa.h (EH_RETURN_HANDLER_RTX): Use pa_eh_return_handler_rtx.
9914
9915 2007-07-14 Dirk Mueller <dmueller@suse.de>
9916
9917 * omega.c (coalesce): Fix memory leak on early exit.
9918 * matrix-reorg.c (check_allocation_function): Likewise.
9919 * tree-vect-transform.c (vect_get_new_vect_var): free result
9920 of concat().
9921 * bb-reorder.c (find_rarely_executed_basic_blocks_and_crossing_edges):
9922 pass pointer to edge vector
9923 (partition_hot_cold_basic_blocks): Fix memory leak.
9924 * collect2.c (prefix_from_string): Free temporary storage.
9925 * reload1.c (fixup_abnormal_edges): Free sbitmap.
9926
9927 2007-07-14 Kaz Kojima <kkojima@gcc.gnu.org>
9928
9929 * config/sh/sh.h (DO_GLOBAL_CTORS_BODY): Add void to prototype.
9930 (DO_GLOBAL_DTORS_BODY): Likewise.
9931
9932 2007-07-14 Sandra Loosemore <sandra@codesourcery.com>
9933 Nigel Stephens <nigel@mips.com>
9934
9935 * config/mips/mips.c (mips_classify_symbol): Don't return
9936 SYMBOL_SMALL_DATA for constant pool addresses if
9937 TARGET_EMBEDDED_DATA is true.
9938
9939 2007-07-14 Uros Bizjak <ubizjak@gmail.com>
9940
9941 * config/i386/i386.c (init_mmx_sse_builtins): Define all builtins
9942 except __builtin_ia32_emms, __builtin_ia32_ldmxcsr,
9943 __builtin_ia32_stmxcsr, __builtin_ia32_maskmovq, __builtin_ia32_loadups,
9944 __builtin_ia32_storeups, __builtin_ia32_loadhps, __builtin_ia32_loadlps,
9945 __builtin_ia32_storehps, __builtin_ia32_storelps,
9946 __builtin_ia32_movntps, __builtin_ia32_movntq, __builtin_ia32_sfence,
9947 __builtin_ia32_femms, __builtin_ia32_maskmovdqu, __builtin_ia32_loadupd,
9948 __builtin_ia32_storeupd, __builtin_ia32_loadhpd, __builtin_ia32_loadlpd,
9949 __builtin_ia32_movnti, __builtin_ia32_movntpd, __builtin_ia32_movntdq,
9950 __builtin_ia32_clflush, __builtin_ia32_lfence, __builtin_ia32_mfence,
9951 __builtin_ia32_loaddqu, __builtin_ia32_storedqu, __builtin_ia32_monitor,
9952 __builtin_ia32_mwait, __builtin_ia32_lddqu, __builtin_ia32_movntdqa,
9953 __builtin_ia32_movntsd and __builtin_ia32_movntss as const builtins
9954 using def_builtin_const.
9955
9956 2007-07-14 Eric Botcazou <ebotcazou@adacore.com>
9957
9958 PR tree-optimization/32705
9959 * tree-ssa-sccvn.c (set_ssa_val_to): Accept VN_TOP as value number.
9960 (simplify_binary_expression): Use SSA_VAL consistently.
9961
9962 2007-07-13 David Edelsohn <edelsohn@gnu.org>
9963
9964 * config/rs6000/spe.md (SPE_ACC_REGNO): Delete definition.
9965 (SPEFSCR_REGNO): Delete definition.
9966 * config/rs6000/rs6000.c: LINK_REGISTER_REGNUM -> LR_REGNO.
9967 COUNT_REGISTER_REGNUM -> CTR_REGNO.
9968 * config/rs6000/rs6000.h: Do not define *_REGNO.
9969 LINK_REGISTER_REGNUM -> LR_REGNO.
9970 COUNT_REGISTER_REGNUM -> CTR_REGNO.
9971 * config/rs6000/predicates.md: LINK_REGISTER_REGNUM -> LR_REGNO.
9972 COUNT_REGISTER_REGNUM -> CTR_REGNO.
9973 * config/rs6000/linux-unwind.h: Define R_LR, R_CR2, R_VR0,
9974 R_VRSAVE, R_VSCR. Use them.
9975 * config/rs6000/darwin-fallback.c: Define R_LR, R_CTR, R_CR2,
9976 R_XER, R_VR0, R_VRSAVE, R_VSCR, R_SPEFSCR. Use them.
9977 * config/rs6000/rs6000.md: Define REGNO constants. Use them.
9978 * config/rs6000/aix.h: Define R_LR. Use it.
9979
9980 2007-07-13 Caroline Tice <ctice@apple.com>
9981
9982 * toplev.c (process_options): Turn flag_var_tracking_uninit off when
9983 flag_var_tracking is explicitly turned off (i.e. when variable
9984 tracking is not feasible); otherwise, turn flag_var_tracking on when
9985 flag_var_tracking_uninit is on.
9986 * rtl.def (VAR_LOCATION): Add a new integer subfield to VAR_LOCATION
9987 note definitions, to allow recording of initialization status in the
9988 notes.
9989 * dwarf2out.c (dwarf_stack_op_name): Add case for DW_OP_GNU_uninit.
9990 (add_var_loc_to_decl): Add comparison of NOTE_VAR_LOCATION_STATUS to
9991 determine if two note locations are equal.
9992 (output_loc_list): Don't output list entries whose start & end labels
9993 are the same.
9994 (reg_loc_descriptor): Add parameter for initialization status; pass it
9995 to other loc descriptor functions.
9996 (one_reg_loc_descriptor): Add parameter for initialization status;
9997 check its value and add DW_OP_GNU_uninit to returned loc descr if
9998 appropriate.
9999 (multiple_reg_loc_descriptor): Add parameter for initialization
10000 status;
10001 pass init status argument to other loc descriptor functions; check
10002 value of intialization parameter and add DW_OP_GNU_uninit to returned
10003 loc descr if appropriate.
10004 (based_loc_descr): Add parameter for initialization status; add new
10005 variable for return value; check value of initialization parameter and
10006 add DW_OP_GNU_uninit to returned loc descr if appropriate.
10007 (concatn_mem_loc_descriptor): Add parameter for initialization status;
10008 pass init status argument to other loc descriptor functions; check
10009 value of intialization parameter and add DW_OP_GNU_uninit to returned
10010 loc descr if appropriate.
10011 (mem_loc_descriptor): Likewise.
10012 (concat_loc_descriptor): Likewise.
10013 (concatn_loc_descriptor): Likewise.
10014 (loc_descriptor): Add parameter for initialization status; pass it as
10015 argument to other loc descriptor function calls.
10016 (loc_descriptor_from_tree_1): Add appropriate initialization status
10017 to loc descriptor function calls.
10018 (add_location_or_const_value_attribute): Get initialization status
10019 from VAR_LOCATION note; add initialization status to loc descriptor
10020 function calls.
10021 * dwarf2.h (enum dwarf_location_atom): New op, DW_OP_GNU_uninit.
10022 * print-rtl.c (print_rtx): When printing a VAR_LOCATION note, if
10023 status is uninitialized, add "[uninint]" to output.
10024 * common.opt (fvar-tracking-uninit): New option, similar to
10025 fvar-tracking, to turn on tracking of uninitialized variables; creates
10026 a new global flag, flag_var_tracking_uninit.
10027 * rtl.h (NOTE_VAR_LOCATION_STATUS): New macro for accessing new field.
10028 (enum var_init_status): New type, for var initialization status field.
10029 * var-tracking.c (struct location_chain_def): Two new fields, init,
10030 for initialization status, and set_src for the assignment value expr.
10031 (unshare_variable): New parameter for initialization status;
10032 initialize new init and set_src fields.
10033 (var_reg_set): New parameters for initialization status and value;
10034 pass them to set_variable_part.
10035 (var_mem_set): Likewise.
10036 (get_init_value): New function.
10037 (var_reg_delete_and_set): New initialization status & value
10038 parameters; add call to get_init_value if status is unknown; pass new
10039 parameters to clobber_variable_part and var_reg_set.
10040 (var_mem_delete_and_set): Likewise.
10041 (var_reg_delete): Pass null set_src value to clobber_variable_part.
10042 (var_mem_delete): Likewise.
10043 (variable_union): Pass status to unshare_variable; initialize new init
10044 and set_src fields. If flag_var_tracking_uninit is not set, force
10045 status to initialized.
10046 (add_stores): Store insn, rather than NEXT_INSN(insn), so it can be
10047 used later to get the set_src value.
10048 (find_src_status): New function.
10049 (find_src_set_src): New function.
10050 (compute_bb_dataflow): Pass init status to calls to var_reg_set,
10051 var_mem_set, var_reg_delete_and_set and var_mem_delete_and_set; for
10052 MO_SET, get set_src value and pass it to var_reg_delete_and_set
10053 and var_mem_delete_and_set.
10054 (dump_variable): Print out "[uninit]" if appropriate.
10055 (set_variable_part): Add new initialization and set_src parameters;
10056 pass status to unshare_variable; set node->init and node- >set_src
10057 fields and modify slot in hash table appropriately; save the init and
10058 set_src values if appropriate and assign to the new node.
10059 (clobber_variable_part): New set_src parameter; if two nodes have
10060 same variable and same location but different set_src (assignment)
10061 values, clobber old node.
10062 (delete_variable_part): Pass init status to unshare_variable.
10063 (emit_note_insn_var_location): Add initialized var; assign var's init
10064 status to new 'initialized'; pass new init status field to calls to
10065 gen_rtx_VAR_LOCATION. If flag_var_tracking_uninit is not set, force
10066 status to initialized.
10067 (emit_notes_in_bb): Pass initialization status to calls to
10068 var_reg_set, var_mem_set, var_reg_delete_and_set and
10069 var_mem_delete_and_set; for MO_SET, get set_src value and pass it to
10070 var_reg_delete_and_set and var_mem_delete_and_set; call
10071 emit_notes_for_changes on NEXT_INSN(insn) rather than on insn, to
10072 make up for change in add_stores.
10073 (vt_add_function_parameters): Add status to calls to
10074 set_variable_part.
10075 * config/darwin.c (darwin_override_options): Turn on uninitialized
10076 tracking automatically, if var_tracking is on and the system is
10077 10.5 or higher.
10078
10079 2007-07-13 Sa Liu <saliu@de.ibm.com>
10080
10081 * config.gcc: Add options for arch and tune on SPU.
10082 * config/spu/predicates.md: Add constant operands 0 and 1.
10083 * config/spu/spu-builtins.def: Add builtins for double precision
10084 floating point comparison: si_dfceq, si_dfcmeq, si_dfcgt, si_dfcmgt,
10085 si_dftsv, spu_cmpeq_13, spu_cmpabseq_1, spu_cmpgt_13, spu_cmpabsgt_1,
10086 spu_testsv.
10087 * config/spu/spu-c.c: Define __SPU_EDP__ when builtins invoked with
10088 a CELLEDP target.
10089 * config/spu/spu-protos.h: Add new function prototypes.
10090 * config/spu/spu.c (spu_override_options): Check options -march and
10091 -mtune.
10092 (spu_comp_icode): Add comparison code for DFmode and vector mode.
10093 (spu_emit_branch_or_set): Use the new code for DFmode and vector
10094 mode comparison.
10095 (spu_const_from_int): New. Create a vector constant from 4 ints.
10096 (get_vec_cmp_insn): New. Get insn index of vector compare instruction.
10097 (spu_emit_vector_compare): New. Emit vector compare.
10098 (spu_emit_vector_cond_expr): New. Emit vector conditional expression.
10099 * config/spu/spu.h: Add options -march and -mtune. Define processor
10100 types PROCESSOR_CELL and PROCESSOR_CELLEDP. Define macro
10101 CANONICALIZE_COMPARISON.
10102 * config/spu/spu.md: Add new insns for double precision compare
10103 and double precision vector compare. Add vcond and smax/smin patterns
10104 to enable DFmode vector conditional expression.
10105 * config/spu/spu.opt: Add options -march and -mtune.
10106 * config/spu/spu_internals.h: Add builtins for CELLEDP target:
10107 si_dfceq, si_dfcmeq, si_dfcgt, si_dfcmgt, si_dftsv. Add builtin for
10108 both CELL and CELLEDP targets: spu_testsv.
10109 * config/spu/spu_intrinsics.h: Add flag mnemonics for test special
10110 values.
10111
10112 2007-07-13 Richard Guenther <rguenther@suse.de>
10113
10114 PR tree-optimization/32721
10115 * tree-ssa-ccp.c (maybe_fold_stmt_indirect): Preserve
10116 TREE_THIS_VOLATILE on the folded reference.
10117 * tree-ssa-operands.c (get_expr_operands): Set has_volatile_ops
10118 if the array reference has TREE_THIS_VOLATILE set.
10119
10120 2007-07-13 H.J. Lu <hongjiu.lu@intel.com>
10121
10122 PR other/32188
10123 * doc/libgcc.texi: Update DFP intrinsics for DPD and BID.
10124
10125 2007-07-13 Andreas Schwab <schwab@suse.de>
10126
10127 * gengtype-lex.l: Allow declarations to be indented.
10128
10129 2007-07-12 Geoffrey Keating <geoffk@apple.com>
10130
10131 * ginclude/tgmath.h: New.
10132 * config.gcc: Use GCC's tgmath.h on non-glibc systems.
10133 * doc/sourcebuild.texi (Headers): Document use_gcc_tgmath.
10134 * configure.ac (STMP_FIXPROTO): Honor use_gcc_tgmath.
10135 * configure: Regenerate.
10136
10137 2007-07-13 Kaz Kojima <kkojima@gcc.gnu.org>
10138
10139 * config/sh/linux-unwind.h (sh_fallback_frame_state): Use
10140 correct index when setting register save state for xd
10141 registers.
10142
10143 2007-07-13 Kaz Kojima <kkojima@gcc.gnu.org>
10144
10145 * config/sh/sh.c (mark_use): Remove.
10146
10147 2007-07-12 Paul Brook <paul@codesourcery.com>
10148
10149 * config/arm/arm.c (thumb1_compute_save_reg_mask): Make sure scratch
10150 reg does not overlap return value.
10151
10152 2007-07-12 Daniel Berlin <dberlin@dberlin.org>
10153
10154 * tree-ssa-pre.c (get_expression_vuses): Move out side-effect.
10155 (set_expression_vuses): Ditto.
10156 (init_pre): Initialize expression_vuses.
10157
10158 2007-07-12 Zdenek Dvorak <dvorakz@suse.cz>
10159
10160 * config/i386/sse.md (storentdf, storentsf): New.
10161
10162 2007-07-12 Geoffrey Keating <geoffk@apple.com>
10163
10164 * builtins.c (get_pointer_alignment): Honor DECL_ALIGN on a
10165 FUNCTION_DECL.
10166 * tree.c (build_decl_stat): Move code from here...
10167 (make_node_stat): ... to here. Don't uselessly clear DECL_USER_ALIGN.
10168 (expr_align): Honor DECL_ALIGN on a FUNCTION_DECL. Add comment
10169 about using DECL_ALIGN of LABEL_DECL and CONST_DECL.
10170 * tree.h (DECL_USER_ALIGN): Fix misplaced comment.
10171 * varasm.c (assemble_start_function): Use DECL_ALIGN instead of
10172 FUNCTION_BOUNDARY.
10173
10174 2007-07-12 Dorit Nuzman <dorit@il.ibm.com>
10175 Devang Patel <dpatel@apple.com>
10176
10177 PR tree-optimization/25413
10178 * targhooks.c (default_builtin_vector_alignment_reachable): New.
10179 * targhooks.h (default_builtin_vector_alignment_reachable): New.
10180 * tree.h (contains_packed_reference): New.
10181 * expr.c (contains_packed_reference): New.
10182 * tree-vect-analyze.c (vector_alignment_reachable_p): New.
10183 (vect_enhance_data_refs_alignment): Call
10184 vector_alignment_reachable_p.
10185 * target.h (vector_alignment_reachable): New builtin.
10186 * target-def.h (TARGET_VECTOR_ALIGNMENT_REACHABLE): New.
10187 * config/rs6000/rs6000.c (rs6000_vector_alignment_reachable): New.
10188 (TARGET_VECTOR_ALIGNMENT_REACHABLE): Define.
10189
10190 2007-07-12 Dorit Nuzman <dorit@il.ibm.com>
10191
10192 * target.h (builtin_vectorization_cost): Add new target builtin.
10193 * target-def.h (TARGET_VECTORIZE_BUILTIN_VECTORIZATION_COST): New.
10194 * tree-vectorizer.h (TARG_SCALAR_STMT_COST): New.
10195 (TARG_SCALAR_LOAD_COST, TARG_SCALAR_STORE_COST): New.
10196 * tree-vect-analyze.c (vect_analyze_slp_instance): Initisliaze
10197 uninitialized variables.
10198 * tree-vect-transform.c (cost_for_stmt): New function.
10199 (vect_estimate_min_profitable_iters): Call cost_for_stmt instead of
10200 using cost 1 for all scalar stmts. Be less conservative when
10201 estimating the number of prologue/epulogue iterations. Call
10202 targetm.vectorize.builtin_vectorization_cost. Return
10203 min_profitable_iters-1.
10204 (vect_model_reduction_cost): Use TARG_SCALAR_TO_VEC_COST for
10205 initialization cost instead of TARG_VEC_STMT_COST. Use
10206 TARG_VEC_TO_SCALAR_COST instead of TARG_VEC_STMT_COST for reduction
10207 epilogue code. Fix epilogue cost computation.
10208 * config/spu/spu.c (spu_builtin_vectorization_cost): New.
10209 (TARGET_VECTORIZE_BUILTIN_VECTORIZATION_COST): Implement.
10210 * config/spu/spu.h (TARG_COND_BRANCH_COST, TARG_SCALAR_STMT_COST):
10211 (TARG_SCALAR_LOAD_COST, TARG_SCALAR_STORE_COST, TARG_VEC_STMT_COST):
10212 (TARG_VEC_TO_SCALAR_COST, TARG_SCALAR_TO_VEC, TARG_VEC_LOAD_COST):
10213 (TARG_VEC_UNALIGNED_LOAD_COST, TARG_VEC_STORE_COST): Define.
10214
10215 2007-07-12 Richard Guenther <rguenther@suse.de>
10216
10217 * gimplify.c (gimplify_conversion): Make sure that the result
10218 from maybe_fold_offset_to_reference is trivially convertible
10219 to the desired type before doing the simplification.
10220 (gimplify_expr): Likewise.
10221 * fold-const.c (fold_binary): Use the correct types for
10222 building the simplified expression.
10223
10224 2007-07-12 Zdenek Dvorak <dvorakz@suse.cz>
10225
10226 PR rtl-optimization/32729
10227 * cfghooks.c (can_duplicate_block_p): Do not forbid duplicating blocks
10228 that fallthru to exit.
10229
10230 2007-07-12 Kaz Kojima <kkojima@gcc.gnu.org>
10231
10232 * config/sh/sh.md (symGOTOFF2reg): Add missing parenthesis.
10233 (symDTPOFF2reg): Likewise.
10234
10235 2007-07-11 Daniel Berlin <dberlin@dberlin.org>
10236
10237 PR tree-optimization/32663
10238
10239 * tree.h (VALUE_HANDLE_VUSES): Remove.
10240 (struct tree_value_handle): Remove vuses.
10241
10242 * tree-vn.c (create_value_handle_for_expr): Don't set
10243 VALUE_HANDLE_VUSES.
10244
10245 * tree-ssa-pre.c (expression_vuses): New.
10246 (alloc_expression_id): Set up expression_vuses.
10247 (get_expression_vuses): New.
10248 (set_expression_vuses): Ditto.
10249 (clear_expression_ids): Modify for expression_vuses.
10250 (phi_translate_1): Ditto.
10251 (phi_translate_set): Ditto.
10252 (value_dies_in_block_x): Ditto
10253 (valid_in_sets): Ditto.
10254 (add_to_sets): Ditto.
10255 (find_existing_value_expr): Ditto.
10256 (create_value_handle_for_expr): Ditto.
10257 (make_values_for_stmt): Ditto.
10258 (vuse_equiv): Remove.
10259
10260 2007-07-11 Alexandre Oliva <aoliva@redhat.com>
10261
10262 * Makefile.in (mostlyclean): Remove object files.
10263
10264 2007-07-11 Kenneth Zadeck <zadeck@naturalbridge.com>
10265
10266 * toplev.c (no_new_pseudos): Deleted.
10267 * rtl.h (no_new_pseudos): Deleted.
10268 * tree-pass.h (pass_no_new_pseudos): Deleted.
10269 * passes.c (pass_no_new_pseudos): Deleted.
10270 * final.c (rest_of_clean_state): Removed no_new_pseudos.
10271 (rest_of_no_new_pseudos, pass_no_new_pseudos): Deleted.
10272 * struct-equiv.c (rtx_equiv_p): Replaced no_new_pseudos with
10273 reload_completed.
10274 * cfgcleanup.c (try_crossjump_to_edge): Ditto.
10275 * rtlhooks.c (gen_lowpart_general): Ditto.
10276 * optabs.c (prepare_operand): Ditto.
10277 * mode-switching.c (rest_of_handle_mode_switching): Deleted set of
10278 no_new_pseudos.
10279 * modulo-sched.c (rest_of_handle_sms): Ditto.
10280 * see.c (rest_of_handle_see): Ditto.
10281 * ifcvt.c (if_convert): Ditto.
10282 (gate_handle_if_after_combine): Replaced no_new_pseudos with
10283 reload_completed.
10284 * init-regs.c (gate_initialize_regs): Deleted set of
10285 no_new_pseudos.
10286 * lower-subreg.c (decompose_multiword_subregs): Ditto.
10287 * bb-reorder.c (rest_of_handle_partition_blocks): Ditto.
10288 * doc/md.texi: Changed no_new_pseudos to can_create_pseudo_p.
10289
10290 2007-07-11 Uros Bizjak <ubizjak@gmail.com>
10291
10292 PR target/32661
10293 * config/i386/sse.md (*sse2_storeq_rex64): Handle 64bit mem->reg moves.
10294 (*vec_extractv2di_1_sse2): Disable for TARGET_64BIT.
10295 (*vec_extractv2di_1_rex64): New insn pattern.
10296
10297 2007-07-11 David Daney <ddaney@avtrex.com>
10298
10299 * config/mips/linux-unwind.h (mips_fallback_frame_state): Rewrite
10300 return address calculation. Substitute DWARF_ALT_FRAME_RETURN_COLUMN
10301 for SIGNAL_UNWIND_RETURN_COLUMN.
10302 * config/mips/mips.h (SIGNAL_UNWIND_RETURN_COLUMN): Remove.
10303 (DWARF_FRAME_REGNUM): Rewrite.
10304 (DWARF_ALT_FRAME_RETURN_COLUMN) Define.
10305
10306 2007-07-11 Nick Clifton <nickc@redhat.com>
10307
10308 * config/m32r/m32r.h (INITIALIZE_TRAMPOLINE): Revert previous
10309 delta and use gen_int_mode in place of GET_INT instead.
10310
10311 2007-07-11 Uros Bizjak <ubizjak@gmail.com>
10312
10313 * reg-stack.c (struct tree_opt_pass pass_stack_regs): Nullify name
10314 and letter field.
10315
10316 2007-07-11 Douglas Gregor <doug.gregor@gmail.com>
10317
10318 * params.def (PARAM_VERIFY_CANONICAL_TYPES): Remove.
10319 (PARAM_USE_CANONICAL_TYPES): New; decides whether to use canonical
10320 types or not.
10321 * params.h (VERIFY_CANONICAL_TYPES): Remove.
10322 (USE_CANONICAL_TYPES): New.
10323 * doc/invoke.texi (verify-canonical-types): Remove.
10324 (use-canonical-types): Add.
10325
10326 2007-07-11 Ulrich Weigand <uweigand@de.ibm.com>
10327
10328 * config/spu/spu.c (spu_optimization_options): Remove setting of
10329 parameter PARAM_MAX_COMPLETELY_PEEL_TIMES.
10330 (spu_override_options): Move it here.
10331
10332 2007-07-11 Richard Sandiford <richard@codesourcery.com>
10333
10334 * config/mips/mips.h (MIPS_ISA_LEVEL_SPEC): Handle -m4ksc and -m4ksd.
10335 * config/mips/mips.c (mips_cpu_info_table): Mention
10336 MIPS_ISA_LEVEL_SPEC in the comment.
10337
10338 2007-07-11 Eric Botcazou <ebotcazou@adacore.com>
10339
10340 PR tree-optimization/32713
10341 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Handle REAL_CST.
10342
10343 2007-07-11 Paolo Carlini <pcarlini@suse.de>
10344
10345 PR middle-end/30482
10346 * c-opts.c (c_common_post_options): Do not change flag_complex_method
10347 conditional to flag_isoc99.
10348 (c_common_init_options): Do it here, unconditionally.
10349
10350 2007-07-11 Eric Botcazou <ebotcazou@adacore.com>
10351
10352 PR tree-optimization/32589
10353 * doc/tree-ssa.texi (Rough GIMPLE Grammar): Add missing rule.
10354 * tree-gimple.c (is_gimple_min_invariant): Clarify head comment.
10355 * tree-ssa-propagate.c (valid_gimple_expression_p): New
10356 predicate, extracted from...
10357 (set_rhs): ...here. Call it for the expression on entry.
10358 * tree-ssa-propagate.h (valid_gimple_expression_p): Declare.
10359 * tree-ssa-sccvn.c: Include tree-ssa-propagate.h.
10360 (simplify_binary_expression): Use valid_gimple_expression_p
10361 to validate the simplification.
10362 * Makefile.in (tree-ssa-sccvn.o): Depends on tree-ssa-propagate.h.
10363
10364 2007-07-11 Danny Smith <dannysmith@users.sourceforge.net>
10365
10366 * config/i386/cygming.h (PREFERRED_DEBUGGING_TYPE): Define to
10367 DWARF2_DEBUG on 32 bit target too.
10368 (DWARF2_UNWIND_INFO): Reorganize 64-bit vs 32-bit definition.
10369
10370 2007-07-11 Nick Clifton <nickc@redhat.com>
10371
10372 * config/m32r/m32r.h (INITIALIZE_TRAMPOLINE): Provide alternative
10373 version for 64-bit hosts.
10374
10375 2007-07-10 David Daney <ddaney@avtrex.com>
10376
10377 * config/mips/mips.h (ISA_HAS_SYNCI): New target capability
10378 predicate.
10379 (INITIALIZE_TRAMPOLINE): Emit clear_cache insn instead of library
10380 call.
10381 * config/mips/mips.c (mips_expand_synci_loop): New function.
10382 * config/mips/mips.md (UNSPEC_CLEAR_HAZARD): New constant.
10383 (UNSPEC_RDHWR): Same.
10384 (UNSPEC_SYNCI): Same.
10385 (UNSPEC_SYNC): Same.
10386 (clear_cache): New expand.
10387 (sync): New insn.
10388 (synci): Same.
10389 (rdhwr): Same.
10390 (clear_hazard): Same.
10391 * config/mips/mips-protos.h (mips_expand_synci_loop): Declare
10392 function.
10393 * testsuite/gcc.target/mips/clear-cache-1.c: New test.
10394 * testsuite/gcc.target/mips/clear-cache-2.c: New test.
10395
10396 2007-07-10 Ian Lance Taylor <iant@google.com>
10397
10398 * emit-rtl.c (gen_reg_rtx): Check can_create_pseudo_p rather than
10399 no_new_pseudos.
10400
10401 2007-07-10 David Daney <ddaney@avtrex.com>
10402
10403 * builtins.def (BUILT_IN_CLEAR_CACHE): New builtin.
10404 * builtins.c (expand_builtin___clear_cache): New function.
10405 (expand_builtin): Call expand_builtin___clear_cache for
10406 BUILT_IN_CLEAR_CACHE case.
10407 * doc/extend.texi (__builtin___clear_cache): Document new builtin.
10408 * doc/md.texi (clear_cache): Document new instruction pattern.
10409 * testsuite/gcc.dg/builtins-64.c: New test.
10410
10411 2007-07-11 Hans-Peter Nilsson <hp@axis.com>
10412
10413 * config/cris/cris.md ("movsi"): Fix typo in last change.
10414
10415 2007-07-09 Geoffrey Keating <geoffk@apple.com>
10416
10417 PR 32617
10418 * c-common.c (c_alignof_expr): Look at DECL_ALIGN of
10419 FUNCTION_DECLs.
10420 (handle_aligned_attribute): Allow use on FUNCTION_DECLs.
10421 * varasm.c (assemble_start_function): Honor DECL_ALIGN
10422 for FUNCTION_DECLs. Don't use align_functions_log if
10423 DECL_USER_ALIGN.
10424 * print-tree.c (print_node): Print DECL_ALIGN and DECL_USER_ALIGN
10425 even for FUNCTION_DECLs.
10426 * c-decl.c (merge_decls): Propagate DECL_ALIGN even for
10427 FUNCTION_DECLs.
10428 * tree.h (DECL_ALIGN): Update for new location of 'align'.
10429 (DECL_FUNCTION_CODE): Update for new location and name of
10430 'function_code'.
10431 (DECL_OFFSET_ALIGN): Update for new location of 'off_align'.
10432 (struct tree_decl_common): Move 'align' and 'off_align' out
10433 of union, ensure they're still on a 32-bit boundary. Remove
10434 other fields in union 'u1'.
10435 (struct tree_function_decl): Add field 'function_code' replacing
10436 'u1.f' in tree_decl_common.
10437 * tree.c (build_decl_stat): Set initial value of DECL_ALIGN.
10438 * doc/extend.texi (Function Attributes): Add 'aligned' attribute.
10439 (Variable Attributes): Cross-reference 'aligned' attribute
10440 to Function Attributes.
10441 * flags.h (force_align_functions_log): Delete.
10442 * toplev.c (force_align_functions_log): Delete.
10443
10444 2007-07-10 Uros Bizjak <ubizjak@gmail.com>
10445
10446 PR target/32708
10447 * config/i386/sse.md (vec_concatv2di): Disable for TARGET_64BIT.
10448 (*vec_concatv2di_rex): New insn pattern.
10449
10450 2007-07-10 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10451
10452 PR target/32538
10453 * config/mips/iris6.h (LIBGCC_SPEC): Add libm.
10454
10455 2007-07-10 Ian Lance Taylor <iant@google.com>
10456
10457 Replace no_new_pseudos in backends.
10458 * rtl.h (can_create_pseudo_p): Define.
10459 * config/darwin.c (machopic_indirect_data_reference): Use
10460 can_create_pseudo_p () instead of no_new_pseudos.
10461 (machopic_indirect_data_reference): Likewise.
10462 (machopic_legitimize_pic_address): Likewise.
10463 * config/alpha/alpha.c (alpha_legitimize_address): Likewise.
10464 (alpha_emit_set_const_1): Likewise.
10465 (alpha_emit_set_const): Likewise.
10466 (alpha_emit_conditional_move): Likewise.
10467 (alpha_split_conditional_move): Likewise.
10468 * config/alpha/alpha.md (various splitters): Likewise.
10469 (movti): Likewise.
10470 * config/arm/arm.c (legitimize_pic_address): Likewise.
10471 (arm_load_pic_register): Likewise.
10472 * config/arm/arm.md (addsi3, subsi3, andsi3, iorsi3): Likewise.
10473 (movdi, movsi, movhi, movqi, movsf, movdf): Likewise.
10474 * config/bfin/bfin.c (legitimize_pic_address): Likewise.
10475 * config/cris/cris.c (cris_expand_pic_call_address): Likewise.
10476 * config/cris/cris.md (movsi): Likewise.
10477 * config/frv/frv.md (symGOT2reg_hilo): Likewise.
10478 (symGOTOFF2reg_hilo): Likewise.
10479 (symGPREL2reg, symGPREL2reg_hilo): Likewise.
10480 * config/h8300/h8300.md (insv, extzv): Likewise.
10481 * config/i386/i386.c (ix86_expand_move): Likewise.
10482 (ix86_expand_vector_move): Likewise.
10483 (ix86_prepare_fp_compare_args): Likewise.
10484 (ix86_expand_carry_flag_compare): Likewise.
10485 * config/i386/i386.md (tls_dynamic_gnu2_32): Likewise.
10486 (tls_dynamic_gnu2_combine_32): Likewise.
10487 (tls_dynamic_gnu2_64, tls_dynamic_gnu2_combine_64): Likewise.
10488 * config/ia64/ia64.c (ia64_expand_move): Likewise.
10489 (ia64_expand_movxf_movrf): Likewise.
10490 * config/m32c/m32c.c (m32c_prepare_move): Likewise.
10491 (m32c_split_move): Likewise.
10492 (m32c_expand_insv): Likewise.
10493 * config/m68k/m68k.md (movsi): Likewise.
10494 * config/mips/mips.c (mips_force_temporary): Likewise.
10495 (mips_split_symbol): Likewise.
10496 (mips_move_integer): Likewise.
10497 (mips_legitimize_const_move): Likewise.
10498 * config/mn10300/mn10300.md (movsi): Likewise.
10499 * config/pa/pa.c (emit_move_sequence): Likewise.
10500 * config/rs6000/rs6000.c (rs6000_emit_move): Likewise.
10501 (rs6000_got_register): Likewise.
10502 (create_TOC_reference): Likewise.
10503 (rs6000_machopic_legitimize_pic_address): Likewise.
10504 * config/rs6000/rs6000.md (add<mode>3): Likewise.
10505 (various splitters): Likewise.
10506 (iorsi3, xorsi3, iordi3, xordi3): Likewise.
10507 (movsi_got): Likewise.
10508 * config/s390/s390.c (emit_symbolic_move): Likewise.
10509 * config/s390/s390.md (movhi, movqi): Likewise.
10510 (load_multiple, store_multiple): Likewise.
10511 * config/score/score.c (score_force_temporary): Likewise.
10512 * config/sh/sh.c (prepare_move_operands): Likewise.
10513 (prepare_cbranch_operands): Likewise.
10514 (emit_fpu_switch): Likewise.
10515 (fpscr_set_from_mem): Likewise.
10516 * config/sh/sh.md (movdicc, movsicc, movsicc_umin): Likewise.
10517 (adddi3, subsi3): Likewise.
10518 (various splitters): Likewise.
10519 (divsi_inv_fp_combine): Likewise.
10520 (symGOT_load, symGOTOFF2reg, symDTPOFF2reg): Likewise.
10521 (seq, slt, sle, sgt, sge, sgtu, sltu, sleu, sgeu): Likewise.
10522 (sne): Likewise.
10523 * config/sh/predicates.md (xor_operand): Likewise.
10524 * config/sparc/sparc.c (legitimize_tls_address): Likewise.
10525 * config/sparc/sparc.md (movsi_pic_label_ref): Likewise.
10526 (movdi_pic_label_ref): Likewise.
10527 * config/spu/spu.c (spu_split_immediate): Likewise.
10528 * config/alpha/alpha.md (various splitters): Remove test
10529 !no_new_pseudos || reload_completed.
10530 * config/ia64/ia64.c (ia64_output_mi_thunk): Don't set
10531 no_new_pseudos.
10532 * config/m68k/m68k.c (m68k_output_mi_thunk): Likewise.
10533 * config/mips/mips.c (mips_output_mi_thunk): Likewise.
10534 * config/rs6000/rs6000.c (rs6000_output_mi_thunk): Likewise.
10535 * config/score/score.c (th_output_mi_thunk): Likewise.
10536 * config/sh/sh.c (sh_output_mi_thunk): Likewise.
10537 * config/sparc/sparc.c (sparc_output_mi_thunk): Likewise.
10538
10539 2007-07-10 Kaz Kojima <kkojima@gcc.gnu.org>
10540
10541 PR rtl-optimization/32664
10542 * mode-switching.c (create_pre_exit): Skip barrier insns.
10543
10544 2007-07-10 Zdenek Dvorak <dvorakz@suse.cz>
10545
10546 * tree-scalar-evolution.c (scev_const_prop): Add arguments to
10547 force_gimple_operand_bsi.
10548 * tree-ssa-loop-ivopts.c (rewrite_use_nonlinear_expr,
10549 rewrite_use_compare): Ditto.
10550 * tree-ssa-address.c (gimplify_mem_ref_parts, create_mem_ref):
10551 Ditto.
10552 * tree-ssa-ifcombine.c (ifcombine_ifandif): Ditto.
10553 * tree-ssa-loop-prefetch.c (issue_prefetch_ref): Ditto.
10554 * lambda-code.c (replace_uses_equiv_to_x_with_y): Ditto.
10555 * tree-profile.c (prepare_instrumented_value,
10556 tree_gen_interval_profiler, tree_gen_pow2_profiler,
10557 tree_gen_one_value_profiler, tree_gen_ic_profiler,
10558 tree_gen_ic_func_profiler, tree_gen_average_profiler,
10559 tree_gen_ior_profiler): Ditto.
10560 * tree-ssa-reassoc.c (negate_value): Ditto.
10561 * matrix-reorg.c (transform_access_sites, transform_allocation_sites):
10562 Use force_gimple_operand_bsi.
10563 * tree-vect-transform.c (vect_update_ivs_after_vectorizer): Ditto.
10564 * tree-if-conv.c (add_to_dst_predicate_list,
10565 find_phi_replacement_condition): Ditto.
10566 * gimplify.c (force_gimple_operand_bsi): Add before and m arguments.
10567 Call mark_symbols_for_renaming for new statements.
10568 * tree-flow.h (force_gimple_operand_bsi): Declaration changed.
10569
10570 2007-07-10 Zdenek Dvorak <dvorakz@suse.cz>
10571
10572 * cfghooks.c (remove_edge): New function.
10573 (redirect_edge_and_branch, remove_branch, merge_blocks): Updated
10574 loop exit rescans.
10575 * cfghooks.h (remove_edge): Declare.
10576 * cfg.c (remove_edge): Renamed to remove_edge_raw.
10577 * basic-block.h (remove_edge): Declaration changed to remove_edge_raw.
10578
10579 2007-07-09 Wolfgang Gellerich <gellerich@de.ibm.com>
10580
10581 * optabs.h: Added declaration for signbit_optab.
10582 * optabs.c: (init_optabs): Added initialization for signbit_optab.
10583 * genoptinit.c (optabs): Added entry for signbit insns.
10584 * builtins.c (expand_builtin_signbit): Added code to use a signbit
10585 insn, if available.
10586 * config/s390/s390.h (S390_TDC_SIGNBIT_SET): New constant.
10587 * config/s390/s390.md (signbit<mode>2): New expander.
10588
10589 2007-07-09 Richard Guenther <rguenther@suse.de>
10590
10591 PR middle-end/32698
10592 * fold-const.c (fold_plusminus_mult_expr): Move constant
10593 arguments second to allow decomposing.
10594
10595 2007-07-09 Alexandre Oliva <aoliva@oliva.athome.lsd.ic.unicamp.br>
10596
10597 Revert:
10598 2007-07-06 Alexandre Oliva <aoliva@redhat.com>
10599 PR debug/23551
10600 * tree-ssa-copyrename.c (copy_rename_partition_coalesce):
10601 Disregard DECL_FROM_INLINE.
10602
10603 2007-07-09 Uros Bizjak <ubizjak@gmail.com>
10604
10605 PR target/27855
10606 * doc/invoke.texi: Add ftree-reassoc flag.
10607 * common.opt (ftree-reassoc): New flag.
10608 * tree-ssa-reassoc.c (gate_tree_ssa_reassoc): New static function.
10609 (struct tree_opt_pass pass_reassoc): Use gate_tree_ssa_reassoc.
10610
10611 2007-07-09 Uros Bizjak <ubizjak@gmail.com>
10612
10613 PR tree-optimization/32681
10614 * tree-if-conv.c (find_phi_replacement_condition): Use the condition
10615 saved in second_edge->aux when first_bb is a loop header.
10616
10617 2007-07-09 Jan HUbicka <jh@suse.cz>
10618
10619 * cse.c (cse_insn): Avoid invalid sharing on trial replacement.
10620
10621 2007-07-09 Richard Guenther <rguenther@suse.de>
10622
10623 * c-decl.c (start_function): Do not promote return type.
10624
10625 2007-07-08 Daniel Franke <franke.daniel@gmail.com>
10626
10627 * function.c (do_warn_unused_parameter): Do not warn if
10628 TREE_NO_WARNING is set.
10629
10630 2007-07-08 Andreas Schwab <schwab@suse.de>
10631
10632 * doc/invoke.texi (DEC Alpha/VMS Options): Fix typo.
10633
10634 2007-07-08 Sandra Loosemore <sandra@codesourcery.com>
10635
10636 Revert this patch:
10637 2007-07-06 Sandra Loosemore <sandra@codesourcery.com>
10638
10639 * c-opts.c (c_common_handle_option): Make DOLLARS_IN_IDENTIFIERS
10640 apply to assembly language, too.
10641 * doc/tm.texi (DOLLARS_IN_IDENTIFIERS): Update.
10642
10643 2007-07-07 Daniel Berlin <dberlin@dberlin.org>
10644
10645 Revert (note the sccvn portions are *not* reverted)
10646 2007-07-06 Daniel Berlin <dberlin@dberlin.org>
10647
10648 Fix PR tree-optimization/23488
10649
10650 * tree-vn.c (set_value_handle): Use decl_vh_map for decl value
10651 handles.
10652 * tree-flow-inline.h (get_value_handle): Ditto.
10653 * tree-ssa-pre.c (decl_vh_map): New.
10654 (decl_node_pool): New.
10655 (can_value_number_operation): Support DECL_P.
10656 (can_PRE_operation): Ditto.
10657 (create_expression_by_pieces): Ditto.
10658 (find_existing_value_expr): Modify to differnetiate between
10659 addressing and top level.
10660 (create_value_handle_for_expr): Handle DECL's.
10661 (poolify_tree): Ditto.
10662 (make_values_for_phi): Don't insert into PHI_GEN during FRE.
10663 (make_values_for_stmt): Handle DECL's properly.
10664 (init_pre): Reorg to not init useless things during FRE.
10665 (fini_pre): Ditto.
10666 * tree-flow.h: Include pointer-set.h.
10667 (decl_vh_map): Declare.
10668 * Makefile.in (TREE_FLOW_H): Add pointer-set.h
10669
10670 2007-07-07 Eric Weddington <eweddington@cso.atmel.com>
10671
10672 * config/avr/constraints.md (define_memory_constraint "Q"): Fix
10673 the constraint description.
10674 * doc/md.texi: Update documentation of AVR constraints.
10675
10676 2007-07-07 Kazu Hirata <kazu@codesourcery.com>
10677
10678 * auto-inc-dec.c, config/arm/arm.c,
10679 config/m32r/constraints.md, config/mips/mips.md,
10680 config/rs6000/rs6000.c, cselib.c, dce.c, df-core.c,
10681 df-problems.c, df-scan.c, df.h, dse.c, gimplify.c,
10682 tree-if-conv.c, tree-ssa-sccvn.c, tree-ssa.c: Fix comment
10683 typos. Follow spelling conventions.
10684 * doc/invoke.texi, doc/rtl.texi: Fix typos.
10685
10686 * cfgrtl.c (delete_insn_chain_and_edges): Remove.
10687 * rtl.h: Remove the prototype for delete_insn_chain_and_edges.
10688
10689 * tree-ssa-operands.c (realloc_vop, realloc_vdef,
10690 realloc_vuse): Remove.
10691 * tree-ssa-operands.h: Remove the prototype for realloc_vdef
10692 and realloc_vuse.
10693
10694 2007-07-06 Daniel Berlin <dberlin@dberlin.org>
10695
10696 Fix PR tree-optimization/23488
10697
10698 * tree-ssa-sccvn.c (expr_has_constants): Handle tcc_declaration.
10699 (try_to_simplify): Ditto.
10700 (visit_use): Ditto.
10701 * tree-vn.c (set_value_handle): Use decl_vh_map for decl value
10702 handles.
10703 * tree-flow-inline.h (get_value_handle): Ditto.
10704 * tree-ssa-pre.c (decl_vh_map): New.
10705 (decl_node_pool): New.
10706 (can_value_number_operation): Support DECL_P.
10707 (can_PRE_operation): Ditto.
10708 (create_expression_by_pieces): Ditto.
10709 (find_existing_value_expr): Modify to differnetiate between
10710 addressing and top level.
10711 (create_value_handle_for_expr): Handle DECL's.
10712 (poolify_tree): Ditto.
10713 (make_values_for_phi): Don't insert into PHI_GEN during FRE.
10714 (make_values_for_stmt): Handle DECL's properly.
10715 (init_pre): Reorg to not init useless things during FRE.
10716 (fini_pre): Ditto.
10717 * tree-flow.h: Include pointer-set.h.
10718 (decl_vh_map): Declare.
10719 * Makefile.in (TREE_FLOW_H): Add pointer-set.h
10720
10721 2007-07-06 Sandra Loosemore <sandra@codesourcery.com>
10722
10723 * c-opts.c (c_common_handle_option): Make DOLLARS_IN_IDENTIFIERS
10724 apply to assembly language, too.
10725 * doc/tm.texi (DOLLARS_IN_IDENTIFIERS): Update.
10726
10727 2007-07-06 Ian Lance Taylor <iant@google.com>
10728 Zack Weinberg <zackw@panix.com>
10729
10730 PR middle-end/32441
10731 * builtins.c (std_expand_builtin_va_start): Don't use make_tree.
10732
10733 2007-07-06 Richard Sandiford <richard@codesourcery.com>
10734
10735 * config/sh/sh.md (*prefetch_i4): Disable for TARGET_VXWORKS_RTP.
10736 (prefetch): Likewise if "pref" would be used.
10737
10738 2007-07-06 Josh Conner <jconner@apple.com>
10739
10740 PR middle-end/32602
10741 PR middle-end/32603
10742 * calls.c (store_one_arg): Handle arguments which are partially
10743 on the stack when detecting argument overlap.
10744
10745 2007-07-06 Bernd Schmidt <bernd.schmidt@analog.com>
10746
10747 * reload1.c (choose_reload_regs): Set reload_spill_index for regs
10748 chosen during find_reloads.
10749
10750 2007-07-06 Richard Guenther <rguenther@suse.de>
10751
10752 * gimplify.c (gimplify_call_expr): Prefer DECL_ARGUMENTS over
10753 TYPE_ARG_TYPES for verification of argument types. Use
10754 DECL_ARG_TYPE instead of the PARM_DECL type. Take excess
10755 parameters as variable arguments.
10756
10757 2007-07-06 Andreas Krebbel <krebbel1@de.ibm.com>
10758
10759 * libgcc2.h (word_type): Type definition removed.
10760 (cmp_return_type, shift_count_type): Type definitions added.
10761 (__lshrdi3, __ashldi3, __ashrdi3): word_type of second parameter
10762 replaced with shift_count_type.
10763 (__cmpdi2, __ucmpdi2): word_type of return type replaced with
10764 cmp_return_type.
10765 * libgcc2.c (__udivmoddi4, __moddi3): Type of local variable c
10766 changed from word_type to Wtype.
10767 (__lshrdi3, __ashldi3, __ashrdi3): word_type of second parameter
10768 replaced with shift_count_type.
10769 (__cmpdi2, __ucmpdi2): word_type of return type replaced with
10770 cmp_return_type.
10771 * c-common.c (handle_mode_attribute): Handling for libgcc_cmp_return
10772 and libgcc_shift_count attribute added.
10773 * target-def.h (TARGET_LIBGCC_CMP_RETURN_MODE,
10774 TARGET_LIBGCC_SHIFT_COUNT_MODE): New target hooks defined.
10775 (TARGET_INITIALIZER): New target hooks added.
10776 * targhooks.c (default_libgcc_cmp_return_mode,
10777 default_libgcc_shift_count_mode): Default implementations for the new
10778 target hooks added.
10779 * targhooks.h (default_libgcc_cmp_return_mode,
10780 default_libgcc_shift_count_mode): Function prototypes added.
10781 * target.h (struct gcc_target): Fields for the new target hooks added.
10782 * optabs.c (expand_binop): Use shift_count_mode when expanding shift
10783 as library call.
10784 (prepare_cmp_insn): Use cmp_return_mode when expanding comparison as
10785 library call.
10786
10787 * doc/tm.texi (TARGET_LIBGCC_CMP_RETURN_MODE,
10788 TARGET_LIBGCC_SHIFT_COUNT_MODE): Documentation added.
10789
10790 * config/s390/s390.c (s390_libgcc_cmp_return_mode,
10791 s390_libgcc_shift_count_mode): Functions added.
10792 (TARGET_LIBGCC_CMP_RETURN_MODE, TARGET_LIBGCC_SHIFT_COUNT_MODE):
10793 Target hooks defined.
10794
10795 2007-07-06 Richard Sandiford <richard@codesourcery.com>
10796
10797 * config/mips/mips.c (compute_frame_size): Restore the original
10798 gp_sp_offset for !GENERATE_MIPS16E_SAVE_RESTORE and remove the
10799 fp_size term from the GENERATE_MIPS16E_SAVE_RESTORE calculation.
10800 Document why the difference is needed.
10801
10802 2007-07-06 Richard Guenther <rguenther@suse.de>
10803
10804 * c-common.c (boolean_increment): Use correctly typed
10805 constant.
10806
10807 2007-07-06 Richard Sandiford <richard@codesourcery.com>
10808
10809 * config/mips/mips.c (mips16e_save_restore_pattern_p): Check that
10810 the topmost argument register is not also included in the save mask.
10811 (mips16e_collect_argument_save_p): Take a pointer to the argument
10812 register, rather than a pointer to the number of arguments.
10813 (mips16e_collect_argument_saves): Only include argument saves
10814 that aren't in the register mask.
10815
10816 2007-07-06 Uros Bizjak <ubizjak@gmail.com>
10817
10818 PR rtl-optimization/32450
10819 * function.c (thread_prologue_and_epilogue_insns): Emit blockage insn
10820 to ensure that instructions are not moved into the prologue when
10821 profiling is on. Remove unused prologue_end variable.
10822 (expand_function_end): Emit blockage insn instead of ASM_INPUT rtx
10823 as a scheduling barrier.
10824
10825 2007-07-06 Alexandre Oliva <aoliva@redhat.com>
10826
10827 PR debug/23551
10828 * tree-ssa-copyrename.c (copy_rename_partition_coalesce):
10829 Disregard DECL_FROM_INLINE.
10830
10831 2007-07-05 Adam Nemet <anemet@caviumnetworks.com>
10832
10833 * rtlanal.c (num_sign_bit_copies1): Improve cases of ANDing or
10834 IORing with a constant.
10835
10836 2007-07-05 Seongbae Park <seongbae.park@gmail.com>
10837
10838 PR rtl-optimization/32475
10839 * df-scan.c (df_def_record_1): Add a use of the stack pointer
10840 for every definition of the stack pointer.
10841
10842 2007-07-05 Richard Earnshaw <rearnsha@arm.com>
10843
10844 * arm.c (vfp3_const_double_index): Copy signed results of
10845 REAL_VALUE_TO_INT into unsigned vars.
10846
10847 2007-07-05 Richard Guenther <rguenther@suse.de>
10848
10849 PR middle-end/32639
10850 * alias.c (get_alias_set): Tread METHOD_TYPE the same as
10851 FUNCTION_TYPE.
10852 * tree-ssa.c (useless_type_conversion_p): Check canonical
10853 types early.
10854
10855 2007-07-05 Anatoly Sokolov <aesok@post.ru>
10856
10857 * config/avr/avr.md (zero_extendqihi2, zero_extendqisi2,
10858 zero_extendhisi2): Change to define_insn_and_split.
10859 (zero_extendqidi2, zero_extendhidi2, zero_extendsidi2): New.
10860
10861 2007-07-05 Paolo Bonzini <bonzini@gnu.org>
10862
10863 * function.c (match_asm_constraints_1, rest_of_match_asm_constraints,
10864 pass_match_asm_constraints): New.
10865 * passes.c (init_optimization_passes): Add new pass.
10866 * stmt.c (expand_asm_operands): Set cfun->has_asm_statement.
10867 * function.h (struct function): Add has_asm_statement bit.
10868 (current_function_has_asm_statement): New.
10869 * tree-pass.h (pass_match_asm_constraints): New.
10870
10871 2007-07-05 Richard Sandiford <rsandifo@nildram.co.uk>
10872
10873 * config/mips/mips.c (mips_file_start): Avoid declaration
10874 after code.
10875
10876 2007-07-05 Sandra Loosemore <sandra@codesourcery.com>
10877
10878 * optabs.c (expand_binop_directly): Fix signed/unsigned comparison.
10879
10880 2007-07-05 Uros Bizjak <ubizjak@gmail.com>
10881
10882 * rtl.def (NOTE): Change print format string to print
10883 operand 5 as a note insn name.
10884
10885 2007-07-05 Sandra Loosemore <sandra@codesourcery.com>
10886 David Ung <davidu@mips.com>
10887
10888 * config/mips/mips.c (mips_cpu_info): Add 4ksc and 4ksd processors.
10889 * doc/invoke.texi: (MIPS Options): Document them.
10890
10891 2007-07-05 Sandra Loosemore <sandra@codesourcery.com>
10892 David Ung <davidu@mips.com>
10893
10894 Add support for SmartMIPS ASE.
10895
10896 * optabs.c (expand_binop_directly): New, broken out from...
10897 (expand_binop): Here. Make it try rotating in the other
10898 direction even when the second operand isn't constant.
10899 * config/mips/mips.md (*lwxs): New.
10900 * config/mips/mips.opt (msmartmips): New.
10901 * config/mips/mips.c (mips_lwxs_address_p): New.
10902 (mips_rtx_costs): Make it recognize scaled indexed addressing.
10903 * config/mips/mips.h (TARGET_CPU_CPP_BUILTINS): Define
10904 __mips_smartmips when compiling for TARGET_SMARTMIPS.
10905 (ISA_HAS_ROR): Define for TARGET_SMARTMIPS.
10906 (ISA_HAS_LWXS): New.
10907 (ASM_SPEC): Add -msmartmips/-mno-smartmips.
10908 * doc/invoke.texi (MIPS Options): Document -msmartmips/-mno-smartmips.
10909 * testsuite/gcc.target/mips/smartmips-lwxs.c: New test case.
10910 * testsuite/gcc.target/mips/smartmips-ror-1.c: New test case.
10911 * testsuite/gcc.target/mips/smartmips-ror-2.c: New test case.
10912 * testsuite/gcc.target/mips/smartmips-ror-3.c: New test case.
10913 * testsuite/gcc.target/mips/smartmips-ror-4.c: New test case.
10914
10915 2007-07-05 Dorit Nuzman <dorit@il.ibm.com>
10916
10917 * tree-vectorizer.c (new_loop_vec_info): Initialize
10918 LOOP_VINFO_COST_MODEL_MIN_ITERS.
10919 * tree-vectorizer.h (_loop_vec_info): Added new filed
10920 min_profitable_iters.
10921 (LOOP_VINFO_COST_MODEL_MIN_ITERS): New access macro to above new field.
10922 (TARG_SCALAR_TO_VEC_COST): Define cost of scalar to vector operation.
10923 * tree-vect-analyze.c (vect_analyze_operations): Set
10924 LOOP_VINFO_COST_MODEL_MIN_ITERS.
10925 * tree-vect-transform.c (vect_estimate_min_profitable_iters): Use
10926 VEC_length to determine if there are any LOOP_VINFO_MAY_MISALIGN_STMTS.
10927 Fix calculation of peel_iters_prologue. Move consideration of epilogue
10928 and prologue cost to after they are computed.
10929 (vect_model_induction_cost): Use TARG_SCALAR_TO_VEC_COST instead of
10930 TARG_VEC_STMT_COST.
10931 (vect_model_simple_cost): Takes additional argument dt. Consider cost
10932 of creating vectors from scalars according to dt.
10933 (vect_model_store_cost): Likewise.
10934 (vectorizable_call): Use dt array instead of scalar dt. Call
10935 vect_model_simple_cost with additional argument dt.
10936 (vectorizable_assignment): Likewise.
10937 (vectorizable_operation): Likewise.
10938 (vectorizable_type_demotion): Likewise.
10939 (vectorizable_type_promotion): Likewise.
10940 (vectorizable_store): Use dt array instead of scalar dt. Call
10941 vect_model_store_cost with additional argument dt.
10942 (vect_do_peeling_for_loop_bound): Don't call
10943 vect_estimate_min_profitable_iters. Instead, lookup
10944 LOOP_VINFO_COST_MODEL_MIN_ITERS. Don't always print
10945 "may not be profitable".
10946
10947 2007-07-05 Dorit Nuzman <dorit@il.ibm.com>
10948
10949 PR testsuite/32014
10950 * config/rs6000/altivec.md (UNSPEC_VUPKHS_V4SF, UNSPEC_VUPKLS_V4SF):
10951 (UNSPEC_VUPKHU_V4SF, UNSPEC_VUPKLU_V4SF): New.
10952 (vec_unpacks_float_hi_v8hi, vec_unpacks_float_lo_v8hi): New patterns.
10953 (vec_unpacku_float_hi_v8hi, vec_unpacku_float_lo_v8hi): New patterns.
10954
10955 2007-07-05 Zdenek Dvorak <dvorakz@suse.cz>
10956
10957 * config/i386/i386.c (ix86_address_cost): Do not consider more complex
10958 addressing modes cheaper.
10959
10960 2007-07-05 Alexandre Oliva <aoliva@redhat.com>
10961
10962 * dwarf2out.c (dw_ranges_by_label_ref): New typedef.
10963 (dw_ranges_struct): Rename block_num to num. Adjust.
10964 (dw_ranges_by_label_struct): New.
10965 (ranges_by_label, ranges_by_label_allocated,
10966 ranges_by_label_in_use): New variables.
10967 (add_ranges_num): Factored most of the code out of...
10968 (add_ranges): ... this one. Rewrite in terms of the former.
10969 (add_ranges_by_labels): New.
10970 (output_ranges): Output by-label ranges.
10971 (dwarf2out_finish): Output range for multiple-section
10972 compile_unit. Output standard DW_AT_low_pc in addition to
10973 unexpected DW_AT_entry_pc.
10974
10975 2007-07-04 Daniel Berlin <dberlin@dberlin.org>
10976
10977 PR tree-optimization/32604
10978 PR tree-optimization/32606
10979
10980 * tree-ssa-pre.c (bb_bitmap_sets): Removed antic_safe_loads.
10981 (compute_antic_safe): Removed.
10982 (ANTIC_SAFE_LOADS): Ditto.
10983 (compute_antic_aux): Don't print ANTIC_SAFE_LOADS.
10984 (execute_pre): Don't call compute_antic_safe.
10985 (vuse_equiv): New function.
10986 (make_values_for_stmt): Use it
10987 * tree-ssa-sccvn.c (set_ssa_val_to): Remove assert, since it is
10988 not always true.
10989
10990 2007-07-04 Anatoly Sokolov <aesok@post.ru>
10991
10992 PR target/31331
10993 * config/avr/avr.c (avr_naked_function_p): Handle receiving a type
10994 rather than a decl.
10995 (avr_attribute_table): Make "naked" attribute apply to function types
10996 rather than to decls.
10997 (avr_handle_fntype_attribute): New function.
10998
10999 2007-07-04 Joseph Myers <joseph@codesourcery.com>
11000
11001 * target-def.h (TARGET_INITIALIZER): Remove trailing whitespace
11002 after \.
11003
11004 2007-07-04 David Ung <davidu@mips.com>
11005 Joseph Myers <joseph@codesourcery.com>
11006
11007 * config/mips/mips.md (type): Add logical, signext and move.
11008 (one_cmpl<mode>2, *and<mode>3, *and<mode>3_mips16, *ior<mode>3,
11009 *ior<mode>3_mips16, two unnamed insns after *ior<mode>3_mips16,
11010 *nor<mode>3, "Combiner patterns to optimize truncate/zero_extend
11011 combinations", *zero_extend<SHORT:mode><GPR:mode>2,
11012 *zero_extendqihi2, *extend<SHORT:mode><GPR:mode>2_mips16e,
11013 *extend<SHORT:mode><GPR:mode>2_se<SHORT:size>, *movdi_64bit,
11014 *movdi_64bit_mips16, *movsi_internal, *movsi_mips16, movcc,
11015 *movhi_internal, *movhi_mips16, *movqi_internal, *movqi_mips16,
11016 *movsf_hardfloat, *movsf_softfloat, *movsf_mips16,
11017 *movdf_hardfloat_64bit, *movdf_hardfloat_32bit,
11018 movv2sf_hardfloat_64bit): Use the new types.
11019 (*movdi_32bit, *movdi_gp32_fp64, *movdi_32bit_mips16,
11020 *movdf_softfloat, *movdf_mips16): Use "multi".
11021 (extendqihi2): Replace with a define_expand.
11022 (*extendqihi2_mips16e, *extendqihi2, *extendqihi2_seb): New.
11023 Based on extend<SHORT:mode><GPR:mode>2 patterns.
11024 * config/mips/74k.md (r74k_int_logical): New reservation and
11025 bypasses.
11026 (r74k_int_arith): Remove "slt".
11027 * config/mips/24k.md, config/mips/4130.md, config/mips/4k.md,
11028 config/mips/5400.md, config/mips/5500.md, config/mips/5k.md,
11029 config/mips/7000.md, config/mips/9000.md, config/mips/generic.md,
11030 config/mips/sb1.md, config/mips/sr71k.md: Add new types to
11031 reservations for "arith".
11032
11033 2007-07-04 Richard Guenther <rguenther@suse.de>
11034
11035 * tree-ssa.c (useless_type_conversion_p): Add handling for
11036 scalar float and vector types. Only call the types_compatible_p
11037 langhook for aggregate types as last resort. Follow the
11038 rules.
11039
11040 2007-07-04 Richard Guenther <rguenther@suse.de>
11041
11042 * tree-inline.c (estimate_num_insns_1): Treat CONVERT_EXPR
11043 the same as NOP_EXPR.
11044
11045 2007-07-04 Nick Clifton <nickc@redhat.com>
11046
11047 * target.h (struct gcc_target): Add target_help field.
11048 * target-def.h (TARGET_HELP): New.
11049 (TARGET_INITIALIZER): Use TARGET_HELP.
11050 * opts.c (command_handle_option): Invoke target_help function, if
11051 defined, when the user has specified --target-help on the command
11052 line.
11053 * doc/invoke.texi: Mention that --target-help might print
11054 additional information.
11055 * doc/tm.texi: Document TARGET_HELP hook.
11056
11057 * arm.c (TARGET_HELP): Override default definition.
11058 (arm_target_help): New - display a wrapped list of cores and
11059 architectures supported.
11060
11061 2007-07-04 Rask Ingemann Lambertsen <rask@sygehus.dk>
11062
11063 * config/v850/v850.c (expand_prologue): Make sure
11064 GEN_INT() argument is sign extended rather than zero extended.
11065 (expand_epilogue): Likewise.
11066 (output_move_double): Delete.
11067 * config/v850/v850-protos.h (output_move_double): Delete.
11068 * config/v850/v850.md (movdi): Delete.
11069 (*movdi_internal): Delete.
11070 (movdf): Delete.
11071 (*movdf_internal): Delete.
11072
11073 2007-07-04 Richard Sandiford <richard@codesourcery.com>
11074
11075 * config/sh/vxworks.h (SUBTARGET_OVERRIDE_OPTIONS): Reject -mrelax
11076 unless compiling RTP PIC.
11077
11078 2007-07-04 Richard Guenther <rguenther@suse.de>
11079
11080 PR tree-optimization/32482
11081 * tree-ssa-ifcombine.c (recognize_single_bit_test): Use the
11082 original ssa name if we didn't find a shift expression.
11083 Fix shift constant for bit zero test.
11084
11085 2007-07-04 Richard Sandiford <richard@codesourcery.com>
11086
11087 * config/sh/lib1funcs.asm (ic_invalidate): Align constant pool.
11088
11089 2007-07-04 Richard Sandiford <richard@codesourcery.com>
11090
11091 * config.gcc (arm-wrs-vxworks): Don't include svr4.h.
11092 * config/vxworks.h (PTRDIFF_TYPE, SIZE_TYPE, TARGET_POSIX_IO): Define.
11093 * config/arm/vxworks.h (ASM_SPEC): Delete.
11094 (SUBTARGET_EXTRA_ASM_SPEC): Define.
11095
11096 2007-07-04 Sebastian Pop <sebpop@gmail.com>
11097
11098 * tree-data-ref.h (data_dependence_relation): New flag reversed_p.
11099 (DDR_REVERSED_P): New.
11100 * tree-data-ref.c (initialize_data_dependence_relation,
11101 build_classic_dist_vector): Set DDR_REVERSED_P.
11102
11103 2007-07-04 Sebastian Pop <sebpop@gmail.com>
11104
11105 PR middle-end/32457
11106 * tree-data-ref.c (analyze_siv_subscript_cst_affine,
11107 compute_overlap_steps_for_affine_1_2, analyze_subscript_affine_affine,
11108 init_omega_for_ddr_1): Use non conservative number of iterations
11109 estimations.
11110 (analyze_subscript_affine_affine): Use HOST_WIDE_INT instead of int.
11111 (analyze_siv_subscript): Remove FIXME and reinitialization of
11112 last_conflicts to chrec_dont_know.
11113 * testsuite/gfortran.dg/vect/pr32457.f90: New.
11114
11115 2007-07-04 Douglas Gregor <doug.gregor@gmail.com>
11116
11117 * tree.c (maybe_canonicalize_argtypes): Improve description.
11118
11119 2007-07-04 Douglas Gregor <doug.gregor@gmail.com>
11120
11121 * tree.c (maybe_canonicalize_argtypes): New.
11122 (build_function_type): Set canonical type.
11123 (build_method_type_directly): Ditto.
11124 (reconstruct_complex_type): Rebuild the METHOD_TYPE node
11125 properly.
11126
11127 2007-07-03 Andrew Pinski <andrew_pinski@playstation.sony.com>
11128
11129 * tree-ssa-loop-ivopts.c (strip_offset_1): Treat POINTER_PLUS_EXPR
11130 like PLUS_EXPR.
11131 (rewrite_use_nonlinear_expr): Likewise.
11132
11133 2007-07-03 Seongbae Park <seongbae.park@gmail.com>
11134
11135 * rtl.def (UNSPEC, USE, CLOBBER): More comments.
11136
11137 2007-07-04 Ben Elliston <bje@au.ibm.com>
11138
11139 * dwarf2out.c: Move DWARF2 abbreviation glossary closer to the top
11140 of this file.
11141
11142 * c-objc-common.c (c_types_compatible_p): Fix indentation.
11143
11144 * doc/tm.texi (Run-time Target): Capitalise "CPU".
11145 (Exception Handling): Likewise.
11146
11147 2007-07-03 Jan Hubicka <jh@suse.cz>
11148
11149 * ifcvt.c (find_cond_trap): Avoid invalid RTL sharing.
11150
11151 2007-07-03 Eric Christopher <echristo@apple.com>
11152
11153 * doc/cppopts.texi: Add conflicting option note to -dM.
11154 * doc/invoke.texi: Add note about possible conflicts with
11155 -E for -dCHARS and note that -dM will not produce
11156 any results if there is no machine dependent reorg.
11157
11158 2007-07-03 Geoffrey Keating <geoffk@apple.com>
11159
11160 * tree.h (DECL_ALIGN): Back out previous change.
11161
11162 2007-07-03 Joseph Myers <joseph@codesourcery.com>
11163
11164 * configure.ac: Test for .dtprelword support on MIPS.
11165 * configure, config.in: Regenerate.
11166 * config/mips/mips.c (mips_output_dwarf_dtprel): New.
11167 (TARGET_ASM_OUTPUT_DWARF_DTPREL): Define.
11168
11169 2007-07-03 Julian Brown <julian@codesourcery.com>
11170
11171 * config.gcc (with_fpu): Allow --with-fpu=vfp3.
11172 * config/arm/aout.h (REGISTER_NAMES): Add D16-D31.
11173 * config/arm/aof.h (REGISTER_NAMES): Add D16-D31.
11174 * config/arm/arm.c (FL_VFPV3): New flag for VFPv3 processor
11175 capability.
11176 (all_fpus): Add FPUTYPE_VFP3.
11177 (fp_model_for_fpu): Add VFPv3 field.
11178 (arm_rtx_costs_1): Give cost to VFPv3 constants.
11179 (vfp3_const_double_index): New function. Return integer index of
11180 VFPv3 constant suitable for fconst[sd] insns, or -1 if constant
11181 isn't suitable.
11182 (vfp3_const_double_rtx): New function. True if VFPv3 is enabled
11183 and argument represents a valid RTX for a VFPv3 constant.
11184 (vfp_output_fldmd): Split fldmd with > 16 registers in the list into
11185 two instructions.
11186 (vfp_emit_fstmd): Similar, for fstmd.
11187 (arm_print_operand): Implement new code 'G' for VFPv3 floating-point
11188 constants, represented as integer indices.
11189 (arm_hard_regno_mode_ok): Use VFP_REGNO_OK_FOR_SINGLE,
11190 VFP_REGNO_OK_FOR_DOUBLE macros.
11191 (arm_regno_class): Handle VFPv3 d0-d7, low, high register split.
11192 (arm_file_start): Set float-abi attribute for VFPv3, and output
11193 correct ".fpu" assembler directive.
11194 (arm_dbx_register_numbering): Add FIXME.
11195 * config/arm/arm.h (TARGET_VFP3): New macro. Target supports VFPv3.
11196 (fputype): Add FPUTYPE_VFP3.
11197 (FIXED_REGISTERS): Add 32 registers for D16-D31.
11198 (CALL_USED_REGISTERS): Likewise.
11199 (CONDITIONAL_REGISTER_USAGE): Add note about conditional definition
11200 of LAST_VFP_REGNUM. Make D16-D31 caller-saved, if present.
11201 (LAST_VFP_REGNUM): Extend available VFP registers for VFPv3.
11202 (D7_VFP_REGNUM): New.
11203 (LAST_LO_VFP_REGNUM, FIRST_HI_VFP_REGNUM, LAST_HI_VFP_REGNUM)
11204 (VFP_REGNO_OK_FOR_SINGLE, VFP_REGNO_OK_FOR_SINGLE)
11205 (VFP_REGNO_OK_FOR_DOUBLE): Define new macros.
11206 (FIRST_PSEUDO_REGISTER): Shift up to 128 to accommodate VFPv3.
11207 (REG_ALLOC_ORDER): Adjust for VFPv3.
11208 (reg_class): Add VFP_D0_D7_REGS, VFP_LO_REGS, VFP_HI_REGS.
11209 (REG_CLASS_NAMES): Add entries corresponding to VFP_D0_D7_REGS,
11210 VFP_LO_REGS, VFP_HI_REGS.
11211 (REG_CLASS_CONTENTS): Likewise. Extend contents for VFP_REGS.
11212 (IS_VFP_CLASS): Define macro.
11213 (SECONDARY_OUTPUT_RELOAD_CLASS, SECONDARY_INPUT_RELOAD_CLASS): Use
11214 IS_VFP_CLASS.
11215 (REGISTER_MOVE_COST): Likewise.
11216 * config/arm/arm-protos.h (vfp3_const_double_rtx): Add prototype.
11217 * config/arm/vfp.md (VFPCC_REGNUM): Redefine as 127.
11218 (*arm_movsi_vfp, *thumb2_movsi_vfp, *movsfcc_vfp)
11219 (*thumb2_movsfcc_vfp, *abssf2_vfp, *negsf2_vfp, *addsf3_vfp)
11220 (*subsf3_vfp, *divsf_vfp, *mulsf_vfp, *mulsf3negsf_vfp)
11221 (*mulsf3addsf_vfp, *mulsf3subsf_vfp, *mulsf3negsfaddsf_vfp)
11222 (*extendsfdf2_vfp, *truncdfsf2_vfp, *truncsisf2_vfp)
11223 (*truncsidf2_vfp, fixuns_truncsfsi2, fixuns_truncdfsi2)
11224 (*floatsisf2_vfp, *floatsidf2_vfp, floatunssisf2)
11225 (floatunssidf2, *sqrtsf2_vfp, *cmpsf_split_vfp)
11226 (*cmpsf_trap_split_vfp, *cmpsf_vfp, *cmpsf_trap_vfp): Use 't'
11227 where appropriate for single-word registers.
11228 (*movsf_vfp, *thumb2_movsf_vfp, *movdf_vfp, *thumb2_movdf_vfp):
11229 As above. Fix type attributes.
11230 * config/arm/constraints.md (register_contraint "t"): Define.
11231 (register_constraint "w"): Change to D0-D15, or D0-D31 for
11232 VFPv3/NEON.
11233 (register_constraint "x"): Define.
11234 (constraint "Dv"): Define.
11235
11236 2007-07-03 Geoffrey Keating <geoffk@apple.com>
11237
11238 * tree.h (DECL_ALIGN): Prevent use on a FUNCTION_DECL.
11239
11240 2007-07-03 Tom Tromey <tromey@redhat.com>
11241
11242 * c-parser.c (objc_pq_context): Removed.
11243 (objc_need_raw_identifier): Likewise.
11244 (c_parser) <objc_pq_context>: New field.
11245 <objc_need_raw_identifier>: Likewise.
11246 (OBJC_NEED_RAW_IDENTIFIER): Removed.
11247 (c_lex_one_token): Update.
11248 (c_parser_objc_protocol_definition): Update.
11249 (c_parser_objc_method_definition): Update.
11250 (c_parser_objc_methodproto): Update.
11251 (c_parser_declspecs): Update.
11252
11253 2007-07-03 David Ung <davidu@mips.com>
11254
11255 * config/mips/mips.c (mips_issue_rate): Return 4 for 74K processors.
11256
11257 2007-07-03 David Ung <davidu@mips.com>
11258 Richard Sandiford <richard@codesourcery.com>
11259
11260 * doc/invoke.texi: Document -march=74kf3_2.
11261 * config/mips/mips.h (PROCESSOR_74KF3_2): New processor_type.
11262 (TUNE_74K): Check for it.
11263 * config/mips/mips.c (mips_cpu_info): Add 74kf3_2.
11264 (mips_rtx_cost_data): Add an entry for PROCESSOR_74KF3_2.
11265 * config/mips/mips.md (cpu): Add 74kf3_2.
11266 * config/mips/74k.md (r74k_int_logical, r74k_int_arith, r74k_int_nop)
11267 (r74k_int_cmove, r74k_int_mult, r74k_int_mul3, r74k_int_mfhilo)
11268 (r74k_int_mthilo, r74k_int_div, r74k_int_call, r74k_int_jump)
11269 (r74k_int_load, r74k_int_store, r74k_unknown, r74k_multi): Add
11270 74kf3_2 to the CPU list.
11271 (r74kf3_2_fadd, r74kf3_2_fmove, r74kf3_2_fload, r74kf3_2_fstore)
11272 (r74kf3_2_fmul_sf, r74kf3_2_fmul_df, r74kf3_2_fdiv_sf)
11273 (r74kf3_2_fdiv_df, r74kf3_2_frsqrt_sf, r74kf3_2_frsqrt_df)
11274 (r74kf3_2_fcmp, r74kf3_2_fcvt, r74kf3_2_fxfer_to_c1)
11275 (r74kf3_2_fxfer_from_c1): New insn reservations.
11276
11277 2007-07-03 Richard Sandiford <richard@codesourcery.com>
11278 David Ung <davidu@mips.com>
11279
11280 * doc/invoke.texi: Replace -march=24kf with -march=24kf2_1 and
11281 -march=24kx with -march=24kf1_1. Likewise 24ke[fx], 34k[fx]
11282 and 74k[fx]. Document aliases for the new options.
11283 * config/mips/mips.h (PROCESSOR_24KF): Rename to...
11284 (PROCESSOR_24KF2_1): ...this.
11285 (PROCESSOR_24KX): Rename to...
11286 (PROCESSOR_24KF1_1): ...this.
11287 (PROCESSOR_74KF): Rename to...
11288 (PROCESSOR_74KF2_1): ...this.
11289 (PROCESSOR_74KX): Rename to...
11290 (PROCESSOR_74KF1_1): ...this.
11291 (TUNE_74K): Update PROCESSOR_* names.
11292 * config/mips/mips.c (mips_cpu_info): Add 24kf2_1 as a synonym
11293 for 24kf. Add 24kf1_1 and 24kfx as synonyms for 24kx. Likewise
11294 the 24ke*, 34k* and 74k* processors. Update PROCESSOR_* names.
11295 (mips_rtx_cost_data): Update processor names in comments.
11296 (mips_issue_rate): Update PROCESSOR_* names.
11297 * config/mips/mips.md (cpu): Rename 24kf to 24kf2_1, 24kx to
11298 24kf1_1, 74kf to 74kf2_1 and 74kx to 74kf1_1.
11299 * config/mips/24k.md: Rename FPU-related r24k_* insn reservations
11300 to r24kf2_1_*. Rename r24kx_* insn reservations to r24kf1_1_*.
11301 Update cpu attribute names.
11302 (r24k_fpu_iss): Rename this reservation to...
11303 (r24kf2_1_fpu_iss): ...this and update all uses.
11304 (r24kx_fpu_iss): Rename this reservation to...
11305 (r24kf1_1_fpu_iss): ...this and update all uses.
11306 * config/mips/74k.md: Rename FPU-related r74kf_* insn reservations
11307 to r74kf2_1_*. Rename r74kx_* insn reservations to r74kf1_1_*.
11308 Update cpu attribute names.
11309
11310 2007-07-01 Kaz Kojima <kkojima@gcc.gnu.org>
11311
11312 * config/m32r/constraints.md: New file.
11313 * config/m32r/m32r.c: Include tm-constrs.h.
11314 (small_data_operand): Use satisfies_constraint_* instead of macro.
11315 (addr24_operand, gen_compare): Likewise.
11316 * config/m32r/m32r.h (REG_CLASS_FROM_LETTER): Remove.
11317 (INT8_P, UPPER16_P, UINT32_P, UINT5_P, INVERTED_SIGNED_8BIT,
11318 CONST_OK_FOR_LETTER_P, CONST_DOUBLE_OK_FOR_LETTER_P,
11319 EXTRA_CONSTRAINT): Likewise.
11320 * config/m32r/m32r.md: Include constraints.md.
11321 (*movsi_insn): Use satisfies_constraint_* instead of macro.
11322 (andsi3, iorsi3, xorsi3, seq_insn+1, sne): Likewise.
11323 * config/m32r/predicates.md (conditional_move_operand): Likewise.
11324 (two_insn_const_operand, int8_operand, uint16_operand,
11325 reg_or_int16_operand, reg_or_uint16_operand,
11326 reg_or_cmp_int16_operand, cmp_int16_operand,
11327 seth_add3_operand): Likewise.
11328
11329 2007-07-03 Eric Christopher <echristo@gmail.com>
11330
11331 * libgcc2.h: Conditionally declare __bswapsi2 and
11332 __bswapdi2.
11333
11334 2007-07-03 H.J. Lu <hongjiu.lu@intel.com>
11335
11336 * ddg.c (check_sccs): Define only if ENABLE_CHECKING is
11337 defined.
11338
11339 2007-07-03 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
11340
11341 PR target/28307
11342 * gthr-posix.h [SUPPORTS_WEAK && GTHREAD_USE_WEAK]
11343 (__gthrw_pragma): Provide default definition.
11344 (__gthrw2): Use it.
11345 * gthr-posix.c (__gthrw_pragma): Define.
11346
11347 2007-07-03 Daniel Berlin <dberlin@dberlin.org>
11348
11349 * tree-ssa-sccvn.c (set_ssa_val_to): Check for operand_equal_p
11350 before declaring inequality.
11351
11352 2007-07-03 Rask Ingemann Lambertsen <rask@sygehus.dk>
11353
11354 * combine.c (recog_for_combine): Log the success or failure of
11355 matching new insn patterns against the machine description in
11356 detailed dumps.
11357
11358 2007-07-03 Revital Eres <eres@il.ibm.com>
11359
11360 * ddg.c (print_sccs): New function.
11361 (check_sccs): New function.
11362 (create_ddg_all_sccs): Use it.
11363 * ddg.h (print_sccs): Declare.
11364 * modulo-sched.c (sms_order_nodes): Call print_sccs.
11365
11366 2007-07-03 Uros Bizjak <ubizjak@gmail.com>
11367
11368 * targhooks.h (default_mode_for_suffix): New function declaration.
11369 * targhooks.c (default_mode_for_suffix): New default target hook.
11370 * target.h (struct c): New structure in the targetm struct.
11371 (mode_for_suffix): New target hook as part of struct c.
11372 target-def.h (TARGET_C_MODE_FOR_SUFFIX): Define as
11373 default_mode_for_suffix.
11374 (TARGET_C): New define.
11375 * c-lex.c: Include "target.h".
11376 (interpret_float): Use targetm.c.mode_for_suffix to determine
11377 the mode for a given non-standard suffix.
11378 Makefile.in (c-lex.o): Depend on $(TARGET_H).
11379
11380 * config/i386/i386.c (ix86_c_mode_for_suffix): New static function.
11381 (TARGET_C_MODE_FOR_SUFFIX): Define to ix86_c_mode_for_suffix.
11382
11383 * doc/extend.texi (Floating Types): New node. Document __float80 and
11384 __float128 types. Document 'w', 'W', 'q' and 'Q' suffixes.
11385
11386 2007-07-03 Kaz Kojima <kkojima@gcc.gnu.org>
11387
11388 PR target/32506
11389 * config/sh/sh.md (udivsi3_i1_media): Use target_reg_operand
11390 predicate instead of target_operand.
11391 (divsi3_i1_media, divsi3_media_2): Likewise.
11392
11393 2007-07-02 Eric Botcazou <ebotcazou@adacore.com>
11394
11395 * tree.h (alias_sets_might_conflict_p): Rename into
11396 alias_sets_must_conflict_p.
11397 * alias.c (alias_sets_might_conflict_p): Likewise.
11398 (alias_sets_conflict_p): Use it.
11399 (objects_must_conflict_p): Likewise.
11400 * c-common.c (strict_aliasing_warning): Adjust.
11401
11402 2007-07-02 Andrew Pinski <andrew_pinski@playstation.sony.com>
11403
11404 * rtlhooks.c (gen_lowpart_if_possible): Check for
11405 invalid subreg before calling gen_lowpart_SUBREG.
11406
11407 2007-07-02 Geoffrey Keating <geoffk@apple.com>
11408
11409 * config/darwin9.h: Add copyright notice.
11410 (LINK_COMMAND_SPEC): Add comment.
11411 (DARWIN_LIBSYSTEM_HAS_UNWIND): Define.
11412 * config/rs6000/darwin.h (MD_UNWIND_SUPPORT): Conditionalise on
11413 DARWIN_LIBSYSTEM_HAS_UNWIND.
11414
11415 2007-07-02 Jakub Jelinek <jakub@redhat.com>
11416
11417 PR libgomp/32468
11418 * omp-low.c (check_combined_parallel): New function.
11419 (lower_omp_parallel): Call it via walk_stmts, set
11420 OMP_PARALLEL_COMBINED if appropriate.
11421 (determine_parallel_type): If OMP_FOR resp. OMP_SECTIONS
11422 isn't the only statement in WS_ENTRY_BB or OMP_RETURN
11423 the only one in PAR_EXIT_BB and not OMP_PARALLEL_COMBINED,
11424 don't consider it as combined parallel.
11425
11426 2007-07-02 Richard Sandiford <richard@codesourcery.com>
11427
11428 * configure.ac (gcc_gxx_include_dir): Use $(libsubdir_to_prefix).
11429 (gcc_tooldir): Likewise.
11430 * configure: Regenerate.
11431 * Makefile.in (libsubdir_to_prefix): New variable, based on the
11432 old configure.ac gcc_tooldir setting.
11433 (prefix_to_exec_prefix): New variable.
11434 (DRIVER_DEFINES): Use $(libsubdir_to_prefix)$(prefix_to_exec_prefix)
11435 rather than $(unlibsubdir)/../ to derive TOOLDIR_BASE_PREFIX.
11436
11437 2007-07-02 Daniel Berlin <dberlin@dberlin.org>
11438
11439 Fix PR tree-optimization/32583
11440 Fix PR tree-optimization/32584
11441 * tree-ssa-pre.c (phi_translate): Always pass seen bitmap.
11442 (phi_translate_set): Use phi_translate directly now.
11443 (make_values_for_stmt): Don't value number RHS if we already know
11444 it is constant.
11445
11446 2007-07-02 Steve Ellcey <sje@cup.hp.com>
11447 Jim Wilson <wilson@specifix.com>
11448
11449 PR target/31684
11450 * haifa-sched.c (add_to_speculative_block): Change copy_rtx to
11451 copy_insn.
11452
11453 2007-07-02 Sandra Loosemore <sandra@codesourcery.com>
11454 Richard Sandiford <richard@codesourcery.com>
11455 Nigel Stephens <nigel@mips.com>
11456
11457 * config/mips/mips-protos.h (mips16e_save_restore_info): New struct.
11458 (mips16e_output_save_restore): Declare.
11459 (mips16e_save_restore_pattern_p): Likewise.
11460 * config/mips/mips.h (GENERATE_MIPS16E_SAVE_RESTORE): New macro.
11461 * config/mips/mips.c (MIPS_MAX_FIRST_STACK_STEP): Return 0x7f8
11462 for GENERATE_MIPS16E_SAVE_RESTORE. Return 0x400 for TARGET_MIPS16
11463 && !GENERATE_MIPS16E_SAVE_RESTORE && !TARGET_64BIT.
11464 (BITSET_P): New global macro, extracted from...
11465 (mips_for_each_saved_reg): ...here.
11466 (mips16e_save_restore_info): New struct.
11467 (mips16e_s2_s8_regs, mips16e_a0_a3_regs): New variables.
11468 (mips16e_save_restore_regs): New variable.
11469 (mips_split_plus, mips16e_find_first_register): New functions.
11470 (mips16e_mask_registers): New function.
11471 (compute_frame_size): Expand the commentary before the function.
11472 Enforce the MIPS16e save and restore register range restrictions.
11473 Pad the general register save area at the low end.
11474 (mips16e_save_restore_reg, mips16e_build_save_restore)
11475 (mips16e_save_restore_pattern_p, mips16e_add_register_range)
11476 (mips16e_output_save_restore, mips16e_collect_propagate_value)
11477 (mips16e_collect_argument_save, mips16e_collect_argument_saves):
11478 New functions.
11479 (mips_expand_prologue, mips_expand_epilogue): Handle
11480 GENERATE_MIPS16E_SAVE_RESTORE.
11481 * config/mips/mips.md (*mips16e_save_restore): New pattern.
11482
11483 2007-07-02 Uros Bizjak <ubizjak@gmail.com>
11484
11485 PR tree-optimization/31966
11486 PR tree-optimization/32533
11487 * tree-if-conv.c (add_to_dst_predicate_list): Use "edge", not
11488 "basic_block" description as its third argument. Update function
11489 calls to get destination bb from "edge" argument. Save "cond" into
11490 aux field of the edge. Update prototype for changed arguments.
11491 (if_convertible_loop_p): Clear aux field of incoming edges if bb
11492 contains phi node.
11493 (find_phi_replacement_condition): Operate on incoming edges, not
11494 on predecessor blocks. If there is a condition saved in the
11495 incoming edge aux field, AND it with incoming bb predicate.
11496 Return source bb of the first edge.
11497 (clean_predicate_lists): Clean aux field of outgoing node edges.
11498 (tree_if_conversion): Do not initialize cond variable. Move
11499 variable declaration into the loop.
11500 (replace_phi_with_cond_gimple_modify_stmt): Remove unneded
11501 initializations of new_stmt, arg0 and arg1 variables.
11502
11503 2007-07-02 Jakub Jelinek <jakub@redhat.com>
11504
11505 * tree-nrv.c (dest_safe_for_nrv_p): Grok any handled_component_p,
11506 SSA_NAMEs, RESULT_DECLs and PARM_DECLs.
11507
11508 2007-07-02 Richard Guenther <rguenther@suse.de>
11509
11510 * tree-ssa.c (useless_type_conversion_p): Document
11511 future intent as defining the middle-end type system.
11512 Re-structure to call langhook last, group by type class,
11513 mark questionable parts.
11514
11515 2007-07-02 Richard Guenther <rguenther@suse.de>
11516
11517 * tree-flow.h (types_compatible_p): Declare.
11518 * tree-ssa.c (types_compatible_p): New function.
11519 * ipa-type-escape.c (discover_unique_type): Use
11520 types_compatible_p instead of lang_hooks.types_compatible_p.
11521 * tree-ssa-copyrename.c (copy_rename_partition_coalesce): Likewise.
11522 * tree-vn.c (expressions_equal_p): Likewise.
11523 * tree.c (fields_compatible_p): Likewise.
11524 * tree-ssa-dom.c (avail_expr_eq): Likewise.
11525 (cprop_operand): Use useless_type_conversion_p instead of
11526 lang_hooks.types_compatible_p.
11527 * tree-inline.c (setup_one_parameter): Likewise.
11528 (declare_return_variable): Likewise.
11529 * tree-nrv.c (tree_nrv): Likewise.
11530 * tree-ssa-ccp.c (maybe_fold_offset_to_array_ref): Likewise.
11531 (maybe_fold_offset_to_component_ref): Likewise.
11532 (maybe_fold_offset_to_reference): Likewise.
11533 * tree-ssa-copy.c (may_propagate_copy): Likewise.
11534 (merge_alias_info): Likewise.
11535 * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Likewise.
11536 * tree-ssa-phiopt.c (conditional_replacement): Likewise.
11537 * tree-ssa-reassoc.c (optimize_ops_list): Likewise.
11538 * tree-tailcall.c (find_tail_calls): Likewise.
11539 * tree-vect-generic.c (expand_vector_operations_1): Likewise.
11540 * gimplify.c (canonicalize_addr_expr): Likewise.
11541 (fold_indirect_ref_rhs): Likewise.
11542 (gimplify_addr_expr): Likewise. Swap parameters to cpt_same_type.
11543 (cpt_same_type): Likewise.
11544 (check_pointer_types_r): Swap parameters to cpt_same_type
11545 where appropriate.
11546 * fold-const.c (fold_convert): Revert fix for PR15988.
11547 * tree-inline.c (setup_one_parameter): Instead fix it here by
11548 using fold_build1 instead of fold_convert and checking for
11549 error_mark_node. Convert only if the conversion is necessary.
11550
11551 2007-07-02 Joseph Myers <joseph@codesourcery.com>
11552
11553 * configure.ac: Check for .gnu_attribute on Power.
11554 * configure: Regenerate.
11555 * config/rs6000/rs6000.c (rs6000_file_start): If supported, output
11556 attribute for floating-point ABI.
11557
11558 2007-07-02 Ira Rosen <irar@il.ibm.com>
11559
11560 PR tree-optimization/32230
11561 PR tree-optimization/32477
11562 * tree-vect-analyze.c (vect_analyze_data_refs): Fail if base
11563 address is a constant.
11564
11565 2007-07-02 Richard Sandiford <richard@codesourcery.com>
11566
11567 * config.gcc (mipsisa32-*-elf*, mipsisa32el-*-elf*)
11568 (mipsisa32r2-*-elf*, mipsisa32r2el-*-elf*)
11569 (mipsisa64-*-elf*, mipsisa64el-*-elf*): Combine top-level
11570 stanzas. Use the first part of the triplet to set MIPS_ISA_DEFAULT.
11571 Remove redundant setting of MASK_FLOAT64 and MASK_64BIT for the
11572 64-bit targets. Add support for *-elfoabi*.
11573 * config/mips/t-isa3264 (MULTILIB_OPTIONS, MULTILIB_DIRNAMES): Use
11574 different settings if $(tm_defines) does not select the EABI.
11575 (MULTILIB_EXCLUSIONS): Define in those circumstances.
11576 * config/mips/mips.h (MIPS_ISA_LEVEL_OPTION_SPEC): New macro.
11577 (MIPS_ARCH_OPTION_SPEC): Likewise.
11578 (MIPS_ISA_LEVEL_SPEC): Likewise.
11579 (OPTION_DEFAULT_SPECS): Use MIPS_ARCH_OPTION_SPEC.
11580 * config/mips/elfoabi.h: New file.
11581
11582 2007-07-02 Richard Guenther <rguenther@suse.de>
11583
11584 * tree-flow.h (tree_ssa_useless_type_conversion_1): Rename to ...
11585 (useless_type_conversion_p): ... this.
11586 * tree-ssa.c (tree_ssa_useless_type_conversion_1): Rename to ...
11587 (useless_type_conversion_p): ... this.
11588 * builtins.c (fold_builtin_memory_op): Rename
11589 tree_ssa_useless_type_conversion_1 to useless_type_conversion_p.
11590 * tree-cfg.c (verify_expr): Likewise.
11591 * tree-ssa-address.c (tree_ssa_useless_type_conversion_1): Likewise.
11592 * tree-ssa-ccp.c (ccp_fold): Likewise.
11593 * tree-ssa-copy.c (may_propagate_copy): Likewise.
11594 * tree-ssa-dom.c (eliminate_redundant_computations): Likewise.
11595 * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Likewise.
11596 * tree-ssa-loop-niter.c (refine_bounds_using_guard): Likewise.
11597 * tree-ssa-pre.c (eliminate): Likewise.
11598 * tree-ssa.c (delete_tree_ssa): Likewise.
11599 (tree_ssa_useless_type_conversion): Likewise.
11600 * tree.c (build2_stat): Likewise.
11601
11602 2007-07-01 Daniel Berlin <dberlin@dberlin.org>
11603
11604 Fix PR tree-optimization/32571
11605 * tree-ssa-sccvn.c (visit_use): Shortcut copies to avoid
11606 simplifying them.
11607
11608 2007-07-01 Daniel Berlin <dberlin@dberlin.org>
11609
11610 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Handle constants
11611 and other expected operations explicitly, change default to
11612 gcc_unreachable.
11613
11614 2007-07-01 Daniel Jacobowitz <dan@codesourcery.com>
11615
11616 * config/arm/arm.c (arm_cannot_copy_insn_p): Do not expect a
11617 PARALLEL.
11618 * config/arm/arm.md (pic_add_dot_plus_four, pic_add_dot_plus_eight)
11619 (tls_load_dot_plus_eight): Move the label number into the unspec.
11620 * config/arm/thumb2.md (pic_load_dot_plus_four): Likewise.
11621
11622 2007-07-01 Andreas Schwab <schwab@suse.de>
11623
11624 * dwarf2out.c (initial_return_save): Define only if used.
11625
11626 2007-07-01 Kenneth Zadeck <zadeck@naturalbridge.com>
11627
11628 Unreverting Richard's Revert of:
11629
11630 2007-06-27 Richard Sandiford <richard@codesourcery.com>
11631
11632 * dce.c (deletable_insn_p_1): New function, split out from...
11633 (deletable_insn_p): ...here. Only treat bare USEs and CLOBBERs
11634 specially, not those inside PARALLELs. Remove BODY argument
11635 and adjust recursive call accordingly.
11636 (prescan_insns_for_dce): Update call to delete_insn_p.
11637
11638 2007-07-01 Vladimir Yanovsky <yanov@il.ibm.com>
11639 Revital Eres <eres@il.ibm.com>
11640
11641 * ddg.c (create_ddg_all_sccs): Fix missed
11642 initialization of scc_nodes.
11643
11644 2007-07-01 Uros Bizjak <ubizjak@gmail.com>
11645
11646 PR middle-end/32559
11647 * fold-const.c (fold-binary) [PLUS_EXPR]: Convert ~X + X to 1 or
11648 X + ~X to 1 only for INTEGRAL_TYPE_P type.
11649
11650 2007-06-30 Joseph Myers <joseph@codesourcery.com>
11651
11652 * configure.ac: Check for .gnu_attribute on MIPS.
11653 * configure, config.in: Regenerate.
11654 * config/mips/mips.c (mips_file_start): If supported, output
11655 attribute for floating-point ABI.
11656
11657 2007-06-30 Uros Bizjak <ubizjak@gmail.com>
11658
11659 PR target/32433
11660 * config/i386/i386.md (ffssi2): Expand as ffs_cmove for TARGET_CMOVE.
11661 (ffs_cmove): New expander to expand using ctz pattern.
11662 (*ffs_cmove): Remove pattern.
11663 (*ffs_no_cmove): Enable only for !TARGET_CMOVE.
11664 (ffsdi2): Expand using ctz pattern.
11665 (*ffs_rex64): Remove pattern.
11666
11667 2007-06-30 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
11668
11669 PR rtl-optimization/32296
11670 * pa.md (return): Delete pattern.
11671 (return_internal): Remove "(const_int 1)" from pattern.
11672 (epilogue): Use return_internal pattern for trivial returns.
11673 * pa-protos.h (hppa_can_use_return_insn_p): Delete declaration.
11674 * pa.c (hppa_can_use_return_insn_p): Delete function. Include "df.h".
11675
11676 2007-06-30 Daniel Berlin <dberlin@dberlin.org>
11677
11678 * tree-ssa-pre.c (is_exception_related): New function
11679 (can_value_number_operation): Use it.
11680
11681 2007-06-30 Daniel Berlin <dberlin@dberlin.org>
11682
11683 Fix PR tree-optimization/32540
11684 Fix PR tree-optimization/31651
11685
11686 * tree-ssa-sccvn.c: New file.
11687
11688 * tree-ssa-sccvn.h: Ditto.
11689
11690 * tree-vn.c: Include tree-ssa-sccvn.h
11691 (val_expr_paid_d): Removed.
11692 (value_table): Ditto.
11693 (vn_compute): Ditto.
11694 (val_expr_pair_hash): Ditto.
11695 (val_expr_pair_expr_eq): Ditto.
11696 (copy_vuses_from_stmt): Ditto.
11697 (vn_delete): Ditto.
11698 (vn_init): Ditto.
11699 (shared_vuses_from_stmt): Ditto.
11700 (print_creation_to_file): Moved up.
11701 (sort_vuses): Ditto.
11702 (sort_vuses_heap): Ditto.
11703 (set_value_handle): Make non-static.
11704 (make_value_handle): Ditto.
11705 (vn_add): Rewritten to use sccvn lookups.
11706 (vn_add_with_vuses): Ditto.
11707 (vn_lookup): Ditto (and second argument removed).
11708 (vn_lookup_with_vuses): Ditto.
11709 (vn_lookup_or_add): Ditto (and second argument removed);
11710 (vn_lookup_or_add_with_vuses): Ditto.
11711 (vn_lookup_with_stmt): New.
11712 (vn_lookup_or_add_with_stmt): Ditto.
11713 (create_value_handle_for_expr): Ditto.
11714
11715 * tree-ssa-pre.c: Include tree-ssa-sccvn.h.
11716 (seen_during_translate): New function.
11717 (phi_trans_lookup): Use iterative_hash_expr, not vn_compute.
11718 (phi_trans_add): Ditto.
11719 (constant_expr_p): FIELD_DECL is always constant.
11720 (phi_translate_1): Renamed from phi_translate, add seen bitmap.
11721 Use constant_expr_p.
11722 Avoid infinite recursion on mutually valued expressions.
11723 Change callers of vn_lookup_or_add.
11724 (phi_translate): New function.
11725 (compute_antic_safe): Allow phi nodes.
11726 (create_component_ref_by_pieces): Update for FIELD_DECL change.
11727 (find_or_generate_expression): Rewrite slightly.
11728 (create_expression_by_pieces): Updated for vn_lookup_or_add
11729 change.
11730 Update VN_INFO for new names.
11731 (insert_into_preds_of_block): Update for new names.
11732 (add_to_exp_gen): New function.
11733 (add_to_sets): Use vn_lookup_or_add_with_stmt.
11734 (find_existing_value_expr): Rewrite to changed vn_lookup.
11735 (create_value_expr_from): Ditto, and use add_to_exp_gen.
11736 (try_look_through_load): Removed.
11737 (try_combine_conversion): Ditto.
11738 (get_sccvn_value): New function.
11739 (make_values_for_phi): Ditto.
11740 (make_values_for_stmt): Ditto.
11741 (compute_avail): Rewritten for vn_lookup_or_add changes and to use
11742 SCCVN.
11743 (init_pre): Update for SCCVN changes.
11744 (fini_pre): Ditto.
11745 (execute_pre): Ditto.
11746
11747 * tree-flow.h (make_value_handle): Declare.
11748 (set_value_handle): Ditto.
11749 (sort_vuses_heap): Ditto.
11750 (vn_lookup_or_add_with_stmt): Ditto.
11751 (vn_lookup_with_stmt): Ditto.
11752 (vn_compute): Remove.
11753 (vn_init): Ditto.
11754 (vn_delete): Ditto.
11755 (vn_lookup): Update arguments.
11756
11757 * Makefile.in (tree-ssa-pre.o): Add tree-ssa-sccvn.h
11758 (tree-vn.o): Ditto.
11759 (tree-ssa-sccvn.o): New.
11760 (OBJS-common): Add tree-ssa-sccvn.o
11761
11762 2007-06-30 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
11763
11764 PR c/4076
11765 * c-typeck.c (build_external_ref): Don't mark as used if called
11766 from itself.
11767 * calls.c (rtx_for_function_call): Likewise.
11768
11769 2007-06-30 Richard Sandiford <richard@codesourcery.com>
11770
11771 Revert:
11772
11773 2007-06-27 Richard Sandiford <richard@codesourcery.com>
11774
11775 * dce.c (deletable_insn_p_1): New function, split out from...
11776 (deletable_insn_p): ...here. Only treat bare USEs and CLOBBERs
11777 specially, not those inside PARALLELs. Remove BODY argument
11778 and adjust recursive call accordingly.
11779 (prescan_insns_for_dce): Update call to delete_insn_p.
11780
11781 2007-06-30 Rask Ingemann Lambertsen <rask@sygehus.dk>
11782
11783 * combine.c (combine_validate_cost): New parameter NEWOTHERPAT.
11784 (try_combine): Move potential calls to undo_all() so they happen
11785 before we commit to using the combined insns.
11786
11787 2006-06-30 Jan Hubicka <jh@suse.cz>
11788
11789 * loop-unroll.c (unroll_loop_runtime_iterations): Unshare newly emit
11790 code.
11791
11792 2006-06-30 Thomas Neumann <tneumann@users.sourceforge.net>
11793
11794 * ipa.c (cgraph_postorder): Cast according to the coding conventions.
11795 (cgraph_remove_unreachable_nodes): Likewise.
11796 * ipa-cp.c (ipcp_propagate_stage): Use BOTTOM instead of integer 0.
11797 * ipa-inline.c (update_caller_keys): Cast according to the coding
11798 conventions.
11799 (cgraph_decide_recursive_inlining): Likewise.
11800 (cgraph_decide_inlining_of_small_function): Likewise.
11801 (try_inline): Likewise.
11802 (cgraph_decide_inlining_incrementally): Likewise.
11803 * ipa-pure-const.c (get_function_state): Likewise.
11804 (scan_function): Likewise.
11805 (analyze_function): Likewise.
11806 (static_execute): Likewise.
11807 * ipa-reference.c (scan_for_static_refs): Likewise.
11808 (merge_callee_local_info): Likewise.
11809 (analyze_function): Use type safe memory macros.
11810 (static_execute): Likewise. Cast according to the coding conventions.
11811 * ipa-type-escape.c (scan_for_regs): Cast according to the coding
11812 conventions.
11813 * ipa-utils.c (searchc): Likewise. Avoid using C++ keywords as variable
11814 names.
11815 (ipa_utils_reduced_inorder): Likewise. Use type safe memory macros.
11816 * ipa-utils.h (struct ipa_dfa_info): Avoid using C++ keywords as
11817 variable names.
11818
11819 2007-06-29 Andrew Pinski <andrew_pinski@playstation.sony.com>
11820
11821 PR middle-end/30024
11822 * emit-rtl.c (init_emit_once): Intilize const_tiny_rtx[0]
11823 for complex modes (both int and real).
11824
11825 2007-06-29 Jan Hubicka <jh@suse.cz>
11826
11827 * cse.c: Rever accidentally comitted TODO_verify_rtl_sharing change.
11828
11829 2007-06-29 Jan Hubicka <jh@suse.cz>
11830
11831 PR middle-end/32372
11832 * cse.c (cse_insn): Avoid invalid sharing in between register note and
11833 the insn pattern.
11834
11835 2007-06-29 Anatoly Sokolov <aesok@post.ru>
11836
11837 PR target/32335
11838 * config/avr/avr.c: Include dataflow header file.
11839 (expand_prologue): Adjust for prologue insn change.
11840 * config/avr/avr.md (call_prologue_saves): Only modify REG_SP once
11841 inside a insn.
11842
11843 2007-06-29 Richard Guenther <rguenther@suse.de>
11844
11845 PR middle-end/32493
11846 * gimplify.c (gimplify_call_expr): Ignore variable argument parts
11847 during type verification.
11848
11849 2007-06-29 Jan Hubicka <jh@suse.cz>
11850
11851 * recog.c (validate_change_rtx_1): Unshare TO argument.
11852
11853 2007-06-29 Uros Bizjak <ubizjak@gmail.com>
11854
11855 PR tree-optimization/24659
11856 * tree-vect-transform.c (vectorizable_call): Handle
11857 (nunits_in == nunits_out / 2) and (nunits_out == nunits_in / 2) cases.
11858
11859 * config/i386/sse.md (vec_pack_sfix_v2df): New expander.
11860 * config/i386/i386.c (enum ix86_builtins)
11861 [IX86_BUILTIN_VEC_PACK_SFIX]: New constant.
11862 (struct bdesc_2arg) [__builtin_ia32_vec_pack_sfix]: New builtin
11863 description.
11864 (ix86_init_mmx_sse_builtins): Define all builtins with 2 arguments as
11865 const using def_builtin_const.
11866 (ix86_expand_binop_builtin): Remove bogus assert() that insn wants
11867 input operands in the same modes as the result.
11868 (ix86_builtin_vectorized_function): Handle BUILT_IN_LRINT.
11869
11870 2007-06-29 Richard Sandiford <rsandifo@nildram.co.uk>
11871
11872 * df-problems.c (df_set_unused_notes_for_mw): Fix formatting.
11873 (df_set_dead_notes_for_mw): Likewise.
11874
11875 2007-06-29 Eric Botcazou <ebotcazou@adacore.com>
11876
11877 * c-common.c (pointer_int_sum): Do the negation in sizetype.
11878
11879 2007-06-28 DJ Delorie <dj@redhat.com>
11880
11881 * config/m32c/m32c.h (OVERRIDE_OPTIONS): Omit unneeded semicolon.
11882
11883 2007-06-28 Geoffrey Keating <geoffk@apple.com>
11884
11885 * doc/invoke.texi (C++ Dialect Options): Document
11886 fvisibility-ms-compat.
11887 * c.opt (fvisibility-ms-compat): New.
11888
11889 2007-06-28 Andrew Pinski <andrew_pinski@playstation.sony.com>
11890
11891 PR tree-opt/32417
11892 * tree-affine.c (aff_combination_add_elt): Handle
11893 pointer addition specially.
11894
11895 2007-06-28 Jakub Jelinek <jakub@redhat.com>
11896
11897 * config/rs6000/rs6000.c (rs6000_function_ok_for_sibcall): Ensure
11898 decl is non-external for AIX ABI.
11899
11900 2007-06-28 David Edelsohn <edelsohn@gnu.org>
11901
11902 * config/rs6000/predicates.md (current_file_function_operand):
11903 Ensure the symbol is non-external for AIX ABI.
11904
11905 2007-06-28 Nick Clifton <nickc@redhat.com>
11906
11907 * common.opt (fipa-matrix-reorg): Add Optimization attribute.
11908 (fdce, fdse, fpredictive-commoning): Likewise.
11909
11910 2007-06-28 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
11911
11912 PR other/31400
11913 * gcc.c (process_command): Recognize the new -static-libgfortran
11914 option.
11915
11916 2007-06-27 Rask Ingemann Lambertsen <rask@sygehus.dk>
11917
11918 PR target/32418
11919 * config/m32c/m32c.c (m32c_eh_return_stackadj_rtx): Dataflow fix:
11920 Use a call clobbered hard reg instead of a pseudo reg.
11921
11922 2007-06-27 Kaz Kojima <kkojima@gcc.gnu.org>
11923
11924 * config/sh/sh.md (load_gbr): Use correct operand constraint.
11925
11926 2007-06-27 Kaz Kojima <kkojima@gcc.gnu.org>
11927
11928 PR target/32479
11929 * config/sh/sh.md (udivsi3): Don't wrap the sequence with
11930 REG_LIBCALL and REG_RETVAL notes.
11931 (divsi3, mulsi3): Likewise.
11932 (mulhisi3): Likewise. Use emit_libcall_block.
11933 (umulhisi3, smulsi3_highpart, umulsi3_highpart_i): Likewise.
11934
11935 2007-06-27 Seongbae Park <seongbae.park@gmail.com>
11936
11937 PR rtl-optimization/32481
11938 * combine.c (adjust_for_new_dest): Rescan the changed insn.
11939
11940 2007-06-27 Richard Sandiford <richard@codesourcery.com>
11941
11942 * dce.c (deletable_insn_p_1): New function, split out from...
11943 (deletable_insn_p): ...here. Only treat bare USEs and CLOBBERs
11944 specially, not those inside PARALLELs. Remove BODY argument
11945 and adjust recursive call accordingly.
11946 (prescan_insns_for_dce): Update call to delete_insn_p.
11947
11948 2007-06-27 Richard Guenther <rguenther@suse.de>
11949
11950 PR middle-end/32492
11951 * tree.h (fold_convertible_p): Declare.
11952 * fold-const.c (fold_convertible_p): New function.
11953 * gimplify.c (gimplify_call_expr): Use fold_convertible_p
11954 instead of lang_hooks.types_compatible_p.
11955
11956 2007-06-26 Jan Hubicka <jh@suse.cz>
11957
11958 * fwprop.c (try_fwprop_subst): Use validate_unshare_change.
11959 * postreload.c (reload_cse_simplify_set): Instead of copying the rtx
11960 early use validate_unshare_change.
11961 (reload_combine): Likewise.
11962 * recog.c (change_t): New field unshare.
11963 (validate_change_1): Rename from validate_change; add argument unshare.
11964 (validate_change): Turn into wrapper of validate_change_1; update
11965 prototype for bools.
11966 (validate_unshare_change): New.
11967 (confirm_change_group): Unshare changes if asked for; avoid unnecesary
11968 calls of df_insn_rescan.
11969 * recog.h (validate_change): Replace ints by bools.
11970 (validate_unshare_change): Declare.
11971
11972 2007-06-26 Kenneth Zadeck <zadeck@naturalbridge.com>
11973
11974 * tree.def (VEC_WIDEN_MULT_LO_EXPR): Corrected string name.
11975
11976 2007-06-26 Steve Ellcey <sje@cup.hp.com>
11977
11978 * builtins.c (expand_builtin_next_arg): Change Pmode to ptr_mode.
11979
11980 2007-06-25 Jan Hubicka <jh@suse.cz>
11981
11982 * ipa-inline.c (cgraph_mark_inline): Assert that we never inline
11983 uninlinable call.
11984 (cgraph_decide_inlining_of_small_function, cgraph_decide_inlining,
11985 cgraph_decide_inlining_incrementally): Move uninlinability checks to
11986 places other call site specific checks are performed.
11987
11988 2007-06-25 Andrew Pinski <andrew_pinski@playstation.sony.com>
11989
11990 PR tree-opt/32421
11991 * tree-vect-transform.c (vectorizable_operation): Convert
11992 POINTER_PLUS_EXPR over to PLUS_EXPR.
11993
11994 2007-06-25 Chao-ying Fu <fu@mips.com>
11995
11996 * doc/rtl.texi (Machine Modes): Document QQ, HQ, SQ, DQ, TQ,
11997 UQQ, UHQ, USQ, UDQ, UTQ, HA, SA, DA, TA, UHA, USA, UDA, and UTAmodes.
11998 Document MODE_FRACT, MODE_UFRACT, MODE_ACCUM, MODE_UACCUM.
11999 Document GET_MODE_IBIT, and GET_MODE_FBIT.
12000
12001 * machmode.h (VECTOR_MODE_P): Test MODE_VECTOR_FRACT,
12002 MODE_VECTOR_UFRACT, MODE_VECTOR_ACCUM, MODE_VECTOR_UACCUM.
12003 (SCALAR_FRACT_MODE_P, SCALAR_UFRACT_MODE_P, ALL_SCALAR_FRACT_MODE_P,
12004 SCALAR_ACCUM_MODE_P, SCALAR_UACCUM_MODE_P, ALL_SCALAR_ACCUM_MODE_P,
12005 SIGNED_SCALAR_FIXED_POINT_MODE_P, UNSIGNED_SCALAR_FIXED_POINT_MODE_P,
12006 ALL_SCALAR_FIXED_POINT_MODE_P, FRACT_MODE_P, UFRACT_MODE_P,
12007 ALL_FRACT_MODE_P, ACCUM_MODE_P, UACCUM_MODE_P, ALL_ACCUM_MODE_P,
12008 SIGNED_FIXED_POINT_MODE_P, UNSIGNED_FIXED_POINT_MODE_P,
12009 ALL_FIXED_POINT_MODE_P): New define.
12010 (CLASS_HAS_WIDER_MODES_P): Test MODE_FRACT, MODE_UFRACT, MODE_ACCUM,
12011 MODE_UACCUM.
12012 (GET_MODE_IBIT, GET_MODE_FBIT): New define.
12013
12014 * mode-classes.def (MODE_FRACT, MODE_UFRACT, MODE_ACCUM, MODE_UACCUM,
12015 MODE_VECTOR_FRACT, MODE_VECTOR_UFRACT, MODE_VECTOR_ACCUM,
12016 MODE_VECTOR_UACCUM): New mode classes.
12017
12018 * machmode.def: Document FRACT_MODE, UFRACT_MODE, ACCUM_MODE,
12019 UACCUM_MODE, ADJUST_IBIT, and ADJUST_FBIT.
12020 Add QQ, HQ, SQ, DQ, TQ, UQQ, UHQ, USQ, UDQ, UTQ, HA, SA, DA, TA, UHA,
12021 USA, UDA, and UTA.
12022
12023 * genmodes.c (struct mode_data): Add ibit and fbit fields.
12024 (blank_mode): Initialize ibit and fbit.
12025 (adj_ibit, adj_fbit): New to adjust ibit and fbit.
12026 (vector_class): Handle MODE_FRACT, MODE_UFRACT, MODE_ACCUM,
12027 MODE_UACCUM.
12028 (new_adjust): Change required_class to required_class_from and
12029 required_class_to for testing within a range.
12030 (complete_mode): Handle MODE_FRACT, MODE_UFRACT, MODE_ACCUM,
12031 MODE_UACCUM, MODE_VECTOR_FRACT, MODE_VECTOR_UFRACT, MODE_VECTOR_ACCUM,
12032 MODE_VECTOR_UACCUM.
12033 (FRACT_MODE, UFRACT_MODE, ACCUM_MODE, UACCUM_MODE): New define.
12034 (make_fixed_point_mode): New.
12035 (_ADD_ADJUST): Change C to C1 and C2.
12036 (ADJUST_BYTESIZE, ADJUST_ALIGNMENT, ADJUST_FLOAT_FORMAT): Change to
12037 use a range for machine classes.
12038 (ADJUST_IBIT, ADJUST_FBIT): New.
12039 (emit_insn_modes_h): Output defines of CONST_MODE_IBIT and
12040 CONST_MODE_FBIT.
12041 (emit_mode_adjustments): Handle MODE_VECTOR_FRACT, MODE_VECTOR_UFRACT,
12042 MODE_VECTOR_ACCUM, MODE_VECTOR_UACCUM.
12043 Emit adjustment for ibit and fbit.
12044 (emit_mode_ibit, emit_mode_fbit): New.
12045 (emit_insn_modes_c): Add emit_mode_ibit and emit_mode_fbit.
12046
12047 2007-06-25 Nathan Froyd <froydnj@codesourcery.com>
12048
12049 * config/rs6000/spe.md (*frob_ti_tf_2): Specify an input_operand
12050 as the source of the set.
12051
12052 2007-06-25 Roman Zippel <zippel@linux-m68k.org>
12053
12054 * config/m68k/m68k.h (DATA_REGNO_P, ADDRESS_REGNO_P, INT_REGNO_P,
12055 FP_REGNO_P): Use IN_RANGE.
12056 (REGNO_OK_FOR_DATA_P, REGNO_OK_FOR_FP_P): Remove.
12057 (REGNO_OK_FOR_INDEX_NONSTRICT_P, REGNO_OK_FOR_BASE_NONSTRICT_P): New.
12058 (DATA_REG_P): Use DATA_REGNO_P.
12059 (FP_REG_P): Use FP_REGNO_P.
12060 (ADDRESS_REG_P): Use ADDRESS_REGNO_P.
12061 * config/m68k/m68k.c (m68k_legitimate_base_reg_p): Use
12062 REGNO_OK_FOR_INDEX_NONSTRICT_P, REGNO_OK_FOR_BASE_NONSTRICT_P.
12063
12064 2007-06-24 Jan Hubicka <jh@suse.cz>
12065
12066 PR middle-end/30563
12067 * cgraphunit.c (cgraph_analyze_function): Fix ordering problem.
12068
12069 2007-06-24 Sebastian Pop <sebpop@gmail.com>
12070
12071 PR middle-end/32461
12072 * fold-const.c (fold_binary): Strip nops of operand 0
12073 of BIT_NOT_EXPR before calling operand_equal_p.
12074 * testsuite/gcc.dg/tree-ssa/pr32461-1.c: New.
12075 * testsuite/gcc.dg/tree-ssa/pr32461-2.c: New.
12076
12077 2007-06-23 Mark Mitchell <mark@codesourcery.com>
12078
12079 * doc/extend.texi: Document that dllimport and dllexport imply
12080 default visibility.
12081 * tree.c (handle_dll_attribute): Set DECL_VISIBILITY on the
12082 imported or exported declaration, including type declarations.
12083 * c-common.c (handle_visibility_attribute): Check for conflicts
12084 with dllimport/dllexport.
12085 (c_determine_visibility): Handle dllimport/dllexport as an
12086 explicit visibility atttribute.
12087
12088 2007-06-23 Richard Guenther <rguenther@suse.de>
12089
12090 PR tree-optimization/16876
12091 PR middle-end/29478
12092 * tree.h (CALL_CANNOT_INLINE_P): New macro to access static_flag
12093 for CALL_EXPRs.
12094 * tree-inline.c (initialize_inlined_parameters): Do not call
12095 lang_hooks.tree_inlining.convert_parm_for_inlining.
12096 * cgraphbuild.c (initialize_inline_failed): Set inline failed
12097 reason for mismatched types.
12098 * gimplify.c (gimplify_call_expr): Verify the call expression
12099 arguments match the called function type signature. Otherwise
12100 mark the call expression to be not considered for inlining
12101 using CALL_CANNOT_INLINE_P flag.
12102 * ipa-inline.c (cgraph_mark_inline): Honor CALL_CANNOT_INLINE_P on the
12103 edges call expression.
12104 (cgraph_decide_inlining_of_small_function): Likewise.
12105 (cgraph_decide_inlining): Likewise.
12106 * c-objc-common.h (LANG_HOOKS_TREE_INLINING_CONVERT_PARM_FOR_INLINING):
12107 Remove define.
12108 * c-tree.h (c_convert_parm_for_inlining): Remove declaration.
12109 * c-typeck.c (c_convert_parm_for_inlining): Remove.
12110 * langhooks-def.h (lhd_tree_inlining_convert_parm_for_inlining):
12111 Remove declaration.
12112 (LANG_HOOKS_TREE_INLINING_CONVERT_PARM_FOR_INLINING): Remove define.
12113 * langhooks.c (lhd_tree_inlining_convert_parm_for_inlining):
12114 Remove.
12115 * langhooks.h (struct lang_hooks_for_tree_inlining): Remove
12116 convert_parm_for_inlining member.
12117
12118 2007-06-23 Richard Earnshaw <rearnsha@arm.com>
12119
12120 PR target/31152
12121 * arm.md (negscc): Match the correct operand for optimized LT0 test.
12122 Remove optimization for GT.
12123
12124 2007-06-23 Kenneth Zadeck <zadeck@naturalbridge.com>
12125
12126 PR middle-end/32437
12127 * dce.c (deletable_insn_p): Add extra parameter and recurse if insn
12128 is a PARALLEL.
12129 (prescan_insns_for_dce): Add extra parameter.
12130
12131 2007-06-23 Jan Hubicka <jh@suse.cz>
12132
12133 PR middle-end/31541
12134 * gimplify.c (mark_addressable): New function.
12135 (gimplify_modify_expr_rhs, gimplify_addr_expr, gimplify_expr): Use it.
12136
12137 2007-06-22 Uros Bizjak <ubizjak@gmail.com>
12138
12139 PR middle-end/32374
12140 * expr.c (store_constructor): Do not clobber non-zeroed memory.
12141
12142 2007-06-22 Uros Bizjak <ubizjak@gmail.com>
12143
12144 PR target/32413
12145 * config/i386/i386.c (ix86_register_move_cost): Rise the cost of
12146 moves between MMX/SSE registers to at least 8 units to prevent
12147 ICE caused by non-tieable SI/HI/QImodes in SSE registers.
12148
12149 2007-06-22 Uros Bizjak <ubizjak@gmail.com>
12150
12151 * config/i386/i386.c (override_options): Correct x86_sahf
12152 setting condition.
12153
12154 2007-06-21 David Daney <ddaney@avtrex.com>
12155
12156 PR target/32406
12157 * config/mips/mips.md (define_constants): Rename UNSPEC_EH_RECEIVER
12158 to UNSPEC_NONLOCAL_GOTO_RECEIVER globally.
12159 (exception_receiver): Renamed to ...
12160 (nonlocal_goto_receiver): ... this.
12161
12162 2007-06-22 Roman Zippel <zippel@linux-m68k.org>
12163
12164 * df-scan.c (df_read_modify_subreg_p): Use REGMODE_NATURAL_SIZE.
12165 (df_def_record_1): Set (DF_REF_READ_WRITE | DF_REF_PARTIAL) for
12166 partial register accesses.
12167
12168 2007-06-21 Adam Nemet <anemet@caviumnetworks.com>
12169
12170 * fold-const.c (debug_fold_checksum): Move it under
12171 ENABLE_FOLD_CHECKING.
12172
12173 2007-06-21 Sebastian Pop <sebpop@gmail.com>
12174
12175 PR middle-end/20623
12176 * tree.h (debug_fold_checksum): Declared.
12177 * fold-const.c (build_fold_addr_expr_with_type_1): New.
12178 (build_fold_addr_expr_with_type, build_fold_addr_expr): Use
12179 build_fold_addr_expr_with_type_1.
12180 (fold_addr_expr, debug_fold_checksum): New.
12181 (fold_checksum_tree): Don't fold TREE_CHAIN of an SSA_NAME.
12182 (fold_unary, fold_comparison, split_address_to_core_and_offset):
12183 Use fold_addr_expr.
12184
12185 2007-06-21 Sebastian Pop <sebpop@gmail.com>
12186
12187 PR tree-optimization/19590
12188 * tree-vrp.c (adjust_range_with_scev): Set the range when the result
12189 of scev is a constant.
12190
12191 2007-06-21 Kenneth Zadeck <zadeck@naturalbridge.com>
12192
12193 * df-problems.c (df_note_bb_compute): Made computation of live
12194 info consistent with df_lr.
12195
12196 2007-06-21 Richard Guenther <rguenther@suse.de>
12197
12198 PR tree-optimization/32453
12199 * tree-vrp.c (extract_range_from_assert): Build POINTER_PLUS_EXPR
12200 for pointer anti-range.
12201
12202 2007-06-21 H.J. Lu <hongjiu.lu@intel.com>
12203
12204 * config/i386/i386.c (processor_target_table): Increase maximum
12205 skip from 7 byte to 10 byte for Pentium Pro, Core 2 Duo and
12206 default 64bit.
12207
12208 * config/i386/linux.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Ensure 8
12209 byte alignment if > 8 byte alignment is preferred.
12210 * config/i386/x86-64.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Likewise.
12211
12212 2007-06-21 Jakub Jelinek <jakub@redhat.com>
12213
12214 PR tree-optimization/31866
12215 * tree-ssa-coalesce.c (create_outofssa_var_map): Do nothing
12216 if ASM_EXPR's input is not a SSA_NAME.
12217
12218 PR middle-end/32362
12219 * omp-low.c (lookup_decl_in_outer_ctx): Don't ICE if t is NULL,
12220 but decl is a global var, instead return decl.
12221 * gimplify.c (gimplify_adjust_omp_clauses_1): Add shared clauses
12222 even for is_global_var decls, if they are private in some outer
12223 context.
12224
12225 2007-06-21 Richard Guenther <rguenther@suse.de>
12226
12227 PR tree-optimization/32451
12228 * tree-ssa-threadupdate.c (thread_single_edge): Fixup edge flags.
12229
12230 2007-06-21 Christian Bruel <christian.bruel@st.com>
12231
12232 * config/sh/sh-protos.h (sh_loads_bankedreg_p): Declare.
12233 * config/sh/sh.c (sh_loads_bankedreg_p): New function.
12234 (push_regs): Changed saving order or banked registers.
12235 (sh_expand_epilogue): Likewise.
12236 * config/sh/sh.h (BANKED_REGISTER_P): New macro.
12237 (FIRST_BANKED_REG): Likewise.
12238 (LAST_BANKED_REG): Likewise.
12239 * config/sh/sh.md (banked) New attribute.
12240 (in_delay_slot): Check banked attribute.
12241
12242 2007-06-20 Sebastian Pop <sebpop@gmail.com>
12243
12244 PR tree-optimization/32075
12245 * tree-data-ref.c (subscript_dependence_tester_1,
12246 analyze_miv_subscript, analyze_overlapping_iterations,
12247 add_distance_for_zero_overlaps, build_classic_dist_vector,
12248 subscript_dependence_tester_1, analyze_overlapping_iterations,
12249 subscript_dependence_tester, access_functions_are_affine_or_constant_p,
12250 compute_affine_dependence, compute_all_dependences): Pass loop_nest
12251 to evolution_function_is_affine_multivariate_p.
12252
12253 2007-06-20 Eric Botcazou <ebotcazou@libertysurf.fr>
12254
12255 * df-scan.c (df_get_call_refs): Be prepared for MEMs inside CLOBBERs.
12256
12257 2007-06-20 Rask Ingemann Lambertsen <rask@sygehus.dk>
12258
12259 PR target/32335
12260 * config/m32c/m32c.c (m32c_emit_epilogue): Use new HImode epilogue
12261 for TARGET_A16.
12262 * config/m32c/prologue.md (epilogue_exitd_16): New.
12263 (epilogue_reit_16): New.
12264 (epilogue_exitd): Rename to epilogue_exitd_24.
12265 (epilogue_reit): Rename to epilogue_reit_24.
12266
12267 2007-06-20 Seongbae Park <seongbae.park@gmail.com>
12268 Maxim Kuvyrkov <mkuvyrkov@ispras.ru>
12269
12270 * dbgcnt.def (global_alloc_at_func, global_alloc_at_reg):
12271 New counters.
12272 * haifa-sched.c (queue_to_ready): Don't requeue next insn
12273 if dbg_cnt (sched_insn) reaches the limit.
12274 (choose_ready): New parameter INSN_PTR and new return value.
12275 (schedule_block): Handle dbg_cnt (sched_insn). Handle
12276 the new return value from choose_ready.
12277 * global.c (global_aloc): New dbgcnt global_alloc_at_reg.
12278 (rest_of_handle_global_alloc): New global_alloc_at_func.
12279
12280 2007-06-20 Adam Nemet <anemet@caviumnetworks.com>
12281
12282 PR tree-optimization/25737
12283 * tree.h (struct tree_struct_field_tag): Add new field alias_set.
12284 (SFT_NONADDRESSABLE_P, SFT_ALIAS_SET): New macros.
12285 * tree-flow.h (struct fieldoff): Add new field alias_set.
12286 * tree-ssa-structalias.c (push_fields_onto_fieldstack): Add new
12287 argument addressable_type. Set alias_set of fieldoff.
12288 * tree-ssa-alias.c (create_sft): Add new argument alias_set.
12289 (create_overlap_variables_for): Pass alias_set from fieldoff to
12290 create_sft.
12291 * alias.c (get_alias_set): Use alias_set from SFT if set.
12292
12293 2007-06-20 Hui-May Chang <hm.chang@apple.com>
12294
12295 * config/i386/darwin.h (ASM_OUTPUT_COMMON): Print the size
12296 of a variable as an unsigned HOST_WIDE_INT integer.
12297
12298 2007-06-20 Zdenek Dvorak <dvorakz@suse.cz>
12299
12300 PR rtl-optimization/32405
12301 * loop-iv.c (iv_get_reaching_def): Fail for partial defs.
12302
12303 2007-06-20 Jakub Jelinek <jakub@redhat.com>
12304
12305 * Makefile.in (omega.o): Depend on $(DIAGNOSTIC_H).
12306
12307 PR middle-end/31959
12308 * builtins.c: Include diagnostic.h.
12309 (expand_builtin_expect): Make gcc_assert more permissive.
12310 * Makefile.in (builtins.o): Depend on $(DIAGNOSTIC_H).
12311
12312 PR inline-asm/32109
12313 * gimplify.c (gimplify_asm_expr): Issue error if type is addressable
12314 and !allows_mem.
12315
12316 PR middle-end/32285
12317 * calls.c (precompute_arguments): Also precompute CALL_EXPR arguments
12318 if ACCUMULATE_OUTGOING_ARGS.
12319
12320 2007-06-19 Rask Ingemann Lambertsen <rask@sygehus.dk>
12321
12322 * config/m68hc11/m68hc11.c: Include dataflow header file.
12323 (m68hc11_reorg): Port to dataflow.
12324
12325 2007-06-19 Kenneth Zadeck <zadeck@naturalbridge.com>
12326
12327 * df.h (DF_FIRST_OPTIONAL_PROBLEM): Removed.
12328 (struct df_problem.free_blocks_on_set_blocks): New field.
12329 (struct dataflow.optional_p): New field.
12330 (df_bb_regno_last_use_find, df_insn_regno_def_p): Removed.
12331 (df_live_set_all_dirty): New function.
12332 * df-scan.c (df_scan_alloc): Initialize optional_p.
12333 (problem_SCAN): Initialize free_blocks_on_set_blocks.
12334 * df-core.c (df_set_blocks): Removed use of
12335 DF_FIRST_OPTIONAL_PROBLEM. Now uses
12336 df_problem.free_blocks_on_set_blocks to determine which blocks are
12337 recycled.
12338 (df_remove_problem): Removed use of DF_FIRST_OPTIONAL_PROBLEM.
12339 (df_finish_pass): Removed use of DF_FIRST_OPTIONAL_PROBLEM. Now
12340 uses dataflow.optional_p to determine if problem should be
12341 deleted.
12342 (rest_of_handle_df_initialize): Only start live problem if
12343 -02 or above.
12344 (df_bb_regno_last_use_find, df_insn_regno_def_p): Removed.
12345 * df-problems.c (df_ru_alloc, df_rd_alloc, df_lr_alloc,
12346 df_live_alloc, df_urec_alloc, df_note_alloc): set optional_p.
12347 (problem_RU, problem_RD, problem_LR, problem_UREC, problem_CHAIN,
12348 problem_NOTE): Initialize free_blocks_on_set_blocks.
12349 (df_lr_bb_local_compute): Recompute luids if df_live problem is
12350 not active.
12351 (df_live_set_all_dirty, df_note_alloc): New function.
12352 * regrename.c (merge_overlapping_regs): Change DF_LIVE_* to
12353 df_get_live_*.
12354 * sched_ebb.c (compute_jump_reg_dependencies): Ditto.
12355 * postreload.c (reload_combine): Ditto.
12356 * cse.c (cse_extended_basic_block): Ditto.
12357 * regmove.c (mark_flags_life_zones): Ditto.
12358 * rtlfactoring.c (split_blocks_after_seqs, split_pattern_seq,
12359 erase_matching_seqs): Ditto.
12360 * bt-load.c (compute_defs_uses_and_gen): Ditto.
12361 * integrate (allocate_initial_values): Ditto.
12362 * combine.c (reg_dead_at_p): Ditto.
12363 * resource.c (mark_target_live_regs): Ditto.
12364 * sched-rgn.c (check_live_1, update_live_1): Ditto.
12365 * config/sh/sh.c (find_r0_life_regions): Ditto.
12366 * global.c (rest_of_handle_global_alloc): Only add back df_live
12367 for -O > 1.
12368 * local-alloc.c (rest_of_handle_local_alloc): Only remove
12369 df_live for -O > 1.
12370 * ifcvt.c (dead_or_predicable): Change DF_LIVE_* to
12371 df_get_live_*.
12372 (if_convert): Make sure df_live is there at -O == 1.
12373 (pass_if_after_combine): Cleanup flags.
12374 * init-regs.c (initialize_uninitialized_regs): Make sure df_live
12375 is there at -O == 1.
12376
12377 2007-06-19 Seongbae Park <seongbae.park@gmail.com>
12378
12379 * config/arm/arm.c (arm_get_frame_offsets): Set
12380 offsets->locals_base to avoid negative stack size.
12381 (thumb1_expand_prologue): Assert on negative stack size.
12382
12383 2007-06-19 Sebastian Pop <sebpop@gmail.com>
12384
12385 PR tree-optimization/32367
12386 * tree-chrec.h (build_polynomial_chrec): Verify that the left hand side
12387 of the chrec has no evolution in that loop.
12388 * testsuite/gcc.dg/tree-ssa/pr32367.c: New.
12389
12390 2007-06-19 Bob Wilson <bob.wilson@acm.org>
12391
12392 * config/xtensa/xtensa.c: Include "df.h".
12393 (xtensa_builtin_saveregs): Use adjust_address instead of
12394 change_address.
12395 (xtensa_va_start): Invoke make_tree with sizetype for
12396 expand_builtin_saveregs and then convert the result to a pointer.
12397 Use POINTER_PLUS_EXPR. Use size_int instead of build_int_cst.
12398 (xtensa_gimplify_va_arg_expr): Use size_int instead of build_int_cst.
12399 Subtract argument size from index value as integers and then use
12400 POINTER_PLUS_EXPR to add the result to the array address.
12401
12402 2007-06-19 Rask Ingemann Lambertsen <rask@sygehus.dk>
12403
12404 PR target/32335
12405 * config/m32c/m32c.c: Include dataflow header file.
12406 (m32c_emit_prologue): Adjust for prologue insn change.
12407 * config/m32c/prologue.md (prologue_enter_16): Only modify SP_REGNO
12408 once inside a PARALLEL. Assume frame size passed in operand 0
12409 includes space to save the fb register.
12410 (prologue_enter_24): Likewise.
12411 (epilogue_exitd): Only modify SP_REGNO once inside a PARALLEL.
12412
12413 2007-06-19 David Daney <ddaney@avtrex.com
12414
12415 PR target/32313
12416 * config/mips/mips.md (cprestore): Mark $gp as used.
12417
12418 2007-06-19 Rask Ingemann Lambertsen <rask@sygehus.dk>
12419
12420 PR target/32369
12421 * config/frv/frv.c (frv_ifcvt_modify_tests): Dataflow merge fix.
12422 (frv_ifcvt_modify_insn): Likewise.
12423
12424 2007-06-19 Richard Guenther <rguenther@suse.de>
12425
12426 * tree-ssa-structalias.c (handle_ptr_arith): Make sure to
12427 only handle positive offsets that fit in a HOST_WIDE_INT.
12428
12429 2007-06-19 Uros Bizjak <ubizjak@gmail.com>
12430
12431 * config/i386/i386.c (ix86_emit_swsqrtsf): Filter out infinity
12432 result of rsqrt insn for zero input argument to avoid NaN.
12433
12434 2007-06-19 Richard Guenther <rguenther@suse.de>
12435
12436 PR middle-end/31950
12437 * tree-ssa-alias-warnings.c (ffan_walker): Punt on MTAGs.
12438
12439 2007-06-19 Jakub Jelinek <jakub@redhat.com>
12440
12441 PR tree-optimization/32353
12442 * tree-ssa-structalias.c (set_uids_in_ptset): Also handle RESULT_DECL.
12443
12444 2007-06-19 Nick Clifton <nickc@redhat.com>
12445
12446 * config/m32r/linux.h (LIB_SPEC): Always imply -lpthread for -pthread.
12447
12448 2007-06-18 Uros Bizjak <ubizjak@gmail.com>
12449
12450 PR target/32389
12451 * config/i386/i386.h (enum ix86_stack_slot): Add SLOT_VIRTUAL.
12452 * config/i386/i386.c (assign_386_stack_local): Assert that
12453 SLOT_VIRTUAL is valid only before virtual regs are instantiated.
12454 (ix86_expand_builtin) [IX86_BUILTIN_LDMXCSR, IX86_BUILTIN_STMXCSR]:
12455 Use SLOT_VIRTUAL stack slot instead of SLOT_TEMP.
12456 * config/i386/i386.md (truncdfsf2, truncxf<mode>2): Ditto.
12457
12458 2007-06-18 Steve Ellcey <sje@cup.hp.com>
12459
12460 * config/ia64/ia64.h (LIBGCC2_TF_CEXT): New.
12461
12462 2007-06-18 Seongbae Park <seongbae.park@gmail.com>
12463
12464 PR rtl-optimization/32321
12465 * gcse.c (replace_store_insn): Update the note before
12466 calling emit_insn_after.
12467
12468 2007-06-18 Kenneth Zadeck <zadeck@naturalbridge.com>
12469
12470 PR middle-end/32355
12471 * gcse (rest_of_handle_gcse): Add call to df_finish_pass after
12472 cse_main.
12473 * df-problems.c (df_note_bb_compute): Fix dumping info.
12474
12475 2007-06-18 Kazu Hirata <kazu@codesourcery.com>
12476
12477 * config/m68k/m68k.c (m68k_expand_epilogue): Emit a return
12478 insn with emit_jump_insn.
12479
12480 2007-06-18 Uros Bizjak <ubizjak@gmail.com>
12481
12482 PR tree-optimization/32383
12483 * targhooks.c (default_builtin_reciprocal): Add new bool argument.
12484 * targhooks.h (default_builtin_reciprocal): Update prototype.
12485 * target.h (struct gcc_target): Update builtin_reciprocal.
12486 * doc/tm.texi (TARGET_BUILTIN_RECIPROCAL): Update description.
12487 * tree-ssa-math-opts (execute_cse_reciprocals): Skip statements
12488 where arg1 is not SSA_NAME. Pass true to targetm.builtin_reciprocal
12489 when fndecl is in BUILT_IN_MD class.
12490 (execute_convert_to_rsqrt): Ditto.
12491
12492 * config/i386/i386.c (ix86_builtin_reciprocal): Update for new bool
12493 argument. Convert IX86_BUILTIN_SQRTPS code only when md_fn is true.
12494 Convert BUILT_IN_SQRTF code only when md_fn is false.
12495
12496 2007-06-18 Kaz Kojima <kkojima@gcc.gnu.org>
12497
12498 * bt-load.c (move_btr_def): Fix the order of arguments
12499 to validate_replace_rtx.
12500
12501 2007-06-18 Nathan Sidwell <nathan@codesourcery.com>
12502
12503 * config/m68k/m68k-devices.def: Add 54450..54455.
12504
12505 2007-06-17 Uros Bizjak <ubizjak@gmail.com>
12506
12507 PR rtl-optimization/32366
12508 * simplify-rtx.c (simplify_unary_operation_1) [FLOAT_TRUNCATE,
12509 FLOAT_EXTEND]: Prevent non-scalar modes from entering
12510 significand_size.
12511
12512 2007-06-17 Kenneth Zadeck <zadeck@naturalbridge.com>
12513
12514 PR middle-end/32349
12515 * modulo-sched (generate_reg_moves): Added rescan parameter and if
12516 this is true, rescan insn being modified.
12517 (sms_schedule): Added rescan parameter.
12518 (rest_of_handle_sms): Moved freeing of dominance info to before
12519 getting out of cfg_layout.
12520
12521 2007-06-17 Nathan Sidwell <nathan@codesourcery.com>
12522
12523 * config/m68k/m68k.h (ISA_HAS_FF1, ISA_HAS_MVS_MVZ): New.
12524 * config/m68k/m68k.md: Use ISA_HAS_FF1 and ISA_HAS_MVS_MVZ as
12525 appropriate.
12526
12527 * config/m68k/m68k.c (all_isas): Remove FL_CF_FPU and
12528 FL_CF_EMAC from the entry for isac.
12529
12530 * config/m68k/predicates.md (const_call_operand): Adjust comment.
12531 (const_sibcall_operand): New.
12532 (sibcall_operand): Use it.
12533 * config/m68k/m68k.c (FL_FOR_isa_c): Not ISA_B compatible.
12534 (m68k_isas): ISAC does not imply FPU or EMAC.
12535 (override_options): Add ISA_C logic for symbolic jump & call.
12536
12537 2007-06-17 Eric Botcazou <ebotcazou@libertysurf.fr>
12538
12539 * config/sparc/sparc.c (sparc_vis_init_builtins): Retrieve the
12540 return mode from the builtin itself.
12541 (sparc_fold_builtin): Fix cast of zero constant.
12542
12543 2007-06-16 Uros Bizjak <ubizjak@gmail.com>
12544
12545 * targhooks.c (default_builtin_reciprocal): New default target hook.
12546 * targhooks.h (default_builtin_reciprocal): Add prototype.
12547 * hooks.c (hook_tree_tree_bool_null): Remove hook.
12548 * hooks.h (hook_tree_tree_bool_null): Remove prototype.
12549 * target-def.h (TARGET_BUILTIN_RECIPROCAL): Define as
12550 default_builtin_reciprocal.
12551
12552 2007-06-16 Uros Bizjak <ubizjak@gmail.com>
12553
12554 PR middle-end/31723
12555 * hooks.c (hook_tree_tree_bool_null): New hook.
12556 * hooks.h (hook_tree_tree_bool_null): Add prototype.
12557 * tree-pass.h (pass_convert_to_rsqrt): Declare.
12558 * passes.c (init_optimization_passes): Add pass_convert_to_rsqrt.
12559 * tree-ssa-math-opts.c (execute_cse_reciprocals): Scan for a/func(b)
12560 and convert it to reciprocal a*rfunc(b).
12561 (execute_convert_to_rsqrt): New function.
12562 (gate_convert_to_rsqrt): New function.
12563 (pass_convert_to_rsqrt): New pass definition.
12564 * target.h (struct gcc_target): Add builtin_reciprocal.
12565 * target-def.h (TARGET_BUILTIN_RECIPROCAL): New define.
12566 (TARGET_INITIALIZER): Initialize builtin_reciprocal with
12567 TARGET_BUILTIN_RECIPROCAL.
12568 * doc/tm.texi (TARGET_BUILTIN_RECIPROCAL): Document.
12569
12570 * config/i386/i386.h (TARGET_RECIP): New define.
12571 * config/i386/i386.md (divsf3): Expand by calling ix86_emit_swdivsf
12572 for TARGET_SSE_MATH and TARGET_RECIP when flag_finite_math_only and
12573 flag_unsafe_math_optimizations are set, flag_trapping_math is unset
12574 and not optimizing for size.
12575 (*rcpsf2_sse): New insn pattern.
12576 (*rsqrtsf2_sse): Ditto.
12577 (rsqrtsf2): New expander. Expand by calling ix86_emit_swsqrtsf
12578 for TARGET_SSE_MATH and TARGET_RECIP when flag_finite_math_only and
12579 flag_unsafe_math_optimizations are set, flag_trapping_math is unset
12580 and not optimizing for size.
12581 (sqrt<mode>2): Expand SFmode operands by calling ix86_emit_swsqrtsf
12582 for TARGET_SSE_MATH and TARGET_RECIP when flag_finite_math_only and
12583 flag_unsafe_math_optimizations are set, flag_trapping_math is unset
12584 and not optimizing for size.
12585 * config/i386/sse.md (divv4sf): Expand by calling ix86_emit_swdivsf
12586 for TARGET_SSE_MATH and TARGET_RECIP when flag_finite_math_only and
12587 flag_unsafe_math_optimizations are set, flag_trapping_math is unset
12588 and not optimizing for size.
12589 (*sse_rsqrtv4sf2): Do not export.
12590 (sqrtv4sf2): Ditto.
12591 (sse_rsqrtv4sf2): New expander. Expand by calling ix86_emit_swsqrtsf
12592 for TARGET_SSE_MATH and TARGET_RECIP when flag_finite_math_only and
12593 flag_unsafe_math_optimizations are set, flag_trapping_math is unset
12594 and not optimizing for size.
12595 (sqrtv4sf2): Ditto.
12596 * config/i386/i386.opt (mrecip): New option.
12597 * config/i386/i386-protos.h (ix86_emit_swdivsf): Declare.
12598 (ix86_emit_swsqrtsf): Ditto.
12599 * config/i386/i386.c (IX86_BUILTIN_RSQRTF): New constant.
12600 (ix86_init_mmx_sse_builtins): __builtin_ia32_rsqrtf: New
12601 builtin definition.
12602 (ix86_expand_builtin): Expand IX86_BUILTIN_RSQRTF using
12603 ix86_expand_unop1_builtin.
12604 (ix86_emit_swdivsf): New function.
12605 (ix86_emit_swsqrtsf): Ditto.
12606 (ix86_builtin_reciprocal): New function.
12607 (TARGET_BUILTIN_RECIPROCAL): Use it.
12608 (ix86_vectorize_builtin_conversion): Rename from
12609 ix86_builtin_conversion.
12610 (TARGET_VECTORIZE_BUILTIN_CONVERSION): Use renamed function.
12611 * doc/invoke.texi (Machine Dependent Options): Add -mrecip to
12612 "i386 and x86_64 Options" section.
12613 (Intel 386 and AMD x86_64 Options): Document -mrecip.
12614
12615 2007-06-15 Andrew Pinski <andrew_pinski@playstation.sony.com>
12616 Zdenek Dvorak <dvorakz@suse.cz>
12617 Richard Guenther <rguenther@suse.de>
12618 Kaz Kojima <kkojima@gcc.gnu.org>
12619
12620 * tree-vrp.c (compare_values_warnv): Convert val2 to
12621 the type of val1.
12622 (extract_range_from_assert): Create
12623 POINTER_PLUS_EXPR for pointer types.
12624 (extract_range_from_binary_expr): Handle
12625 only POINTER_PLUS_EXPR, MIN_EXPR, and MAX_EXPR
12626 for pointer types.
12627 * doc/c-tree.texi (POINTER_PLUS_EXPR): Document.
12628 * tree-ssa-loop-niter.c (split_to_var_and_offset): Handle
12629 POINTER_PLUS_EXPR as PLUS_EXPR.
12630 (number_of_iterations_lt_to_ne):
12631 For pointer types, use sizetype when
12632 creating MINUS_EXPR/PLUS_EXPRs.
12633 (assert_loop_rolls_lt): For pointer types, use sizetype when
12634 creating MINUS_EXPR/PLUS_EXPRs.
12635 (number_of_iterations_le): Likewise.
12636 (expand_simple_operations): POINTER_PLUS_EXPR are simple also.
12637 (derive_constant_upper_bound): Handle POINTER_PLUS_EXPR just
12638 like PLUS_EXPR and MINUS_EXPR.
12639 * tree-pretty-print.c (dump_generic_node): Handle
12640 POINTER_PLUS_EXPR.
12641 (op_prio): Likewise.
12642 (op_symbol_1): Likewise.
12643 * optabs.c (optab_for_tree_code): Likewise.
12644 * tree-ssa-loop-manip.c (create_iv): Handle pointer base
12645 specially.
12646 * tree-tailcall.c (process_assignment): Mention
12647 POINTER_PLUS_EXPR in a TODO comment.
12648 * tree.c (build2_stat): Assert when trying to use PLUS_EXPR or
12649 MINUS_EXPR with a pointer. Also assert for POINTER_PLUS_EXPR
12650 not used with a pointer and an integer type.
12651 * tree-scalar-evolution.c (add_to_evolution_1): Convert the
12652 increment using chrec_convert_rhs instead of chrec_convert.
12653 (follow_ssa_edge_in_rhs): Handle POINTER_PLUS_EXPR like
12654 PLUS_EXPR except for the right hand side's type will be
12655 sizetype.
12656 (interpret_rhs_modify_stmt): Handle POINTER_PLUS_EXPR.
12657 (fold_used_pointer_cast): Kill.
12658 (pointer_offset_p): Kill.
12659 (fold_used_pointer): Kill.
12660 (pointer_used_p): Kill.
12661 (analyze_scalar_evolution_1 <case GIMPLE_MODIFY_STMT>): Don't
12662 call fold_used_pointer.
12663 (instantiate_parameters_1): Convert the increment
12664 using chrec_convert_rhs instead of chrec_convert.
12665 Handle POINTER_PLUS_EXPR as PLUS_EXPR.
12666 * builtins.c (get_pointer_alignment): Handle POINTER_PLUS_EXPR
12667 instead of PLUS_EXPR.
12668 (expand_builtin_strcat): Create a POINTER_PLUS_EXPR instead of
12669 PLUS_EXPR for pointers.
12670 (std_gimplify_va_arg_expr): Likewise.
12671 (fold_builtin_memory_op): Likewise.
12672 (fold_builtin_strstr): Likewise.
12673 (fold_builtin_strchr): Likewise.
12674 (fold_builtin_strrchr): Likewise.
12675 (fold_builtin_strpbrk): Likewise.
12676 (expand_builtin_memory_chk): Likewise.
12677 (fold_builtin_memory_chk): Likewise.
12678 (std_expand_builtin_va_start): Use
12679 sizetype for the call to make_tree and then convert
12680 to the pointer type.
12681 (fold_builtin_memchr): Use POINTER_PLUS_EXPR
12682 instead of PLUS_EXPR for adding to a pointer.
12683 (std_gimplify_va_arg_expr): Use fold_build2 for
12684 the creating of POINTER_PLUS_EXPR. For the BIT_AND_EXPR, cast
12685 the operands to sizetype first and then cast the BIT_AND_EXPR
12686 back to the pointer type.
12687 * fold-const.c (build_range_check): Handle pointer types
12688 specially.
12689 (extract_array_ref): Look for POINTER_PLUS_EXPR instead
12690 of PLUS_EXPR's. Make sure the offset is converted to
12691 sizetype.
12692 (try_move_mult_to_index): Strip the NOPs from the offset.
12693 Remove code argument and replace all uses with PLUS_EXPR.
12694 (fold_to_nonsharp_ineq_using_bound): Handle pointer types
12695 specially. Don't use a pointer type for MINUS_EXPR.
12696 (fold_unary): Handle for (T1)(X op Y),
12697 only p+ as that is the only as that can be handled for
12698 binary operators now.
12699 (fold_binary <case POINTER_PLUS_EXPR>): Add folding of
12700 POINTER_PLUS_EXPR.
12701 <case PLUS_EXPR>: Add folding of PTR+INT into
12702 PTR p+ INT.
12703 Don't call try_move_mult_to_index.
12704 <case MINUS_EXPR>: Fold (PTR0 p+ A) - (PTR1 p+ B)
12705 into (PTR0 - PTR1) + (A - B). Fold (PTR0 p+ A) - PTR1 into
12706 (PTR0 - PTR1) + A iff (PTR0 - PTR1) simplifies.
12707 Don't call try_move_mult_to_index.
12708 (tree_expr_nonnegative_warnv_p): Handle POINTER_PLUS_EXPR.
12709 (tree_expr_nonzero_p): Likewise.
12710 (fold_indirect_ref_1): Look at POINTER_PLUS_EXPR instead
12711 of PLUS_EXPR for the complex expression folding.
12712 * tree-chrec.c (chrec_fold_plus_poly_poly): If the
12713 first chrec is a pointer type, then the second should
12714 be sizetype and not the first's type.
12715 For POINTER_PLUS_EXPR, use a different right hand side type.
12716 Handle POINTER_PLUS_EXPR like PLUS_EXPR.
12717 (chrec_fold_plus_1): For POINTER_PLUS_EXPR, use a
12718 different right hand side type.
12719 Handle POINTER_PLUS_EXPR like PLUS_EXPR.
12720 (chrec_fold_plus): For pointer types, use POINTER_PLUS_EXPR
12721 instead of PLUS_EXPR.
12722 When either operand is zero, convert the other operand.
12723 (chrec_apply): Use chrec_convert_rhs
12724 on the argument x instead of chrec_convert.
12725 (reset_evolution_in_loop): For pointer types, the new_evol
12726 should be sizetype.
12727 (convert_affine_scev): For POINTER_PLUS_EXPR, use a
12728 different right hand side type.
12729 Handle POINTER_PLUS_EXPR like PLUS_EXPR.
12730 (chrec_convert_rhs): New function.
12731 (chrec_convert_aggressive): For POINTER_PLUS_EXPR, use a
12732 different right hand side type.
12733 Handle POINTER_PLUS_EXPR like PLUS_EXPR.
12734 * tree-chrec.h (chrec_convert_rhs): New prototype.
12735 (build_polynomial_chrec): For pointer types, the right hand
12736 * tree-ssa-ccp.c (maybe_fold_stmt_indirect): Look for
12737 POINTER_PLUS_EXPR instead of PLUS_EXPR's.
12738 Remove subtraction case as it is always addition now.
12739 Make sure the offset is converted to sizetype.
12740 (fold_stmt_r): Don't handle PLUS_EXPR/MINUS_EXPR specially.
12741 Handle POINTER_PLUS_EXPR like PLUS_EXPR was handled before.
12742 * tree-ssa-loop-ivopts.c (determine_base_object): Abort for
12743 PLUS_EXPR in pointer type.
12744 Handle POINTER_PLUS_EXPR.
12745 (tree_to_aff_combination): Likewise.
12746 (force_expr_to_var_cost): Likewise.
12747 (force_expr_to_var_cost): Likewise. Create a POINTER_PLUS_EXPR
12748 instead of PLUS_EXPR for pointers.
12749 * c-format.c (check_format_arg): Handle POINTER_PLUS_EXPR
12750 instead of PLUS_EXPR of pointer types.
12751 * tree-stdarg.c (va_list_counter_bump): Handle POINTER_PLUS_EXPR
12752 as PLUS_EXPR.
12753 (check_va_list_escapes): Likewise.
12754 (check_all_va_list_escapes): Likewise.
12755 * dwarf2out.c (loc_descriptor_from_tree_1):
12756 Handle POINT_PLUS_EXPR as a PLUS_EXPR.
12757 * expr.c (expand_expr_real_1): Handle POINTER_PLUS_EXPR.
12758 (string_constant): Likewise.
12759 * tree-ssa-address.c (tree_mem_ref_addr): When adding
12760 the offset to the base, use POINTER_PLUS_EXPR.
12761 (add_to_parts): Convert the index to sizetype.
12762 (create_mem_ref): Create A POINTER_PLUS_EXPR for the one case.
12763 * matrix-reorg.c (collect_data_for_malloc_call): Stmt
12764 will now only be either INDIRECT_REF and POINTER_PLUS_EXPR.
12765 Offset only holds something for PLUS_EXPR.
12766 (ssa_accessed_in_tree): Handle POINTER_PLUS_EXPR just as
12767 a PLUS_EXPR.
12768 (analyze_transpose): POINTER_PLUS_EXPR will only show up now
12769 and not PLUS_EXPR.
12770 (analyze_accesses_for_modify_stmt): Likewise.
12771 Remove comment about the type being integral type as it is
12772 wrong now.
12773 (can_calculate_expr_before_stmt): Handle POINTER_PLUS_EXPR as
12774 PLUS_EXPR.
12775 (transform_access_sites): POINTER_PLUS_EXPR will only show up now
12776 and not PLUS_EXPR.
12777 Correct the type which the artimentic is done in (is now
12778 sizetype).
12779 Reindent one loop.
12780 * tree-data-ref.c (split_constant_offset): Handle
12781 POINTER_PLUS_EXPR
12782 * tree-affine.c (tree_to_aff_combination): Likewise.
12783 * c-typeck.c (build_unary_op): For pointers create the increment
12784 as a sizetype. Create a POINTER_PLUS_EXPR instead of PLUS_EXPR
12785 for pointers.
12786 * gimplify.c (gimplify_self_mod_expr): Create a
12787 POINTER_PLUS_EXPR instead of PLUS_EXPR for pointers.
12788 (gimplify_omp_atomic_fetch_op): Handle POINTER_PLUS_EXPR.
12789 * tree.def (POINTER_PLUS_EXPR): New tree code.
12790 * tree-predcom.c (ref_at_iteration): If we have a pointer
12791 type do the multiplication in sizetype.
12792 * tree-mudflap.c (mf_xform_derefs_1): Create a
12793 POINTER_PLUS_EXPR instead of PLUS_EXPR for pointers.
12794 * tree-ssa-forwprop.c
12795 (forward_propagate_addr_into_variable_array_index):
12796 Don't expect there to be a cast for the index as that
12797 does not exist anymore.
12798 (forward_propagate_addr_expr_1): Check for POINTER_PLUS_EXPR
12799 instead of PLUS_EXPR.
12800 Don't check for the first operand of the POINTER_PLUS_EXPR
12801 was the index as it cannot be.
12802 Call forward_propagate_addr_into_variable_array_index with
12803 the SSA_NAME instead of the statement.
12804 * varasm.c (const_hash_1): Handle POINTER_PLUS_EXPR.
12805 (compare_constant): Likewise.
12806 (copy_constant): Likewise.
12807 (compute_reloc_for_constant): Likewise.
12808 (output_addressed_constants): Likewise.
12809 (initializer_constant_valid_p): Likewise.
12810 * tree-ssa.c (tree_ssa_useless_type_conversion_1):
12811 Convert the MIN/MAX of the inner type to the outer
12812 type before comparing them.
12813 * tree-ssa-loop-prefetch.c (idx_analyze_ref): Handle
12814 POINTER_PLUS_EXPR instead of PLUS_EXPR.
12815 (issue_prefetch_ref): Create a POINTER_PLUS_EXPR instead
12816 of PLUS_EXPR for pointers.
12817 * tree-inline.c (estimate_num_insns_1): Handle
12818 POINTER_PLUS_EXPR.
12819 * tree-vect-transform.c (vect_create_addr_base_for_vector_ref):
12820 Create a POINTER_PLUS_EXPR instead of PLUS_EXPR for pointers.
12821 (bump_vector_ptr): Create a POINTER_PLUS_EXPR
12822 instead of PLUS_EXPR for the pointer increment statement.
12823 (vect_update_ivs_after_vectorizer): For pointer types, create
12824 POINTER_PLUS_EXPR instead of PLUS_EXPR and also create
12825 MULT_EXPR in sizetype.
12826 (vect_gen_niters_for_prolog_loop): Add a cast when creating
12827 byte_misalign.
12828 * tree-object-size.c (plus_expr_object_size): Handle
12829 POINTER_PLUS_EXPR instead of PLUS_EXPR. Removing all the extra
12830 code which is trying to figure out which side is a pointer and
12831 is the index.
12832 (check_for_plus_in_loops_1): Likewise.
12833 (check_for_plus_in_loops): Likewise.
12834 * c-common.c (pointer_int_sum): Create a
12835 POINTER_PLUS_EXPR instead of PLUS_EXPR for pointers.
12836 * tree-ssa-structalias.c (handle_ptr_arith): Handle
12837 only POINTER_PLUS_EXPR. Removing all the extra
12838 code which is trying to figure out which side is a pointer and
12839 is the index.
12840 * tree-cfg.c (verify_expr): Add extra checking for pointers and
12841 PLUS_EXPR and MINUS_EXPR.
12842 Also add checking to make sure the operands of POINTER_PLUS_EXPR
12843 are correct.
12844 * config/frv/frv.c (frv_expand_builtin_va_start): Use sizetype
12845 with make_tree, instead of a pointer type.
12846 * config/s390/s390.c (s390_va_start): Use POINTER_PLUS_EXPR
12847 for pointers instead of PLUS_EXPR.
12848 (s390_gimplify_va_arg): Likewise.
12849 * config/spu/spu.c (spu_va_start): Create POINTER_PLUS_EXPR
12850 instead of PLUS_EXPR when doing addition on pointer
12851 types. Use sizetype for the second operand.
12852 (spu_gimplify_va_arg_expr): Likewise.
12853 * config/sparc/sparc.c (sparc_gimplify_va_arg): Use
12854 POINTER_PLUS_EXPR instead of PLUS_EXPR when the operand was
12855 a pointer. Don't create a BIT_AND_EXPR for pointer types.
12856 * config/i386/i386.c (ix86_va_start): Use POINTER_PLUS_EXPR
12857 for the pointer addition and also use size_int/sizetype
12858 for the offset.
12859 (ix86_gimplify_va_arg): Likewise.
12860 Perform BIT_AND_EXPR on sizetype arguments.
12861 * config/sh/sh.c (sh_va_start): Call make_tree with sizetype
12862 and convert its result to a pointer type. Use POINTER_PLUS_EXPR
12863 for the pointer additions and also use size_int for the offsets.
12864 (sh_gimplify_va_arg_expr): Use POINTER_PLUS_EXPR for the pointer
12865 additions and also use size_int for the offsets. Perform
12866 BIT_AND_EXPR on sizetype arguments.
12867 * config/ia64/ia64.c (ia64_gimplify_va_arg): Use
12868 POINTER_PLUS_EXPR for pointers and create the
12869 BIT_AND_EXPR in sizetype.
12870 * config/rs6000/rs6000.c (rs6000_va_start): Use POINTER_PLUS_EXPR
12871 instead of PLUS_EXPR for pointer addition.
12872 (rs6000_va_start): Likewise.
12873 Also use sizetype for the offset.
12874 * config/pa/pa.c (reloc_needed): Handle POINTER_PLUS_EXPR
12875 as PLUS_EXPR/MINUS_EXPR.
12876 (hppa_gimplify_va_arg_expr): Don't create MINUS_EXPR or
12877 PLUS_EXPR for pointers, instead use POINTER_PLUS_EXPR.
12878 Don't use BIT_AND_EXPR on a pointer type, convert the
12879 expression to sizetype first.
12880 * config/mips/mips.c (mips_va_start): Use POINTER_PLUS_EXPR
12881 for pointers.
12882 (mips_gimplify_va_arg_expr): Likewise.
12883 Don't create BIT_AND_EXPR in a pointer type.
12884
12885 2007-06-15 Eric Christopher <echristo@apple.com>
12886
12887 * config.gcc (i?86-*-darwin*): Add t-crtfm and t-crtpc.
12888 (x86_64-*-darwin*): Ditto.
12889 * config/i386/darwin.h (CRTEND_SPEC): New. Add support
12890 for above.
12891
12892 2007-06-15 Matthew Wilcox <matthew@wil.cx>
12893
12894 * doc/extend.texi: Document behavior of __attribute__((aligned))
12895 on typedefs.
12896
12897 2007-06-15 Mark Mitchell <mark@codesourcery.com>
12898
12899 * rtlanal.c (note_stores): Improve documentation.
12900
12901 2007-06-15 Bernd Schmidt <bernd.schmidt@analog.com>
12902
12903 * config/bfin/elf.h (ASM_GENERATE_INTERNAL_LABEL,
12904 LOCAL_LABEL_PREFIX): Delete.
12905 * config/bfin/bfin.c (TARGET_ASM_INTERNAL_LABEL): Delete.
12906 (bfin_internal_label): Delete.
12907
12908 2007-06-15 Uros Bizjak <ubizjak@gmail.com>
12909
12910 * libgcc2.c (CEXT): When compiling L_multc3 and L_divtc3,
12911 define to "l" if LIBGCC_LONG_DOUBLE_SIZE == 128,
12912 otherwise define to LIBGCC2_TF_CEXT.
12913 * config/i386/linux64.h (LIBGCC2_HAS_TF_MODE): New define.
12914 (LIBGCC_TF_CEXT): Ditto.
12915 (TF_SIZE): Ditto.
12916
12917 2007-06-14 Seongbae Park <seongbae.park@gmail.com>
12918
12919 PR rtl-optimization/32339
12920 * df-scan.c (df_uses_record): Don't modify flags but just add to
12921 it for df_ref_record.
12922
12923 2007-06-14 Andrew Pinski <andrew_pinski@playstation.sony.com>
12924
12925 * tree-mudflap.c: Fix whitespace issues.
12926
12927 2007-06-15 Kazu Hirata <kazu@codesourcery.com>
12928
12929 * config/m68k/m68k.c (ASM_DOT, ASM_DOTW, ASM_DOTL): Remove.
12930
12931 2007-06-14 Eric Christopher <echristo@apple.com>
12932
12933 * config/i386/sse.md (movdi_to_sse): Rewrite body.
12934 (movv4sf): Use gcc_unreachable instead of abort.
12935
12936 2007-06-14 Uros Bizjak <ubizjak@gmail.com>
12937
12938 PR target/32268
12939 * config/i386/sfp-machine.h (CMPtype): New define.
12940 (mach stubs): Use CMPtype instead of int as a return type.
12941
12942 2007-06-14 Uros Bizjak <ubizjak@gmail.com>
12943
12944 * config/soft-fp/eqdf2.c, config/soft-fp/eqsf2.c,
12945 config/soft-fp/eqtf2.c, config/soft-fp/gedf2.c,
12946 config/soft-fp/gesf2.c, config/soft-fp/getf2.c,
12947 config/soft-fp/ledf2.c, config/soft-fp/lesf2.c,
12948 config/soft-fp/letf2.c, config/soft-fp/unorddf2.c,
12949 config/soft-fp/unordsf2.c, config/soft-fp/unordtf2.c,
12950 config/soft-fp/soft-fp.h: Update from glibc CVS.
12951
12952 2007-06-14 Bernd Schmidt <bernd.schmidt@analog.com>
12953
12954 * config/bfin/uclinux.h (MFWRAP_SPEC): New.
12955
12956 2007-06-14 Rask Ingemann Lambertsen <rask@sygehus.dk>
12957
12958 PR target/32341
12959 * config/v850/v850.c: Include dataflow header file.
12960 (substitute_ep_register): Fix typo.
12961
12962 2007-06-14 Paolo Bonzini <bonzini@gnu.org>
12963
12964 * configure.ac: Fix earlier checkin.
12965 * configure: Regenerated.
12966
12967 2007-06-14 Paolo Bonzini <bonzini@gnu.org>
12968
12969 * acinclude.m4 (gcc_AC_CHECK_PROG_VER): Remove.
12970 * aclocal.m4: Regenerate.
12971 * configure.ac: Use ACX_PROG_CC_WARNING_OPTS,
12972 ACX_PROG_CC_WARNINGS_ARE_ERRORS,
12973 ACX_PROG_CC_WARNING_ALMOST_PEDANTIC, ACX_CHECK_PROG_VER.
12974 * configure: Regenerate.
12975 * Makefile.in (LOOSE_WARN): Subst loose_warn.
12976
12977 * Makefile.in (quickstrap): Build libgcc too.
12978
12979 2007-06-14 Paolo Bonzini <bonzini@gnu.org>
12980
12981 * configure.ac: Add --enable-checking=df. Explicitly mention that
12982 the variables are initialized as for "release".
12983 * df-core.c: Use it.
12984 * configure: Regenerate.
12985 * config.in: Regenerate.
12986
12987 2007-06-14 Bob Wilson <bob.wilson@acm.org>
12988
12989 * config/xtensa/xtensa.c (xtensa_expand_nonlocal_goto): Use
12990 validate_replace_rtx instead of replace_rtx.
12991 (xtensa_expand_prologue): Call df_insn_rescan after replace_rtx.
12992
12993 2007-06-14 Danny Smith <dannysmith@users.sourceforge.net>
12994
12995 * config/i386/cygming.h (DWARF_FRAME_REGNUM): Define.
12996 (DWARF2_UNWIND_INFO): Override default if configured with
12997 SJLJ EH disabled.
12998 * config/i386/cygwin.h (STARTFILE_SPEC): Add crtbegin.o.
12999 (ENDFILE_SPEC): Add crtend.o.
13000 * config/i386/mingw32.h (STARTFILE_SEC): Add crtbegin.o.
13001 (ENDFILE_SPEC): Add crtend.o.
13002 (TARGET_USE_JCR_SECTION): Define.
13003 (MD_UNWIND_SUPPORT): Define for 32-bit target.
13004
13005 * config/i386/cygming-crtbegin.c: New file.
13006 * config/i386/cygming-crtend.c: New file.
13007
13008 2007-06-14 Pascal Obry Pascal Obry <obry@adacore.com>
13009
13010 * config/i386/w32-unwind.h: New file.
13011
13012 2007-06-13 Eric Christopher <echristo@apple.com>
13013
13014 * config/i386/darwin.h (PREFERRED_STACK_BOUNDARY): Don't let
13015 the user set a value below STACK_BOUNDARY.
13016
13017 2007-06-13 Thiemo Seufer <ths@networkno.de>
13018
13019 * config/mips/linux.h, config/mips/linux64.h (LIB_SPEC): Always
13020 imply -lpthread for -pthread.
13021
13022 2007-06-13 Kazu Hirata <kazu@codesourcery.com>
13023
13024 * basic-block.h: Remove the prototype for
13025 free_basic_block_vars.
13026 * cfglayout.h: Remove the prototype for
13027 insn_locators_initialize.
13028 * tree.h: Remove the prototype for emit_line_note.
13029
13030 * tree-ssa-pre.c (mergephitemp): Remove.
13031 (init_pre): Don't use mergephitemp.
13032
13033 2007-06-13 Eric Christopher <echristo@apple.com>
13034
13035 * config/i386/i386.c (override_options): If we've specified
13036 an arch then don't use TARGET_SUBTARGET_ISA_DEFAULTs.
13037
13038 2007-06-13 Bob Wilson <bob.wilson@acm.org>
13039
13040 * df-scan.c (df_get_entry_block_def_set): Check if STATIC_CHAIN_REGNUM
13041 is defined.
13042
13043 2007-06-13 Bernd Schmidt <bernd.schmidt@analog.com>
13044
13045 * config/bfin/bfin.h (EH_RETURN_HANDLER_RTX): Use gen_frame_mem.
13046 * config/bfin/bfin.md (UNSPEC_VOLATILE_STORE_EH_HANDLER): New constant.
13047 (eh_store_handler): New pattern.
13048 (eh_return): Emit it instead of a plain move.
13049
13050 2007-06-13 Uros Bizjak <ubizjak@gmail.com>
13051
13052 * config/i386/i386.c (ix86_init_mmx_sse_builtins)
13053 [__builtin_infq, __builtin_fabsq]: Define usign def_builtin.
13054 [__builtin_ia32_rsqrtps, __builtin_ia32_rsqrtss]: Define using
13055 def_builtin_const.
13056
13057 2007-06-13 Bernd Schmidt <bernd.schmidt@analog.com>
13058
13059 * config/bfin/bfin.c (gen_one_bundle): Delete unused local variables.
13060 (find_next_insn_start, find_load): New functions.
13061 (bfin_reorg): Use them to deal with the fact that parallel insns are
13062 no longer represented as a SEQUENCE.
13063
13064 2007-06-13 Eric Botcazou <ebotcazou@libertysurf.fr>
13065
13066 * config/sparc/sparc.c (sparc_override_options): Initialize
13067 fpu mask correctly.
13068
13069 2007-06-13 Dave Korn <dave.korn@artimi.com>
13070
13071 * config/i386/i386.c (ix86_eax_live_at_start_p): Use
13072 df_get_live_out.
13073
13074 2007-06-13 Kazu Hirata <kazu@codesourcery.com>
13075
13076 * auto-inc-dec.c, c-incpath.c, config/c4x/libgcc.S,
13077 config/sh/divcost-analysis, dbgcnt.def, df-core.c,
13078 df-problems.c, df-scan.c, df.h, dominance.c, dse.c, regstat.c,
13079 tree-data-ref.c, tree-ssa-loop-im.c, tree-ssa-loop-prefetch.c,
13080 tree-vect-transform.c: Fix comment typos. Follow spelling
13081 conventions.
13082
13083 2007-06-12 Seongbae Park <seongbae.park@gmail.com>
13084
13085 * df-scan.c (df_get_exit-block_use_set): Always add the stack pointer
13086 to the exit block use set.
13087 (df_insn_delete, df_insn_rescan): Fixed spelling of "deferring".
13088 * gcse.c (cpro_jump): Don't emit barrier in cfglayout mode.
13089 * config/sparc/sparc.c (sparc_check_64): Check df != NULL.
13090
13091 2007-06-12 Seongbae Park <seongbae.park@gmail.com>
13092
13093 * opts.c (common_handle_option): Handle new option -fdbg-cnt-list.
13094 * dbgcnt.c (dbg_cnt_set_limit_by_name): Return value
13095 to indicate an error.
13096 (dbg_cnt_process_single_pair, dbg_cnt_list_all_counters):
13097 New functions.
13098 (dbg_cnt_process_opt): Print an error on a bad argument.
13099 * dbgcnt.h (dbg_cnt_list_all_counters): New function declaration.
13100 * common.opt (-fdbg-cnt-list): New.
13101 * doc/invoke.texi (-fdbg-cnt-list,-fdbg-cnt=): New.
13102
13103 2007-06-12 Eric Botcazou <ebotcazou@adacore.com>
13104
13105 * tree-ssa-alias.c (finalize_ref_all_pointers): Clear pt_anything
13106 flag on ref-all pointers.
13107
13108 2007-06-12 Andrew Pinski <andrew_pinski@playstation.sony.com>
13109
13110 PR middle-end/31579
13111 * expr.c (expand_expr_addr_expr_1): Call expand_expr
13112 for the offset with the modifier as EXPAND_INITIALIZER
13113 if the modifier is EXPAND_INITIALIZER.
13114 (expand_expr_real_1 <case INTEGER_CST>): Don't force to
13115 a register if we had an overflow.
13116
13117 2007-06-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13118
13119 * real.c (real_isfinite): New.
13120 (real_sqrt): Use it.
13121 * real.h (real_isfinite): New.
13122 * builtins.c: Use it.
13123
13124 2007-06-12 Ian Lance Taylor <iant@google.com>
13125 Daniel Berlin <dberlin@dberlin.org>
13126
13127 PR libstdc++/29286
13128 * tree.def: Add CHANGE_DYNAMIC_TYPE_EXPR.
13129 * tree.h (CHANGE_DYNAMIC_TYPE_NEW_TYPE): Define.
13130 (CHANGE_DYNAMIC_TYPE_LOCATION): Define.
13131 (DECL_NO_TBAA_P): Define.
13132 (struct tree_decl_common): Add no_tbaa_flag field.
13133 * tree-ssa-structalias.c (struct variable_info): Add
13134 no_tbaa_pruning field.
13135 (new_var_info): Initialize no_tbaa_pruning field.
13136 (unify_nodes): Copy no_tbaa_pruning field.
13137 (find_func_aliases): Handle CHANGE_DYNAMIC_TYPE_EXPR.
13138 (dump_solution_for_var): Print no_tbaa_pruning flag.
13139 (set_uids_in_ptset): Add no_tbaa_pruning parameter. Change all
13140 callers.
13141 (compute_tbaa_pruning): New static function.
13142 (compute_points_to_sets): Remove CHANGE_DYNAMIC_TYPE_EXPR nodes.
13143 Call compute_tbaa_pruning.
13144 * tree-ssa-alias.c (may_alias_p): Test no_tbaa_flag for pointers.
13145 * gimplify.c (gimplify_expr): Handle CHANGE_DYNAMIC_TYPE_EXPR.
13146 * gimple-low.c (lower_stmt): Likewise.
13147 * tree-gimple.c (is_gimple_stmt): Likewise.
13148 * tree-ssa-operands.c (get_expr_operands): Likewise.
13149 * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Likewise.
13150 * tree-inline.c (estimate_num_insns_1): Likewise.
13151 (copy_result_decl_to_var): Likewise.
13152 * expr.c (expand_expr_real_1): Likewise.
13153 * tree-pretty-print.c (dump_generic_node): Likewise.
13154 * tree-inline.c (copy_decl_to_var): Copy DECL_NO_TBAA_P flag.
13155 * omp-low.c (omp_copy_decl_2): Likewise.
13156 * print-tree.c (print_node): Print DECL_NO_TBAA_P flag.
13157 * doc/c-tree.texi (Expression trees): Document
13158 CHANGE_DYNAMIC_TYPE_EXPR.
13159
13160 2007-06-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13161
13162 * fold-const.c (fold_binary): Guard (X-X) -> 0 transformation
13163 with !HONOR_NANS and !HONOR_INFINITIES.
13164 * simplify-rtx.c (simplify_binary_operation_1): Likewise.
13165
13166 2007-06-12 Tristan Gingold <gingold@adacore.com>
13167
13168 * gcov.c: Comments updated.
13169 (source_info): Add file_time field.
13170 (source_index): New variable.
13171 (mutiple_files): New variable.
13172 (generate_results): New function extracted from process_file.
13173 (process_file): Save and restore chain of functions, generate
13174 results and free structures only if not merging results.
13175 (release_structures): File names are now freed in create_file_names
13176 (create_file_names): Free previous file names.
13177 (find_source): File date is now read here and modifications in
13178 source files is checked here.
13179 (read_graph_file): Only reverse order of functions for the current
13180 object file.
13181 (make_gcov_file_name): Do not generate long names if input_name is
13182 NULL.
13183 (output_lines): If merging results do not display graph, data and
13184 runs informations.
13185 Checking source file modification is done in find_source.
13186
13187 * doc/gcov.texi: Append an s to sourcefile.
13188
13189 2007-06-12 Bernd Schmidt <bernd.schmidt@analog.com>
13190
13191 * config/bfin/bfin.md (UNSPEC_NOP): New constant.
13192 (forced_nop): New pattern.
13193 * config/bfin/bfin.c: Include "df.h".
13194 (add_to_reg): Use df_regs_ever_live_p instead of regs_ever_live.
13195 (bfin_discover_loop): Use df_get_live_in instead of
13196 global_live_at_start.
13197 (bfin_reorder_loops): Pass 0 to cfg_layout_initialize. Call
13198 df_analyze when done.
13199 (gen_one_bundle): Don't generate SEQUENCE insns, just put modes on
13200 the insns. Use QImode for the final insn in a bundle. Call
13201 df_insn_rescan on generated NOPs; use gen_forced_nop instead of
13202 gen_nop.
13203 (reorder_var_tracking_notes): New function.
13204 (bfin_reorg): Pass no argument to split_all_insns. Don't call
13205 update_life_info. Call df_analyze after scheduling and bundle
13206 generation. Call reorder_var_tracking_notes if generating these
13207 notes. Call df_finish_pass at the end.
13208
13209 2007-06-12 Dirk Mueller <dmueller@suse.de>
13210
13211 * optabs.c (debug_optab_libfuncs): fix gcc_assert to
13212 a comparison, not an assignment.
13213
13214 2007-06-12 Olivier Hainque <hainque@adacore.com>
13215
13216 * tree-nested.c (convert_local_reference): Handle VIEW_CONVERT_EXPR.
13217 Request walking the subtrees only, leaving the current is_lhs/val_only
13218 untouched.
13219 (convert_non_local_reference): Likewise.
13220
13221 2007-06-12 Nathan Sidwell <nathan@codesourcery.com>
13222
13223 * config/m68k/m68k-devices.def (52221, 52223, 5253): New.
13224
13225 2007-06-12 Richard Guenther <rguenther@suse.de>
13226
13227 PR tree-optimization/15353
13228 PR tree-optimization/31657
13229 * passes.c (init_optimization_passes): Add pass_tree_ifcombine.
13230 * timevar.def: Add TV_TREE_IFCOMBINE.
13231 * tree-pass.h (pass_tree_ifcombine): Declare.
13232 * tree-ssa-ifcombine.c: New file.
13233 * tree-ssa-phiopt.c (blocks_in_phiopt_order): Export.
13234 * tree-flow.h (blocks_in_phiopt_order): Declare.
13235 * Makefile.in (OBJS-common): Add tree-ssa-ifcombine.o.
13236 (tree-ssa-ifcombine.o): New dependencies.
13237
13238 2007-06-12 Uros Bizjak <ubizjak@gmail.com>
13239
13240 PR rtl-optimization/32293
13241 * combine.c (simplify_if_then_else): Truncate return from
13242 nonzero_bits() to correct mode.
13243
13244 2007-06-12 Uros Bizjak <ubizjak@gmail.com>
13245
13246 * fold-const (fold_binary) [RDIV_EXPR]: Also optimize a/cbrt(b/c)
13247 into a*cbrt(c/b) if flag_unsafe_math_optimizations is set.
13248
13249 2007-06-11 Diego Novillo <dnovillo@google.com>
13250
13251 * Makefile.in (reload1.o-warn): Remove.
13252
13253 2007-06-11 Seongbae Park <seongbae.park@gmail.com>
13254
13255 * combine.c (subst): Use reg_overlap_mentioned_p
13256 instead of comparing register numbers directly.
13257
13258 2007-06-11 Kenneth Zadeck <zadeck@naturalbridge.com>
13259
13260 * reload1.c (mark_home_live_1): Use the mode parameter.
13261
13262 2007-06-11 Kenneth Zadeck <zadeck@naturalbridge.com>
13263
13264 * df-scan.c (df_insn_delete, df_insn_rescan, df_insn_rescan_all,
13265 df_process_deferred_rescans, df_notes_rescan): Fixed spelling of
13266 word "deferred".
13267 * df-core.c: Ditto.
13268
13269 2007-06-11 Daniel Berlin <dberlin@dberlin.org>
13270
13271 * Merge dataflow-branch into mainline (see ChangeLog.dataflow)
13272
13273 2007-06-11 Uros Bizjak <ubizjak@gmail.com>
13274
13275 * config/i386/i386.md ("*movtf_internal): Penalize moves to and
13276 from integer registers.
13277 (FP mode splitters): Handle TFmode.
13278
13279 2007-06-11 Eric Botcazou <ebotcazou@adacore.com>
13280
13281 * tree-ssa-structalias.c (find_what_p_points_to): Return false
13282 for ref-all pointers that point-to anything.
13283
13284 2007-06-11 Joseph Myers <joseph@codesourcery.com>
13285
13286 * config/arm/arm.c (arm_output_dwarf_dtprel,
13287 TARGET_ASM_OUTPUT_DWARF_DTPREL): New.
13288
13289 2007-06-11 Bernd Schmidt <bernd.schmidt@analog.com>
13290
13291 * config/bfin/bfin.md (movdi_insn, movsi_insn, movv2hi_insn,
13292 movhi_insn, movqi_insn, movsf_insn, movdf_insn): Don't allow constant
13293 to memory moves.
13294
13295 2007-06-11 Rafael Avila de Espindola <espindola@google.com>
13296
13297 * tree.c (signed_or_unsigned_type_for): New.
13298 (unsigned_type_for): Use signed_or_unsigned_type_for.
13299 (signed_type_for): Use signed_or_unsigned_type_for.
13300 * tree.h (signed_or_unsigned_type_for): New.
13301 (get_signed_or_unsigned_type): Remove.
13302 * fold-const.c (fold_negate_expr): Use signed_type_for instead of
13303 lang_hooks.types.signed_type
13304 (size_diffop): Likewise.
13305 (all_ones_mask_p): Likewise.
13306 (build_range_check): Likewise.
13307 (fold_cond_expr_with_comparison): Likewise.
13308 (fold_cond_expr_with_comparison): Likewise.
13309 (unextend): Likewise.
13310 (extract_muldiv_1): Likewise.
13311 (fold_single_bit_test_into_sign_test): Likewise.
13312 (fold_binary): Likewise.
13313 (fold_ternary): Likewise.
13314 (operand_equal_for_comparison_p): Use signed_or_unsigned_type_for
13315 instead of get_signed_or_unsigned_type.
13316 * c-objc-common.h (LANG_HOOKS_SIGNED_TYPE): Remove.
13317 (LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): Remove.
13318 * expr.c (signed_or_unsigned_type_for): Use
13319 signed_or_unsigned_type_for instead of get_signed_or_unsigned_type.
13320 * langhooks.c (get_signed_or_unsigned_type): Remove.
13321 (lhd_signed_or_unsigned_type): Remove.
13322 * langhooks.h (lang_hooks_for_types): Remove signed_type and
13323 signed_or_unsigned_type.
13324 (lhd_signed_or_unsigned_type): Remove.
13325 * expmed.c (make_tree): Use signed_type_for instead of
13326 lang_hooks.types.signed_type.
13327 * c-common.c (same_scalar_type_ignoring_signedness): Use
13328 c_common_signed_type instead of lang_hooks.types.signed_type.
13329 (c_common_unsigned_type): New.
13330 (c_common_signed_type): Just call c_common_signed_or_unsigned_type.
13331 (shorten_compare): Use c_common_unsigned_type instead of
13332 c_common_signed_or_unsigned_type.
13333 (c_common_nodes_and_builtins): Use c_common_unsigned_type instead of
13334 unsigned_type_for.
13335 * convert.c (convert_to_integer): Use signed_type_for instead of
13336 lang_hooks.types.signed_type.
13337 * langhooks-def.h (LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): Remove.
13338 (LANG_HOOK_FOR_TYPES_INITIALIZER): Remove LANG_HOOKS_SIGNED_TYPE and
13339 LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE.
13340 * c-format.c (check_format_types): Use c_common_unsigned_type
13341 instead of unsigned_type_for.
13342 * c-decl.c (groakdeclarator): Likewise.
13343 * c-typeck.c (convert_for_assignment): Likewise.
13344 * c-common.h (c_common_unsigned_type): New.
13345
13346 2007-06-11 Uros Bizjak <ubizjak@gmail.com>
13347
13348 PR target/32280
13349 * config/i386/sse.md ("sse2_ashlti", "sse2_lshrti3"): Move ...
13350 * config/i386/i386.md ("sse2_ashlti", "sse2_lshrti3"): ... to here.
13351
13352 2007-06-11 Uros Bizjak <ubizjak@gmail.com>
13353
13354 PR middle-end/32279
13355 * fold-const (fold_binary) [RDIV_EXPR]: Optimize a/sqrt(b/c)
13356 into a*sqrt(c/b) if flag_unsafe_math_optimizations is set.
13357
13358 2007-06-10 Jan Sjodin <jan.sjodin@amd.com>
13359 Sebastian Pop <sebpop@gmail.com>
13360
13361 * lambda-code.c (remove_iv): New.
13362 (lambda_loopnest_to_gcc_loopnest): Use remove_iv.
13363
13364 2007-06-10 Zdenek Dvorak <dvorakz@suse.cz>
13365
13366 * tree-data-ref.c (dr_analyze_alias): Handle case smt is NULL.
13367 * tree-predcom.c (mark_virtual_ops_for_renaming): Exported.
13368 * tree-ssa-loop-prefetch.c: Include optabs.h.
13369 (FENCE_FOLLOWING_MOVNT): New macro.
13370 (struct mem_ref): Add independent_p and storent_p fields.
13371 (record_ref): Initalize the new fields.
13372 (gather_memory_references_ref): Return true if the reference
13373 could be analysed.
13374 (gather_memory_references): Check whether all memory accesses
13375 in loop were recorded.
13376 (should_issue_prefetch_p): Return false for nontemporal stores.
13377 (nontemporal_store_p, mark_nontemporal_store, emit_mfence_after_loop,
13378 may_use_storent_in_loop_p, mark_nontemporal_stores): New functions.
13379 (determine_loop_nest_reuse): Detect independent memory references.
13380 (loop_prefetch_arrays): Call mark_nontemporal_stores.
13381 * tree-flow.h (mark_virtual_ops_for_renaming): Declare.
13382 * Makefile.in (tree-ssa-loop-prefetch.o): Add OPTABS_H dependency.
13383 * config/i386/i386.h (x86_mfence): Declare.
13384 (FENCE_FOLLOWING_MOVNT): Return x86_mfence.
13385 * config/i386/i386.c (x86_mfence): New variable.
13386 (ix86_init_mmx_sse_builtins): Initialize x86_mfence.
13387
13388 * tree-pretty-print.c (dump_generic_node): Mark nontemporal stores.
13389 * optabs.c (init_optabs): Initialize storent_optab.
13390 * optabs.h (enum optab_index): Add OTI_storent.
13391 (storent_optab): Declare.
13392 * genopinit.c (optabs): Add initialization for storent_optab.
13393 * tree.h (MOVE_NONTEMPORAL): New macro.
13394 * expr.c (expand_assignment, store_expr, store_constructor_field,
13395 store_constructor, store_field, expand_expr_real_1): Propagate
13396 nontemporality of the expanded store.
13397 (emit_storent_insn): New function.
13398 * expr.h (expand_assignment, store_expr): Declaration changed.
13399 * function.c (assign_parm_setup_reg): Pass false as nontemporality
13400 to expand_assignment.
13401 * stmt.c (expand_asm_expr): Ditto.
13402 * calls.c (initialize_argument_information): Pass false as
13403 nontemporality to store_expr.
13404 * config/i386/sse.md (storentv4sf, storentv2df, storentv2di,
13405 storentsi): New.
13406
13407 2007-06-09 Daniel Berlin <dberlin@dberlin.org>
13408
13409 * tree-ssa-structalias.c (set_uids_in_ptset): Add is_deref'd
13410 parameter, use it.
13411 (find_what_p_points_to): Pass new parameter to set_uids_in_ptset.
13412
13413 2007-06-09 Daniel Berlin <dberlin@dberlin.org>
13414
13415 * tree-data-ref.c (dr_may_alias_p): Check that decl_a != decl_b,
13416 and allow DECL_P here.
13417
13418 2007-06-09 Zdenek Dvorak <dvorakz@suse.cz>
13419
13420 * tree-scalar-evolution.c (follow_ssa_edge_in_rhs,
13421 follow_ssa_edge_in_condition_phi, follow_ssa_edge): Keep more precise
13422 track of the size of the expression.
13423 * cfghooks.c (merge_blocks): Remove block from loops structure only
13424 after call of the merge_blocks hook.
13425
13426 2007-06-09 Tom Tromey <tromey@redhat.com>
13427
13428 * c-decl.c (grokdeclarator): Added 'deprecated_state' argument.
13429 (deprecated_state): Removed.
13430 (start_decl): Update.
13431 (enum deprecated_states): Moved earlier.
13432 (groktypename): Update.
13433 (push_parm_decl): Likewise.
13434 (grokfield): Likewise.
13435 (start_function): Likewise.
13436
13437 2007-06-09 Ian Lance Taylor <iant@google.com>
13438
13439 PR tree-optimization/32169
13440 * tree-vrp.c (extract_range_from_unary_expr): For NOP_EXPR and
13441 CONVERT_EXPR, check whether min and max both converted to an
13442 overflow infinity representation.
13443
13444 2007-06-08 Eric Botcazou <ebotcazou@adacore.com>
13445
13446 * reload1.c (fixup_abnormal_edges): Clear bb field for insns
13447 not inserted on the edge.
13448
13449 2007-06-08 Bob Wilson <bob.wilson@acm.org>
13450
13451 * config/xtensa/lib1funcs.asm (__udivsi3): Use hardware divide
13452 instructions if they are supported.
13453 (__divsi3, __umodsi3, __modsi3): Likewise.
13454 (__ashldi3, __ashrdi3, __lshrdi3): New.
13455 * config/xtensa/t-xtensa (LIB1ASMFUNCS): Add DImode shift functions.
13456
13457 2007-06-08 Harsha Jagasia <harsha.jagasia@amd.com>
13458 Tony Linthicum <tony.linthicum@amd.com>
13459
13460 * doc/invoke.texi: Add fvect-cost-model flag.
13461 * common.opt (fvect-cost-model): New flag.
13462 * tree-vectorizer.c (new_stmt_vec_info): Initialize inside and outside
13463 cost fields in stmt_vec_info struct for STMT.
13464 * tree-vectorizer.h (stmt_vec_info): Define inside and outside cost
13465 fields in stmt_vec_info struct and access functions for the same.
13466 (TARG_COND_BRANCH_COST): Define cost of conditional branch.
13467 (TARG_VEC_STMT_COST): Define cost of any vector operation, excluding
13468 load, store and vector to scalar operation.
13469 (TARG_VEC_TO_SCALAR_COST): Define cost of vector to scalar operation.
13470 (TARG_VEC_LOAD_COST): Define cost of aligned vector load.
13471 (TARG_VEC_UNALIGNED_LOAD_COST): Define cost of misasligned vector load.
13472 (TARG_VEC_STORE_COST): Define cost of vector store.
13473 (vect_estimate_min_profitable_iters): Define new function.
13474 * tree-vect-analyze.c (vect_analyze_operations): Add a compile-time
13475 check to evaluate if loop iterations are less than minimum profitable
13476 iterations determined by cost model or minimum vect loop bound defined
13477 by user, whichever is more conservative.
13478 * tree-vect-transform.c (vect_do_peeling_for_loop_bound): Add a
13479 run-time check to evaluate if loop iterations are less than minimum
13480 profitable iterations determined by cost model or minimum vect loop
13481 bound defined by user, whichever is more conservative.
13482 (vect_estimate_min_profitable_iterations): New function to estimate
13483 mimimimum iterartions required for vector version of loop to be
13484 profitable over scalar version.
13485 (vect_model_reduction_cost): New function.
13486 (vect_model_induction_cost): New function.
13487 (vect_model_simple_cost): New function.
13488 (vect_cost_strided_group_size): New function.
13489 (vect_model_store_cost): New function.
13490 (vect_model_load_cost): New function.
13491 (vectorizable_reduction): Call vect_model_reduction_cost during
13492 analysis phase.
13493 (vectorizable_induction): Call vect_model_induction_cost during
13494 analysis phase.
13495 (vectorizable_load): Call vect_model_load_cost during analysis phase.
13496 (vectorizable_store): Call vect_model_store_cost during analysis phase.
13497 (vectorizable_call, vectorizable_assignment, vectorizable_operation,
13498 vectorizable_promotion, vectorizable_demotion): Call
13499 vect_model_simple_cost during analysis phase.
13500
13501 2007-06-08 Simon Baldwin <simonb@google.com>
13502
13503 * reg-stack.c (get_true_reg): Readability change. Moved default case
13504 label into direct switch statement scope.
13505
13506 2007-06-08 Simon Baldwin <simonb@google.com>
13507
13508 * tree-flow-inline.h (var_ann): Replaced erroneous '=' assignment
13509 in gcc_assert() with '==' comparison.
13510
13511 2007-06-08 Uros Bizjak <ubizjak@gmail.com>
13512
13513 * config/i386/i386.c (override_options): Merge TARGET_SSE4_2 and
13514 TARGET_ABM handling of x86_popcnt variable.
13515
13516 2007-06-08 Uros Bizjak <ubizjak@gmail.com>
13517
13518 * doc/extend.texi (X86 Built-in Functions): Document __builtin_fabsq,
13519 __builtin_copysignq and __builtin_infq built-in functions.
13520
13521 2007-06-08 Uros Bizjak <ubizjak@gmail.com>
13522
13523 * doc/extend.texi (X86 Built-in Functions): Add missing `@item's in
13524 SSE4.2 section. Correct built-in function names in SSE4A section.
13525
13526 2007-06-08 Uros Bizjak <ubizjak@gmail.com>
13527
13528 PR tree-optimization/32243
13529 * tree-vect-transform.c (vectorizable_type_promotion): Move check
13530 for ncopies after ratio check between nunits_out and nunits_in.
13531 (vectorizable_type_demotion): Remove single-use variable "scalar_type".
13532
13533 2007-06-08 Dorit Nuzman <dorit@il.ibm.com>
13534
13535 PR tree-optimization/32224
13536 * tree-vect-analyze.c (vect_determine_vectorization_factor): Fail
13537 vectorization upon a non GIMPLE_MODIFY_STMT.
13538
13539 2007-06-08 Christian Bruel <christian.bruel@st.com>
13540
13541 PR target/29953
13542 * config/sh/sh.md (doloop_end): New pattern and splitter.
13543 * loop-iv.c (simple_rhs_p): Check for hardware registers.
13544
13545 2007-06-08 Zdenek Dvorak <dvorakz@suse.cz>
13546
13547 PR middle-end/32209
13548 * dominance.c (debug_dominance_tree, debug_dominance_tree_1): New
13549 functions.
13550 (verify_dominators): Do not change dominance tree.
13551
13552 2007-06-08 Kaz Kojima <kkojima@gcc.gnu.org>
13553
13554 * config/sh/constraints.md: New file.
13555 * config/sh/sh.c: Include tm-constrs.h.
13556 (reg_class_from_letter): Remove.
13557 (prepare_cbranch_operands): Use satisfies_constraint_*
13558 function instead of macro.
13559 (andcosts, broken_move, sh_secondary_reload): Likewise.
13560 * config/sh/predicates.md (trapping_target_operand): Likewise.
13561 (and_operand, arith_operand, arith_reg_or_0_operand,
13562 cmp_operand, logical_operand, target_operand,
13563 ua_address_operand, ua_offset, xor_operand): Likewise.
13564 * config/sh/sh.md: Include constraints.md.
13565 (*movsicc_t_false): Use satisfies_constraint_* function
13566 instead of macro.
13567 (*movsicc_t_true, ashlsi3_std, ashlhi3_k, lshrsi3_m,
13568 lshrsi3_k, movsi_const_16bit+2, *movhi_media+1,
13569 movdi_const_16bit+1, beq, bne, *ptb): Likewise.
13570 * config/sh/sh.h (reg_class_from_letter): Remove prototype.
13571 (OVERRIDE_OPTIONS): Don't modify reg_class_from_letter.
13572 (REG_CLASS_FROM_CONSTRAINT): Remove.
13573 (CONSTRAINT_LEN, CONST_OK_FOR_I20, CONST_OK_FOR_I,
13574 CONST_OK_FOR_J, CONST_OK_FOR_K16, CONST_OK_FOR_K,
13575 CONST_OK_FOR_P27, CONST_OK_FOR_P, CONST_OK_FOR_M,
13576 CONST_OK_FOR_N, CONST_OK_FOR_CONSTRAINT_P,
13577 CONST_DOUBLE_OK_FOR_LETTER_P): Likewise.
13578 (SECONDARY_INOUT_RELOAD_CLASS): Use satisfies_constraint_*
13579 function instead of macro.
13580 (SECONDARY_INPUT_RELOAD_CLASS): Likewise.
13581 (EXTRA_CONSTRAINT_Q, EXTRA_CONSTRAINT_A,
13582 EXTRA_CONSTRAINT_Bsc, EXTRA_CONSTRAINT_B,
13583 EXTRA_CONSTRAINT_Css, EXTRA_CONSTRAINT_Csu): Remove.
13584 (IS_PC_RELATIVE_LOAD_ADDR_P): New macro.
13585 (IS_LITERAL_OR_SYMBOLIC_S16_P): Likewise.
13586 (IS_LITERAL_OR_SYMBOLIC_U16_P): Likewise.
13587 (IS_NON_EXPLICIT_CONSTANT_P): Likewise.
13588 (EXTRA_CONSTRAINT_Csy, EXTRA_CONSTRAINT_Z, EXTRA_CONSTRAINT_W,
13589 EXTRA_CONSTRAINT_Cpg, EXTRA_CONSTRAINT_C,
13590 EXTRA_MEMORY_CONSTRAINT, EXTRA_CONSTRAINT_Sr0,
13591 EXTRA_CONSTRAINT_Sua, EXTRA_CONSTRAINT_S,
13592 EXTRA_CONSTRAINT_STR): Likewise.
13593 (GO_IF_LEGITIMATE_INDEX): Fix indentation.
13594
13595 2007-06-07 Geoffrey Keating <geoffk@apple.com>
13596
13597 * config/i386/darwin.h (STACK_BOUNDARY): Define.
13598
13599 2007-06-07 Simon Martin <simartin@users.sourceforge.net>
13600
13601 PR c++/30759
13602 * c-common.h (flag_cpp0x): Replaced by...
13603 (cxx_dialect): ... this new variable specifying the C++ dialect that
13604 is used.
13605 * c-common.c (flag_cpp0x): Removed.
13606 (cxx_dialect): Defined.
13607 * c-cppbuiltin.c (c_cpp_builtins): flag_cpp0x rewritten in terms of
13608 cxx_dialect.
13609 * c-opts.c (c_common_post_options): Likewise.
13610 (set_std_cxx98): Set cxx_dialect to cxx98.
13611 (set_std_cxx0x): Set cxx_dialect to cxx0x.
13612
13613 2007-06-07 Geoffrey Keating <geoffk@apple.com>
13614 Hui-May Chang <hm.chang@apple.com>
13615
13616 * doc/invoke.texi (Darwin Options): Update documentation for
13617 -mmacosx-version-min.
13618 * config.gcc (*-*-darwin*): Set extra_gcc_objs.
13619 * config/darwin-driver.c: New file.
13620 * config/darwin.h (GCC_DRIVER_HOST_INITIALIZATION): New.
13621 * config/t-darwin (darwin-driver.o): New rule.
13622
13623 * config/darwin-c.c (version_as_macro): Ignore low digit.
13624
13625 2007-06-07 Uros Bizjak <ubizjak@gmail.com>
13626
13627 * config/i386/i386.md (standard sse constant splitter): Handle TFmode.
13628 (negtf2, abstf2, *absnegtf2_sse): New insn patterns.
13629 (CSGNMODE): New mode macro.
13630 (CSGNVMODE): New mode attribute.
13631 (copysign<mode>3): Rename from copysingsf3 and copysigndf3. Macroize
13632 expander using CSGNMODE mode macro. Handle TFmode.
13633 (copysign<mode>3_const): Rename from copysignsf3_const and
13634 copysigndf3_const. Macroize pattern using CSGNMODE mode macro.
13635 Handle TFmode.
13636 (copysign<mode>3_var): Rename from copysignsf3_var and
13637 copysigndf3_var. Macroize pattern using CSGNMODE mode macro.
13638 Handle TFmode.
13639 (copysign<mode>3_var splitter): Macroize pattern using CSGNMODE
13640 mode macro. Handle TFmode.
13641 * config/i386/sse.md (andtf3, *andtf3, *nandtf3): New insn patterns.
13642 (iortf3, *iortf3): Ditto.
13643 (xortf3, *xortf3): Ditto.
13644 * config/i386/i386.c (ix86_build_signbit_mask): Create scalar
13645 TFmode and TImode masks.
13646 (ix86_expand_copysign): Expand TFmode copysign insn.
13647 (IX86_BUILTIN_INFQ): New.
13648 (IX86_BUILTIN_FABSQ): Ditto.
13649 (IX86_BUILTIN_COPYSIGNQ): Ditto.
13650 (ix86_init_mmx_sse_builtins) [__builtin_infq]: New builtin definition.
13651 [__builtin_fabsq]: Ditto.
13652 [__builtin_copysignq]: Ditto.
13653 (ix86_expand_builtin) [IX86_BUILTIN_INFQ]: Expand builtin.
13654 [IX86_BUILTIN_FABSQ]: Expand builtin using ix86_expand_unop_builtin().
13655 [IX86_BUILTIN_COPYSIGNQ]: Expand builtin using
13656 ix86_expand_binop_builtin().
13657
13658 2007-06-07 Bob Wilson <bob.wilson@acm.org>
13659
13660 * config/xtensa/lib1funcs.asm: Clean up whitespace.
13661
13662 2007-06-07 Steve Ellcey <sje@cup.hp.com>
13663
13664 PR target/31850
13665 * rtl.h (push_to_sequence2): New.
13666 * emit-rtl.c (push_to_sequence2): New.
13667 * function.c (assign_parm_data_all): Add new fields.
13668 (assign_parm_setup_block): Call push_to_sequence2 instead of
13669 push_to_sequence.
13670 (assign_parm_setup_reg): Ditto.
13671 (assign_parm_setup_stack): Ditto.
13672 (assign_parms_unsplit_complex): Ditto.
13673 (assign_parms): Change field name.
13674
13675 2007-06-07 Zdenek Dvorak <dvorakz@suse.cz>
13676
13677 PR tree-optimization/32220
13678 * tree-predcom.c (eliminate_temp_copies): Handle the case that loop
13679 phi node is reached before defining statement.
13680
13681 2007-06-06 Andrew Pinski <andrew_pinski@playstation.sony.com>
13682
13683 PR tree-opt/32231
13684 * tree-vect-transform.c (vectorizable_call): Call update_stmt
13685 after changing the right hand side of the assignment.
13686
13687 2007-06-06 Eric Christopher <echristo@apple.com>
13688
13689 * config.gcc (i?86-*-darwin*): Remove arch parameter.
13690 (x86_64-*-darwin*): Ditto.
13691 * config/i386/darwin.h (TARGET_SUBTARGET32_ISA_DEFAULT): Define.
13692 (TARGET_SUBTARGET64_ISA_DEFAULT): Ditto.
13693
13694 2007-06-06 Thomas Neumann <tneumann@users.sourceforge.net>
13695
13696 * tree-ssa-alias-warnings.c (maybe_add_match): Cast according to the
13697 coding conventions.
13698 (add_key): Likewise.
13699 * tree-ssa.c (init_tree_ssa): Use type safe memory macros.
13700 * tree-ssa-ccp.c (ccp_fold_builtin): Avoid using C++ keywords as
13701 variable names.
13702 * tree-ssa-coalesce.c (find_coalesce_pair): Use type safe memory
13703 macros.
13704 (add_cost_one_coalesce): Likewise.
13705 * tree-ssa-copy.c (merge_alias_info): Avoid using C++ keywords as
13706 variable names. Rename orig to orig_name for consistency.
13707 * tree-ssa-dom.c (dom_thread_across_edge): Cast according to the
13708 coding conventions.
13709 (cprop_into_successor_phis): Avoid using C++ keywords as variable
13710 names.
13711 (record_equivalences_from_stmt): Likewise.
13712 * tree-ssa-dse.c (dse_initialize_block_local_data): Cast according to
13713 the coding conventions.
13714 (memory_ssa_name_same): Likewise.
13715 (dse_optimize_stmt): Likewise.
13716 (dse_record_phis): Likewise.
13717 (dse_finalize_block): Likewise.
13718 * tree-ssa-loop-im.c (outermost_invariant_loop_expr): Avoid using C++
13719 keywords as variable names.
13720 (may_move_till): Cast according to the coding conventions.
13721 (force_move_till_expr): Avoid using C++ keywords as variable names.
13722 (force_move_till): Cast according to the coding conventions.
13723 (memref_hash): Likewise.
13724 (memref_eq): Likewise.
13725 (gather_mem_refs_stmt): Likewise.
13726 * tree-ssa-loop-ivopts.c (contains_abnormal_ssa_name_p): Avoid
13727 using C++ keywords as variable names.
13728 (idx_find_step): Cast according to the coding conventions.
13729 (idx_record_use): Likewise.
13730 (find_depends): Likewise.
13731 (prepare_decl_rtl): Likewise.
13732 (mbc_entry_hash): Likewise.
13733 (mbc_entry_eq): Likewise.
13734 * tree-ssa-loop-niter.c (SWAP): Use the correct the type for tmp.
13735 (simplify_replace_tree): Avoid using C++ keywords as variable names.
13736 (idx_infer_loop_bounds): Cast according to the coding conventions.
13737 * tree-ssa-loop-prefetch.c (idx_analyze_ref): Likewise.
13738 * tree-ssa-math-opts.c (occ_new ): Likwise.
13739 * tree-ssanames.c (duplicate_ssa_name_ptr_info): Use type safe memory
13740 macros.
13741 * tree-ssa-operands.c (add_def_op): Avoid using C++ keywords as
13742 variable names.
13743 (add_use_op): Likewise.
13744 (add_vop): Likewise.
13745 (add_vuse_op): Likewise.
13746 (add_vdef_op): Likewise.
13747 (get_expr_operands): Likewise.
13748 (push_stmt_changes): Use type safe memory macros.
13749 * tree-ssa-phiopt.c (replace_phi_edge_with_variable): Avoid using C++
13750 keywords as variable names.
13751 (conditional_replacement): Likewise.
13752 (minmax_replacement): Likewise.
13753 (abs_replacement): Likewise.
13754 * tree-ssa-pre.c (create_expression_by_pieces): Cast according to the
13755 coding conventions.
13756 (insert_fake_stores): Avoid using C++ keywords as variable names.
13757 * tree-ssa-reassoc.c (add_to_ops_vec): Cast according to the coding
13758 conventions.
13759 * tree-ssa-structalias.c (heapvar_lookup): Likewise.
13760 (heapvar_insert): Use type safe memory macros.
13761 (new_var_info): Cast according to the coding conventions.
13762 (new_constraint): Likewise.
13763 (remove_preds_and_fake_succs): Use type safe memory macros.
13764 * tree-ssa-threadupdate.c (thread_block): Cast according to the coding
13765 conventions.
13766 (thread_single_edge): Likewise.
13767 (thread_through_loop_header): Likewise.
13768
13769 2007-06-06 Eric Christopher <echristo@apple.com>
13770
13771 * config/i386/i386.c (override_options): Move handling
13772 of TARGET_SUBTARGET* earlier.
13773
13774 2007-06-06 Paolo Bonzini <bonzini@gnu.org>
13775
13776 * genmodes.c (tagged_printf, emit_insn_modes_h): Don't
13777 use %n on printf.
13778
13779 2007-06-06 Zdenek Dvorak <dvorakz@suse.cz>
13780
13781 * haifa-sched.c (restore_bb_notes): Clear bb field of the notes
13782 emited outside of basic block.
13783 * cfgbuild.c (find_bb_boundaries): Clear bb field for insns between
13784 the created blocks.
13785 * rtl.h (delete_insn_chain): Declaration changed.
13786 * cfgrtl.c (delete_insn_chain): Add option to clear bb field for
13787 non-removed insns.
13788 (rtl_delete_block, rtl_merge_blocks): Pass true to delete_insn_chain.
13789 (delete_insn_chain_and_edges, try_redirect_by_replacing_jump,
13790 rtl_tidy_fallthru_edge, cfg_layout_merge_blocks): Pass false
13791 to delete_insn_chain.
13792 (rtl_verify_flow_info_1): Verify that the insns in header and footer
13793 do not have bb field set.
13794 (rtl_verify_flow_info): Verify that insns between basic blocks do not
13795 have bb field set.
13796 * recog.c (peephole2_optimize): Add argument to delete_insn_chain call.
13797 * cfgcleanup.c (try_optimize_cfg): Ditto.
13798
13799 2007-06-06 Thomas Neumann <tneumann@users.sourceforge.net>
13800
13801 * lambda-code.c (struct lambda_lattice_s): Add a name to the struct.
13802 (lambda_body_vector_new): Use type safe memory macros.
13803 (lambda_linear_expression_new): Likewise.
13804 (lambda_loopnest_new): Likewise.
13805 (lambda_lattice_new): Likewise.
13806 (replace_uses_equiv_to_x_with_y): Cast according to the coding
13807 conventions. Use type safe memory macros.
13808 * lambda.h (struct lambda_trans_matrix_s): Add a name to the struct.
13809 (lambda_body_vector_s): Likewise.
13810 * lambda-mat.c (lambda_matrix_new): Use type safe memory macros.
13811 * lambda-trans.c (lambda_trans_matrix_new): Likewise.
13812
13813 2007-06-06 Richard Guenther <rguenther@suse.de>
13814
13815 * tree-ssa-forwprop.c (forward_propagate_into_cond): Return 2
13816 if we need to schedule cfg_cleanup.
13817 (tree_ssa_forward_propagate_single_use_vars): Do so.
13818
13819 2007-06-06 Ian Lance Taylor <iant@google.com>
13820
13821 * fold-const.c (merge_ranges): If range_successor or
13822 range_predecessor fail, just return 0.
13823
13824 2007-06-06 Uros Bizjak <ubizjak@gmail.com>
13825
13826 PR tree-optimization/32216
13827 * tree-vectorizer.c (supportable_widening_operation): Determine
13828 signedness of FIX_TRUNC_EXPR from output operand.
13829 (supportable_narrowing_operation): Ditto.
13830 * tree-vect-generic.c (expand_vector_operations_1): Determine
13831 signedness of VEC_UNPACK_FLOAT_HI_EXPR and VEC_UNPACK_FLOAT_LO_EXPR
13832 from input operand.
13833
13834 2007-06-06 Thomas Neumann <tneumann@users.sourceforge.net>
13835
13836 * config/i386/i386.c (enum pta_flags): Move out of struct scope...
13837 (struct pta): ...from here. Change flags to unsigned to avoid
13838 excessive casting (as it is used as a bit mask).
13839 (override_options): Add casts according to the coding convenventions.
13840 (x86_64_elf_unique_section): Likewise.
13841 (examine_argument): Avoid using C++ keywords as variable names.
13842 (construct_container): Likewise.
13843 (legitimize_pic_address): Likewise.
13844 (get_dllimport_decl): Cast according to the coding conventions. Use
13845 type safe memory macros.
13846 (legitimize_address): Cast according to the coding conventions.
13847 (emit_i387_cw_initialization): Corrected the type of slot to enum
13848 ix86_stack_slot.
13849 (ix86_init_machine_status): Use type safe memory macros.
13850 (bdesc_pcmpestr): Use UNKNOWN instead of integer 0.
13851 (bdesc_pcmpistr): Likewise.
13852 (bdesc_crc32): Likewise.
13853 (bdesc_sse_3arg): Likewise.
13854 (bdesc_2arg): Likewise.
13855 (bdesc_1arg): Likewise.
13856 (ix86_expand_sse_pcmpestr): Cast according to the coding conventions.
13857 (ix86_expand_sse_pcmpistr): Likewise.
13858 (ix86_expand_vec_set_builtin): Use EXPAND_NORMAL instead of integer 0.
13859 (ix86_builtin_vectorized_function): Change the type of fn to unsigned
13860 int to match the langhook definition.
13861 (ix86_builtin_conversion): Change the type of code to unsigned init to
13862 match the langhook definition.
13863 (ix86_preferred_reload_class): Avoid using C++ keywords as variable
13864 names.
13865 (ix86_preferred_output_reload_class): Likewise.
13866 (ix86_cannot_change_mode_class): Likewise.
13867 (ix86_memory_move_cost): Likewise.
13868 (ix86_rtx_costs): Cast the outer_code parameter to enum rtx_code to
13869 avoid excessive casting later on.
13870 (x86_output_mi_thunk): Avoid using C++ keywords as variable names.
13871
13872 2007-06-06 Uros Bizjak <ubizjak@gmail.com>
13873
13874 * config/i386/sse.md (sse4_2_pcmpestr_cconly): Prefer pcmpestrm
13875 as flags setting insn.
13876 (sse4_2_pcmpistr_cconly): Prefer pcmpistrm as flags setting insn.
13877
13878 2007-06-06 Uros Bizjak <ubizjak@gmail.com>
13879
13880 * config/i386/i386.md (UNSPEC_ROUNDP, UNSPEC_ROUNDS): Remove.
13881 (UNSPEC_ROUND): New.
13882 ("sse4_1_round<mode>2"): New insn pattern.
13883 ("rint<mode>2"): Expand using "sse4_1_round<mode>2" pattern for
13884 SSE4.1 targets.
13885 ("floor<mode>2"): Rename from floordf2 and floorsf2. Macroize
13886 expander using SSEMODEF mode macro. Expand using
13887 "sse4_1_round<mode>2" pattern for SSE4.1 targets.
13888 ("ceil<mode>2"): Rename from ceildf2 and ceilsf2. Macroize
13889 expander using SSEMODEF mode macro. Expand using
13890 "sse4_1_round<mode>2" pattern for SSE4.1 targets.
13891 ("btrunc<mode>2"): Rename from btruncdf2 and btruncsf2. Macroize
13892 expander using SSEMODEF mode macro. Expand using
13893 "sse4_1_round<mode>2" pattern for SSE4.1 targets.
13894 * config/i386/sse.md ("sse4_1_roundpd", "sse4_1_roundps"): Use
13895 UNSPEC_ROUND instead of UNSPEC_ROUNDP.
13896 ("sse4_1_roundsd", "sse4_1_roundss"): Use UNSPEC_ROUND instead of
13897 UNSPEC_ROUNDS.
13898
13899 2007-06-06 Jan Sjodin <jan.sjodin@amd.com>
13900 Sebastian Pop <sebpop@gmail.com>
13901
13902 * lambda.h (build_linear_expr): New.
13903 * lambda-code.c (lbv_to_gcc_expression, lle_to_gcc_expression):
13904 Use build_linear_expr, call fold and force_gimple_operand.
13905 (lambda_loopnest_to_gcc_loopnest): Check that there is
13906 something to insert.
13907 * testsuite/gcc.dg/tree-ssa/ltrans-6.c: New.
13908
13909 2007-06-05 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
13910
13911 PR preprocessor/23479
13912 * doc/extend.texi: Document the 0b-prefixed binary integer
13913 constant extension.
13914
13915 2007-06-05 Uros Bizjak <ubizjak@gmail.com>
13916
13917 PR tree-optimization/32215
13918 * tree-vectorizer.c (supportable_widening_operation): Return false
13919 for unsupported FIX_TRUNC_EXPR tree code.
13920 (supportable_narrowing_operation): Ditto for FLOAT_EXPR tree code.
13921
13922 2007-06-06 Nathan Froyd <froydnj@codesourcery.com>
13923
13924 * config/rs6000/rs6000.h (FIXED_SCRATCH): Use r0 as a scratch
13925 register on SPE targets. Change documentation to reflect
13926 reality.
13927 * config/rs6000/rs6000.c (rs6000_conditional_register_usage):
13928 Change FIXED_SCRATCH to 14 and document why we're keeping r14
13929 out of the register allocation pool.
13930 (rs6000_reg_live_or_pic_offset_p): New function.
13931 (rs6000_emit_prologue): Move the actual saving of LR up to free
13932 r0 for holding r11. Split saving of SPE 64-bit registers into
13933 its own case. Ensure that offsets will always be in-range for
13934 'evstdd' by using r11 as a scratch register to point at the start
13935 of the SPE save area. Save r11 if necessary, as it is the static
13936 chain register.
13937 (rs6000_emit_epilogue): Split restoring of SPE 64-bit registers
13938 into its own case. Ensure that offsets will always be in-range
13939 for 'evldd' by using r11 as a scratch register to point at the
13940 start of the SPE save area. Also adjust r11 when restoring
13941 the stack pointer to compensate for pre-loading r11.
13942
13943 2007-06-05 Thomas Neumann <tneumann@users.sourceforge.net>
13944
13945 * cfg.c (init_flow): Use type safe memory macros.
13946 (alloc_block): Likewise.
13947 (unchecked_make_edge): Likewise.
13948 (dump_flow_info): Avoid using C++ keywords as variable names.
13949 (copy_original_table_clear): Cast according to the coding conventions.
13950 (copy_original_table_set): Likewise.
13951 * cfgexpand (label_rtx_for_bb): Likewise.
13952 (expand_gimple_basic_block): Likewise.
13953 * cfghooks.c (dump_bb): Likewise.
13954 (lv_adjust_loop_header_phi): Avoid using C++ keywords as
13955 variable names.
13956 (lv_add_condition_to_bb): Likewise.
13957 * cfglayout (relink_block_chain): Cast according to the coding
13958 conventions.
13959 (fixup_reorder_chain): Likewise.
13960 (fixup_fallthru_exit_predecessor): Likewise.
13961 * cfgloop.c (glb_enum_p): Likewise.
13962 (get_exit_description): Likewise.
13963 (dump_recorded_exit): Likewise.
13964 * cfgloop.h (enum loop_estimation): Move out of struct scope...
13965 (struct loop): ... from here.
13966 * cfgloopmanip.c (rpe_enum_p): Cast according to the coding
13967 conventions.
13968 * cfgrtl.c (rtl_create_basic_block): Likewise.
13969 (rtl_split_block): Likewise.
13970 (rtl_dump_bb): Likewise.
13971 (cfg_layout_split_block): Likewise.
13972 (init_rtl_bb_info): Use typesafe memory macros.
13973
13974 * graphds.h (struct graph_edge): Renamed edge to graph_edge.
13975 * graphds.h: Updated all usages of edge to graph_edge.
13976 * graphds.c: Likewise.
13977 * cfgloopanal.c: Likewise.
13978
13979 2007-06-05 Ian Lance Taylor <iant@google.com>
13980
13981 * tree-vrp.c (compare_values_warnv): Check TREE_NO_WARNING on a
13982 PLUS_EXPR or MINUS_EXPR node before setting *strict_overflow_p.
13983 (extract_range_from_assert): Set TREE_NO_WARNING when creating an
13984 expression.
13985 (test_for_singularity): Likewise.
13986
13987 2007-06-05 H.J. Lu <hongjiu.lu@intel.com>
13988
13989 * config/i386/constraints.md ("Y2"): Replaced by ...
13990 ("Yt"): This.
13991 * config/i386/i386.md: Likewise.
13992 * config/i386/mmx.md: Likewise.
13993 * config/i386/sse.md: Likewise.
13994
13995 2007-06-05 H.J. Lu <hongjiu.lu@intel.com>
13996
13997 * config/i386/constraints.md ("z"): Replaced by ...
13998 ("Y0"): This.
13999 * config/i386/sse.md (sse4_1_blendvpd): Likewise.
14000 (sse4_1_blendvps): Likewise.
14001 (sse4_1_pblendvb): Likewise.
14002 (sse4_2_pcmpestr): Likewise.
14003 (sse4_2_pcmpestrm): Likewise.
14004 (sse4_2_pcmpestr_cconly): Likewise.
14005 (sse4_2_pcmpistr): Likewise.
14006 (sse4_2_pcmpistrm): Likewise.
14007 (sse4_2_pcmpistr_cconly): Likewise.
14008
14009 2007-06-05 Razya Ladelsky <razya@il.ibm.com>
14010
14011 * matrix-reorg.c (transform_access_sites): Fix computation.
14012 (transform_allocation_sites): Same.
14013
14014 2007-06-05 Uros Bizjak <ubizjak@gmail.com>
14015
14016 * config/i386/i386.c (override_options): Use
14017 TARGET_SUBTARGET32_ISA_DEFAULT to select default ix86_isa_flags.
14018
14019 2007-06-05 Uros Bizjak <ubizjak@gmail.com>
14020
14021 * config/i386/predicates.md (reg_not_xmm0_operand): New predicate.
14022 (nonimm_not_xmm0_operand): Ditto.
14023 * config/i386/sse.md ("sse4_1_blendvpd"): Use "reg_not_xmm0_operand"
14024 as operand[0] and operand[1] predicate. Use "nonimm_not_xmm0_operand"
14025 as operand[2] predicate. Require "z" class XMM register for
14026 operand[3]. Adjust asm template.
14027 ("sse4_1_blendvpd"): Ditto.
14028 ("sse4_1_pblendvb"): Ditto.
14029 * config/i386/i386.c (ix86_expand_sse_4_operands_builtin): Do not
14030 force op2 into xmm0 register for variable blend instructions.
14031
14032 2007-06-04 Tom Tromey <tromey@redhat.com>
14033
14034 * c-tree.h (start_enum): Update.
14035 (build_enumerator): Likewise.
14036 * c-decl.c (enum_next_value): Removed.
14037 (enum_overflow): Likewise.
14038 (start_enum): Add c_enum_contents argument. Don't use globals.
14039 (build_enumerator): Likewise.
14040 * c-tree.h (struct c_enum_contents): New struct.
14041
14042 2007-06-04 Tom Tromey <tromey@redhat.com>
14043
14044 * c-common.c (c_common_get_alias_set): Fix indentation.
14045
14046 2007-06-04 Ian Lance Taylor <iant@google.com>
14047
14048 * tree-vrp.c (adjust_range_with_scev): When loop is not expected
14049 to overflow, reduce overflow infinity to regular infinity.
14050 (vrp_var_may_overflow): New static function.
14051 (vrp_visit_phi_node): Check vrp_var_may_overflow.
14052
14053 2007-06-04 Kazu Hirata <kazu@codesourcery.com>
14054
14055 * stor-layout.c (layout_type): Remove duplicate code.
14056
14057 2007-06-04 Uros Bizjak <ubizjak@gmail.com>
14058
14059 PR c/32191
14060 * c-common.c (c_define_builtins): Call targetm.init_builtins ()
14061 before build_common_builtin_nodes ().
14062
14063 2007-06-04 Steve Ellcey <sje@cup.hp.com>
14064
14065 PR target/31733
14066 * cfgrtl.c (rtl_verify_flow_info): Skip notes when looking for barrier.
14067
14068 2007-06-04 Jan Hubicka <jh@suse.cz>
14069
14070 * tree-predcom.c (replace_ref_with, initialize_root_vars_lm,
14071 reassociate_to_the_same_stmt): Call build_gimple_modify_stmt
14072 instead of _stat version.
14073
14074 2007-06-03 Zdenek Dvorak <dvorakz@suse.cz>
14075
14076 PR tree-optimization/32194
14077 * tree-predcom.c (determine_offset): Check that both references have
14078 the same type.
14079
14080 2007-06-03 Zdenek Dvorak <dvorakz@suse.cz>
14081
14082 * cfgloopmanip.c (remove_path, loopify, duplicate_loop_to_header_edge):
14083 Change dom_bbs to vector. Add argument to iterate_fix_dominators call.
14084 * loop-unroll.c (unroll_loop_runtime_iterations): Ditto.
14085 * tree-cfg.c (tree_duplicate_sese_region): Change doms to vector.
14086 Add argument to iterate_fix_dominators call.
14087 (remove_edge_and_dominated_blocks): Pass vector to bbs_to_fix_dom.
14088 * gcse.c (hoist_code): Change domby to vector.
14089 * cfghooks.c (make_forwarder_block): Change doms_to_fix to vector.
14090 Add argument to iterate_fix_dominators call.
14091 * loop-doloop.c (doloop_modify): Changed recount_dominator to
14092 recompute_dominator.
14093 * lambda-code.c (perfect_nestify): Ditto.
14094 * cfgloopanal.c: Include graphds.h.
14095 (struct edge, struct vertex, struct graph, dump_graph, new_graph,
14096 add_edge, dfs, for_each_edge, free_graph): Moved to graphds.c.
14097 (mark_irreducible_loops): Use graphds_scc. Remove argument from
14098 add_edge call.
14099 * graphds.c: New file.
14100 * graphds.h: New file.
14101 * dominance.c: Include vecprim.h, pointer-set.h and graphds.h.
14102 (get_dominated_by, get_dominated_by_region): Change return type to
14103 vector.
14104 (verify_dominators): Recompute all dominators and compare the results.
14105 (recount_dominator): Renamed to ...
14106 (recompute_dominator): ... this. Do not check that the block is
14107 dominated by entry.
14108 (iterate_fix_dominators): Reimplemented.
14109 (prune_bbs_to_update_dominators, root_of_dom_tree,
14110 determine_dominators_for_sons): New functions.
14111 * et-forest.c (et_root): New function.
14112 * et-forest.h (et_root): Declare.
14113 * Makefile.in (graphds.o): Add.
14114 (cfgloopanal.o): Add graphds.h dependency.
14115 (dominance.o): Add graphds.h, vecprim.h and pointer-set.h dependency.
14116 * basic-block.h (get_dominated_by, get_dominated_by_region,
14117 iterate_fix_dominators): Declaration changed.
14118 (recount_dominator): Renamed to ...
14119 (recompute_dominator): ... this.
14120 * tree-ssa-threadupdate.c (thread_block): Free dominance info.
14121 (thread_through_all_blocks): Do not free dominance info.
14122
14123 2007-06-03 Andreas Schwab <schwab@suse.de>
14124
14125 * config/m68k/m68k.c (override_options): Don't override
14126 REAL_MODE_FORMAT.
14127 * config/m68k/m68k-modes.def (SF, DF): Define to use
14128 motorola_single_format and motorola_double_format, resp.
14129 * real.c (motorola_single_format): Renamed from
14130 coldfire_single_format.
14131 (motorola_double_format): Renamed from coldfire_double_format.
14132 (encode_ieee_extended): Generate a proper canonical NaN image
14133 respecting canonical_nan_lsbs_set.
14134 (ieee_extended_motorola_format): Set canonical_nan_lsbs_set to
14135 true.
14136 * real.h: Adjust declarations.
14137
14138 2007-06-03 Kaz Kojima <kkojima@gcc.gnu.org>
14139
14140 PR target/32163
14141 * config/sh/sh.md (symGOT_load): Don't schedule insns when
14142 the symbol is generated with the stack protector.
14143
14144 2007-06-03 Kazu Hirata <kazu@codesourcery.com>
14145
14146 * config/m68k/m68k.c (m68k_attribute_table): Add "interrupt".
14147 (m68k_get_function_kind): Return m68k_fk_interrupt_handler on
14148 "interrupt".
14149 * doc/extend.texi (interrupt): Mention m68k.
14150
14151 2007-06-02 Uros Bizjak <ubizjak@gmail.com>
14152
14153 * config/i386/i386.c (ix86_expand_sse_4_operands_builtin): Call
14154 safe_vector_operand() if input operand is VECTOR_MODE_P operand.
14155 (ix86_expand_sse_pcmpestr): Do not check operands for
14156 "register_operand", when insn operand predicate is "register_operand".
14157 (ix86_expand_sse_pcmpistr): Ditto.
14158
14159 2007-06-02 H.J. Lu <hongjiu.lu@intel.com>
14160 Uros Bizjak <ubizjak@gmail.com>
14161
14162 * config/i386/i386.h (enum reg_class) [SSE_FIRST_REG]: New.
14163 (SSE_CLASS_P): Use reg_class_subset_p between SSE_REGS.
14164 (REG_CLASS_NAMES): Add "FIRST_SSE_REG" string.
14165 (REG_CLASS_CONTENTS): Add members of FIRST_SSE_REG class.
14166 * config/i386/constraints.md ("z"): New register constraint
14167 for members of SSE_FIRST_REG class.
14168 * config/i386/i386-modes.def (CCA, CCC, CCO, CCS): New compare modes.
14169 * config/i386/i386.c (regclass_map): Change class of %xmm0 to
14170 SSE_FIRST_REG class.
14171 (put_condition_code) [EQ, NE]: Output suffixes for new compare modes.
14172 (ix86_cc_modes_compatible): Handle CCA, CCC, CCO and CCS modes.
14173 (IX86_BUILTIN_PCMPESTRI128): New for SSE4.2.
14174 (IX86_BUILTIN_PCMPESTRM128): Likewise.
14175 (IX86_BUILTIN_PCMPESTRA128): Likewise.
14176 (IX86_BUILTIN_PCMPESTRC128): Likewise.
14177 (IX86_BUILTIN_PCMPESTRO128): Likewise.
14178 (IX86_BUILTIN_PCMPESTRS128): Likewise.
14179 (IX86_BUILTIN_PCMPESTRZ128): Likewise.
14180 (IX86_BUILTIN_PCMPISTRI128): Likewise.
14181 (IX86_BUILTIN_PCMPISTRM128): Likewise.
14182 (IX86_BUILTIN_PCMPISTRA128): Likewise.
14183 (IX86_BUILTIN_PCMPISTRC128): Likewise.
14184 (IX86_BUILTIN_PCMPISTRO128): Likewise.
14185 (IX86_BUILTIN_PCMPISTRS128): Likewise.
14186 (IX86_BUILTIN_PCMPISTRZ128): Likewise.
14187 (struct builtin_description): Change "flag" field to unsigned.
14188 (bdesc_pcmpestr): New builtin description table.
14189 (bdesc_pcmpistr): Likewise.
14190 (ix86_init_mmx_sse_builtins): Define int_ftype_v16qi_int_v16qi_int_int,
14191 v16qi_ftype_v16qi_int_v16qi_int_int and int_ftype_v16qi_v16qi_int.
14192 Initialize pcmp[ei]str[im] insns for SSE4.2.
14193 (ix86_expand_sse_pcmpestr): New subroutine of ix86_expand_builtin.
14194 (ix86_expand_sse_pcmpistr): Likewise.
14195 (ix86_expand_builtin): Expand pcmp[ei]str[im] builtins for SSE4.2.
14196 * config/i386/i386.md (UNSPEC_PCMPESTR): New for SSE4.2.
14197 (UNSPEC_PCMPISTR): Likewise.
14198 * config/i386/sse.md (sse4_2_pcmpestr): New insn patern and splitter.
14199 (sse4_2_pcmpestri):New isns pattern.
14200 (sse4_2_pcmpestrm): Likewise.
14201 (sse4_2_pcmpestr_cconly): Likewise.
14202 (sse4_2_pcmpistr): New insn patern and splitter.
14203 (sse4_2_pcmpistri):New isns pattern.
14204 (sse4_2_pcmpistrm): Likewise.
14205 (sse4_2_pcmpistr_cconly): Likewise.
14206 * config/i386/smmintrin.h: Enable pcmp[ei]str[im] intrinsics
14207 in SSE4.2.
14208
14209 2007-06-01 David Daney <ddaney@avtrex.com>
14210
14211 * config/mips/mips.c (mips_output_mi_thunk): Only load gp if not
14212 LOADGP_ABSOLUTE and not binds_local_p.
14213
14214 2007-06-01 Geoffrey Keating <geoffk@apple.com>
14215
14216 * config/darwin.h (LINK_SPEC): Pass -fpie through to the linker.
14217
14218 2007-06-01 Ian Lance Taylor <iant@google.com>
14219
14220 * tree-vrp.c (compare_name_with_value): Always set
14221 used_strict_overflow if we get a result from the variable itself.
14222
14223 2007-06-01 Ian Lance Taylor <iant@google.com>
14224
14225 PR rtl-optimization/31455
14226 * lower-subreg.c (find_decomposable_subregs): Don't decompose
14227 subregs which have a cast between modes which are not tieable.
14228
14229 2007-06-01 Uros Bizjak <ubizjak@gmail.com>
14230
14231 * expr.c (force_operand) [DIV, MOD, UDIV, UMOD, ASHIFTRT]: Remove
14232 breaks after return statements.
14233
14234 2007-06-01 Kaz Kojima <kkojima@gcc.gnu.org>
14235
14236 * config/sh/sh.c (fpscr_set_from_mem): Call get_free_reg
14237 only after no_new_pseudos.
14238
14239 2007-05-31 Eric Christopher <echristo@apple.com>
14240
14241 * expr.c (convert_move): Assert that we don't have a BLKmode
14242 operand.
14243 (store_expr): Handle BLKmode moves by calling emit_block_move.
14244
14245 2007-05-31 Daniel Berlin <dberlin@dberlin.org>
14246
14247 * c-typeck.c (build_indirect_ref): Include type in error message.
14248 (build_binary_op): Pass types to binary_op_error.
14249 * c-common.c (binary_op_error): Take two type arguments, print out
14250 types with error.
14251 * c-common.h (binary_op_error): Update prototype.
14252
14253 2007-05-31 H.J. Lu <hongjiu.lu@intel.com>
14254
14255 * config/i386/i386.c: Correct coments on -mno-sse4.
14256
14257 2007-05-31 H.J. Lu <hongjiu.lu@intel.com>
14258
14259 * config.gcc (i[34567]86-*-*): Add nmmintrin.h to extra_headers.
14260 (x86_64-*-*): Likewise.
14261 * config/i386/i386.c (OPTION_MASK_ISA_MMX_UNSET): New.
14262 (OPTION_MASK_ISA_3DNOW_UNSET): Likewise.
14263 (OPTION_MASK_ISA_SSE_UNSET): Likewise.
14264 (OPTION_MASK_ISA_SSE2_UNSET): Likewise.
14265 (OPTION_MASK_ISA_SSE3_UNSET): Likewise.
14266 (OPTION_MASK_ISA_SSSE3_UNSET): Likewise.
14267 (OPTION_MASK_ISA_SSE4_1_UNSET): Likewise.
14268 (OPTION_MASK_ISA_SSE4_2_UNSET): Likewise.
14269 (OPTION_MASK_ISA_SSE4): Likewise.
14270 (OPTION_MASK_ISA_SSE4_UNSET): Likewise.
14271 (OPTION_MASK_ISA_SSE4A_UNSET): Likewise.
14272 (ix86_handle_option): Use OPTION_MASK_ISA_*_UNSET. Handle SSE4.2.
14273 (override_options): Support SSE4.2.
14274 (ix86_build_const_vector): Support SImode and DImode.
14275 (ix86_build_signbit_mask): Likewise.
14276 (ix86_expand_int_vcond): Support V2DImode.
14277 (IX86_BUILTIN_CRC32QI): New for SSE4.2.
14278 (IX86_BUILTIN_CRC32HI): Likewise.
14279 (IX86_BUILTIN_CRC32SI): Likewise.
14280 (IX86_BUILTIN_CRC32DI): Likewise.
14281 (IX86_BUILTIN_PCMPGTQ): Likewise.
14282 (bdesc_crc32): Likewise.
14283 (bdesc_sse_3arg): Likewise.
14284 (ix86_expand_crc32): Likewise.
14285 (ix86_init_mmx_sse_builtins): Support SSE4.2.
14286 (ix86_expand_builtin): Likewise.
14287 * config/i386/i386.h (TARGET_CPU_CPP_BUILTINS): Define
14288 __SSE4_2__ for -msse4.2.
14289 * config/i386/i386.md (UNSPEC_CRC32): New for SSE4.2.
14290 (CRC32MODE): Likewise.
14291 (crc32modesuffix): Likewise.
14292 (crc32modeconstraint): Likewise.
14293 (sse4_2_crc32<mode>): Likewise.
14294 (sse4_2_crc32di): Likewise.
14295 * config/i386/i386.opt (msse4.2): New for SSE4.2.
14296 (msse4): Likewise.
14297 * config/i386/nmmintrin.h: New. The dummy SSE4.2 intrinsic header file.
14298 * config/i386/smmintrin.h: Add SSE4.2 intrinsics.
14299 * config/i386/sse.md (sse4_2_gtv2di3): New pattern for SSE4.2.
14300 (vcond<mode>): Use SSEMODEI instead of SSEMODE124.
14301 (vcondu<mode>): Likewise.
14302 * doc/extend.texi: Document SSE4.2 built-in functions.
14303 * doc/invoke.texi: Document -msse4.2/-msse4.
14304
14305 2007-05-31 Zdenek Dvorak <dvorakz@suse.cz>
14306
14307 PR tree-optimization/32160
14308 * tree-predcom.c (predcom_tmp_var): New function. Mark created
14309 variable as gimple reg.
14310 (initialize_root_vars, initialize_root_vars_lm): Use predcom_tmp_var.
14311
14312 2007-05-31 Kazu Hirata <kazu@codesourcery.com>
14313
14314 * gcc.c (main): Don't consider linker options when issuing the
14315 warning about a linker input file not being used.
14316
14317 2007-05-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14318
14319 * tree-vrp.c (compare_names): Initialize sop.
14320
14321 2007-05-30 Dirk Mueller <dmueller@suse.de>
14322
14323 * cgraphunit.c (cgraph_analyze_function): Remove
14324 computation of inline parameters.
14325
14326 2007-05-30 Uros Bizjak <ubizjak@gmail.com>
14327
14328 * config/i386/darwin.h (TARGET_SUBTARGET_DEFAULT): Undef before define.
14329
14330 2007-05-30 Richard Sandiford <richard@codesourcery.com>
14331
14332 * config.gcc (arm-wrs-vxworks): Remove dbxelf.h from tm_file.
14333 Add vx-common.h. Include vxworks.h between vx-common.h and
14334 arm/vxworks.h.
14335 * config/vx-common.h (DWARF2_UNWIND_INFO): Undefine before
14336 redefining.
14337 * config/vxworks.h (TARGET_ASM_CONSTRUCTOR): Likewise.
14338 (TARGET_ASM_DESTRUCTOR): Likewise.
14339 * config/arm/vxworks.h (TARGET_OS_CPP_BUILTINS): Check arm_arch_xscale
14340 instead of arm_is_xscale. Use VXWORKS_OS_CPP_BUILTINS.
14341 (OVERRIDE_OPTIONS, SUBTARGET_CPP_SPEC): Define.
14342 (CC1_SPEC): Add -tstrongarm. Line up backslashes.
14343 (VXWORKS_ENDIAN_SPEC): Define.
14344 (ASM_SPEC): Add VXWORKS_ENDIAN_SPEC.
14345 (LIB_SPEC, STARTFILE_SPEC, ENDFILE_SPEC): Redefine to their
14346 VXWORKS_* equivalents.
14347 (LINK_SPEC): Likewise, but add VXWORKS_ENDIAN_SPEC.
14348 (ASM_FILE_START): Delete.
14349 (TARGET_VERSION): Reformat.
14350 (FPUTYPE_DEFAULT, FUNCTION_PROFILER): Define.
14351 (DEFAULT_STRUCTURE_SIZE_BOUNDARY): Define.
14352 * config/arm/t-vxworks (LIB1ASMSRC, LIB1ASMFUNCS): Define.
14353 (FPBIT, DPBIT): Define.
14354 (fp-bit.c, dp-bit.c): New rules.
14355 (MULTILIB_OPTIONS): Add strongarm, -mrtp and -mrtp/-fPIC multilibs.
14356 (MULTILIB_MATCHES, MULTILIB_EXCEPTIONS): Define.
14357 * config/arm/arm-protos.h (arm_emit_call_insn): Declare.
14358 * config/arm/arm.h: Include vxworks-dummy.h.
14359 * config/arm/arm.c (arm_elf_asm_constructor, arm_elf_asm_destructor):
14360 Mark with ATTRIBUTE_UNUSED.
14361 (arm_override_options): Do not allow VxWorks RTP PIC to be used
14362 for Thumb. Force r9 to be the PIC register for VxWorks RTPs and
14363 make it incompatible with -msingle-pic-base.
14364 (arm_function_ok_for_sibcall): Return false for calls that might
14365 go through a VxWorks PIC PLT entry.
14366 (require_pic_register): New function, split out from...
14367 (legitimize_pic_address): ...here. Do not use GOTOFF accesses
14368 for VxWorks RTPs.
14369 (arm_load_pic_register): Handle the VxWorks RTP initialization
14370 sequence. Use pic_reg as a shorthand for cfun->machine->pic_reg.
14371 (arm_emit_call_insn): New function.
14372 (arm_assemble_integer): Do not use GOTOFF accesses for VxWorks RTP.
14373 * config/arm/arm.md (UNSPEC_PIC_OFFSET): New unspec number.
14374 (pic_offset_arm): New pattern.
14375 (call, call_value): Use arm_emit_call_insn.
14376 (call_internal, call_value_internal): New expanders.
14377 * config/arm/lib1funcs.asm (__PLT__): Define to empty for
14378 VxWorks unless __PIC__.
14379
14380 2007-05-30 Eric Christopher <echristo@gmail.com>
14381
14382 * genrecog.c: Include regs.h in generated file.
14383 * genemit.c: Ditto. Fix up formatting.
14384 * config/mn10300/constraints.md: New.
14385 * config/mn10300/mn10300.md: Include.
14386 * config/mn10300/mn10300.c(mn10300_secondary_reload_class):
14387 Fix up for removed macro.
14388 * config/mn10300/predicates.md (call_address_operand): Ditto.
14389 * config/mn10300/mn10300.h (REG_CLASS_FROM_LETTER): Delete.
14390 (CONST_OK_FOR_I): Ditto.
14391 (CONST_OK_FOR_J): Ditto.
14392 (CONST_OK_FOR_K): Ditto.
14393 (CONST_OK_FOR_L): Ditto.
14394 (CONST_OK_FOR_M): Ditto.
14395 (CONST_OK_FOR_N): Ditto.
14396 (CONST_DOUBLE_OK_FOR_LETTER_P): Ditto.
14397 (OK_FOR_Q): Ditto.
14398 (OK_FOR_R): Ditto.
14399 (OK_FOR_T): Ditto.
14400 (EXTRA_CONSTRAINT): Ditto.
14401
14402 2007-05-30 Uros Bizjak <ubizjak@gmail.com>
14403
14404 * config/i386/i386.h (MASK_64BIT, MASK_MMX, MASK_3DNOW*, MASK_SSE*):
14405 Remove defines.
14406 * config/i386/biarch.h (TARGET_64BIT_DEFAULT): Define to
14407 OPTION_MASK_ISA_64BIT.
14408 * config/i386/i386.c: Rename MASK_* macros to OPTION_MASK_ISA_*.
14409
14410 2007-05-30 Richard Guenther <rguenther@suse.de>
14411
14412 PR middle-end/32152
14413 * gimplify.c (gimplify_omp_atomic_pipeline): Use correct
14414 types for comparison.
14415 * fold-const.c (fold_comparison): Call maybe_canonicalize_comparison
14416 with original typed arguments.
14417 * config/i386/i386.c (ix86_gimplify_va_arg): Fix type mismatches.
14418
14419 2007-05-30 Jakub Jelinek <jakub@redhat.com>
14420
14421 PR tree-optimization/31769
14422 * except.c (duplicate_eh_regions): Clear prev_try if
14423 ERT_MUST_NOT_THROW region is inside of ERT_TRY region.
14424
14425 2007-05-30 Zdenek Dvorak <dvorakz@suse.cz>
14426
14427 * tree-scalar-evolution.c (scev_const_prop): Do not create labels.
14428 * tree-ssa-sink.c (statement_sink_location): Return basic block and
14429 bsi of the location where statements should be inserted.
14430 (sink_code_in_bb): Take bsi from statement_sink_location.
14431 * lambda-code.c (lambda_loopnest_to_gcc_loopnest): Use bsi_after_labels
14432 instead of bsi_start.
14433 * tree-profile.c (tree_gen_ic_func_profiler): Pass BSI_NEW_STMT to
14434 bsi_insert_after.
14435 * tree-cfg.c (bsi_move_after): Pass BSI_NEW_STMT to bsi_insert_after.
14436 (bsi_move_before): Document inconsistency with bsi_move_after.
14437 (tree_redirect_edge_and_branch): Do not create labels if not necessary.
14438
14439 2007-05-30 Uros Bizjak <ubizjak@gmail.com>
14440
14441 * config/i386/i386.h (TARGET_ABM): New define.
14442 (TARGET_POPCNT): Ditto.
14443 (TARGET_64BIT, TARGET_MMX, TARGET_3DNOW, TARGET_3DNOW_A, TARGET_SSE*):
14444 New temporary defines to redefine from OPTION_ISA_* defines.
14445 (MASK_64BIT, MASK_MMX, MASK_3DNOW, MASK_3DNOW_A, MASK_SSE*):
14446 New temporary defines to redefine from OPTION_MASK_ISA_* defines.
14447 (ix86_isa_flags): New extern int declaration.
14448 (TARGET_SUBTARGET_DEFAULT): New define.
14449 (TARGET_SUBTARGET_ISA_DEFAULT): Ditto.
14450 (TARGET_SUBTARGET32_DEFAULT): Ditto.
14451 (TARGET_SUBTARGET32_ISA_DEFAULT): Ditto.
14452 (TARGET_SUBTARGET64_ISA_DEFAULT): Ditto.
14453 * config/i386/unix.h: Undef TARGET_SUBTARGET_DEFAULT before define.
14454 * config/i386/darwin.h: Change TARGET_64BIT define to
14455 OPTION_ISA_64BIT.
14456
14457 * config/i386/i386.opt (m3dnowa): Define as undocumented option
14458 using existing "ix86_isa_flags" varible.
14459 (m32, m64): Use existing "ix86_isa_flags" variable.
14460 (mmmx, m3dnow): Ditto.
14461 (msse, msse2, msse3, mssse3, msse4.1, msse4a): Ditto.
14462 (mabm): Define as non-negative option using "x86_abm" variable.
14463 (mpopcnt): Define as non-negative option using "x86_popcnt" variable.
14464
14465 * config/i386/i386.c (ix86_arch_features) [X86_ARCH_CMOVE]:
14466 Rewrite feature test bitmap.
14467 (ix86_isa_flags): New initialized global int varible.
14468 (ix86_isa_flags_explicit): New static int variable.
14469 (ix86_handle_option): Set "ix86_isa_flags_explicit" when mmmx, m3dnow,
14470 msse, msse2, msse3, msse4.1 and msse4a option is processed. Change
14471 i86_isa_flags and ix86_isa_flags_explicit, not target_flags and
14472 target_flags_explicit.
14473 (override_options): Remove "target_enable" and "target_disable" fields
14474 from "struct ptt". Update processor_target_table accordingly. Remove
14475 PTA_PREFETCH_SSE from processor_alias_table entry if PTE_SSE is
14476 defined and rearrange PTA_* bits. Use "ix86_isa_flags" instead of
14477 "target_flags" and "ix86_isa_flags_explicit" instead of
14478 "target_flags_explicit" when masked with MASK_64BIT, MASK_MMX,
14479 MASK_3DNOW, MASK_3DNOW_A or MASK_SSE*. Set "x86_abm" to true when
14480 PTA_ABM is set in processor_alias_table flags entry. Set "x86_popcnt"
14481 to true when either of PTA_POPCNT or PTA_ABM is set in
14482 processor_alias_table flags entry. Set "x86_prefetch_sse" to true
14483 when either of PTA_PREFETCH_SSE or PTA_SSE is set in
14484 processor_alias_table flags entry. Remove handling of
14485 "target_enable" and "target_disable" fields of processor_target_table.
14486 Mask "target_flags" with TARGET_SUBTARGET32_DEFAULT for 32-bit
14487 targets or with TARGET_SUBTARGET64_DEFAULT for 64-bit targets.
14488 Mask "ix86_isa_flags" with TARGET_SUBTARGET32_ISA_DEFAULT for 32-bit
14489 targets or with TARGET_SUBTARGET64_ISA_DEFAULT for 64-bit targets.
14490 (def_builtin): Mask "mask" variable with "ix86_isa_flags", not
14491 "target_flags".
14492 (TARGET_DEFAULT_TARGET_FLAGS): Do not include TARGET_64BIT_DEFAULT.
14493
14494 2007-05-29 David Daney <ddaney@avtrex.com>
14495
14496 PR gcc/31975
14497 * config/mips/mips.c (mips_output_mi_thunk): Emit
14498 NOTE_INSN_PROLOGUE_END at beginning of the thunk.
14499
14500 2007-05-29 Hui-May Chang <hm.chang@apple.com>
14501 * config/i386/i386.c (ix86_function_regparm): Added checking of
14502 ix86_force_align_arg_pointer to determine the number of
14503 register parameters.
14504
14505 2007-05-29 Zdenek Dvorak <dvorakz@suse.cz>
14506
14507 * tree-vectorizer.h (DR_MISALIGNMENT): Cast aux to integer.
14508 (SET_DR_MISALIGNMENT): New.
14509 * tree-vect-analyze.c (vect_compute_data_ref_alignment,
14510 vect_update_misalignment_for_peel, vect_enhance_data_refs_alignment):
14511 Use SET_DR_MISALIGNMENT.
14512 * tree-predcom.c (split_data_refs_to_components): Cast dr->aux from
14513 pointer.
14514 * tree-data-ref.c (create_data_ref, compute_all_dependences,
14515 find_loop_nest): Export.
14516 * tree-data-ref.h (struct data_reference): Change aux field to pointer.
14517 (create_data_ref, compute_all_dependences, find_loop_nest): Declare.
14518 * tree-ssa-loop-prefetch.c: Include tree-data-ref.h.
14519 (L1_CACHE_SIZE_BYTES, L2_CACHE_SIZE_BYTES, NONTEMPORAL_FRACTION):
14520 New macros.
14521 (struct mem_ref): Add field reuse_distance.
14522 (find_or_create_group, record_ref): Use XNEW instead of xcalloc.
14523 Initialize reuse_distance field.
14524 (issue_prefetch_ref): Select temporality of prefetch according to
14525 reuse_distance.
14526 (volume_of_references, volume_of_dist_vector, add_subscript_strides,
14527 self_reuse_distance, determine_loop_nest_reuse): New functions.
14528 (loop_prefetch_arrays): Call determine_loop_nest_reuse.
14529 (tree_ssa_prefetch_arrays): Dump L2 cache size.
14530 * Makefile.in (tree-ssa-loop-prefetch.o): Add TREE_DATA_REF_H
14531 dependency.
14532
14533 2007-05-29 Daniel Berlin <dberlin@dberlin.org>
14534
14535 * tree-ssa-alias.c: Add aliasing overview.
14536
14537 2007-05-29 Zuxy Meng <zuxy.meng@gmail.com>
14538 Danny Smith <dannysmith@users.sourceforge.net>
14539
14540 PR target/29498
14541 * config/i386/t-crtfm: Compile crtfastmath.o with
14542 -minline-all-stringops.
14543 * config/i386/cygwin.h (ENDFILE_SPECS): Add crtfastmath.o.
14544 * config/i386/mingw32.h (ENDFILE_SPECS): Add crtfastmath.o.
14545
14546 2007-05-28 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
14547
14548 * doc/md.texi: Document constraints on HP PA-RISC.
14549
14550 * pa/constraints.md: New file.
14551 * pa.md: Include constraints.md.
14552 * pa.c (cint_ok_for_move): Avoid using CONST_OK_FOR_LETTER_P.
14553 (integer_store_memory_operand, ldil_cint_p): New functions.
14554 * pa-protos.h (integer_store_memory_operand, ldil_cint_p): Declare.
14555 * pa.h (CONST_OK_FOR_LETTER_P, CONST_DOUBLE_OK_FOR_LETTER_P,
14556 IS_RELOADING_PSEUDO_P, EXTRA_CONSTRAINT): Remove.
14557 * pa32-regs.h (REG_CLASS_FROM_LETTER): Remove.
14558 * pa64-regs.h (REG_CLASS_FROM_LETTER): Remove.
14559
14560 2007-05-28 Andrew Pinski <Andrew_pinski@playstation.sony.com>
14561
14562 PR c/31339
14563 * c-typeck.c (build_unary_op <case PREINCREMENT_EXPR,
14564 case POSTINCREMENT_EXPR, case PREDECREMENT_EXPR,
14565 case POSTDECREMENT_EXPR>): Return the error_mark_node
14566 if either the real or imaginary parts would an
14567 error_mark_node.
14568
14569 2007-05-28 Daniel Berlin <dberlin@dberlin.org>
14570
14571 * tree-ssa-dce.c (eliminate_unnecessary_stmts): Release LHS SSA
14572 name when we remove it from a call.
14573
14574 2007-05-28 Kazu Hirata <kazu@codesourcery.com>
14575
14576 * targhooks.c (default_narrow_bitfield): Remove.
14577 * targhooks.h: Remove the prototype for
14578 default_narrow_bitfield.
14579
14580 * langhooks-def.h: Remove the prototype for
14581 hook_get_alias_set_0.
14582 * langhooks.c (hook_get_alias_set_0): Remove.
14583
14584 * global.c (EXECUTE_IF_CONFLICT): Remove.
14585
14586 2007-05-28 Andrew Pinski <andrew_pinski@playstation.sony.com>
14587
14588 PR tree-opt/32100
14589 * fold-const.c (tree_expr_nonnegative_warnv_p): Don't
14590 return true when truth_value_p is true and the type
14591 is of signed:1.
14592
14593 2007-05-28 Gerald Pfeifer <gerald@pfeifer.com>
14594
14595 * doc/install.texi (Prerequisites): We no longer require Autoconf
14596 2.13 for the top-level.
14597
14598 2007-05-28 Uros Bizjak <ubizjak@gmail.com>
14599
14600 * target/i386/i386.c (ix86_expand_vector_move): Expand unaligned
14601 memory access via x86_expand_vector_move_misalign() only for
14602 TImode values on 32-bit targets.
14603
14604 2007-05-28 Razya Ladelsky <razya@il.ibm.com>
14605
14606 * matrix-reorg.c: New file. Implement matrix flattening and
14607 transposing optimization.
14608 * tree-pass.h: Add matrix reorg pass.
14609 * common.opt: Add fipa-mreorg flag.
14610 * Makefile.in: Add matrix-reorg.c.
14611 * passes.c: Add matrix reorg pass.
14612 * varpool.c (add_new_static_var): New function.
14613 * cgraph.h (add_new_static_var): Declare.
14614
14615 2007-05-27 Eric Christopher <echristo@apple.com>
14616
14617 * config/rs6000/rs6000.c (rs6000_emit_prologue): Update
14618 sp_offset depending on stack size. Save r12 depending
14619 on registers we're saving later.
14620 (rs6000_emit_epilogue): Update sp_offset depending only
14621 on stack size.
14622
14623 2007-05-27 Zdenek Dvorak <dvorakz@suse.cz>
14624
14625 * tree-vrp.c (execute_vrp): Do not check whether current_loops == NULL.
14626 * tree-chrec.c (evolution_function_is_invariant_rec_p): Ditto.
14627 * ifcvt.c (if_convert): Ditto.
14628 * tree-ssa-threadupdate.c (thread_block): Ditto.
14629 (thread_through_all_blocks): Ditto. Assert that loops were analysed.
14630 * tree-ssa-loop-manip.c (rewrite_into_loop_closed_ssa,
14631 verify_loop_closed_ssa): Check number_of_loops instead of
14632 current_loops.
14633 * predict.c (tree_estimate_probability): Ditto.
14634 * tree-if-conv.c (main_tree_if_conversion): Ditto.
14635 * tree-ssa-loop-ch.c (copy_loop_headers): Ditto.
14636 * modulo-sched.c (sms_schedule): Ditto.
14637 * tree-scalar-evolution.c (scev_const_prop): Ditto.
14638 (scev_finalize): Do not do anything if scev analysis was not
14639 initialized.
14640 * cfgloopanal.c (mark_irreducible_loops): Do not check whether
14641 current_loops == NULL.
14642 (mark_loop_exit_edges): Check number_of_loops instead of current_loops.
14643 * loop-init.c (loop_optimizer_init): Do not free current_loops when
14644 there are no loops.
14645 (loop_optimizer_finalize): Assert that loops were analyzed.
14646 (rtl_move_loop_invariants, rtl_unswitch, rtl_unroll_and_peel_loops,
14647 rtl_doloop): Check number_of_loops instead of current_loops.
14648 * tree-ssa-loop.c (tree_loop_optimizer_init): Do not check whether
14649 current_loops == NULL.
14650 (tree_ssa_loop_init, tree_ssa_loop_im, tree_ssa_loop_unswitch,
14651 gate_tree_vectorize tree_linear_transform, check_data_deps,
14652 tree_ssa_loop_ivcanon, tree_ssa_empty_loop, tree_ssa_loop_bounds,
14653 tree_complete_unroll, tree_ssa_loop_prefetch, tree_ssa_loop_ivopts):
14654 Check number_of_loops instead of current_loops.
14655 (tree_ssa_loop_done): Do not check whether current_loops == NULL.
14656 * tree-ssa-pre.c (fini_pre): Do not take do_fre argument. Always
14657 free loops if available.
14658 (execute_pre): Do not pass do_fre to fini_pre.
14659
14660 2007-05-27 Tobias Burnus <burnus@net-b.de>
14661
14662 PR middle-end/32083
14663 * real.c (mpfr_from_real): Fix sign of -Inf.
14664
14665 2007-05-27 H.J. Lu <hongjiu.lu@intel.com>
14666
14667 * tree-vect-transform.c (vectorizable_conversion): Initialize
14668 tree_code variables to ERROR_MARK.
14669 (vectorizable_type_demotion): Likewise.
14670 (vectorizable_type_promotion): Likewise.
14671
14672 2007-05-26 Uros Bizjak <ubizjak@gmail.com>
14673
14674 PR target/32065
14675 * config/i386/i386.md (movti): Handle push operands via
14676 ix86_expand_push().
14677
14678 2007-05-26 Kazu Hirata <kazu@codesourcery.com>
14679
14680 * basic-block.h: Remove the prototype for merge_seq_blocks.
14681 * cfgcleanup.c (merge_seq_blocks): Remove.
14682
14683 * tree-flow.h: Remove the prototype for is_aliased_with.
14684 * tree-ssa-alias.c (is_aliased_with): Remove.
14685
14686 2007-05-26 H.J. Lu <hongjiu.lu@intel.com>
14687
14688 * config/i386/i386-protos.h (ix86_expand_sse4_unpack): New.
14689
14690 * config/i386/i386.c (ix86_expand_sse4_unpack): New.
14691
14692 * config/i386/sse.md (vec_unpacku_hi_v16qi): Call
14693 ix86_expand_sse4_unpack if SSE4.1 is enabled.
14694 (vec_unpacks_hi_v16qi): Likewise.
14695 (vec_unpacku_lo_v16qi): Likewise.
14696 (vec_unpacks_lo_v16qi): Likewise.
14697 (vec_unpacku_hi_v8hi): Likewise.
14698 (vec_unpacks_hi_v8hi): Likewise.
14699 (vec_unpacku_lo_v8hi): Likewise.
14700 (vec_unpacks_lo_v8hi): Likewise.
14701 (vec_unpacku_hi_v4si): Likewise.
14702 (vec_unpacks_hi_v4si): Likewise.
14703 (vec_unpacku_lo_v4si): Likewise.
14704 (vec_unpacks_lo_v4si): Likewise.
14705
14706 2007-05-26 Kazu Hirata <kazu@codesourcery.com>
14707
14708 * c-typeck.c, config/arm/arm.c, config/darwin.c,
14709 config/sh/symbian.c, gcc.c, ipa-cp.c, ipa-inline.c, loop-iv.c,
14710 omega.c, tree-ssa-loop-niter.c, treestruct.def: Fix typos and
14711 follow spelling conventions in various
14712 warning/error/diagnostic messages.
14713
14714 * config/i386/i386.c, config/pa/pa.c, config/spu/spu.c,
14715 df-problems.c, df-scan.c, domwalk.c, ebitmap.c, ebitmap.h,
14716 fold-const.c, gcc.c, ipa-type-escape.c, omega.c, omega.h,
14717 tree-ssa-coalesce.c, tree-ssa-live.c, tree-ssa-structalias.c,
14718 tree-vrp.c: Fix comment typos. Follow spelling conventions.
14719 * doc/tm.texi: Follow spelling conventions.
14720
14721 2007-05-25 Andrew Pinski <andrew_pinski@playstation.sony.com>
14722
14723 PR tree-opt/32090
14724 * tree-ssa-forwprop.c
14725 (forward_propagate_addr_into_variable_array_index): Remove
14726 the lhs argument. Use the type of def_rhs instead of lhs.
14727 (forward_propagate_addr_expr_1): Update use of
14728 forward_propagate_addr_into_variable_array_index.
14729
14730 2007-05-25 Sandra Loosemore <sandra@codesourcery.com>
14731 Nigel Stephens <nigel@mips.com>
14732
14733 * config/mips/mips.c (mips_attribute_table): Add "near" and "far"
14734 function attributes, "far" being an alias for "long_call".
14735 (TARGET_COMP_TYPE_ATTRIBUTES): Define as mips_comp_type_attributes.
14736 (mips_near_type_p, mips_far_type_p): New.
14737 (mips_comp_type_attributes): New function to check that attributes
14738 attached to a function type are compatible.
14739 (mips_output_mi_thunk): Test SYMBOL_REF_LONG_CALL_P() rather than
14740 TARGET_LONG_CALLS when deciding whether we can do a direct sibcall
14741 to the target function of the thunk.
14742 (mips_encode_section_info): Check for "near" and "far" function
14743 attributes, and always set the SYMBOL_FLAG_LONG_CALL bit explicitly.
14744
14745 * config/mips/predicates.md (const_call_insn_operand): Test only
14746 SYMBOL_REF_LONG_CALL_P() and not TARGET_LONG_CALLS.
14747
14748 * doc/extend.texi (Function Attributes): Document MIPS "near" and
14749 "far" attributes.
14750
14751 * testsuite/gcc.target/mips/near-far-1.c: New test case.
14752 * testsuite/gcc.target/mips/near-far-2.c: New test case.
14753 * testsuite/gcc.target/mips/near-far-3.c: New test case.
14754 * testsuite/gcc.target/mips/near-far-4.c: New test case.
14755
14756 2007-05-25 Eric Christopher <echristo@apple.com>
14757
14758 * config.gcc: Add i386/t-fprules-softfp64 and soft-fp/t-softfp
14759 to x86-darwin configurations.
14760 * config/i386/t-darwin: Add softfp support.
14761 * config/i386/t-darwin64: Ditto.
14762 * config/i386/sfp-machine.h: If mach then don't use
14763 aliasing, emit a stub to call.
14764
14765 2007-05-25 Kazu Hirata <kazu@codesourcery.com>
14766
14767 * cfglayout.c, cgraphunit.c, config/avr/avr.c, fold-const.c,
14768 haifa-sched.c, optabs.h, tree-affine.c, tree-data-ref.c,
14769 tree-predcom.c, tree-ssa-alias-warnings.c,
14770 tree-ssa-forwprop.c, tree-vect-analyze.c, tree-vrp.c: Fix
14771 comment typos. Follow spelling conventions.
14772 * doc/cpp.texi, doc/invoke.texi: Fix typos.
14773
14774 2007-05-26 Uros Bizjak <ubizjak@gmail.com>
14775
14776 PR target/32065
14777 * target/i386/i386.c (ix86_expand_vector_move): Force SUBREGs of
14778 constants into memory. Expand unaligned memory references for
14779 SSE modes via x86_expand_vector_move_misalign() function.
14780
14781 2007-05-25 Uros Bizjak <ubizjak@gmail.com>
14782
14783 * config/i386/sse.md (*vec_extractv2di_1_sse2): Do not calculate
14784 "memory" attribute for "sseishft" type insn without operands[2].
14785
14786 2007-05-25 Dirk Mueller <dmueller@suse.de>
14787 Marcus Meissner <meissner@suse.de>
14788
14789 * doc/extend.texi (alloc_size): New attribute.
14790 * c-common.c (handle_alloc_size_attribute): New.
14791 * tree-object-size.c (alloc_object_size): Use alloc_size
14792 attribute, if available.
14793
14794 2007-05-25 H.J. Lu <hongjiu.lu@intel.com>
14795
14796 * config/i386/i386.c (__builtin_ia32_vec_ext_v2df): Mark it
14797 with MASK_SSE2.
14798 (__builtin_ia32_vec_ext_v2di): Likewise.
14799 (__builtin_ia32_vec_ext_v4si): Likewise.
14800 (__builtin_ia32_vec_ext_v8hi): Likewise.
14801 (__builtin_ia32_vec_ext_v16qi): Likewise.
14802 (__builtin_ia32_vec_set_v8hi): Likewise.
14803
14804 2007-05-25 H.J. Lu <hongjiu.lu@intel.com>
14805
14806 * config/i386/sse.md (*vec_extractv2di_1_sse2): Correct shift.
14807
14808 2007-05-25 Richard Sandiford <richard@codesourcery.com>
14809
14810 * config/arm/arm-protos.h (arm_encode_call_attribute): Delete.
14811 (arm_is_longcall_p): Rename to...
14812 (arm_is_long_call_p): ...this. Take a single tree argument and
14813 return a bool.
14814 * config/arm/arm.h (CALL_SHORT, CALL_LONG, CALL_NORMAL): Delete.
14815 (CUMULATIVE_ARGS): Remove call_cookie.
14816 (SHORT_CALL_FLAG_CHAR, LONG_CALL_FLAG_CHAR, ENCODED_SHORT_CALL_ATTR_P)
14817 (ENCODED_LONG_CALL_ATTR_P): Delete.
14818 (ARM_NAME_ENCODING_LENGTHS): Remove SHORT_CALL_FLAG_CHAR and
14819 LONG_CALL_FLAG_CHAR cases.
14820 (ARM_DECLARE_FUNCTION_SIZE): Delete.
14821 * config/arm/elf.h (ASM_DECLARE_FUNCTION_SIZE): Don't use
14822 ARM_DECLARE_FUNCTION_SIZE.
14823 * config/arm/arm.c (arm_init_cumulative_args): Don't set call_cookie.
14824 (arm_function_arg): Return const0_rtx for VOIDmode arguments.
14825 (arm_encode_call_attribute, current_file_function_operand): Delete.
14826 (arm_function_in_section_p): New function.
14827 (arm_is_longcall_p): Rename to...
14828 (arm_is_long_call_p): ...this. Take the target function as a single
14829 argument and return a bool. Do not rely on call cookies. Check
14830 whether the target symbol is in the same section as the current
14831 function, not just the same compilation unit.
14832 (arm_function_ok_for_sibcall): Use arm_is_long_call_p.
14833 (arm_encode_section_info): Don't encode a call type.
14834 * config/arm/arm.md (call, call_value): Update calls to
14835 arm_is_long(_)call_p. Simplify logic.
14836 (*call_symbol, *call_value_symbol, *call_insn, *call_value_insn):
14837 Update calls to arm_is_long(_)call_p.
14838
14839 2007-05-25 Richard Guenther <rguenther@suse.de>
14840
14841 PR tree-optimization/31982
14842 * tree-ssa-forwprop.c
14843 (forward_propagate_addr_into_variable_array_index): Handle arrays
14844 with element size one.
14845
14846 2007-05-24 Andrew Pinski <andrew_pinski@playstation.sony.com>
14847
14848 * config/spu/spu.md (smulsi3_highpart): Unshare the rtl chain.
14849 (umulsi3_highpart): Likewise.
14850
14851 2007-05-24 Ian Lance Taylor <iant@google.com>
14852
14853 PR rtl-optimization/32069
14854 * regclass.c (regclass): Don't crash if the entry in regno_reg_rtx
14855 is NULL.
14856
14857 2007-05-24 Ollie Wild <aaw@google.com>
14858
14859 * doc/cpp.texi (Common Predefined Macros): Add __COUNTER__
14860 description.
14861
14862 2007-05-24 Richard Sandiford <rsandifo@nildram.co.uk>
14863
14864 * postreload-gcse.c (reg_changed_after_insn_p): New function.
14865 (oprs_unchanged_p): Use it to check all registers in a REG.
14866 (record_opr_changes): Look for clobbers in CALL_INSN_FUNCTION_USAGE.
14867 (reg_set_between_after_reload_p): Delete.
14868 (reg_used_between_after_reload_p): Likewise.
14869 (reg_set_or_used_since_bb_start): Likewise.
14870 (eliminate_partially_redundant_load): Use reg_changed_after_insn_p
14871 and reg_used_between_p instead of reg_set_or_used_since_bb_start.
14872 Use reg_set_between_p instead of reg_set_between_after_reload_p.
14873 * rtlanal.c (reg_set_p): Check whether REG overlaps
14874 regs_invalidated_by_call, rather than just checking the
14875 membership of REGNO (REG).
14876
14877 2007-05-24 Zdenek Dvorak <dvorakz@suse.cz>
14878
14879 * doc/passes.texi: Document predictive commoning.
14880 * doc/invoke.texi (-fpredictive-commoning): Document.
14881 * opts.c (decode_options): Enable flag_predictive_commoning on -O3.
14882 * tree-ssa-loop-im.c (get_lsm_tmp_name): Export. Allow
14883 adding indices to the generated name.
14884 (schedule_sm): Pass 0 to get_lsm_tmp_name.
14885 * tree-ssa-loop-niter.c (stmt_dominates_stmt_p): Export.
14886 * tree-pretty-print.c (op_symbol_1): Renamed to ...
14887 (op_symbol_code): ... and exported.
14888 (dump_omp_clause, op_symbol): Use op_symbol_code
14889 instead of op_symbol_1.
14890 * tree-pass.h (pass_predcom): Declare.
14891 * timevar.def (TV_PREDCOM): New timevar.
14892 * tree-ssa-loop.c (run_tree_predictive_commoning,
14893 gate_tree_predictive_commoning, pass_predcom): New.
14894 * tree-data-ref.c (find_data_references_in_loop): Find the
14895 references in dominance order.
14896 (canonicalize_base_object_address): Ensure that the result has
14897 pointer type.
14898 (dr_analyze_innermost): Export.
14899 (create_data_ref): Code to fail for references with invariant
14900 address moved ...
14901 (find_data_references_in_stmt): ... here.
14902 * tree-data-ref.h (dr_analyze_innermost): Declare.
14903 * tree-affine.c: Include tree-gimple.h and hashtab.h.
14904 (aff_combination_find_elt, name_expansion_hash,
14905 name_expansion_eq, tree_to_aff_combination_expand,
14906 double_int_constant_multiple_p, aff_combination_constant_multiple_p):
14907 New functions.
14908 * tree-affine.h (aff_combination_constant_multiple_p,
14909 tree_to_aff_combination_expand): Declare.
14910 * tree-predcom.c: New file.
14911 * common.opt (fpredictive-commoning): New option.
14912 * tree-flow.h (op_symbol_code, tree_predictive_commoning,
14913 stmt_dominates_stmt_p, get_lsm_tmp_name): Declare.
14914 * Makefile.in (tree-predcom.o): Add.
14915 (tree-affine.o): Add TREE_GIMPLE_H dependency.
14916 * passes.c (init_optimization_passes): Add dceloop after
14917 copy propagation in loop optimizer. Add predictive commoning
14918 to loop optimizer passes.
14919
14920 2007-05-24 H.J. Lu <hongjiu.lu@intel.com>
14921
14922 * target-def.h (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Correct
14923 default hook.
14924
14925 2007-05-24 Jan Hubicka <jh@suse.cz>
14926
14927 * gengenrtl.c (gendecl, gendef): Output the gens annotated for
14928 statistics.
14929 (genheader): Include statistics.h.
14930
14931 * doc/invoke.texi (-fdump-unnumbered): Update docs when line number
14932 notes are gone.
14933 * print-rtl.c (flag_dump_unnumbered): Update comments.
14934 (print_rtl): Fix my previous change.
14935 * emit-rtl.c (emit_note_before, emit_note_after): Clear out note
14936 specific data.
14937
14938 2007-05-24 Zdenek Dvorak <dvorakz@suse.cz>
14939
14940 PR middle-end/32018
14941 * tree-ssa-threadupdate.c (thread_through_loop_header): Use
14942 set_loop_copy.
14943 (thread_through_all_blocks): Call initialize_original_copy_tables
14944 and free_original_copy_tables.
14945 * cfgloopmanip.c (duplicate_loop, duplicate_loop_to_header_edge):
14946 Use set_loop_copy.
14947 * tree-cfg.c (tree_duplicate_sese_region): Ditto.
14948 * cfghooks.c (duplicate_block): Use get_loop_copy.
14949 * cfg.c: Include cfgloop.h.
14950 (loop_copy): New hash table.
14951 (initialize_original_copy_tables): Initialize loop_copy table.
14952 (free_original_copy_tables): Free loop_copy table.
14953 (copy_original_table_clear, copy_original_table_set,
14954 set_loop_copy, get_loop_copy): New functions.
14955 (set_bb_original, set_bb_copy): Use copy_original_table_set.
14956 * cfgloop.h (struct loop): Remove copy field.
14957 * Makefile.in (cfg.o): Add CFGLOOP_H dependency.
14958 * basic-block.h (set_loop_copy, get_loop_copy): Declare.
14959
14960 2007-05-24 H.J. Lu <hongjiu.lu@intel.com>
14961
14962 * config/i386/i386.c (ix86_handle_option): Handle SSE4.1 for
14963 -msse/-msse2/-msse3.
14964
14965 2007-05-24 H.J. Lu <hongjiu.lu@intel.com>
14966
14967 * config/i386/i386.c (ix86_init_mmx_sse_builtins): Mark
14968 __builtin_ia32_vec_set_v2di with MASK_64BIT.
14969
14970 2007-05-24 Danny Smith <dannysmith@users.sourceforge.net>
14971
14972 PR target/27067
14973 * doc/tm.texi (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Document.
14974 * targhooks.h (default_mangle_decl_assembler_name): Declare
14975 default hook.
14976 * targhooks.c (default_mangle_decl_assembler_name): Define
14977 default hook.
14978 * target-def.h (TARGET_MANGLE_DECL_ASSEMBLER_NAME) New. Set to
14979 default hook.
14980 * target.h (struct gcc_target): Add mangle_decl_assembler_name field.
14981 * langhooks.c (lhd_set_decl_assembler_name): Call
14982 targetm.mangle_decl_assembler_name for names with global scope.
14983
14984 * config/i386/cygming.h (TARGET_MANGLE_DECL_ASSEMBLER_NAME) Override
14985 default.
14986 (ASM_OUTPUT_DEF_FROM_DECLS): Simplify to use DECL_ASSEMBLER_NAME.
14987 * config/i386/i386-protos.h (i386_pe_mangle_decl_assembler_name):
14988 Declare.
14989 * config/i386/winnt.c (i386_pe_maybe_mangle_decl_assembler_name):
14990 New. Factored out of i386_pe_encode_section_info.
14991 (gen_stdcall_or_fastcall_suffix): Get name identifier as argument.
14992 Move check for prior decoration of stdcall
14993 symbols to i386_pe_encode_section_info.
14994 (i386_pe_encode_section_info): Adjust call to
14995 gen_stdcall_or_fastcall_suffix. Use
14996 i386_pe_maybe_mangle_decl_assembler_name, if needed.
14997 (i386_pe_mangle_decl_assembler_name): New. Wrap
14998 i386_pe_maybe_mangle_decl_assembler_name.
14999
15000 2007-05-16 Rafael Avila de Espindola <espindola@google.com>
15001
15002 * c-common.c (c_common_signed_or_unsigned_type): Delay the check for
15003 INTEGRAL_TYPE_P and TYPE_UNSIGNED.
15004 * langhooks.c (get_signed_or_unsigned_type): Don't check for
15005 INTEGRAL_TYPE_P or TYPE_UNSIGNED.
15006 (lhd_signed_or_unsigned_type): Check for INTEGRAL_TYPE_P and
15007 TYPE_UNSIGNED.
15008
15009 2007-05-23 Sandra Loosemore <sandra@codesourcery.com>
15010 Nigel Stephens <nigel@mips.com>
15011 Richard Sandiford <richard@codesourcery.com>
15012
15013 Fix up MIPS16 hard float and add support for complex.
15014
15015 * config/mips/mips.h (TARGET_HARD_FLOAT_ABI): New.
15016 (TARGET_SOFT_FLOAT_ABI): New.
15017 (TARGET_CPU_CPP_BUILTINS): Define __mips_hard_float and
15018 __mips_soft_float to reflect the ABI in use, not whether the
15019 FPU is directly accessible (e.g., in MIPS16 mode).
15020 (UNITS_PER_HWFPVALUE): Use TARGET_SOFT_FLOAT_ABI.
15021 (UNITS_PER_FPVALUE): Likewise.
15022
15023 * config/mips/mips.c (mips_expand_call): Remove redundant
15024 TARGET_MIPS16 check.
15025 (mips_arg_regno): New.
15026 (function_arg_advance): When setting bits in cum->fp_code for
15027 MIPS16, don't subtract 1 from cum->arg_number, since it is now
15028 zero-based.
15029 (function_arg): Use mips_arg_regno.
15030 (mips_return_mode_in_fpr_p): New.
15031 (mips16_call_stub_mode_suffix): New.
15032 (mips16_cfun_returns_in_fpr_p): New.
15033 (mips_save_reg_p): Use mips16_cfun_returns_in_fpr_p.
15034 (mips_output_function_prologue): Test mips16_hard_float, not
15035 !TARGET_SOFT_FLOAT, to decide when a function stub is required.
15036 (mips_expand_epilogue): Call MIPS16 helper routines to copy
15037 return value into a floating-point register.
15038 (mips_can_use_return_insn): Use mips16_cfun_returns_in_fpr_p.
15039 (mips_function_value): Rewrite to use mips_return_mode_in_fpr_p.
15040 (mips16_fp_args): Handle MIPS32r2 ISA which supports
15041 TARGET_FLOAT64, and use mfhc1/mthc1 to copy the most significant
15042 word of double arguments from or to the high bits of 64-bit
15043 floating point registers.
15044 (build_mips16_function_stub): Fill in DECL_RESULT for stubdecl.
15045 (mips16_fpret_double): New helper function.
15046 (build_mips16_call_stub): Use mips16_return_mode_in_fpr_p. Add
15047 support for complex modes. Fill in DECL_RESULT for stubdecl.
15048 (mips_init_libfuncs): Remove redundant TARGET_MIPS16 check.
15049
15050 * config/mips/mips16.S
15051 (RET, ARG1, ARG2): New.
15052 (MERGE_GPRf, MERGE_GPRt): New.
15053 (DELAYt, DELAYf): New.
15054 (MOVE_SF_BYTE0, MOVE_SI_BYTE0): New.
15055 (MOVE_SF_BYTE4, MOVE_SF_BYTE8): New.
15056 (MOVE_DF_BYTE0, MOVE_DF_BYTE8): New.
15057 (MOVE_SF_RET, MOVE_SC_RET, MOVE_DF_RET, MOVE_DC_RET, MOVE_SI_RET): New.
15058 (SFOP): Renamed to...
15059 (OPSF3): This, and macro-ified. Updated all uses.
15060 (SFOP2): Renamed to...
15061 (OPSF2): This, and macro-ified. Updated all uses.
15062 (SFCMP): Renamed to...
15063 (CMPSF): This, and macro-ified. Updated all uses.
15064 (SFREVCMP): Renamed to...
15065 (REVCMPSF): This, and macro-ified. Updated all uses.
15066 (__mips16_floatsisf, __mips16_fix_truncsfsi): Macro-ified.
15067 (LDDBL1, LDDBL2, RETDBL): Deleted.
15068 (DFOP): Renamed to...
15069 (OPDF3): This, and macro-ified. Updated all uses.
15070 (DFOP2): Renamed to...
15071 (OPDF2): This, and macro-ified. Updated all uses.
15072 (__mips16_extendsfdf2, __mips16_truncdfsf2): Macro-ified.
15073 (DFCMP): Renamed to...
15074 (CMPDF): This, and macro-ified. Updated all uses.
15075 (DFREVCMP): Renamed to...
15076 (REVCMPDF): This, and macro-ified. Updated all uses.
15077 (__mips16_floatsidf, __mips16_fix_truncdfsi): Macro-ified.
15078 (RET_FUNCTION): New.
15079 (__mips16_ret_sf, __mips16_ret_df): Macro-ified.
15080 (__mips16_ret_sc, __mips16_ret_dc): New.
15081 (STUB_ARGS_0, STUB_ARGS_1, STUB_ARGS_5, STUB_ARGS_9, STUB_ARGS_2,
15082 STUB_ARGS_6, STUB_ARGS_10): New.
15083 (CALL_STUB_NO_RET): New.
15084 (__mips16_call_stub_1): Macro-ified.
15085 (__mips16_call_stub_5): Macro-ified.
15086 (__mips16_call_stub_2): Macro-ified.
15087 (__mips16_call_stub_6): Macro-ified.
15088 (__mips16_call_stub_9): Macro-ified.
15089 (__mips16_call_stub_10): Macro-ified.
15090 (CALL_STUB_RET): New.
15091 (__mips16_call_stub_sf_0): Macro-ified.
15092 (__mips16_call_stub_sf_1): Macro-ified.
15093 (__mips16_call_stub_sf_5): Macro-ified.
15094 (__mips16_call_stub_sf_2): Macro-ified.
15095 (__mips16_call_stub_sf_6): Macro-ified.
15096 (__mips16_call_stub_sf_9): Macro-ified.
15097 (__mips16_call_stub_sf_10): Macro-ified.
15098 (__mips16_call_stub_df_0): Macro-ified.
15099 (__mips16_call_stub_df_1): Macro-ified.
15100 (__mips16_call_stub_df_5): Macro-ified.
15101 (__mips16_call_stub_df_2): Macro-ified.
15102 (__mips16_call_stub_df_6): Macro-ified.
15103 (__mips16_call_stub_df_9): Macro-ified.
15104 (__mips16_call_stub_df_10): Macro-ified.
15105 (__mips16_call_stub_sc_0): New.
15106 (__mips16_call_stub_sc_1): New.
15107 (__mips16_call_stub_sc_5): New.
15108 (__mips16_call_stub_sc_2): New.
15109 (__mips16_call_stub_sc_6): New.
15110 (__mips16_call_stub_sc_9): New.
15111 (__mips16_call_stub_sc_10): New.
15112 (__mips16_call_stub_dc_0): New.
15113 (__mips16_call_stub_dc_1): New.
15114 (__mips16_call_stub_dc_5): New.
15115 (__mips16_call_stub_dc_2): New.
15116 (__mips16_call_stub_dc_6): New.
15117 (__mips16_call_stub_dc_9): New.
15118 (__mips16_call_stub_dc_10): New.
15119
15120 * config/mips/t-elf (LIB1ASMFUNCS): Add MIPS16 floating-point stubs.
15121 * config/mips/t-isa3264 (LIB1ASMFUNCS): Likewise.
15122 * config/mips/t-r2900 (LIB1ASMFUNCS): Likewise.
15123
15124 2007-05-23 Ian Lance Taylor <iant@google.com>
15125
15126 * doc/invoke.texi (Invoking GCC): Document that the order of the
15127 -l option matters.
15128
15129 2007-05-23 Chen Liqin <liqin@sunnorth.com.cn>
15130
15131 PR target/30987
15132 * config/score/misc.md (bitclr_c, bitset_c, bittgl_c): Remove.
15133 * config/score/predicate.md (const_pow2, const_npow2): Remove.
15134 * config/score/score.h (ASM_OUTPUT_EXTERNAL): Add ASM_OUTPUT_EXTERNAL
15135 undef.
15136
15137 PR target/30474
15138 * config/score/score.c (score_print_operand): Make sure that only
15139 lower bits are used.
15140
15141 2007-05-22 Ian Lance Taylor <iant@google.com>
15142
15143 * tree-vrp.c (avoid_overflow_infinity): New static function,
15144 broken out of set_value_range_to_value.
15145 (set_value_range_to_value): Call avoid_overflow_infinity.
15146 (extract_range_from_assert): Likewise.
15147
15148 2007-05-22 Andrew Pinski <andrew_pinski@playstation.sony.com>
15149
15150 PR middle-end/31095
15151 * builtins.c (expand_builtin_memmove_args): Strip nops that don't
15152 change the type before looking for a COMPOUND_EXPR.
15153
15154 2007-05-22 Ian Lance Taylor <iant@google.com>
15155
15156 * lower-subreg.c (decompose_multiword_subregs): If we change an
15157 insn, call remove_retval_note on it.
15158
15159 2007-05-22 Richard Sandiford <rsandifo@nildram.co.uk>
15160
15161 * regs.h (end_hard_regno): New function.
15162 (END_HARD_REGNO, END_REGNO): New macros.
15163 (add_to_hard_reg_set): New function.
15164 (remove_from_hard_reg_set): Likewise.
15165 (in_hard_reg_set_p): Likewise.
15166 (overlaps_hard_reg_set_p): Likewise.
15167 * bt-load.c (find_btr_reference): Use overlaps_hard_reg_set_p.
15168 (note_btr_set): Use END_HARD_REGNO.
15169 * caller-save.c (setup_save_areas): Use end_hard_regno.
15170 (mark_set_regs): Use END_HARD_REGNO.
15171 (add_stored_regs): Use end_hard_regno.
15172 (mark_referenced_regs): Use add_to_hard_reg_set.
15173 * combine.c (update_table_tick): Use END_REGNO.
15174 (record_value_for_reg): Likewise.
15175 (record_dead_and_set_regs): Likewise.
15176 (get_last_value_validate): Likewise.
15177 (use_crosses_set_p): Likewise.
15178 (reg_dead_at_p_1): Likewise.
15179 (reg_dead_at_p): Likewise.
15180 (mark_used_regs_combine): Use add_to_hard_reg_set.
15181 (move_deaths): Use END_HARD_REGNO.
15182 (reg_bitfield_target_p): Use end_hard_regno.
15183 (distribute_notes): Use END_HARD_REGNO.
15184 * cse.c (mention_regs): Use END_REGNO.
15185 (insert): Use add_to_hard_reg_set.
15186 (invalidate): Use END_HARD_REGNO.
15187 (invalidate_for_call): Likewise.
15188 (exp_equiv_p): Use END_REGNO.
15189 (cse_insn): Likewise.
15190 * cselib.c (cselib_invalidate_regno): Use end_hard_regno.
15191 * df-problems.c (df_urec_mark_reg_change): Use END_HARD_REGNO.
15192 * df-scan.c (df_ref_record): Use END_HARD_REGNO.
15193 * function.c (keep_stack_depressed): Use end_hard_regno.
15194 * global.c (global_alloc): Use end_hard_regno.
15195 (global_conflicts): Use add_to_hard_reg_set instead of
15196 mark_reg_live_nc.
15197 (find_reg): Likewise.
15198 (mark_reg_store): Likewise.
15199 (mark_reg_conflicts): Likewise.
15200 (mark_reg_death): Use remove_from_hard_reg_set.
15201 (mark_reg_live_nc): Delete.
15202 (set_preference): Use end_hard_regno.
15203 * local-alloc.c (mark_life): Use add_to_hard_reg_set and
15204 remove_from_hard_reg_set.
15205 (post_mark_life): Use add_to_hard_reg_set.
15206 * mode-switching.c (reg_dies): Use remove_from_hard_reg_set.
15207 (reg_becomes_live): Use add_to_hard_reg_set.
15208 * recog.c (reg_fits_class_p): Use in_hard_reg_set_p.
15209 (peep2_find_free_register): Use add_to_hard_reg_set.
15210 * reg-stack.c (convert_regs_exit): Use END_HARD_REGNO.
15211 * regclass.c (record_reg_classes): Use in_hard_reg_set_p.
15212 * regrename.c (note_sets): Use add_to_hard_reg_set.
15213 (clear_dead_regs): Use remove_from_hard_reg_set.
15214 (regrename_optimize): Use add_to_hard_reg_set.
15215 (find_oldest_value_reg): Use in_hard_reg_set_p.
15216 * reload.c (push_reload): Use in_hard_reg_set_p and end_hard_regno.
15217 (hard_reg_set_here_p): Use end_hard_regno.
15218 (decompose): Likewise.
15219 (reg_overlap_mentioned_for_reload_p): Use END_HARD_REGNO.
15220 (find_equiv_reg): Use in_hard_reg_set_p and end_hard_regno.
15221 * reload1.c (compute_use_by_pseudos): Use add_to_hard_reg_set.
15222 (mark_home_live): Use end_hard_regno.
15223 (spill_hard_reg): Likewise.
15224 (clear_reload_reg_in_use): Likewise.
15225 * reorg.c (delete_prior_computation): Use END_REGNO.
15226 * resource.c (update_live_status): Use END_HARD_REGNO.
15227 (mark_referenced_resources): Use add_to_hard_reg_set.
15228 (mark_set_resources): Likewise.
15229 (mark_target_live_regs): Likewise. Use remove_from_hard_reg_set.
15230 * rtlanal.c (refers_to_regno_p): Use END_REGNO.
15231 (reg_overlap_mentioned_p): Likewise.
15232 (dead_or_set_p): Likewise. Use an exclusive upper loop bound.
15233 (covers_regno_no_parallel_p): Use END_REGNO.
15234 (find_regno_note): Likewise.
15235 (find_reg_fusage): Use END_HARD_REGNO.
15236 * stmt.c (decl_overlaps_hard_reg_set_p): Use overlaps_hard_reg_set_p.
15237 * var-tracking.c (emit_note_insn_var_location): Use end_hard_regno.
15238
15239 2007-05-22 Richard Sandiford <rsandifo@nildram.co.uk>
15240
15241 * mode-switching.c (reg_dies): Change type of second argument to
15242 "HARD_REG_SET *".
15243 (optimize_mode_switching): Update accordingly.
15244
15245 2007-05-22 Richard Sandiford <richard@codesourcery.com>
15246
15247 * hard-reg-set.h (GO_IF_HARD_REG_SUBSET, GO_IF_HARD_REG_EQUAL): Delete
15248 in favor of...
15249 (hard_reg_subset_p, hard_reg_sets_equal_p, hard_reg_sets_intersect_p)
15250 (hard_reg_set_empty_p): ...these new functions.
15251 * bt-load.c (choose_btr): Use hard_reg_subset_p instead of
15252 GO_IF_HARD_REG_SUBSET.
15253 * cfgcleanup.c (old_insns_match_p): Use hard_reg_sets_equal_p
15254 instead of GO_IF_HARD_REG_EQUAL.
15255 * df-problems.c (df_urec_local_compute): Use hard_reg_set_empty_p
15256 instead of GO_IF_HARD_REG_EQUAL.
15257 * global.c (find_reg): Use hard_reg_set_empty_p instead of
15258 GO_IF_HARD_REG_SUBSET.
15259 (modify_reg_pav): Use hard_reg_set_empty_p instead of
15260 GO_IF_HARD_REG_EQUAL.
15261 * local-alloc.c (find_free_reg): Use hard_reg_subset_p instead
15262 of GO_IF_HARD_REG_SUBSET.
15263 * reg-stack.c (change_stack, convert_regs_1): Use hard_reg_sets_equal_p
15264 instead of GO_IF_HARD_REG_EQUAL.
15265 * regclass.c (init_reg_sets_1, reg_scan_mark_refs): Use
15266 hard_reg_subset_p instead of GO_IF_HARD_REG_SUBSET.
15267 (reg_classes_intersect_p): Use hard_reg_sets_intersect_p instead
15268 of GO_IF_HARD_REG_SUBSET,
15269 * reload1.c (finish_spills): Use hard_reg_subset_p instead of
15270 GO_IF_HARD_REG_SUBSET.
15271 * struct-equiv.c (death_notes_match_p): Use hard_reg_sets_equal_p
15272 instead of GO_IF_HARD_REG_EQUAL.
15273 * config/sh/sh.c (push_regs, calc_live_regs): Use
15274 hard_reg_sets_intersect_p instead of hard_regs_intersect_p.
15275 (hard_regs_intersect_p): Delete.
15276
15277 2007-05-22 Janis Johnson <janis187@us.ibm.com>
15278
15279 * doc/sourcebuild.texi (Test Directives) Add dg-message.
15280
15281 2007-05-22 H.J. Lu <hongjiu.lu@intel.com>
15282 Richard Henderson <rth@redhat.com>
15283
15284 * config.gcc (i[34567]86-*-*): Add smmintrin.h to
15285 extra_headers.
15286 (x86_64-*-*): Likewise.
15287
15288 * i386/i386-modes.def (V2QI): New.
15289
15290 * config/i386/i386.c (ix86_handle_option): Handle SSE4.1 and
15291 SSE4A.
15292 (override_options): Support SSE4.1.
15293 (IX86_BUILTIN_BLENDPD): New for SSE4.1.
15294 (IX86_BUILTIN_BLENDPS): Likewise.
15295 (IX86_BUILTIN_BLENDVPD): Likewise.
15296 (IX86_BUILTIN_BLENDVPS): Likewise.
15297 (IX86_BUILTIN_PBLENDVB128): Likewise.
15298 (IX86_BUILTIN_PBLENDW128): Likewise.
15299 (IX86_BUILTIN_DPPD): Likewise.
15300 (IX86_BUILTIN_DPPS): Likewise.
15301 (IX86_BUILTIN_INSERTPS128): Likewise.
15302 (IX86_BUILTIN_MOVNTDQA): Likewise.
15303 (IX86_BUILTIN_MPSADBW128): Likewise.
15304 (IX86_BUILTIN_PACKUSDW128): Likewise.
15305 (IX86_BUILTIN_PCMPEQQ): Likewise.
15306 (IX86_BUILTIN_PHMINPOSUW128): Likewise.
15307 (IX86_BUILTIN_PMAXSB128): Likewise.
15308 (IX86_BUILTIN_PMAXSD128): Likewise.
15309 (IX86_BUILTIN_PMAXUD128): Likewise.
15310 (IX86_BUILTIN_PMAXUW128): Likewise.
15311 (IX86_BUILTIN_PMINSB128): Likewise.
15312 (IX86_BUILTIN_PMINSD128): Likewise.
15313 (IX86_BUILTIN_PMINUD128): Likewise.
15314 (IX86_BUILTIN_PMINUW128): Likewise.
15315 (IX86_BUILTIN_PMOVSXBW128): Likewise.
15316 (IX86_BUILTIN_PMOVSXBD128): Likewise.
15317 (IX86_BUILTIN_PMOVSXBQ128): Likewise.
15318 (IX86_BUILTIN_PMOVSXWD128): Likewise.
15319 (IX86_BUILTIN_PMOVSXWQ128): Likewise.
15320 (IX86_BUILTIN_PMOVSXDQ128): Likewise.
15321 (IX86_BUILTIN_PMOVZXBW128): Likewise.
15322 (IX86_BUILTIN_PMOVZXBD128): Likewise.
15323 (IX86_BUILTIN_PMOVZXBQ128): Likewise.
15324 (IX86_BUILTIN_PMOVZXWD128): Likewise.
15325 (IX86_BUILTIN_PMOVZXWQ128): Likewise.
15326 (IX86_BUILTIN_PMOVZXDQ128): Likewise.
15327 (IX86_BUILTIN_PMULDQ128): Likewise.
15328 (IX86_BUILTIN_PMULLD128): Likewise.
15329 (IX86_BUILTIN_ROUNDPD): Likewise.
15330 (IX86_BUILTIN_ROUNDPS): Likewise.
15331 (IX86_BUILTIN_ROUNDSD): Likewise.
15332 (IX86_BUILTIN_ROUNDSS): Likewise.
15333 (IX86_BUILTIN_PTESTZ): Likewise.
15334 (IX86_BUILTIN_PTESTC): Likewise.
15335 (IX86_BUILTIN_PTESTNZC): Likewise.
15336 (IX86_BUILTIN_VEC_EXT_V16QI): Likewise.
15337 (IX86_BUILTIN_VEC_SET_V2DI): Likewise.
15338 (IX86_BUILTIN_VEC_SET_V4SF): Likewise.
15339 (IX86_BUILTIN_VEC_SET_V4SI): Likewise.
15340 (IX86_BUILTIN_VEC_SET_V16QI): Likewise.
15341 (bdesc_ptest): New.
15342 (bdesc_sse_3arg): Likewise.
15343 (bdesc_2arg): Likewise.
15344 (bdesc_1arg): Likewise.
15345 (ix86_init_mmx_sse_builtins): Support SSE4.1. Handle SSE builtins
15346 with 3 args.
15347 (ix86_expand_sse_4_operands_builtin): New.
15348 (ix86_expand_unop_builtin): Support 2 arg builtins with a constant
15349 smaller than 8 bits as the 2nd arg.
15350 (ix86_expand_sse_ptest): New.
15351 (ix86_expand_builtin): Support SSE4.1. Support 3 arg SSE builtins.
15352 (ix86_expand_vector_set): Support SSE4.1.
15353 (ix86_expand_vector_extract): Likewise.
15354
15355 * config/i386/i386.h (TARGET_CPU_CPP_BUILTINS): Define
15356 __SSE4_1__ for -msse4.1.
15357
15358 * config/i386/i386.md (UNSPEC_BLENDV): New for SSE4.1.
15359 (UNSPEC_INSERTPS): Likewise.
15360 (UNSPEC_DP): Likewise.
15361 (UNSPEC_MOVNTDQA): Likewise.
15362 (UNSPEC_MPSADBW): Likewise.
15363 (UNSPEC_PHMINPOSUW): Likewise.
15364 (UNSPEC_PTEST): Likewise.
15365 (UNSPEC_ROUNDP): Likewise.
15366 (UNSPEC_ROUNDS): Likewise.
15367
15368 * config/i386/i386.opt (msse4.1): New for SSE4.1.
15369
15370 * config/i386/predicates.md (const_pow2_1_to_2_operand): New.
15371 (const_pow2_1_to_32768_operand): Likewise.
15372
15373 * config/i386/smmintrin.h: New. The SSE4.1 intrinsic header
15374 file.
15375
15376 * config/i386/sse.md (*vec_setv4sf_sse4_1): New pattern for
15377 SSE4.1.
15378 (sse4_1_insertps): Likewise.
15379 (*sse4_1_extractps): Likewise.
15380 (sse4_1_ptest): Likewise.
15381 (sse4_1_mulv2siv2di3): Likewise.
15382 (*sse4_1_mulv4si3): Likewise.
15383 (*sse4_1_smax<mode>3): Likewise.
15384 (*sse4_1_umax<mode>3): Likewise.
15385 (*sse4_1_smin<mode>3): Likewise.
15386 (*sse4_1_umin<mode>3): Likewise.
15387 (sse4_1_eqv2di3): Likewise.
15388 (*sse4_1_pinsrb): Likewise.
15389 (*sse4_1_pinsrd): Likewise.
15390 (*sse4_1_pinsrq): Likewise.
15391 (*sse4_1_pextrb): Likewise.
15392 (*sse4_1_pextrb_memory): Likewise.
15393 (*sse4_1_pextrw_memory): Likewise.
15394 (*sse4_1_pextrq): Likewise.
15395 (sse4_1_blendpd): Likewise.
15396 (sse4_1_blendps): Likewise.
15397 (sse4_1_blendvpd): Likewise.
15398 (sse4_1_blendvps): Likewise.
15399 (sse4_1_dppd): Likewise.
15400 (sse4_1_dpps): Likewise.
15401 (sse4_1_movntdqa): Likewise.
15402 (sse4_1_mpsadbw): Likewise.
15403 (sse4_1_packusdw): Likewise.
15404 (sse4_1_pblendvb): Likewise.
15405 (sse4_1_pblendw): Likewise.
15406 (sse4_1_phminposuw): Likewise.
15407 (sse4_1_extendv8qiv8hi2): Likewise.
15408 (*sse4_1_extendv8qiv8hi2): Likewise.
15409 (sse4_1_extendv4qiv4si2): Likewise.
15410 (*sse4_1_extendv4qiv4si2): Likewise.
15411 (sse4_1_extendv2qiv2di2): Likewise.
15412 (*sse4_1_extendv2qiv2di2): Likewise.
15413 (sse4_1_extendv4hiv4si2): Likewise.
15414 (*sse4_1_extendv4hiv4si2): Likewise.
15415 (sse4_1_extendv2hiv2di2): Likewise.
15416 (*sse4_1_extendv2hiv2di2): Likewise.
15417 (sse4_1_extendv2siv2di2): Likewise.
15418 (*sse4_1_extendv2siv2di2): Likewise.
15419 (sse4_1_zero_extendv8qiv8hi2): Likewise.
15420 (*sse4_1_zero_extendv8qiv8hi2): Likewise.
15421 (sse4_1_zero_extendv4qiv4si2): Likewise.
15422 (*sse4_1_zero_extendv4qiv4si2): Likewise.
15423 (sse4_1_zero_extendv2qiv2di2): Likewise.
15424 (*sse4_1_zero_extendv2qiv2di2): Likewise.
15425 (sse4_1_zero_extendv4hiv4si2): Likewise.
15426 (*sse4_1_zero_extendv4hiv4si2): Likewise.
15427 (sse4_1_zero_extendv2hiv2di2): Likewise.
15428 (*sse4_1_zero_extendv2hiv2di2): Likewise.
15429 (sse4_1_zero_extendv2siv2di2): Likewise.
15430 (*sse4_1_zero_extendv2siv2di2): Likewise.
15431 (sse4_1_roundpd): Likewise.
15432 (sse4_1_roundps): Likewise.
15433 (sse4_1_roundsd): Likewise.
15434 (sse4_1_roundss): Likewise.
15435 (mulv4si3): Don't expand for SSE4.1.
15436 (smax<mode>3): Likewise.
15437 (umaxv4si3): Likewise.
15438 (uminv16qi3): Likewise.
15439 (umin<mode>3): Likewise.
15440 (umaxv8hi3): Rewrite. Only enabled for SSE4.1.
15441
15442 * doc/extend.texi: Document SSE4.1 built-in functions.
15443
15444 * doc/invoke.texi: Document -msse4.1.
15445
15446 2007-05-22 Nathan Sidwell <nathan@codesourcery.com>
15447
15448 * config/m68k/linux.h (ASM_SPEC): Add asm_pcrel_spec.
15449 * config/m68k/m68k-none.h (ASM_SPEC): Don't override here.
15450 * config/m68k/m68k.h (ASM_PCREL_SPEC): New.
15451 (ASM_SPEC): Add asm_pcrel_spec.
15452 (EXTRA_SPECS): Add asm_pcrel_spec.
15453
15454 2007-05-21 David Daney <ddaney@avtrex.com>
15455
15456 * doc/install.texi (Building a cross compiler): Add requirements
15457 for Java cross compiler.
15458
15459 2007-05-21 Andrew Pinski <andrew_pinski@playstation.sony.com>
15460
15461 PR middle-end/31995
15462 * tree-chrec.c (evolution_function_is_affine_multivariate_p):
15463 Add loopno argument. Use evolution_function_is_invariant_rec_p
15464 instead of evolution_function_is_constant_p.
15465 Update calls to evolution_function_is_affine_multivariate_p.
15466 * tree-chrec.h (evolution_function_is_affine_multivariate_p):
15467 Add loopno argument.
15468 * tree-scalar-evolution.c (gather_chrec_stats): Call
15469 evolution_function_is_affine_multivariate_p with a loop
15470 number of 0.
15471 * tree-data-ref.c (analyze_miv_subscript): Likewise.
15472 (analyze_overlapping_iterations): Likewise.
15473 (access_functions_are_affine_or_constant_p): Likewise.
15474 (build_classic_dist_vector_1): If the access functions
15475 are equal, don't do anything.
15476
15477 2007-05-21 Paolo Bonzini <bonzini@gnu.org>
15478 Paolo Carlini <pcarlini@suse.de>
15479 Uros Bizjak <ubizjak@gmail.com>
15480
15481 * c-cppbuiltin.c (c_cpp_builtins): Define
15482 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1, __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2,
15483 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4, __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8,
15484 __GCC_HAVE_SYNC_COMPARE_AND_SWAP_16, if appropriate.
15485 * doc/cpp.texi ([Standard Predefined Macros]): Document.
15486
15487 2007-05-21 Mike Stump <mrs@apple.com>
15488
15489 * config/darwin.h (LINK_COMMAND_SPEC): Add .cxx/.cp for dsymutil
15490 handling as well.
15491 * config/darwin9.h (LINK_COMMAND_SPEC): Likewise.
15492
15493 2007-05-21 Uros Bizjak <ubizjak@gmail.com>
15494
15495 * config/i386/tmmintrin.h (_mm_alignr_epi8): Provide macro
15496 implementation if __OPTIMIZE__ is not defined.
15497 (_mm_alignr_pi8): Ditto.
15498 * config/i386/ammintrin.h (_mm_extracti_si64): Ditto.
15499 (_mm_inserti_si64): Ditto.
15500 * config/i386/emmintrin.h (_mm_shuffle_pd): Ditto.
15501 (_mm_slli_epi16): Ditto.
15502 (_mm_slli_epi32): Ditto.
15503 (_mm_slli_epi64): Ditto.
15504 (_mm_srai_epi16): Ditto.
15505 (_mm_srai_epi32): Ditto.
15506 (_mm_srli_si128): Ditto.
15507 (_mm_slli_si128): Ditto.
15508 (_mm_srli_epi16): Ditto.
15509 (_mm_srli_epi32): Ditto.
15510 (_mm_srli_epi64): Ditto.
15511 (_mm_extract_epi16): Ditto.
15512 (_mm_insert_epi16): Ditto.
15513 (_mm_shufflehi_epi16): Ditto.
15514 (_mm_shufflelo_epi16): Ditto.
15515 (_mm_shuffle_epi32): Ditto.
15516 * config/i386/xmmintrin.h (_mm_extract_pi16): Ditto.
15517 (_m_pextrw): Ditto.
15518 (_mm_insert_pi16): Ditto.
15519 (_m_pinsrw): Ditto.
15520 (_mm_shuffle_pi16): Ditto.
15521 (_m_pshufw): Ditto.
15522 (_mm_shufle_ps): Ditto.
15523 (_mm_prefetch): Ditto.
15524
15525 2007-05-21 Andreas Krebbel <krebbel1@de.ibm.com>
15526
15527 * defaults.h (IBM_FLOAT_FORMAT): Macro definition removed.
15528 * doc/tm.texi (IBM_FLOAT_FORMAT): Documentation entry removed.
15529 * real.c (encode_i370_single, decode_i370_single,
15530 encode_i370_double, decode_i370_double): Functions removed.
15531 (i370_single_format, i370_double_format): Initializations removed.
15532 (real_maxval, round_for_format, exact_real_truncate, significand_size):
15533 Consider the log2_b field to always be one.
15534 (ieee_single_format, mips_single_format, coldfire_single_format,
15535 ieee_double_format, mips_double_format, coldfire_double_format,
15536 ieee_extended_motorola_format, ieee_extended_intel_96_format,
15537 ieee_extended_intel_128_format, ieee_extended_intel_96_round_53_format,
15538 ibm_extended_format, mips_extended_format, ieee_quad_format,
15539 mips_quad_format, vax_f_format, vax_d_format, vax_g_format,
15540 decimal_single_format, decimal_double_format, decimal_quad_format,
15541 c4x_single_format, c4x_extended_format, real_internal_format): Remove
15542 initialization of log2_b.
15543 * real.h (i370_single_format, i370_double_format): Declarations
15544 removed.
15545 * c-cppbuiltin.c (builtin_define_float_constants): Consider the log2_b
15546 field to always be one.
15547
15548 2007-05-21 Andreas Schwab <schwab@suse.de>
15549
15550 * config/ia64/ia64.c (emit_predicate_relation_info): Fix use of
15551 NOTE_INSN_BASIC_BLOCK_P.
15552 (process_for_unwind_directive): Likewise.
15553
15554 2007-05-21 Nathan Sidwell <nathan@codesourcery.com>
15555
15556 * builtins.c (expand_builtin_setjmp_setup): Update comment.
15557 * function.h (struct function): Move va_list_gpr_size,
15558 va_list_fpr_size, function_frequency to front of bitfields. Add
15559 calls_unwind_init.
15560 (current_function_calls_unwind_init): New.
15561 * except.c (expand_builtin_unwind_init): Set
15562 current_function_calls_unwind_init not
15563 current_function_has_nonlocal_label.
15564 * reload1.c (has_nonexceptional_receiver): New.
15565 (reload): Use it and current_function_calls_unwind_init to
15566 determine whether call-saved regs must be saved.
15567
15568 2007-05-20 Jan Hubicka <jh@suse.cz>
15569
15570 * gengtype.c (adjust_field_rtx_def): Use NOTE_KIND instead of
15571 NOTE_LINE_NUMBER; use NOTE_INSN_BASIC_BLOCK_P when possible.
15572 * ddg.c (create_ddg): LIkewise.
15573 * final.c (final): Remove hunk moving line number notes around since
15574 they are no longer present at this stage.
15575 (final_scan_insn): Use NOTE_KIND instead of
15576 NOTE_LINE_NUMBER; use NOTE_INSN_BASIC_BLOCK_P when possible.
15577 (output_asm_label): Likewise.
15578 * reorg.c (dbr_schedule): Likewise.
15579 * haifa-sched.c (unlink_other_notes): Likewise.
15580 * mode-switching.c (optimize_mode_switching): Likewise.
15581 * graph.c (start_bb): Likewise.
15582 * rtl.def (NOTE): Update description.
15583 * jump.c (squeeze_notes): Delete.
15584 (mark_jump_label): Use NOTE_KIND instead of NOTE_LINE_NUMBER; use
15585 NOTE_INSN_BASIC_BLOCK_P when possible.
15586 * ifcvt.c (dead_or_predicable): Remove call of squeeze_notes.
15587 * dwarf2out.c (gen_label_die): Use NOTE_KIND instead of
15588 NOTE_LINE_NUMBER; use NOTE_INSN_BASIC_BLOCK_P when possible.
15589 (dwarf2out_var_location): Likewise.
15590 * cfgbuild.c (make_edges): Likewise.
15591 (find_basic_blocks_1): Likewise.
15592 * function.c (reorder_blocks_1): Likewise.
15593 (epilogue_done): Likewise.
15594 (reposition_prologue_and_epilogue_notes): Likewise.
15595 * print-rtl.c (print_rtx): Likewise; drop code for printing
15596 line number notes.
15597 (print_rtl): Likewise.
15598 (print_rtl_single): Likewise.
15599 * gcse.c (insert_insn_start_bb): Likewise.
15600 * alias.c (init_alias_analysis): Likewise.
15601 * calls.c (fixup_tail_calls): Likewise.
15602 * except.c (sjlj_emit_function_enter): Likewise.
15603 * emit-rtl.c (add_insn_after): Likeiwse.
15604 (emit_label_before): Likewise.
15605 (emit_label_after): Likewise.
15606 (emit_note_before, emit_note_after, emit_note): Update
15607 parameter to be enum insn_note; do not deal with source
15608 files.
15609 * cfgcleanup.c (merge_blocks_move_predecessor_nojumps):
15610 Use NOTE_KIND instead of NOTE_LINE_NUMBER; use NOTE_INSN_BASIC_BLOCK_P
15611 when possible.
15612 (merge_blocks_move_successor_nojumps): Simplify now when
15613 we don't have BLOCK notes.
15614 (try_optimize_cfg): Likewise.
15615 * cfglayout.c (skip_insns_after_block): Likewise.
15616 (record_effective_endpoints): Likewise.
15617 (duplicate_insn_chain): Likewise.
15618 * varasm.c (output_constant_pool_1): Likewise.
15619 * sched-deps.c (sched_analyze): Likewise.
15620 * rtl.c (NOTE_INSN_MAX_isnt_negative_adjust_NOTE_INSN_BIAS):
15621 Exterminate.
15622 (note_insn_name): Simplify now when NOTE_INSN_BIAS is gone.
15623 * rtl.h (NOTE_SOURCE_LOCATION, NOTE_EXPANDED_LOCATION): Exterminate.
15624 (SET_INSN_DELETED): Simplify.
15625 (NOTE_LINE_NUMBER): Exterminate.
15626 (NOTE_LINE_KIND): New.
15627 (NOTE_INSN_BASIC_BLOCK_P): Update.
15628 (enum insn_note): Simplify.
15629 (GET_NOTE_INSN_NAME) Simplify.
15630 (emit_note_before, emit_note_after, emit_note): Update prototype.
15631 (squeeze_notes): Remove.
15632 * sched-int.h (NOTE_NOT_BB_P): Update.
15633 * resource.c (mark_target_live_regs): Update.
15634 * sched-rgn.c (debug_dependencies): Update.
15635 * sched-vis.c (print_insn): Update.
15636 * config/alpha/alpha.c (alpha_handle_trap_shadows): Update.
15637 * config/i386/i386.c (ix86_output_function_epilogue): Update.
15638 * config/sh/sh.c (sh_adjust_unroll_max): Function dead since gcc 4.0.0.
15639 (TARGET_ADJUST_UNROLL_MAX): Likewise.
15640 (split_branches): Update.
15641 (sh_optimize_target_register_callee_saved): Remove hunk dead since gcc
15642 4.0.0.
15643 (sh_adjust_unroll_max): Exterminate.
15644 * config/c4x/c4x.c (c4x_reorg): Use SET_INSN_DELETED.
15645 * config/m68hc11/m68hc11.c (m68hc11_check_z_replacement): Likewise.
15646 (m68hc11_reorg): Likewise.
15647 * config/ia64/ia64.c (emit_insn_group_barriers): Update.
15648 (emit_predicate_relation_info): Update.
15649 (process_for_unwind_directive): Update.
15650 * config/rs6000/rs6000.c (rs6000_output_function_epilogue): Update.
15651 (output_call): Update.
15652 * config/pa/pa.c (output_lbranch): Update.
15653 (output_millicode_call): Update.
15654 (output_call): Update.
15655 (pa_combine_instructions): Update.
15656 * config/mips/mips.c (mips16_gp_pseudo_reg): Update.
15657 * config/bfin/bfin.c (gen_one_bundle): Update.
15658 * cfgrtl.c (can_delete_note_p): Update.
15659 (delete_insn): Update.
15660 (rtl_merge_blocks): Update.
15661 (commit_one_edge_insertion): Update.
15662 (rtl_verify_flow_info): Update.
15663 * stmt.c (expand_case): Do not call squeeze_notes.
15664
15665 2007-05-20 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
15666
15667 PR middle-end/7651
15668 PR c++/11856
15669 PR c/12963
15670 PR c/23587
15671 PR other/29694
15672 * c.opt (Wtype-limits): New.
15673 * doc/invoke.texi (Wtype-limits): Document it.
15674 (Wextra): Enabled by -Wextra.
15675 * c-opts.c (c_common_post_options): Enabled by -Wextra.
15676 * c-common.c (shorten_compare): Warn with Wtype-limits.
15677
15678 2007-05-20 Uros Bizjak <ubizjak@gmail.com>
15679
15680 * config/i386/tmmintrin.h (_mm_alignr_epi32): Implement as always
15681 inlined function, not as a macro.
15682 (_mm_alignr_pi8): Ditto.
15683 * config/i386/ammintrin.h (_mm_extracti_si64): Ditto.
15684 (_mm_inserti_si64): Ditto.
15685 * config/i386/emmintrin.h (_mm_shuffle_pd): Ditto.
15686 (_mm_extract_epi16): Ditto.
15687 (_mm_insert_epi16): Ditto.
15688 (_mm_shufflehi_epi16): Ditto.
15689 (_mm_shufflelo_epi16): Ditto.
15690 (_mm_shuffle_epi32): Ditto.
15691 * config/i386/xmmintrin.h (_mm_set_ss): Use 0.0f for float constant.
15692 * config/386/mm3dnow.h: Add __attribute__((__always_inline__)) to
15693 all functions.
15694 (_m_from_float): Add __extension__ to conversion. Use 0.0f for
15695 float constant.
15696 (_m_to_float): Use C89 compatible assignment.
15697
15698 2007-05-20 Martin Michlmayr <tbm@cyrius.com>
15699
15700 PR target/32007
15701 * config/arm/lib1funcs.asm: Define __ARM_ARCH__ on v2/v3 machines.
15702
15703 2007-05-20 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
15704
15705 PR middle-end/7651
15706 * doc/invoke.texi (Wreturn-type): Complete description.
15707 (Wextra): Delete item about return-type warning.
15708 * c-decl.c: Delete redundant Wextra warning.
15709
15710 2007-05-20 Uros Bizjak <ubizjak@gmail.com>
15711
15712 PR target/31585
15713 * config/i386/pmmintrin.h: Do not include xmmintrin.h
15714 * config/i386/xmmintrin.h (_mm_extract_pi16): Implement as always
15715 inlined function, not as a macro.
15716 (_mm_prefetch): Ditto.
15717 (_m_pextrw): Ditto.
15718 (_mm_insert_pi16): Ditto.
15719 (_m_pinsrw): Ditto.
15720 (_mm_shuffle_pi16): Ditto. Add const to __N argument.
15721 (_m_pshufw): Ditto. Add const to __N argument.
15722 (_mm_shufle_ps): Ditto. Add const to __mask argument.
15723 * config/i386/emmintrin.h (_mm_slli_epi16): Add const to __B argument.
15724 (_mm_slli_epi32): Ditto.
15725 (_mm_srli_si128): Implement as always inlined function, not as a
15726 macro. Add __inline to function declaration.
15727 (_mm_slli_si128): Ditto.
15728
15729 2007-05-19 Uros Bizjak <ubizjak@gmail.com>
15730
15731 * config/i386/sfp-machine.h (FP_EX_INVALID, FP_EX_DENORM,
15732 FP_EXP_DIVZERO, FP_EX_OVERFLOW, FP_EX_UNDERFLOW, FP_EX_INEXACT):
15733 New constants.
15734 (struct fenv): New structure.
15735 (FP_HANDLE_EXCEPTIONS): New define.
15736 (FP_RND_NEAREST, FP_RND_ZERO, FP_RND_PINF, FP_RND_MINF): New constants.
15737 (_FP_DECL_EXP): New define.
15738 (FP_INIT_ROUNDMODE): New define.
15739 (FP_ROUNDMODE): New define.
15740
15741 2007-05-19 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
15742
15743 * doc/invoke.texi (Warning Options): Add -Wconversion-sign.
15744 (Wconversion): Update description.
15745 (Wconversion-sign): New.
15746 * c.opt (Wconversion-sign): New.
15747 * c-opts.c (c_common_post_options): Uninitialized Wconversion-sign
15748 means disabled for C++. Otherwise, take the status of Wconversion.
15749 * c-common.c (conversion_warning): Warn with either Wconversion or
15750 Wconversion-sign.
15751 (warnings_for_convert_and_check): Conditions are already checked by
15752 conversion_warning.
15753 (convert_and_check): Don't check warnings if the conversion failed.
15754
15755 2007-05-19 Andy Hutchinson <HutchinsonAndy@netscape.net>
15756 Anatoly Sokolov <aesok@dol.ru>
15757
15758 * config/avr/avr-protos.h (expand_prologue, expand_epilogue,
15759 avr_epilogue_uses) : Add declaration.
15760 * config/avr/predicates.md (avr_sp_immediate_operand): New predicate.
15761 * config/avr/constraints.md (R): New constraint.
15762 config/avr/avr.md (SREG_ADDR, UNSPEC_SEI, UNSPEC_CLI,
15763 UNSPECV_PROLOGUE_SAVES, UNSPECV_EPILOGUE_RESTORES): New constants.
15764 (*pop1, *pop2, *pop3, *pop4, *pop5): Combine into ...
15765 (*addhi3_sp_R_pc2, *addhi3_sp_R_pc3): ... these patterns.
15766 (*movhi_sp, popqi, pophi, enable_interrupt, disable_interrupt,
15767 call_prologue_saves, epilogue_restores, return_from_epilogue,
15768 return_from_main_epilogue, return_from_interrupt_epilogue,
15769 return_from_naked_epilogue, prologue, epilogue): New patterns.
15770 (jump): Handle symbol reference.
15771 * config/avr/avr.c (out_adj_frame_ptr, out_set_stack_ptr,
15772 avr_output_function_prologue, avr_output_function_epilogue): Remove
15773 functions.
15774 (avr_init_machine_status, expand_prologue, expand_epilogue,
15775 avr_asm_function_end_prologue, avr_epilogue_uses,
15776 avr_asm_function_begin_epilogue): New functions.
15777 (prologue_size, epilogue_size, jump_tables_size): Remove global
15778 variables.
15779 (TARGET_ASM_FUNCTION_PROLOGUE, TARGET_ASM_FUNCTION_EPILOGUE): Remove.
15780 (TARGET_ASM_FUNCTION_END_PROLOGUE): Define.
15781 (TARGET_ASM_FUNCTION_BEGIN_EPILOGUE): Define.
15782 (avr_override_options): Initialise init_machine_status.
15783 (output_movhi): Handle all stack pointer loads.
15784 (out_movqi_r_mr, out_movqi_mr_r): Handle SREG_ADDR address.
15785 (avr_output_addr_vec_elt): Do not use variable jump_tables_size.
15786 * config/avr/avr.h (AVR_2_BYTE_PC, AVR_3_BYTE_PC): New.
15787 (EPILOGUE_USES) Redefine.
15788 (machine_function) Declare.
15789
15790 2007-05-19 Richard Sandiford <richard@codesourcery.com>
15791
15792 * config/mips/mips.c (mips_offset_within_alignment_p): Tweak comment.
15793 Use a single return statement.
15794
15795 2007-05-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
15796
15797 PR middle-end/30250
15798 * builtins.c (do_mpfr_lgamma_r): New.
15799 (fold_builtin_2): Handle builtin gamma_r/lgamma_r.
15800 * tree.h (CASE_FLT_FN_REENT): New.
15801
15802 2007-05-18 Geoffrey Keating <geoffk@apple.com>
15803
15804 * dwarf2out.c (print_die): Use '%ld' not '%lu' to print a 'long'.
15805 (output_die): Use 'unsigned long' with %x.
15806 * sched-vis.c (print_value): Use 'unsigned HOST_WIDE_INT' and
15807 HOST_WIDE_INT_PRINT_HEX to print HOST_WIDE_INT.
15808 * tree-dump.c (dump_pointer): Use 'unsigned long' for %lx.
15809
15810 * unwind-dw2.c (uw_identify_context): Use the CFA, not the IP.
15811
15812 2007-05-18 H.J. Lu <hongjiu.lu@intel.com>
15813
15814 PR target/31989
15815 PR target/31681
15816 PR target/31666
15817 * config/i386/i386.c (init_cumulative_args): Set maybe_vaarg to
15818 true if function has no argument.
15819
15820 2007-05-18 DJ Delorie <dj@redhat.com>
15821
15822 * config/mips/mips.c (mips_offset_within_alignment_p): New.
15823 (mips_symbolic_constant_p): Call it for TPREL and DTPREL symbols.
15824
15825 2007-05-18 Uros Bizjak <ubizjak@gmail.com>
15826
15827 * longlong.h (__x86_64__): Add definitions for add_ssaaaa,
15828 sub_ddmmss, umul_ppmm, udiv_qrnnd, count_leading_zeros and
15829 count_trailing_zeros.
15830 (__i386__): Implement count_leading_zeros using __builtin_clz().
15831 Implement count_trailing_zeros usign __builtin_ctz().
15832
15833 2007-05-18 Richard Sandiford <richard@codesourcery.com>
15834
15835 * config/i386/vxworks.h (ASM_PREFERRED_EH_DATA_FORMAT): Undefine.
15836
15837 2007-05-18 Uros Bizjak <ubizjak@gmail.com>
15838
15839 PR middle-end/31344
15840 * expr.c (emit_move_change_mode): Change mode of push operands here.
15841
15842 2007-05-17 Ian Lance Taylor <iant@google.com>
15843
15844 PR tree-optimization/31953
15845 * tree-vrp.c (set_value_range_to_value): Add equiv parameter.
15846 Change all callers.
15847 (set_value_range_to_null): Call set_value_range_to_value.
15848 (extract_range_from_comparison): Likewise.
15849
15850 2007-05-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
15851
15852 * toplev.c (print_version): Output GMP/MPFR version info.
15853
15854 * builtins.c (CASE_MATHFN_REENT): New macro.
15855 (mathfn_built_in): Use it.
15856 * builtins.def (BUILT_IN_GAMMA_R, BUILT_IN_GAMMAF_R,
15857 BUILT_IN_GAMMAL_R, BUILT_IN_LGAMMA_R, BUILT_IN_LGAMMAF_R,
15858 BUILT_IN_LGAMMAL_R): New.
15859 * doc/extend.texi: Document new builtins.
15860
15861 PR middle-end/31796
15862 * builtins.c (do_mpfr_remquo): New.
15863 (fold_builtin_2): Handle BUILT_IN_DREM/BUILT_IN_REMAINDER.
15864 (fold_builtin_3): Handle BUILT_IN_REMQUO.
15865
15866 PR middle-end/30251
15867 * builtins.c (fold_builtin_1): Handle y0, y1.
15868 (fold_builtin_2): Handle yn.
15869
15870 PR middle-end/30251
15871 * builtins.c (do_mpfr_bessel_n): New.
15872 (fold_builtin_1): Handle BUILT_IN_J0 and BUILT_IN_J1.
15873 (fold_builtin_2): Handle BUILT_IN_JN.
15874
15875 2007-05-17 Danny Smith <dannysmith@users.sourceforge.net>
15876
15877 PR target/31965
15878 * config/i386/mingw32.h (_INTEGRAL_MAX_BITS): Define builtin as
15879 TYPE_PRECISION (intmax_type_node).
15880
15881 2007-05-17 Steve Ellcey <sje@cup.hp.com>
15882
15883 PR target/31850
15884 * reload.c (subst_reloads): Remove checking.
15885
15886 2007-05-17 Eric Botcazou <ebotcazou@libertysurf.fr>
15887
15888 PR rtl-optimization/31691
15889 * combine.c (simplify_set): Build a new src pattern instead of
15890 substituting its operands in the COMPARE case.
15891
15892 2007-05-17 Zdenek Dvorak <dvorakz@suse.cz>
15893
15894 * tree-vrp.c (finalize_jump_threads): Do not care about dominance info.
15895 (execute_vrp): Preserve loops through jump threading.
15896 * tree-ssa-threadupdate.c (thread_single_edge,
15897 dbds_continue_enumeration_p, determine_bb_domination_status,
15898 thread_through_loop_header): New functions.
15899 (create_edge_and_update_destination_phis,
15900 create_edge_and_update_destination_phis): Set loops for the new blocks.
15901 (prune_undesirable_thread_requests): Removed.
15902 (redirect_edges): Do not pretend that redirect_edge_and_branch can
15903 create new blocks.
15904 (thread_block): Do not call prune_undesirable_thread_requests.
15905 Update loops.
15906 (mark_threaded_blocks): Select edges to thread here.
15907 (thread_through_all_blocks): Take may_peel_loop_headers argument.
15908 Thread edges through loop headers independently.
15909 * cfgloopmanip.c (create_preheader, mfb_keep_just): Export.
15910 * tree-pass.h (TODO_mark_first_instance): New.
15911 (first_pass_instance): Declare.
15912 * cfghooks.c (duplicate_block): Put the block to the original loop
15913 if copy is not specified.
15914 * tree-ssa-dom.c (tree_ssa_dominator_optimize): Preserve loops through
15915 jump threading. Pass may_peel_loop_headers to
15916 thread_through_all_blocks according to first_pass_instance.
15917 * cfgloop.h (create_preheader): Declare.
15918 * tree-flow.h (thread_through_all_blocks): Declaration changed.
15919 * basic-block.h (mfb_keep_just, mfb_kj_edge): Declare.
15920 * passes.c (first_pass_instance): New variable.
15921 (next_pass_1): Set TODO_mark_first_instance.
15922 (execute_todo): Set first_pass_instance.
15923
15924 2007-05-17 Uros Bizjak <ubizjak@gmail.com>
15925
15926 PR tree-optimization/24659
15927 * optabs.h (enum optab_index): Add OTI_vec_unpacks_float_hi,
15928 OTI_vec_unpacks_float_lo, OTI_vec_unpacku_float_hi,
15929 OTI_vec_unpacku_float_lo, OTI_vec_pack_sfix_trunc and
15930 OTI_vec_pack_ufix_trunc.
15931 (vec_unpacks_float_hi_optab): Define new macro.
15932 (vec_unpacks_float_lo_optab): Ditto.
15933 (vec_unpacku_float_hi_optab): Ditto.
15934 (vec_unpacku_float_lo_optab): Ditto.
15935 (vec_pack_sfix_trunc_optab): Ditto.
15936 (vec_pack_ufix_trunc_optab): Ditto.
15937 * genopinit.c (optabs): Implement vec_unpack[s|u]_[hi|lo]_optab
15938 and vec_pack_[s|u]fix_trunc_optab using
15939 vec_unpack[s|u]_[hi\lo]_* and vec_pack_[u|s]fix_trunc_* patterns
15940 * tree-vectorizer.c (supportable_widening_operation): Handle
15941 FLOAT_EXPR and CONVERT_EXPR. Update comment.
15942 (supportable_narrowing_operation): New function.
15943 * tree-vectorizer.h (supportable_narrowing_operation): Prototype.
15944 * tree-vect-transform.c (vectorizable_conversion): Handle
15945 (nunits_in == nunits_out / 2) and (nunits_out == nunits_in / 2) cases.
15946 (vect_gen_widened_results_half): Move before vectorizable_conversion.
15947 (vectorizable_type_demotion): Call supportable_narrowing_operation()
15948 to check for target support.
15949 * optabs.c (optab_for_tree_code) Return vec_unpack[s|u]_float_hi_optab
15950 for VEC_UNPACK_FLOAT_HI_EXPR, vec_unpack[s|u]_float_lo_optab
15951 for VEC_UNPACK_FLOAT_LO_EXPR and vec_pack_[u|s]fix_trunc_optab
15952 for VEC_PACK_FIX_TRUNC_EXPR.
15953 (expand_binop): Special case mode of the result for
15954 vec_pack_[u|s]fix_trunc_optab.
15955 (init_optabs): Initialize vec_unpack[s|u]_[hi|lo]_optab and
15956 vec_pack_[u|s]fix_trunc_optab.
15957
15958 * tree.def (VEC_UNPACK_FLOAT_HI_EXPR, VEC_UNPACK_FLOAT_LO_EXPR,
15959 VEC_PACK_FIX_TRUNC_EXPR): New tree codes.
15960 * tree-pretty-print.c (dump_generic_node): Handle
15961 VEC_UNPACK_FLOAT_HI_EXPR, VEC_UNPACK_FLOAT_LO_EXPR and
15962 VEC_PACK_FIX_TRUNC_EXPR.
15963 (op_prio): Ditto.
15964 * expr.c (expand_expr_real_1): Ditto.
15965 * tree-inline.c (estimate_num_insns_1): Ditto.
15966 * tree-vect-generic.c (expand_vector_operations_1): Ditto.
15967
15968 * config/i386/sse.md (vec_unpacks_float_hi_v8hi): New expander.
15969 (vec_unpacks_float_lo_v8hi): Ditto.
15970 (vec_unpacku_float_hi_v8hi): Ditto.
15971 (vec_unpacku_float_lo_v8hi): Ditto.
15972 (vec_unpacks_float_hi_v4si): Ditto.
15973 (vec_unpacks_float_lo_v4si): Ditto.
15974 (vec_pack_sfix_trunc_v2df): Ditto.
15975
15976 * doc/c-tree.texi (Expression trees) [VEC_UNPACK_FLOAT_HI_EXPR]:
15977 Document.
15978 [VEC_UNPACK_FLOAT_LO_EXPR]: Ditto.
15979 [VEC_PACK_FIX_TRUNC_EXPR]: Ditto.
15980 * doc/md.texi (Standard Names) [vec_pack_sfix_trunc]: Document.
15981 [vec_pack_ufix_trunc]: Ditto.
15982 [vec_unpacks_float_hi]: Ditto.
15983 [vec_unpacks_float_lo]: Ditto.
15984 [vec_unpacku_float_hi]: Ditto.
15985 [vec_unpacku_float_lo]: Ditto.
15986
15987 2007-05-16 Uros Bizjak <ubizjak@gmail.com>
15988
15989 * soft-fp/README: Update for new files.
15990 * soft-fp/floattisf.c: New file.
15991 * soft-fp/floattidf.c: New file.
15992 * soft-fp/floattitf.c: New file.
15993 * soft-fp/floatuntisf.c: New file.
15994 * soft-fp/floatuntidf.c: New file.
15995 * soft-fp/floatuntitf.c: New file.
15996 * soft-fp/fixsfti.c: New file.
15997 * soft-fp/fixdfti.c: New file.
15998 * soft-fp/fixtfti.c: New file.
15999 * soft-fp/fixunssfti.c: New file.
16000 * soft-fp/fixunsdfti.c: New file.
16001 * soft-fp/fixunstfti.c: New file.
16002 * soft-fp/extendxftf.c: New file.
16003 * soft-fp/trunctfxf.c: New file.
16004
16005 * libgcc-std.ver (__extendxftf2): Added to GCC_4.3.0 section.
16006 (__trunctfxf2): Ditto.
16007
16008 * config/i386/libgcc-x86_64-glibc.ver (__addtf3, __divtf3, __eqtf2,
16009 __extenddftf2, __extendsftf2, __fixtfdi, __fixtfsi, __fixtfti,
16010 __fixunstfdi, __fixunstfsi, __fixunstfti, __floatditf, __floatsitf,
16011 __floattitf, __floatunditf, __floatunsitf, __floatuntitf, __getf2,
16012 __letf2, __multf3, __negtf2, __subtf3, __trunctfdf2, __trunctfsf2,
16013 __unordtf2): Exclude and add to GCC_4.3.0 section for x86_64 targets.
16014
16015 * config/i386/t-fprules-softfp64: New file.
16016 * config/i386/sfp-machine.h: New file.
16017 * config.gcc (x86_64-*-linux*, x86_64-*-kfreebsd*-gnu,
16018 x86_64-*-knetbsd*-gnu): Add i386/t-fprules-softfp64
16019 and soft-fp/t-softfp to tmake_file.
16020 (i[34567]86-*-linux*, i[34567]86-*-kfreebsd*-gnu,
16021 i[34567]86-*-knetbsd*-gnu): Ditto for --enable-targets=all.
16022
16023 * config/i386/t-linux64 (softfp_wrap_start): New.
16024 (softfp_wrap_end): New.
16025 * config/i386/i386.c (ix86_scalar_mode_supported): TFmode is
16026 supported for TARGET_64BIT.
16027
16028 2007-05-16 Rafael Avila de Espindola <espindola@google.com>
16029
16030 * c-common.c (c_common_signed_or_unsigned_type): Emulate
16031 c_common_unsigned_type behavior.
16032
16033 2007-05-16 Paolo Bonzini <bonzini@gnu.org>
16034
16035 * config/i386/i386.c (legitimize_tls_address): Mark __tls_get_addr
16036 calls as pure.
16037
16038 2007-05-16 Eric Christopher <echristo@apple.com>
16039
16040 * config/rs6000/rs6000.c (rs6000_emit_prologue): Move altivec register
16041 saving after stack push. Set sp_offset whenever we push.
16042 (rs6000_emit_epilogue): Move altivec register restore before
16043 stack push.
16044
16045 2007-05-16 Richard Sandiford <richard@codesourcery.com>
16046
16047 * configure.ac: Allow sysroots to be relocated under $prefix as
16048 well as $exec_prefix.
16049 * configure: Regenerate.
16050
16051 2007-05-16 Richard Sandiford <richard@codesourcery.com>
16052
16053 Revert:
16054
16055 2007-05-12 Richard Sandiford <richard@codesourcery.com>
16056
16057 * configure.ac (gcc_gxx_include_dir): Use $(libsubdir_to_prefix).
16058 (gcc_tooldir): Likewise.
16059 * configure: Regenerate.
16060 * Makefile.in (libsubdir_to_prefix): New variable, based on the
16061 old configure.ac gcc_tooldir setting.
16062 (prefix_to_exec_prefix): New variable.
16063 (DRIVER_DEFINES): Use $(libsubdir_to_prefix)$(prefix_to_exec_prefix)
16064 rather than $(unlibsubdir)/../ to derive TOOLDIR_BASE_PREFIX.
16065
16066 2007-05-14 Janis Johnson <janis187@us.ibm.com>
16067
16068 * c-typeck.c (build_binary_op): Return early for error.
16069
16070 2007-05-15 Zdenek Dvorak <dvorakz@suse.cz>
16071
16072 * tree-ssa-loop-niter.c (record_estimate): Use GGC_NEW to allocate
16073 struct nb_iter_bound.
16074 (free_numbers_of_iterations_estimates_loop): Use ggc_free.
16075 * gengtype.c (open_base_files): Add cfhloop.h to the list of includes.
16076 * cfgloopmanip.c (place_new_loop): Vector larray is gc-allocated.
16077 * tree-scalar-evolution.c: Include gt-tree-scalar-evolution.h.
16078 (struct scev_info_str, scalar_evolution_info): Add GTY markers.
16079 (new_scev_info_str): Use GGC_NEW to allocate struct scev_info_str.
16080 (del_scev_info): Use ggc_free.
16081 (scev_initialize): Allocate scalar_evolution_info in gc memory.
16082 * loop-init.c: Include ggc.h.
16083 (loop_optimizer_init): Use GGC_CNEW to allocate struct loops.
16084 (loop_optimizer_finalize): Use ggc_free.
16085 * tree-ssa-loop.c (pass_tree_unswitch, pass_vectorize,
16086 pass_linear_transfom, pass_empty_loop, pass_complete_unroll,
16087 pass_iv_optimize): Add TODO_ggc_collect.
16088 * function.h (struct function): Remove skip marker from
16089 x_current_loops.
16090 * cfgloop.c: Include ggc.h.
16091 (flow_loops_free, flow_loop_free): Free the loop descriptions in gc
16092 memory.
16093 (establish_preds): Vector superloops is gc allocated.
16094 (alloc_loop): Allocate loop using GGC_CNEW. Allocate head of
16095 loop->exits list.
16096 (flow_loops_find): Vector larray is gc allocated.
16097 (loop_exit_free): Use ggc_free.
16098 (rescan_loop_exit): Use GGC_NEW to allocate struct loop_exit. Reflect
16099 that head of exits list is now not a part of struct loop.
16100 (record_loop_exits): Allocate exits table in gc memory.
16101 (get_loop_exit_edges, verify_loop_structure, single_exit): Reflect
16102 that head of exits list is now not a part of struct loop.
16103 * cfgloop.h (struct lpt_decision, struct nb_iter_bound,
16104 struct loop_exit): Add GTY marker.
16105 (struct loop): Add GTY marker. Make superloops vector gc allocated.
16106 Add skip marker to aux field. Make head of exits list a separate
16107 object.
16108 (struct loops): Add GTY marker. Make larray vector gc allocated.
16109 Add param marker to exits table.
16110 (get_loops): Type changed.
16111 * Makefile.in (tree-scalar-evolution.o): Add
16112 gt-tree-scalar-evolution.h dependency.
16113 (cfgloop.o, loop-init.o): Add ggc.h dependency.
16114 (GTFILES): Add cfgloop.h and tree-scalar-evolution.c.
16115 * basic-block.h (struct basic_block_def): Remove skip marker from
16116 loop_father field.
16117
16118 2007-05-14 Uros Bizjak <ubizjak@gmail.com>
16119
16120 * builtins.c (expand_builtin_mathfn): Use EXPAND_NORMAL instead
16121 of 0 in the call to expand_expr().
16122 (expand_builtin_mathfn_3): Ditto.
16123 (expand_builtin_interclass_mathfn): Ditto.
16124 (expand_builtin_cexpi): Ditto.
16125 (expand_builtin_int_roundingfn): Ditto.
16126 (expand_builtin_int_roundingfn_2): Ditto.
16127 (expand_builtin_pow): Ditto.
16128 (expand_builtin_powi): Ditto.
16129 (expand_builtin_bswap): Ditto.
16130 (expand_builtin_unop): Ditto.
16131 (expand_builtin_fabs): Ditto.
16132 (get_builtin_sync_mem): Use NULL_RTX instead of NULL in
16133 the call to expand_expr().
16134 (expand_builtin_sync_operation): Ditto.
16135 (expand_builtin_compare_and_swap): Ditto.
16136 (expand_builtin_lock_test_and_set): Ditto.
16137 * except.c (expand_builtin_eh_return_data_regno): Use EXPAND_NORMAL
16138 instead of 0 in the call to expand_expr().
16139 (expand_builtin_extract_return_addr): Ditto.
16140 (expand_builtin_eh_return): Ditto.
16141 (expand_eh_return): Ditto.
16142 * explow.c (expr_size): Ditto.
16143 * expr.c (optimize_bitfield_assignment_op): Ditto.
16144 (expand_assignement): Ditto.
16145 (store_expr): Ditto.
16146 (store_field): Ditto.
16147 (expand_expr_addr_expr_1): Use NULL_RTX instead of NULL in
16148 the call to expand_expr().
16149 (expand_expr_real_1) [COMPLEX_CST]: Use EXPAND_NORMAL instead of 0
16150 in the call to expand_expr().
16151 [CONSTRUCTOR, PLUS_EXPR, MINUS_EXPR, NEGATE_EXPR, ABS_EXPR,
16152 BIT_NOT_EXPR, LSHIFT_EXPR, LT_EXPR, TRUTH_NOT_EXPR]: Ditto.
16153 [VEC_UNPACK_HI_EXPR, VEC_UNPACK_LO]: Use expand_normal() instead
16154 of expand_expr().
16155 * optabs.c (expand_vec_shift_expr): Ditto.
16156 (expand_vec_cond_expr): Ditto.
16157 (vector_compare_rtx): Use EXPAND_STACK_PARM instead of 1 in the
16158 call to expand_expr().
16159 * stmt.c (expand_return): Use EXPAND_NORMAL instead of 0
16160 in the call to expand_expr().
16161
16162 2007-05-14 Dave Korn <dave.korn@artimi.com>
16163
16164 * genautomata.c (gen_regexp_el): Allocate correct size for regexp.
16165
16166 2007-05-14 Rafael Avila de Espindola <espindola@google.com>
16167
16168 * c-common.c (warnings_for_convert_and_check): Use unsigned_type_for
16169 instead of c_common_unsigned_type.
16170 (c_common_unsigned_type): Remove.
16171 (shorten_compare): Use c_common_signed_or_unsigned_type instead of
16172 c_common_unsigned_type.
16173 (c_common_nodes_and_builtins): Use unsigned_type_for instead of
16174 c_common_unsigned_type.
16175 * c-common.h (c_common_unsigned_type): Remove.
16176 * c-decl.c (grokdeclarator): Use unsigned_type_for instead of
16177 c_common_unsigned_type.
16178 * c-format.c (check_format_types): Use unsigned_type_for instead of
16179 c_common_unsigned_type.
16180 * c-objc-common.h (LANG_HOOKS_UNSIGNED_TYPE): Remove.
16181 * c-typeck.c (convert_for_assignment): Use unsigned_type_for instead
16182 of c_common_unsigned_type.
16183 * convert.c (convert_to_integer): Use unsigned_type_for instead of
16184 lang_hooks.types.unsigned_type.
16185 * expmed.c (make_tree): Use unsigned_type_for instead of
16186 lang_hooks.types.unsigned_type.
16187 * fold-const.c (fold_negate_expr): Use unsigned_type_for instead of
16188 lang_hooks.types.unsigned_type.
16189 (build_range_check): Likewise.
16190 (fold_unary): Likewise.
16191 (fold_binary): Likewise.
16192 (fold_ternary): Likewise.
16193 * langhooks-def.h (LANG_HOOKS_UNSIGNED_TYPE): Remove.
16194 * langhooks.h (lang_hooks_for_types): Remove unsigned_type.
16195 * tree.c (get_unsigned_type): New.
16196 (unsigned_type_for): Use get_unsigned_type instead of
16197 lang_hooks.types.unsigned_type.
16198
16199 2007-05-14 Kazu Hirata <kazu@codesourcery.com>
16200
16201 * config/m68k/m68k-protos.h: Rename m68k_interrupt_function_p
16202 to m68k_get_function_kind. Update its prototype.
16203 * config/m68k/m68k.c (m68k_attribute_table): Add an entry for
16204 interrupt_thread.
16205 (m68k_interrupt_function_p): Return enum m68k_function_type
16206 instead of bool. Rename to m68k_get_function_kind.
16207 (m68k_handle_fndecl_attribute): Reject interrupt_thread if the
16208 target is not fido.
16209 (m68k_compute_frame_layout): Don't mark any register for save
16210 if an interrupt_thread attribute is specified.
16211 (m68k_hard_regno_rename_ok): Update a use of
16212 m68k_interrupt_function_p.
16213 * config/m68k/m68k.h (EPILOGUE_USES): Update a use of
16214 m68k_interrupt_function_p.
16215 (m68k_function_type): New.
16216 * config/m68k/m68k.md (*return): Output a 'sleep' instruction
16217 for a function with an interrupt_thread attribute.
16218 * doc/extend.texi: Document the interrupt_thread attribute.
16219
16220 2007-05-13 Daniel Berlin <dberlin@dberlin.org>
16221
16222 Fix PR tree-optimization/31911
16223 * tree-ssa-pre.c (phi_translate): Make sure to cache results even
16224 if they didn't change the expression.
16225
16226 2007-05-13 Zdenek Dvorak <dvorakz@suse.cz>
16227
16228 * tree-scalar-evolution.c (resolve_mixers): Exported.
16229 * tree-scalar-evolution.h (resolve_mixers): Declare.
16230 * tree-data-ref.c (object_analysis, ptr_decl_may_alias_p,
16231 ptr_ptr_may_alias_p, may_alias_p, record_ptr_differ_p,
16232 record_record_differ_p, record_array_differ_p, array_ptr_differ_p,
16233 base_object_differ_p, base_addr_differ_p, analyze_array_indexes,
16234 init_array_ref, init_pointer_ref, analyze_indirect_ref,
16235 strip_conversion, analyze_offset_expr, address_analysis,
16236 object_analysis, analyze_offset): Removed.
16237 (dr_analyze_innermost, dr_analyze_indices, dr_analyze_alias,
16238 split_constant_offset, canonicalize_base_object_address,
16239 object_address_invariant_in_loop_p, disjoint_objects_p,
16240 dr_may_alias_p, dr_address_invariant_p): New functions.
16241 (create_data_ref): Use dr_analyze_innermost, dr_analyze_indices
16242 and dr_analyze_alias.
16243 (initialize_data_dependence_relation): Use dr_may_alias_p
16244 and object_address_invariant_in_loop_p.
16245 (compute_self_dependence): Handle the case when
16246 DDR_ARE_DEPENDENT (ddr) is chrec_dont_know.
16247 (find_data_references_in_stmt): Restrict the analysis of data
16248 references to the given loop nest.
16249 (find_data_references_in_loop): Made static. Pass loop nest to
16250 find_data_references_in_stmt.
16251 (compute_data_dependences_for_loop): Use DR_VOPS.
16252 (free_data_ref): Free DR_VOPS.
16253 * tree-data-ref.h (struct first_location_in_loop): Replaced by ...
16254 (struct innermost_loop_behavior): ... new.
16255 (struct base_object_info): Replaced by ...
16256 (struct indices): ... new.
16257 (struct dr_alias): New.
16258 (enum data_ref_type): Removed.
16259 (struct data_reference): Consist of struct innermost_loop_behavior,
16260 struct indices and struct dr_alias.
16261 (DR_SET_ACCESS_FNS, DR_FREE_ACCESS_FNS): Removed.
16262 (DR_MEMTAG): Renamed to ...
16263 (DR_SYMBOL_TAG): ... this.
16264 (find_data_references_in_loop): Declaration removed.
16265 * tree-vect-analyze.c (vect_compute_data_ref_alignment): Use DR_INIT
16266 instead of DR_OFFSET_MISALIGNMENT. DR_ALIGNED_TO is never NULL.
16267 (vect_analyze_data_refs): Use DR_SYMBOL_TAG instead of DR_MEMTAG.
16268 * tree-vect-transform.c (vect_create_data_ref_ptr): Ditto.
16269
16270 2007-05-13 Revital Eres <eres@il.ibm.com>
16271
16272 * tree-ssa-dse.c (get_use_of_stmt_lhs): New function
16273 which walks virtual def-use chains to find redundant stores.
16274 (dse_optimize_stmt): Call it.
16275
16276 2007-05-12 Steven Bosscher <steven@gcc.gnu.org>
16277
16278 * gcse.c (gcse_main): Do jump bypassing in CPROP2.
16279 * passes.c (init_optimization_passes): Move pass_jump_bypass
16280 after loop2.
16281
16282 * basic-block.h (bb_has_eh_pred): Fix style issue.
16283
16284 2007-05-12 Steven Bosscher <steven@gcc.gnu.org>
16285
16286 PR rtl-optimization/31848
16287 * loop-invariant.c (move_invariant_reg): If we move an insn
16288 with a REG_EQUAL note, and that insn is not always executed,
16289 remove the REG_EQUAL note.
16290
16291 2007-05-12 Richard Guenther <rguenther@suse.de>
16292
16293 PR tree-optimization/31797
16294 * tree-ssa-forwprop.c (forward_propagate_addr_expr): Do not
16295 propagate into a stmt that has volatile ops.
16296
16297 2007-05-12 Richard Sandiford <richard@codesourcery.com>
16298
16299 * configure.ac (gcc_gxx_include_dir): Use $(libsubdir_to_prefix).
16300 (gcc_tooldir): Likewise.
16301 * configure: Regenerate.
16302 * Makefile.in (libsubdir_to_prefix): New variable, based on the
16303 old configure.ac gcc_tooldir setting.
16304 (prefix_to_exec_prefix): New variable.
16305 (DRIVER_DEFINES): Use $(libsubdir_to_prefix)$(prefix_to_exec_prefix)
16306 rather than $(unlibsubdir)/../ to derive TOOLDIR_BASE_PREFIX.
16307
16308 2007-05-11 Silvius Rus <rus@google.com>
16309
16310 * Makefile.in (OBJS-common): Add tree-ssa-alias-warnings.o.
16311 * c-common.c (strict_aliasing_warning): Modify -Wstrict-aliasing logic.
16312 * c-common.h (strict_aliasing_warning): Change return type.
16313 * c-opts.c (c_common_handle_option): Add call to set_Wstrict_aliasing.
16314 * c-typeck.c (build_indirect_ref): Add call to strict_aliasing_warning.
16315 (build_c_cast): Condition call to strict_aliasing_warning.
16316 * doc/invoke.texi: Update description of -Wstrict-aliasing[=n].
16317 * flags.h (set_Wstrict_aliasing): Declare.
16318 * opts.c (set_Wstrict_alising): Define, add call to.
16319 * tree-flow.h (strict_aliasing_warning_backend): Declare.
16320 * tree-ssa-alias-warnings.c: New file.
16321 * tree-ssa-alias.c (compute_may_aliases): Add call to
16322 strict_aliasing_warning_backend.
16323
16324 2007-05-11 Zdenek Dvorak <dvorakz@suse.cz>
16325
16326 * tree-loop-linear.c (gather_interchange_stats, try_interchange_loops):
16327 Use loop_depth and loop_outer accessor functions.
16328 * tree-ssa-loop-im.c (outermost_invariant_loop, set_level,
16329 determine_invariantness_stmt, move_computations_stmt): Ditto.
16330 * cfgloopmanip.c (fix_bb_placement, fix_loop_placement, remove_path,
16331 add_loop, loopify, unloop, fix_loop_structure): Ditto.
16332 * tree-ssa-loop-manip.c (find_uses_to_rename_use): Ditto.
16333 * tree-scalar-evolution.c (interpret_loop_phi,
16334 compute_scalar_evolution_in_loop, analyze_scalar_evolution_in_loop,
16335 instantiate_parameters_1, scev_const_prop): Ditto.
16336 * cfghooks.c (make_forwarder_block): Ditto.
16337 * cfgloopanal.c (mark_irreducible_loops, mark_loop_exit_edges): Ditto.
16338 * modulo-sched.c (loop_canon_p): Ditto.
16339 * tree-vectorizer.c (slpeel_tree_duplicate_loop_to_edge_cfg,
16340 slpeel_can_duplicate_loop_p): Ditto.
16341 * lambda-code.c (invariant_in_loop_and_outer_loops): Ditto.
16342 * tree-cfg.c (tree_duplicate_sese_region): Ditto.
16343 * cfgloop.c (flow_loop_dump, flow_loop_nodes_find, rescan_loop_exit,
16344 cancel_loop, verify_loop_structure): Ditto.
16345 (flow_loop_nested_p, superloop_at_depth, flow_loop_free,
16346 add_bb_to_loop, remove_bb_from_loops, find_common_loop): Use the
16347 superloops vector instead of "pred" array.
16348 (establish_preds): Take father loop as an argument. Initialize the
16349 superloops vector.
16350 (flow_loop_tree_node_add): Pass father loop to establish_preds.
16351 Do not initialize loop->outer.
16352 (flow_loop_tree_node_remove): Truncate the superloops vector.
16353 * cfgloop.h (struct loop): Removed field "outer", fields "depth" and
16354 "pred" merged to "superloops" vector.
16355 (loop_depth, loop_outer): New.
16356 (fel_init): Use loop_outer.
16357
16358 2007-05-11 Jan Hubicka <jh@suse.cz>
16359
16360 * cgraphunit.c: Include gt-cgraphunit.h
16361 (static_ctors, static_dtors): New static vars.
16362 (record_cdtor_fn, build_cdtor, cgraph_build_cdtor_fns): New functions,
16363 based on implementation in c-common.c
16364 (cgraph_finalize_function): Call record_cdtor_fn.
16365 (cgraph_optimize): Call cgraph_build_cdtor_fns.
16366 * decl.c (finish_function): Do not call c_record_cdtor_fn.
16367 (c_write_global_declarations): Do not call c_build_cdtor_fns.
16368 * c-common.c (static_ctors, static_dtors, c_record_cdtor_fn,
16369 build_cdtor, c_build_cdtor_fns): Remove.
16370 * c-common.h (static_ctors, static_dtors, c_record_cdtor_fn,
16371 c_build_cdtor_fns): Remove prototype.
16372
16373 2007-05-11 Paolo Carlini <pcarlini@suse.de>
16374
16375 PR other/31852
16376 * builtin-types.def: Add BT_FN_PTR_CONST_PTR_INT_SIZE.
16377 * builtins.def: Add BUILT_IN_MEMCHR, use the latter.
16378 * builtins.c (fold_builtin_memchr): New.
16379 (expand_builtin_memchr): Call the latter.
16380 (expand_builtin, fold_builtin_3): Deal with BUILT_IN_MEMCHR.
16381 * doc/extend.texi ([Other built-in functions provided by GCC]):
16382 Document memchr.
16383
16384 2007-05-11 Andreas Krebbel <krebbel1@de.ibm.com>
16385
16386 * config/s390/s390.md (GPR0_REGNUM, FPR0_REGNUM, FPR2_REGNUM,
16387 PFPO_CONVERT, PFPO_OP_TYPE_SF, PFPO_OP_TYPE_DF, PFPO_OP_TYPE_TF,
16388 PFPO_OP_TYPE_SD, PFPO_OP_TYPE_DD, PFPO_OP_TYPE_TD, PFPO_OP0_TYPE_SHIFT,
16389 PFPO_OP1_TYPE_SHIFT): Constants added.
16390 (DFP_ALL): Mode macro defined.
16391 ("*trunc<BFP:mode><DFP_ALL:mode>2", "*trunc<DFP_ALL:mode><BFP:mode>2",
16392 "*extend<BFP:mode><DFP_ALL:mode>2", "*extend<DFP_ALL:mode><BFP:mode>2"):
16393 Insn definitions added.
16394 ("trunc<BFP:mode><DFP_ALL:mode>2", "trunc<DFP_ALL:mode><BFP:mode>2",
16395 "extend<BFP:mode><DFP_ALL:mode>2", "extend<DFP_ALL:mode><BFP:mode>2"):
16396 Expanders added.
16397
16398 2007-05-10 Zdenek Dvorak <dvorakz@suse.cz>
16399
16400 PR tree-optimization/31885
16401 * tree-chrec.c (chrec_contains_undetermined): Do not consider
16402 NULL_TREE to be undetermined.
16403 (automatically_generated_chrec_p): Return false for NULL.
16404
16405 2007-05-08 Bernd Schmidt <bernd.schmidt@analog.com>
16406
16407 * config/bfin/bfin.h (MOVE_RATIO): Define.
16408
16409 2007-05-10 Richard Sandiford <richard@codesourcery.com>
16410
16411 * config.gcc (sparc-wrs-vxworks): New target.
16412 * config/sparc/vxworks.h, config/sparc/t-vxworks: New files.
16413 * config/sparc/sparc-protos.h (sparc_emit_call_insn): Declare.
16414 * config/sparc/sparc.h: Include vxworks-dummy.h.
16415 (PRINT_OPERAND_ADDRESS): Extend SYMBOL_REF handling to
16416 include LABEL_REFs too.
16417 * config/sparc/sparc.c (sparc_expand_move): Don't assume that
16418 _GLOBAL_OFFSET_TABLE_ - label_ref is a link-time constant on
16419 VxWorks.
16420 (legitimize_pic_address): Handle LABEL_REFs like SYMBOL_REFs
16421 on VxWorks.
16422 (load_pic_register): Use gen_vxworks_load_got for VxWorks.
16423 (sparc_emit_call_insn): New function.
16424 (sparc_function_ok_for_sibcall): Restrict sibcalls to locally-binding
16425 functions when generating VxWorks PIC.
16426 * config/sparc/sparc.md (vxworks_load_got): New pattern.
16427 (call, call_value): Use sparc_emit_call_insn instead of
16428 emit_call_insn.
16429
16430 2007-05-09 Bob Wilson <bob.wilson@acm.org>
16431
16432 * config/xtensa/xtensa.c (xtensa_output_literal): Don't use #if.
16433
16434 2007-05-09 Bob Wilson <bob.wilson@acm.org>
16435
16436 * config/xtensa/xtensa.c (xtensa_output_literal): Mask out high bits
16437 for floating-point values if HOST_BITS_PER_LONG > 32. Use
16438 split_double instead of operand_subword.
16439
16440 2007-05-08 Bernd Schmidt <bernd.schmidt@analog.com>
16441
16442 * config/bfin/bfin.h (LOCAL_ALIGNMENT): Define.
16443 * config/bfin/bfin.c (bfin_local_alignment): New function.
16444 * config/bfin/bfin-protos.h (bfin_local_alignment): Declare it.
16445
16446 2007-05-08 Chao-ying Fu <fu@mips.com>
16447
16448 * doc/md.texi (msub@var{m}@var{n}4, usub@var{m}@var{n}4): Document.
16449 * optabs.h (OTI_smsub_widen, OTI_umsub_widen): New optab_indexes.
16450 (smsub_widen_optab, umsub_widen_optab): Define.
16451 * optabs.c (init_optabs): Initialize smsub_widen_optab and
16452 umsub_widen_optab.
16453 * genopinit.c (optabs): Fill in smsub_widen_optab and
16454 umsub_widen_optab.
16455 * expr.c (expand_expr_real_1): Try to use smsub_widen_optab
16456 and umsub_widen_optab to implement multiply-subtract sequences.
16457 * config/mips/mips.md (*msac<u>_di): Rename to...
16458 (<u>msubsidi4): ...this. Extend condition to include
16459 GENERATE_MADD_MSUB and TARGET_DSPR2. Change the constraint
16460 of operand 0 to "ka" and use the three-operand form of msub<u>
16461 for TARGET_DSPR2.
16462 * config/mips/mips-dspr2.md (mips_msub, mips_msubu): Convert
16463 to define_expands.
16464
16465 2007-05-08 Kaz Kojima <kkojima@gcc.gnu.org>
16466
16467 PR rtl-optimization/28011
16468 * reload.c (push_reload): Set dont_share if IN appears in OUT
16469 also when IN is a PLUS rtx.
16470 (reg_overlap_mentioned_for_reload_p): Return true if X and IN
16471 are same PLUS rtx.
16472
16473 2007-05-08 Kazu Hirata <kazu@codesourcery.com>
16474
16475 * emit-rtl.c (unshare_all_rtl_1): Don't copy DECL_RTL. Don't
16476 call unshare_all_decls.
16477 (unshare_all_rtl): Adjust the call to unshare_all_rtl_1.
16478 (unshare_all_decls): Remove.
16479
16480 2007-05-08 Simon Martin <simartin@users.sourceforge.net>
16481
16482 PR 31847
16483 * tree-dump.c (dump_options): Don't use TDF_DIAGNOSTIC in "*-all" tree
16484 dumps.
16485
16486 2007-05-08 Sandra Loosemore <sandra@codesourcery.com>
16487 Nigel Stephens <nigel@mips.com>
16488
16489 * config/mips/mips.h (MAX_FPRS_PER_FMT): Renamed from FP_INC.
16490 Update comments and all uses.
16491 (MIN_FPRS_PER_FMT): Define.
16492 * config/mips/mips.c (function_arg): Fix to correctly handle
16493 the -mips32r2 -mfp64 -mabi=32 case.
16494 (override_options): Enable use of odd-numbered registers for
16495 SFmode values on MIPS32.
16496 (mips_save_reg_p): Save whole floating-point register pair if
16497 either half is used.
16498 (compute_frame_size): Fix comment.
16499
16500 2007-05-08 Jie Zhang <jie.zhang@analog.com>
16501
16502 * config/bfin/bfin-protos.h (bfin_expand_epilogue): Add a third
16503 argument of type bool.
16504 * config/bfin/bfin.c (add_to_reg): Add epilogue_p as a fourth
16505 argument. Safely select temporary P register according to it.
16506 (do_link): Change call site of add_to_reg accordingly.
16507 (do_unlink): Add epilogue_p as a fourth argument and pass it
16508 to add_to_reg.
16509 (expand_interrupt_handler_epilogue): Change call of do_unlink
16510 accordingly.
16511 (bfin_expand_prologue): Add a third argument sibcall_p.
16512 * config/bfin/bfin.md (epilogue): Change call of
16513 bfin_expand_epilogue accordingly.
16514 (sibcall_epilogue): Likewise.
16515 (eh_return_internal): Likewise.
16516
16517 * config/bfin/bfin-protos.h (enum bfin_cpu): Add
16518 BFIN_CPU_BF534, BFIN_CPU_BF536 and BFIN_CPU_BF561.
16519 * config/bfin/bfin.c (bfin_handle_option): Handle
16520 -mcpu=bf534, -mcpu=bf536 and -mcpu=bf561.
16521 * config/bfin/bfin.h (TARGET_CPU_CPP_BUILTINS):
16522 Support bf534, bf536 and bf561.
16523 * doc/invoke.texi (Blackfin Options): Document -mcpu and -msim.
16524
16525 2007-05-08 Uros Bizjak <ubizjak@gmail.com>
16526
16527 PR target/31854
16528 * config/i386/i386.c (ix86_function_regparm): Process local
16529 functions only when TREE_CODE (decl) equals FUNCTION_DECL.
16530
16531 2007-05-07 Mike Stump <mrs@apple.com>
16532
16533 * doc/invoke.texi (Warning Options): Document that -Wempty-body
16534 also checks for and while statements in C++.
16535
16536 2007-05-07 Nathan Froyd <froydnj@codesourcery.com>
16537
16538 * gcc.c (at_file_supplied): New variable.
16539 (main): Set it if we expanded argv.
16540 (do_spec_1): Pass an @-file to the linker if we were called with
16541 an @-file argument and HAVE_GNU_LD.
16542 * collect2.c (at_file_supplied): New variable.
16543 (response_file): New variable.
16544 (collect_exit): Unlink response_file if necessary.
16545 (handler): Likewise.
16546 (do_wait): Likewise.
16547 (main): Set at_file_supplied if we expanded argv.
16548 (collect_execute): Pass an @-file to subprocesses if we were called
16549 with an @-file argument.
16550 * configure.ac: Add define for HAVE_GNU_LD.
16551 * configure: Regenerate.
16552 * config.in: Regenerate.
16553
16554 2007-05-07 Naveen.H.S <naveen.hs@kpitcummins.com>
16555
16556 * config/m32c/muldiv.md (mulhisi3_c): Limit the mode of the 2nd
16557 operand to HI mode.
16558 (mulsi3): New.
16559 (divsi3): New.
16560 (udivsi3): New.
16561
16562 2007-05-07 Jayant Sonar <jayants@kpitcummins.com>
16563
16564 * config/m32c/m32c.c (SYMBOL_FLAG_FUNCVEC_FUNCTION): Define.
16565 (TARGET_ENCODE_SECTION_INFO): Re-define.
16566 (m32c_encode_section_info): New
16567 (function_vector_handler): New
16568 (current_function_special_page_vector): New
16569 (m32c_special_page_vector_p): New.
16570 * config/m32c/m32c-protos.h (m32c_special_page_vector_p):
16571 Prototype.
16572 * config/m32c/jump.md: Added instruction JSRS for functions
16573 with attribute "function_vector".
16574 * doc/extend.texi (function_vector): Added description
16575 for M16C, M32C targets.
16576
16577 2007-05-07 DJ Delorie <dj@redhat.com>
16578
16579 PR 31794
16580 * config/m32c/shift.md (ashlpsi3_i, ashrpsi3_i, ashlpsi3,
16581 ashrpsi3, lshrpsi3): Update shift count constraint.
16582
16583 2007-05-07 Danny Smith <dannysmith@users.sourceforge.net>
16584 Nathan Froyd <froydnj@codesourcery.com>
16585
16586 PR 22133
16587 * c-incpath.c (add_path): Strip trailing path separators.
16588
16589 2007-05-07 Eric Botcazou <ebotcazou@adacore.com>
16590
16591 * tree-ssa-dom.c (tree_ssa_dominator_optimize): Reset cfg_altered.
16592 Free dominance info before purging EH edges.
16593 (eliminate_degenerate_phis): Likewise.
16594 (propagate_rhs_into_lhs): Set cfg_altered to true instead of 1.
16595
16596 2007-05-07 Jan Hubicka <jh@suse.cz>
16597
16598 * gimplify.c (gimplify_expr): Do not crash when folding
16599 (void *)(int)&a + 4.
16600
16601 2007-05-07 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
16602
16603 PR driver/31694
16604 * c-opts.c (lang_fortran): Make it non static.
16605 * c-common.h (lang_fortran): New prototype.
16606 * c-cppbuiltin.c (c_cpp_builtins): Create a __GFORTRAN__ if the
16607 -lang-fortran option was passed by the driver.
16608
16609 2007-05-06 Eric Botcazou <ebotcazou@adacore.com>
16610
16611 * timevar.c (timevar_print): Test ENABLE_ASSERT_CHECKING instead
16612 of ASSERT_CHECKING. Tweak message.
16613
16614 2007-05-06 Revital Eres <eres@il.ibm.com>
16615
16616 PR 30957
16617 * loop-unroll.c (insert_var_expansion_initialization):
16618 Initialize the expansions with -zero instead of +zero.
16619
16620 2007-05-05 Aurelien Jarno <aurelien@aurel32.net>
16621
16622 * config/pa/pa.md: Split tgd_load, tld_load and tie_load
16623 into pic and non-pic versions. Mark r19 as used for
16624 tgd_load_pic, tld_load_pic and tie_load_pic. Mark r27 as used
16625 for tgd_load, tld_load and tie_load .
16626 * config/pa/pa.c (legitimize_tls_address): Emit pic or non-pic
16627 version of tgd_load, tld_load and tie_load depending on the
16628 value of flag_pic.
16629
16630 2007-05-04 Ulrich Drepper <drepper@redhat.com>
16631 Jakub Jelinek <jakub@redhat.com>
16632
16633 * crtstuff.c (HIDDEN_DTOR_LIST_END): New macro.
16634 (__do_global_dtors_aux): Use more paranoid loop to run
16635 destructors if HIDDEN_DTOR_LIST_END.
16636 (__DTOR_END__): Export as a hidden symbol when HIDDEN_DTOR_LIST_END.
16637
16638 2007-05-04 Jakub Jelinek <jakub@redhat.com>
16639
16640 * varasm.c (align_variable): Don't increase alignment for
16641 DECL_THREAD_LOCAL_P variables above BITS_PER_WORD through
16642 DATA_ALIGNMENT or CONSTANT_ALIGNMENT.
16643
16644 2007-05-04 Josh Conner <jconner@apple.com>
16645
16646 * basic-block.h (cdi_direction): Assign values to all enumeration
16647 constants.
16648 (dom_computed): Remove.
16649 (dom_info_state): New.
16650 (set_dom_info_availability): New.
16651 * tree-ssa-loop-im.c (determine_invariantness): Initialize
16652 walk_data.dom_direction.
16653 * cfghooks.c (delete_basic_block): Use dom_info_available_p()
16654 instead of dom_computed[].
16655 (split_edge): Likewise.
16656 (create_basic_block): Likewise.
16657 (merge_blocks): Likewise.
16658 * ifcvt.c (find_if_header): Likewise.
16659 * tree-cfgcleanup.c (cleanup_tree_cfg): Likewise.
16660 * tree-ssa-dce.c (remove_dead_stmt): Likewise.
16661 * tree-ssa.c (verify_ssa): Likewise.
16662 * tree-cfg.c (tree_verify_flow_info): Likewise.
16663 (remove_edge_and_dominated_blocks): Likewise.
16664 * dominance.c (dom_computed): Make static.
16665 (calc_dfs_tree_nonrec): Change third param to a bool.
16666 (calc_dfs_tree): Change second param to a bool.
16667 (calc_idioms): Change second param to a bool. Use
16668 dom_convert_dir_to_idx.
16669 (init_dom_info): Validate dir before using.
16670 (dom_convert_dir_to_idx): New.
16671 (calculate_dominance_info): Use dom_convert_dir_to_idx. New
16672 variable 'reverse' used for calling calc_dfs_tree and calc_idoms.
16673 (free_dominance_info): Use dom_convert_dir_to_idx.
16674 (get_immediate_dominator): Likewise.
16675 (set_immediate_dominator): Likewise.
16676 (get_dominated_by): Likewise.
16677 (redirect_immediate_dominators): Likewise.
16678 (nearest_common_denominator): Likewise.
16679 (dominated_by_p): Likewise.
16680 (bb_dom_dfs_in): Likewise.
16681 (bb_dom_dfs_out): Likewise.
16682 (recount_dominator): Likewise.
16683 (iterate_fix_dominators): Likewise.
16684 (add_to_dominance_info): Likewise.
16685 (delete_from_dominance_info): Likewise.
16686 (first_dom_son): Likewise.
16687 (next_dom_son): Likewise.
16688 (dom_info_available_p): Likewise.
16689 (dom_info_state): New.
16690 (set_dom_info_availability): New.
16691
16692 2007-05-04 Andreas Krebbel <krebbel1@de.ibm.com>
16693
16694 * config/s390/s390.md ("fix_trunc<mode>di2", "fix_trunc<mode>si2"):
16695 Expander removed.
16696 ("fix_trunc<DSF:mode><GPR:mode>2"): Expander added.
16697
16698 2007-05-04 Bob Wilson <bob.wilson@acm.org>
16699
16700 * config/xtensa/xtensa.md (adddi3, adddi_carry): Delete.
16701 (subdi3, subdi_carry): Delete.
16702
16703 2007-05-04 Jan Hubicka <jh@suse.cz>
16704 Richard Guenther <rguenther@suse.de>
16705
16706 * opts.c (decode_options): Do not fiddle with inlining
16707 parameters in case of optimizing for size.
16708 * ipa-inline.c (cgraph_decide_recursive_inlining): When optimizing
16709 for size do nothing.
16710 (cgraph_decide_inlining_of_small_function): When optimizing for
16711 size never inline functions increasing caller size.
16712 (cgraph_early_inlining): Inline for size when optimizing for size.
16713
16714 2007-05-04 Bernd Schmidt <bernd.schmidt@analog.com>
16715
16716 * config/bfin/bfin.md (<optab>di3): Now a define_expand which expands
16717 logical operations piecewise.
16718 (<optab>di_zesidi_di, <optab>di_sesidi_di, negdi2, one_cmpldi2,
16719 zero_extendsidi2, subdi_di_zesidi, subdi_zesidi_di, subdi_di_sesidi,
16720 subdi_sesidi_di): Delete.
16721 (add_with_carry): Produce carry in CC instead of a DREG to shorten
16722 the generated sequence. Allow three-reg add in constraints. Rewrite
16723 the rtl expression for carry to avoid zero_extend of a constant.
16724 (sub_with_carry): New pattern.
16725 (adddi3, subdi3): Change into define_expand. For subtract, generate a
16726 different sequence not involving jumps.
16727 (notbi): Now a named pattern.
16728
16729 2007-05-04 Bradley Lucier <lucier@math.purdue.edu>
16730
16731 * doc/invoke.texi (i386 and x86-64 Options) [-mpc32, -mpc64, -mpc80]:
16732 Add the note about a significant loss of accuracy of some
16733 mathematical routines when these options are used.
16734
16735 2007-05-04 Maxim Kuvyrkov <mkuvyrkov@ispras.ru>
16736
16737 * haifa-sched.c (rtx_vec_t): New typedef.
16738 (contributes_to_priority_p): Extract piece of priority () into new
16739 static function.
16740 (priority): Use the function. Add assertion.
16741 (rank_for_schedule, set_priorities): Add assertion to check that
16742 insn's priority is initialized.
16743 (clear_priorities, calc_priorities): Change signature. Make it update
16744 all relevant insns. Update all callers ('add_to_speculative_block ()'
16745 and 'create_block_check_twin ()').
16746 * sched-int.h (struct haifa_insn_data): Remove field 'priority_known'.
16747 Add new field 'priority_status'.
16748 (INSN_PRIORITY_STATUS): New macro.
16749 (INSN_PRIORITY_KNOWN): Change to use INSN_PRIORITY_STATUS.
16750
16751 2007-05-04 Maxim Kuvyrkov <mkuvyrkov@ispras.ru>
16752
16753 * sched-ebb.c (debug_ebb_dependencies): New static function.
16754 (init_ready_list): Use it.
16755
16756 * sched-rgn.c (debug_dependencies): Split into 'debug_dependencies ()'
16757 with changed signature and 'debug_rgn_dependencies ()'.
16758 (debug_rgn_dependencies): New static function.
16759 (init_ready_list): Use it.
16760
16761 * sched-int.h (debug_dependencies): Declare.
16762
16763 2007-05-04 Andreas Krebbel <krebbel1@de.ibm.com>
16764
16765 * libgcc-std.ver (__ffssi2): Added to GCC_4.3.0 section.
16766
16767 2007-05-04 Dirk Mueller <dmueller@suse.de>
16768
16769 * c.opt(Wmain,ffreestanding): Enable for C++,ObjC++.
16770
16771 2007-05-03 Jan Hubicka <jh@suse.cz>
16772
16773 * fold-const.c (fold_unary): Convert (T1)(X op Y) into
16774 ((T1)X op (T1)Y), for pointer type in more cases than before.
16775
16776 * gimplify.c (gimplify_expr): Fold (void *)&a + 4.
16777
16778 * tree-object-size.c (plus_expr_object_size): When operand size is
16779 unknown, return unknown.
16780
16781 2007-05-03 Dirk Mueller <dmueller@suse.de>
16782
16783 * doc/invoke.texi (-m386,-m486,-mpentium,-mpentiumpro): Remove.
16784
16785 * config/i386/i386.h (CC1_CPU_SPEC): Remove handling for deprecated
16786 options.
16787
16788 * config/i386/i386.opt (m386,m486,mpentium,mpentiumpro): Remove.
16789
16790 2007-05-03 Janis Johnson <janis187@us.ibm.com>
16791
16792 * doc/sourcebuild.texi (Test Directives) Clarify dg-excess-errors.
16793
16794 2007-05-03 Joseph Myers <joseph@codesourcery.com>
16795
16796 * config/soft-fp/double.h, config/soft-fp/extended.h,
16797 config/soft-fp/floatundidf.c, config/soft-fp/floatundisf.c,
16798 config/soft-fp/floatunsidf.c, config/soft-fp/floatunsisf.c,
16799 config/soft-fp/op-2.h, config/soft-fp/op-4.h,
16800 config/soft-fp/op-common.h, config/soft-fp/quad.h: Update from
16801 glibc CVS.
16802
16803 2007-05-03 Ian Lance Taylor <iant@google.com>
16804
16805 * config/rs6000/rs6000.c (rs6000_override_options): Don't set
16806 MASK_PPC_GFXOPT for 8540 or 8548.
16807
16808 2007-05-03 Uros Bizjak <ubizjak@gmail.com>
16809
16810 * tree-vect-transform.c (vect_update_inits_of_drs): Use
16811 vect_print_dump_info() to output debug information.
16812
16813 2007-05-03 Uros Bizjak <ubizjak@gmail.com>
16814
16815 PR target/31768
16816 * config/i386/i386.c (print_operand) ['z']: Output 'w' for
16817 operands of size 2 when operand is not MEM_P.
16818
16819 2007-05-03 Zdenek Dvorak <dvorakz@suse.cz>
16820
16821 PR tree-optimization/30565
16822 * lambda-code.c (perfect_nestify): Fix updating of dominators.
16823
16824 2007-05-03 Bernd Schmidt <bernd.schmidt@analog.com>
16825
16826 * config/bfin/bfin.md (addpdi3, us_truncpdisi2): New patterns.
16827 (umulsi3_highpart): Use them.
16828 * config/bfin/lib1funcs.asm (__umulsi3_highpart): Use unsigned move
16829 for final accumulator to D regisster tranfser.
16830
16831 2007-05-03 Dorit Nuzman <dorit@il.ibm.com>
16832
16833 PR tree-optimization/31699
16834 * tree-vect-analyze.c (vect_update_misalignment_for_peel): Remove
16835 wrong code.
16836 (vect_enhance_data_refs_alignment): Compute peel amount using
16837 TYPE_VECTOR_SUBPARTS instead of vf.
16838 * tree-vect-transform.c (vect_gen_niters_for_prolog_loop): Likewise.
16839
16840 2007-05-02 Brooks Moses <brooks.moses@codesourcery.com>
16841
16842 PR bootstrap/31776
16843 * system.h: Remove inclusion of double-int.h
16844 * tree.h: Include double-int.h
16845 * gengtype.c: Likewise
16846 * cfgloop.h: Likewise
16847 * Makefile.in: Adjust dependencies on double-int.h
16848
16849 2007-05-02 Eric Christopher <echristo@apple.com>
16850
16851 * config/darwin.h (TARGET_OPTION_TRANSLATE_TABLE): Translate
16852 -shared to -Zdynamiclib.
16853
16854 2007-05-02 Seongbae Park <seongbae.park@gmail.com>
16855
16856 PR c++/31663
16857 * c-common.c (strip_pointer_or_array_types): New function.
16858 * c-common.h (strip_pointer_or_array_types): New function declaration.
16859
16860 2007-05-03 Zdenek Dvorak <dvorakz@suse.cz>
16861
16862 PR tree-optimization/31771
16863 * tree-cfg.c (move_block_to_fn): Assign bb to the correct index.
16864
16865 2007-05-02 Paul Brook <paul@codesourcery.com>
16866
16867 * config/arm/bpabi.S (aeabi_lcmp): Fix result on overflow.
16868
16869 2007-05-02 Andrew Pinski <andrew_pinski@playstation.sony.com>
16870
16871 PR middle-end/29715
16872 * fold-const.c (fold_comparision): Remove the "foo++ == CONST"
16873 transformation.
16874
16875 2007-05-02 Nick Clifton <nickc@redhat.com>
16876
16877 * config/frv/predicates.md (symbolic_operand): Accept CONSTs.
16878
16879 2007-05-02 Richard Guenther <rguenther@suse.de>
16880
16881 PR tree-optimization/31146
16882 * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): New
16883 argument, single_use_p. If we have a single use that is
16884 a conversion to the definition rhs type, propagate that rhs.
16885 (forward_propagate_addr_expr): Pass single_use_p argument
16886 to forward_propagate_addr_expr_1.
16887
16888 2007-05-01 H.J. Lu <hongjiu.lu@intel.com>
16889
16890 * config/i386/i386.c (ix86_expand_sse_comi): Remove unused
16891 variable.
16892
16893 2007-05-01 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
16894
16895 * doc/invoke.texi: Fix typo, 'AMD Family 10h core' instead of
16896 'AMD Family 10 core'.
16897
16898 2007-05-01 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
16899
16900 * config/i386/i386.c (override_options): Accept k8-sse3, opteron-sse3
16901 and athlon64-sse3 as improved versions of k8, opteron and athlon64
16902 with SSE3 instruction set support.
16903 * doc/invoke.texi: Likewise.
16904
16905 2007-05-01 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
16906
16907 * config/i386/i386.c (override_options): Tuning 32-byte loop
16908 alignment for amdfam10 architecture. Increasing the max loop
16909 alignment to 24 bytes.
16910
16911 2007-05-01 Kazu Hirata <kazu@codesourcery.com>
16912
16913 * config/m68k/constraints.md: New.
16914 * config/m68k/m68k.h (REG_CLASS_FROM_LETTER,
16915 CONST_OK_FOR_LETTER_P, CONST_DOUBLE_OK_FOR_LETTER_P,
16916 EXTRA_CONSTRAINT): Remove.
16917 * config/m68k/m68k.md: Include constraints.md.
16918 * expr.c (expand_expr_real_1): Copy DECL_RTL before using it.
16919
16920 2007-05-01 Ian Lance Taylor <iant@google.com>
16921
16922 PR tree-optimization/31739
16923 * tree-vrp.c (vrp_val_is_max): New static function.
16924 (vrp_val_is_min): New static function.
16925 (set_value_range_to_value): Use TYPE_{MAX,MIN}_VALUE rather than
16926 copying the node.
16927 (set_value_range): Use vrp_val_is_{max,min}.
16928 (extract_range_from_assert): Likewise.
16929 (extract_range_from_binary_expr): Likewise.
16930 (extract_range_from_unary_expr): Likewise.
16931 (dump_value_range, vrp_meet): Likewise.
16932 (vrp_visit_phi_node): Likewise.
16933 * tree.c (build_distinct_type_copy): Revert change of 2007-04-27.
16934
16935 2007-05-01 Mark Mitchell <mark@codesourcery.com>
16936
16937 * config/i386/gmon-sol2.c (size_t): New type.
16938 (intptr_t): Likewise.
16939 (s_textsize): Declare as size_t.
16940 (sbrk): Declare.
16941 (monstartup): Use size_t for sizes.
16942 (_mcount): Save and restore registers.
16943 (internal_mcount): Pass 0 as the first argument to monstartup
16944 in 64-bit mode.
16945 (moncontrol): Convert pointer to appropriately sized integer
16946 before passing to profil.
16947
16948 2007-05-01 Joseph Myers <joseph@codesourcery.com>
16949
16950 * config/rs6000/darwin-ldouble.c (__gcc_qunord): Define if
16951 __NO_FPRS__, not just if _SOFT_DOUBLE.
16952 * config/rs6000/libgcc-ppc-glibc.ver (__gcc_qunord): Likewise.
16953 * config/rs6000/rs6000.c (rs6000_init_libfuncs): Use __gcc_qunord
16954 also for E500 double.
16955 * config/rs6000/rs6000.md (buneq, bunge, bungt, bunle, bunlt,
16956 suneq, sunge, sungt, sunle, sunlt): Disable for (TARGET_HARD_FLOAT
16957 && !TARGET_FPRS).
16958
16959 2007-05-01 Richard Guenther <rguenther@suse.de>
16960
16961 * tree-ssa-loop-manip.c (ip_normal_pos): Check if last stmt
16962 is NULL.
16963
16964 2007-05-01 Joseph Myers <joseph@codesourcery.com>
16965
16966 * config/rs6000/libgcc-ppc-glibc.ver (__gcc_qgt): Fix typo.
16967
16968 2007-05-01 Jan Hubicka <jh@suse.cz>
16969
16970 * tree-vectorize.c (vect_is_simple_use): gimple_min_invariant is
16971 invariant.
16972
16973 2007-05-01 Jan Hubicka <jh@suse.cz>
16974
16975 * tree.h (maybe_fold_offset_to_component_ref): Remove.
16976 (maybe_fold_offset_to_reference): Declare.
16977 * fold-const.c (fold_unary): Do not fold
16978 (type *)&A into &A->field_of_type_and_offset_0
16979 * tree-ssa-ccp.c (maybe_fold_offset_to_array_ref): When base type
16980 size is unknown, give up.
16981 (maybe_fold_offset_to_component_ref): Ignore firelds with unknown
16982 offsets.
16983 (maybe_fold_offset_to_reference): New.
16984 (maybe_fold_stmt_indirect): Use it.
16985 (fold_stmt_r): Fold (type *)&A+offset into A->field_if_type_and_offset.
16986 * gimplify.c (gimplify_conversion): Canonicalize conversions to
16987 field references.
16988 (gimplify_expr): Likewise for plus_expr.
16989
16990 2007-05-01 Zdenek Dvorak <dvorakz@suse.cz>
16991
16992 * tree-ssa-loop-ivopts.c (rewrite_use_nonlinear_expr): Use
16993 bsi_after_labels. Always insert statements before bsi.
16994 * tree-vect-transform.c (vect_create_epilog_for_reduction): Ditto.
16995 * predict.c (apply_return_prediction): Check for empty blocks.
16996 * cfgexpand.c (lab_rtx_for_bb): New variable.
16997 (label_rtx_for_bb): Do not create new tree labels.
16998 (expand_gimple_basic_block): Add labels recorded in lab_rtx_for_bb.
16999 (tree_expand_cfg): Initialize lab_rtx_for_bb.
17000 * tree-cfg.c (build_tree_cfg): Call cleanup_dead_labels after
17001 creating edges.
17002 (label_for_bb): Add field used.
17003 (update_eh_label, main_block_label): Mark the label used.
17004 (cleanup_dead_labels): Remove unused labels.
17005
17006 2007-05-01 Richard Guenther <rguenther@suse.de>
17007
17008 * tree-vrp.c (set_value_range): Do not allocate equiv bitmap
17009 if it is not about to be set.
17010 (get_value_range): Do not pre-allocate equiv bitmap.
17011 (update_value_range): No need to clear equiv field.
17012 (add_equivalence): Change prototype to get bitmap pointer.
17013 Allocate bitmap here if it is not already.
17014 (extract_range_from_assert): Do not allocate bitmap here.
17015 Update callers to add_equivalence.
17016 (extract_range_from_ssa_name): Likewise.
17017 (get_vr_for_comparison): New static helper.
17018 (compare_name_with_value): Handle NULL equiv bitmap by
17019 peeling the first iteration of the comparison loop.
17020 Use get_vr_for_comparison.
17021 (compare_names): Handle NULL equiv bitmaps by using fake
17022 ones. Use get_vr_for_comparison.
17023
17024 2007-04-30 Brooks Moses <brooks.moses@codesourcery.com>
17025
17026 * double-int.c (mpz_set_double_int): Moved from
17027 tree-ssa-loop-niter.c.
17028 (mpz_get_double_int): Likewise; also, add option to wrap
17029 out-of-range integers.
17030 * double-int.h: New prototypes for above.
17031 * tree.c (get_static_type_bounds): Moved from
17032 tree-ssa-loop-niter.c; now returns TYPE_MIN_VALUE and
17033 TYPE_MAX_VALUE if they exist..
17034 * tree.h: New prototype for above.
17035 * tree-ssa-loop-niter.c: Adjust mpz_to_double_int and
17036 get_type_bounds calls.
17037 (mpz_set_double_int): Move to double-int.c.
17038 (get_type_bounds): Move to tree.c, rename to
17039 get_static_type_bounds.
17040 (mpz_to_double_int): Move to double-int.c, rename to
17041 mpz_get_double_int.
17042
17043 2007-04-30 Bob Wilson <bob.wilson@acm.org>
17044
17045 * config/xtensa/lib1funcs.asm (__umodsi3, __modsi3): Rearrange so that
17046 DIV0 exception can fall through to a normal return.
17047
17048 2007-04-30 Alexandre Oliva <aoliva@redhat.com>
17049
17050 PR middle-end/22156
17051 Temporarily revert:
17052 2007-04-06 Andreas Tobler <a.tobler@schweiz.org>
17053 * tree-sra.c (sra_build_elt_assignment): Initialize min/maxshift.
17054 2007-04-05 Alexandre Oliva <aoliva@redhat.com>
17055 * tree-sra.c (try_instantiate_multiple_fields): Needlessly
17056 initialize align to silence bogus warning.
17057 2007-04-05 Alexandre Oliva <aoliva@redhat.com>
17058 * tree-sra.c (struct sra_elt): Add in_bitfld_block. Remove
17059 all_no_warning.
17060 (struct sra_walk_fns): Remove use_all parameter from use.
17061 (sra_hash_tree): Handle BIT_FIELD_REFs.
17062 (sra_elt_hash): Don't hash bitfld blocks.
17063 (sra_elt_eq): Skip them in parent compares as well. Handle
17064 BIT_FIELD_REFs.
17065 (sra_walk_expr): Don't maintain or pass down use_all_p.
17066 (scan_use): Remove use_all parameter.
17067 (scalarize_use): Likewise. Re-expand assignment to
17068 BIT_FIELD_REF of gimple_reg. De-scalarize before input or
17069 output, and re-scalarize after output. Don't mark anything
17070 for no warning.
17071 (scalarize_ldst): Adjust.
17072 (scalarize_walk_gimple_modify_statement): Likewise.
17073 (build_element_name_1): Handle BIT_FIELD_REFs.
17074 (instantiate_element): Don't warn for any element whose parent
17075 is used as a whole.
17076 (instantiate_missing_elements_1): Return the sra_elt.
17077 (canon_type_for_field): New.
17078 (try_instantiate_multiple_fields): New.
17079 (instantiate_missing_elemnts): Use them.
17080 (mark_no_warning): Removed.
17081 (generate_one_element_ref): Handle BIT_FIELD_REFs.
17082 (REPLDUP, sra_build_elt_assignment): New.
17083 (generate_copy_inout): Use them.
17084 (generate_element_copy): Likewise. Handle bitfld differences.
17085 (generate_element_zero): Don't recurse for blocks. Use
17086 sra_build_elt_assignment.
17087 (generate_one_element_int): Take elt instead of var. Use
17088 sra_build_elt_assignment.
17089 (generate_element_init_1): Adjust.
17090 (scalarize_use, scalarize_copy): Use REPLDUP.
17091 (scalarize_ldst): Move assert before dereference.
17092 (dump_sra_elt_name): Handle BIT_FIELD_REFs.
17093
17094 2007-04-30 Andrew Pinski <andrew_pinski@playstation.sony.com>
17095
17096 PR C++/31721
17097 * tree.c (reconstruct_complex_type): Reconstruct a reference
17098 correctly.
17099 Also use the same mode for the pointer as the old pointer type.
17100
17101 2007-04-30 Francois-Xavier Coudert <coudert@clipper.ens.fr>
17102
17103 * doc/trouble.texi (Interoperation): Remove note about Ultrix
17104 Fortran compiler.
17105
17106 2007-04-29 Zdenek Dvorak <dvorakz@suse.cz>
17107
17108 PR rtl-optimization/31676
17109 * df-scan.c (record_nonlocal_goto_receiver_defs): New function.
17110 (df_refs_record): Call it.
17111
17112 2007-04-29 Bernd Schmidt <bernd.schmidt@analog.com>
17113
17114 * rtl.def (SS_ABS): New code.
17115 * config/bfin/bfin.c (print_operand): New modifier 'v'.
17116 (enum bfin_builtins): Add BFIN_BUILTIN_SUM_2X16, BFIN_BUILTIN_ABS_1x32,
17117 BFIN_BUILTIN_ROUND_1x32, BFIN_BUILTIN_MULT_1x32x32,
17118 BFIN_BUILTIN_MULT_1x32x32NS, BFIN_BUILTIN_SSASHIFT_1x32.
17119 (bfin_init_builtins): Define them.
17120 (bdesc_1arg, bdesc_2arg): Add some of them here, ...
17121 (bfin_expand_builtin): ... and handle the others here.
17122 * config/bfin/bfin.md (ssabssi2, ssroundsi2, ssashiftsi3,
17123 flag_mul_macv2hi_parts_acconly_andcc0): New patterns.
17124 (ss_absv2hi2): Renamed from absv2hi; use ss_abs code.
17125 (ssashiftv2hi3, ssashifthi3, lshiftv2hi3, lshifthi3): Shift count
17126 operand is only HImode.
17127
17128 2007-04-29 Steven Bosscher <steven@gcc.gnu.org>
17129
17130 * regclass.c (scan_one_insn): Remove splitting of
17131 two address insns.
17132
17133 2007-04-28 Sandra Loosemore <sandra@codesourcery.com>
17134 Nigel Stephens <nigel@mips.com>
17135
17136 * config/mips/mips.h (SLOW_BYTE_ACCESS): Turn off for MIPS16.
17137
17138 2007-04-28 Jan Hubicka <jh@suse.cz>
17139
17140 * config/alpha/alpha.c (alpha_output_mi_thunk_osf): Use
17141 insn_locators_alloc instead of insn_locators_initialize;
17142 call reset_block_changes.
17143 * config/sparc/sparc.c (sparc_output_mi_thunk): Likewise.
17144 * config/sh/sh.c (sparc_output_mi_thunk): Likewise.
17145 * config/is64/ia64.c (ia64_output_mi_thunk): Likewise.
17146 * config/rs6000/rs6000.c (rs6000_output_mi_thunk): Likewise.
17147 * config/score/score.c (th_output_mi_thunk): Likewise.
17148 * config/mips/mips.c (mips_output_mi_thunk): Likewise.
17149 * cfglyaout.c (set_curr_insn_source_location, set_curr_insn_block):
17150 tolerate uninitialized locator info.
17151
17152 Re-apply:
17153 * function.c (init_function_start): Don't init line number info.
17154 (expand_function_end): Update.
17155 (reset_block_changes, record_block_change, finalize_block_changes,
17156 check_block_change, free_block_changes): Kill.
17157 * function.h (reset_block_changes, record_block_change,
17158 finalize_block_changes, check_block_change, free_block_changes):
17159 Remove prototypes.
17160 (struct function): Remove ib_boundaries_block.
17161 * emit-rtl.c (make_insn_raw, make_jump_insn_raw, make_call_insn_raw):
17162 Use curr_insn_locator to initialize locator.
17163 (emit_line_note): Remove.
17164 * cfgexpand.c (expand_gimple_cond_expr): Update.
17165 (construct_exit_block): Likewise.
17166 (tree_expand_cfg): Initialize/finalize locators.
17167 * expr.c (expand_expr_real): Update.
17168 * cfglayout.c (line_locators_locs, line_locators_lines,
17169 file_locators_locs, file_locators_files): Remove.
17170 (set_block_levels): Move to cfgexpand.c.
17171 (insn_locators_initialize): Remove.
17172 (pass_insn_locators_initialize): Remove.
17173 (locations_locators_locs, locations_locators_vals): New static vars.
17174 (curr_location, last_location, curr_block, last_block, curr_rtl_loc):
17175 Likewise.
17176 (insn_locators_alloc, insn_locators_finalize,
17177 set_curr_insn_source_location, set_curr_insn_block, curr_insn_locator):
17178 New functions.
17179 (locator_location): New.
17180 (locator_line, locator_file): Rewrite.
17181 * rtl.h (emit_line_note): Kill.
17182 (insn_locators_alloc, insn_locators_finalize,
17183 set_curr_insn_source_location, set_curr_insn_block, curr_insn_locator):
17184 Declare.
17185 * tree-inline.c (initialize_cfun): Do not initialize
17186 ib_boundaries_block.
17187 * passes.c (pass_insn_locators_initialize): Remove.
17188
17189 2007-04-28 Zdenek Dvorak <dvorakz@suse.cz>
17190
17191 * tree-cfg.c (move_block_to_fn): Release bb from dominance
17192 info. Update last_basic_block correctly.
17193
17194 2007-04-27 Kaz Kojima <kkojima@gcc.gnu.org>
17195
17196 PR target/31701
17197 * config/sh/sh.c (output_stack_adjust): Avoid using the frame
17198 register itself to hold the offset constant. Tell flow the use
17199 of r4 and r5 when they are used.
17200
17201 2007-04-27 Richard Guenther <rguenther@suse.de>
17202
17203 * tree-ssa-forwprop.c (forward_propagate_into_cond): Keep track
17204 if we simplified anything.
17205 (tree_ssa_forward_propagate_single_use_vars): Defer overflow
17206 warnings until we did a simplification and the stmt was not
17207 marked as TREE_NO_WARNING.
17208
17209 2007-04-27 Mike Stump <mrs@apple.com>
17210
17211 * config/rs6000/darwin.h (ALWAYS_PUSH_CONSTS_USING_REGS_P): Remove.
17212
17213 2007-04-27 Ian Lance Taylor <iant@google.com>
17214
17215 PR middle-end/31710
17216 * tree.c (build_distinct_type_copy): If TYPE_MIN_VALUE or
17217 TYPE_MAX_VALUE exist, convert them to the new type.
17218
17219 2007-04-27 Zdenek Dvorak <dvorakz@suse.cz>
17220
17221 * tree-cfgcleanup.c (cleanup_tree_cfg): Verify dominance info
17222 if it claims to be available.
17223 * tree-ssa-dce.c (remove_dead_stmt): Mark cfg as altered when
17224 edge is redirected.
17225 (perform_tree_ssa_dce): Always free postdominators.
17226
17227 2007-04-27 Richard Henderson <rth@redhat.com>
17228
17229 * config/alpha/predicates.md (aligned_memory_operand): Mark
17230 as define_special_predicate.
17231 (unaligned_memory_operand, normal_memory_operand): Likewise.
17232 (reg_or_unaligned_mem_operand): Remove.
17233 (any_memory_operand): Match the documentation and check for
17234 non-renumbered pseudos during reload.
17235 * config/alpha/alpha.c (alpha_secondary_reload): Rename from
17236 alpha_secondary_reload_class, update to new interface, make static.
17237 Handle CQImode like HImode. Remove FP subreg check.
17238 (alpha_expand_mov): Use replace_equiv_address.
17239 (alpha_expand_mov_nobwx): Use any_memory_operand.
17240 (TARGET_SECONDARY_RELOAD): New.
17241 * config/alpha/alpha.h (SECONDARY_INPUT_RELOAD_CLASS): Remove.
17242 (SECONDARY_OUTPUT_RELOAD_CLASS): Remove.
17243 * config/alpha/sync.md (I12MODE, I48MODE, modesuffix): Move ...
17244 * config/alpha/alpha.md: ... here.
17245 (RELOAD12, reloadmode): New.
17246 (movcqi): New.
17247 (reload_in<RELOAD12>): Macro-ize from reload_inqi, reload_inhi.
17248 Don't handle the aligned case here.
17249 (reload_out<RELOAD12>): Macro-ize from reload_outqi, reload_outhi.
17250 (reload_in<I12MODE>_aligned): Macro-ize from reload_inqi_help,
17251 reload_inhi_help. Don't expect a scratch register.
17252 (reload_out<I12MODE>_aligned): Macro-ize from reload_outqi_help,
17253 reload_outhi_help.
17254 * config/alpha/alpha-protos.h (alpha_secondary_reload_class): Remove.
17255
17256 2007-04-27 Richard Guenther <rguenther@suse.de>
17257
17258 * tree-ssa-forwprop.c (get_prop_dest_stmt): Fix comment typo.
17259
17260 2007-04-27 Richard Guenther <rguenther@suse.de>
17261
17262 PR tree-optimization/30965
17263 PR tree-optimization/30978
17264 * Makefile.in (tree-ssa-forwprop.o): Depend on $(FLAGS_H).
17265 * tree-ssa-forwprop.c (forward_propagate_into_cond_1): Remove.
17266 (find_equivalent_equality_comparison): Likewise.
17267 (simplify_cond): Likewise.
17268 (get_prop_source_stmt): New helper.
17269 (get_prop_dest_stmt): Likewise.
17270 (can_propagate_from): Likewise.
17271 (remove_prop_source_from_use): Likewise.
17272 (combine_cond_expr_cond): Likewise.
17273 (forward_propagate_comparison): New function.
17274 (forward_propagate_into_cond): Rewrite to use fold for
17275 tree combining.
17276 (tree_ssa_forward_propagate_single_use_vars): Call
17277 forward_propagate_comparison to propagate comparisons.
17278
17279 2007-04-27 Richard Guenther <rguenther@suse.de>
17280
17281 PR tree-optimization/31715
17282 * tree-ssa-ccp.c (maybe_fold_offset_to_array_ref): Make
17283 sure to do computation on the offset in an appropriate
17284 signed type.
17285
17286 2007-04-27 Richard Sandiford <richard@codesourcery.com>
17287
17288 * reload.h (elimination_target_reg_p): Declare.
17289 * reload.c (find_reloads): Don't apply the reg_rtx move
17290 optimization if the SET_DEST satisfies elimination_target_reg_p.
17291 * reload1.c (elimination_target_reg_p): New function.
17292 (gen_reload): In the move/add2 fallback, make sure that op0
17293 does not overlap the destination register.
17294
17295 2007-04-27 Zdenek Dvorak <dvorakz@suse.cz>
17296
17297 * tree-ssa-loop-im.c (determine_invariantness_stmt): Attempt to
17298 transform only GIMPLE_MODIFY_STMTs.
17299 * tree-complex.c (expand_complex_operations_1): Ditto.
17300 (expand_complex_div_wide): Do not create gotos in COND_EXPR branches.
17301 * tree-ssa-loop-manip.c (build_if_stmt): Removed.
17302 (tree_transform_and_unroll_loop): Do not create gotos in COND_EXPR
17303 branches.
17304 * value-prof.c (tree_divmod_fixed_value, tree_mod_pow2,
17305 tree_mod_subtract, tree_ic, tree_stringop_fixed_value): Ditto.
17306 * omp-low.c (expand_parallel_call, expand_omp_for_generic,
17307 expand_omp_for_static_chunk, expand_omp_for_static_nochunk): Ditto.
17308 * tree-vectorizer.c (slpeel_make_loop_iterate_ntimes,
17309 slpeel_add_loop_guard): Ditto.
17310 * tree-mudflap.c (mf_build_check_statement_for): Ditto.
17311 * lambda-code.c (perfect_nestify): Ditto.
17312 * tree-iterator.c (tsi_split_statement_list_before): Fix splitting
17313 before the first statement.
17314 * tree-optimize.c (execute_free_datastructures): Fix comments.
17315 (execute_free_cfg_annotations): Do not call disband_implicit_edges.
17316 * tree-flow.h (disband_implicit_edges): Declaration removed.
17317 * tree-cfg.c (make_cond_expr_edges): Remove gotos from COND_EXPR
17318 branches.
17319 (cleanup_dead_labels, tree_redirect_edge_and_branch): Handle
17320 COND_EXPRs without gotos.
17321 (disband_implicit_edges, has_label_p): Removed.
17322 (tree_verify_flow_info): Verify that COND_EXPR branches are empty.
17323 (tree_lv_add_condition_to_bb): Do not create gotos in COND_EXPR
17324 branches.
17325 * tree.c (build3_stat): Mark COND_EXPRs used as statements as having
17326 side effects.
17327 * tree-pretty-print.c (dump_implicit_edges): Dump implicit edges
17328 also for COND_EXPRs.
17329 * cfgexpand.c (label_rtx_for_bb): New function.
17330 (expand_gimple_cond_expr): Do not expect gotos in COND_EXPR branches.
17331 Use label_rtx_for_bb to find the labels.
17332 (expand_gimple_basic_block): Remove RETURN_EXPR at the end of the
17333 last block. Detect fallthru edges.
17334
17335 2007-04-26 Ian Lance Taylor <iant@google.com>
17336
17337 PR target/28675
17338 * reload.c (find_reloads_subreg_address): If the address was valid
17339 in the original mode but not in the new mode, reload the whole
17340 address.
17341
17342 2007-04-27 Zdenek Dvorak <dvorakz@suse.cz>
17343
17344 * tree-cfgcleanup.c (cfgcleanup_altered_bbs): New global variable.
17345 (remove_fallthru_edge): Use remove_edge_and_dominated_blocks.
17346 (cleanup_control_expr_graph): Do not invalidate dominance info.
17347 Record altered blocks.
17348 (cleanup_control_flow, cleanup_forwarder_blocks): Removed.
17349 (cleanup_control_flow_bb, split_bbs_on_noreturn_calls,
17350 cleanup_tree_cfg_bb): New functions.
17351 (remove_forwarder_block): Do not maintain the worklist of blocks.
17352 Record altered blocks.
17353 (cleanup_tree_cfg_1): Iterate over cfgcleanup_altered_bbs,
17354 not over whole cfg.
17355 (cleanup_tree_cfg): Do not iterate cleanup_tree_cfg_1. Only call
17356 delete_unreachable_blocks if dominators are not available.
17357 * tree-inline.c (optimize_inline_calls): Free dominance information
17358 earlier.
17359 * tree-flow.h (remove_edge_and_dominated_blocks,
17360 cfgcleanup_altered_bbs): Altered.
17361 * tree-cfg.c (replace_uses_by, tree_merge_blocks): Record altered
17362 blocks.
17363 (get_all_dominated_blocks, remove_edge_and_dominated_blocks): New
17364 functions.
17365 (tree_purge_dead_eh_edges): Use remove_edge_and_dominated_blocks,
17366 do not invalidate dominators.
17367
17368 2007-04-26 Anatoly Sokolov <aesok@post.ru>
17369
17370 * config/avr/avr.c (avr_mcu_types): Add support for ATmega8HVA and
17371 ATmega16HVA devices. Move AT90USB82 device to 'avr5' architecture.
17372 * config/avr/avr.h (LINK_SPEC, CRT_BINUTILS_SPECS): (Ditto.).
17373 * config/avr/t-avr (MULTILIB_MATCHES): (Ditto.).
17374
17375 2007-04-26 Steve Ellcey <sje@cup.hp.com>
17376
17377 * config/ia64/ia64.md (ip_value): Fix itanium_class attribute.
17378
17379 2007-04-26 Richard Guenther <rguenther@suse.de>
17380
17381 PR tree-optimization/31703
17382 * tree-ssa-loop-im.c (rewrite_bittest): Make sure to use
17383 the right type for the target of the bittest.
17384
17385 2007-04-26 Richard Sandiford <richard@codesourcery.com>
17386
17387 * config/i386/vx-common.h (RETURN_IN_MEMORY): Use
17388 ix86_sol10_return_in_memory.
17389
17390 2007-04-26 Richard Sandiford <richard@codesourcery.com>
17391
17392 * config/i386/i386.c (ix86_sol10_return_in_memory): Remove unused
17393 variables.
17394
17395 2007-04-26 Jakub Jelinek <jakub@redhat.com>
17396
17397 PR c++/31598
17398 * tree-inline.c (copy_body_r): Don't touch TREE_TYPE of OMP_CLAUSE.
17399
17400 PR tree-optimization/30558
17401 * tree-eh.c (lower_eh_filter): If EH_FILTER_MUST_NOT_THROW
17402 clear this_state.prev_try.
17403
17404 2007-04-26 Richard Sandiford <richard@codesourcery.com>
17405 Mark Mitchell <mark@codesourcery.com>
17406
17407 * config/i386/i386-protos.h (ix86_sol10_return_in_memory): Declare.
17408 * config/i386/i386.c (ix86_sol10_return_in_memory): New function.
17409 * config/i386/sol2-10.h (RETURN_IN_MEMORY): Use it.
17410
17411 2007-04-26 Richard Sandiford <richard@codesourcery.com>
17412
17413 PR driver/31107
17414 * doc/invoke.texi (%:print-asm-header): Document.
17415 * gcc.c (asm_options): Use %:print-asm-header() for --target-help
17416 and -ftarget-help.
17417 (static_spec_functions): Add print-asm-header.
17418 (main): Print a banner before the --target-help linker options.
17419 (print_asm_header_spec_function): New function.
17420
17421 2007-04-25 Kaz Kojima <kkojima@gcc.gnu.org>
17422
17423 PR target/31403
17424 * config/sh/sh.md (movsi_ie): Fix length for TARGET_SH2A.
17425 (movsf_ie): Likewise.
17426
17427 2007-04-25 Paolo Carlini <pcarlini@suse.de>
17428
17429 * doc/extend.texi ([Type Traits]): Adjust per N2255.
17430
17431 2007-04-25 Bob Wilson <bob.wilson@acm.org>
17432
17433 * config/xtensa/lib1funcs.asm (__udivsi3, __divsi3): Throw an
17434 exception for divide-by-zero.
17435 (__umodsi3, __modsi3): Likewise.
17436
17437 2007-04-25 Dirk Mueller <dmueller@suse.de>
17438
17439 * c-typeck.c (build_compound_expr): Annotate warning()
17440 call with OPT_Wunused_value.
17441 * tree-ssa.c (warn_uninit): Annotate warning with
17442 OPT_Wunintialized.
17443 * c-common.c (handle_sentinel_attribute): Annotate warning
17444 call with OPT_Wattributes.
17445
17446 2007-04-25 Thiemo Seufer <ths@mips.com>
17447
17448 * config/mips/mips.opt (mdmx, mmt, mno-mdmx): New options.
17449 (mips16): Fix typo.
17450 * config/mips/mips.h (ASM_SPEC): Pass -mmt/-mno-mt and -mdmx/-mno-mdmx
17451 on to the assembler. Improve handling of -mno-mips16. Add handling
17452 of -mno-mips3d, -mno-dsp, -mno-dspr2.
17453 * doc/invoke.texi (MIPS Options): Whitespace cleanup. Fix wrong use
17454 of @itemx. Document -mno-dsp, -mno-dspr2, -mno-paired-single, -mdmx,
17455 -mno-mdmx, -mno-mips3d, -mmt and -mno-mt.
17456
17457 2007-04-25 Danny Smith <dannysmith.users.sourceforge.net>
17458
17459 PR target/31680
17460 * config/i386/winnt.c (i386_pe_file_end): Strip only
17461 USER_LABEL_PREFIX when writing export name.
17462
17463 2007-04-25 Richard Sandiford <richard@codesourcery.com>
17464
17465 * config.gcc (sh-wrs-vxworks): Don't include dbxelf.h. Include
17466 sh/elf.h, vx-common.h and vxworks.h.
17467 * config/sh/sh.h: Include config/vxworks-dummy.h.
17468 (SUBTARGET_OVERRIDE_OPTIONS): Define.
17469 (OVERRIDE_OPTIONS): Use it.
17470 * config/sh/sh.md (GOTaddr2picreg): Add suport for VxWorks RTPs.
17471 (vxworks_picreg): New pattern.
17472 * config/sh/vxworks.h (TARGET_OS_CPP_BUILTINS): Use
17473 VXWORKS_OS_CPP_BUILTINS.
17474 (LIB_SPEC, LINK_SPEC, STARTFILE_SPEC, ENDFILE_SPEC): Redefine
17475 to their VXWORKS_* equivalents.
17476 (SUBTARGET_OVERRIDE_OPTIONS, SUBTARGET_CPP_SPEC): Define.
17477 (SUBTARGET_LINK_EMUL_SUFFIX, FUNCTION_PROFILER): Define.
17478 * config/sh/lib1funcs.asm (NO_FPSCR_VALUES): Define for VxWorks PIC.
17479 (set_fpscr, ic_invalidate): Add VxWorks PIC sequences.
17480 * config/sh/t-vxworks (MULTILIB_OPTIONS): Add m4a, -mrtp and
17481 -mrtp/-fPIC multilibs.
17482 (MULTILIB_EXCEPTIONS): Generalize globs accordingly.
17483 (MULTILIB_MATCHES, EXTRA_MULTILIB_PARTS): Define.
17484 (MULTILIB_OSDIRNAMES): Delete.
17485
17486 2007-04-25 Anatoly Sokolov <aesok@post.ru>
17487
17488 PR target/18989
17489 * config/avr/avr.h (ASM_OUTPUT_ALIGN): Redefine.
17490
17491 2007-04-24 Brooks Moses <brooks.moses@codesourcery.com>
17492
17493 * real.c (mpfr_from_real): Handle Inf and NaN, and allow the
17494 rounding mode to be specified by the caller.
17495 (real_to_mpfr) Likewise.
17496 * real.h: Update mpfr_from_real, mpfr_to_real prototypes to
17497 include new arguments.
17498 * builtins.c: Update mpfr_from_real, mpfr_to_real calls.
17499
17500 2007-04-24 Ian Lance Taylor <iant@google.com>
17501
17502 PR tree-optimization/31605
17503 * tree-vrp.c (set_value_range): Check that min and max are not
17504 both overflow infinities.
17505 (set_value_range_to_value): New static function.
17506 (extract_range_from_binary_expr): Call set_value_range_to_value.
17507 (extract_range_from_cond_expr): Likewise.
17508 (extract_range_from_expr): Likewise.
17509 (extract_range_from_unary_expr): Likewise. Don't create a range
17510 which overflows on both sides.
17511 (vrp_meet): Check for a useless range.
17512 (vrp_visit_phi_node): If we see a constant which looks like an
17513 overflow infinity, turn off the TREE_OVERFLOW flag.
17514
17515 2007-04-24 Ian Lance Taylor <iant@google.com>
17516
17517 * flow.c (elim_reg_cond): Handle a comparison of a subreg.
17518
17519 2007-04-24 Simon Martin <simartin@users.sourceforge.net>
17520
17521 PR diagnostic/25923
17522 * tree-pass.h (TDF_DIAGNOSTIC): New dump control to specify that a
17523 diagnostic message is being built.
17524 * tree-pretty-print.c (dump_generic_node): Only write the
17525 formatted text into BUFFER's stream if we are not building a
17526 diagnostic message.
17527 * toplev.c (default_tree_printer): Pass TDF_DIAGNOSTIC to
17528 dump_generic_node.
17529 * Makefile.in (toplev.o): Depend on tree-pass.h.
17530
17531 2007-04-24 Ian Lance Taylor <iant@google.com>
17532
17533 PR tree-optimization/31602
17534 * tree-ssa-loop-ch.c (copy_loop_headers): Set TREE_NO_WARNING for
17535 conditionals in the copied loop header.
17536 * tree-cfg.c (fold_cond_expr_cond): Don't issue undefined overflow
17537 warnings if TREE_NO_WARNING is set.
17538 * doc/invoke.texi (Warning Options): Clarify that
17539 -Wstrict-overflow does not warn about loops.
17540
17541 2007-04-24 Janis Johnson <janis187@us.ibm.com>
17542
17543 * config/rs6000/rs6000.c (function_arg_advance): For 32-bit ELF ABI,
17544 expand on the comment about _Decimal128 arguments and check the
17545 integer result of the modulus operation; for 64-bit ELF ABI, ensure
17546 that _Decimal128 argument uses even/odd register pair.
17547 (function_arg): Ditto.
17548
17549 2007-04-24 Hui-May Chang <hm.chang@apple.com>
17550
17551 * reload1.c (merge_assigned_reloads) : Do not merge a RELOAD_OTHER
17552 instruction with a RELOAD_FOR_OPERAND_ADDRESS instruction.
17553
17554 2007-04-24 Richard Guenther <rguenther@suse.de>
17555 Olga Golovanevsky <olga@il.ibm.com>
17556
17557 * fold-const.c (multiple_of_p): Check for bottom
17558 to be zero.
17559
17560 2007-04-24 Richard Henderson <rth@redhat.com>
17561
17562 * libgcc2.h (AVOID_FP_TYPE_CONVERSION): Rename from
17563 IS_IBM_EXTENDED. Also define in terms of WIDEST_HARDWARE_FP_SIZE.
17564 * libgcc2.c (__floatdisf): Avoid double-word arithmetic when
17565 looking for non-zero bits shifted out. Avoid a recursive call
17566 when constructing the scalar.
17567 (__floatundisf): Likewise.
17568
17569 2007-04-24 Nathan Froyd <froydnj@codesourcery.com>
17570
17571 * dwarf2out.c (field_byte_offset): Move the existing logic
17572 under the control of PCC_BITFIELD_TYPE_MATTERS and just use
17573 the bit offset of the field if !PCC_BITFIELD_TYPE_MATTERS.
17574
17575 2007-04-24 Andreas Krebbel <krebbel1@de.ibm.com>
17576
17577 PR target/31641
17578 * config/s390/s390.c (s390_expand_setmem): Don't ICE for constant
17579 length argument of 0 for memset.
17580 (s390_expand_movmem, s390_expand_setmem, s390_expand_cmpmem): Use
17581 unsigned shift instead of the signed variant.
17582
17583 2007-04-24 Andreas Krebbel <krebbel1@de.ibm.com>
17584
17585 * config/s390/s390.md ("*cmp<mode>_ccs_0_ibm", "*cmp<mode>_ccs_ibm",
17586 "fix_trunc<BFP:mode><GPR:mode>2_ieee", "fix_truncdfsi2_ibm",
17587 "floatsidf2_ibm", "floatsisf2", "truncdfsf2_ieee", "truncdfsf2_ibm",
17588 "*trunctfdf2_ieee", "*trunctfdf2_ibm", "*trunctfsf2_ieee",
17589 "*trunctfsf2_ibm", "extendsfdf2_ieee", "extendsfdf2_ibm",
17590 "*extenddftf2_ieee", "*extenddftf2_ibm", "*extendsftf2_ieee",
17591 "*extendsftf2_ibm", "*add<mode>3", "*add<mode>3_ibm", "*sub<mode>3_ibm",
17592 "*mul<mode>3", "*mul<mode>3_ibm", "*div<mode>3", "*div<mode>3_ibm",
17593 "*neg<mode>2_ibm", "*abs<mode>2_ibm"): Insn definitions removed.
17594 ("fix_trunc<BFP:mode><GPR:mode>2_bfp", "floatsi<mode>2",
17595 "truncdfsf2", "trunctf<mode>2", "add<mode>3", "sub<mode>3",
17596 "mul<mode>3", "div<mode>3"): Insn definitions added.
17597 ("fixuns_trunc<BFP:mode><GPR:mode>2", "fix_trunc<mode>di2",
17598 "fix_trunc<mode>si2"): gen_fix_trunc<BFP:mode><GPR:mode>2_ieee renamed
17599 to gen_fix_trunc<BFP:mode><GPR:mode>2_bfp.
17600 ("fix_truncdfsi2", "floatsitf2", "truncdfsf2", "trunctfdf2",
17601 "trunctfsf2", "extendsfdf2", "extenddftf2", "extendsftf2", "add<mode>3",
17602 "sub<mode>3", "mul<mode>3", "div<mode>3"): Expander removed.
17603 ("fix_trunc<mode>si2", "extend<DSF:mode><BFP:mode>2"): Expander added.
17604 * config/s390/s390.h (TARGET_IBM_FLOAT, TARGET_IEEE_FLOAT,
17605 TARGET_FLOAT_FORMAT): Macro definitions removed.
17606 (FP_REGNO_P): No special case for !TARGET_IEEE_FLOAT anymore.
17607 * config/s390/s390.c (struct processor_costs, z900_cost, z990_cost,
17608 z9_109_cost): Remove fields for hexfloat instructions: dxr, ddr and der.
17609 (s390_rtx_costs): Remove !TARGET_IEEE_FLOAT special branches.
17610 (s390_gen_rtx_const_DI): Function removed.
17611 * config/s390/s390-protos.h (s390_gen_rtx_const_DI): Prototype removed.
17612
17613 2007-04-24 Richard Sandiford <richard@codesourcery.com>
17614
17615 * optabs.c (set_conv_libfunc): Prefer libgcc2's __ffsMM2 functions
17616 over an external ffs function.
17617
17618 2007-04-24 Chao-ying Fu <fu@mips.com>
17619 Richard Sandiford <richard@nildram.co.uk>
17620
17621 * doc/md.texi (madd@var{m}@var{n}4, umadd@var{m}@var{n}4): Document.
17622 * optabs.h (OTI_smadd_widen, OTI_umadd_widen): New optab_indexes.
17623 (smadd_widen_optab, umadd_widen_optab): Define.
17624 * optabs.c (init_optabs): Initialize smadd_widen_optab and
17625 umadd_widen_optab.
17626 * genopinit.c (optabs): Fill in smadd_widen_optab and
17627 umadd_widen_optab.
17628 * expr.c (expand_expr_real_1): Try to use smadd_widen_optab
17629 and umadd_widen_optab to implement multiply-add sequences.
17630 * config/mips/mips.md (*<su>mul_acc_di): Rename to...
17631 (<u>maddsidi4): ...this. Extend condition to include
17632 GENERATE_MADD_MSUB and TARGET_DSPR2. Change the constraint
17633 of operand 0 to "ka" and use the three-operand form of madd<u>
17634 for TARGET_DSPR2.
17635 * config/mips/mips-dspr2.md (mips_madd, mips_maddu): Convert
17636 to define_expands.
17637 * config/mips/constraints.md (ka): New register constraint.
17638
17639 2007-04-24 Jan Hubicka <j@suse.cz>
17640
17641 Revert:
17642
17643 2007-04-23 Jan Hubicka <jh@suse.cz>
17644 * function.c (init_function_start): Don't init line number info.
17645 (expand_function_end): Update.
17646 (reset_block_changes, record_block_change, finalize_block_changes,
17647 check_block_change, free_block_changes): Kill.
17648 * function.h (reset_block_changes, record_block_change,
17649 finalize_block_changes, check_block_change, free_block_changes):
17650 Remove prototypes.
17651 (struct function): Remove ib_boundaries_block.
17652 * emit-rtl.c (make_insn_raw, make_jump_insn_raw, make_call_insn_raw):
17653 Use curr_insn_locator to initialize locator.
17654 (emit_line_note): Remove.
17655 * cfgexpand.c (expand_gimple_cond_expr): Update.
17656 (construct_exit_block): Likewise.
17657 (tree_expand_cfg): Initialize/finalize locators.
17658 * expr.c (expand_expr_real): Update.
17659 * cfglayout.c (line_locators_locs, line_locators_lines,
17660 file_locators_locs, file_locators_files): Remove.
17661 (set_block_levels): Move to cfgexpand.c.
17662 (insn_locators_initialize): Remove.
17663 (pass_insn_locators_initialize): Remove.
17664 (locations_locators_locs, locations_locators_vals): New static vars.
17665 (curr_location, last_location, curr_block, last_block, curr_rtl_loc):
17666 Likewise.
17667 (insn_locators_alloc, insn_locators_finalize,
17668 set_curr_insn_source_location, set_curr_insn_block, curr_insn_locator):
17669 New functions.
17670 (locator_location): New.
17671 (locator_line, locator_file): Rewrite.
17672 * rtl.h (emit_line_note): Kill.
17673 (insn_locators_alloc, insn_locators_finalize,
17674 set_curr_insn_source_location, set_curr_insn_block, curr_insn_locator):
17675 Declare.
17676 * tree-inline.c (initialize_cfun): Do not initialize
17677 ib_boundaries_block.
17678 * passes.c (pass_insn_locators_initialize): Remove.
17679
17680 2007-04-24 Daniel Franke <franke.daniel@gmail.com>
17681
17682 * doc/invoke.texi: Removed leading '-' from option index entries.
17683
17684 2007-04-23 Zdenek Dvorak <dvorakz@suse.cz>
17685
17686 * tree-phinodes.c (reserve_phi_args_for_new_edge, remove_phi_node):
17687 Use phi_nodes_ptr.
17688 (create_phi_node): Use set_phi_nodes.
17689 * omp-low.c (expand_omp_parallel): Use bb_stmt_list.
17690 * tree-if-conv.c (process_phi_nodes): Use set_phi_nodes.
17691 (combine_blocks): Use bb_stmt_list and set_bb_stmt_list.
17692 * tree-flow-inline.h (phi_nodes, set_phi_nodes,
17693 (bsi_start, bsi_last): Use bb_stmt_list.
17694 (phi_nodes_ptr, bb_stmt_list, set_bb_stmt_list): New functions.
17695 * cfgexpand.c (expand_gimple_basic_block): Use bb_stmt_list.
17696 Traverse the statements using tsi iterator.
17697 * basic-block.h (struct basic_block_def): Fields stmt_list
17698 and phi_nodes moved to ...
17699 (struct tree_bb_info): ... new structure.
17700 * tree-cfg.c (create_bb): Allocate il.tree. Use set_bb_stmt_list.
17701 (tree_merge_blocks): Use bb_stmt_list and set_bb_stmt_list.
17702 (remove_bb): Handle blocks with NULL stmt list. Clear il.tree field.
17703 (tree_verify_flow_info): Verify that il.tree is not set for
17704 entry and exit block.
17705 (tree_split_block): Use set_bb_stmt_list.
17706
17707 2007-04-23 Mike Stump <mrs@apple.com>
17708
17709 * config/i386/i386.c (ix86_tune_features
17710 [X86_TUNE_DEEP_BRANCH_PREDICTION]: Prefer call over thunks on
17711 nocona and core2.
17712
17713 2007-04-23 H.J. Lu <hongjiu.lu@intel.com>
17714
17715 * config/i386/i386.md (prefix_extra): New attribute.
17716 (length): Add prefix_extra.
17717
17718 * onfig/i386/sse.md (sse2_movdqu): Set prefix_data16.
17719 (sse2_movntv2di): Likewise.
17720 (sse2_cvtps2dq): Likewise.
17721 (sse2_cvtpd2pi): Likewise.
17722 (sse2_cvttpd2pi): Likewise.
17723 (*sse2_cvtpd2ps): Likewise.
17724 (*add<mode>3): Likewise.
17725 (sse2_ssadd<mode>3): Likewise.
17726 (sse2_usadd<mode>3): Likewise.
17727 (*sub<mode>3): Likewise.
17728 (sse2_sssub<mode>3): Likewise.
17729 (sse2_ussub<mode>3): Likewise.
17730 (*mulv8hi3): Likewise.
17731 (*smulv8hi3_highpart): Likewise.
17732 (*umulv8hi3_highpart): Likewise.
17733 (sse2_umulv2siv2di3): Likewise.
17734 (sse2_pmaddwd): Likewise.
17735 (ashr<mode>3): Likewise.
17736 (lshr<mode>3): Likewise.
17737 (ashl<mode>3): Likewise.
17738 (sse2_ashlti3): Likewise.
17739 (sse2_lshrti3): Likewise.
17740 (*umaxv16qi3): Likewise.
17741 (*smaxv8hi3): Likewise.
17742 (*uminv16qi3): Likewise.
17743 (*sminv8hi3): Likewise.
17744 (sse2_eq<mode>3): Likewise.
17745 (sse2_gt<mode>3): Likewise.
17746 (*and<mode>3): Likewise.
17747 (sse2_nand<mode>3): Likewise.
17748 (*ior<mode>3): Likewise.
17749 (*xor<mode>3): Likewise.
17750 (sse2_packsswb): Likewise.
17751 (sse2_packssdw): Likewise.
17752 (sse2_packuswb): Likewise.
17753 (sse2_punpckhbw): Likewise.
17754 (sse2_punpcklbw): Likewise.
17755 (sse2_punpckhwd): Likewise.
17756 (sse2_punpcklwd): Likewise.
17757 (sse2_punpckhdq): Likewise.
17758 (sse2_punpckldq): Likewise.
17759 (sse2_punpckhqdq): Likewise.
17760 (sse2_punpcklqdq): Likewise.
17761 (*sse2_pinsrw): Likewise.
17762 (*sse2_pextrw): Likewise.
17763 (sse2_pshufd_1): Likewise.
17764 (sse2_uavgv16qi3): Likewise.
17765 (sse2_uavgv8hi3): Likewise.
17766 (sse2_psadbw): Likewise.
17767 (sse2_pmovmskb): Likewise.
17768 (*sse2_maskmovdqu): Likewise.
17769 (*sse2_maskmovdqu_rex64): Likewise.
17770 (sse4a_extrqi): Likewise.
17771 (sse4a_extrq): Likewise.
17772 (sse3_lddqu): Set prefix_rep.
17773 (sse3_addsubv4sf3): Likewise.
17774 (sse3_haddv4sf3): Likewise.
17775 (sse3_hsubv4sf3): Likewise.
17776 (sse_cvtss2si): Likewise.
17777 (sse_cvtss2si_2): Likewise.
17778 (sse_cvtss2siq): Likewise.
17779 (sse_cvtss2siq_2): Likewise.
17780 (sse_cvttss2si): Likewise.
17781 (sse_cvttss2siq): Likewise.
17782 (sse2_cvttps2dq): Likewise.
17783 (sse3_movshdup): Likewise.
17784 (sse3_movsldup): Likewise.
17785 (sse2_cvtsd2si): Likewise.
17786 (sse2_cvtsd2si_2): Likewise.
17787 (sse2_cvtsd2siq): Likewise.
17788 (sse2_cvtsd2siq_2): Likewise.
17789 (sse2_cvttsd2si): Likewise.
17790 (sse2_cvttsd2siq): Likewise.
17791 (*sse2_cvtpd2dq): Likewise.
17792 (*sse2_cvttpd2dq): Likewise.
17793 (sse2_pshuflw_1): Likewise.
17794 (sse2_pshufhw_1): Likewise.
17795 (sse4a_insertqi): Likewise.
17796 (sse4a_insertq): Likewise.
17797 (ssse3_phaddwv8hi3): Set prefix_data16 and prefix_extra.
17798 (ssse3_phadddv4si3): Likewise.
17799 (ssse3_phaddswv8hi3): Likewise.
17800 (ssse3_phsubwv8hi3): Likewise.
17801 (ssse3_phsubdv4si3): Likewise.
17802 (ssse3_phsubswv8hi3): Likewise.
17803 (ssse3_pmaddubswv8hi3): Likewise.
17804 (ssse3_pmulhrswv8hi3): Likewise.
17805 (ssse3_pshufbv16qi3): Likewise.
17806 (ssse3_psign<mode>3): Likewise.
17807 (ssse3_palignrti): Likewise.
17808 (abs<mode>2): Likewise.
17809 (ssse3_phaddwv4hi3): Set prefix_extra.
17810 (ssse3_phadddv2si3): Likewise.
17811 (ssse3_phaddswv4hi3): Likewise.
17812 (ssse3_phsubwv4hi3): Likewise.
17813 (ssse3_phsubdv2si3): Likewise.
17814 (ssse3_phsubswv4hi3): Likewise.
17815 (ssse3_pmaddubswv4hi3): Likewise.
17816 (ssse3_pmulhrswv4hi3): Likewise.
17817 (ssse3_pshufbv8qi3): Likewise.
17818 (ssse3_psign<mode>3): Likewise.
17819 (ssse3_palignrdi): Likewise.
17820 (abs<mode>2): Likewise.
17821 (sse2_cvtdq2ps): Set mode to V4SF instead of V2DF.
17822 (*vec_dupv2df): Set mode to V2DF instead of V4SF.
17823 (sse2_pmovmskb): Set mode to SI instead of V2DF.
17824
17825 2007-04-23 Nick Clifton <nickc@redhat.com>
17826
17827 * params.def: Fix formatting of emacs local variables.
17828
17829 2007-04-23 H.J. Lu <hongjiu.lu@intel.com>
17830
17831 * config/i386/sse.md (sse2_stored): Don't split to inter-unit
17832 move if inter-unit move isn't allowed.
17833 Don't split moving the first element of V2DI to DI to inter-unit
17834 move if inter-unit move isn't allowed.
17835
17836 2007-04-23 Richard Guenther <rguenther@suse.de>
17837
17838 * tree-ssa-sink.c (execute_sink_code): Calculate CDI_DOMINATORS
17839 and CDI_POST_DOMINATORS separately.
17840
17841 2007-04-23 Nick Clifton <nickc@redhat.com>
17842
17843 * c.opt (Wformat-contains-nul): Add warning attribute.
17844
17845 2007-04-23 Jan Hubicka <jh@suse.cz>
17846
17847 * function.c (init_function_start): Don't init line number info.
17848 (expand_function_end): Update.
17849 (reset_block_changes, record_block_change, finalize_block_changes,
17850 check_block_change, free_block_changes): Kill.
17851 * function.h (reset_block_changes, record_block_change,
17852 finalize_block_changes, check_block_change, free_block_changes):
17853 Remove prototypes.
17854 (struct function): Remove ib_boundaries_block.
17855 * emit-rtl.c (make_insn_raw, make_jump_insn_raw, make_call_insn_raw):
17856 Use curr_insn_locator to initialize locator.
17857 (emit_line_note): Remove.
17858 * cfgexpand.c (expand_gimple_cond_expr): Update.
17859 (construct_exit_block): Likewise.
17860 (tree_expand_cfg): Initialize/finalize locators.
17861 * expr.c (expand_expr_real): Update.
17862 * cfglayout.c (line_locators_locs, line_locators_lines,
17863 file_locators_locs, file_locators_files): Remove.
17864 (set_block_levels): Move to cfgexpand.c.
17865 (insn_locators_initialize): Remove.
17866 (pass_insn_locators_initialize): Remove.
17867 (locations_locators_locs, locations_locators_vals): New static vars.
17868 (curr_location, last_location, curr_block, last_block, curr_rtl_loc):
17869 Likewise.
17870 (insn_locators_alloc, insn_locators_finalize,
17871 set_curr_insn_source_location, set_curr_insn_block, curr_insn_locator):
17872 New functions.
17873 (locator_location): New.
17874 (locator_line, locator_file): Rewrite.
17875 * rtl.h (emit_line_note): Kill.
17876 (insn_locators_alloc, insn_locators_finalize,
17877 set_curr_insn_source_location, set_curr_insn_block, curr_insn_locator):
17878 Declare.
17879 * tree-inline.c (initialize_cfun): Do not initialize
17880 ib_boundaries_block.
17881 * passes.c (pass_insn_locators_initialize): Remove.
17882
17883 2007-04-22 Andrew Pinski <andrew_pinski@playstation.sony.com>
17884
17885 PR middle-end/31448
17886 * expr.c (reduce_to_bit_field_precision): Handle
17887 CONST_INT rtx's.
17888
17889 2007-04-22 Uros Bizjak <ubizjak@gmail.com>
17890
17891 PR tree-optimization/24659
17892 * optabs.h (enum optab_index) [OTI_vec_unpacks_hi,
17893 OTI_vec_unpacks_lo]: Update comment to mention floating point operands.
17894 (vec_pack_trunc_optab): Rename from vec_pack_mod_optab.
17895 * genopinit.c (optabs): Rename vec_pack_mod_optab
17896 to vec_pack_trunc_optab.
17897 * tree-vect-transform.c (vectorizable_type_demotion): Do not fail
17898 early for scalar floating point operands for NOP_EXPR.
17899 (vectorizable_type_promotion): Ditto.
17900 * optabs.c (optab_for_tree_code) [VEC_PACK_TRUNC_EXPR]: Return
17901 vec_pack_trunc_optab.
17902 (expand_binop): Rename vec_float_trunc_optab to vec_pack_mod_optab.
17903
17904 * tree.def (VEC_PACK_TRUNC_EXPR): Rename from VEC_PACK_MOD_EXPR.
17905 * tree-pretty-print.c (dump_generic_node) [VEC_PACK_TRUNC_EXPR]:
17906 Rename from VEC_PACK_MOD_EXPR.
17907 (op_prio) [VEC_PACK_TRUNC_EXPR]: Ditto.
17908 * expr.c (expand_expr_real_1): Ditto.
17909 * tree-inline.c (estimate_num_insns_1): Ditto.
17910 * tree-vect-generic.c (expand_vector_operations_1): Ditto.
17911
17912 * config/i386/sse.md (vec_unpacks_hi_v4sf): New expander.
17913 (vec_unpacks_lo_v4sf): Ditto.
17914 (vec_pack_trunc_v2df): Ditto.
17915 (vec_pack_trunc_v8hi): Rename from vec_pack_mod_v8hi.
17916 (vec_pack_trunc_v4si): Rename from vec_pack_mod_v4si.
17917 (vec_pack_trunc_v2di): Rename from vec_pack_mod_v2di.
17918
17919 * config/rs6000/altivec.md (vec_pack_trunc_v8hi): Rename from
17920 vec_pack_mod_v8hi.
17921 (vec_pack_trunc_v4si): Rename from vec_pack_mod_v4si.
17922
17923 * doc/c-tree.texi (Expression trees) [VEC_PACK_TRUNC_EXPR]:
17924 Rename from VEC_PACK_MOD_EXPR. This expression also represent
17925 packing of floating point operands.
17926 [VEC_UNPACK_HI_EXPR, VEC_UNPACK_LO_EXPR]: These expression also
17927 represent unpacking of floating point operands.
17928 * doc/md.texi (Standard Names) [vec_pack_trunc]: Update documentation.
17929 [vec_unpacks_hi]: Ditto.
17930 [vec_unpacks_lo]: Ditto.
17931
17932 2007-04-22 Jan Hubicka <jh@suse.cz>
17933
17934 * final.c (rest_of_handle_final): Call
17935 targetm.asm_out.constructor/targetm.asm_out.destructor
17936 * cgraphunit.c (cgraph_build_static_cdtor): Don't do it here; set
17937 proper priority via decl_*_priority_insert.
17938 * c-common.c (c_expand_body): Likewise.
17939
17940 2007-04-22 Richard Guenther <rguenther@suse.de>
17941
17942 PR tree-optimization/29789
17943 * tree-ssa-loop-im.c (stmt_cost): Adjust cost of shifts.
17944 (rewrite_reciprocal): New helper split out from
17945 determine_invariantness_stmt.
17946 (rewrite_bittest): Likewise.
17947 (determine_invariantness_stmt): Rewrite (A >> B) & 1 to
17948 A & (1 << B) if (1 << B) is loop invariant but (A >> B)
17949 is not.
17950
17951 2007-04-22 Revital Eres <eres@il.ibm.com>
17952
17953 * loop-unroll.c (var_to_expand): New field to support also
17954 insns of the form x = something + x.
17955 (analyze_insn_to_expand_var): Use it.
17956 (expand_var_during_unrolling): Likewise.
17957
17958 2007-04-21 Zdenek Dvorak <dvorakz@suse.cz>
17959
17960 * predict.c: Include pointer-set.h.
17961 (bb_predictions): New variable.
17962 (tree_predicted_by_p, tree_predict_edge,
17963 remove_predictions_associated_with_edge): Use bb_predictions map
17964 instead of bb->predictions.
17965 (clear_bb_predictions, assert_is_empty): New functions.
17966 (combine_predictions_for_bb): Use bb_predictions map. Call
17967 clear_bb_predictions.
17968 (tree_estimate_probability): Create and free bb_predictions map.
17969 * Makefile.in (predict.o): Add pointer-set.h dependency.
17970 * basic-block.h (struct basic_block_def): Remove predictions
17971 field.
17972 * cfgrtl.c (rtl_verify_flow_info_1): Do not check bb->predictions.
17973
17974 2007-04-21 Kaz Kojima <kkojima@gcc.gnu.org>
17975
17976 PR target/31480
17977 * config/sh/sh.md (length): Check if prev_nonnote_insn (insn)
17978 is null.
17979
17980 2007-04-21 Andrew Pinski <andrew_pinski@playstation.sony.com>
17981
17982 * timevar.c (timevar_print): Change reference of --disable-checking to
17983 --enable-checking=release. Also warn if assert checking is disabled.
17984
17985 2007-04-21 Andrew Pinski <andrew_pinski@playstation.sony.com>
17986
17987 PR C/30265
17988 * c-gimplifier.c (gimplify_compound_literal_expr): Mark the
17989 decl as addressable if the compound literal was marked as
17990 addressable.
17991 Mark the decl as a gimple register if it is a complex or
17992 vector decl and does not live in memory.
17993
17994 2007-04-21 Andrew Pinski <andrew_pinski@playstation.sony.com>
17995
17996 * tree.h (GIMPLE_TUPLE_P): Also true for PHI_NODEs.
17997 (GENERIC_NEXT): New function macro.
17998 (PHI_CHAIN): Use phi_node's new chain variable.
17999 (tree_phi_node): Change tree_common to tree_base
18000 and add the chain field.
18001 * tree-phinodes.c (make_phi_node): Don't set
18002 TREE_TYPE on the new node.
18003 * c-decl.c (lang_tree_node): Use GENERIC_NEXT
18004 instead of checking GIMPLE_TUPLE_P in chain_next.
18005 * tree-vect-transform.c
18006 (get_initial_def_for_induction): Look at
18007 PHI_RESULT_TREE for the type of the phi node.
18008 (update_vuses_to_preheader): Use PHI_CHAIN
18009 instead of TREE_CHAIN on the phi node.
18010 * tree-ssa-structalias.c (compute_points_to_sets):
18011 Likewise.
18012 (ipa_pta_execute): Likewise.
18013
18014 2007-04-21 Richard Guenther <rguenther@suse.de>
18015
18016 PR middle-end/31136
18017 * fold-const.c (fold_unary): Call fold_convert_const on the
18018 original tree.
18019
18020 2007-04-21 Alexandre Oliva <aoliva@redhat.com>
18021
18022 * gcse.c (store_killed_in_insn): Handle PARALLELs.
18023 (store_killed_in_pat): New.
18024
18025 2007-04-20 Richard Henderson <rth@redhat.com>
18026
18027 PR target/31628
18028 * config/i386/i386.c (type_has_variadic_args_p): Look for any
18029 TREE_LIST with a void_type_node value, not void_list_node exactly.
18030
18031 2007-04-21 Douglas Gregor <doug.gregor@gmail.com>
18032
18033 * doc/standards.texi: Re-arrange into language-specific
18034 subsections. Add a C++ section, documenting which standards we
18035 support.
18036
18037 2007-04-21 Zdenek Dvorak <dvorakz@suse.cz>
18038
18039 * tree-ssa-structalias.c (delete_points_to_sets): Free graph->complex.
18040 * tree-ssa-operands.c (finalize_ssa_vuse_ops): Free new_ops.
18041
18042 2007-04-20 Daniel Jacobowitz <dan@codesourcery.com>
18043
18044 * config/rs6000/sysv4.h (STARTFILE_DEFAULT_SPEC): Include
18045 ecrti.o and crtbegin.o.
18046 (LIB_DEFAULT_SPEC): Include -lc.
18047 (ENDFILE_DEFAULT_SPEC): Include crtend.o and ecrtn.o.
18048
18049 2007-04-20 Richard Henderson <rth@redhat.com>
18050
18051 PR target/28623
18052 * config/alpha/alpha.c (get_unaligned_address): Remove extra_offset
18053 argument; update all callers.
18054 (get_unaligned_offset): New.
18055 * config/alpha/alpha.md (extendqidi2, extendhidi2): Don't use
18056 get_unaligned_address, just pass on the address directly.
18057 (unaligned_extendqidi): Use gen_lowpart instead of open-coding
18058 the subreg in the helper patterns.
18059 (unaligned_extendqidi_le): Use get_unaligned_offset.
18060 (unaligned_extendqidi_be, unaligned_extendhidi_le): Likewise.
18061 (unaligned_extendhidi_be): Likewise.
18062 (unaligned_extendhidi): Tidy.
18063 * config/alpha/alpha-protos.h: Update.
18064
18065 2007-04-20 Richard Henderson <rth@redhat.com>
18066
18067 * config/alpha/alpha.h (CPP_SPEC, CPP_SUBTARGET_SPEC): Remove.
18068 (EXTRA_SPECS, SUBTARGET_EXTRA_SPECS): Remove.
18069 * config/alpha/linux.h (CPP_SPEC): Undef before redefine.
18070 * config/alpha/linux-elf.h (EXTRA_SPECS): Rename SUBTARGET_EXTRA_SPECS.
18071 * config/alpha/freebsd.h (EXTRA_SPECS): Rename SUBTARGET_EXTRA_SPECS.
18072 (CPP_SPEC): Don't include %(cpp_subtarget).
18073 * config/alpha/netbsd.h (CPP_SPEC): Rename CPP_SUBTARGET_SPEC.
18074 (EXTRA_SPECS): Rename SUBTARGET_EXTRA_SPECS.
18075 * config/alpha/osf.h (CPP_SPEC, EXTRA_SPECS): Similarly.
18076
18077 2007-04-20 Jakub Jelinek <jakub@redhat.com>
18078
18079 * config/i386/i386.c (bdesc_2arg): Use ORDERED rather than UNORDERED
18080 for __builtin_ia32_cmpordss.
18081
18082 PR tree-optimization/31632
18083 * fold-const.c (fold_binary): Use op0 and op1 instead of arg0
18084 and arg1 for optimizations of comparison against min/max values.
18085 Fold arg0 to arg1's type for optimizations of comparison against
18086 min+1 and max-1 values.
18087
18088 2007-04-19 Bernd Schmidt <bernd.schmidt@analog.com>
18089
18090 * reload.c (combine_reloads): When trying to use a dying register,
18091 check whether it's uninitialized and don't use if so.
18092
18093 2007-04-19 Brooks Moses <brooks.moses@codesourcery.com>
18094
18095 * fold-const.c: Remove prototypes for native_encode_expr and
18096 native_interpret_expr.
18097 (native_encode_expr): Make non-static.
18098 (native_interpret_expr): Likewise.
18099 * tree.h: Add prototypes for the above.
18100
18101 2007-04-19 Joseph Myers <joseph@codesourcery.com>
18102
18103 * config/rs6000/spe.md (*frob_tf_ti, *frob_ti_tf, *frob_ti_tf_2,
18104 *mov_si<mode>_e500_subreg0, *mov_si<mode>_e500_subreg0_2,
18105 *mov_sitf_e500_subreg8, *mov_sitf_e500_subreg8_2, spe_extenddftf2,
18106 spe_fix_trunctfsi2_internal, spe_negtf2_internal, cmptfeq_gpr,
18107 tsttfeq_gpr, cmptfgt_gpr, tsttfgt_gpr, cmptflt_gpr, tsttflt_gpr):
18108 Add length attributes.
18109
18110 2007-04-19 Janis Johnson <janis187@us.ibm.com>
18111
18112 * ginclude/float.h: Check that __STDC_WANT_DEC_FP__ is defined,
18113 not that it is 1.
18114
18115 * c-cppbuiltin.c (c_cpp_builtins): Remove definition of
18116 __STDC_WANT_DEC_FP__.
18117
18118 2007-04-19 Joseph Myers <joseph@codesourcery.com>
18119
18120 * configure.ac: Allow both powerpc*-*-linux* and powerpc*-*-gnu*
18121 for long double compatibility.
18122 * configure: Regenerate.
18123
18124 2007-04-19 Eric Botcazou <ebotcazou@libertysurf.fr>
18125
18126 PR rtl-optimization/29841
18127 * cfgbuild.c (control_flow_insn_p): Return TRUE for unconditional
18128 trap instructions.
18129 * sched-deps.c (sched_analyze_insn): Prevent all non-jump instructions
18130 that may cause control flow transfer from being moved.
18131
18132 2007-04-18 Jan Hubicka <jh@suse.cz>
18133
18134 * fold-const.c (div_if_zero_remainder): Do signed divide for pointer
18135 types.
18136
18137 2007-04-18 Eric Christopher <echristo@apple.com>
18138
18139 * config/rs6000/darwin.md (load_macho_picbase): Use link register
18140 only. Update operands.
18141 * config/rs6000/rs6000.c (rs6000_emit_prologue): Update caller.
18142 * config/rs6000/rs6000.md (builtin_setjmp_receiver): Ditto. Move from
18143 link register to pic register.
18144
18145 2007-04-18 Dirk Mueller <dmueller@suse.de>
18146
18147 PR diagnostic/31227
18148 * tree-vrp.c (search_for_addr_array): New.
18149 (check_array_bounds): Suppress warning about
18150 address taken of array refs if its not de-referenced.
18151
18152 2007-04-18 Dorit Nuzman <dorit@il.ibm.com>
18153
18154 * tree-vectorizer.c (destroy_loop_vec_info): Set loop->aux to NULL.
18155 * tree-vect-analyze.c (vect_analyze_loop_form): Set loop->aux.
18156
18157 * tree-vectorizer.h (NITERS_KNOWN_P): New.
18158 * tree-vect-analyze.c (vect_analyze_loop_form): Call NITERS_KNOWN_P
18159 instead of LOOP_VINFO_INT_NITERS to avoid having to geneate loop_info.
18160
18161 * tree-vect-analyze.c (vect_determine_vectorization_factor): Add
18162 dump print.
18163 (vect_analyze_operations): Fix indenetation. Fix a comment. Fix a
18164 print message.
18165 (vect_analyze_scalar_cycles): Fix indentation.
18166 (vect_enhance_data_refs_alignment): Fix check in case of peeling.
18167 (vect_mark_relevant): Include phis in relevance analysis.
18168
18169 * tree-vect-transform.c (vect_transform_loop): Add an assert.
18170
18171 2007-04-18 Anatoly Sokolov <aesok@post.ru>
18172
18173 * config/avr/avr.c (ptrreg_to_str): Replace error() with
18174 output_operand_lossage().
18175
18176 2007-04-18 Dorit Nuzman <dorit@il.ibm.com>
18177
18178 * tree-vect-transform.c (get_initial_def_for_reduction): Clean away
18179 the unused code for reduction without adjust-in-epilog to simplify the
18180 function.
18181
18182 2007-04-18 Wolfgang Gellerich <gellerich@de.ibm.com>
18183
18184 * config/s390/s390.h (S390_TDC_POSITIVE_ZERO): New constant.
18185 (S390_TDC_NEGATIVE_ZERO): New constant.
18186 (S390_TDC_POSITIVE_NORMALIZED_NUMBER): New constant.
18187 (S390_TDC_NEGATIVE_NORMALIZED_NUMBER): New constant.
18188 (S390_TDC_POSITIVE_DENORMALIZED_NUMBER): New constant.
18189 (S390_TDC_NEGATIVE_DENORMALIZED_NUMBER): New constant.
18190 (S390_TDC_POSITIVE_INFINITY): New constant.
18191 (S390_TDC_NEGATIVE_INFINITY): New constant.
18192 (S390_TDC_POSITIVE_QUIET_NAN): New constant.
18193 (S390_TDC_NEGATIVE_QUIET_NAN): New constant.
18194 (S390_TDC_POSITIVE_SIGNALING_NAN): New constant.
18195 (S390_TDC_NEGATIVE_SIGNALING_NAN): New constant.
18196 (S390_TDC_INFINITY): New constant.
18197 * config/s390/s390.c (s390_canonicalize_comparison): Renamed
18198 UNSPEC_CMPINT to UNSPEC_CCU_TO_INT, added a UNSPEC_CCU_TO_INT-like
18199 optimization for UNSPEC_CCZ_TO_INT.
18200 * config/s390/s390.md ("*TDC_insn_<mode>"): New insn.
18201 ("*ccz_to_int"): New insn.
18202 ("isinf<mode>2"): New insn.
18203 (UNSPEC_CMPINT): Renamed to UNSPEC_CCU_TO_INT.
18204 (UNSPEC_CCU_TO_INT): New constant, replaces UNSPEC_CMPINT.
18205 (UNSPEC_CCZ_TO_INT): New constant.
18206
18207 2007-04-18 Richard Guenther <rguenther@suse.de>
18208
18209 PR tree-optimization/19431
18210 PR tree-optimization/21463
18211 * tree-pass.h (pass_phiprop): Declare.
18212 * passes.c (init_optimization_passes): New phiprop pass.
18213 * tree-ssa-forwprop.c (struct phiprop_d): New structure.
18214 (phivn_valid_p): New helper function.
18215 (phiprop_insert_phi): Likewise.
18216 (propagate_with_phi): Likewise.
18217 (tree_ssa_phiprop): New propagator propagating loads
18218 through phi nodes if profitable.
18219
18220 2007-04-18 Dorit Nuzman <dorit@il.ibm.com>
18221
18222 * tree-vect-analyze.c (process_use): New function.
18223 (vect_mark_stmts_to_be_vectorized): Factor out code to process_use.
18224 Check phis in all bbs.
18225 * tree-vectorizer.c (vect_is_simple_use): Remove a no longer relavant
18226 assert.
18227
18228 2007-04-18 Bernd Schmidt <bernd.schmidt@analog.com>
18229
18230 * reload1.c (eliminte_regs_in_insn): Use REG_EQUIV notes the same way
18231 we use REG_EQUAL.
18232
18233 2007-04-17 Anatoly Sokolov <aesok@post.ru>
18234
18235 PR target/30483
18236 * config/avr/avr.c (ptrreg_to_str): Replace gcc_unreachable() with
18237 error().
18238
18239 2007-04-17 H.J. Lu <hongjiu.lu@intel.com>
18240
18241 * config/i386/sse.md (sse_vmaddv4sf3): Use register_operand
18242 on "0".
18243 (sse_vmmulv4sf3): Likewise.
18244 (sse2_vmaddv2df3): Likewise.
18245 (sse2_vmmulv2df3): Likewise.
18246
18247 2007-04-17 Zdenek Dvorak <dvorakz@suse.cz>
18248
18249 PR rtl-optimization/31360
18250 * cfgloopanal.c (target_small_cost, target_pres_cost): Removed.
18251 (target_reg_cost): New.
18252 (init_set_costs): Initialize target_reg_cost. Add comments
18253 regarding the rationale of the costs.
18254 (global_cost_for_size): Renamed to...
18255 (estimate_reg_pressure_cost): ... and simplify. Decrease importance
18256 of register pressure.
18257 * tree-ssa-loop-ivopts.c (ivopts_global_cost_for_size): Use
18258 estimate_reg_pressure_cost. Add number of ivs.
18259 (determine_set_costs): Dump target_reg_cost.
18260 * loop-invariant.c (gain_for_invariant): Use
18261 estimate_reg_pressure_cost. Removed n_inv_uses argument.
18262 (best_gain_for_invariant, find_invariants_to_move): Remove
18263 n_inv_uses.
18264 * cfgloop.h (target_small_cost, target_pres_cost): Removed.
18265 (target_reg_cost): Declare.
18266 (global_cost_for_size): Declaration removed.
18267 (estimate_reg_pressure_cost): Declare.
18268
18269 2007-04-17 Peter Bergner <bergner@vnet.ibm.com>
18270
18271 * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): Force TDmode
18272 regnos into even/odd register pairs.
18273 * config/rs6000/rs6000.h [SLOW_UNALIGNED_ACCESS]: Treat DDmode and
18274 TDmode similar to the other floating point modes.
18275 [SECONDARY_MEMORY_NEEDED]: Treat DDmode similar to DFmode.
18276 * config/rs6000/dfp.md (negdd2, absdd2, negtd2, abstd2): New
18277 define_expand's.
18278 (negdd2_fpr, absdd2_fpr, nabsdd2_fpr, negtd2_fpr, abstd2_fpr,
18279 nabstd2_fpr, movdd_hardfloat64_mfpgpr): New define_insn's.
18280 (movdd_hardfloat64): Use TARGET_MFPGPR.
18281
18282 2007-04-17 Bernd Schmidt <bernd.schmidt@analog.com>
18283
18284 * reload1.c (delete_output_reload): Don't count output in n_inherited.
18285
18286 Revert
18287 2005-01-05 Richard Henderson <rth@redhat.com>
18288 PR rtl-opt/10692
18289 * reload1.c (do_input_reload): Restrict the optimization deleteing
18290 a previous output reload to RELOAD_FOR_INPUT.
18291
18292 2007-04-17 Dorit Nuzman <dorit@il.ibm.com>
18293
18294 * tree-vectorizer.h (stmt_vec_info_type): Add enum value
18295 induc_vec_info_type.
18296 (vectorizable_induction): New function declaration.
18297 * tree-vect-transform.c (get_initial_def_for_induction): No need to
18298 check if already vectorized. Find first place in BB where new stmts
18299 can be inserted. Takes only one argument.
18300 (vectorizable_induction): New function.
18301 (vect_transform_stmt): Add case for induc_vec_info_type to call
18302 vectorizable_induction.
18303 (vect_transform_loop): Consider phis for vectorization.
18304 * tree-vect-analyze.c (vect_determine_vectorization_factor): Simplify
18305 condition.
18306 (analyze_operations): Call vectorizable_induction when analyzing phis.
18307 Fix comment.
18308 (vect_mark_stmts_to_be_vectorized): Remove redundant checks.
18309 (vect_mark_relevant): Include phis in relevance analysis.
18310 (vect_mark_stmts_to_be_vectorize): Likewise.
18311 * tree-vect-patterns.c (widened_name_p): Remove obsolete asserts.
18312
18313 2007-04-16 Lawrence Crowl <crowl@google.com>
18314
18315 * doc/invoke.texi (Debugging Options): Add documentation for the
18316 -femit-struct-debug options -femit-struct-debug-baseonly,
18317 -femit-struct-debug-reduced, and
18318 -femit-struct-debug-detailed[=...].
18319
18320 * c-opts.c (c_common_handle_option): Add
18321 OPT_femit_struct_debug_baseonly, OPT_femit_struct_debug_reduced,
18322 and OPT_femit_struct_debug_detailed_.
18323 * c.opt: Add specifications for
18324 -femit-struct-debug-baseonly, -femit-struct-debug-reduced,
18325 and -femit-struct-debug-detailed[=...].
18326 * opts.c (set_struct_debug_option): Parse the
18327 -femit-struct-debug-... options.
18328 * opts.c (matches_main_base, main_input_basename,
18329 main_input_baselength, base_of_path, matches_main_base): Add
18330 variables and functions to compare header base name to compilation
18331 unit base name.
18332 * opts.c (should_emit_struct_debug): Add to determine to emit a
18333 structure based on the option.
18334 (dump_struct_debug) Also disabled function to debug this
18335 function.
18336 * opts.c (handle_options): Save the base name of the
18337 compilation unit.
18338
18339 * langhooks-def.h (LANG_HOOKS_GENERIC_TYPE_P): Define.
18340 (LANG_HOOKS_FOR_TYPES_INITIALIZER): Add.
18341 This hook indicates if a type is generic. Set it by default
18342 to "never generic".
18343 * langhooks.h (struct lang_hooks_for_types): Add a new hook
18344 to determine if a struct type is generic or not.
18345 * cp/cp-tree.h (class_tmpl_impl_spec_p): Declare a C++ hook.
18346 * cp/tree.c (class_tmpl_impl_spec_p): Implement the C++ hook.
18347 * cp/cp-lang.c (LANG_HOOKS_GENERIC_TYPE_P): Override null C hook
18348 with live C++ hook.
18349
18350 * flags.h (enum debug_info_usage): Add an enumeration to describe
18351 a program's use of a structure type.
18352 * dwarf2out.c (gen_struct_or_union_type_die): Add a new parameter
18353 to indicate the program's usage of the type. Filter structs based
18354 on the -femit-struct-debug-... specification.
18355 (gen_type_die): Split into two routines, gen_type_die and
18356 gen_type_die_with_usage. gen_type_die is now a wrapper
18357 that assumes direct usage.
18358 (gen_type_die_with_usage): Replace calls to gen_type_die
18359 with gen_type_die_with_usage adding the program usage of
18360 the referenced type.
18361 (dwarf2out_imported_module_or_decl): Suppress struct debug
18362 information using should_emit_struct_debug when appropriate.
18363
18364 2007-04-16 Ian Lance Taylor <iant@google.com>
18365
18366 PR tree-optimization/31522
18367 * tree-vrp.c (vr_phi_edge_counts): New static variable.
18368 (vrp_initialize): Allocate vr_phi_edge_counts.
18369 (vrp_visit_phi_node): Don't push to infinity if we saw a new
18370 executable edge. Drop test for all constants.
18371 (vrp_finalize): Free vrp_phi_edge_counts.
18372
18373 * doc/cpp.texi (Common Predefined Macros): Clarify description of
18374 __GNUC_GNU_INLINE__ and __GNUC_STDC_INLINE__.
18375
18376 * tree-ssa-propagate.c (cfg_blocks_add): Insert blocks with fewer
18377 predecessors at head rather than tail.
18378
18379 2007-04-16 Matthias Klose <doko@debian.org>
18380
18381 * config/alpha/linux.h (CPP_SPEC): Define.
18382 * config/arm/linux-gas.h (SUBTARGET_CPP_SPEC): Extend.
18383
18384 2007-04-16 Aldy Hernandez <aldyh@redhat.com>
18385
18386 * function.h: Remove sequence_stack extern declaration.
18387
18388 2007-04-16 Kazu Hirata <kazu@codesourcery.com>
18389
18390 * config/m68k/m68k.h (LONG_DOUBLE_TYPE_SIZE): Change to 64 on
18391 TARGET_FIDOA.
18392 (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Change to 64 if __mfido__ is
18393 defined.
18394
18395 2007-04-16 Anatoly Sokolov <aesok@post.ru>
18396
18397 * config/avr/avr.c (avr_arch_types): Rearranging array.
18398 (enum avr_arch): Add.
18399 (avr_mcu_types): Use avr_arch enumeration constants instead of
18400 numbers.
18401 * config/avr/avr.h (LINK_SPEC): Simplify.
18402
18403 2007-04-16 Kazu Hirata <kazu@codesourcery.com>
18404
18405 * config/m68k/m68k.c (m68k_libcall_value,
18406 m68k_function_value): Use macros for register names more.
18407
18408 * config/m68k/m68k.h (FRAME_POINTER_REGNUM): Use A6_REG
18409 instead.
18410 (M68K_REGNAME): Use A6_REG.
18411 * config/m68k/m68k.md (FP_REG): Rename to A6_REG.
18412
18413 2007-04-16 Maxim Kuvyrkov <mkuvyrkov@ispras.ru>
18414
18415 PR middle-end/28071
18416 * sched-int.h (struct deps): Split field 'pending_lists_length' into
18417 'pending_read_list_length' and 'pending_write_list_length'. Update
18418 comment.
18419 * sched-deps.c (add_insn_mem_dependence): Change signature. Update
18420 to handle two length counters instead of one. Update all uses.
18421 (flush_pending_lists, sched_analyze_1, init_deps): Update to handle
18422 two length counters instead of one.
18423 * sched-rgn.c (propagate_deps): Update to handle two length counters
18424 instead of one.
18425
18426 2007-04-16 H.J. Lu <hongjiu.lu@intel.com>
18427
18428 PR target/31582
18429 * config/i386/i386.c (ix86_expand_vec_set_builtin): Make a
18430 copy of source, pass it to ix86_expand_vector_set and return
18431 it as target.
18432
18433 2007-04-16 David Ung <davidu@mips.com>
18434 Joseph Myers <joseph@codesourcery.com>
18435
18436 * config/mips/mips.h (PROCESSOR_74KC, PROCESSOR_74KF,
18437 PROCESSOR_74KX, TUNE_74K, GENERATE_MADD_MSUB): Define.
18438 * config/mips/mips.c (mips_cpu_info_table, mips_rtx_cost_data):
18439 Add 74K processor information.
18440 * config/mips/mips.md: Include 74k.md.
18441 (cpu): Add 74kc,74kf,74kx.
18442 (ISA_HAS_MADD_MSUB): Change to GENERATE_MADD_MSUB throughout.
18443 * config/mips/74k.md: New.
18444 * doc/invoke.texi (MIPS Options): Document 74K support.
18445
18446 2007-04-16 Dorit Nuzman <dorit@il.ibm.com>
18447
18448 * tree-vect-analyze.c (vect_analyze_operations): Reorganize calls to
18449 vectorizable_* functions.
18450 * tree-vect-transform.c (vectorizable_call): Add check for
18451 STMT_VINFO_RELEVANT_P, STMT_VINFO_DEF_TYPE and STMT_VINFO_LIVE_P.
18452 (vectorizable_store): likewise.
18453 (vectorizable_conversion): Add check for STMT_VINFO_DEF_TYPE.
18454 Add comments.
18455 (vectorizable_operation, vectorizable_type_demotion): Likewise.
18456 (vectorizable_type_promotion, vectorizable_load): Likewise.
18457 (vectorizable_live_operation, vectorizable_condition): Likewise.
18458 (vectorizable_assignment): Add check for STMT_VINFO_DEF_TYPE and
18459 STMT_VINFO_LIVE_P.
18460 (vect_transform_stmt): Reorganize calls to vectorizable_* functions.
18461
18462 2007-04-15 Kazu Hirata <kazu@codesourcery.com>
18463
18464 * config/m68k/linux.h (FUNCTION_VALUE_REGNO_P): Use macros for
18465 register numbers more.
18466 * config/m68k/m68k.h (STACK_POINTER_REGNUM,
18467 FRAME_POINTER_REGNUM, STATIC_CHAIN_REGNUM,
18468 M68K_STRUCT_VALUE_REGNUM, FUNCTION_VALUE, LIBCALL_VALUE,
18469 FUNCTION_VALUE_REGNO_P): Likewise.
18470 * config/m68k/m68kelf.h (M68K_STRUCT_VALUE_REGNUM,
18471 STATIC_CHAIN_REGNUM): Likewise.
18472 * config/m68k/m68kemb.h (FUNCTION_VALUE_REGNO_P): Likewise.
18473 * config/m68k/netbsd-elf.h (M68K_STRUCT_VALUE_REGNUM,
18474 STATIC_CHAIN_REGNUM, FUNCTION_VALUE_REGNO_P): Likewise.
18475 * config/m68k/m68k.md (FP_REG): New.
18476
18477 2007-04-15 Kazu Hirata <kazu@codesourcery.com>
18478
18479 * config/m68k/m68k.h (PREFERRED_STACK_BOUNDARY): Prefer 32-bit
18480 alignment on fido.
18481
18482 2007-04-15 Kazu Hirata <kazu@codesourcery.com>
18483
18484 * config/i386/i386.c, config/s390/s390.c, config/s390/s390.md,
18485 tree-ssa-loop-niter.c, tree-ssa-structalias.c, tree-vrp.c: Fix
18486 comment typos.
18487
18488 2007-04-11 Zdenek Dvorak <dvorakz@suse.cz>
18489
18490 * tree-ssa-loop-prefetch.c (loop_prefetch_arrays): Ignore
18491 cold loops.
18492
18493 2007-04-14 Andrew Pinski <andrew_pinski@playstation.sony.com>
18494
18495 PR c/31520
18496 * c-decl.c (finish_decl): Grab the type of the decl after the call
18497 to store_init_value.
18498
18499 2007-04-14 Steven Bosscher <steven@gcc.gnu.org>
18500
18501 * common.opt (fforward-propagate): Fix "Optimization" annotation.
18502
18503 2007-04-14 Jakub Jelinek <jakub@redhat.com>
18504
18505 PR c++/25874
18506 * omp-low.c (expand_omp_parallel): If child_cfun->cfg, free
18507 dominators, post dominators and cleanup cfg before returning.
18508
18509 2007-04-14 Bernd Schmidt <bernd.schmidt@analog.com>
18510
18511 * config/bfin/bfin.h (MODES_TIEABLE_P): Allow more modes to be tied.
18512 * config/bfin/bfin.md (movsi_insn): Delete two unused alternatives.
18513
18514 2007-04-14 Kazu Hirata <kazu@codesourcery.com>
18515
18516 * config.gcc: Recognize fido.
18517 * config/m68k/m68k-devices.def (fidoa): New.
18518 * config/m68k/m68k.h (TARGET_CPU_CPP_BUILTINS): Define
18519 __mfido__.
18520 (FL_FIDOA, TARGET_FIDOA): New.
18521 * config/m68k/m68k.opt (mfidoa): New.
18522
18523 2007-04-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
18524
18525 PR middle-end/31322
18526 * dwarf2out.c (output_call_frame_info): Call assemble_external_libcall
18527 when a personality function is used.
18528
18529 2007-04-13 Bob Wilson <bob.wilson@acm.org>
18530
18531 * config/xtensa/xtensa.c (xtensa_expand_builtin): Use CALL_EXPR_FN.
18532
18533 2007-04-13 Mike Stump <mrs@apple.com>
18534
18535 * config/darwin-c.c (handle_c_option): Handle -fapple-kext here so
18536 we can...
18537 * config/darwin.opt (fapple-kext): Make C++ only.
18538 * config/darwin.c (darwin_override_options): Remove code to ensure
18539 -fapple-kext is given for C++ only.
18540
18541 2007-04-13 Richard Sandiford <richard@codesourcery.com>
18542
18543 * config/mips/vxworks.h (SUBTARGET_OVERRIDE_OPTIONS): Define.
18544 * config/mips/mips.c (override_options): Call
18545 SUBTARGET_OVERRIDE_OPTIONS, if defined.
18546
18547 2007-04-13 H.J. Lu <hongjiu.lu@intel.com>
18548
18549 * config/i386/i386.opt (msvr3-shlib): Removed.
18550
18551 * doc/invoke.texi: Remove -msvr3-shlib.
18552
18553 2007-04-13 H.J. Lu <hongjiu.lu@intel.com>
18554
18555 * config/i386/i386.opt (mpopcnt): Replace "popcount" instruction
18556 with "popcnt" instruction.
18557
18558 2007-04-13 Richard Guenther <rguenther@suse.de>
18559
18560 PR tree-optimization/21258
18561 * tree-vrp.c (compare_case_labels): New helper.
18562 (find_switch_asserts): New function.
18563 (find_assert_locations): Call it for SWITCH_EXPRs.
18564
18565 2007-04-13 Uros Bizjak <ubizjak@gmail.com>
18566
18567 * config/i386/i386.h (X87_FLOAT_MODE_P): Check for TARGET_80387.
18568 * config/i386/i386.md (*cmpfp0): Remove check for TARGET_80387, this
18569 check is now implied in X87_FLOAT_MODE_P.
18570 (*cmpfp_u, *cmpfp_<mode>, *cmpfp_i_i387): Ditto.
18571 (*cmpfp_iu_387, fix_trunc<mode>_fisttp_i386_1): Ditto.
18572 (fix_trunc<mode>_i386_fisttp): Ditto.
18573 (fix_trunc<mode>_i387_fisttp_with_temp): Ditto.
18574 (*fix_trunc<mode>_i387_1, fix_truncdi_i387): Ditto.
18575 (fix_truncdi_i387_with_temp, fix_trunc<mode>_i387): Ditto.
18576 (fix_trunc<mode>_i387_with_temp, *fp_jcc_1_387): Ditto.
18577 (*fp_jcc_2_387, *fp_jcc_5_387, *fp_jcc_6_387): Ditto.
18578 (*fp_jcc_7_387, *fp_jcc_8<mode>_387): Ditto.
18579 (unnamed_splitters): Ditto.
18580 * config/i386/i386.c (function_value_32): Generate FIRST_FLOAT_REG
18581 for X87_FLOAT_MODE_P mode. Override FIRST_FLOAT_REG with
18582 FIRST_SSE_REG for local functions when SSE math is enabled or
18583 for functions with sseregparm attribute.
18584 (standard_80387_constant_p): Return -1 if mode is not
18585 X87_FLOAT_MODE_P.
18586 (ix86_cc_mode): Assert that scalar mode is not DECIMAL_FLOAT_MODE_P.
18587 (ix86_expand_compare): Ditto.
18588 (ix86_expand_carry_flag_compare): Ditto.
18589 (ix86_expand_int_movcc): Check for SCALAR_FLOAT_MODE_P instead
18590 of FLOAT_MODE_P for cmp_mode and assert that cmp_mode is not
18591 DECIMAL_FLOAT_MODE_P.
18592 (ix86_preferred_output_reload_class): Use X87_FLOAT_MODE_P instead
18593 of SCALAR_FLOAT_MODE_P.
18594 (ix86_rtx_costs) [PLUS] Remove FLOAT_MODE_P and fall through to ...
18595 [MINUS]: ... here. Add SSE_FLOAT_MODE_P and X87_FLOAT_MODE_P
18596 checks before FLOAT_MODE_P.
18597 [MULT]: Add SSE_FLOAT_MODE_P and X87_FLOAT_MODE_P checks
18598 before FLOAT_MODE_P.
18599 [DIV]: Ditto.
18600 [NEG]: Ditto.
18601 [ABS]: Ditto.
18602 [SQRT]: Ditto.
18603 [FLOAT_EXTEND]: Use SSE_FLOAT_MODE_P.
18604
18605 2007-04-12 Paolo Bonzini <bonzini@gnu.org>
18606 Charles Wilson <libtool@cwilson.fastmail.fm>
18607
18608 * Makefile.in (stamp-as, stamp-collect-ld, stamp-nm): Remove.
18609 (libgcc.mvars): Don't depend on them.
18610 * configure.ac (as, collect-ld, nm): Create from exec-tool.in.
18611 * exec-tool.in: New.
18612
18613 2007-04-12 Brooks Moses <brooks.moses@codesourcery.com>
18614
18615 * doc/invoke.text (--help): Document --help=common.
18616
18617 2007-04-12 Thomas Neumann <tneumann@users.sourceforge.net>
18618
18619 * stub-objc.c (objc_build_keyword_decl): Avoid C++ keywords.
18620
18621 2007-04-12 Richard Sandiford <richard@codesourcery.com>
18622
18623 * Makefile.in (insn-emit.o): Depend on $(INTEGRATE_H).
18624 * genemit.c (main): Emit #include "integrate.h".
18625 * config/mips/mips-protos.h (SYMBOL_HALF): New mips_symbol_type.
18626 (LOADGP_RTP): New mips_loadgp_style.
18627 * config/mips/mips.h: Include config/vxworks-dummy.h.
18628 (TARGET_RTP_PIC): New macro.
18629 (TARGET_USE_GOT): Return true for TARGET_RTP_PIC.
18630 (TARGET_USE_PIC_FN_ADDR_REG): Return true for TARGET_VXWORKS_RTP.
18631 (ASM_OUTPUT_ADDR_DIFF_ELT): Emit function-relative case tables
18632 for TARGET_RTP_PIC.
18633 * config/mips/vxworks.h (SUBTARGET_ASM_SPEC): Define. Pass down
18634 -mvxworks-pic when using -mrtp and a PIC option.
18635 * config/mips/mips.c (mips_classify_symbol): Return SYMBOL_GOT_DISP
18636 for RTP PIC.
18637 (mips_symbolic_constant_p, mips_symbolic_address_p)
18638 (mips_symbol_insns): Handle SYMBOL_HALF.
18639 (override_options): Warn about -G and -mrtp being used together.
18640 Initialize mips_lo_relocs[SYMBOL_HALF].
18641 (mips_current_loadgp_style): Return LOADGP_RTP for RTP PIC.
18642 (mips_emit_loadgp): Handle LOADGP_RTP.
18643 (mips_in_small_data_p): Return false for TARGET_VXWORKS_RTP.
18644 * config/mips/mips.md (loadgp_rtp): New insn and splitter.
18645 (tablejump): Handle function-relative case table entries if
18646 TARGET_RTP_PIC.
18647 * config/mips/predicates.md (symbol_ref_operand): New predicate.
18648
18649 2007-04-12 Richard Sandiford <richard@codesourcery.com>
18650
18651 * config/mips/mips.md (load_call<mode>): Allow any general register.
18652 destination.
18653 (sibcall_value_internal, sibcall_value_multiple_internal)
18654 (call_value_internal, call_value_split, call_value_multiple_internal)
18655 (call_value_multiple_split): Remove constraints from operand 0.
18656
18657 2007-04-12 Richard Sandiford <richard@codesourcery.com>
18658
18659 * config/mips/mips-protos.h: In comments, refer to loadgp_absolute
18660 rather than loadgp_noshared.
18661 * config/mips/mips.c (mips_emit_loadgp): Use gen_loadgp_absolute
18662 instead of gen_loadgp_noshared. Use gen_loadgp_newabi instead of
18663 gen_loadgp.
18664 * config/mips/mips.md (loadgp): Rename to...
18665 (loadgp_newabi): ...this.
18666 (loadgp_noshared): Rename to...
18667 (loadgp_absolute): ...this.
18668
18669 2007-04-12 Richard Sandiford <richard@codesourcery.com>
18670
18671 * config/mips/mips.c (mips_ok_for_lazy_binding_p): Always return
18672 false for locally-binding symbols.
18673 (mips_dangerous_for_la25_p): Check mips_global_symbol_p.
18674
18675 2007-04-12 Richard Sandiford <richard@codesourcery.com>
18676
18677 * config/mips/mips-protos.h (SYMBOL_GOT_LOCAL): Rename to...
18678 (SYMBOL_GOT_PAGE_OFST): ...this.
18679 (SYMBOL_GOT_GLOBAL): Rename to...
18680 (SYMBOL_GOT_DISP): ...this.
18681 (SYMBOL_GOTOFF_GLOBAL): Rename to...
18682 (SYMBOL_GOTOFF_DISP): ...this. Update comments accordingly.
18683 * config/mips/mips.c (mips_global_symbol_p): New function.
18684 (mips_symbol_binds_local_p): Likewise.
18685 (mips_classify_symbol): Rename SYMBOL_GOT_GLOBAL to SYMBOL_GOT_DISP
18686 and SYMBOL_GOT_LOCAL to SYMBOL_GOT_PAGE_OFST. Use
18687 mips_global_symbol_p and mips_symbol_binds_local_p.
18688 (mips_symbolic_constant_p, mips_symbolic_address_p, mips_symbol_insns)
18689 (override_options): Rename SYMBOL_GOT_GLOBAL to SYMBOL_GOT_DISP,
18690 SYMBOL_GOT_LOCAL to SYMBOL_GOT_PAGE_OFST and SYMBOL_GOTOFF_GLOBAL to
18691 SYMBOL_GOTOFF_DISP.
18692 (mips_ok_for_lazy_binding_p): New function.
18693 (mips_load_call_address, mips_expand_call): Use it.
18694 (mips_dangerous_for_la25_p): Likewise.
18695 * config/mips/mips.md (*xgot_hi<mode>, *xgot_lo<mode>)
18696 (*got_disp<mode>): Use got_disp_operand instead of
18697 global_got_operand. Use SYMBOL_GOTOFF_DISP instead of
18698 SYMBOL_GOTOFF_GLOBAL.
18699 (*got_page<mode>): Use got_page_ofst_operand instead of
18700 local_got_operand.
18701 * config/mips/predicates.md (const_call_insn_operand): Use
18702 SYMBOL_GOT_DISP instead of SYMBOL_GOT_GLOBAL.
18703 (global_got_operand): Rename to...
18704 (got_disp_operand): ...this and use SYMBOL_GOT_DISP instead of
18705 SYMBOL_GOT_GLOBAL.
18706 (local_got_operand): Rename to...
18707 (got_page_ofst_operand): ...this and use SYMBOL_GOT_PAGE_OFST instead
18708 of SYMBOL_GOT_LOCAL.
18709
18710 2007-04-12 Richard Sandiford <richard@codesourcery.com>
18711
18712 * config/mips/mips.h (TARGET_SPLIT_CALLS): Check
18713 TARGET_CALL_CLOBBERED_GP.
18714 (TARGET_SIBCALLS): Check TARGET_USE_GOT instead of TARGET_ABICALLS.
18715 (TARGET_USE_GOT, TARGET_CALL_CLOBBERED_GP): New macros.
18716 (TARGET_CALL_SAVED_GP, TARGET_USE_PIC_FN_ADDR_REG): Likewise.
18717 (STARTING_FRAME_OFFSET): Check TARGET_CALL_CLOBBERED_GP instead
18718 of TARGET_ABICALLS && !TARGET_NEWABI.
18719 (MIPS_CALL): Check TARGET_USE_GOT instead of TARGET_ABICALLS.
18720 * config/mips/mips.c (mips_load_call_address): Check
18721 TARGET_CALL_SAVED_GP instead of TARGET_NEWABI.
18722 (mips_global_pointer): Check TARGET_USE_GOT instead of TARGET_ABICALLS.
18723 Check TARGET_CALL_SAVED_GP instead of TARGET_NEWABI.
18724 (mips_save_reg_p): Check TARGET_CALL_SAVED_GP instead of
18725 TARGET_ABICALLS && TARGET_NEWABI.
18726 (mips_current_loadgp_style): Check TARGET_USE_GOT instead of
18727 TARGET_ABICALLS.
18728 (mips_expand_prologue): Check TARGET_OLDABI instead of !TARGET_NEWABI.
18729 (mips_expand_epilogue): Check TARGET_CALL_SAVED_GP instead of
18730 TARGET_ABICALLS && TARGET_NEWABI.
18731 (mips_output_mi_thunk): Check TARGET_USE_GOT instead of
18732 TARGET_ABICALLS. Check TARGET_CALL_SAVED_GP instead of
18733 TARGET_NEWABI. Use TARGET_USE_PIC_FN_ADDR_REG to decide
18734 whether indirect calls must use $25.
18735 (mips_extra_live_on_entry): Check TARGET_GOT instead of
18736 TARGET_ABICALLS.
18737 * config/mips/mips.md (jal_macro): Check flag_pic and
18738 TARGET_CALL_CLOBBERED_GP instead of TARGET_ABICALLS and TARGET_NEWABI.
18739 (builtin_setjmp_setup, builtin_longjmp): Check TARGET_USE_GOT
18740 instead of TARGET_ABICALLS.
18741 (exception_receiver): Check TARGET_CALL_CLOBBERED_GP instead of
18742 TARGET_ABICALLS && TARGET_OLDABI.
18743 (load_call<mode>): Check TARGET_USE_GOT instead of TARGET_ABICALLS.
18744 (sibcall): In the comment above the define_insn, mention
18745 TARGET_USE_PIC_FN_ADDR_REG instead of TARGET_ABICALLS.
18746 * config/mips/constraints.md (c): Check TARGET_USE_PIC_FN_ADDR_REG
18747 instead of TARGET_ABICALLS.
18748
18749 2007-04-12 Bernd Schmidt <bernd.schmidt@analog.com>
18750
18751 * doc/md.texi (Blackfin family constraints): Document PA and PB.
18752 * config/bfin/bfin.h (CONST_OK_FOR_P): Handle PA and PB.
18753 (MACFLAGS_MATCH_P): New macro.
18754 * config/bfin/bfin.c (print_operand): Handle MACFLAG_IS_M.
18755 (bfin_secondary_reload): Treat EVEN_AREGS and ODD_AREGS like AREGS.
18756 * config/bfin/bfin.md (MACFLAG_IS_M): New constant. Renumber some of
18757 the other MACFLAG constants.
18758 (sum_of_accumulators, lshrpdi3, ashrpdi3): New patterns.
18759 (flag_machi): Tighten constraints. Renumber some of the operands.
18760 (flag_machi_acconly): Tighten constraints. Correct operand numbers in
18761 output template.
18762 (flag_machi_parts_acconly): New pattern.
18763 (flag_macinithi): Tighten constraints. Allow any accumulator to be
18764 used.
18765 (flag_macinit1hi): Tighten constraints.
18766 (flag_mul_macv2hi_parts_acconly): New pattern.
18767
18768 * config/bfin/lib1funcs.asm (___umulsi3_highpart, __smulsi3_highpart):
18769 Use a more efficient implementation.
18770 * config/bfin/bfin.md (umulsi3_highpart, smulsi3_highpart): Emit
18771 inline sequences when not optimizing for size.
18772
18773 * config/bfin/bfin.md (movhi_low2high, movhi_high2high, movhi_low2low,
18774 movhi_high2low): Delete, merge functionality into...
18775 (packv2hi): ... this pattern.
18776
18777 2007-02-11 Jie Zhang <jie.zhang@analog.com>
18778 * config/bfin/bfin.opt (msim): New option.
18779 (mcpu=): New option.
18780 * config/bfin/bfin-protos.h (enum bfin_cpu): New.
18781 (bfin_cpu_t): Typedef of enum bfin_cpu.
18782 (bfin_cpu_type): New declaration.
18783 * config/bfin/elf.h (STARTFILE_SPEC): Add support for
18784 -msim and -mcpu= options.
18785 (LIB_SPEC): Likewise.
18786 * config/bfin/bfin.c (bfin_cpu_type): Define.
18787 (bfin_handle_option): Handle -mcpu= option.
18788 * config/bfin/bfin.h (DEFAULT_CPU_TYPE): Define as BFIN_CPU_BF532.
18789 (TARGET_CPU_CPP_BUILTINS): Define __ADSPBF531__, __ADSPBF532__,
18790 __ADSPBF533__ or __ADSPBF537__ according to the cpu type.
18791
18792 2007-04-12 Richard Sandiford <richard@codesourcery.com>
18793
18794 * config.gcc (*-*-vxworks*): Don't add to tm_files in this stanza.
18795 (arm-wrs-vxworks, mips-wrs-vxworks, powerpc-wrs-vxworks)
18796 (powerpc-wrs-vxworksae): Use ${tm_file}.
18797 (i[4567]86-wrs-vxworks, i[4567]86-wrs-vxworksae): Add svr4.h
18798 after elfos.h. Remove i386/sysv4.h and add i386/vx-common.h.
18799 * config/i386/vx-common.h: New file.
18800
18801 2007-04-12 Richard Sandiford <richard@codesourcery.com>
18802
18803 * config/vxworks.h (VXWORKS_STARTFILE_SPEC): Use -l:crt0.o instead
18804 of crt0.o%s.
18805
18806 2007-04-12 Andreas Krebbel <krebbel1@de.ibm.com>
18807
18808 * config/s390/s390.md ("trunctddd2"): Use TDmode for the target of
18809 ldxtr.
18810
18811 2007-04-12 Douglas Gregor <doug.gregor@gmail.com>
18812
18813 PR c++/31078
18814 PR c++/31103
18815 * c-common.c (c_build_qualified_type): Set canonical type
18816 appropriately.
18817
18818 2007-04-12 Richard Guenther <rguenther@suse.de>
18819
18820 * tree-pretty-print.c (dump_generic_node): Print ARRAY_REF
18821 lower bound and element size if lower bound is not zero
18822 or either of the ARRAY_REF operands is set.
18823
18824 2007-04-12 Richard Guenther <rguenther@suse.de>
18825
18826 PR tree-optimization/24689
18827 PR tree-optimization/31307
18828 * fold-const.c (operand_equal_p): Compare INTEGER_CST array
18829 indices by value.
18830 * gimplify.c (canonicalize_addr_expr): To be consistent with
18831 gimplify_compound_lval only set operands two and three of
18832 ARRAY_REFs if they are not gimple_min_invariant. This makes
18833 it never at this place.
18834 * tree-ssa-ccp.c (maybe_fold_offset_to_array_ref): Likewise.
18835
18836 2007-04-11 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
18837
18838 * pa.c (pa_som_asm_init_sections): Ensure that cfun->machine is not
18839 null before emitting a .nsubspa directive.
18840
18841 2007-04-11 Diego Novillo <dnovillo@redhat.com>
18842
18843 * tree-ssa-alias.c (dump_mem_ref_stats): Do not call
18844 need_to_partition_p if there are no memory statements in the
18845 function.
18846
18847 2007-04-11 Zdenek Dvorak <dvorakz@suse.cz>
18848
18849 * tree-data-ref.c (chrec_steps_divide_constant_p): Removed.
18850 (gcd_of_steps_may_divide_p): New function.
18851 (analyze_miv_subscript): Use gcd_of_steps_may_divide_p.
18852
18853 2007-04-11 Bernd Schmidt <bernd.schmidt@analog.com>
18854
18855 * reload.c (find_reloads_toplev, find_reloads_address,
18856 find_reloads_address_1, find_reloads_subreg_address): Use rtx_equal_p,
18857 not a pointer equality test, to decide if we need to call
18858 push_reg_equiv_alt_mem.
18859
18860 2007-04-11 Sebastian Pop <sebastian.pop@inria.fr>
18861
18862 * tree-data-ref.c (affine_function_zero_p, constant_access_functions,
18863 insert_innermost_unit_dist_vector, add_distance_for_zero_overlaps):
18864 New.
18865 (build_classic_dist_vector): Call add_distance_for_zero_overlaps.
18866
18867 2007-04-11 Zdenek Dvorak <dvorakz@suse.cz>
18868
18869 * tree-data-ref.c (add_multivariate_self_dist): Force the distance
18870 vector to be positive.
18871
18872 2007-04-11 Diego Novillo <dnovillo@redhat.com>
18873
18874 PR 30735
18875 PR 31090
18876 * doc/invoke.texi: Document --params max-aliased-vops and
18877 avg-aliased-vops.
18878 * tree-ssa-operands.h (get_mpt_for, dump_memory_partitions,
18879 debug_memory_partitions): Move to tree-flow.h
18880 * params.h (AVG_ALIASED_VOPS): Define.
18881 * tree-ssa-alias.c (struct mp_info_def): Remove. Update all
18882 users.
18883 (mp_info_t): Likewise.
18884 (get_mem_sym_stats_for): New.
18885 (set_memory_partition): Move from tree-flow-inline.h.
18886 (mark_non_addressable): Only clear the set of symbols for the
18887 partition if it exists.
18888 (dump_memory_partitions): Move from tree-ssa-operands.c
18889 (debug_memory_partitions): Likewise.
18890 (need_to_partition_p): New.
18891 (dump_mem_ref_stats): New.
18892 (debug_mem_ref_stats): New.
18893 (dump_mem_sym_stats): New.
18894 (debug_mem_sym_stats): New.
18895 (update_mem_sym_stats_from_stmt): New.
18896 (compare_mp_info_entries): New.
18897 (mp_info_cmp): Call it.
18898 (sort_mp_info): Change argument to a list of mem_sym_stats_t
18899 objects.
18900 (get_mpt_for): Move from tree-ssa-operands.c.
18901 (find_partition_for): New.
18902 (create_partition_for): Remove.
18903 (estimate_vop_reduction): New.
18904 (update_reference_counts): New.
18905 (build_mp_info): New.
18906 (compute_memory_partitions): Refactor.
18907 Document new heuristic.
18908 Call build_mp_info, update_reference_counts,
18909 find_partition_for and estimate_vop_reduction.
18910 (compute_may_aliases): Populate virtual operands before
18911 calling debugging dumps.
18912 (delete_mem_sym_stats): New.
18913 (delete_mem_ref_stats): New.
18914 (init_mem_ref_stats): New.
18915 (init_alias_info): Call it.
18916 (maybe_create_global_var): Remove alias_info argument.
18917 Get number of call sites and number of pure/const call sites
18918 from gimple_mem_ref_stats().
18919 (dump_alias_info): Call dump_memory_partitions first.
18920 (dump_points_to_info_for): Show how many times a pointer has
18921 been dereferenced.
18922 * opts.c (decode_options): For -O2 set --param
18923 max-aliased-vops to 500.
18924 For -O3 set --param max-aliased-vops to 1000 and --param
18925 avg-aliased-vops to 3.
18926 * fortran/options.c (gfc_init_options): Remove assignment to
18927 MAX_ALIASED_VOPS.
18928 * tree-flow-inline.h (gimple_mem_ref_stats): New.
18929 * tree-dfa.c (dump_variable): Dump memory reference
18930 statistics.
18931 Dump NO_ALIAS* settings.
18932 (referenced_var_lookup): Tidy.
18933 (mem_sym_stats): New.
18934 * tree-ssa-copy.c (may_propagate_copy): Return true if DEST
18935 and ORIG are different SSA names for a memory partition.
18936 * tree-ssa.c (delete_tree_ssa): Call delete_mem_ref_stats.
18937 * tree-flow.h (struct mem_sym_stats_d): Define.
18938 (mem_sym_stats_t): Define.
18939 (struct mem_ref_stats_d): Define.
18940 (struct gimple_df): Add field mem_ref_stats.
18941 (enum noalias_state): Define.
18942 (struct var_ann_d): Add bitfield noalias_state.
18943 (mem_sym_stats, delete_mem_ref_stats, dump_mem_ref_stats,
18944 debug_mem_ref_stats, debug_memory_partitions,
18945 debug_mem_sym_stats): Declare.
18946 * tree-ssa-structalias.c (update_alias_info): Update call
18947 sites, pure/const call sites and asm sites in structure
18948 returned by gimple_mem_ref_stats.
18949 Remove local variable IS_POTENTIAL_DEREF.
18950 Increase NUM_DEREFS if the memory expression is a potential
18951 dereference.
18952 Call update_mem_sym_stats_from_stmt.
18953 If the memory references memory, call
18954 update_mem_sym_stats_from_stmt for all the direct memory
18955 symbol references found.
18956 (intra_create_variable_infos): Set noalias_state field for
18957 pointer arguments according to the value of
18958 flag_argument_noalias.
18959 * tree-ssa-structalias.h (struct alias_info): Remove fields
18960 num_calls_found and num_pure_const_calls_found.
18961 (update_mem_sym_stats_from_stmt): Declare.
18962 * params.def (PARAM_MAX_ALIASED_VOPS): Change description.
18963 Set default value to 100.
18964 (PARAM_AVG_ALIASED_VOPS): Define.
18965
18966 2007-04-11 Richard Guenther <rguenther@suse.de>
18967
18968 PR middle-end/31530
18969 * simplify-rtx.c (simplify_binary_operation_1): Do not simplify
18970 a * -b + c as c - a * b if we honor sign dependent rounding.
18971
18972 2007-04-11 Bernd Schmidt <bernd.schmidt@analog.com>
18973
18974 * config/bfin/bfin-protos.h (bfin_expand_movmem): Renamed from
18975 bfin_expand_strmov.
18976 * config/bfin/bfin.c (bfin_expand_prologue, bfin_delegitimize_address,
18977 bfin_function_ok_for_sibcall, split_load_immediate): Remove unused
18978 variables.
18979 (initialize_trampoline): Don't use old-style function definition.
18980 (bfin_secondary_reload): Mark IN_P argument as unused.
18981
18982 2007-04-10 Sebastian Pop <sebastian.pop@inria.fr>
18983
18984 PR tree-optimization/31343
18985 * tree-chrec.h (chrec_zerop): Moved before build_polynomial_chrec.
18986 (build_polynomial_chrec): Return a scalar when the evolution is zero.
18987 * testsuite/gcc.dg/vect/pr31343.c: New.
18988
18989 2007-04-10 Eric Christopher <echristo@apple.com>
18990
18991 * config/i386/i386.h (X87_FLOAT_MODE_P): New.
18992 * config/i386/i386.md (*cmpfp0): Use.
18993 (*cmpfp_u, *cmpfp_<mode>, *cmpfp_i_i387): Ditto.
18994 (*cmpfp_iu_387, fix_trunc<mode>_fisttp_i386_1): Ditto.
18995 (fix_trunc<mode>_i386_fisttp): Ditto.
18996 (fix_trunc<mode>_i387_fisttp_with_temp): Ditto.
18997 (*fix_trunc<mode>_i387_1, fix_truncdi_i387): Ditto.
18998 (fix_truncdi_i387_with_temp, fix_trunc<mode>_i387): Ditto.
18999 (fix_trunc<mode>_i387_with_temp, *fp_jcc_1_387): Ditto.
19000 (*fp_jcc_2_387, *fp_jcc_5_387, *fp_jcc_6_387): Ditto.
19001 (*fp_jcc_7_387, *fp_jcc_8<mode>_387): Ditto.
19002 (unnamed_splitters): Ditto.
19003 * config/i386/i386.c (output_fix_trunc): Assert that
19004 we're not being passed a TFmode operand.
19005
19006 2007-04-10 Zdenek Dvorak <dvorakz@suse.cz>
19007
19008 PR tree-optimization/31526
19009 * tree-inline.c (copy_cfg_body): Use last_basic_block instead of
19010 n_basic_blocks to find newly added blocks.
19011
19012 2007-04-10 Uros Bizjak <ubizjak@gmail.com>
19013
19014 * config/i386/i386.md (fix_trunc<mode>di_sse): Remove "x" from "xm"
19015 alternative.
19016 (fix_trunc<mode>si_sse): Ditto.
19017 (*floatsisf2_mixed, *floatsisf2_sse): Ditto.
19018 (*floatsidf2_mixed, *floatsidf2_sse): Ditto.
19019 (*floatdisf2_mixed, *floatdisf2_sse): Ditto.
19020 (*floatdidf2_mixed, *floatdidf2_sse): Ditto.
19021 (floathi<mode>2): Rename from floathisf2 and floathidf2. Macroize
19022 expander using SSEMODEF mode macro.
19023 (floatsi<mode>2): Rename from floatsisf2 and floashidf2. Macroize
19024 expander using SSEMODEF mode macro.
19025 (*floathi<mode>2_i387): Rename from *floathisf2_i387 and
19026 *floathidf2_i387. Macroize insn using X87MODEF12 mode macro.
19027 (*floatsi<mode>2_i387): Rename from *floatsisf2_i387 and
19028 *floatsidf2_i387. Macroize insn using X87MODEF12 mode macro.
19029 (*floatdi<mode>2_i387): Rename from *floatdisf2_i387 and
19030 *floatdidf2_i387. Macroize insn using X87MODEF12 mode macro.
19031 (float<mode>xf2): Rename from floathixf2, floatsixf2 and floatdixf2.
19032 Macroize insn using X87MODEF mode macro.
19033
19034 2007-04-09 H.J. Lu <hongjiu.lu@intel.com>
19035
19036 * config/i386/sse.md (sse2_pinsrw): Removed.
19037 (sse2_pextrw): Renamed to ...
19038 (*sse2_pextrw): This.
19039
19040 2007-04-09 Jan Hubicka <jh@suse.cz>
19041
19042 PR target/27869
19043 * config/i386/sse.md
19044 (sse_vmaddv4sf3, sse_vmmulv4sf3): Remove '%' modifier.
19045 (sse_vmsmaxv4sf3_finite, sse_vmsminv4sf3_finite): Remove.
19046 (sse2_vmaddv2df3, sse2_vmmulv2df3): Remove '%' modifier.
19047 (sse2_vmsmaxv2df3_finite, sse2_vmsminv2df3_finite): Remove.
19048
19049 2007-04-09 Jan Hubicka <jh@suse.cz>
19050
19051 * tree-ssa-ccp (maybe_fold_offset_to_component_ref): Recurse into
19052 multiple fields of union.
19053
19054 2007-04-09 Zdenek Dvorak <dvorakz@suse.cz>
19055
19056 * cfgloopmanip.c (create_preheader): Do not use loop_preheader_edge.
19057 (create_preheaders): Check that loops are available.
19058 (fix_loop_structure): Clean up, improve comments.
19059 * tree-ssa-loop-manip.c (rewrite_into_loop_closed_ssa):
19060 Check that loops are available. Set LOOP_CLOSED_SSA to the loops
19061 state flags.
19062 * tree-scalar-evolution.c (scev_finalize): Clear scalar_evolution_info.
19063 * predict.c (tree_estimate_probability): Do not call
19064 calculate_dominance_info. Call create_preheaders.
19065 * tree-cfgcleanup.c (cleanup_tree_cfg_loop): Only call
19066 rewrite_into_loop_closed_ssa if LOOP_CLOSED_SSA is set in loops state
19067 flags.
19068 * cfgloop.c (loop_preheader_edge): Assert that loops have preheaders.
19069 * cfgloop.h (LOOP_CLOSED_SSA): New constant.
19070 * tree-cfg.c (tree_split_edge): Make an assert more precise.
19071 * tree-ssa-threadedge.c (thread_across_edge): Comment the function
19072 arguments.
19073
19074 2007-04-08 Jan Hubicka <jh@suse.cz>
19075
19076 * tree.h (maybe_fold_offset_to_component_ref): Declare.
19077 * tree-ssa-ccp.c (maybe_fold_offset_to_component_ref): Export.
19078 * fold-const.c (fold_unary): Use it.
19079
19080 2007-04-08 Andrew Pinski <andrew_pinski@playstation.sony.com>
19081
19082 * varasm.c (assemble_variable): Remove call to
19083 lang_hooks.decls.prepare_assemble_variable.
19084 * langhooks-def.h (LANG_HOOKS_PREPARE_ASSEMBLE_VARIABLE): Kill.
19085 (LANG_HOOKS_DECLS): Remove LANG_HOOKS_PREPARE_ASSEMBLE_VARIABLE.
19086 * langhooks.h (lang_hooks_for_decls): Remove
19087 prepare_assemble_variable.
19088
19089 2007-04-08 Mike Stump <mrs@apple.com>
19090
19091 * config/i386/i386.c: Use inc/dec on Core2.
19092
19093 2007-04-08 Steven Bosscher <steven@gcc.gnu.org>
19094
19095 * langhooks.c (lhd_tree_inlining_add_pending_fn_decls,
19096 lhd_tree_inlining_anon_aggr_type_p, lhd_tree_inlining_start_inlining,
19097 lhd_tree_inlining_end_inlining): Remove.
19098 * langhooks.h (struct lang_hooks_for_tree_inlining): Remove then
19099 add_pending_fn_decls, anon_aggr_type_p, start_inlining, and
19100 end_inlining hooks.
19101 * langhooks-def.h (lhd_tree_inlining_add_pending_fn_decls,
19102 lhd_tree_inlining_anon_aggr_type_p, lhd_tree_inlining_start_inlining,
19103 lhd_tree_inlining_end_inlining): Remove prototypes.
19104 (LANG_HOOKS_TREE_INLINING_ADD_PENDING_FN_DECLS,
19105 LANG_HOOKS_TREE_INLINING_ANON_AGGR_TYPE_P,
19106 LANG_HOOKS_TREE_INLINING_START_INLINING,
19107 LANG_HOOKS_TREE_INLINING_END_INLINING): Remove.
19108
19109 * c-objc-common.h (LANG_HOOKS_TREE_INLINING_ANON_AGGR_TYPE_P): Do
19110 not set it.
19111
19112 2007-04-08 Anatoly Sokolov <aesok@post.ru>
19113
19114 PR target/29932
19115 * config/avr/predicates.md (io_address_operand): Delete predicate.
19116 (low_io_address_operand): Don't use 'mode' argument.
19117 (higth_io_address_operand): Rename ...
19118 (high_io_address_operand): ... to this. Don't use 'mode' argument.
19119 * config/avr/avr.md (*sbix_branch_tmp, *sbix_branch_tmp_bit7): Adjust
19120 for above change.
19121
19122 2007-04-07 Daniel Berlin <dberlin@dberlin.org>
19123
19124 Revert change removing staticp.
19125
19126 2007-04-07 Anatoly Sokolov <aesok@post.ru>
19127
19128 PR target/30289
19129 * config/avr/avr.md (*clrmemqi, *clrmemhi): Mark operand 4 as
19130 earlyclobber.
19131
19132 2007-04-07 Bruce Korb <bkorb@gnu.org>
19133
19134 * c.opt: Add -Wformat-contains-nul.
19135 * c-format.c (set_Wformat): Set warn_format_contains_nul to the
19136 -Wformat setting.
19137 (check_format_info_main): Check OPT_Wformat_contains_nul before emitting
19138 the NUL byte warning.
19139
19140 2007-04-07 H.J. Lu <hongjiu.lu@intel.com>
19141
19142 * config/i386/i386.c (ix86_handle_option): Handle SSSE3.
19143
19144 2007-04-06 Daniel Berlin <dberlin@dberlin.org>
19145
19146 * tree.c (staticp): No longer use staticp langhook.
19147 * langhooks.c (lhd_staticp): Removed.
19148 * langhooks.h (struct lang_hooks): Remove staticp.
19149 * c-common.c (c_staticp): Remove.
19150 * c-common.h (c_staticp): Ditto.
19151 * langhooks-defs.h (lhd_staticp): Ditto.
19152 (LHD_HOOKS_STATICP): Ditto
19153 * tree.h (gcc_assert_lowered): New macro.
19154
19155 2007-04-06 Zdenek Dvorak <dvorakz@suse.cz>
19156
19157 * tree-ssa-loop-niter.c (idx_infer_loop_bounds): Add and use
19158 argument "reliable".
19159 (infer_loop_bounds_from_ref, infer_loop_bounds_from_array):
19160 Add argument "reliable". Propagate it through calls.
19161 (infer_loop_bounds_from_undefined): Derive number of iterations
19162 estimates from references in blocks that do not dominate loop latch.
19163 (gcov_type_to_double_int): New function.
19164 (estimate_numbers_of_iterations_loop): Use gcov_type_to_double_int
19165 and expected_loop_iterations_unbounded.
19166 * cfgloopanal.c (expected_loop_iterations_unbounded): New function.
19167 (expected_loop_iterations): Use expected_loop_iterations_unbounded.
19168 * tree-data-ref.c (estimated_loop_iterations): Export.
19169 (get_references_in_stmt): Fix -- do not return addresses of local
19170 objects.
19171 * cfgloop.h (expected_loop_iterations_unbounded,
19172 estimated_loop_iterations): Declare.
19173
19174 2007-04-06 Andreas Tobler <a.tobler@schweiz.org>
19175
19176 * tree-sra.c (sra_build_elt_assignment): Initialize min/maxshift.
19177
19178 2007-04-06 Uros Bizjak <ubizjak@gmail.com>
19179
19180 * config/i386/i386.md (extend<mode>xf2): Rename from extendsfxf2
19181 and extenddfxf2. Macroize expander using X87MODEF12 mode macro.
19182 (*truncdfsf_mixed, *truncdfsf_i387, *truncdfsf2_i387_1):
19183 Use output_387_reg_move().
19184 (*truncxf<mode>2): Rename from *truncxfsf2 and truncxfdf2. Macroize
19185 expander using X87MODEF12 mode macro.
19186 (*truncxfsf2_mixed): Combine alternatives, ignore "r" alternative when
19187 choosing register preferences. Use output_387_reg_move().
19188 (*truncxfdf2_mixed): Combine alternatives, use "r" alternative
19189 instead of "x". Use output_387_reg_move().
19190 (*truncxf<mode>2_i387_noop): Rename from *truncxfsf2_i387_noop and
19191 *truncxfdf2_i387_noop. Macroize insn using X87MODEF12 mode macro.
19192 (*truncxf<mode>2_i387): Rename from *truncxfsf2_i387 and
19193 *truncxfdf2_i387. Macroize insn using X87MODEF12 mode macro.
19194 Use output_387_reg_move().
19195 (*truncxf?f_mixed splitter): Macroize splitter using X87MODEF12
19196 mode macro.
19197 (*truncxf?f_i387 splitter): Ditto.
19198
19199 2007-04-06 Daniel Berlin <dberlin@dberlin.org>
19200
19201 * langhooks-def.h (LANG_HOOKS_INITIALIZER): Remove
19202 LANG_HOOKS_SAFE_FROM_P.
19203 * expr.c (safe_from_p): Remove langhook call.
19204 * langhooks.h (lang_hooks): Remove safe_from_p.
19205 (lhd_safe_from_p): Remove prototype.
19206 * langhooks.c (lhd_safe_from_p): Remove.
19207
19208 2007-04-06 Jan Hubicka <jh@suse.cz>
19209
19210 * cgraphunit.c (decide_is_function_needed): Do not keep always_inline
19211 functions.
19212
19213 2007-04-06 Uros Bizjak <ubizjak@gmail.com>
19214
19215 * config/i386/i386.c (output_387_reg_move): Handle memory operand[0].
19216 * config/i386/i386.md (*movsf_1, *movdf_nointeger,
19217 *movdf_integer_rex64, *movdf_integer, *movxf_nointeger,
19218 *movxf_integer): Use output_387_reg_move() for x87 reg->mem
19219 alternative.
19220 (*extendsfdf2_mixed, *extendsfdf2_i387, *extendsfxf2_i387,
19221 *extenddfxf2_i387, *truncdfsf_fast_mixed): Ditto.
19222
19223 2007-04-05 Richard Henderson <rth@redhat.com>
19224
19225 * config/alpha/alpha.c (print_operand) [+]: Remove.
19226 (alpha_end_function): Print nop if call at end of function.
19227 * config/alpha/alpha.h (PRINT_OPERAND_PUNCT_VALID_P): Remove +.
19228 * config/alpha/alpha.md (UNSPEC_LDGP1): New.
19229 (call_osf_1_er_noreturn, call_value_osf_1_er_noreturn): New.
19230 (call_osf_2_er_nogp, call_value_osf_2_er_nogp): New.
19231 (call_osf_2_er, call_value_osf_2_er): Merge the ldgp highpart into
19232 the call pattern. Update peepholes to match.
19233
19234 2007-04-05 Janis Johnson <janis187@us.ibm.com>
19235
19236 * doc/extend.texi (Other Builtins): Add decimal float variants
19237 of signbit.
19238 * builtins.def: Ditto.
19239 * builtins.c (expand_builtin): Ditto.
19240
19241 2007-04-05 Uros Bizjak <ubizjak@gmail.com>
19242 H.J. Lu <hongjiu.lu@intel.com>
19243
19244 PR target/31478
19245 * config/i386/sse.md (sse2_umulv2siv2di3): Use V4SImode instead
19246 of V8HImode when calling ix86_binary_operator_ok.
19247 (sse2_pmaddwd): Call ix86_binary_operator_ok.
19248 (sdot_prodv8hi): Operands 1 and 2 must be register.
19249
19250 2007-04-05 Alexandre Oliva <aoliva@redhat.com>
19251
19252 * tree-sra.c (try_instantiate_multiple_fields): Needlessly
19253 initialize align to silence bogus warning.
19254
19255 2007-04-05 Alexandre Oliva <aoliva@redhat.com>
19256
19257 PR middle-end/22156
19258 * tree-sra.c (struct sra_elt): Add in_bitfld_block. Remove
19259 all_no_warning.
19260 (struct sra_walk_fns): Remove use_all parameter from use.
19261 (sra_hash_tree): Handle BIT_FIELD_REFs.
19262 (sra_elt_hash): Don't hash bitfld blocks.
19263 (sra_elt_eq): Skip them in parent compares as well. Handle
19264 BIT_FIELD_REFs.
19265 (sra_walk_expr): Don't maintain or pass down use_all_p.
19266 (scan_use): Remove use_all parameter.
19267 (scalarize_use): Likewise. Re-expand assignment to
19268 BIT_FIELD_REF of gimple_reg. De-scalarize before input or
19269 output, and re-scalarize after output. Don't mark anything
19270 for no warning.
19271 (scalarize_ldst): Adjust.
19272 (scalarize_walk_gimple_modify_statement): Likewise.
19273 (build_element_name_1): Handle BIT_FIELD_REFs.
19274 (instantiate_element): Don't warn for any element whose parent
19275 is used as a whole.
19276 (instantiate_missing_elements_1): Return the sra_elt.
19277 (canon_type_for_field): New.
19278 (try_instantiate_multiple_fields): New.
19279 (instantiate_missing_elemnts): Use them.
19280 (mark_no_warning): Removed.
19281 (generate_one_element_ref): Handle BIT_FIELD_REFs.
19282 (REPLDUP, sra_build_elt_assignment): New.
19283 (generate_copy_inout): Use them.
19284 (generate_element_copy): Likewise. Handle bitfld differences.
19285 (generate_element_zero): Don't recurse for blocks. Use
19286 sra_build_elt_assignment.
19287 (generate_one_element_int): Take elt instead of var. Use
19288 sra_build_elt_assignment.
19289 (generate_element_init_1): Adjust.
19290 (scalarize_use, scalarize_copy): Use REPLDUP.
19291 (scalarize_ldst): Move assert before dereference.
19292 (dump_sra_elt_name): Handle BIT_FIELD_REFs.
19293
19294 2007-04-05 Steven Bosscher <steven@gcc.gnu.org>
19295
19296 * regmove.c: Fix unused variable warnings due to previous commit.
19297
19298 2007-04-05 Steven Bosscher <steven@gcc.gnu.org>
19299
19300 * regmove.c (STACK_GROWS_DOWNWARD): Don't boolean-ize.
19301 (regmove_bb_head): Remove.
19302 (copy_src_to_dest): Don't update regmove_bb_head and BB_HEAD.
19303 (regmove_optimize): Don't do unnecessary CFG fixes for non-existing
19304 problems with fixup_match_1.
19305 Don't initialize/free regmove_bb_head.
19306
19307 (reg_is_remote_constant_p): If an insn is in the same basic block
19308 but not before INSN, consider it remote, too.
19309
19310 2007-04-05 Anatoly Sokolov <aesok@post.ru>
19311
19312 PR target/25448
19313 * config/avr/avr.c (avr_handle_fndecl_attribute): Use the
19314 DECL_ASSEMBLER_NAME, not the DECL_NAME.
19315
19316 2007-04-05 H.J. Lu <hongjiu.lu@intel.com>
19317
19318 * config/i386/i386.h (TARGET_CPU_CPP_BUILTINS): Reformat.
19319 (CONDITIONAL_REGISTER_USAGE): Likewise.
19320
19321 2007-04-04 Richard Henderson <rth@redhat.com>
19322
19323 * config/alpha/lib1funcs.asm: Remove unused file.
19324
19325 2007-04-04 Brooks Moses <brooks.moses@codesourcery.com>
19326
19327 PR other/31356
19328 * opts.c (print_specific_help): Fix --help=<language>
19329 header line.
19330 (common_handle_option): Support --help=common.
19331
19332 2007-04-04 Brooks Moses <brooks.moses@codesourcery.com>
19333
19334 PR other/31353
19335 * gcc.c (main): Do not run the linker if
19336 print_subprocess_help indicates that it shouldn't be
19337 run.
19338
19339 2007-04-04 Brooks Moses <brooks.moses@codesourcery.com>
19340
19341 PR doc/31355
19342 * doc/invoke.texi (--help=): Document <languages> value, fix
19343 formatting in tables of values.
19344
19345 2007-04-04 Danny Smith <dannysmith.users.sourceforge.net>
19346
19347 * config/i386/winnt-cxx.c (i386_pe_type_dllimport_p): Don't ignore
19348 dllimport attribute of virtual methods.
19349
19350 2007-04-04 Chen Liqin <liqin@sunnorth.com.cn>
19351
19352 * config/score/crti.asm: Change _bss_start to __bss_start.
19353 * config/score/score.h (CONDITIONAL_REGISTER_USAGE): Added.
19354 (OUTGOING_REG_PARM_STACK_SPACE) update.
19355 * config/score/score.opt: add options to make backend support
19356 score5, score5u, score7 and score7d.
19357 * config/score/score.md: Likewise.
19358 * config/score/misc.md: Likewise.
19359 * config/score/mac.md: Likewise.
19360 * doc/invoke.texi: Likewise.
19361 * doc/md.texi: update constraints define.
19362
19363 2007-04-03 Richard Henderson <rth@redhat.com>
19364
19365 * expr.c (store_expr): If get_signed_or_unsigned_type doesn't yield
19366 an appropriate type, use the mode instead.
19367
19368 2007-04-03 Richard Sandiford <richard@codesourcery.com>
19369
19370 * config.gcc (mips-wrs-vxworks): Add vx-common.h to tm_file.
19371 Set the default --with-arch setting to mips2.
19372 * config/mips/t-vxworks (MULTILIB_OPTIONS, MULTILIB_MATCHES)
19373 (MULTILIB_EXCEPTIONS): Redefine with new multilibs.
19374 (MULTILIB_OSDIRNAMES): Delete.
19375 (MULTILIB_DIRNAMES): Define.
19376 * config/mips/vxworks.h (LINK_SPEC): Add VXWORKS_LINK_SPEC.
19377 (LIB_SPEC, STARTFILE_SPEC, ENDFILE_SPEC): Define.
19378 (TARGET_OS_CPP_BUILTINS): Incorporate old SUBTARGET_CPP_SPEC
19379 definitions, except for _WRS_R3K_EXC_SUPPORT. Call
19380 VXWORKS_OS_CPP_BUILTINS.
19381 (SUBTARGET_CPP_SPEC): Redefine to VXWORKS_ADDITIONAL_CPP_SPEC.
19382 (MIPS_DEBUGGING_INFO): Undefine.
19383 (FUNCTION_PROFILER): Define to VXWORKS_FUNCTION_PROFILER.
19384
19385 2007-04-03 Jakub Jelinek <jakub@redhat.com>
19386
19387 PR middle-end/30704
19388 * fold-const.c (native_encode_real): Encode real.c provided longs
19389 as a series of 32-bit native integers.
19390 (native_interpret_real): Interpret buffer as a series of 32-bit
19391 native integers.
19392
19393 2007-04-03 Richard Guenther <rguenther@suse.de>
19394
19395 * genpreds.c (write_insn_constraint_len): Write function
19396 optimized for CONSTRAINT_LEN implementation.
19397 (write_tm_preds_h): Output insn_constraint_len inline and
19398 use it for CONSTRAINT_LEN.
19399 (write_insn_preds_c): Don't output insn_constraint_len.
19400 * doc/md.texi (define_register_constraint): Document multi-letter
19401 constraints shall have the same length if they start with the same
19402 letter.
19403
19404 2007-04-03 Uros Bizjak <ubizjak@gmail.com>
19405
19406 PR target/31175
19407 * config/i386/i386.md (isinf<mode>2): Expand only when
19408 TARGET_C99_FUNCTIONS is set.
19409
19410 2007-04-03 Uros Bizjak <ubizjak@gmail.com>
19411
19412 * config.gcc (i[34567]86-*-linux*): Add i386/t-crtpc to tm-file.
19413 (x86_64-*-linux*): Ditto.
19414 * config/i386/i386.opt (mpc): New option.
19415 * config/i386/i386.c (overrride_options): Handle
19416 ix87_precision_string.
19417 * config/i386/crtprec.c: New file.
19418 * config/i386/t-crtpc: Ditto.
19419 * config/i386/linux.h (ENDFILE_SPEC): Add handling of -mpc32, -mpc64
19420 and -mpc80 options.
19421 * config/i386/linux64.h (ENDFILE_SPEC): Ditto.
19422 * config/i386/t-linux64 (EXTRA_MULTILIB_PARTS): Add
19423 crtprec32.o, crtprec64.o and crtprec80.o.
19424
19425 * doc/invoke.texi (Machine Dependent Options): Add -mpc32, -mpc64
19426 and -mpc80 options.
19427 (i386 and x86-64 Options): Document -mpc32, -mpc64 and -mpc80 options.
19428
19429 2007-04-02 Eric Christopher <echristo@apple.com>
19430
19431 * doc/invoke.texi (i386 and x86-64 Options): Document -m64
19432 limitations on darwin.
19433
19434 2007-04-02 Anatoly Sokolov <aesok@post.ru>
19435
19436 PR target/31137
19437 * config/avr/avr.c (avr_rtx_costs): Add missing 'break' statements.
19438
19439 2007-04-02 Dave Korn <dave.korn@artimi.com>
19440
19441 * doc/tm.texi (FUNCTION_MODE): Update and extend documentation.
19442
19443 2007-04-02 Dave Korn <dave.korn@artimi.com>
19444
19445 * libgcc2.h (exception_descriptor): Don't forward-declare.
19446 (__get_eh_table_language, __get_eh_table_version): Delete
19447 prototypes of long-dead functions.
19448
19449 2007-04-01 Daniel Berlin <dberlin@dberlin.org>
19450
19451 * ebitmap.h: New file
19452 * ebitmap.c: New file
19453 * Makefile.in (ebitmap.o): New target.
19454
19455 2007-04-01 Jan Hubicka <jh@suse.cz>
19456
19457 * emit-rtl.c (emit_insn_before_setloc): Do not ICE when asked to emit
19458 before very first instruction.
19459
19460 2007-04-01 Jan Hubicka <jh@suse.cz>
19461
19462 * ggc-page.c (ggc_print_statistics): Fix formatting string to avoid
19463 waring on 64bit hosts.
19464 * bitmap.h: Fix typo in bitmap_head_def.
19465
19466 2007-04-01 Steven Bosscher <steven@gcc.gnu.org>
19467
19468 PR rtl-optimization/31391
19469 * cfgcleanup.c (try_optimize_cfg): If a removed label is turned
19470 into a DELETED_LABEL note, and the label is in an empty basic
19471 block, update BB_END as well as BB_HEAD.
19472
19473 2007-04-01 Richard Henderson <rth@redhat.com>
19474
19475 PR tree-optimization/31169
19476 * tree-vrp.c (extract_range_from_binary_expr) <RSHIFT_EXPR>: Drop
19477 to varying if the range is outside [0, prec-1].
19478
19479 2007-04-01 Richard Sandiford <richard@codesourcery.com>
19480
19481 PR target/31388
19482 * config/mips/mips.md (load_const_gp): New insn.
19483 * config/mips/mips.c (mips_split_symbol): Avoid using or creating
19484 the MIPS16 GP pseudo register if no_new_pseudos.
19485 (mips16_gp_pseudo_reg): Use gen_load_const_gp.
19486
19487 2007-03-31 Andrew Pinski <andrew_pinski@playstation.sony.com>
19488
19489 PR target/31364
19490 * config/rs6000/rs6000.md (call): Convert to LR hard reg for
19491 secureplt.
19492 (call_value): Likewise.
19493
19494 2007-03-31 Wolfgang Bangerth <bangerth@dealii.org>
19495 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
19496
19497 PR 14737
19498 * doc/invoke.texi: (optimization options): Reword description
19499 of -ffast-math. Document its primary purpose.
19500
19501 2007-03-31 Richard Guenther <rguenther@suse.de>
19502
19503 * omp-low.c (splay-tree.h): Include.
19504 (lookup_decl): Replace splay-tree usage by pointer-map.
19505 (maybe_lookup_decl): Likewise.
19506 (new_omp_context): Likewise.
19507 (delete_omp_context): Likewise.
19508 * gimplify.c (splay-tree.h): Include.
19509 * tree-inline.c (insert_decl_map): Replace splay-tree usage by
19510 pointer-map.
19511 (remap_ssa_name): Likewise.
19512 (remap_decl): Likewise.
19513 (remap_type_1): Likewise.
19514 (remap_type): Likewise.
19515 (copy_body_r): Likewise.
19516 (expand_call_inline): Likewise.
19517 (clone_body): Likewise.
19518 (copy_tree_r): Likewise.
19519 (remap_save_expr): Likewise.
19520 (unsave_r): Likewise.
19521 (unsave_expr_now): Likewise.
19522 (tree_function_versioning): Likewise.
19523 (build_duplicate_type): Likewise.
19524 * tree-inline.h (pointer-set.h): Include instead of splay-tree.h.
19525 (struct copy_body_data): Replace splay-tree by pointer-map.
19526 * Makefile.in (TREE_INLINE_H): Depend on pointer-map.h,
19527 not $(SPLAY_TREE_H).
19528 (gimplify.o): Depend on $(SPLAY_TREE_H).
19529 (omp-low.p): Likewise.
19530
19531 2007-03-31 Anatoly Sokolov <aesok@post.ru>
19532
19533 * config/avr/predicates.md (even_register_operand,
19534 odd_register_operand): New predicates.
19535 * config/avr/avr.md (movw peephole2): New.
19536 (movw_r peephole2): New.
19537
19538 2007-03-30 Rafael Avila de Espindola <espindola@google.com>
19539
19540 * tree.h (get_signed_or_unsigned_type): New.
19541 * fold-const.c (operand_equal_for_comparison_p): Use
19542 get_signed_or_unsigned_type instead of
19543 lang_hooks.types.signed_or_unsigned_type.
19544 * expr.c (store_expr): Ditto.
19545 * langhooks.c (get_signed_or_unsigned_type): New.
19546 (lhd_signed_or_unsigned_type): New.
19547 * langhooks.h (lhd_signed_or_unsigned_type): New.
19548 * langhooks-def.h (LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): Define.
19549
19550 2007-03-30 Richard Henderson <rth@redhat.com>
19551
19552 * tree-ssa-loop-ivopts.c: Include target.h.
19553 (produce_memory_decl_rtl): Pass the rtx through encode_section_info.
19554 (get_address_cost): Force SYMBOL_FLAG_LOCAL set.
19555 (force_expr_to_var_cost): Use produce_memory_decl_rtl.
19556 * Makefile.in (tree-ssa-loop-ivopts.o): Depend on TARGET_H.
19557
19558 2007-03-30 Richard Henderson <rth@redhat.com>
19559 Kai Tietz <kai.tietz@onevision.com>
19560
19561 * config/i386/cygming.h (DWARF2_DEBUGGING_INFO): Enable by
19562 default for 64-bit.
19563 (PREFERRED_DEBUGGING_TYPE): Prefer dwarf2 for 64-bit.
19564 (TARGET_64BIT_MS_ABI): New.
19565 (DBX_REGISTER_NUMBER): Handle 64-bit.
19566 (SIZE_TYPE, PTRDIFF_TYPE): Use long long for 64-bit.
19567 (LONG_TYPE_SIZE): Force to 32.
19568 (REG_PARM_STACK_SPACE): New.
19569 (OUTGOING_REG_PARM_STACK_SPACE): New.
19570 (REGPARM_MAX, SSE_REGPARM_MAX): New.
19571 (HANDLE_PRAGMA_PUSH_POP_MACRO): New.
19572 (STACK_BOUNDARY): Use 128 for 64-bit.
19573 * config/i386/cygwin.asm: Use push/ret to preserve call stack.
19574 Add 64-bit implementation.
19575 * config/i386/gthr-win32.c (__gthr_win32_key_create): Mark dtor
19576 argument unused.
19577 * config/i386/i386.c (x86_64_ms_abi_int_parameter_registers): New.
19578 (override_options): Set ix86_cmodel for TARGET_64BIT_MS_ABI.
19579 Warn for -mregparm, -mrtd in 64-bit mode; force ix86_regparm
19580 for 64-bit; use TARGET_SUBTARGET64_DEFAULT.
19581 (ix86_handle_cconv_attribute): Don't warn when ignoring if
19582 TARGET_64BIT_MS_ABI.
19583 (ix86_function_arg_regno_p): Handle TARGET_64BIT_MS_ABI.
19584 (ix86_pass_by_reference): Likewise.
19585 (ix86_function_value_regno_p): Likewise.
19586 (ix86_build_builtin_va_list): Likewise.
19587 (ix86_va_start, ix86_gimplify_va_arg): Likewise.
19588 (function_arg_advance_ms_64): New.
19589 (function_arg_advance): Call it.
19590 (function_arg_ms_64): New.
19591 (function_arg): Call it.
19592 (function_value_ms_64): New.
19593 (ix86_function_value_1): Call it.
19594 (return_in_memory_ms_64): New.
19595 (ix86_return_in_memory): Call it.
19596 (setup_incoming_varargs_ms_64): New.
19597 (ix86_setup_incoming_varargs): Call it.
19598 (ix86_expand_prologue): Handle 64-bit stack probing.
19599 (legitimize_pic_address): Handle TARGET_64BIT_MS_ABI.
19600 (output_pic_addr_const): Likewise.
19601 (x86_this_parameter): Likewise.
19602 (x86_output_mi_thunk): Likewise.
19603 (x86_function_profiler): Likewise.
19604 (TARGET_STRICT_ARGUMENT_NAMING): New.
19605 * config/i386/i386.h (TARGET_SUBTARGET64_DEFAULT): New.
19606 (TARGET_64BIT_MS_ABI): New.
19607 (CONDITIONAL_REGISTER_USAGE): Handle TARGET_64BIT_MS_ABI.
19608 * config/i386/i386.md (allocate_stack_worker): Remove.
19609 (allocate_stack_worker_32): Rename from allocate_stack_worker_1;
19610 describe the clobber of eax without a match_scratch.
19611 (allocate_stack_worker_postreload): Remove.
19612 (allocate_stack_worker_64): Rename from allocate_stack_worker_rex64;
19613 describe the clobbers of rax, r10, r11 properly; use __chkstk symbol.
19614 (allocate_stack_worker_rex64_postreload): Remove.
19615 (allocate_stack): Handle 64-bit.
19616 * config/i386/i386elf (TARGET_SUBTARGET_DEFAULT): Remove.
19617 * config/i386/mingw32.h (TARGET_VERSION): Set correctly for 64-bit.
19618 (EXTRA_OS_CPP_BUILTINS): Handle 64-bit.
19619 (STANDARD_INCLUDE_DIR): Handle TARGET_64BIT_DEFAULT.
19620 (STANDARD_STARTFILE_PREFIX_1): Likewise.
19621 * config/i386/unix.h (TARGET_SUBTARGET64_DEFAULT): New.
19622 * config.build (x86_64-*-mingw*): New host.
19623 * config.host (x86_64-*-mingw*): New host.
19624 * config.gcc (x86_64-*-mingw*): New target.
19625 * gthr-win32.h (__gthread_key_create): Mark dtor unused.
19626
19627 2007-03-30 Richard Henderson <rth@redhat.com>
19628 Kai Tietz <kai.tietz@onevision.com>
19629
19630 * c-pragma.c (struct def_pragma_macro_value): New.
19631 (struct def_pragma_macro): New.
19632 (pushed_macro_table): New.
19633 (dpm_hash, dpm_eq): New.
19634 (handle_pragma_push_macro, handle_pragma_pop_macro): New.
19635 (init_pragma): Install them.
19636 * doc/tm.texi (HANDLE_PRAGMA_PUSH_POP_MACRO): New.
19637
19638 2007-03-30 Anatoly Sokolov <aesok@post.ru>
19639
19640 * config/avr/avr.c (avr_override_options): Clear
19641 'flag_delete_null_pointer_checks'.
19642
19643 2007-03-30 Paolo Carlini <pcarlini@suse.de>
19644
19645 PR c++/26099
19646 * c-common.h (enum rid): Add RID_HAS_NOTHROW_ASSIGN,
19647 RID_HAS_NOTHROW_CONSTRUCTOR, RID_HAS_NOTHROW_COPY,
19648 RID_HAS_TRIVIAL_ASSIGN, RID_HAS_TRIVIAL_CONSTRUCTOR,
19649 RID_HAS_TRIVIAL_COPY, RID_HAS_TRIVIAL_DESTRUCTOR,
19650 RID_HAS_VIRTUAL_DESTRUCTOR, RID_IS_ABSTRACT, RID_IS_BASE_OF,
19651 RID_IS_CONVERTIBLE_TO, RID_IS_CLASS, RID_IS_EMPTY, RID_IS_ENUM,
19652 RID_IS_POD, RID_IS_POLYMORPHIC, RID_IS_UNION, as
19653 C++ extensions.
19654 * doc/extend.texi (Extensions to the C++ Language): Add Type Traits.
19655
19656 2007-03-30 Steven Bosscher <steven@gcc.gnu.org>
19657
19658 * regmove.c: Move all of pass_stack_adjustments from here...
19659 * combine-stack-adj.c: ...to this new file.
19660 * Makefile.in: Add rules for combine-stack-adj.o.
19661
19662 2007-03-30 Zdenek Dvorak <dvorakz@suse.cz>
19663
19664 PR tree-optimization/31383
19665 * tree-data-ref.c (affine_function_equal_p): Do not require the
19666 vectors to have the same length.
19667
19668 2007-03-30 Jan Hubicka <jh@suse.cz>
19669
19670 PR middle-end/30700
19671 * dwarf2out.c (reference_to_unused): Ask cgraph for functions
19672 availablility; add more sanity checking; ask varpool only about
19673 VAR_DECL.
19674
19675 2007-03-29 Richard Henderson <rth@redhat.com>
19676
19677 * unwind-generic.h (_sleb128_t, _uleb128_t): Don't use HAVE_LONG_LONG
19678 to decide, but __SIZEOF_LONG_LONG__.
19679
19680 2007-03-29 Richard Henderson <rth@redhat.com>
19681
19682 * emutls.c (struct __emutls_array): New.
19683 (emutls_destroy): Use it instead of casting element 0 from void*.
19684 (__emutls_get_address): Likewise.
19685
19686 2007-03-29 Richard Henderson <rth@redhat.com>
19687
19688 * varasm.c (initializer_constant_valid_p): Don't deny
19689 DECL_DLLIMPORT_P on functions.
19690
19691 * config/i386/cygming.h: Remove function declarations.
19692 (SUBTARGET_ENCODE_SECTION_INFO): Don't undef first.
19693 (ASM_OUTPUT_LABELREF): Remove.
19694 (COMMON_ASM_OP): Remove.
19695 (ASM_OUTPUT_COMMON): Remove.
19696 (ASM_OUTPUT_ALIGNED_DECL_COMMON): New.
19697 (ASM_DECLARE_OBJECT_NAME): Use i386_pe_maybe_record_exported_symbol.
19698 (ASM_DECLARE_FUNCTION_NAME): Likewise.
19699 * config/i386/i386-interix.h (SUBTARGET_ENCODE_SECTION_INFO):
19700 Rename from TARGET_ENCODE_SECTION_INFO.
19701 * config/i386/netware.h: Likewise.
19702 * config/i386/i386-protos.h: Update.
19703 * config/i386/i386.c (ix86_function_ok_for_sibcall): Turn ifdef
19704 of TARGET_DLLIMPORT_DECL_ATTRIBUTES into straight if.
19705 (legitimate_constant_p): Reject dllimports.
19706 (dllimport_map, get_dllimport_decl): New.
19707 (legitimize_dllimport_symbol): New.
19708 (legitimize_address, ix86_expand_move): Use it.
19709 (TARGET_BINDS_LOCAL_P): Redefine for TARGET_DLLIMPORT_DECL_ATTRIBUTES.
19710 * config/i386/i386.h (DLL_IMPORT_EXPORT_PREFIX): Remove.
19711 (SYMBOL_FLAG_DLLIMPORT, SYMBOL_REF_DLLIMPORT_P): New.
19712 (SYMBOL_FLAG_DLLEXPORT, SYMBOL_REF_DLLEXPORT_P): New.
19713 * config/i386/predicates.md (constant_call_address_operand): Only
19714 accept symbols; reject dllimport_p symbols.
19715 * config/i386/uwin.h (ASM_DECLARE_FUNCTION_NAME): Use
19716 i386_pe_maybe_record_exported_symbol.
19717 * config/i386/winnt.c (DLL_IMPORT_PREFIX, DLL_EXPORT_PREFIX): Remove.
19718 (i386_pe_determine_dllexport_p): Rename from i386_pe_dllexport_p.
19719 (i386_pe_determine_dllimport_p): Rename from i386_pe_dllimport_p;
19720 trust the setting of DECL_DLLIMPORT_P.
19721 (i386_pe_dllexport_name_p, i386_pe_dllimport_name_p): Remove.
19722 (i386_pe_mark_dllexport, i386_pe_mark_dllimport): Remove.
19723 (gen_stdcall_or_fastcall_suffix): Return NULL if no change required;
19724 tidy the argument scanning loop.
19725 (i386_pe_encode_section_info): Set SYMBOL_FLAG_DLLIMPORT and
19726 SYMBOL_FLAG_DLLEXPORT in SYMBOL_REF_FLAGS.
19727 (i386_pe_strip_name_encoding): Remove.
19728 (i386_pe_binds_local_p): New.
19729 (i386_pe_strip_name_encoding_full): Use default_strip_name_encoding.
19730 (i386_pe_output_labelref): Remove.
19731 (i386_pe_asm_output_aligned_decl_common): New.
19732 (i386_pe_maybe_record_exported_symbol): Rename from
19733 i386_pe_record_exported_symbol; check for dllexported symbols.
19734
19735 2007-03-29 Zack Weinberg <zack@mrtock.ucsd.edu>
19736
19737 * gengtype.c (oprintf): Mostly revert changes from 2007-03-26;
19738 add comment explaining why vsnprintf cannot be used.
19739
19740 2007-03-29 Douglas Gregor <doug.gregor@gmail.com>
19741
19742 PR tree-optimization/30666
19743 * tree.c (build_complex_type): When creating type names for DWARF2
19744 debug info, create TYPE_DECLs for TYPE_NAME instead of
19745 IDENTIFIER_NODEs.
19746 (build_common_tree_nodes_2): Use build_complex_type when building
19747 predefined complex types, to preserve canonical types.
19748
19749 2007-03-29 Steven Bosscher <steven@gcc.gnu.org>
19750
19751 * ifcvt.c (struct noce_if_info): Add then_else_reversed field.
19752 (noce_get_alt_condition): Look at it to determine whether to
19753 reverse the condition or not.
19754 (noce_get_condition): Substitute the truth for lies.
19755 (noce_find_if_block): Set the then_else_reversed field.
19756
19757 2007-03-29 Lars Poeschel <larsi@wh2.tu-dresden.de>
19758
19759 * config/fr30/fr30.md (movdi): Do not accept immediates as the
19760 destination of this insn.
19761 * config/fr30/fr30.c (fr30_move_double): Use emit_move_insn rather
19762 than calling gen_rtx_SET directly. Use r0 to hold the value of
19763 'address + 4' rather than a stack based temporary which can be
19764 mis-optimized away.
19765
19766 2007-03-29 Andreas Krebbel <krebbel1@de.ibm.com>
19767
19768 * config/s390/s390.c (s390_secondary_input_reload_class,
19769 s390_secondary_output_reload_class): Functions removed.
19770 (s390_secondary_reload): New function.
19771 (TARGET_SECONDARY_RELOAD): Target macro defined.
19772 * config/s390/s390.h (SECONDARY_INPUT_RELOAD_CLASS,
19773 SECONDARY_OUTPUT_RELOAD_CLASS): Macro definitions removed.
19774 * config/s390/s390.md ("reload_outti", "reload_outdi",
19775 "reload_indi", "reload_insi", "reload_out<mode>", "reload_in<mode>",
19776 "reload_out<mode>"): Expanders removed.
19777 ("reload<mode>_plus", "reload<mode>_nonoffmem_in",
19778 "reload<mode>_nonoffmem_out"): Expanders added.
19779
19780 2007-03-29 Andreas Krebbel <krebbel1@de.ibm.com>
19781
19782 * regmove.c (optimize_reg_copy_1): Don't perform DEST->SRC repair
19783 action if SRC->DEST replacement failed anyway.
19784
19785 2007-03-28 Mike Stump <mrs@apple.com>
19786
19787 * config/darwin9.h (ASM_OUTPUT_ALIGNED_COMMON): Add.
19788 * config/darwin.h (MAX_OFILE_ALIGNMENT): Fix.
19789 * config/rs6000/darwin.h (ASM_OUTPUT_ALIGNED_COMMON): Removed #undef.
19790
19791 2007-03-28 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
19792
19793 * config.gcc: Accept barcelona as a variant of amdfam10.
19794 * config/i386/i386.c (override_options): Likewise.
19795 * doc/invoke.texi: Likewise.
19796
19797 2007-03-28 Eric Botcazou <ebotcazou@adacore.com>
19798
19799 * tree-dfa.c (get_ref_base_and_extent): Do not expect positive
19800 offsets for BIT_FIELD_REF and COMPONENT_REF.
19801
19802 2007-03-28 Richard Guenther <rguenther@suse.de>
19803
19804 * tree.c (is_global_var): Move ...
19805 * tree-flow-inline.h (is_global_var): ... here.
19806 * tree.h (is_global_var): Remove declaration.
19807
19808 2007-03-28 Uros Bizjak <ubizjak@gmail.com>
19809
19810 * config/i386/i386.h (X86_TUNE_PROMOTE_HIMODE_IMUL): New tuning
19811 option.
19812 (TARGET_TUNE_PROMOTE_HIMODE_IMUL): New define. Use new tuning option.
19813 * config/i386/i386.c (ix86_tune_features): Initialize new
19814 tuning option.
19815 * config/i386/predicates.md (promotable_binary_operator): Use
19816 TARGET_TUNE_PROMOTE_HIMODE_IMUL.
19817
19818 2007-03-28 Grigory Zagorodnev <grigory_zagorodnev@linux.intel.com>
19819
19820 PR target/31380
19821 * config/i386/sse.md (uminv16qi3): Use UMIN instead of UMAX.
19822
19823 2007-03-28 Lars Poeschel <larsi@wh2.tu-dresden.de>
19824
19825 * config/fr30/fr30.md (movsi_internal): Change destination
19826 constraint from m to V and add m to the end.
19827
19828 2007-03-28 Christian Bruel <christian.bruel@st.com>
19829
19830 * config/sh/sh.md (movsi_i): Fix type attribute.
19831
19832 2007-03-28 Christian Bruel <christian.bruel@st.com>
19833
19834 * config/sh/sh.md (movsi_ie): Fix memory constraints attribute length.
19835 (movsf_ie): Likewise.
19836
19837 2007-03-28 Christian Bruel <christian.bruel@st.com>
19838
19839 * config.gcc: Add sh4-300 to multilib.
19840 * config/sh/t-mlib-sh4-300: New file.
19841
19842 2007-03-28 Andreas Krebbel <krebbel1@de.ibm.com>
19843
19844 * config/s390/s390.md ("fix_trunc<mode>di2"): New expander.
19845 ("fix_trunc<DFP:mode>di2_dfp"): New insn definition renamed from
19846 fix_trunc<mode>di2.
19847 ("fixuns_truncdddi2", "fixuns_trunctddi2"): Use
19848 fix_trunc<DFP:mode>di2_dfp instead of fix_trunc<mode>di2.
19849 ("fix_truncdfsi2", "fix_truncsfsi2", "fixuns_truncdddi2",
19850 "fixuns_trunctddi2"): Whitespace fix.
19851
19852 2007-03-28 Kaz Kojima <kkojima@gcc.gnu.org>
19853
19854 * config/sh/sh.h (CALL_COOKIE_RET_TRAMP_SHIFT): Move after
19855 the definition of struct sh_args.
19856 (CALL_COOKIE_RET_TRAMP, CALL_COOKIE_STACKSEQ_SHIFT,
19857 CALL_COOKIE_INT_REG_GET): Likewise.
19858
19859 2007-03-28 Steven Bosscher <steven@gcc.gnu.org>
19860
19861 * ifcvt.c (cond_exec_find_if_block): Return FALSE if no
19862 transformations are applied successfully.
19863
19864 2007-03-27 Douglas Gregor <doug.gregor@gmail.com>
19865
19866 * tree.c (tree_contains_struct): Permit 512 tree codes.
19867 * tree.h (tree_contains_struct): Ditto.
19868 (MAX_TREE_CODES): Ditto.
19869 (struct tree_base): Make CODE 16 bits, instead of 8 bits. Add
19870 SPARE member to store remaining padding bits.
19871
19872 2007-03-27 Anatoly Sokolov <aesok@post.ru>
19873
19874 * config/avr/avr.c (avr_mcu_types): Move at90usb82 device to 'avr4'
19875 architecture.
19876
19877 2007-03-27 Janis Johnson <janis187@us.ibm.com>
19878
19879 * configure.ac: Fix assembler test for powerpc*-linux decimal float.
19880 * configure: Regenerate.
19881
19882 * configure: Regenerate using the correct version of autoconf.
19883
19884 2007-03-27 Anatoly Sokolov <aesok@post.ru>
19885
19886 * config/avr/avr.c (avr_hard_regno_mode_ok): Disallow QImode in stack
19887 pointer regs.
19888 * config/avr/avr.h (REGISTER_NAMES): Rename "__SPL__" and "__SPH__"
19889 regs to "__SP_L__" and "__SP_H__".
19890
19891 2007-03-27 Richard Guenther <rguenther@suse.de>
19892
19893 * tree-dfa.c (get_ref_base_and_extent): Replace bit_offset and
19894 computations with it with a HOST_WIDE_INT variable.
19895
19896 2007-03-26 Mike Stump <mrs@apple.com>
19897
19898 * config/rs6000/darwin.h (DARWIN_MINVERSION_SPEC): Add
19899 objective-c-header, objective-c++-header and objc++-cpp-output
19900 support.
19901 * config/i386/darwin.h (DARWIN_MINVERSION_SPEC): Likewise.
19902
19903 2007-03-26 Richard Henderson <rth@redhat.com>
19904
19905 PR target/31361
19906 * config/i386/i386.c (IX86_BUILTIN_PSLLDQ128, IX86_BUILTIN_PSLLW128,
19907 IX86_BUILTIN_PSLLD128, IX86_BUILTIN_PSLLQ128, IX86_BUILTIN_PSRAW128,
19908 IX86_BUILTIN_PSRAD128, IX86_BUILTIN_PSRLW128, IX86_BUILTIN_PSRLD128,
19909 IX86_BUILTIN_PSRLQ128): New.
19910 (ix86_init_mmx_sse_builtins): Add them.
19911 (ix86_expand_builtin): Expand them.
19912 * config/i386/sse.md (ashr<mode>3, lshr<mode>3, ashl<mode>3): Make
19913 operand 2 be TImode.
19914 * config/i386/emmintrin.h (_mm_slli_epi64, _mm_srai_epi16,
19915 _mm_srai_epi32, _mm_srli_epi16, _mm_srli_epi32,
19916 _mm_srli_epi64): Mark __B const.
19917 (_mm_srli_si128, _mm_srli_si128): Fix disabled inline versions.
19918 (_mm_sll_epi16, _mm_sll_epi32, _mm_sll_epi64, _mm_sra_epi16,
19919 _mm_sra_epi32, _mm_srl_epi16, _mm_srl_epi32, _mm_srl_epi64): Use
19920 new two-vector shift builtins.
19921
19922 2007-03-26 Ian Lance Taylor <iant@google.com>
19923
19924 PR tree-optimization/31345
19925 * tree-vrp.c (extract_range_from_binary_expr): Turn ranges like
19926 [+INF, +INF(OVF)] into VARYING.
19927
19928 2007-03-26 Zack Weinberg <zackw@panix.com>
19929
19930 * gengtype-parse.c: New file.
19931 * gengtype-yacc.y: Delete.
19932 * gengtype-lex.l: Don't include gengtype-yacc.h.
19933 Define YY_DECL and yyterminate appropriately for recursive
19934 descent parser. yylval is now a string out-parameter to yylex.
19935 (HWS, EOID): New shorthand.
19936 (IWORD): Add a couple more types.
19937 (yylex): Add a setup stanza. Remove the complex rules for
19938 detecting GTY'ed types and typedefs; replace with simple
19939 keyword detectors. Adjust everything for the changed
19940 definition of yylval. Ignore all pp-directives, not just #define.
19941 (yyerror): Delete.
19942 (parse_file): Rename yybegin; do not call yyparse.
19943 (yyend): New.
19944 * gengtype.c (xasprintf): Export again.
19945 (this_file): New. Use everywhere __FILE__ was being used.
19946 (get_lang_bitmap): Special case types defined in gengtype.c.
19947 (do_typedef, new_structure): Suppress definition of certain types.
19948 (new_structure): Improve diagnostics of duplicate definitions.
19949 Make sure location_s is associated with input.h.
19950 (nreverse_pairs, define_location_structures): New functions.
19951 (main): Improve tagging of kludge types. Remove old kludges
19952 for input.h types; use define_location_structures.
19953 * gengtype.h: Update prototypes. Define token codes here.
19954 * Makefile.in: Remove all references to gengtype-yacc.
19955 Add rules for gengtype-parse.o. Adjust rules for gengtype-lex.o
19956 and gengtype.
19957 * bitmap.h (struct bitmap_head_def): Coalesce definitions,
19958 add GTY((skip)) to the field that's only conditionally there.
19959 * doc/install.texi: Document that Bison is no longer required
19960 unless building treelang.
19961
19962 * gengtype.c: Don't include gtyp-gen.h.
19963 (srcdir): Declare here.
19964 (base_files, lang_dir_names): Allocate dynamically.
19965 (gt_files, num_gt_files, num_lang_dirs): New globals.
19966 (measure_input_list, read_input_line, read_input_list)
19967 (set_lang_bitmap): New functions.
19968 (get_base_file_bitmap): Rename get_lang_bitmap and drastically
19969 simplify, relying on read_input_list to set up the bitmaps.
19970 (main): Arguments are no longer unused. Check for correct number
19971 of command line arguments, set srcdir and srcdir_len, then call
19972 read_input_list, before doing anything else. No need to worry
19973 about duplicates in main loop.
19974 * configure.ac: Simplify the calculation of all_gtfiles.
19975 Put language tags in there. Don't set or substitute
19976 all_gtfiles_files_langs or all_gtfiles_files_frags.
19977 * Makefile.in: Revamp the way gengtype is invoked, now that it
19978 takes a file on its command line with a much simpler format.
19979 Remove or replace with gtyp-input.list all references to gtyp-gen.h.
19980 (GTFILES): Remove duplicates and C source files.
19981 * c-config-lang.in, cp/config-lang.in, objc/config-lang.in
19982 * objcp/config-lang.in: Add c-pragma.h to gtfiles.
19983 * configure: Regenerate.
19984
19985 * gengtype.h: Remove all type definitions to gengtype.c; leave
19986 only definitions of options_p, type_p, and pair_p as opaque
19987 pointers. Update prototypes.
19988 * gengtype.c: Many type definitions moved here from gengtype.h.
19989 Consolidate type definitions at the top of the file.
19990 (xvasprintf): Delete.
19991 (xasprintf): Make static.
19992 (create_nested_pointer_option): Add 'next' parameter.
19993 (create_field_all, create_field_at): New functions.
19994 (create_field): Now a thin wrapper around create_field_all.
19995 (create_optional_field): Rename create_optional_field_ and add
19996 line argument. Original name is now a macro which supplies
19997 __LINE__.
19998 (oprintf): Use vsnprintf directly.
19999 (close_output_files): Use fatal rather than perror/exit.
20000 (note_def_vec, note_def_vec_alloc): Use create_field_at.
20001 (main): Set progname. Don't use exit.
20002 * gengtype-yacc.y (struct_fields): Use create_field_at.
20003 (option, optionseqopt): Delete.
20004 (optionseq): Consolidate productions from option here so we
20005 can use the first argument to create_option.
20006
20007 * gengtype-lex.l: Distinguish unions from structures in the
20008 token type. Don't call find_structure; return the tag as a string.
20009 * gengtype-yacc.y: Add new token types ENT_TYPEDEF_UNION and
20010 ENT_UNION. Type of these, ENT_TYPEDEF_STRUCT, and ENT_STRUCT is
20011 string. Reorganize typedef_struct production accordingly.
20012 Use create_nested_ptr_option.
20013 * gengtype.c (create_nested_ptr_option): New function.
20014 * gengtype.h: Declare it.
20015
20016 * gengtype.h (struct type): Replace 'sc' with boolean, scalar_is_char.
20017 (string_type): Don't declare.
20018 (do_scalar_typedef): Declare.
20019 (create_scalar_type): Update prototype.
20020 * gengtype.c (string_type): Make static.
20021 (scalar_nonchar, scalar_char): New.
20022 (do_scalar_typedef): Export. Always use scalar_nonchar for the type.
20023 (resolve_typedef): Use scalar_nonchar for error recovery.
20024 (create_scalar_type): Remove name_len field. Return scalar_char
20025 or scalar_nonchar as appropriate.
20026 (adjust_field_type): Look at scalar_is_char boolean to decide whether
20027 to use string_type.
20028 (throughout): Use scalar_nonchar instead of calling
20029 create_scalar_type, whenever possible.
20030 (main): Initialize scalar_char and scalar_nonchar before calling
20031 gen_rtx_next.
20032 * gengtype-lex.l: Adjust for removal of second argument to
20033 create_scalar_type. Use yylval.s instead of yylval.t when
20034 returning SCALAR.
20035 * gengtype-yacc.y: Type of SCALAR is string. Call
20036 create_scalar_type from type:SCALAR rule. Adjust for removal of
20037 second argument to create_scalar_type.
20038
20039 * vec.h: Remove all #if IN_GENGTYPE blocks.
20040 Add comment saying that changes may require adjustments to gengtype.
20041 * gengtype.c: Don't include coretypes.h or tm.h.
20042 Add comment to inclusion of errors.h.
20043 (note_def_vec, note_def_vec_alloc): New functions.
20044 * gengtype.h: Declare new functions.
20045 * gengtype-lex.l: Don't include coretypes.h.
20046 (YY_INPUT, macro_input, push_macro_expansion, mangle_macro_name):
20047 Delete.
20048 (update_lineno): Remove unnecessary prototype.
20049 (DEF_VEC_* rules): Simplify using note_def_vec / note_def_vec_alloc.
20050 (VEC rule): Just return VEC_TOKEN.
20051 * gengtype-yacc.y (VEC_TOKEN): New token type.
20052 (type): Add a production for VEC(a,b).
20053 * Makefile.in: Update dependencies.
20054
20055 * gengtype-lex.l: Remove rules for parsing pointer-to-function
20056 typedefs that use the old PARAMS macro.
20057
20058 * gengtype-lex.l: Remove all rules and states relating to yacc
20059 input files.
20060 * gengtype-yacc.y: Similarly.
20061 * gengtype.c (note_yacc_type): Delete function.
20062 * gengtype.h: Update prototypes.
20063
20064 2007-03-26 Joseph Myers <joseph@codesourcery.com>
20065
20066 * tree-pretty-print.c (dump_generic_node): Report precision of
20067 unnamed integer types.
20068
20069 2007-03-26 Steven Bosscher <steven@gcc.gnu.org>
20070
20071 * ifcvt.c (noce_try_store_flag_constants): Don't check
20072 no_new_pseudos here.
20073 (noce_try_store_flag_constants): Don't check no_new_pseudos.
20074 (noce_try_addcc, noce_try_store_flag_mask, noce_try_cmove_arith,
20075 noce_try_cmove_arith, noce_try_minmax, noce_try_abs,
20076 noce_try_sign_mask): Likewise.
20077 (if_convert): Check no_new_pseudos here.
20078
20079 (cond_exec_process_if_block, noce_process_if_block, find_if_block):
20080 Remove prototypes.
20081 (struct noce_if_info): Add then_bb, else_bb, join_bb members.
20082 (noce_get_condition): Handle new then_else_reversed argument.
20083 (noce_init_if_info): Remove, fold into noce_find_if_block.
20084 (noce_process_if_block): Take a struct noce_if_info as the
20085 argument. Don't set up one based on ce_if_info. Update pointer
20086 references accordingly.
20087 (cond_move_process_if_block): Likewise.
20088 (process_if_block): Removed.
20089 (find_if_block): Removed. Move functionality two new functions,
20090 noce_find_if_block and cond_exec_find_if_block.
20091 (noce_find_if_block): New function. Be aware of IF-THEN-JOIN
20092 blocks and the symmetric IF-ELSE-JOIN case.
20093 (cond_exec_find_if_block): Also new function mostly based on old
20094 find_if_block and process_if_block.
20095 (find_if_header): Replace find_if_block call with separately
20096 guarded calls to noce_find_if_block and cond_exec_find_if_block.
20097 (find_cond_trap): Update noce_get_condition call.
20098 (dead_or_predicable): Likewise.
20099
20100 2007-03-26 Jakub Jelinek <jakub@redhat.com>
20101
20102 * config/i386/i386.c (IX86_BUILTIN_CMPNEPD, IX86_BUILTIN_CMPNESD):
20103 Remove.
20104 (IX86_BUILTIN_PSLLW128, IX86_BUILTIN_PSLLD128, IX86_BUILTIN_PSLLQ128,
20105 IX86_BUILTIN_PSRAW128, IX86_BUILTIN_PSRAD128, IX86_BUILTIN_PSRLW128,
20106 IX86_BUILTIN_PSRLD128, IX86_BUILTIN_PSRLQ128): Remove.
20107 (ix86_init_mmx_sse_builtins): Remove v8hi_ftype_v8hi_v2di and
20108 v4si_ftype_v4si_v2di. Remove __builtin_ia32_psllw128,
20109 __builtin_ia32_pslld128, __builtin_ia32_psllq128,
20110 __builtin_ia32_psrlw128, __builtin_ia32_psrld128,
20111 __builtin_ia32_psrlq128, __builtin_ia32_psraw128 and
20112 __builtin_ia32_psrad128 builtins.
20113
20114 2007-03-26 Uros Bizjak <ubizjak@gmail.com>
20115
20116 * reg-stack.c (replace_reg): Use IN_RANGE macro in gcc_assert().
20117 * config/i386/constraints.md
20118 (define_constraint "I"): Use IN_RANGE macro.
20119 (define_constraint "J"): Ditto.
20120 (define_constraint "K"): Ditto.
20121 (define_constraint "M"): Ditto.
20122 (define_constraint "N"): Ditto.
20123 (define_constraint "O"): Ditto.
20124 * config/i386/predicates.md
20125 (define_predicate "register_no_elim_operand"): Use IN_RANGE macro.
20126 (define_predicate "const_0_to_3_operand"): Ditto.
20127 (define_predicate "const_0_to_7_operand"): Ditto.
20128 (define_predicate "const_0_to_15_operand"): Ditto.
20129 (define_predicate "const_0_to_63_operand"): Ditto.
20130 (define_predicate "const_0_to_255_operand"): Ditto.
20131 (define_predicate "const_1_to_31_operand"): Ditto.
20132 (define_predicate "const_2_to_3_operand"): Ditto.
20133 (define_predicate "const_4_to_7_operand"): Ditto.
20134
20135 2007-03-25 David Edelsohn <edelsohn@gnu.org>
20136
20137 * config/rs6000/rs6000.c (rs6000_emit_prologue): Always clobber LR
20138 in SImode for save_world.
20139 * config/rs6000/altivec.md (save_world, restore_world): Convert to
20140 LR hard reg.
20141
20142 2007-03-25 Dorit Nuzman <dorit@il.ibm.com>
20143
20144 PR tree-optimization/30784
20145 * fold-const.c (fold_ternary): Handle CONSTRUCTOR in case
20146 BIT_FIELD_REF.
20147
20148 2007-03-25 Revital Eres <eres@il.ibm.com>
20149
20150 * tree-if-conv.c (if_convertible_gimple_modify_stmt_p):
20151 Fold movement_possibility function into it.
20152
20153 2007-03-25 David Edelsohn <edelsohn@gnu.org>
20154
20155 * config/rs6000/darwin.md (load_macho_picbase): Ignore operand 0.
20156 (load_macho_picbase_{si,di}): Convert to LR hard reg.
20157 (call_indirect_nonlocal_darwin64): Same.
20158 (call_nonlocal_darwin64): Same.
20159 (call_value_indirect_nonlocal_darwin64): Same.
20160 (call_value_nonlocal_darwin64): Same.
20161 (sibcall_nonlocal_darwin64): Same.
20162 (sibcall_value_nonlocal_darwin64): Same.
20163 (sibcall_symbolic_64): Same.
20164 (sibcall_value_symbolic_64): Same.
20165 * config/rs6000/rs6000.c (rs6000_legitimize_tls_address): Remove
20166 LR pseudo.
20167 (rs6000_emit_load_toc_table): Same.
20168 * config/rs6000/altivec.md (restore_world): Convert to LR hard reg.
20169 * config/rs6000/rs6000.md (mulh_call): Convert to LR hard reg.
20170 (mull_call): Same.
20171 (divss_call): Same.
20172 (divus_call): Same.
20173 (quoss_call): Same.
20174 (quous_call): Same.
20175 (load_toc_v4_pic_si): Same
20176 (load_toc_v4_PIC_1): Same.
20177 (load_toc_v4_PIC_1b): Same.
20178 (call_indirect_aix{32,64}): Same.
20179 (call_value_indirect_aix{32,64}): Same.
20180 (call): Same.
20181 (call_value): Same.
20182 (call_local{32,64}): Same.
20183 (call_value_local{32,64}): Same.
20184 (call_indirect_nonlocal_aix{32,64}): Same.
20185 (call_nonlocal_aix{32,64}): Same.
20186 (call_value_indirect_nonlocal_aix{32,64}): Same.
20187 (call_value_nonlocal_aix{32,64}): Same.
20188 (call_indirect_nonlocal_sysv<mode>): Same.
20189 (call_nonlocal_sysv<mode>): Same.
20190 (call_value_indirect_nonlocal_sysv<mode>): Same.
20191 (call_value_nonlocal_sysv<mode>): Same.
20192 (sibcall): Same.
20193 (sibcall_local{32,64}): Same.
20194 (sibcall_value_local{32,64}): Same.
20195 (sibcall_nonlocal_aix{32,64}): Same.
20196 (sibcall_value_nonlocal_aix{32,64}): Same.
20197 (sibcall_nonlocal_sysv<mode>): Same.
20198 (sibcall_value): Same.
20199 (sibcall_value_nonlocal_sysv<mode>): Same.
20200
20201 2007-03-24 Paul Brook <paul@codesourcery.com>
20202
20203 * config/arm/lib1funcs.asm (div0): Use ARM_FUNC_START and do_push.
20204 * config/arm/linux-eabi.h: Remove legacy syscall hack.
20205
20206 2007-03-24 Richard Henderson <rth@redhat.com>
20207
20208 * config/ia64/constraints.md: New file.
20209 * config/ia64/predicates.md: Replace CONST_OK_FOR_? with
20210 satisfies_constraint_?.
20211 * config/ia64/ia64.c (ia64_move_ok, ia64_legitimate_constant_p,
20212 ia64_reload_gp, spill_restore_mem, ia64_expand_prologue,
20213 ia64_expand_epilogue, ia64_split_return_addr_rtx, ia64_rtx_costs,
20214 ia64_output_mi_thunk): Likewise.
20215 (ia64_const_ok_for_letter_p): Remove.
20216 (ia64_const_double_ok_for_letter_p): Remove.
20217 (ia64_extra_constraint): Remove.
20218 * config/ia64/ia64.h (REG_CLASS_FROM_LETTER): Remove.
20219 (CONST_OK_FOR_I, CONST_OK_FOR_J, CONST_OK_FOR_K, CONST_OK_FOR_L,
20220 CONST_OK_FOR_M, CONST_OK_FOR_N, CONST_OK_FOR_O, CONST_OK_FOR_P,
20221 CONST_OK_FOR_LETTER_P, CONST_DOUBLE_OK_FOR_G,
20222 CONST_DOUBLE_OK_FOR_LETTER_P, EXTRA_CONSTRAINT,
20223 EXTRA_MEMORY_CONSTRAINT): Remove.
20224 * config/ia64/ia64.md: Include constriants.md. Replace
20225 CONST_OK_FOR_? with satisfies_constraint_?.
20226
20227 2007-03-23 Michael Meissner <michael.meissner@amd.com>
20228 H.J. Lu <hongjiu.lu@intel.com>
20229
20230 * config/dfp-bit.h (DPD_BID_NAME): New macro to give either the
20231 DPD or BID name.
20232 (name macros): Use DPD_BID_NAME to convert names properly.
20233
20234 * optabs.c (DECIMAL_PREFIX): Prefix string to use for the current
20235 decimal floating point format.
20236 (init_floating_libfuncs): Change decimal functions so that they
20237 have a "bid_" prefix if the decimal system uses the BID format,
20238 and "dpd_" prefix if the decimal system uses the DPD format.
20239 (init_interclass_conv_libfuncs): Ditto.
20240 (init_intraclass_conv_libfuncs): Ditto.
20241
20242 * config.in (ENABLE_DECIMAL_BID_FORMAT): New macro to say we are
20243 using the BID format.
20244
20245 * configure.ac (ENABLE_DECIMAL_BID_FORMAT): Set to 1/0 to say
20246 whether we are using the BID decimal format.
20247 * configure: Regenerate.
20248
20249 * c-cppbuiltin.c (c_cpp_builtins): Define __STDC_WANT_DEC_FP__ if
20250 the compiler has decimal floating point enabled. Define
20251 __DECIMAL_BID_FORMAT__ if BID decimal floating point is used
20252 instead of DPD.
20253
20254 * config.in (ENABLE_DECIMAL_BID_FORMAT): New macro to say we are
20255 using the BID format.
20256
20257 * configure.ac (ENABLE_DECIMAL_BID_FORMAT): Set to 1/0 to say
20258 whether we are using the BID decimal format.
20259 * configure: Regenerate.
20260
20261 * c-cppbuiltin.c (c_cpp_builtins): Define __STDC_WANT_DEC_FP__ if
20262 the compiler has decimal floating point enabled. Define
20263 __DECIMAL_BID_FORMAT__ if BID decimal floating point is used
20264 instead of DPD.
20265
20266 * doc/install.texi (--enable-decimal-float): Document BID and DPD
20267 options, and that it is enabled for i386/x86_64 systems.
20268
20269 * Makefile.in (enable_decimal_float): New.
20270 (DECNUMFMT): New.
20271 (DECNUMINC): Add -I$(DECNUMFMT).
20272 (DECNUM_H): Mov decimal32.h, decimal64.h and decimal128.h
20273 to $(DECNUMFMT) from $(DECNUM).
20274
20275 * configure.ac: Support * --enable-decimal-float={no,yes,bid,dpd}.
20276 Substitute enable_decimal_float.
20277 * configure: Regenerated.
20278
20279 PR other/30529
20280 * config/dfp-bit.c (__dec_byte_swap): Use uint32_t instead of
20281 unsigned long.
20282
20283 * configure.ac: Enable decimal float for x86_64-*-linux*.
20284 * configure: Regenerated.
20285
20286 PR other/30530
20287 * dfp.c (decimal_real_arithmetic): Use decimal128FlipSign and
20288 decimal128ClearSign to flip and clear the sign bit in decimal128.
20289 (decimal_real_maxval): Set decimal128SetSign to set the sign
20290 bit in decimal128.
20291
20292 2007-03-23 Ian Lance Taylor <iant@google.com>
20293
20294 * fold-const.c (fold_binary): Correct warning for X - c >= X.
20295
20296 2007-03-23 Ian Lance Taylor <iant@google.com>
20297
20298 * tree-dump.c (dump_files): Correct comment.
20299
20300 2007-03-23 Ian Lance Taylor <iant@google.com>
20301
20302 * tree-vrp.c (operand_less_p): Ignore fold overflow warnings.
20303
20304 2007-03-23 Steven Bosscher <steven@gcc.gnu.org>
20305
20306 * tracer.c (tracer): Don't take FLAGS argument. Assert we are
20307 in cfglayout mode. Don't go into and out of cfglayout mode.
20308 Link the blocks in the order of the constructed traces.
20309 (rest_of_handle_tracer): Adjust call to tracer.
20310 * loop-init.c (rtl_loop_init): Assert we are in cfglayout mode.
20311 Don't go into cfglayout mode.
20312 (rtl_loop_done): Don't go out of cfglayout mode.
20313 * cfglayout.c (relink_block_chain): New function, split out from...
20314 (fixup_reorder_chain): ...here. Remove redundant checking.
20315 (cfg_layout_finalize): Don't clear the header, footer, and aux
20316 fields here, move the code to do so to relink_block_chain. Likewise
20317 for free_original_copy_tables.
20318 * rtl.h (tracer): Update prototype.
20319 * bb-reorder.c (reorder_basic_blocks): Don't take FLAGS argument.
20320 Assert we are in cfglayout mode. Don't go into and out of cfglayout
20321 mode. Use relink_block_chain to serialize the CFG according to the
20322 new basic block order. Move targetm.cannot_modify_jumps_p check from
20323 here...
20324 (gate_handle_reorder_blocks): ...to here.
20325 (duplicate_computed_gotos): Move targetm.cannot_modify_jumps_p check
20326 from here...
20327 (gate_duplicate_computed_gotos): ...to here.
20328 (rest_of_handle_reorder_blocks): Don't see if anything has changed,
20329 something always changes when going into and out of cfglayout mode.
20330 Perform an expensive cfg cleanup while going into cfglayout mode.
20331 Always update liveness information on HAVE_conditional_execution
20332 targets. Reserialize the basic blocks and go out of cfglayout mode.
20333 * reg-stack.c: Include cfglayout.h.
20334 (rest_of_handle_stack_regs): Go into and out of cfglayout mode around
20335 the call to reorder_basic_blocks.
20336 * basic-block.h (reorder_basic_blocks): Update prototype.
20337 (relink_block_chain): New prototype.
20338 * passes.c (pass_outof_cfg_layout_mode): Move after cse2.
20339
20340 2007-03-23 Joseph Myers <joseph@codesourcery.com>
20341
20342 * config/mips/mips.md (type, hazard, *movdi_32bit,
20343 *movdi_gp32_fp64, *movdi_64bit, *movsi_internal, movcc,
20344 *movhi_internal, *movqi_internal, *movsf_hardfloat,
20345 *movdf_hardfloat_64bit, *movdf_hardfloat_32bit, *movdf_softfloat,
20346 movv2sf_hardfloat_64bit, load_df_low, load_df_high, store_df_high,
20347 mthc1, mfhc1): Change xfer instruction type to mfc and mtc, as
20348 applicable.
20349 (movcc): Change first xfer to multi.
20350 * config/mips/24k.md, config/mips/4100.md, config/mips/4300.md,
20351 config/mips/5000.md, config/mips/5400.md, config/mips/5500.md,
20352 config/mips/5k.md, config/mips/7000.md, config/mips/9000.md,
20353 config/mips/generic.md: Change reservations using "xfer" to use
20354 "mfc,mtc".
20355 * config/mips/sb1.md (ir_sb1_mtxfer): Use "mtc" instead of
20356 using match_operand.
20357 (ir_sb1_mfxfer): Use "mfc" instead of using match_operand.
20358 * config/mips/sr71k.md (ir_sr70_xfer_from): Use "mfc" instead of
20359 examining mode.
20360 (ir_sr70_xfer_to): Use "mtc" instead of examining mode.
20361
20362 2007-03-22 Richard Henderson <rth@redhat.com>
20363
20364 * config/i386/i386.c: Remove unnecessary function declarations.
20365 Move targetm definition, and all related macros, to the end of
20366 the file. Resort some functions to put definitions before uses.
20367 (ix86_attribute_table): Make static. Move to end of file.
20368 (ix86_gimplify_va_arg): Make static.
20369
20370 2007-03-22 Richard Henderson <rth@redhat.com>
20371
20372 * config/i386/i386.c (ix86_function_regparm): Early exit for 64-bit;
20373 don't increase local_regparm with force_align_arg_pointer check.
20374 (ix86_function_sseregparm): Assert 32-bit.
20375 (type_has_variadic_args_p): New.
20376 (ix86_return_pops_args): Early exit for 64-bit. Reindent; use
20377 type_has_variadic_args_p.
20378 (ix86_function_arg_regno_p): Use == 0 instead of ! test for eax.
20379 (init_cumulative_args): Remove TARGET_DEBUG_ARG. Remove zero_cum;
20380 use memset instead. Do maybe_vaarg check first; skip attribute
20381 tests if true; skip attribute tests for 64-bit.
20382 (construct_container): Remove TARGET_DEBUG_ARG.
20383 (function_arg_advance_32, function_arg_advance_64): Split out ...
20384 (function_arg_advance): ... from here.
20385 (function_arg_32, function_arg_64): Split out ...
20386 (function_arg): ... from here.
20387 (ix86_pass_by_reference): Tidy.
20388 (ix86_function_value_regno_p): Rearrange w/ switch on regno.
20389 (function_value_32): New, from parts of ix86_function_value
20390 and ix86_value_regno.
20391 (function_value_64): New, from parts of ix86_function_value
20392 and ix86_libcall_value.
20393 (ix86_function_value_1): New.
20394 (ix86_function_value, ix86_libcall_value): Use it.
20395 (return_in_memory_32, return_in_memory_64): Split out ...
20396 (ix86_return_in_memory): ... from here.
20397 (ix86_struct_value_rtx): Skip for 64-bit.
20398 (ix86_libcall_value, ix86_value_regno): Remove.
20399 (setup_incoming_varargs_64): Split out ...
20400 (ix86_setup_incoming_varargs): ... from here.
20401 (ix86_va_start): Remove TARGET_DEBUG_ARG.
20402 (legitimate_address_p, legitimize_address): Remove TARGET_DEBUG_ADDR.
20403 * config/i386/i386-protos.h (ix86_function_value): Remove.
20404 * config/i386/i386.opt (TARGET_DEBUG_ADDR, TARGET_DEBUG_ARG): Remove.
20405
20406 2007-03-22 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
20407
20408 PR other/23572
20409 * c-lex.c (interpret_float): On overflow, emit pedantic warning if
20410 infinities not supported, otherwise emit warning if -Woverflow. On
20411 underflow, emit warning if -Woverflow.
20412 * real.c (real_from_string): Return -1 if underflow, +1 if overflow
20413 and 0 otherwise.
20414 * real.h (real_from_string): Update declaration
20415
20416 2007-03-22 Kai Tietz <kai.tietz@onevision.com>
20417 Richard Henderson <rth@redhat.com>
20418
20419 * defaults.h (OUTGOING_REG_PARM_STACK_SPACE): Provide default.
20420 * calls.c (compute_argument_block_size, expand_call,
20421 emit_library_call_value_1): Don't ifdef OUTGOING_REG_PARM_STACK_SPACE.
20422 * expr.c (block_move_libcall_safe_for_call_parm): Likewise.
20423 * function.c (STACK_DYNAMIC_OFFSET): Likewise.
20424 * doc/tm.texi (OUTGOING_REG_PARM_STACK_SPACE): Update.
20425 * config/alpha/unicosmk.h, config/bfin/bfin.h, config/iq2000/iq2000.h,
20426 config/mips/mips.h, config/mn10300/mn10300.h, config/mt/mt.h,
20427 config/pa/pa.h, config/rs6000/rs6000.h, config/score/score.h,
20428 config/spu/spu.h, config/v850/v850.h (OUTGOING_REG_PARM_STACK_SPACE):
20429 Set to 1.
20430
20431 2007-03-22 Joseph Myers <joseph@codesourcery.com>
20432
20433 * c-incpath.c (add_sysroot_to_chain): New.
20434 (merge_include_chains): Add sysroot argument. Call
20435 add_sysroot_to_chain if sysrooted.
20436 (register_include_chains): Update call to merge_include_chains.
20437 * doc/cppopts.texi: Document use of '=' in include directory
20438 arguments.
20439
20440 2007-03-22 Uros Bizjak <ubizjak@gmail.com>
20441
20442 * config/i386/i386.md (cmp<mode>): Rename from cmpsf and cmpdf.
20443 Macroize expander using SSEMODEF mode macro. Use SSE_FLOAT_MODE_P.
20444 (*cmpfp_<mode>): Rename from *cmpfp_sf and *cmpfp_df. Macroize
20445 insn pattern using X87MODEF12 mode macro.
20446
20447 2007-03-21 Seongbae Park <seongbae.park@gmail.com>
20448
20449 * regmove.c (regmove_optimize): Use reg_mentioned_p
20450 instead of reg_overlap_mentioned_p for DST.
20451
20452 2007-03-21 Mike Stump <mrs@apple.com>
20453
20454 * c.opt: Fixup for Objective-C/C++.
20455
20456 2007-03-21 Steve Ellcey <sje@cup.hp.com>
20457
20458 * explow.c (convert_memory_address): Fold memory reference when
20459 POINTERS_EXTEND_UNSIGNED < 0
20460
20461 2007-03-21 Richard Henderson <rth@redhat.com>
20462
20463 PR target/31245
20464 * config/i386/emmintrin.h (__m128i, __m128d): Mark may_alias.
20465 * config/i386/mmintrin.h (__m64): Likewise.
20466 * config/i386/xmmintrin.h (__m128): Likewise.
20467
20468 2007-03-21 Richard Sandiford <richard@codesourcery.com>
20469
20470 * config/vxworks.h (VXWORKS_ADDITIONAL_CPP_SPEC): Remove -D options.
20471 (VXWORKS_OS_CPP_BUILTINS): Define.
20472 * config/i386/vxworks.h (VXWORKS_CPU_DEFINE): Fold into...
20473 (TARGET_OS_CPP_BUILTINS): ...here. Use VXWORKS_OS_CPP_BUILTINS.
20474
20475 2007-03-21 Richard Sandiford <richard@codesourcery.com>
20476
20477 * rtl.h (constant_pool_reference_p): Delete.
20478 (find_constant_src): Declare.
20479 * rtlanal.c (find_constant_src): New function.
20480 * simplify-rtx.c (constant_pool_reference_p): Delete.
20481 * config/i386/i386.md: Use find_constant_src instead of
20482 constant_pool_reference_p/avoid_constant_pool_reference pairs.
20483
20484 2007-03-21 Richard Sandiford <richard@codesourcery.com>
20485
20486 * doc/invoke.texi (-fpie, -fPIE): Document __pie__ and __PIE__.
20487 * c-cppbuiltin.c (c_cpp_builtins): Define them.
20488
20489 2007-03-20 Mark Mitchell <mark@codesourcery.com>
20490
20491 * config/arm/elf.h (TARGET_ASM_DESTRUCTOR): Define.
20492 * config/arm/arm.c (arm_elf_asm_cdtor): New function.
20493 (arm_elf_asm_constructor): Use it.
20494 (arm_elf_asm_destructor): New function.
20495
20496 2007-03-20 Bernd Schmidt <bernd.schmidt@analog.com>
20497
20498 * jump.c (mark_jump_label): Treat SEQUENCE specially.
20499
20500 2007-03-20 Nathan Sidwell <nathan@codesourcery.com>
20501
20502 * config/vxlib.c (tls_delete_hook): Use TCB for kernel tasks.
20503
20504 2007-03-19 Andrew Haley <aph@redhat.com>
20505
20506 PR tree-optimization/31264
20507 * tree-vrp.c (register_edge_assert_for_1): Don't look though
20508 VIEW_CONVERT_EXPRs.
20509
20510 2007-03-19 Paolo Bonzini <bonzini@gnu.org>
20511
20512 PR rtl-optimization/30907
20513 * fwprop.c (forward_propagate_into): Never propagate inside a loop.
20514 (fwprop_init): Always call loop_optimizer_initialize.
20515 (fwprop_done): Always call loop_optimizer_finalize.
20516 (fwprop): We always have loop info now.
20517 (gate_fwprop_addr): Remove.
20518 (pass_fwprop_addr): Use gate_fwprop as gate.
20519
20520 PR rtl-optimization/30841
20521 * df-problems.c (df_ru_local_compute, df_rd_local_compute,
20522 df_chain_alloc): Call df_reorganize_refs unconditionally.
20523 * df-scan.c (df_rescan_blocks, df_reorganize_refs): Change
20524 refs_organized to refs_organized_size.
20525 (df_ref_create_structure): Use refs_organized_size instead of
20526 bitmap_size if refs had been organized, and keep refs_organized_size
20527 up-to-date.
20528 * df.h (struct df_ref_info): Change refs_organized to
20529 refs_organized_size.
20530 (DF_DEFS_SIZE, DF_USES_SIZE): Use refs_organized_size instead of
20531 bitmap_size.
20532
20533 2007-03-19 Mark Mitchell <mark@codesourcery.com>
20534
20535 * except.c (output_function_exception_table): Do not reference the
20536 EH personality routine for functions that do not require an
20537 exception table.
20538
20539 2007-03-20 Jakub Jelinek <jakub@redhat.com>
20540
20541 PR c/30762
20542 * c-typeck.c (convert_for_assignment): Call comptypes for
20543 RECORD_TYPE or UNION_TYPE.
20544
20545 PR inline-asm/30505
20546 * reload1.c (reload): Do invalid ASM checking after
20547 cleanup_subreg_operands.
20548
20549 2007-03-19 Jeff Law <law@redhat.com>
20550
20551 * tree-cfg.c (find_taken_edge): Tighten conditions for
20552 optimizing computed gotos.
20553
20554 2007-03-19 Michael Matz <matz@suse.de>
20555
20556 * builtins.c (expand_builtin_sync_operation,
20557 expand_builtin_compare_and_swap,
20558 expand_builtin_lock_test_and_set): Care for extending CONST_INTs
20559 correctly.
20560
20561 * config/i386/sync.md (sync_double_compare_and_swapdi_pic,
20562 sync_double_compare_and_swap_ccdi_pic): Use "SD" as constraint
20563 for operand 3.
20564
20565 2007-03-19 Andreas Krebbel <krebbel1@de.ibm.com>
20566
20567 * doc/tm.texi: Add brackets around the return type of
20568 TARGET_SECONDARY_RELOAD.
20569
20570 2007-03-19 Andrew Pinski <andrew_pinski@playstation.sony.com>
20571 Richard Guenther <rguenther@suse.de>
20572
20573 PR tree-optimization/31254
20574 * tree-ssa-forwprop.c (forward_propagate_addr_expr_1):
20575 Use handled_component_p () where appropriate. Continue
20576 propagating into the rhs if we propagated into an INDIRECT_REF
20577 on the lhs.
20578
20579 2007-03-19 Andreas Krebbel <krebbel1@de.ibm.com>
20580
20581 * config/s390/s390.md (op_type attribute): RRR instruction type added.
20582 (FP, DFP, SD_SF, DD_DF, TD_TF): New mode macros.
20583 (xde, xdee): Mode attributes adjusted to support DFP modes.
20584 (RRer, f0, op1, Rf, bt, bfp, HALF_TMODE): New mode attributes added.
20585 ("cmp<mode>", "*cmp<mode>_css_0", "*cmp<mode>_ccs", TF move splitters,
20586 DF move splitters, "floatdi<mode>2", "add<mode>3", "*add<mode>3",
20587 "*add<mode>3_cc", "*add<mode>3_cconly", "sub<mode>3", "*sub<mode>3",
20588 "*sub<mode>3_cc", "*sub<mode>3_cconly", "mul<mode>3", "*mul<mode>3",
20589 "div<mode>3", "*div<mode>3", "*neg<mode>2_nocc", "*abs<mode>2_nocc",
20590 "*negabs<mode>2_nocc", "copysign<mode>3"): Adjusted to support DFP
20591 numbers.
20592 ("*movtf_64", "*movtf_31", "*movdf_64dfp", "*movdf_64", "*movdf_31",
20593 "movsf"): Insn definitions removed.
20594 ("*mov<mode>_64", "*mov<mode>_31", "mov<mode>", "*mov<mode>_64dfp",
20595 "*mov<mode>_64", "*mov<mode>_31", "fix_trunc<DFP:mode>di2",
20596 "trunctddd2", "truncddsd2", "extendddtd2", "extendsddd2"): Insn
20597 definitions added.
20598 ("fixuns_truncdddi2", "fixuns_trunctddi2", "mov<mode>",
20599 "reload_in<mode>", "reload_out<mode>"): Expander added.
20600 ("movtf", "movdf", "reload_outtf", "reload_outdf", "reload_intf"):
20601 Expander removed.
20602
20603 2007-03-19 Andreas Krebbel <krebbel1@de.ibm.com>
20604
20605 * config/s390/s390.md: Only non-functional changes. Renamed
20606 FPR mode macro to BFP all over the file.
20607
20608 2007-03-19 Andreas Krebbel <krebbel1@de.ibm.com>
20609
20610 * config/s390/s390.md (UNSPEC_COPYSIGN): New constant.
20611 (op_type attribute): RRF instruction type added.
20612 (fT0): New mode attribute.
20613 ("*movdi_64dfp", "*movdf_64dfp", "*neg<mode>2_nocc", "*abs<mode>2_nocc",
20614 "*negabs<mode>2_nocc", "copysign<mode>3"): Insn definitions added.
20615 * config/s390/s390.h (SECONDARY_MEMORY_NEEDED): Due to a new
20616 instruction no secondary memory is needed when moving DFmode values
20617 between GPRs and FPRs.
20618
20619 2007-03-19 Andreas Krebbel <krebbel1@de.ibm.com>
20620
20621 * config/s390/s390.opt ("mhard-float", "msoft-float"): Bit value
20622 inverted and documentation adjusted.
20623 ("mhard-dfp", "msoft-dfp"): New options.
20624 * config/s390/s390.c (s390_handle_arch_option): New architecture
20625 switch: z9-ec.
20626 (override_options): Sanity checks for the new options added.
20627 * config.gcc: New architecture switch: z9-ec.
20628 * config/s390/s390.h (processor_flags): PF_DFP added.
20629 (TARGET_CPU_DFP, TARGET_DFP): Macro definitions added.
20630 (TARGET_DEFAULT): Due to the s390.opt changes hard float is enabled
20631 when the bit is NOT set so remove it from the defaults.
20632
20633 2007-03-19 Andreas Krebbel <krebbel1@de.ibm.com>
20634
20635 * genemit.c (main): Print include statement for dfp.h.
20636 * dfp.h (decimal_real_arithmetic): Hide prototype if tree_code enum
20637 is not available.
20638
20639 2007-03-19 Hans-Peter Nilsson <hp@axis.com>
20640
20641 * config/cris/t-elfmulti (EXTRA_MULTILIB_PARTS): Do not define here.
20642
20643 2007-03-19 Kaz Kojima <kkojima@gcc.gnu.org>
20644
20645 PR target/31022
20646 * config/sh/sh.c (sh_adjust_cost): Use the result of single_set
20647 instead of PATTERN.
20648
20649 2007-03-18 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
20650
20651 * pa.c (output_deferred_plabels, output_bb, output_millicode_call,
20652 attr_length_call, output_call, output_indirect_call): Cleanup
20653 formatting of targetm calls.
20654
20655 2007-03-19 Hans-Peter Nilsson <hp@axis.com>
20656
20657 * config/cris/cris.h (HANDLE_PRAGMA_PACK_PUSH_POP): Define to 1.
20658
20659 2007-03-18 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
20660
20661 * pa.md: Add fpstore_load and store_fpload instruction types. Provide
20662 reservation, bypass and anti-bypass descriptions for these
20663 instructions. Update move patterns.
20664 * pa.c (hppa_fpstore_bypass_p): Check for both TYPE_FPSTORE_LOAD and
20665 TYPE_FPSTORE.
20666
20667 2007-03-18 Dorit Nuzman <dorit@il.ibm.com>
20668
20669 * tree-vect-transform.c (get_initial_def_for_induction): Replace
20670 GET_MODE_NUNITS with TYPE_VECTOR_SUBPARTS.
20671 (get_initial_def_for_reduction): Likewise.
20672
20673 2007-03-16 Daniel Berlin <dberlin@dberlin.org>
20674
20675 Fix PR tree-optimization/29922
20676 * tree-ssa-pre.c (bb_bitmap_sets): Remove RVUSE_* members.
20677 (get_representative): Removed.
20678 (value_dies_in_block_x): Update for rvuse removal.
20679 (valid_in_sets): Update for renaming of vuses_dies_in_block_x.
20680 (compute_antic_aux): Handle when PHI nodes appear in
20681 non-single-successors.
20682 (dump_bitmap_of_names): Removed.
20683 (compute_antic_safe): Renamed and removed rvuse calculation.
20684 Calculate only antic safe.
20685 (insert_into_preds_of_block): Remove assert.
20686 (execute_pre): Update for renamed functions.
20687 (defer_or_phi_translate_block): New function.
20688
20689 2007-03-17 Kazu Hirata <kazu@codesourcery.com>
20690
20691 * config/arm/arm.c, config/arm/thumb2.md, config/m68k/m68k.c,
20692 config/spu/spu.c, omega.h, passes.c, predict.c: Fix comment
20693 typos.
20694 * doc/cpp.texi, doc/extend.texi, doc/invoke.texi: Fix typos.
20695 Follow spelling conventions.
20696
20697 * tree-data-ref.h: Remove the prototype for analyze_array.
20698
20699 2007-03-17 Dorit Nuzman <dorit@il.ibm.com>
20700
20701 PR tree-optimization/31041
20702 * tree-vect-transform.c (get_initial_def_for_induction): Call
20703 force_gimple_operand.
20704
20705 2007-03-17 Olga Golovanevsky <olga@il.ibm.com>
20706
20707 * ipa-type-escape.c (look_for_casts) : Revert code to use
20708 handled_component_p due to ada test a-numaux.adb.
20709
20710 2007-03-17 Kazu Hirata <kazu@codesourcery.com>
20711
20712 * final.c (final_scan_insn): Alter the condition of a
20713 conditional trap if we have nonstandard CC.
20714
20715 2007-03-16 Alexandre Oliva <aoliva@redhat.com>
20716
20717 * configure.ac: Remove excess quoting from asm line 0 test.
20718 * configure: Rebuilt.
20719
20720 2007-03-16 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
20721
20722 * doc/invoke.texi (-Wconversion): Document warnings specific to C++.
20723 * c-common.c (convert_and_check): Move warning logic to...
20724 (warnings_for_convert_and_check): ...here. Define.
20725 * c-common.h (warnings_for_convert_and_check): Declare.
20726
20727 2007-03-16 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
20728
20729 * pa.c (attr_length_call): Partially revert change of 2007-03-09.
20730 (output_call): Likewise.
20731
20732 2007-03-16 Richard Sandiford <richard@codesourcery.com>
20733
20734 * config/vxworks.h (SUPPORTS_INIT_PRIORITY): Define.
20735
20736 2007-03-16 Richard Sandiford <richard@codesourcery.com>
20737
20738 * config/vx-common.h (WINT_TYPE, WINT_TYPE_SIZE): Define.
20739
20740 2007-03-16 Uros Bizjak <ubizjak@gmail.com>
20741
20742 * config/i386/i386.c (override_options): Add PTA_NO_SAHF to k8,
20743 opteron, athlon-64 and athlon-fx processor_alias_table entries.
20744
20745 2007-03-16 Sebastian Pop <sebastian.pop@inria.fr>
20746
20747 PR tree-optimization/31183
20748 * tree-loop-linear.c (gather_interchange_stats, try_interchange_loops):
20749 Use double_int instead of unsigned int for representing access_strides.
20750 * testsuite/gcc.dg/tree-ssa/pr31183.c: New.
20751
20752 2007-03-16 Richard Guenther <rguenther@suse.de>
20753
20754 PR tree-optimization/31146
20755 * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Restructure
20756 to allow recursion of forward_propagate_addr_expr.
20757 (forward_propagate_addr_into_variable_array_index): Likewise.
20758 (forward_propagate_addr_expr): Likewise.
20759 (tree_ssa_forward_propagate_single_use_vars): Likewise.
20760 (forward_propagate_addr_expr_1): Recurse on simple copies
20761 instead of propagating into them. Do so for useless conversions
20762 as well.
20763 (forward_propagate_addr_expr): Clean up unused statements after
20764 recursion.
20765
20766 2007-03-16 Richard Guenther <rguenther@suse.de>
20767
20768 * builtins.c (expand_builtin_cexpi): Use the right argument
20769 for the expansion via cexp.
20770
20771 2007-03-16 Alexandre Oliva <aoliva@redhat.com>
20772
20773 * configure.ac: Don't require ELF binutils to tolerate # 0 "".
20774 * configure: Rebuilt.
20775
20776 2007-03-16 Alexandre Oliva <aoliva@redhat.com>
20777
20778 PR debug/29906
20779 * dwarf2out.c (force_type_die): Adjust comment.
20780 (dwarf2out_imported_module_or_decl): Handle base AT_import types.
20781
20782 2007-03-15 DJ Delorie <dj@redhat.com>
20783
20784 * config/frv/predicates.md (minmax_operator): Don't check operands
20785 here.
20786
20787 2007-03-15 Zdenek Dvorak <dvorakz@suse.cz>
20788
20789 * tree-ssa-loop-niter.c (record_estimate): Add "upper" argument.
20790 Update constant estimates of number of iterations.
20791 (record_nonwrapping_iv): Add "upper" argument. "data_size_bounds_p"
20792 argument renamed to "realistic".
20793 (compute_estimated_nb_iterations): Removed.
20794 (record_niter_bound): New function.
20795 (idx_infer_loop_bounds): For possible but unlikely tail arrays,
20796 call record_nonwrapping_iv with upper = false.
20797 (infer_loop_bounds_from_signedness): Pass upper argument to
20798 record_nonwrapping_iv.
20799 (estimate_numbers_of_iterations_loop): Do not call
20800 compute_estimated_nb_iterations. Record estimate based on profile
20801 information. Initialize the constant estimates of number of
20802 iterations.
20803 * tree-data-ref.c (estimated_loop_iterations): Return the recorded
20804 estimates.
20805 * tree-ssa-loop-prefetch.c (loop_prefetch_arrays): Add dump when
20806 number of iterations is too small.
20807 * cfgloop.h (struct nb_iter_bound): Remove "realistic" field.
20808 (EST_NOT_AVAILABLE): Removed.
20809 (struct loop): Replace estimated_nb_iterations by any_upper_bound,
20810 nb_iterations_upper_bound, any_estimate and nb_iterations_estimate
20811 fields.
20812
20813 2007-03-15 Zdenek Dvorak <dvorakz@suse.cz>
20814
20815 * tree-ssa-loop-niter.c (refine_bounds_using_guard, bound_difference):
20816 Handle NE_EXPR guards.
20817
20818 2007-03-15 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
20819
20820 PR c++/24924
20821 * c-opts.c (c_common_post_options): Handle C++ post-processing here.
20822 Set also -pedantic-errors by default for the preprocessor unless
20823 -fpermissive is given.
20824
20825 2007-03-15 Richard Guenther <rguenther@suse.de>
20826
20827 PR middle-end/29719
20828 PR middle-end/31161
20829 * builtins.c (expand_builtin_cexpi): As a fallback if we
20830 don't have builtins for sincos or cexp create a function
20831 declaration for cexp and expand to a call to that.
20832 (expand_builtin_int_roundingfn): Always fall
20833 back to floor/ceil and its variants even if they may be
20834 not available.
20835
20836 2007-03-15 Steven Bosscher <steven@gcc.gnu.org>
20837
20838 PR middle-end/31159
20839 * cfglayout.c (fixup_reorder_chain): Postpone deleting dead
20840 jump tables, move the call to delete_dead_jumptables from here...
20841 (cfg_layout_finalize): ...to here. But rebuild jump labels first.
20842 * cfgrtl.c (cfg_layout_can_merge_blocks_p): When not optimizing,
20843 don't allow merging of blocks that try_redirect_by_replacing_jump
20844 also does not handle when not optimizing.
20845
20846 2007-03-15 Uros Bizjak <ubizjak@gmail.com>
20847 Francois-Xavier Coudert <coudert@clipper.ens.fr>
20848
20849 * config/i386/i386.md (x86_sahf_1): Correctly handle
20850 HAVE_AS_IX86_SAHF.
20851
20852 2007-03-15 Uros Bizjak <ubizjak@gmail.com>
20853
20854 PR target/31167
20855 * config/i386/i386.md (*addti3_1, *addti3_1 splitter): Use
20856 x86_64_general_operand as operand[2] predicate. Remove "iF"
20857 from operand constraints and use "e" constraint instead.
20858 (*subti3_1, *subti3_1 splitter): Ditto.
20859 (*negti2_1, *negti2_1 splitter): Use nonimmediate_operand as
20860 operand[1] predicate.
20861
20862 2007-03-14 Sebastian Pop <sebastian.pop@inria.fr>
20863
20864 * tree-loop-linear.c (gather_interchange_stats): For multidimensional
20865 arrays, multiply the access strides by the size of the sub-array.
20866 * testsuite/gcc.dg/tree-ssa/ltrans-5.c: New.
20867
20868 2007-03-14 Uros Bizjak <ubizjak@gmail.com>
20869
20870 * configure.ac (HAVE_AS_IX86_SAHF): On x86 targets check whether
20871 the configured assembler supports the sahf mnemonic.
20872 * configure: Regenerate.
20873 * config.in: Regenerate.
20874
20875 * config/i386/i386.md (x86_sahf_1): Depending on HAVE_AS_IX86_SAHF,
20876 emit "sahf" or ".byte\t0x9e" as asm template.
20877
20878 2007-03-14 Michael Meissner <michael.meissner@amd.com>
20879
20880 PR 31018
20881 * config/i386/i386.h (X86_TUNE_SHORTEN_X87_SSE): New tuning
20882 option to replace hard coded TARGET_xxx in md file.
20883 (X86_TUNE_AVOID_VECTOR_DECODE): Ditto.
20884 (X86_TUNE_SLOW_IMUL_IMM32_MEM): Ditto.
20885 (X86_TUNE_SLOW_IMUL_IMM8): Ditto.
20886 (X86_TUNE_MOVE_M1_VIA_OR): Ditto.
20887 (X86_TUNE_NOT_UNPAIRABLE): Ditto.
20888 (X86_TUNE_NOT_VECTORMODE): Ditto.
20889 (TUNE_SHORTEN_X87_SSE): Use new tuning option.
20890 (TUNE_AVOID_VECTOR_DECODE): Ditto.
20891 (TUNE_SLOW_IMUL_IMM32_MEM): Ditto.
20892 (TUNE_SLOW_IMUL_IMM8): Ditto.
20893 (TUNE_MOVE_M1_VIA_OR): Ditto.
20894 (TUNE_NOT_UNPAIRABLE): Ditto.
20895 (TUNE_NOT_VECTORMODE): Ditto.
20896
20897 * config/i386/i386.c (ix86_tune_features): Fill in new tuning
20898 options.
20899
20900 * config/i386/i386.md (fix_trunc?f?1_sse peephole2): Use new
20901 tuning options instead of hard coded TARGET_xxx.
20902 (fix ssemode peephole2's): Ditto.
20903 (imul peephole2's): Ditto.
20904 (movsi_or): Ditto.
20905 (movdi_or_rex64): Ditto.
20906 (move peephole2): Ditto.
20907 (not peephole2's): Ditto.
20908
20909 2007-03-14 Dirk Mueller <dmueller@suse.de>
20910
20911 * c-common.h (empty_body_warning): Rename to empty_if_body_warning.
20912 * c-common.c (empty_if_body_warning): Rephrase diagnostic message.
20913 * c-parser.c (c_parser_if_body): Always add an empty statement in case
20914 of empty body.
20915 * c-parser.c (c_parser_do_statement): Warn about empty body in
20916 do/while statement.
20917 * c-typeck (c_finish_if_stmt): Call empty_if_body_warning.
20918 * doc/invoke.texi (-Wempty-body): Update documentation.
20919
20920 2007-03-14 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
20921
20922 PR c/21438
20923 * c-common.h (warn_for_div_by_zero): Declare.
20924 * c-common.c (warn_for_div_by_zero): Define.
20925 * c-typeck.c (build_binary_op): Call warn_for_div_zero instead of
20926 warning.
20927
20928 2007-03-14 Richard Sandiford <richard@codesourcery.com>
20929
20930 * Makefile.in (PREPROCESSOR_DEFINES): Add directory terminators
20931 to PREFIX and STANDARD_PREFIX.
20932
20933 2007-03-14 Richard Sandiford <richard@codesourcery.com>
20934 Phil Edwards <phil@codesourcery.com>
20935
20936 * gthr-vxworks.h: Add an extern "C" wrapper for C++.
20937 (__gthread_once_t): Remove busy field for RTPs.
20938 (__GTHREAD_ONCE_INIT): Update accordingly.
20939
20940 2007-03-14 Richard Sandiford <richard@codesourcery.com>
20941
20942 * doc/invoke.texi: Document VxWorks options.
20943
20944 2007-03-14 Uros Bizjak <ubizjak@gmail.com>
20945
20946 * doc/invoke.texi (i386 and x86-64 Options): Clarify -msahf option.
20947
20948 2007-03-13 Seongbae Park <seongbae.park@gmail.com>
20949
20950 PR tree-optimization/30590
20951 * tree-nrv.c (tree_nrv): Check for the partial update of the
20952 return value.
20953
20954 2007-03-13 Alexandre Oliva <aoliva@redhat.com>
20955
20956 * flags.h (flag_random_seed): Remove declaration, in favor of...
20957 * toplev.h (get_random_seed, set_random_seed): ... these.
20958 * tree.c (get_file_function_name): Use the former.
20959 * opts.c (common_handle_option): Use the latter.
20960 * toplev.c
20961
20962 2007-03-13 Steven Bosscher <steven@gcc.gnu.org>
20963
20964 PR middle-end/31127
20965 * cse.c (cse_find_path): Do not bail out if a basic block that
20966 we already visited now becomes part of a path that starts at a
20967 different basic block. Just disallow this, to make sure we
20968 visit each basic block at most once.
20969
20970 2007-03-13 Jan Hubicka <jh@suse.cz>
20971
20972 * ipa-inline.c (cgraph_maybe_hot_edge_p): Look for hot/cold
20973 attributes, when profile esitmate is present, calls with very low
20974 frequency are cold.
20975
20976 2007-03-13 Zdenek Dvorak <dvorakz@suse.cz>
20977
20978 PR tree-optimization/30730
20979 PR tree-optimization/26900
20980 * tree-ssa-loop-niter.c: Include gmp.h.
20981 (bounds): New type.
20982 (mpz_set_double_int, get_type_bounds, mpz_to_double_int,
20983 split_to_var_and_offset, determine_value_range,
20984 bound_difference_of_offsetted_base, refine_bounds_using_guard,
20985 bound_difference, bounds_add, bounds_negate,
20986 number_of_iterations_ne_max, dump_affine_iv): New functions.
20987 (number_of_iterations_ne, number_of_iterations_lt_to_ne,
20988 assert_loop_rolls_lt, assert_loop_rolls_le): Use bounds on the
20989 difference of initial and final value of control iv to validate
20990 results.
20991 (number_of_iterations_cond): Add loop parameter. Determine bounds
20992 on the difference of the extremes of the control iv. Add dumps.
20993 (expand_simple_operations): Handle phi nodes.
20994 (simplify_using_initial_conditions): Do not record used conditions.
20995 (number_of_iterations_exit): Pass loop to number_of_iterations_cond.
20996 Do not set additional_info.
20997 (implies_nonnegative_p, implies_ge_p): Removed.
20998 (derive_constant_upper_bound): Do not use parameter `additional'.
20999 (record_estimate): Parameter `additional' removed. Parameter
21000 `i_bound' added. Do not call derive_constant_upper_bound.
21001 (record_nonwrapping_iv): Use derive_constant_upper_bound to
21002 bound the number of iterations estimate.
21003 (estimate_numbers_of_iterations_loop): Pass the estimate from
21004 the number of iterations analysis to record_estimate.
21005 * tree.h (multiple_of_p): Declare.
21006 * tree-scalar-evolution.c (expression_expensive_p): Removed.
21007 (scev_const_prop): Do not check expression_expensive_p.
21008 * fold-const.c (multiple_of_p): Exported.
21009 * double-int.c (double_int_mask): Exported.
21010 * double-int.h (double_int_mask): Declare.
21011 * tree-flow.h (struct tree_niter_desc): Removed additional_info
21012 field. Added max field.
21013
21014 2007-03-13 David Taylor <taylor@candd.org>
21015
21016 PR driver/12448:
21017 * gcc.c (cpp_unique_options): If -MT or -MQ is seen, don't pass
21018 default -MQ.
21019
21020 2007-03-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
21021
21022 PR target/31123
21023 * pa.md (vdepi_ior): Don't allow zero length deposit. Likewise for
21024 two unamed patterns.
21025
21026 2007-03-13 Uros Bizjak <ubizjak@gmail.com>
21027
21028 * config/i386/i386.opt (mcx16, msahf): New options.
21029 * config/i386/i386.c (x86_cmpxchg16b, x86_sahf): Remove.
21030 (ix86_tune_features) [X86_TUNE_USE_SAHF]: Enable for m_GENERIC.
21031
21032 * config/i386/driver-i386.c (bit_LAHF_LM): New define.
21033 (host_detect_local_cpu): Detect cx16 and lahf_lm cpuid bits.
21034 Output -mcx16 and -msahf options when corresponding bit is set.
21035
21036 * doc/invoke.texi (i386 and x86-64 Options): Document -mcx16
21037 and -msahf options.
21038
21039 2007-03-13 Alexandre Oliva <aoliva@redhat.com>
21040
21041 * configure.ac: Test for assembler tolerance to # 0 "".
21042 * configure, config.in: Rebuilt.
21043 * final.c (final_scan_insn): Emit it if HAVE_AS_LINE_ZERO.
21044
21045 2007-03-13 Geoffrey Keating <geoffk@apple.com>
21046
21047 * doc/invoke.texi (Spec Files): Update for '%{,' spec.
21048
21049 * config/rs6000/darwin-fallback.c: Compile file only on powerpc.
21050 (handle_syscall): Handle direct system calls.
21051 * config/rs6000/darwin.h (HAS_MD_FALLBACK_FRAME_STATE_FOR): Delete.
21052
21053 2007-03-12 Brooks Moses <brooks.moses@codesourcery.com>
21054
21055 * doc/invoke.texi: Fix cpp.info cross-reference.
21056 * doc/passes.texi: Fix gcc.info cross-reference.
21057
21058 2007-03-12 Zdenek Dvorak <dvorakz@suse.cz>
21059
21060 PR tree-optimization/30835
21061 * lambda-code.c (can_convert_to_perfect_nest): Check whether
21062 bb_for_stmt is not NULL before accessing it.
21063
21064 2007-03-12 Joseph Myers <joseph@codesourcery.com>
21065
21066 * gcc.c (main): Handle target_sysroot_hdrs_suffix being NULL for
21067 some multilibs.
21068
21069 2007-03-12 Brooks Moses <brooks.moses@codesourcery.com>
21070
21071 PR 30635
21072 * doc/install.texi: Document --enable-stage1-languages
21073
21074 2007-03-12 Steven Bosscher <steven@gcc.gnu.org>
21075
21076 * tree-pass.h (pass_into_cfg_layout_mode,
21077 pass_outof_cfg_layout_mode): Declare.
21078 * cfglayout.c (into_cfg_layout_mode, outof_cfg_layout_mode,
21079 pass_into_cfg_layout_mode, pass_outof_cfg_layout_mode): New.
21080 * passes.c (pass_into_cfg_layout_mode): Schedule before jump2.
21081 (pass_outof_cfg_layout_mode): Schedule after pass_rtl_ifcvt.
21082
21083 2007-03-12 Seongbae Park <seongbae.park@gmail.com>
21084
21085 * c-decl.c (warn_variable_length_array): New function.
21086 Refactored from grokdeclarator to handle warn_vla
21087 and handle unnamed array case.
21088 (grokdeclarator): Refactored VLA warning case.
21089 * c.opt (Wvla): New flag.
21090 * doc/invoke.texi (Wvla): New warning.
21091
21092 2007-03-12 Richard Henderson <rth@redhat.com>
21093
21094 * config/alpha/alpha.c (alpha_elf_section_type_flags): New.
21095 (TARGET_SECTION_TYPE_FLAGS): New.
21096
21097 2007-03-12 Richard Henderson <rth@redhat.com>
21098
21099 * config/darwin.c (machopic_reloc_rw_mask): New.
21100 * config/darwin-protos.h (machopic_reloc_rw_mask): Declare.
21101 * config/darwin.h (TARGET_ASM_RELOC_RW_MASK): New.
21102
21103 2007-03-12 Mark Mitchell <mark@codesourcery.com>
21104
21105 * cppdefault.c (cpp_EXEC_PREFIX): New variable.
21106 * cppdefault.h (cpp_PREFIX): Document.
21107 (cpp_PREFIX_len): Likewise.
21108 (cpp_EXEC_PREFIX): New variable.
21109 * Makefile.in (PREPROCESSOR_DEFINES): Add STANDARD_EXEC_PREFIX.
21110 * c-incpath.c (add_standard_paths): Correct logic for relocating
21111 paths within prefix.
21112
21113 2007-03-12 Uros Bizjak <ubizjak@gmail.com>
21114
21115 * config/i386/i386.md (fixuns_trunc<mode>hi2): Implement from
21116 fixuns_truncsfhi2 and fixuns_truncdfhi2 using SSEMODEF
21117 mode macro.
21118 (fix_trunc<mode>di_sse): Implement from fix_truncsfdi_sse and
21119 fix_truncdfdi_sse using SSEMODEF mode macro.
21120 (fix_trunc<mode>si_sse): Implement from fix_truncsfsi_sse and
21121 fix_truncdfsi_sse using SSEMODEF mode macro.
21122 (fix_trunc?f?i_sse peephole2): Implement using SSEMODEF mode macro.
21123 (fix_trunc?f?i_sse K8 peephole2): Fix register constraint.
21124
21125 2007-03-12 Richard Sandiford <richard@codesourcery.com>
21126
21127 * config.gcc (i[4567]86-wrs-vxworks, i[4567]86-wrs-vxworksae): Add
21128 elfos.h to tm_file.
21129
21130 2007-03-12 Olga Golovanevsky <olga@il.ibm.com>
21131
21132 * tree.h : Add multiple_of_p declaration.
21133 * fold-const.c (multiple_of_p): Make multiple_of_p public.
21134 * ipa-type-escape.c (results_of_malloc): Redundant.
21135 (visited_stmts): New. Visited stmt for walk_use_def_chains.
21136 (cast_type): Extended with new members.
21137 (check_cast): Returns cast_type.
21138 (cast): New structure for data of walk_use_def_chains.
21139 (is_malloc_result, is_cast_from_non_pointer_1,
21140 is_cast_from_non_pointer,
21141 is_array_access_through_pointer_and_index): New functions.
21142 (look_for_casts): Returns cast types.
21143 (check_call): Returns void.
21144 (okay_pointer_operation): Use support of pointer plus index,
21145 pointer plus constant and allow all multiplications.
21146
21147 2007-03-11 Richard Guenther <rguenther@suse.de>
21148
21149 PR tree-optimization/31115
21150 * tree-vrp.c (extract_range_from_binary_expr): Make sure
21151 the shift count is positive and non-anti-range for RSHIFT_EXPR.
21152 A shift count of zero is not special as with *_DIV_EXPR.
21153 (vrp_int_const_binop): Handle RSHIFT_EXPR for determining overflow
21154 direction.
21155
21156 2007-03-11 Ian Lance Taylor <iant@google.com>
21157
21158 * tree-vrp.c (vrp_int_const_binop): Handle PLUS_EXPR and
21159 the *_DIV_EXPR codes correctly with overflow infinities.
21160
21161 2007-03-11 Ira Rosen <irar@il.ibm.com>
21162
21163 * tree-data-ref.c (analyze_offset): Add a return value (bool) to
21164 indicate success/failure of the analysis. Add negation to subtrahend
21165 in case of subtraction. Fail if both operands contain constants.
21166 (create_data_ref): Fail if analyze_offset fails.
21167
21168 2007-03-11 Uros Bizjak <ubizjak@gmail.com>
21169
21170 * config/i386/i386.md (frndintxf2): Rename to ...
21171 (rintxf2): ... this. Remove expander having same name.
21172 (rintsf2, rintdf2): Implement using SSEMODEF macro.
21173 (roundsf2, rounddf2): Ditto.
21174 (lrint<mode>di2, lrint<mode>si2): Implement using SSEMODEI24 macro.
21175 (lround<mode>di2, lround<mode>si2): Ditto.
21176
21177 2007-03-11 Steven Bosscher <steven@gcc.gnu.org>
21178
21179 * lower-subreg.c: Include except.h.
21180 (decompose_multiword_subregs): Verify that the only control flow
21181 insns we can split are loads to multi-words pseudos.
21182 Handle breaking such blocks after splitting, instead of calling
21183 find_many_sub_basic_blocks.
21184
21185 * loop-unroll.c (split_edge_and_insert): Don't set BB_SUPERBLOCK
21186 on the new basic block. Add a lengthy comment explaining why we
21187 thought this was necessary.
21188 * cfglayout.c (cfg_layout_finalize): Don't break superblocks.
21189
21190 2007-03-10 Mark Mitchell <mark@codesourcery.com>
21191
21192 PR c++/30924
21193 * tree.c (walk_type_fields): Recurse into the element type of
21194 ARRAY_TYPEs if there is a pointer set.
21195
21196 2007-03-10 Dirk Mueller <dmueller@suse.de>
21197
21198 * c-common.c (warn_logical_operator): Fix condition.
21199
21200 2007-03-10 Tobias Schl�ter <tobi@gcc.gnu.org>
21201
21202 * config/i386/darwin.h (DARWIN_MINVERSION_SPEC): Add missing
21203 quotation mark.
21204 * config/darwin.c (machopic_select_section): Remove superfluous
21205 argument in call to categorize_decl_for_section. Remove unused
21206 variable shlib.
21207
21208 2007-03-10 Joseph Myers <joseph@codesourcery.com>
21209
21210 * configure.ac (glibc_header_dir): Set using with_build_sysroot if
21211 defined.
21212 * configure: Regenerate.
21213
21214 2007-03-10 Uros Bizjak <ubizjak@gmail.com>
21215
21216 PR target/31101
21217 * config/i386/i386.md (UNSPEC_C2_FLAG): New constant.
21218 (fpremxf4_i387, fprem1xf4_i387): Use UNSPEC_C2_FLAG.
21219 (fmodxf3, fmod<mode>3, remainderxf3, remainder<mode>3):
21220 Add LABEL_NUSES to emitted label.
21221 * config/i386/i386.c (ix86_emit_fp_unordered_jump): Add
21222 branch probability value to emitted jump insn.
21223 * reg-stack.c (subst_stack_regs_pat)[UNSPEC]: Handle UNSPEC_C2_FLAG.
21224 Do not check life information and do not re-arrange input operands
21225 for UNSPEC_FSCALE_EXP, UNSPEC_FPREM_U and UNSPEC_FPREM1_U.
21226
21227 2007-03-10 Kaz Kojima <kkojima@gcc.gnu.org>
21228
21229 * config/sh/sh.c (sh_insn_length_adjustment): Adjust for
21230 the change of decode_asm_operands.
21231
21232 2007-03-10 Kaz Kojima <kkojima@gcc.gnu.org>
21233
21234 * mode-switching.c (create_pre_exit): Skip blockage insn.
21235
21236 2007-03-09 Diego Novillo <dnovillo@redhat.com>
21237
21238 * tree-pass.h (TODO_update_smt_usage): Remove.
21239 Update all users.
21240 * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Remove
21241 argument SOME.
21242 Update all users.
21243
21244 2007-03-09 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
21245
21246 * pa.c (attr_length_call): Revise condition for long
21247 pc-relative branch.
21248 (output_call): Use "LONG_PIC_SDIFF" instruction sequence for long
21249 local calls on the SOM target. Don't use "LONG_PIC_PCREL" call
21250 sequence on SOM target.
21251
21252 2007-03-09 Geoffrey Keating <geoffk@apple.com>
21253
21254 * gcc.c: Document %{, in big comment at top.
21255 (input_suffix_matches): Remove special handling for .s and
21256 .S.
21257 (input_spec_matches): New.
21258 (handle_braces): Handle %{,.
21259 (validate_switches): ',' indicates a value which is not a switch.
21260 * config/alpha/osf.h (ASM_FINAL_SPEC): Use %{, rather than %{.
21261 to detect assembler input.
21262 * config/i386/sol2.h (CPP_SPEC): Likewise.
21263 * config/rs6000/sysv4.h (ASM_SPEC): Likewise.
21264 * config/rs6000/vxworks.h (ASM_SPEC): Likewise.
21265 * config/rs6000/lynx.h (ASM_SPEC): Likewise.
21266 * config/rs6000/linux64.h (ASM_SPEC_COMMON): Likewise.
21267 * config/i386/darwin.h (DARWIN_MINVERSION_SPEC): Objective-C plus
21268 -m64 causes deployment target to default to 10.5.
21269 * config/rs6000/darwin.h (DARWIN_MINVERSION_SPEC): Likewise.
21270
21271 2007-03-09 Richard Henderson <rth@redhat.com>
21272
21273 PR target/26090
21274 * target.h (targetm.asm.out.reloc_rw_mask): New.
21275 * target-def.h (TARGET_ASM_RELOC_RW_MASK): New.
21276 (TARGET_ASM_OUT): Use it.
21277 * targhooks.c, targhooks.h (default_reloc_rw_mask): New.
21278 * varasm.c (categorize_decl_for_section): Remove shlib argument;
21279 use the new reloc_rw_mask target hook instead.
21280 (default_section_type_flags_1): Merge into...
21281 (default_section_type_flags): ... here.
21282 (decl_readonly_section_1): Merge into...
21283 (decl_readonly_section): ... here.
21284 (default_elf_select_section_1): Merge into...
21285 (default_elf_select_section): ... here.
21286 (default_unique_section_1): Merge into...
21287 (default_unique_section): ... here.
21288 (compute_reloc_for_rtx_1, compute_reloc_for_rtx): New.
21289 (default_select_rtx_section): Use it.
21290 (default_elf_select_rtx_section): Likewise.
21291 * output.h: Update to match.
21292 * doc/tm.texi (TARGET_ASM_RELOC_RW_MASK): New.
21293 * config/alpha/alpha.c (alpha_elf_reloc_rw_mask): New.
21294 (TARGET_ASM_RELOC_RW_MASK): New.
21295 * config/i386/i386.c (x86_64_elf_select_section): Adjust call
21296 to categorize_decl_for_section.
21297 (x86_64_elf_unique_section): Likewise.
21298 * config/ia64/hpux.h (TARGET_ASM_SELECT_SECTION,
21299 TARGET_ASM_UNIQUE_SECTION, TARGET_ASM_SELECT_RTX_SECTION): Remove.
21300 (TARGET_ASM_RELOC_RW_MASK): New.
21301 * config/ia64/ia64.c (ia64_rwreloc_select_section,
21302 ia64_rwreloc_unique_section, ia64_rwreloc_select_rtx_section): Remove.
21303 (ia64_hpux_reloc_rw_mask, ia64_reloc_rw_mask): New.
21304 (TARGET_RWRELOC): Remove.
21305 (ia64_section_type_flags): Adjust call to default_section_type_flags.
21306 * config/ia64/sysv4.h (TARGET_ASM_RELOC_RW_MASK): New.
21307 * config/rs6000/rs6000.c (rs6000_elf_section_type_flags): Remove.
21308 (rs6000_elf_select_section, rs6000_elf_unique_section): Remove.
21309 (rs6000_elf_reloc_rw_mask, rs6000_xcoff_reloc_rw_mask): New.
21310 (rs6000_xcoff_select_section): Use decl_readonly_section.
21311 (rs6000_xcoff_section_type_flags): Use default_section_type_flags.
21312 * config/rs6000/sysv4.h (TARGET_ASM_RELOC_RW_MASK): New.
21313 (TARGET_ASM_SELECT_SECTION, TARGET_ASM_UNIQUE_SECTION): Remove.
21314 (TARGET_SECTION_TYPE_FLAGS): Remove.
21315 * config/rs6000/xcoff.h (TARGET_ASM_RELOC_RW_MASK): New.
21316
21317 2007-03-09 Roger Sayle <roger@eyesopen.com>
21318
21319 * fold-const.c (fold_comparison): Remove compile-time evaluation of
21320 complex constant equality/inequality comparisons for here.
21321 (fold_binary) <EQ_EXPR>: Simplify complex comparisons that are
21322 known at compile-time or can be simplified to a scalar comparison.
21323 (fold_relational_const): Move compile-time evaluation of complex
21324 constant equality/inequality comparisons to here.
21325
21326 2007-03-09 Alexandre Oliva <aoliva@redhat.com>
21327
21328 PR rtl-optimization/30643
21329 * cse.c (cse_insn): Recompute dest_hash after insert_regs for
21330 dest_addr_elt.
21331 (fold_rtx): Recurse, like before 2006-11-03.
21332
21333 2007-03-09 DJ Delorie <dj@redhat.com>
21334
21335 * config/m32c/t-m32c (m32c-pragma.o): Add TM_H dependency to
21336 m32c-pragma.o.
21337
21338 2007-03-09 Aldy Hernandez <aldyh@redhat.com>
21339
21340 PR tree-optimization/30375
21341 * tree-ssa-dse.c (dse_possible_dead_store_p): Do not eliminate if
21342 LHS of statements is not the same.
21343 * testsuite/gcc.dg/tree-ssa/ssa-dse-10.c: New.
21344
21345 2007-03-09 Chao-ying Fu <fu@mips.com>
21346
21347 * doc/extend.texi (MIPS DSP Built-in Functions): Document the DSP
21348 REV 2.
21349 * doc/invoke.texi (-mdspr2): Document new option.
21350 * config/mips/mips.md (UNSPEC_ABSQ_S_QB .. UNSPEC_DPSQX_SA_W_PH):
21351 New unspec for DSP REV 2.
21352 (<u>mulsidi3_32bit_internal): Check if !TARGET_DSPR2, because
21353 these instructions are extended in DSP REV 2.
21354 (mips-dspr2.md): Include.
21355 * config/mips/mips.opt (mdspr2): New option.
21356 * config/mips/mips.c (mips_function_type): Add MIPS_V4QI_FTYPE_V4QI,
21357 MIPS_SI_FTYPE_SI_SI_SI, MIPS_DI_FTYPE_DI_USI_USI, MIPS_DI_FTYPE_SI_SI,
21358 MIPS_DI_FTYPE_USI_USI, MIPS_V2HI_FTYPE_SI_SI_SI.
21359 (override_options): Check TARGET_DSPR2 to enable MASK_DSP.
21360 (CODE_FOR_mips_mul_ph): Define it to CODE_FOR_mulv2hi3.
21361 (dsp_bdesc): Add DSP REV 2 builtins. Remove 32-bit only DSP builtins.
21362 (dsp_32only_bdesc): New description table for 32-bit only DSP REV 1
21363 and 2 builtins.
21364 (bdesc_map): Add one field of unsupported_target_flags.
21365 (bdesc_arrays): Update entries to have extra fields. Add
21366 dsp_32only_bdesc.
21367 (mips_init_builtins): Initialize new function types.
21368 Check unsupported_target_fileds to filter out builtins.
21369 * config/mips/mips.h (TARGET_CPU_CPP_BUILTINS): Define __mips_dspr2 if
21370 TARGET_DSPR2.
21371 (ASM_SPEC): Pass mdspr2 to the assembler.
21372 * config/mips/mips-dspr2.md: New file.
21373
21374 2007-03-09 Sa Liu <saliu@de.ibm.com>
21375
21376 * config/rs6000/altivec.md: Fix vcond patterns using if_then_else.
21377
21378 2007-03-09 Ian Lance Taylor <iant@google.com>
21379
21380 * opts.c (common_handle_option): Treat -Wstrict-overflow (with no
21381 argument) like -Wstrict-overflow=2.
21382 * doc/invoke.texi (Warning Options): Update documentation.
21383
21384 2007-03-09 Dirk Mueller <dmueller@suse.de>
21385
21386 PR c++/17946
21387 * doc/invoke.texi (-Wlogical-op): Document.
21388 * common.opt (-Wlogical-op): New.
21389 * c-common.h (warn_logical_operator): Declare.
21390 * c-common.c (warn_logical_operator): Define.
21391 * c-typeck.c (parser_build_binary_op): Call
21392 warn_logical_operator.
21393
21394 2007-03-09 Alexandre Oliva <aoliva@redhat.com>
21395
21396 * rtl.h (gen_rtx_ASM_INPUT): Use "" instead of NULL file name.
21397 * final.c (final_scan_insn): Test for non-"" file name.
21398
21399 2007-03-09 Sebastian Pop <sebastian.pop@inria.fr>
21400
21401 * doc/loop.texi: Document the Omega linear constraints solver.
21402 * doc/invoke.texi: Document -fcheck-data-deps, omega-max-vars,
21403 omega-max-geqs, omega-max-eqs, omega-max-wild-cards,
21404 omega-hash-table-size, omega-max-keys, and
21405 omega-eliminate-redundant-constraints.
21406 * tree-pass.h (pass_check_data_deps): Declared.
21407 * omega.c: New.
21408 * omega.h: New.
21409 * timevar.def (TV_CHECK_DATA_DEPS): Declared.
21410 * tree-ssa-loop.c (check_data_deps, gate_check_data_deps,
21411 pass_check_data_deps): New.
21412 * tree-data-ref.c (init_data_ref): Remove declaration.
21413 (dump_data_dependence_relation): Dump DDR_INNER_LOOP.
21414 (analyze_array): Renamed init_array_ref, move up initializations.
21415 (init_data_ref): Renamed init_pointer_ref. Moved before its call.
21416 Removed arguments that are set to NULL.
21417 (analyze_indirect_ref): Correct indentation, correct call to
21418 init_pointer_ref.
21419 (object_analysis): Call init_array_ref instead of analyze_array.
21420 (initialize_data_dependence_relation): Initialize DDR_INNER_LOOP.
21421 (access_functions_are_affine_or_constant_p): Use DR_ACCESS_FNS instead
21422 of DR_ACCESS_FNS_ADDR.
21423 (init_omega_eq_with_af, omega_extract_distance_vectors,
21424 omega_setup_subscript, init_omega_for_ddr_1, init_omega_for_ddr,
21425 ddr_consistent_p): New.
21426 (compute_affine_dependence): Check consistency of ddrs when
21427 flag_check_data_deps is passed.
21428 (analyze_all_data_dependences): Uncomment.
21429 (tree_check_data_deps): New.
21430 * tree-data-ref.h: Include omega.h.
21431 (DR_ACCESS_FNS_ADDR): Removed.
21432 (data_dependence_relation): Add inner_loop.
21433 (DDR_INNER_LOOP): New.
21434 * common.opt (fcheck-data-deps): New.
21435 * tree-flow.h (tree_check_data_deps): Declare.
21436 * Makefile.in (TREE_DATA_REF_H): Depend on omega.h.
21437 (OBJS-common): Depend on omega.o.
21438 (omega.o): Define.
21439 * passes.c (pass_check_data_deps): Scheduled.
21440 * params.def (PARAM_OMEGA_MAX_VARS, PARAM_OMEGA_MAX_GEQS,
21441 PARAM_OMEGA_MAX_EQS, PARAM_OMEGA_MAX_WILD_CARDS,
21442 PARAM_OMEGA_HASH_TABLE_SIZE, PARAM_OMEGA_MAX_KEYS,
21443 PARAM_VECT_MAX_VERSION_CHECKS,
21444 PARAM_OMEGA_ELIMINATE_REDUNDANT_CONSTRAINTS): New.
21445
21446 2007-03-09 Richard Guenther <rguenther@suse.de>
21447
21448 PR tree-optimization/30904
21449 PR middle-end/31058
21450 * tree-vrp.c (extract_range_from_binary_expr): Handle RSHIFT_EXPR
21451 the same way as *_DIV_EXPR.
21452
21453 2007-03-09 Alexandre Oliva <aoliva@redhat.com>
21454
21455 * recog.c (decode_asm_operands): No mixed declarations and code.
21456
21457 2007-03-09 Alexandre Oliva <aoliva@redhat.com>
21458
21459 * rtl.def (ASM_INPUT): Add location.
21460 * rtl.h (ASM_INPUT_SOURCE_LOCATION): New.
21461 (ASM_INPUT_SOURCE_FILE, ASM_INPUT_SOURCE_LINE): New.
21462 (decode_asm_operands): Add loc operand.
21463 (gen_rtx_ASM_INPUT, gen_rtx_ASM_INPUT_loc): Define.
21464 * stmt.c (expand_asm): Rename to...
21465 (expand_asm_loc): ... this. Add locus argument. Pass it on to
21466 gen_rtx_ASM_INPUT_loc.
21467 (expand_asm_expr): Adjust.
21468 * recog.c (decode_asm_operands): Add loc operand.
21469 (check_asm_operands, extract_insn): Adjust.
21470 * reload1.c (maybe_fix_stack_asms): Likewise.
21471 * final.c (asm_insn_count): Likewise.
21472 (final_scan_insn): Output # line before and after asm.
21473
21474 2007-03-09 Daniel Berlin <dberlin@dberlin.org>
21475
21476 * tree-ssa-structalias.c (variable_info): Remove
21477 finished_solution.
21478 (new_var_info): Ditto.
21479 (shared_bitmap_info_t): New structure.
21480 (shared_bitmap_table): New variable.
21481 (shared_bitmap_hash): New function.
21482 (shared_bitmap_eq): Ditto
21483 (shared_bitmap_lookup): Ditto.
21484 (shared_bitmap_add): Ditto.
21485 (merge_smts_into): Change to take bitmap directly.
21486 (find_what_p_points_to): Rewrite to use shared bitmap hashtable.
21487 (init_alias_vars): Init shared bitmap hashtable.
21488 (delete_points_to_sets): Delete shared bitmap hashtable.
21489 * tree-ssa-operands.c (add_virtual_operand): Partially revert the
21490 is_aliased removal as a change that was still necessary was
21491 deleted.
21492
21493 2007-03-09 Uros Bizjak <ubizjak@gmail.com>
21494
21495 * config/i386/i386.h (override_options): Conditionally disable
21496 x86_sahf for 64bit targets only.
21497
21498 2007-03-08 Andrew Pinski <andrew_pinski@playstation.sony.com>
21499
21500 PR C/31072
21501 * c-decl.c (merge_decls): Don't call make_var_volatile.
21502 * varasm.c (make_var_volatile): Remove.
21503 * output.h (make_var_volatile): Remove.
21504
21505 2007-03-08 Zdenek Dvorak <dvorakz@suse.cz>
21506
21507 PR tree-optimization/31085
21508 * tree-ssa-address.c (create_mem_ref): Fix test of type of base.
21509
21510 2007-03-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
21511
21512 * builtins.def (lceil, lceilf, lceill, lfloor, lfloorf, lfloorl,
21513 llceil, llceilf, llceill, llfloor, llfloorf, llfloorl): Mark with
21514 ATTR_CONST_NOTHROW_LIST.
21515
21516 * fold-const.c (tree_expr_nonnegative_warnv_p): Handle
21517 FIX_TRUNC_EXPR.
21518
21519 2007-03-08 Diego Novillo <dnovillo@redhat.com>
21520
21521 * doc/tree-ssa.texi: Remove documentation for V_MUST_DEF.
21522
21523 2007-03-08 Geoffrey Keating <geoffk@apple.com>
21524
21525 PR 31013
21526 * gccspec.c (lang_specific_driver): Do nothing when NEXT_OBJC_RUNTIME
21527 is declared.
21528 * config/darwin.h (REAL_LIBGCC_SPEC): When -fgnu-runtime is
21529 passed, use shared libgcc.
21530
21531 2007-03-08 Roger Sayle <roger@eyesopen.com>
21532
21533 * tree-eh.c (do_return_redirection): Call build_gimple_modify_stmt
21534 instead of calling build2 with a GIMPLE_MODIFY_STMT.
21535 (honor_protect_cleanup_actions, lower_try_finally_switch):
21536 Likewise.
21537 * tree-if-conv.c (replace_phi_with_cond_gimple_modify_stmt,
21538 ifc_temp_var): Likewise.
21539 * tree-inline.c (setup_one_parameter): Likewise.
21540 * tree-mudflap.c (mf_decl_cache_locals,
21541 mf_build_check_statement_for): Likewise.
21542 * tree-nested.c (init_tmp_var, save_tmp_var,
21543 finalize_nesting_tree_1): Likewise.
21544 * tree-outof-ssa.c (insert_copy_on_edge,
21545 insert_backedge_copies): Likewise.
21546 * tree-profile.c (tree_gen_edge_profiler,
21547 tree_gen_ic_profiler): Likewise.
21548 * tree-scalar-evolution.c (scev_const_prop): Likewise.
21549 * tree-sra.c (sra_build_assignment): Likewise.
21550 * tree-ssa-loop-im.c (determine_invariantness_stmt): Likewise.
21551 * tree-ssa-math-opts.c (insert_reciprocals,
21552 execute_cse_sincos_1): Likewise.
21553 * tree-tailcall.c (adjust_accumulator_values,
21554 adjust_return_value): Likewise.
21555 * tree-vect-patterns.c (vect_pattern_recog_1): Likewise.
21556 * tree-vect-transform.c (vect_create_data_ref_ptr,
21557 bump_vector_ptr, vect_init_vector, get_initial_def_for_induction,
21558 vect_create_epilog_for_reduction, vectorizable_reduction,
21559 vectorizable_call, vectorizable_conversion,
21560 vectorizable_assignment, vectorizable_operation,
21561 vectorizable_type_demotion, vect_gen_widened_results_half,
21562 vect_permute_store_chain, vectorizable_store,
21563 vect_setup_realignment, vect_permute_load_chain,
21564 vectorizable_load, vectorizable_condition,
21565 vect_create_cond_for_align_checks): Likewise.
21566 * tree-vrp.c (build_assert_expr_for): Likewise.
21567
21568 2007-03-08 Ian Lance Taylor <iant@google.com>
21569
21570 * tree-vrp.c: Include "intl.h".
21571 (usable_range_p): New static function.
21572 (compare_values_warnv): Don't test TYPE_OVERFLOW_UNDEFINED for
21573 overflowed values, juts set *strict_overflow_p.
21574 (compare_values): Only return -2 if one of the operands is not a
21575 constant.
21576 (compare_ranges): Call usable_range_p.
21577 (compare_range_with_value): Likewise.
21578 (vrp_evaluate_conditional_warnv): Rename from
21579 vrp_evaluate_conditional. Make static. Change all callers.
21580 (vrp_evaluate_conditional): New function.
21581 (simplify_div_or_mod_using_ranges): Issue warning about reliance
21582 on signed overflow.
21583 (simplify_abs_using_ranges): Likewise.
21584 (simplify_stmt_for_jump_threading): Add within_stmt parameter.
21585 * tree-ssa-dom.c (simplify_stmt_for_jump_threading): Add
21586 within_stmt parameter.
21587 * tree-ssa-propagate.c (fold_predicate_in): Update call to
21588 vrp_evaluate_conditional.
21589 * tree-ssa-threadedge.c
21590 (record_temporary_equivalences_from_stmts_at_dest): Change
21591 simplify parameter to take a second tree parameter.
21592 (simplify_control_stmt_condition): Likewise.
21593 (thread_across_edge): Likewise.
21594 * tree-flow.h (vrp_evaluate_conditional): Update declaration.
21595 (thread_across_edge): Likewise.
21596 * Makefile.in (tree-vrp.o): Depend upon intl.h.
21597
21598 2007-03-08 Uros Bizjak <ubizjak@gmail.com>
21599
21600 * config/i386/i386.h (TARGET_SAHF): New define.
21601 * config/i386/i386.c (ix86_tune_features) [X86_TUNE_USE_SAHF]:
21602 Also enable for m_K8, m_AMDFAM10 and m_CORE2.
21603 (x86_sahf): New global variable.
21604 (override_options): Add PTA_NO_SAHF to pta_flags enum. Recode
21605 pta_flags masks using shifts. Add PTA_NO_SAHF to x86_64 and
21606 nocona processor flags. Set x86_sahf when PTA_NO_SAHF is not set
21607 in processor flags. Do not unconditionally disable TARGET_USE_SAHF
21608 for 64-bit.
21609 (ix86_fp_comparison_sahf_cost): Return high value for !TARGET_SAHF.
21610 (ix86_expand_fp_compare): Check for TARGET_CMOVE or TARGET_SAHF
21611 when expanding fcomi/sahf based tests.
21612 (ix86_emit_fp_unordered_jump): Check for TARGET_SAHF when
21613 expanding sahf based alternative. Emit sahf based sequence when
21614 optimizing for code size.
21615 * config/i386/i386.md (x86_sahf_1): Do not disable for
21616 TARGET_64BIT, enable for TARGET_SAHF.
21617
21618 2007-03-08 Martin Michlmayr <tbm@cyrius.com>
21619
21620 * tree-ssa-coalesce.c (fail_abnormal_edge_coalesce): Remove
21621 spurious whitespace from error message.
21622
21623 2007-03-08 Volker Reichelt <reichelt@netcologne.de>
21624
21625 PR c++/30852
21626 * c-common.c (fold_offsetof_1): Handle COMPOUND_EXPR.
21627
21628 2007-03-08 Alexandre Oliva <aoliva@redhat.com>
21629
21630 * c-decl.c (grokdeclarator): Disable warnings for anonymous
21631 bitfields.
21632 * tree-sra.c (instantiate_element): Propagate disabled warnings
21633 from the element itself to the created variable.
21634
21635 2007-03-07 Richard Henderson <rth@redhat.com>
21636
21637 PR target/30848
21638 * reg-stack.c (emit_swap_insn): If a malformed asm was seen,
21639 silently fix up the stack in the case of a missing register.
21640
21641 2007-03-07 Paul Brook <paul@codesourcery.com>
21642
21643 * config/arm/libunwind.S: Add .arch/.object_arch for armv4 builds.
21644
21645 2007-03-07 Joseph Myers <joseph@codesourcery.com>
21646
21647 * config/arm/unwind-arm.c (struct wmmxd_regs, struct wmmxc_regs):
21648 New.
21649 (phase1_vrs): Use them.
21650 (DEMAND_SAVE_WMMXD, DEMAND_SAVE_WMMXC): New.
21651 (__gnu_Unwind_Save_WMMXD, __gnu_Unwind_Restore_WMMXD,
21652 __gnu_Unwind_Save_WMMXC, __gnu_Unwind_Restore_WMMXC): Declare.
21653 (restore_non_core_regs): Call __gnu_Unwind_Restore_WMMXD and
21654 __gnu_Unwind_Restore_WMMXC if required.
21655 (_Unwind_VRS_Pop): Implement iWMMXt support.
21656 * config/arm/libunwind.S (gnu_Unwind_Restore_WMMXD,
21657 gnu_Unwind_Save_WMMXD, gnu_Unwind_Restore_WMMXC,
21658 gnu_Unwind_Save_WMMXC): Define.
21659
21660 2007-03-07 Richard Sandiford <richard@codesourcery.com>
21661
21662 * config/vxworks.h (vxworks_override_options): Declare.
21663 (VXWORKS_OVERRIDE_OPTIONS): Use it.
21664 * config/vxworks.c: Include target.h and toplev.h.
21665 (vxworks_override_options): New function.
21666 * config/t-vxworks (vxworks.o): Depend on $(TARGET_H) and toplev.h.
21667
21668 2007-03-07 Andreas Krebbel <krebbel1@de.ibm.com>
21669
21670 * config/s390/s390.c (override_options): Don't emit an error when
21671 -mstack-size is used without providing -mstack-guard.
21672 (s390_emit_prologue): Choose stack_guard value automatically if not
21673 provided via command line.
21674 * doc/invoke.texi: Adjust description of -mstack-guard and
21675 -mstack-size.
21676
21677 2007-03-07 Richard Sandiford <richard@codesourcery.com>
21678
21679 * config/i386/i386.c (output_set_got): Add a GOT initialization
21680 sequence for VxWorks PIC.
21681 (legitimate_pic_address_disp_p): Allow UNSPEC_GOT wrappers
21682 around labels as well as symbols. Use gotoff_operand instead
21683 of local_symbolic_operand.
21684 (legitimize_pic_address): Use gotoff_operand instead of
21685 local_symbolic_operand. Use @GOT accesses for labels as
21686 well as symbols.
21687 (ix86_output_addr_diff_elt): Use PC-relative rather than
21688 GP-relative offsets for VxWorks PIC.
21689 (ix86_expand_move): Pass NULL_RTX to legitimize_pic_address unless
21690 no_new_pseudos. Check whether the returned register is op0.
21691 * config/i386/i386.md (tablejump): Use PC-relative rather than
21692 GP-relative offsets for VxWorks PIC.
21693 * config/i386/predicates.md (gotoff_operand): New predicate.
21694
21695 2007-03-06 Richard Sandiford <richard@codesourcery.com>
21696
21697 * config/vxworks.h (VXWORKS_GOTT_BASE, VXWORKS_GOTT_INDEX): Undefine
21698 before defining.
21699 * config/vxworks-dummy.h: New file.
21700 * config/i386/i386.h: Include it.
21701
21702 2007-03-07 Alexandre Oliva <aoliva@redhat.com>
21703
21704 * dwarf2out.c (is_inlined_entry_point): New
21705 (add_high_low_attributes): Emit DW_AT_entry_pc along with
21706 DW_AT_ranges if the first subblock is the entry point.
21707
21708 2007-03-06 David Daney <ddaney@avtrex.com>
21709
21710 * doc/install.texi (mips-*-*): Change recommended binutils
21711 version.
21712
21713 2007-03-06 Anatoly Sokolov <aesok@post.ru>
21714
21715 * config/avr/avr.c (avr_mcu_types): Add support for ATmega325P,
21716 ATmega3250P, ATmega329P, ATmega3290P, AT90USB82 and AT90USB162
21717 devices.
21718 * config/avr/avr.h (LINK_SPEC, CRT_BINUTILS_SPECS): (Ditto.).
21719 * config/avr/t-avr (MULTILIB_MATCHES): (Ditto.).
21720
21721 2007-03-06 Jan Hubicka <jh@suse.cz>
21722
21723 * errors.h (warning, error, fatal, internal_error): Mark as cold.
21724 * predict.c (maybe_hot_bb): Cold functions are never hot; hot
21725 functions are hot.
21726 (probably_cold_bb_p): Cold functions are cold.
21727 (probably_never_executed_bb_p): Cold functions are cold.
21728 (tree_bb_level_predictions): Predict calls to cold functions as not
21729 taken.
21730 (compute_function_frequency): Check hot/cold attributes.
21731 * function.h (function_frequency): Update comments.
21732 * predict.def (PRED_COLD_FUNCTION): Predict cold function.
21733 * c-common.c (handle_hot_attribute, handle_cold_attribute): New.
21734 (c_common_att): Add cold and hot.
21735
21736 * doc/extend.texi (hot,cold attributes): Document.
21737
21738 2007-03-06 Andrew Haley <aph@redhat.com>
21739
21740 * function.c (expand_function_end): Move blockage to just after we
21741 emit the label for the naked return from the function.
21742
21743 2007-03-06 Richard Sandiford <richard@codesourcery.com>
21744
21745 * config/i386/att.h (ASM_OUTPUT_ASCII, ASM_OUTPUT_SKIP): Undefine
21746 before redefining.
21747
21748 2007-03-06 Jan Hubicka <jh@suse.cz>
21749
21750 * reg-stack.c (reg_to_stack): Large models don't allow NAN to be
21751 loaded for constant large models. Non-large 64bit PIC can do.
21752 * i386.h (CASE_VECTOR_MODE): Large PIC cases are 64bit.
21753 * cmodel.h: Add LARGE PIC.
21754 * i386.md (UNSPEC_PLTOFF): New.
21755 (UNSPEC_SET_RIP, UNSPEC_SET_GOT_OFFSET): New; renumber other
21756 unspecs as needed.
21757 (*call_1_rex64): Disable for large models.
21758 (*call_1_rex64_large): New.
21759 (*call_value_1_rex64): Disable for large models.
21760 (*call_value_1_rex64_large): New.
21761 (set_rip_rex4): New.
21762 (set_got_offset_rex64): New.
21763 * predicates.md (constant_call_address_operand): For large model
21764 constant calls are not possible.
21765 * i386-protos.h (construct_plt_address): Declare.
21766 * i386.c (override_options): Accept large models.
21767 (ix86_expand_prologue): Expand large PIC GOT pointer load.
21768 (legitimate_constant_p): Add new UNSPECs.
21769 (legitimate_pic_operand_p): Likewise.
21770 (legitimate_pic_address_disp_p): Disallow local symbols for large PICs.
21771 (legitimize_pic_address): Do easy RIP relative way for TLS only for
21772 non-large model.
21773 (output_pic_addr_const): Add PLTOFF.
21774 (ix86_output_addr_diff_elt): Output 64bit tables when needed.
21775 (ix86_expand_move): Legitimize pic address when in PIC mode.
21776 (construct_plt_address): New function.
21777 (ix86_expand_call): Offload the address to register and use GOT
21778 pointer for large model.
21779 * invoke.texi (mcmodel=large): Update documentation.
21780
21781 2007-03-06 Richard Henderson <rth@redhat.com>
21782
21783 * config/i386/i386.c (x86_use_leave, x86_push_memory,
21784 x86_zero_extend_with_and, x86_movx, x86_double_with_add,
21785 x86_use_bit_test, x86_unroll_strlen, x86_deep_branch,
21786 x86_branch_hints, x86_use_sahf, x86_partial_reg_stall,
21787 x86_partial_flag_reg_stall, x86_use_himode_fiop, x86_use_simode_fiop,
21788 x86_use_mov0, x86_use_cltd, x86_read_modify_write, x86_read_modify,
21789 x86_split_long_moves, x86_promote_QImode, x86_fast_prefix,
21790 x86_single_stringop, x86_qimode_math, x86_promote_qi_regs,
21791 x86_himode_math, x86_promote_hi_regs, x86_sub_esp_4, x86_sub_esp_8,
21792 x86_add_esp_4, x86_add_esp_8, x86_integer_DFmode_moves,
21793 x86_partial_reg_dependency, x86_memory_mismatch_stall,
21794 x86_prologue_using_move, x86_epilogue_using_move, x86_shift1,
21795 x86_sse_partial_reg_dependency, x86_sse_split_regs,
21796 x86_sse_unaligned_move_optimal, x86_sse_typeless_stores,
21797 x86_sse_load0_by_pxor, x86_use_ffreep, x86_use_incdec,
21798 x86_inter_unit_moves, x86_ext_80387_constants, x86_four_jump_limit,
21799 x86_schedule, x86_use_bt, x86_pad_returns,
21800 x86_use_xchgb): Merge into ...
21801 (ix86_tune_features): ... here. New array.
21802 (x86_cmove, x86_cmpxchg, x86_cmpxchg8b, x86_xadd,
21803 x86_bswap): Merge into ...
21804 (ix86_arch_features): ... here. New array.
21805 (x86_3dnow_a): Remove.
21806 (x86_accumulate_outgoing_args): Make static.
21807 (x86_arch_always_fancy_math_387): Make static.
21808 (ix86_tune_mask, ix86_arch_mask): Move ...
21809 (override_options): ... to local variables here. Apply the
21810 appropriate mask to each element of ix86_arch_features and
21811 ix86_tune_features. Adjust TARGET_CMOVE and TARGET_USE_SAHF
21812 as were done in the old macros.
21813 (standard_80387_constant_p): Use TARGET_EXT_80387_CONSTANTS.
21814 * config/i386/i386.h (x86_use_leave, x86_push_memory,
21815 x86_zero_extend_with_and, x86_use_bit_test, x86_cmove, x86_deep_branch,
21816 x86_branch_hints, x86_unroll_strlen, x86_double_with_add,
21817 x86_partial_reg_stall, x86_movx, x86_use_himode_fiop,
21818 x86_use_simode_fiop, x86_use_mov0, x86_use_cltd, x86_use_xchgb,
21819 x86_read_modify_write, x86_read_modify, x86_split_long_moves,
21820 x86_promote_QImode, x86_single_stringop, x86_fast_prefix,
21821 x86_himode_math, x86_qimode_math, x86_promote_qi_regs,
21822 x86_promote_hi_regs, x86_integer_DFmode_moves, x86_add_esp_4,
21823 x86_add_esp_8, x86_sub_esp_4, x86_sub_esp_8,
21824 x86_partial_reg_dependency, x86_memory_mismatch_stall,
21825 x86_accumulate_outgoing_args, x86_prologue_using_move,
21826 x86_epilogue_using_move, x86_decompose_lea,
21827 x86_arch_always_fancy_math_387, x86_shift1,
21828 x86_sse_partial_reg_dependency, x86_sse_split_regs,
21829 x86_sse_unaligned_move_optimal, x86_sse_typeless_stores,
21830 x86_sse_load0_by_pxor, x86_use_ffreep, x86_inter_unit_moves,
21831 x86_schedule, x86_use_bt, x86_cmpxchg, x86_cmpxchg8b, x86_xadd,
21832 x86_use_incdec, x86_pad_returns, x86_bswap,
21833 x86_partial_flag_reg_stall): Remove.
21834 (enum ix86_tune_indices): New.
21835 (ix86_tune_features): New.
21836 (TARGET_USE_LEAVE, TARGET_PUSH_MEMORY, TARGET_ZERO_EXTEND_WITH_AND,
21837 TARGET_USE_BIT_TEST, TARGET_UNROLL_STRLEN,
21838 TARGET_DEEP_BRANCH_PREDICTION, TARGET_BRANCH_PREDICTION_HINTS,
21839 TARGET_DOUBLE_WITH_ADD, TARGET_USE_SAHF, TARGET_MOVX,
21840 TARGET_PARTIAL_REG_STALL, TARGET_PARTIAL_FLAG_REG_STALL,
21841 TARGET_USE_HIMODE_FIOP, TARGET_USE_SIMODE_FIOP, TARGET_USE_MOV0,
21842 TARGET_USE_CLTD, TARGET_USE_XCHGB, TARGET_SPLIT_LONG_MOVES,
21843 TARGET_READ_MODIFY_WRITE, TARGET_READ_MODIFY, TARGET_PROMOTE_QImode,
21844 TARGET_FAST_PREFIX, TARGET_SINGLE_STRINGOP, TARGET_QIMODE_MATH,
21845 TARGET_HIMODE_MATH, TARGET_PROMOTE_QI_REGS, TARGET_PROMOTE_HI_REGS,
21846 TARGET_ADD_ESP_4, TARGET_ADD_ESP_8, TARGET_SUB_ESP_4,
21847 TARGET_SUB_ESP_8, TARGET_INTEGER_DFMODE_MOVES,
21848 TARGET_PARTIAL_REG_DEPENDENCY, TARGET_SSE_PARTIAL_REG_DEPENDENCY,
21849 TARGET_SSE_UNALIGNED_MOVE_OPTIMAL, TARGET_SSE_SPLIT_REGS,
21850 TARGET_SSE_TYPELESS_STORES, TARGET_SSE_LOAD0_BY_PXOR,
21851 TARGET_MEMORY_MISMATCH_STALL, TARGET_PROLOGUE_USING_MOVE,
21852 TARGET_EPILOGUE_USING_MOVE, TARGET_SHIFT1, TARGET_USE_FFREEP,
21853 TARGET_INTER_UNIT_MOVES, TARGET_FOUR_JUMP_LIMIT, TARGET_SCHEDULE,
21854 TARGET_USE_BT, TARGET_USE_INCDEC, TARGET_PAD_RETURNS,
21855 TARGET_EXT_80387_CONSTANTS): Use it.
21856 (enum ix86_arch_indices): New.
21857 (ix86_arch_features): New.
21858 (TARGET_CMOVE, TARGET_CMPXCHG, TARGET_CMPXCHG8B, TARGET_XADD,
21859 TARGET_BSWAP): Use it.
21860 (ix86_tune_mask, ix86_arch_mask): Remove.
21861
21862 2007-03-06 Joseph Myers <joseph@codesourcery.com>
21863
21864 PR bootstrap/31020
21865 * configure.ac (CROSS_SYSTEM_HEADER_DIR, build_system_header_dir):
21866 Define using $${sysroot_headers_suffix}.
21867 * configure: Regenerate.
21868 * cppdefault.c (cpp_include_defaults): Make FIXED_INCLUDE_DIR a
21869 multilib-suffixed directory if SYSROOT_HEADERS_SUFFIX_SPEC
21870 defined.
21871 * doc/invoke.texi (-print-sysroot-headers-suffix): Document.
21872 * gcc.c (print_sysroot_headers_suffix): New.
21873 (option_map): Include --print-sysroot-headers-suffix.
21874 (display_help): Mention -print-sysroot-headers-suffix.
21875 (process_command): Handle -print-sysroot-headers-suffix.
21876 (do_spec_1): Append multilib directory to include-fixed path if
21877 sysroot suffixes in use.
21878 (main): Handle -print-sysroot-headers-suffix.
21879 * Makefile.in (start.encap): Don't depend on xlimits.h
21880 (xlimits.h): Remove.
21881 (stmp-int-hdrs): Don't depend on xlimits.h. Inline generation of
21882 limits.h for each multilib in fixinc_list.
21883 (fixinc_list, s-fixinc_list): New.
21884 (stmp-fixinc): Depend on fixinc_list. If not copying headers,
21885 generate them for each multilib in fixinc_list.
21886 (stmp-fixproto): Use include-fixed. Run fixproto for each
21887 multilib in fixinc_list.
21888 (mostlyclean): Don't remove xlimits.h.
21889 (clean): Remove include-fixed.
21890 (real-install-headers-tar, real-install-headers-cpio,
21891 real-install-headers-cp): Don't copy include, only include-fixed.
21892 (install-mkheaders): Depend on fixinc_list. Don't depend on
21893 xlimits.h. Save limits.h files for each multilib in fixinc_list.
21894 Always save mkinstalldirs. Preserve ${sysroot_headers_suffix} in
21895 SYSTEM_HEADER_DIR setting in mkheaders.conf.
21896
21897 2007-03-06 Jan Hubicka <jh@suse.cz>
21898
21899 * regstack.c (reg_to_stack): When in 64bit PIC mode, we still can load
21900 NANs easilly.
21901
21902 2007-03-06 Richard Sandiford <richard@codesourcery.com>
21903
21904 * configure.ac: Allow tm_file to contain build-directory files.
21905 * configure: Regenerate.
21906 * config.gcc (m68k-*-uclinux*): Add ./sysroot-suffix.h to tm_file.
21907 * config/m68k/t-uclinux (sysroot-suffix.h): New target.
21908 * config/m68k/print-sysroot-suffix.sh: New file.
21909
21910 2007-03-06 Richard Sandiford <richard@codesourcery.com>
21911
21912 * config/m68k/m68k.h (PIC_OFFSET_TABLE_REGNUM): Use the REGNO
21913 of pic_offset_table_rtx if reload_completed.
21914 (CONDITIONAL_REGISTER_USAGE): Use PIC_REG instead of
21915 PIC_OFFSET_TABLE_REGNUM.
21916 * config/m68k/m68k.c (TARGET_ASM_CAN_OUTPUT_MI_THUNK): Always
21917 return true.
21918 (m68k_save_reg): Use PIC_REG instead of PIC_OFFSET_TABLE_REGNO.
21919 (m68k_output_mi_thunk): Rewrite to use RTL. Honor vcall_offset.
21920
21921 2007-03-06 Richard Sandiford <richard@codesourcery.com>
21922
21923 * config/m68k/m68k.c (m68k_save_reg): Save the PIC register in
21924 functions that call eh_return.
21925
21926 2007-03-06 Richard Sandiford <richard@codesourcery.com>
21927
21928 * config/m68k/m68k.c (m68k_save_reg): Save the PIC register in
21929 functions that need a constant pool.
21930
21931 2007-03-06 Richard Sandiford <richard@codesourcery.com>
21932
21933 PR target/28181
21934 * config/m68k/m68k-protos.h (m68k_secondary_reload_class): Declare.
21935 (m68k_preferred_reload_class): Likewise.
21936 * config/m68k/m68k.h (HARD_REGNO_MODE_OK): Remove duplicated comment.
21937 (SECONDARY_RELOAD_CLASS): Define.
21938 (PREFERRED_RELOAD_CLASS): Use m68k_preferred_reload_class.
21939 (LIMIT_RELOAD_CLASS): Delete.
21940 * config/m68k/m68k.c (m68k_regno_mode_ok): Don't prevent address
21941 registers from storing bytes.
21942 (m68k_secondary_reload_class): New function.
21943 (m68k_preferred_reload_class): Likewise.
21944
21945 2007-03-06 Richard Sandiford <richard@codesourcery.com>
21946
21947 * config/m68k/m68k.c (m68k_save_reg): Remove special case for
21948 leaf functions.
21949 (m68k_expand_prologue): Likewise.
21950
21951 2007-03-06 Richard Sandiford <richard@codesourcery.com>
21952
21953 * config/m68k/m68k-protos.h (output_sibcall): Declare.
21954 (mips_expand_epilogue): Add a bool parameter.
21955 (m68k_legitimize_sibcall_address): Declare.
21956 * config/m68k/m68k.c (TARGET_FUNCTION_OK_FOR_SIBCALL): Define.
21957 (m68k_expand_epilogue): Add a parameter to select between sibling
21958 and normal epilogues. Only generate a return for the latter.
21959 (m68k_ok_for_sibcall_p): New function.
21960 (m68k_legitimize_sibcall_address, output_sibcall): New functions.
21961 * config/m68k/m68k.md (sibcall, *sibcall): New patterns.
21962 (sibcall_value, *sibcall_value): Likewise.
21963 (*call, *call_value): Require !SIBLING_CALL_P.
21964 (epilogue): Update call to m68k_expand_epilogue.
21965 (sibcall_epilogue): New pattern.
21966 * config/m68k/predicates.md (const_call_operand): Say that this
21967 predicate applies to sibling calls too.
21968 (sibcall_operand): New predicate.
21969
21970 2007-03-06 Richard Sandiford <richard@codesourcery.com>
21971
21972 * config/m68k/m68k.md (movsf_cf_soft): Provide the same non-mov3q
21973 alternatives as movsi_cf.
21974 (movsf_cf_hard): Add commentary.
21975
21976 2007-03-06 Kazu Hirata <kazu@codesourcery.com>
21977 Richard Sandiford <richard@codesourcery.com>
21978
21979 * config/m68k/m68k-protos.h (m68k_interrupt_function_p): Declare.
21980 (m68k_movem_pattern_p, m68k_output_movem): Likewise.
21981 (m68k_expand_prologue, m68k_expand_epilogue): Likewise.
21982 * config/m68k/m68k.h (EPILOGUE_USES): Define. Treat all registers
21983 as being live on exit from an interrupt function.
21984 (PRINT_OPERAND_PUNCT_VALID_P): Return true for '?'.
21985 * config/m68k/m68k.c (MIN_MOVEM_REGS, MIN_FMOVEM_REGS): New macros.
21986 (m68k_frame): Remove reg_rev_mask and fpu_rev_mask.
21987 (TARGET_ASM_FUNCTION_PROLOGUE, TARGET_ASM_FUNCTION_EPILOGUE): Delete.
21988 (m68k_interrupt_function_p): Globalize.
21989 (m68k_compute_frame_layout): Remove reverse mask code.
21990 (m68k_emit_movem, m68k_set_frame_related): New functions.
21991 (m68k_output_function_prologue): Delete in favor of...
21992 (m68k_expand_prologue): ...this new function.
21993 (m68k_output_function_epilogue): Delete in favor of...
21994 (m68k_expand_epilogue): ...this new function.
21995 (m68k_split_offset, m68k_movem_pattern_p, m68k_output_movem): New
21996 functions.
21997 (print_operand): Handle %?.
21998 * config/m68k/m68k.md (UNSPEC_SIN, UNSPEC_COS): Remove excess space.
21999 (UNSPEC_GOT, A1_REG, PIC_REG, FP0_REG): New constants.
22000 (prologue, epilogue): New patterns.
22001 (return): Turn into a define_expand.
22002 (*return): New pattern, derived from old "return" pattern. Use rte
22003 rather than rts for interrupt functions. Only use rtd if the pop
22004 count is nonzero.
22005 (*m68k_store_multiple, *m68k_store_multiple_automod): New patterns.
22006 (*m68k_load_multiple, *m68k_load_multiple_automod): Likewise.
22007 (link, *link, unlink, *unlink, load_got): Likewise.
22008
22009 2007-03-06 Richard Sandiford <richard@codesourcery.com>
22010
22011 PR target/23482
22012 PR target/17114
22013 * config/m68k/m68k-protos.h (m68k_legitimate_base_reg_p): Declare.
22014 (m68k_legitimate_index_reg_p, m68k_legitimate_address_p): Likewise.
22015 (m68k_matches_q_p, m68k_matches_u_p): Likewise.
22016 * config/m68k/m68k.h (EXTRA_CONSTRAINT): Use m68k_matches_q_p
22017 and m68k_matches_u_p.
22018 (PCREL_GENERAL_OPERAND_OK, LEGITIMATE_BASE_REG_P): Delete.
22019 (INDIRECTABLE_1_ADDRESS_P, GO_IF_NONINDEXED_ADDRESS): Delete.
22020 (GO_IF_INDEXABLE_BASE, GO_IF_INDEXING, GO_IF_INDEXED_ADDRESS): Delete.
22021 (LEGITIMATE_INDEX_REG_P, LEGITIMATE_INDEX_P): Delete.
22022 (GO_IF_COLDFIRE_FPU_LEGITIMATE_ADDRESS): Delete.
22023 (REG_STRICT_P): New macro.
22024 (LEGITIMATE_PIC_OPERAND_P): Use REG_STRICT_P rather than
22025 PCREL_GENERAL_OPERAND_OK.
22026 (REG_OK_FOR_BASE_P): Merge definitions. Use REG_STRICT_P and
22027 m68k_legitimate_base_reg_p.
22028 (REG_MODE_OK_FOR_INDEX_P): Likewise m68k_legitimate_index_reg_p.
22029 (GO_IF_LEGITIMATE_ADDRESS): Likewise m68k_legitimate_address_p.
22030 (PIC_CASE_VECTOR_ADDRESS): Update comment.
22031 * config/m68k/m68k.c (m68k_address): New structure.
22032 (m68k_legitimate_base_reg_p, m68k_legitimate_index_reg_p)
22033 (m68k_decompose_index, m68k_legitimate_constant_address_p)
22034 (m68k_jump_table_ref_p, m68k_decompose_address)
22035 (m68k_legitimate_address_p, m68k_legitimate_mem_p, m68k_matches_q_p)
22036 (m68k_matches_u_p): New functions.
22037 (print_operand_address): Rewrite to use m68k_decompose_index.
22038
22039 2007-03-05 David Taylor <dtaylor@emc.com>
22040
22041 * gcc.c: Correct copyright date in --version output.
22042
22043 2007-03-05 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
22044
22045 * pa.md: In unamed move patterns, disparge copies between general
22046 and floating point registers using '?' modifier. Don't include 'f'
22047 constraint for register preferences in DImode, SImode, HImode and
22048 QImode patterns. Likewise for 'r' in DFmode and SFmode patterns.
22049 Remove constraints for copies between general and floating registers
22050 in soft-float DFmode pattern.
22051 (movdf): Fail if operand1 is a CONST_DOUBLE and operand0 is a hard
22052 floating register.
22053 (movsf): Likewise.
22054
22055 2007-03-05 Mike Stump <mrs@apple.com>
22056
22057 * c-common.c (targetcm): Add.
22058 * c-opts.c (c_common_handle_option): Handle language specific
22059 target options.
22060 * opts.c (handle_option): Verify language for target options, if
22061 any are given.
22062 * opth-gen.awk: Add CL_LANG_ALL.
22063 * target-def.h (TARGET_HANDLE_C_OPTION): Add.
22064 (TARGETCM_INITIALIZER): Add.
22065 * target.h (struct gcc_targetcm): Add.
22066 (targetcm): Add.
22067 * targhooks.c (default_handle_c_option): Add.
22068 * targhooks.h (default_handle_c_option): Add.
22069 * doc/tm.texi (TARGET_HANDLE_C_OPTION): Add.
22070
22071 * config/darwin.opt (iframework): Add.
22072 * config/darwin.h (TARGET_HAS_TARGETCM): Add.
22073 * config/darwin-c.c (handle_c_option): Add.
22074 (TARGET_HANDLE_C_OPTION): Add.
22075 (targetcm): Add.
22076 * doc/invoke.texi (Darwin Options): Add -iframework.
22077
22078 2007-03-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
22079
22080 * convert.c (convert_to_integer): Fix nearbyint/rint -> *lrint
22081 conversion.
22082
22083 2007-03-05 Ian Lance Taylor <iant@google.com>
22084
22085 * c.opt (fgnu89-inline): New option.
22086 * c-opts.c (c_common_post_options): Set default value for
22087 flag_gnu89_inline.
22088 * c-decl.c (WANT_C99_INLINE_SEMANTICS): Remove.
22089 (pop_scope): Check flag_gnu89_inline rather than flag_isoc99 for
22090 inline functions.
22091 (diagnose_mismatched_decls, merge_decls, start_decl): Likewise.
22092 (grokdeclarator, start_function): Likewise.
22093 * c-cppbuiltin.c (c_cpp_builtins): Define either
22094 __GNUC_GNU_INLINE__ or __GNUC_STDC_INLINE__.
22095 * doc/invoke.texi (Option Summary): Mention -fgnu89-inline.
22096 (C Dialect Options): Document -fgnu89-inline.
22097 * doc/extend.texi (Function Attributes): Explain what the
22098 gnu_inline attribute does.
22099 * doc/cpp.texi (Common Predefined Macros): Document
22100 __GNUC_GNU_INLINE__ and __GNUC_STDC_INLINE__.
22101
22102 2007-03-05 Ian Lance Taylor <iant@google.com>
22103
22104 PR tree-optimization/31034
22105 * tree-vrp.c (extract_range_from_assert): Don't try to handle a
22106 half-range if the other side is an overflow infinity.
22107
22108 2007-03-05 Bernd Schmidt <bernd.schmidt@analog.com>
22109
22110 * config.gcc (bfin*-uclinux*): Use t-bfin-uclinux.
22111 (bfin*-linux-uclibc*): New configuration.
22112 * config/linux.h (LINK_GCC_C_SEQUENCE_SPEC): Undefined before
22113 defining.
22114 * config/bfin/linux.h: New file.
22115 * config/bfin/libgcc-bfin.ver: New file.
22116 * config/bfin/t-bfin-uclinux: New file.
22117 * config/bfin/t-bfin-linux: New file.
22118 * config/bfin/uclinux.h (LINUX_TARGET_OS_CPP_BUILTINS): New macro.
22119 (TARGET_OS_CPP_BUILTINS): New macro.
22120
22121 2007-03-05 Richard Guenther <rguenther@suse.de>
22122
22123 * fold-const.c (fold_binary): Remove duplicate folding
22124 of comparison of non-null ADDR_EXPR against null.
22125
22126 2007-03-05 Richard Guenther <rguenther@suse.de>
22127 Dorit Nuzman <dorit@il.ibm.com>
22128
22129 PR tree-optimization/26420
22130 * tree-vectorizer.c (vectorize_loops): Bail out early if there
22131 are no loops in the function. Only print the number of
22132 vectorized loops if it is greater than zero or we are supposed
22133 to print information about unvectorized loops.
22134
22135 2007-03-05 Revital Eres <eres@il.ibm.com>
22136
22137 * gcc.dg/var-expand1.c: New test.
22138 * loop-unroll.c (analyze_insn_to_expand_var): Add dump info
22139 when an accumulator is expanded.
22140
22141 2007-03-04 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
22142
22143 PR other/30465
22144 * c-common.c (convert_and_check): Don't give warnings for
22145 conversion if 'expr' already overflowed.
22146
22147 2007-03-04 Roger Sayle <roger@eyesopen.com>
22148
22149 PR middle-end/30744
22150 * fold-const.c (fold_comparison): Enforce type consistency when
22151 transforming ~X op ~Y to Y op X, and ~X op C to X op' ~C.
22152
22153 2007-03-04 Zdenek Dvorak <dvorakz@suse.cz>
22154
22155 * tree-ssa-address.c (create_mem_ref): Do not put an expression
22156 containing a cast to the base of TARGET_MEM_REF.
22157
22158 2007-03-04 Martin Michlmayr <tbm@cyrius.com>
22159
22160 * tree.c (tree_contains_struct_check_failed): Remove spurious
22161 whitespace from error message.
22162
22163 2007-03-04 Andrew Pinski <andrew_pinski@playstation.sony.com>
22164
22165 PR target/30406
22166 * config/rs6000/rs6000.c (rs6000_function_value): Look at bit size
22167 instead of precision.
22168
22169 2007-03-04 Roman Zippel <zippel@linux-m68k.org>
22170 Nathan Sidwell <nathan@codesourcery.com>
22171
22172 * emit-rtl.c (find_auto_inc): New.
22173 (try_split): recreate REG_INC notes,
22174 Use regular for loops rather than whiles.
22175
22176 2007-03-03 Andreas Schwab <schwab@suse.de>
22177
22178 * configure.ac (HAVE_AS_REL16): Move test back to correct place.
22179 * configure: Regenerate.
22180
22181 2007-03-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
22182
22183 * builtins.def (ATTR_MATHFN_FPROUNDING): Rely on
22184 flag_rounding_math, not flag_unsafe_math_optimizations.
22185
22186 * c-pretty-print.c (pp_c_direct_abstract_declarator): Use
22187 fold_build2.
22188 * config/alpha/alpha.c (alpha_fold_builtin_zapnot,
22189 alpha_fold_vector_minmax): Likewise.
22190 * config/i386/i386.c (ix86_gimplify_va_arg): Likewise.
22191 * config/sparc/sparc.c (sparc_gimplify_va_arg): Likewise.
22192
22193 2007-03-02 Eric Botcazou <ebotcazou@adacore.com>
22194
22195 * tree-sra.c (sra_walk_fns) <ldst>: Document new restriction.
22196 (sra_walk_modify_expr) <rhs_elt>: Treat the reference as a use
22197 if the lhs has side-effects.
22198 <lhs_elt>: Treat the reference as a use if the rhs has side-effects.
22199
22200 2007-03-02 Uros Bizjak <ubizjak@gmail.com>
22201
22202 * config/i386/i386.h (TUNEMASK): Remove define.
22203 (ARCHMASK): Remove define.
22204 (TARGET_*): Use ix86_tune_mask variable instead of TUNEMASK.
22205 Use ix86_arch_mask variable instead of ARCHMASK.
22206 * config/i386/i386.c (override_options): Ditto.
22207 (standard_80387_constant_p): Ditto.
22208
22209 2007-03-02 Ian Lance Taylor <iant@google.com>
22210
22211 Used signed infinities in VRP.
22212 * tree-vrp.c (uses_overflow_infinity): New static function.
22213 (supports_overflow_infinity): New static function.
22214 (make_overflow_infinity): New static function.
22215 (negative_overflow_infinity): New static function.
22216 (positive_overflow_infinity): New static function.
22217 (is_negative_overflow_infinity): New static function.
22218 (is_positive_overflow_infinity): New static function.
22219 (is_overflow_infinity): New static function.
22220 (overflow_infinity_range_p): New static function.
22221 (compare_values_warnv): New function split out of compare_values.
22222 (compare_value): Call it.
22223 (set_value_range_to_nonnegative): Add overflow_infinity
22224 parameter. Change caller.
22225 (vrp_expr_computes_nonnegative): Add strict_overflow_p parameter.
22226 Change callers.
22227 (vrp_expr_computes_nonzero): Likewise.
22228 (compare_ranges, compare_range_with_value): Likewise.
22229 (compare_name_with_value, compare_names): Likewise.
22230 (vrp_evaluate_conditional): Likewise.
22231 (set_value_range): Handle infinity
22232 (vrp_operand_equal_p, operand_less_p): Likewise.
22233 (extract_range_from_assert): Likewise.
22234 (vrp_int_const_binop): Likewise.
22235 (extract_range_from_binary_expr): Likewise.
22236 (extract_range_from_unary_expr): Likewise.
22237 (extract_range_from_comparison): Likewise.
22238 (extract_range_from_expr): Likewise.
22239 (dump_value_range): Likewise.
22240 (vrp_visit_cond_stmt, vrp_visit_phi_node): Likewise.
22241 (test_for_singularity): Likewise.
22242 (vrp_int_const_binop): Remove inline qualifier.
22243 (adjust_range_with_scev): Add comment.
22244 * tree-flow.h (vrp_evaluate_conditional): Update declaration.
22245
22246 2007-03-02 Diego Novillo <dnovillo@redhat.com>
22247
22248 * tree-ssa-structalias.c (could_have_pointers): Tidy.
22249 (get_constraint_for): Likewise.
22250 (do_structure_copy): Likewise.
22251 (find_func_aliases): Fix references to MODIFY_EXPR.
22252 (intra_create_variable_infos): Tidy.
22253 * tree-ssa-operands.c (add_virtual_operand): Add argument
22254 IS_CALL_SITE.
22255 When adding members of alias sets, if IS_CALL_SITE is true and
22256 the symbol is not call-clobbered, skip it.
22257 Adjust all callers.
22258
22259 2007-03-02 Eric Botcazou <ebotcazou@adacore.com>
22260
22261 * config/alpha/alpha.c (alpha_gp_save_rtx): Insert the insns at the
22262 entry by means of emit_insn_at_entry.
22263
22264 2007-03-02 Richard Henderson <rth@redhat.com>
22265
22266 * expr.h (promoted_input_arg): Remove decl.
22267 * function.c (promoted_input_arg): Merge into ...
22268 * combine.c (setup_incoming_promotions): ... only caller.
22269 Rearrange to avoid double loop.
22270
22271 2007-03-02 Ben Elliston <bje@au.ibm.com>
22272 Peter Bergner <bergner@vnet.ibm.com>
22273 Janis Johnson <janis187@us.ibm.com>
22274
22275 * config/rs6000/dfp.md: New file.
22276 * config/rs6000/rs6000.md: Include dfp.md.
22277 (add<mode>3_internal1): Disable for DECIMAL_FLOAT_MODE_P operands.
22278 * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): Handle DDmode
22279 and TDmode decimal float modes in FP registers.
22280 (num_insns_constant): Likewise.
22281 (rs6000_legitimate_offset_address_p): Likewise.
22282 (rs6000_legitimize_address): Likewise.
22283 (rs6000_legitimize_reload_address): Likewise.
22284 (rs6000_legitimate_address): Likewise.
22285 (rs6000_emit_move): Likewise.
22286 (function_arg_boundary): Likewise.
22287 (function_arg_advance): Likewise.
22288 (rs6000_darwin64_record_arg_recurse): Likewise.
22289 (function_arg): Likewise.
22290 (rs6000_gimplify_va_arg): Likewise.
22291 (rs6000_split_multireg_move): Likewise.
22292 (rs6000_output_function_epilogue): Likewise.
22293 (rs6000_output_function_epilogue): Likewise.
22294 (rs6000_register_move_cost): Likewise.
22295 (rs6000_function_value): Likewise.
22296 (rs6000_libcall_value): Likewise.
22297
22298 2007-03-02 Richard Sandiford <richard@codesourcery.com>
22299
22300 * config/t-vxworks (LIMITS_H_TEST): Define to true for VxWorks.
22301
22302 2007-03-02 Richard Sandiford <richard@codesourcery.com>
22303
22304 * config/t-vxworks (LIBGCC2_INCLUDES): Pass -nostdinc.
22305 Use $MULTIDIR to choose between the kernel and RTP headers,
22306 and use $WIND_BASE and $WIND_USR to locate them.
22307
22308 2007-03-02 Uros Bizjak <ubizjak@gmail.com>
22309
22310 * config/i386/i386.c (override_options): Put initialization of
22311 ix86_tune_mask and ix86_arch_mask to the correct place.
22312
22313 2007-03-02 Uros Bizjak <ubizjak@gmail.com>
22314 Michael Meissner <michael.meissner@amd.com>
22315
22316 PR target/31019
22317 * config/i386/i386.h (TUNEMASK): Redefine to use ix86_tune_mask.
22318 (ARCHMASK): Define.
22319 (TARGET_CMOVE): Use ARCHMASK.
22320 (TARGET_CMPXCHG): Ditto.
22321 (TARGET_CMPXCHG8B): Ditto.
22322 (TARGET_XADD): Ditto.
22323 (TARGET_BSWAP): Ditto.
22324 * config/i386/i386.c (ix86_tune_mask): New global variable.
22325 (ix86_arch_mask): Ditto.
22326 (override_options): Initialize ix86_tune_mask and
22327 ix86_arch_mask. Use ARCHMASK to clear MASK_NO_FANCY_MATH_387 in
22328 target_flags.
22329
22330 2007-03-02 Ben Elliston <bje@au.ibm.com>
22331
22332 PR 30992
22333 * config/dfp-bit.c (DFP_TO_INT): Initialise qval with "1.".
22334
22335 2007-03-02 Joseph Myers <joseph@codesourcery.com>
22336
22337 * target.h (init_dwarf_reg_sizes_extra): New target hook.
22338 * target-def.h (TARGET_INIT_DWARF_REG_SIZES_EXTRA): New default.
22339 * doc/tm.texi (TARGET_INIT_DWARF_REG_SIZES_EXTRA): Document.
22340 * dwarf2out.c (expand_builtin_init_dwarf_reg_sizes): Call this
22341 hook.
22342 * config/rs6000/rs6000.c (TARGET_INIT_DWARF_REG_SIZES_EXTRA,
22343 rs6000_init_dwarf_reg_sizes_extra): New.
22344 * config/rs6000/linux-unwind.h (ppc_fallback_frame_state): Support
22345 SPE register high parts.
22346
22347 2007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
22348
22349 * Makefile.in: Add install-pdf target as
22350 copied from automake v1.10 rules.
22351 * configure.ac: Add install-pdf to target list.
22352 * configure: Regenerate.
22353
22354 2007-03-01 Paul Brook <paul@codesourcery.com>
22355
22356 * config/arm/arm.c (arm_legitimate_index_p): Limit iWMMXt addressing
22357 modes to LDRD for DImode.
22358 (output_move_double): Fixup out of range ldrd/strd.
22359 (vfp_secondary_reload_class): Rename...
22360 (coproc_secondary_reload_class): ... to this. Add wb argument.
22361 * config/arm/arm.h (SECONDARY_OUTPUT_RELOAD_CLASS): Use
22362 coproc_secondary_reload_class for CLASS_IWMMXT.
22363 (SECONDARY_INPUT_RELOAD_CLASS): Ditto.
22364 * arm-protos.h (coproc_secondary_reload_class): Update prototype.
22365
22366 2007-03-01 Zdenek Dvorak <dvorakz@suse.cz>
22367
22368 * tree-ssa-loop-prefetch.c (determine_unroll_factor): Bound the
22369 unroll factor by the estimated number of iterations.
22370 (loop_prefetch_arrays): Do not prefetch in loops that iterate less
22371 than prefetch latency.
22372
22373 * config/i386/driver-i386.c (describe_cache, detect_caches_amd,
22374 decode_caches_intel, detect_caches_intel): New functions.
22375 (host_detect_local_cpu): Use detect_caches_amd and
22376 detect_caches_intel.
22377
22378 2007-03-01 Richard Henderson <rth@redhat.com>
22379
22380 * expr.c (emit_move_complex_push): Export.
22381 (emit_move_complex_parts): Split out from ...
22382 (emit_move_complex): ... here.
22383 * expr.h (emit_move_complex_push, emit_move_complex_parts): Declare.
22384 * config/i386/i386.md (movcdi): New.
22385
22386 2007-03-01 Uros Bizjak <ubizjak@gmail.com>
22387
22388 * config/i386/i386.c (ix86_modes_tieable_p): Fix typo, use also
22389 size of mode1 to check for tieable modes in MMX case.
22390
22391 2007-03-01 Richard Sandiford <richard@codesourcery.com>
22392
22393 * Makefile.in (rtlanal.o): Depend on tree.h.
22394 * rtl.h (offset_within_section_p, split_const): Declare.
22395 * rtlanal.c: Include tree.h.
22396 (offset_within_block_p): New function, taken from
22397 mips_offset_within_object_p.
22398 (split_const): New function, taken from mips_split_const.
22399 * config/m68k/m68k-protos.h (m68k_illegitimate_symbolic_constant_p):
22400 Declare.
22401 * config/m68k/m68k.h (M68K_OFFSETS_MUST_BE_WITHIN_SECTIONS_P): Define.
22402 (CONSTANT_ADDRESS_P): Only accept legitimate constants.
22403 (LEGITIMATE_CONSTANT_P): Check m68k_illegitimate_symbolic_constant_p.
22404 * config/m68k/m68k.c (TARGET_CANNOT_FORCE_CONST_MEM): Define.
22405 (m68k_illegitimate_symbolic_constant_p): New function.
22406 * config/m68k/m68k.md (movsi): Remove misleading predicates.
22407 If M68K_OFFSETS_MUST_BE_WITHIN_SECTIONS_P and the source is a
22408 symbolic constant that might be outside the symbol's section,
22409 move the symbol first and then add the offset.
22410 * config/m68k/uclinux.h (M68K_OFFSETS_MUST_BE_WITHIN_SECTIONS_P):
22411 Override.
22412 * config/mips/mips.c (mips_split_const): Delete.
22413 (mips_offset_within_object_p): Delete.
22414 (mips_symbolic_constant_p): Use offset_within_section_p and
22415 split_const instead of mips_offset_within_object_p and
22416 mips_split_const.
22417 (mips_cannot_force_const_mem, mips_const_insns, mips_unspec_address)
22418 (mips_legitimize_const_move, print_operand_reloc)
22419 (mips_dangerous_for_la25_p): Use split_const instead of
22420 mips_split_const.
22421
22422 2007-02-28 Eric Christopher <echristo@apple.com>
22423
22424 * Makefile.in (install-include-dir): Don't rm -rf include.
22425
22426 2007-02-28 Richard Guenther <rguenther@suse.de>
22427
22428 PR middle-end/30364
22429 * fold-const.c (fold_binary): Do not associate expressions
22430 with more than one variable for integer types that do not wrap.
22431
22432 2007-02-28 Sandra Loosemore <sandra@codesourcery.com>
22433
22434 * builtins.c (fold_builtin_call_list, fold_builtin_call_valist):
22435 Delete, and replace with...
22436 (fold_builtin_call_array): This. Update callers to use it.
22437 * fold-const.c (fold_build_call_list): Delete, and replace with...
22438 (fold_build_call_array): This.
22439 (fold_build_call_list_initializer): Delete, and replace with...
22440 (fold_build_call_array_initializer): This.
22441 * tree.h: Update declarations to reflect above changes.
22442
22443 * c-typeck.c (build_function_call): Store converted arguments
22444 in a stack-allocated array instead of building a list.
22445 (convert_arguments): Store arguments in the array passed in as an
22446 argument, and return the actual number of arguments.
22447 * c-format.c: (check_function_format): Pass arguments in an
22448 array instead of a list.
22449 * c-common.c (check_function_nonnull): Likewise.
22450 (check_function_sentinel): Likewise.
22451 (check_function_arguments): Likewise.
22452 * c-common.h: Update declarations to reflect above changes.
22453
22454 2007-02-28 Jan Hubicka <jh@suse.cz>
22455
22456 * predict.def (PRED_TREE_EARLY_RETURN, PRED_CONST_RETURN,
22457 PRED_NEGATIVE_RETURN): Update outcomes.
22458
22459 2007-02-28 Bernd Schmidt <bernd.schmidt@analog.com>
22460
22461 * calls.c (emit_library_call_value_1): Handle partial registers
22462 correctly when building up CALL_INSN_FUNCTION_USAGE.
22463
22464 2007-02-27 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
22465
22466 * pa/predicates.md (move_src_operand): Allow zero for mode.
22467 * pa/pa.md: Fix constraints for zero CONST_DOUBLE in 64-bit DFmode
22468 move pattern.
22469
22470 2007-02-27 Uros Bizjak <ubizjak@gmail.com>
22471
22472 PR target/30970
22473 * config/i386/sse.md (*mov<mode>_internal, *movv4sf_internal,
22474 *movv2df_internal): Enable pattern only for valid operand
22475 combinations.
22476 * config/i386/i386.c (ix86_modes_tieable_p): For SSE registers,
22477 tie only 128bit modes. For MMX registers, tie only 64bit modes.
22478
22479 2007-02-27 Mike Stump <mrs@apple.com>
22480
22481 * config/darwin-crt3.c: Avoid compilation when compiling for a
22482 kext multilib.
22483
22484 2007-02-27 Joseph Myers <joseph@codesourcery.com>
22485
22486 * Makefile.in (PREPROCESSOR_DEFINES, test-protoize-simple): Define
22487 FIXED_INCLUDE_DIR.
22488 (stmp-int-hdrs, stmp-fixinc, install-headers): Use include-fixed
22489 for fixed headers and limits.h.
22490 (install-include-dir, install-headers-tar, install-headers-cpio,
22491 install-headers-cp, real-install-headers-tar,
22492 real-install-headers-cpio, real-install-headers-cp): Handle
22493 include-fixed as well as include.
22494 (install-mkheaders): Don't install files that go only in include
22495 not include-fixed.
22496 * cppdefault.c (cpp_include_defaults): Separate FIXED_INCLUDE_DIR
22497 from GCC_INCLUDE_DIR.
22498 * gcc.c (process_command): Remove special -BstageN/ handling.
22499 (do_spec_1): Add include-fixed directories.
22500
22501 2007-02-27 Bernd Schmidt <bernd.schmidt@analog.com>
22502
22503 * config/bfin/t-bfin-elf (LIB1ASMFUNCS): Add _umulsi3_highpart and
22504 _smulsi3_highpart.
22505 * config/bfin/lib1funcs.asm (___umulsi3_highpart, ___smulsi3_highpart):
22506 New functions.
22507 * config/bfin/bfin.md (smulsi3_highpart, umulsi3_highpart): New
22508 patterns.
22509
22510 2007-02-27 Mark Mitchell <mark@codesourcery.com>
22511
22512 * c-common.c (get_priority): Add check for
22513 SUPPORTS_INIT_PRIORITY.
22514
22515 2007-02-27 Bernd Schmidt <bernd.schmidt@analog.com>
22516
22517 * config/bfin/bfin.md (doloop_end): FAIL if counter reg isn't SImode.
22518
22519 * config/bfin/bfin.c: Include "cfglayout.h".
22520 (MAX_LSETUP_DISTANCE): New macro.
22521 (struct loop_info): New members incoming, incoming_src and
22522 incoming_dest. Delete member predecessor.
22523 (length_for_loop): New function.
22524 (bfin_optimize_loop): Handle more different loop structures.
22525 (bfin_discover_loop): Rework detection of predecessor blocks by
22526 examining incoming edges.
22527 (bfin_discover_loops, bfin_free_loops): New functions, broken out of
22528 bfin_reorg_loops.
22529 (bfin_reorder_loops): New function.
22530 (bfin_reorg_loops): Use these three new functions.
22531
22532 * config/bfin/bfin.h (enum reg_class, REG_CLASS_NAMES,
22533 REG_CLASS_CONTENTS): Add D0REGS through D7REGS.
22534 (CONSTRAINT_LEN): Add entry for 'q'.
22535 (REG_CLASS_FROM_CONSTRAINT): Renamed from REG_CLASS_FROM_LETTER.
22536 Add 'q' constraints.
22537 (REGNO_REG_CLASS): For R0 through R7, return corresponding regclass.
22538 (CLASS_LIKELY_SPILLED_P): True for R0, R1 and R2.
22539
22540 * config/bfin/bfin.md (add_with_carry): New pattern.
22541 (s_or_u, su_optab, su_modifier): New code macros/attrs.
22542 (<su_optab>hisi_ll, <su_optab>hisi_lh, <su_optab>hisi_hl,
22543 <su_optab>hisi_hh): Renamed from mulhisi_xx patterns; macroized to
22544 support unsigned multiplies too. Removed incorrect commutativity from
22545 operand 1 constraint where appropriate.
22546 (usmulhisi_ull, usmulhisi_ulh, usmulhisi_uhl, usmulhisi_uhh): New
22547 patterns.
22548 (<su_optab>hisi_ll_lh, <su_optab>hisi_ll_hl, <su_optab>hisi_ll_hh,
22549 <su_optab>hisi_lh_hl, <su_optab>hisi_lh_hh, <su_optab>hisi_hl_hh):
22550 New patterns.
22551 (usmulhisi_ll_lul, usmulhisi_ll_luh, usmulhisi_ll_hul,
22552 usmulhisi_ll_huh, usmulhisi_lh_lul, usmulhisi_lh_luh, usmulhisi_lh_hul,
22553 usmulhisi_lh_huh, usmulhisi_hl_lul, usmulhisi_hl_luh, usmulhisi_hl_hul,
22554 usmulhisi_hl_huh, usmulhisi_hh_lul, usmulhisi_hh_luh, usmulhisi_hh_hul,
22555 usmulhisi_hh_huh): New patterns.
22556
22557 * config/bfin/bfin.md (ssashiftv2hi3, ssashifthi3, lshiftv2hi3,
22558 lshifthi3): Fix output template to use half reg for operand 2.
22559
22560 * config/bfin/bfin.c (bfin_output_mi_thunk): Use R3 as scratch reg
22561 instead of R2.
22562
22563 * config/bfin/bfin.md (rotl16, rotlsi3, rotrsi3): New patterns.
22564
22565 2007-02-27 Andreas Schwab <schwab@suse.de>
22566
22567 * Makefile.in (TEXI_GCCINSTALL_FILES): Add gcc-common.texi.
22568
22569 2007-02-27 Jan Hubicka <jh@suse.cz>
22570
22571 * predict.c (last_basic_block_p): Remove.
22572 (tree_estimate_probability): Update return heuristic for commonized
22573 return blocks.
22574
22575 2007-02-26 Brooks Moses <brooks.moses@codesourcery.com>
22576
22577 * Makefile.in (TEXI_GCCINSTALL_FILES): Add gcc-vers.texi dependency.
22578
22579 2007-02-26 Brooks Moses <brooks.moses@codesourcery.com>
22580
22581 * doc/include/gcc-common.texi (versionsubtitle): New macro.
22582 * doc/cpp.texi: Standardize title page.
22583 * doc/cppinternals.texi: Likewise.
22584 * doc/gcc.texi: Standardize title page, remove version number
22585 from copyright page.
22586 * doc/gccint.texi: Likewise.
22587 * doc/install.texi: Standardize title page, add table of
22588 contents.
22589
22590 2007-02-26 Jan Hubicka <jh@suse.cz>
22591
22592 * predict.def: Set outcomes according to more recent results.
22593 (PRED_LOOP_CONDITION, PRED_LOOP_PRECONDITIONING, PRED_LOOP_HEADER):
22594 Remove dead predictors.
22595 * predict.c (return_prediction): Fix pasto.
22596
22597 2007-02-27 Bernd Schmidt <bernd.schmidt@analog.com>
22598
22599 * loop-iv.c (simplify_using_initial_values): Fix oversight in previous
22600 change; avoid a memory leak when returning early.
22601
22602 2007-02-26 Mark Mitchell <mark@codesourcery.com>
22603
22604 * c-decl.c (static_ctors): Move to c-common.c.
22605 (static_dtors): Likewise.
22606 (finish_function): Use c_record_cdtor_fn.
22607 (build_cdtor): Move to c-common.c.
22608 (c_write_global_declarations): Use c_build_cdtor_fns.
22609 * c-common.h (static_ctors): Declare.
22610 (static_dtors): Likewise.
22611 (c_record_cdtor_fn): Likewise.
22612 (c_build_cdtor_fns): Likewise.
22613 * c-common.c (static_ctors): New variable.
22614 (static_dtors): Likewise.
22615 (c_record_cdtor_fn): New function.
22616 (build_cdtor): Move from c-decl.c
22617 (c_build_cdtor_fns): New function.
22618
22619 * output.h (assemble_addr_to_section): Declare.
22620 (get_cdtor_priority_section): Likewise.
22621 * varasm.c (assemble_addr_to_section): New function.
22622 (get_cdtor_priority_section): Likewise.
22623 (default_named_section_asm_out_destructor): Use them.
22624 (destor_dtor_section_asm_out_destructor): Likewise.
22625 (default_named_section_asm_out_constructor): Likewise.
22626 (default_ctor_section_asm_out_constructor): Likewise.
22627 * config.gcc (*-*-vxworks*): Include vxworks.o.
22628 * config/t-vxworks (vxworks.o): New target.
22629 * config/vxworks.h (ALWAYS_NUMBER_CTORS_SECTIONS): Remove.
22630 (TARGET_ASM_CONSTRUCTOR): Define.
22631 (TARGET_ASM_DESTRUCTOR): Likewise.
22632 (vxworks_asm_out_constructor): Declare.
22633 (vxworks_asm_out_destructor): Likewise.
22634
22635 * c-common.c (get_priority): Check that we have not just an
22636 INTEGER_CST, but an integer constant with integeral type.
22637
22638 2007-02-25 Uros Bizjak <ubizjak@gmail.com>
22639
22640 PR tree-optimization/30938
22641 * tree-vect-transform.c (vectorizable_call): Fix off-by-one error:
22642 use &dt[nargs-1] instead of &dt[nargs] in the call to
22643 vect_is_simple_use().
22644
22645 2007-02-25 Ulrich Weigand <uweigand@de.ibm.com>
22646
22647 * reload.c (find_reloads_address_1): Handle PLUS expressions resulting
22648 from register elimination as PRE_MODIFY / POST_MODIFY increments.
22649 Do not attempt to handle MEM inside auto-inc expressions.
22650 * reload1.c (eliminate_regs_1): Do not attempt to handle elimination
22651 of a register modified by an auto-inc expression. However, do handle
22652 elimination of a register used as PRE_MODIFY / POST_MODIFY increment.
22653 (elimination_effects): Prohibit elimination of a register modified
22654 by an auto-inc expression. Disable register elimination rules whose
22655 target register is modified by an auto-inc expression with variable
22656 increment.
22657
22658 2007-02-25 Zdenek Dvorak <dvorakz@suse.cz>
22659
22660 * tree-ssa-loop-niter.c (compute_estimated_nb_iterations): Fix
22661 off-by-one error.
22662 (array_at_struct_end_p): New function.
22663 (idx_infer_loop_bounds): Use it.
22664 (estimate_numbers_of_iterations_loop): Export.
22665 * predict.c (predict_loops): Use estimated_loop_iterations_int.
22666 Do not use PRED_LOOP_EXIT on exits predicted by # of iterations.
22667 (tree_estimate_probability): Call record_loop_exits.
22668 * tree-data-ref.c (get_number_of_iters_for_loop): Replaced by ...
22669 (estimated_loop_iterations, estimated_loop_iterations_int,
22670 estimated_loop_iterations_tree): New functions.
22671 (analyze_siv_subscript_cst_affine,
22672 compute_overlap_steps_for_affine_1_2,
22673 analyze_subscript_affine_affine): Use estimated_loop_iterations_int.
22674 (analyze_miv_subscript): Use estimated_loop_iterations_tree.
22675 * predict.def (PRED_LOOP_ITERATIONS): Update comment.
22676 (PRED_LOOP_ITERATIONS_GUESSED): New.
22677 * cfgloop.c (record_loop_exits): Do nothing if there are no loops.
22678 * cfgloop.h (estimate_numbers_of_iterations_loop,
22679 estimated_loop_iterations_int): Declare.
22680
22681 2007-02-25 Mark Mitchell <mark@codesourcery.com>
22682
22683 * doc/extend.texi: Document optional priority argument to
22684 constructors and destructors.
22685 * tree.c (init_priority_for_decl): Adjust GTY markers.
22686 (init_ttree): Use priority-info hash functions for
22687 init_priority_for_decl.
22688 (tree_map_eq): Rename to ...
22689 (tree_map_base_eq): ... this.
22690 (tree_map_marked_p): Rename to ...
22691 (tree_map_base_marked_p): ... this.
22692 (tree_map_base_hash): New function.
22693 (decl_init_priority_lookup): Rework.
22694 (decl_fini_priority_lookup): New function.
22695 (decl_priority_info): New function.
22696 (decl_init_priority_insert): Use it.
22697 (decl_fini_priority_insert): Likewise.
22698 (decl_restrict_base_lookup): Adjust for refactoring of tree_map
22699 hierarchy.
22700 (decl_restrict_base_insert): Likewise.
22701 (decl_debug_expr_insert): Likewise.
22702 (decl_value_expr_lookup): Likewise.
22703 (decl_value_expr_insert): Likewise.
22704 * tree.h (priority_type): New type.
22705 (decl_init_priority_lookup): Use priority_type.
22706 (decl_fini_priority_lookup): New function.
22707 (decl_init_priority_insert): Use priority_type.
22708 (decl_fini_priority_insert): New function.
22709 (DECL_HAS_INIT_PRIORITY): Tweak comments.
22710 (DECL_INIT_PRIORITY): Likewise.
22711 (SET_DECL_INIT_PRIORITY): Add comment.
22712 (DECL_FINI_PRIORITY): New macro.
22713 (SET_DECL_FINI_PRIORITY): Likewise.
22714 (DEFAULT_INIT_PRIORITY): Document.
22715 (MAX_INIT_PRIORITY): Likewise.
22716 (MAX_RESERVED_INIT_PRIORITY): Likewise.
22717 (tree_map_base): New type.
22718 (tree_map_base_eq): New function.
22719 (tree_map_base_hash): Likewise.
22720 (tree_map_base_marked_p): Likewise.
22721 (tree_map): Inherit from tree_map_base.
22722 (tree_map_eq): Make it a macro.
22723 (tree_map_marked_p): Likewise.
22724 (tree_int_map): Inherit from tree_map_base.
22725 (tree_int_map_eq): Make it a macro.
22726 (tree_int_map_hash): Likewise.
22727 (tree_int_map_marked_p): Likewise.
22728 (tree_priority_map): New type.
22729 (tree_priority_map_eq): New macro.
22730 (tree_priority_map_hash): Likewise.
22731 (tree_priority_map_marked_p): Likewise.
22732 * varasm.c (emults_decl): Adjust for refactoring of tree_map
22733 hierarchy.
22734 (emutls_common_1): Likewise.
22735 * lambda-code.c (replace_uses_equiv_to_x_with_y): Likewise.
22736 * tree-ssa-structalias.c (heapvar_lookup): Adjust for refactoring
22737 of tree_map hierarchy.
22738 * tree-cfg.c (move_stmt_r): Likewise.
22739 (new_label_mapper): Likewise.
22740 * c-tree.h (c_expand_body): Move to ...
22741 * c-common.h (c_expand_body): ... here.
22742 * c-decl.c (c_expand_body): Move to ...
22743 * c-common.c (c_expand_body): ... here.
22744 (c_common_attribute_table): Allow 1 argument for the constructor
22745 and destructor attributes.
22746 (get_priority): New function.
22747 (handle_constructor_attribute): Set DECL_INIT_PRIORITY.
22748 (handle_destructor_attribute): Set DECL_FINI_PRIORITY.
22749
22750 2007-02-24 Jan Hubicka <jh@suse.cz>
22751
22752 PR middle-end/30509
22753 * tree-inline.c (copy_bb): Produce exact copy of EH info when
22754 copying for inlining.
22755
22756 2007-02-24 Uros Bizjak <ubizjak@gmail.com>
22757 Jan Hubicka <jh@suse.cz>
22758
22759 PR target/30778
22760 * i386.c (counter_mode): New function.
22761 (expand_set_or_movmem_via_loop): Use it.
22762 (expand_movmem_epilogue): Likewise; fix pasto.
22763 (ix86_expand_movmem): Do emit guard even for constant counts.
22764 (ix86_expand_setmem): Likewise.
22765
22766 2007-02-25 Nick Clifton <nickc@redhat.com>
22767
22768 * config/frv/frv.h (ASM_OUTPUT_CASE_LABEL): Delete.
22769 (JUMP_TABLES_IN_TEXT_SECTION): Define.
22770
22771 2007-02-24 Uros Bizjak <ubizjak@gmail.com>
22772
22773 PR target/30770
22774 * config/i386/i386.md (expand_movmem_epilogue): Fix typo, mask
22775 count argument with 0x10, not with 0x16.
22776 (expand_setmem_epilogue): Ditto.
22777
22778 2007-02-24 Mike Stump <mrs@apple.com>
22779
22780 * config/i386/i386.c (output_pic_addr_const): Stubify optimized
22781 symbols.
22782
22783 2007-02-24 Richard Guenther <rguenther@suse.de>
22784
22785 PR middle-end/30951
22786 * fold-const.c (fold_binary): Fold x +- CST op x for
22787 EQ_EXPR and NE_EXPR.
22788
22789 2007-02-24 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
22790
22791 * pa.md (muldi3): Force subregs to registers in 64-bit expander.
22792
22793 2007-02-24 Jan Hubicka <jh@suse.cz>
22794
22795 * cgraphunit.c (decide_is_function_needed): Honor
22796 -fkeep-inline-functions.
22797
22798 2007-02-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
22799
22800 * builtins.c (fold_builtin_modf): New.
22801 (fold_builtin_2): Use it.
22802
22803 2007-02-24 Bernd Schmidt <bernd.schmidt@analog.com>
22804
22805 * loop-iv.c (implies_p): Detect additional cases where A implies B.
22806 (determine_max_iter): Take additional LOOP arg; all callers changed.
22807 Lose broken logic dealing with PLUS. Try to limit the upper bound by
22808 one using simplifications.
22809 (simplify_using_initial_values): Return if the expression becomes
22810 invalid due to altered regs.
22811
22812 2007-02-23 DJ Delorie <dj@redhat.com>
22813
22814 * doc/tm.h (BIGGEST_ALIGNMENT): Clarify the purpose of this macro.
22815
22816 2007-02-23 Mike Stump <mrs@apple.com>
22817
22818 * tlink.c (scan_linker_output): Parse linker messages from
22819 darwin9's linker better.
22820
22821 2007-02-23 Steve Ellcey <sje@cup.hp.com>
22822
22823 PR debug/29614
22824 * varpool.c (varpool_assemble_pending_decls): Set
22825 varpool_last_needed_node to null.
22826
22827 2007-02-23 DJ Delorie <dj@redhat.com>
22828
22829 * config/i386/i386.c (ix86_data_alignment): Don't specify an
22830 alignment bigger than the object file can handle.
22831
22832 2007-02-23 Uros Bizjak <ubizjak@gmail.com>
22833
22834 PR target/30825
22835 * config/i386/i386.md (*movdi_1_rex64, zero_extendsidi2_32,
22836 zero_extendsidi2_rex64): Penalize MMX register<->memory moves.
22837 (*movsf_1): Penalize MMX moves.
22838
22839 2007-02-23 Bernd Schmidt <bernd.schmidt@analog.com>
22840
22841 * config/bfin/bfin.md (doloop_end): Fail for loops that can iterate
22842 2^32-1 or more times unless flag_unsafe_loop_optimizations.
22843
22844 * loop-iv.c (determine_max_iter): Moved in front of its sole user.
22845
22846 2007-02-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
22847
22848 * builtins.c (fold_builtin_logb, fold_builtin_significand): New.
22849 (fold_builtin_1): Use them.
22850 * fold-const.c (tree_expr_nonnegative_warnv_p): Handle
22851 BUILT_IN_SIGNIFICAND.
22852
22853 2007-02-23 H.J. Lu <hongjiu.lu@intel.com>
22854
22855 * config/i386/i386.c (bdesc_1arg): Initialize
22856 IX86_BUILTIN_MOVSHDUP and IX86_BUILTIN_MOVSLDUP with
22857 "__builtin_ia32_movshdup" and "__builtin_ia32_movsldup".
22858 (ix86_init_mmx_sse_builtins): Remove IX86_BUILTIN_MOVSHDUP
22859 and IX86_BUILTIN_MOVSLDUP.
22860
22861 2007-02-22 Paolo Bonzini <bonzini@gnu.org>
22862
22863 PR rtl-optimization/30841
22864 * fwprop.c (propagate_rtx_1): Accept a VOIDmode replacement address.
22865
22866 2007-02-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
22867
22868 * builtins.c (fold_builtin_frexp): New.
22869 (fold_builtin_2): Use it.
22870
22871 2007-02-22 Mark Mitchell <mark@codesourcery.com>
22872
22873 * doc/invoke.texi (Spec Files): Document getenv spec function.
22874
22875 * gcc.c (getenv_spec_function): New function.
22876 (static_spec_functions): Add it.
22877 * config/vxworks.h (VXWORKS_TARGET_DIR): Remove.
22878 (VXWORKS_ADDITIONAL_CPP_SPEC): Use getenv to find the VxWorks
22879 header files.
22880
22881 2007-02-22 Michael Matz <matz@suse.de
22882
22883 PR c++/29433
22884 * dwarf2out.c (add_AT_string): Call ggc_strdup once per string.
22885 (type_tag): Use lang_hooks.dwarf_name instead of DECL_NAME.
22886
22887 2007-02-22 Ian Lance Taylor <iant@google.com>
22888
22889 PR debug/30898
22890 * dwarf2out.c (concatn_mem_loc_descriptor): New static function.
22891 (mem_loc_descriptor): Call it.
22892
22893 2007-02-22 Zdenek Dvorak <dvorakz@suse.cz>
22894 Ira Rosen <irar@il.ibm.com>
22895
22896 * tree-data-ref.c (ptr_ptr_may_alias_p): Take alias sets into account.
22897
22898 2007-02-22 Ira Rosen <irar@il.ibm.com>
22899
22900 PR tree-optimization/30843
22901 * tree-vect-transform.c (vect_transform_loop): Remove strided scalar
22902 stores only after all the group is vectorized.
22903
22904 2007-02-22 Dorit Nuzman <dorit@il.ibm.com>
22905
22906 PR tree-optimization/30858
22907 * tree-vectorizer.c (vect_is_simple_reduction): Check that the stmts
22908 in the reduction cycle have a single use in the loop.
22909 * tree-vectorizer.h (relevant): Add documentation.
22910
22911 2007-02-20 Mike Stump <mrs@apple.com>
22912
22913 * configure.ac (powerpc*-*-darwin*): #include <sys/cdefs.h>.
22914 * configure: Regenerate.
22915
22916 2007-02-21 Trevor Smigiel <trevor_smigiel@playstation.sony.com>
22917
22918 Change the defaults of some parameters and options.
22919 * config/spu/spu-protos.h (spu_optimization_options): Declare.
22920 * config/spu/spu.c (spu_optimization_options): Add.
22921 (spu_override_options): Change params in spu_optimization_options.
22922 * config/spu/spu.h (OPTIMIZATION_OPTIONS): Define.
22923
22924 Register 127 is only 16 byte aligned when used as a frame pointer.
22925 * config/spu/spu-protos.h (spu_init_expanders): Declare.
22926 * config/spu/spu.c (spu_expand_prologue): Set REGNO_POINTER_ALIGN for
22927 HARD_FRAME_POINTER_REGNUM.
22928 (spu_legitimate_address): Use regno_aligned_for_reload.
22929 (regno_aligned_for_load): HARD_FRAME_POINTER_REGNUM is only 16 byte
22930 aligned when frame_pointer_needed is true.
22931 (spu_init_expanders): New. Set alignment of HARD_FRAME_POINTER_REGNUM
22932 to 8 bits.
22933 * config/spu/spu.h (INIT_EXPANDERS): Define.
22934
22935 Make sure shift and rotate instructions have valid immediate operands.
22936 * config/spu/predicates.md (spu_shift_operand): Remove.
22937 * config/spu/spu.c (print_operand): Add [efghEFGH] modifiers.
22938 * config/spu/constraints.md (W, O): Extend range.
22939 * config/spu/spu.md (umask, nmask): Define.
22940 (ashl<mode>3, ashldi3, ashlti3_imm, shlqbybi_ti, shlqbi_ti, shlqby_ti,
22941 lshr<mode>3, rotm_<mode>, lshr<mode>3_imm, rotqmbybi_<mode>,
22942 rotqmbi_<mode>, rotqmby_<mode>, ashr<mode>3, rotma_<mode>,
22943 rotl<mode>3, rotlti3, rotqbybi_ti, rotqby_ti, rotqbi_ti): Use
22944 spu_nonmem_operand instead of spu_shift_operands. Use new modifiers.
22945 (lshr<mode>3_reg): Fix rtl description.
22946
22947 Make sure mulhisi immediate operands are valid.
22948 * config/spu/predicates.md (imm_K_operand): Add.
22949 * config/spu/spu.md (mulhisi3_imm, umulhisi3_imm): Use imm_K_operand.
22950
22951 Generate constants using fsmbi and andi.
22952 * config/spu/spu.c (enum immediate_class): Add IC_FSMBI2.
22953 (print_operand, spu_split_immediate, classify_immediate,
22954 fsmbi_const_p): Handle IC_FSMBI2.
22955
22956 Correctly handle a CONST_VECTOR containing symbols.
22957 * config/spu/spu.c (print_operand): Handle HIGH correctly.
22958 (spu_split_immediate): Split CONST_VECTORs with -mlarge-mem.
22959 (immediate_load_p): Allow symbols that use 2 instructions to create.
22960 (classify_immediate, spu_builtin_splats): Don't accept a CONST_VECTOR
22961 with symbols when flag_pic is set.
22962 (const_vector_immediate_p): New.
22963 (logical_immediate_p, iohl_immediate_p, arith_immediate_p): Don't
22964 accept a CONST_VECTOR with symbols.
22965 (spu_legitimate_constant_p): Use const_vector_immediate_p. Don't
22966 accept a CONST_VECTOR with symbols when flag_pic is set. Handle HIGH
22967 correctly.
22968 * config/spu/spu.md (high, low): Delete.
22969 (low_<mode>): Define.
22970
22971 Remove INTRmode and INTR_REGNUM, which didn't work.
22972 * config/spu/spu.c (spu_conditional_register_usage): Remove reference
22973 of INTR_REGNUM.
22974 * config/spu/spu-builtins.md (spu_idisable, spu_ienable, set_intr,
22975 set_intr_pic, set_intr_cc, set_intr_cc_pic, set_intr_return, unnamed
22976 peephole2 pattern): Don't use INTR or 131.
22977 (movintrcc): Delete.
22978 * config/spu/spu.h (FIRST_PSEUDO_REGISTER, FIXED_REGISTERS,
22979 CALL_USED_REGISTERS, REGISTER_NAMES, INTR_REGNUM): Remove INTR_REGNUM.
22980 * config/spu/spu.md (UNSPEC_IDISABLE, UNSPEC_IENABLE): Remove.
22981 (UNSPEC_SET_INTR): Add.
22982 * config/spu/spu-modes.def (INTR): Remove.
22983
22984 More accurate warnings about run-time relocations.
22985 * config/spu/spu.c (reloc_diagnostic): Test in_section.
22986
22987 Correctly warn about immediate arguments to specific intrinsics.
22988 * config/spu/spu.c (spu_check_builtin_parm): Handle CONST_VECTORs.
22989 (spu_expand_builtin_1): Call spu_check_builtin_parm before checking
22990 the instruction predicate.
22991
22992 Fix tree check errors with latest update.
22993 * config/spu/spu.c (expand_builtin_args, spu_expand_builtin_1): Use
22994 CALL_EXPR_ARG.
22995 (spu_expand_builtin): Use CALL_EXPR_FN.
22996
22997 Add missing specific intrinsics.
22998 * config/spu/spu-builtins.def: Add si_bisled, si_bisledd and
22999 si_bislede.
23000 * config/spu/spu_internals.h: Ditto.
23001
23002 Fix incorrect operand modifiers.
23003 * config/spu/spu-builtins.md (spu_mpy, spu_mpyu): Remove use of %H.
23004 * config/spu/spu.md (xor<mode>3): Change %S to %J.
23005
23006 Optimize one case of zero_extend of a vec_select.
23007 * config/spu/spu.md (_vec_extractv8hi_ze): Add.
23008
23009 Accept any immediate for hbr.
23010 * config/spu/spu.md (hbr): Change s constraints to i.
23011
23012 2007-02-21 Paul Brook <paul@codesourcery.com>
23013
23014 * config/arm/arm.c (thumb2_final_prescan_insn): Don't incrememnt
23015 condexec_count when skipping USE and CLOBBER.
23016
23017 2007-02-21 Nick Clifton <nickc@redhat.com>
23018
23019 * common.opt (Warray-bounds): Add Warning attribute.
23020 (Wstrict-overflow, Wstrict-overflow=, Wcoverage-mismatch):
23021 Likewise.
23022 (fsized-zeroes): Add Optimization attribute.
23023 (fsplit-wide-types, ftree-scev-cprop): Likewise.
23024 * c.opt (Wc++0x-compat): Add Warning attribute.
23025
23026 2007-02-21 Ulrich Weigand <uweigand@de.ibm.com>
23027
23028 PR middle-end/30761
23029 * reload1.c (eliminate_regs_in_insn): In the single_set special
23030 case, attempt to re-recognize the insn before falling back to
23031 having reload fix it up.
23032
23033 2007-02-20 Eric Christopher <echristo@gmail.com>
23034
23035 * config/frv/frv.c (frv_read_argument): Take a tree and int argument.
23036 Rewrite accordingly.
23037 (frv_read_iacc_argument): Ditto.
23038 (frv_expand_set_builtin): Take a call instead of arglist, update for
23039 above changes.
23040 (frv_expand_unop_builtin): Ditto.
23041 (frv_expand_binop_builtin): Ditto.
23042 (frv_expand_cut_builtin): Ditto.
23043 (frv_expand_binopimm_builtin): Ditto.
23044 (frv_expand_voidbinop_builtin): Ditto.
23045 (frv_expand_int_void2arg): Ditto.
23046 (frv_expand_prefetches): Ditto.
23047 (frv_expand_voidtriop_builtin): Ditto.
23048 (frv_expand_voidaccop_builtin): Ditto.
23049 (frv_expand_load_builtin): Ditto.
23050 (frv_expand_store_builtin): Ditto.
23051 (frv_expand_mdpackh_builtin): Ditto.
23052 (frv_expand_mclracc_builtin): Ditto.
23053 (frv_expand_mrdacc_builtin): Ditto.
23054 (frv_expand_mwtacc_builtin): Ditto.
23055 (frv_expand_builtin): Remove usage of CALL_EXPR_ARGS, update
23056 calls for above.
23057
23058 2007-02-20 Janis Johnson <janis187@us.ibm.com>
23059
23060 * doc/invoke.texi (RS/6000 and PowerPC Options): Add -mcmpb and -mdfp.
23061 * configure.ac (HAVE_GAS_CMPB): Check for assembler support of the
23062 cmpb instruction.
23063 (HAVE_GAS_DFP): Check for assembler support of decimal floating
23064 point instructions.
23065 * configure: Regenerate.
23066 * config.in: Regenerate.
23067 * config/rs6000/rs6000.opt (mcmpb, mdfp): New.
23068 * config/rs6000/rs6000.c (rs6000_override_options): Add CMPB and DFP
23069 masks to power6 and power6x and to POWERPC_MASKS.
23070 * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Define
23071 _ARCH_PWR6.
23072 * config/rs6000/rs6000.h: Check assembler support for CMPB and DFP.
23073 * config/rs6000/sysv4.opt (mprototype): Use variable, not mask.
23074 * config/rs6000/linux64.h (SUBSUBTARGET_OVERRIDE_OPTIONS):
23075 Access PROTOTYPE as variable, not mask.
23076
23077 2007-02-20 Steven Bosscher <steven@gcc.gnu.org>
23078
23079 * rtl.h (remove_reg_equal_equiv_notes): New prototype.
23080 * rtlanal.c (remove_reg_equal_equiv_notes): New function.
23081 * combine.c (adjust_for_new_dest): Use it.
23082 * postreload.c (reload_combine): Likewise.
23083
23084 2007-02-20 Steven Bosscher <steven@gcc.gnu.org>
23085
23086 * rtlanal.c (find_reg_equal_equiv_note): Do not find REG_EQ*
23087 notes on an insn with multiple sets, even if single_set returns
23088 non-NULL for that insn.
23089
23090 2007-02-20 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
23091
23092 * fold-const.c (tree_expr_nonnegative_warnv_p): Handle scalb,
23093 scalbn and scalbln.
23094
23095 2007-02-20 Geoffrey Keating <geoffk@apple.com>
23096
23097 * config/darwin.h (LINK_SPEC): Default -mmacosx-version-min only
23098 if user didn't pass it.
23099 * config/i386/darwin.h (CC1_SPEC): Likewise.
23100 * config/rs6000/darwin.h (CC1_SPEC): Likewise.
23101 (DARWIN_MINVERSION_SPEC): Don't depend on user's setting of
23102 -mmacosx-version-min.
23103
23104 2007-02-20 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
23105 Uros Bizjak <ubizjak@gmail.com>
23106
23107 * optabs.h (enum optab_index): Add new OTI_scalb.
23108 (scalb_optab): Define corresponding macro.
23109 * optabs.c (init_optabs): Initialize scalb_optab.
23110 * genopinit.c (optabs): Implement scalb_optab using scalb?f3
23111 patterns.
23112 * builtins.c (expand_builtin_mathfn_2, expand_builtin): Handle
23113 BUILT_IN_SCALB{,F,L}, BUILT_IN_SCALBN{,F,L} and BUILT_IN_SCALBLN{,F,L}.
23114 (expand_builtin): Expand BUILT_IN_SCALB{,F,L}, BUILT_IN_SCALBN{,F,L}
23115 and BUILT_IN_SCALBLN{,F,L} using expand_builtin_mathfn_2 if
23116 flag_unsafe_math_optimizations is set.
23117
23118 * config/i386/i386.md (scalbxf3, scalb<mode>3): New expanders
23119 to implement scalbf, scalb and scalbl built-ins as inline x87
23120 intrinsics.
23121
23122 2007-02-20 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
23123 DJ Delorie <dj@redhat.com>
23124
23125 PR other/30824
23126 * diagnostic.c (diagnostic_count_diagnostic): Move -Werror logic to...
23127 (diagnostic_report_diagnostic): ... here, and turn them into real
23128 errors. If warnings are inhibited, no need to do anything.
23129
23130 2007-02-20 Uros Bizjak <ubizjak@gmail.com>
23131
23132 * config/i386/i386.md (expm1xf2): Reorder insn sequence for
23133 better code generation.
23134
23135 2007-02-20 Ben Elliston <bje@au.ibm.com>
23136
23137 * config/m68hc11/m68hc11.h (OVERRIDE_OPTIONS): Remove extra ;.
23138
23139 2007-02-20 Kazu Hirata <kazu@codesourcery.com>
23140
23141 * config/alpha/alpha.c, config/alpha/alpha.md,
23142 config/alpha/lib1funcs.asm, config/alpha/vms-crt0-64.c,
23143 config/alpha/vms-psxcrt0-64.c, config/arc/arc.c,
23144 config/arc/arc.h, config/arm/arm.c, config/arm/arm.md,
23145 config/arm/lib1funcs.asm: Follow spelling conventions.
23146
23147 * config/c4x/c4x.md, config/cris/cris.c, config/crx/crx.c,
23148 config/fr30/fr30.md, config/i386/i386.h,
23149 config/iq2000/iq2000.h, config/iq2000/predicates.md,
23150 config/pa/milli64.S, config/pa/pa.c, config/pa/pa.h,
23151 config/pa/pa.md, config/pa/pa32-regs.h, config/pa/pa64-regs.h,
23152 config/pdp11/pdp11.c, config/pdp11/pdp11.h,
23153 config/rs6000/altivec.md, config/rs6000/rs6000.c,
23154 config/s390/s390-modes.def, config/sparc/netbsd-elf.h,
23155 config/sparc/sparc.c, config/sparc/sparc.h,
23156 config/sparc/sparc.md, config/spu/constraints.md,
23157 config/spu/spu.c, config/stormy16/stormy16.md: Follow spelling
23158 conventions.
23159
23160 2007-02-20 Alan Modra <amodra@bigpond.net.au>
23161
23162 PR target/29943
23163 * varasm.c (use_blocks_for_decl_p): Return false for decls with
23164 alias attribute.
23165
23166 2007-02-19 Kazu Hirata <kazu@codesourcery.com>
23167
23168 * doc/invoke.texi (-ftree-lrs): Remove.
23169
23170 2007-02-19 Diego Novillo <dnovillo@redhat.com>
23171
23172 * tree-ssa-pre.c (create_value_expr_from): Initialize POOL to
23173 NULL.
23174
23175 2007-02-19 Lee Millward <lee.millward@codesourcery.com>
23176
23177 * config/ia64/ia64.c (ia64_expand_builtin): Use the
23178 new CALL_EXPR_FN macro for retrieving the function
23179 declaration of the input expression.
23180
23181 2007-02-19 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
23182
23183 * c.opt (Waddress): New.
23184 * common.opt (Walways-true): Delete.
23185 (Wstring-literal-comparison): Delete.
23186 * doc/invoke.texi (Warning Options): Delete -Walways-true and
23187 -Wstring-literal-comparison. Add -Waddress.
23188 (Waddress): New.
23189 (Walways-true): Delete.
23190 (Wstring-literal-comparison): Delete.
23191 * doc/extend.texi (#pragma GCC diagnostic): Use -Wformat
23192 consistently instead of -Walways-true in example.
23193 * c-opts.c (c_common_handle_option): -Waddress is enabled by -Wall.
23194 * c-typeck.c (parser_build_binary_op): Replace
23195 -Wstring-literal-comparison and -Walways-true with -Waddress.
23196 * c-common.c (c_common_truthvalue_conversion): Replace -Walways-true
23197 with -Waddress.
23198
23199 2007-02-19 Eric Botcazou <ebotcazou@adacore.com>
23200
23201 * tree-cfg.c (dump_function_to_file): Be prepared for functions
23202 without DECL_STRUCT_FUNCTION initialized.
23203
23204 2007-02-19 Eric Botcazou <ebotcazou@adacore.com>
23205
23206 * gimplify.c (gimplify_init_ctor_preeval_1): Detect potential overlap
23207 due to calls to functions taking pointers as parameters.
23208
23209 2007-02-19 Richard Henderson <rth@redhat.com>
23210
23211 PR debug/29558
23212 * var-tracking.c (track_expr_p): Disallow AGGREGATE_TYPE_P
23213 in memory.
23214
23215 2007-02-19 Andreas Krebbel <krebbel1@de.ibm.com>
23216
23217 * config/s390/s390.c (s390_call_saved_register_used,
23218 s390_function_ok_for_sibcall): Adjust the way CALL_EXPR arguments are
23219 accessed to the new scheme.
23220
23221 2007-02-19 Jan-Benedict Glaw <jbglaw@lug-owl.de>
23222
23223 * config/cris/cris.c (cris_movem_load_rest_p, cris_store_multiple_op_p)
23224 (cris_print_index, cris_print_operand, cris_print_operand_address)
23225 (cris_reload_address_legitimized, cris_rtx_costs, cris_address_cost)
23226 (cris_side_effect_mode_ok, cris_valid_pic_const, cris_split_movdx)
23227 (cris_expand_pic_call_address): Use xxx_P predicate macros instead of
23228 GET_CODE () == xxx.
23229 * config/cris/cris.h (SECONDARY_RELOAD_CLASS, EXTRA_CONSTRAINT_Q,
23230 EXTRA_CONSTRAINT_T, BDAP_INDEX_P, BIAP_INDEX_P, SIMPLE_ADDRESS_P,
23231 GO_IF_LEGITIMATE_ADDRESS): Ditto.
23232 * config/cris/cris.md (define_insns: *btst, movdi, *mov_side<mode>)
23233 (*mov_sidesisf, *mov_side<mode>_mem, *mov_sidesisf_mem)
23234 (*clear_side<mode>, movsi, *movsi_internal, *ext_sideqihi)
23235 (*ext_side<mode>si, *op_side<mode>, *op_swap_side<mode>, addsi3)
23236 (*extopqihi_side, *extop<mode>si_side, *extopqihi_swap_side)
23237 (*extop<mode>si_swap_side, addi_mul, *addi,andsi3, andhi3, ashl<mode>3)
23238 (uminsi3, call, call_value): Ditto.
23239 (define_split: indir_to_reg_split, unnamed): Ditto.
23240
23241 2007-02-19 Dorit Nuzman <dorit@il.ibm.com>
23242
23243 PR tree-optimization/30975
23244 * tree-vect-trasnform.c (vect_get_vec_def_for_stmt_copy): Remove
23245 wrong assert.
23246
23247 2007-02-18 Eric Christopher <echristo@gmail.com>
23248
23249 * mips.c (mips_prepare_builtin_arg): Add argnum parameter.
23250 Remove use of arglist.
23251 (mips_expand_builtin): Remove use of arglist, pass in expr.
23252 (mips_expand_builtin_direct): Rewrite handling for arglist removal.
23253 (mips_expand_builtin_movtf): Ditto.
23254 (mips_expand_builtin_compare): Ditto.
23255
23256 2007-02-19 Alexandre Oliva <aoliva@redhat.com>
23257
23258 * tree-sra.c (sra_build_assignment): Replace assertion
23259 checking with a comment explaining why it can't be done.
23260
23261 2007-02-18 Sandra Loosemore <sandra@codesourcery.com>
23262
23263 PR middle-end/30833
23264 * tree-dump.c (dequeue_and_dump): Add tcc_vl_exp case missed
23265 during CALL_EXPR representation conversion.
23266 * tree-ssa-propagate.c (set_rhs): Likewise.
23267
23268 2007-02-19 Alexandre Oliva <aoliva@redhat.com>
23269
23270 * tree-sra.c (sra_build_assignment): Disable assertion checking
23271 for now.
23272
23273 2007-02-18 Roger Sayle <roger@eyesopen.com>
23274
23275 * function.c (gimplify_parameters): Call build_gimple_modify_stmt
23276 instead of calling build2 with a GIMPLE_MODIFY_STMT.
23277 * gimple-low.c (lower_function_body, lower_builtin_setjmp):
23278 Likewise.
23279 * gimplify.c (build_stack_save_restore, gimplify_return_expr,
23280 gimplify_decl_expr, gimplify_self_mod_expr, gimplify_cond_expr,
23281 gimplify_init_ctor_eval_range, gimple_push_cleanup,
23282 gimplify_omp_for, gimplify_omp_atomic_pipeline,
23283 gimplify_omp_atomic_mutex, gimplify_expr, gimplify_one_sizepos,
23284 force_gimple_operand): Likewise.
23285 * ipa-cp.c (constant_val_insert): Likewise.
23286 * lambda-code.c (lbv_to_gcc_expression, lle_to_gcc_expression,
23287 lambda_loopnest_to_gcc_loopnest, replace_uses_equiv_to_x_with_y,
23288 perfect_nestify): Likewise.
23289 * langhooks.c (lhd_omp_assignment): Likewise.
23290 * omp-low.c (lower_rec_input_clauses, lower_reduction_clauses,
23291 lower_copyprivate_clauses, lower_send_clauses,
23292 lower_send_shared_vars, expand_parallel_call,
23293 expand_omp_for_generic, expand_omp_for_static_nochunk,
23294 expand_omp_for_static_chunk, expand_omp_sections,
23295 lower_omp_single_copy, lower_omp_for_lastprivate,
23296 lower_omp_parallel, init_tmp_var, save_tmp_var): Likewise.
23297 * value-prof.c (tree_divmod_fixed_value, tree_mod_pow2,
23298 tree_mod_subtract, tree_ic, tree_stringop_fixed_value):
23299 Likewise.
23300
23301 2007-02-19 Kazu Hirata <kazu@codesourcery.com>
23302
23303 * config/sh/divtab.c, config/sh/sh.c, config/sh/sh.h,
23304 config/sh/sh.md: Follow spelling conventions.
23305
23306 * config/frv/frv.c, config/frv/frv.h, config/frv/frv.md,
23307 config/frv/predicates.md: Follow spelling conventions.
23308
23309 * config/m68k/linux-unwind.h: Fix a comment typo.
23310 * target.h: Follow spelling conventions.
23311
23312 2007-02-18 Roger Sayle <roger@eyesopen.com>
23313
23314 PR rtl-optimization/28173
23315 * simplify-rtx.c (simplify_binary_operation_1) <IOR>: Optimize
23316 (X & C1) | C2 as C2 when (C1 & C2) == C1 and X has no side-effects.
23317 Optimize (X & C1) | C2 as X | C2 when (C1 | C2) == ~0.
23318 Canonicalize (X & C1) | C2 as (X & (C1 & ~C2)) | C2.
23319 <AND>: Canonicalize (X | C1) & C2 as (X & C2) | (C1 & C2).
23320
23321 2007-02-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
23322
23323 * builtins.c (fold_builtin_load_exponent): New.
23324 (fold_builtin_2): Use it.
23325
23326 2007-02-18 Steven Bosscher <steven@gcc.gnu.org>
23327
23328 PR rtl-optimization/30773
23329 * local-alloc.c (update_equiv_regs): Do not set reg_equiv_init
23330 if we fail to attach a REG_EQUIV note.
23331
23332 2007-02-18 David Edelsohn <edelsohn@gnu.org>
23333 Roger Sayle <roger@eyesopen.com>
23334
23335 * config/rs6000/rs6000.md (bswapsi2): New define_insn and splitter.
23336
23337 2007-02-18 Sandra Loosemore <sandra@codesourcery.com>
23338
23339 * calls.c (initialize_argument_information): Pass original EXP
23340 and STRUCT_VALUE_ADDR_VALUE instead of a list of arguments. Move
23341 code to split complex arguments here, as part of initializing the
23342 ARGS array.
23343 (expand_call): Remove code that builds a list of arguments and
23344 inserts implicit arguments into it. Instead, just count how many
23345 implicit arguments there will be so we can determine the size of
23346 the ARGS array, and let initialize_argument_information do the work.
23347 (split_complex_values): Delete unused function.
23348
23349 2007-02-18 Eric Botcazou <ebotcazou@adacore.com>
23350
23351 * tree-eh.c (tree_could_trap_p): Handle VIEW_CONVERT_EXPR.
23352
23353 2007-02-18 Eric Botcazou <ebotcazou@adacore.com>
23354
23355 * calls.c (mem_overlaps_already_clobbered_arg_p): Return true
23356 for arg pointer based indexed addressing.
23357
23358 2007-02-18 Kazu Hirata <kazu@codesourcery.com>
23359
23360 * config/ia64/ia64.h, config/ia64/ia64.md,
23361 config/ia64/predicates.md, config/ia64/sysv4.h: Follow
23362 spelling conventions.
23363
23364 2007-02-18 Roman Zippel <zippel@linux-m68k.org>
23365
23366 * config/m68k/m68k.c (split_di): New.
23367 * config/m68k/m68k-protos.h: Declare split_di.
23368 * config/m68k/m68k.md (extendsidi2*,ashldi3*,ashrdi3*,lshrdi3*):
23369 Improve predicate handling and split constant shifts.
23370
23371 2007-02-18 Roman Zippel <zippel@linux-m68k.org>
23372
23373 * config/m68k/m68k.md (extv,extzv,insv): disable dynamic
23374 parameter for register bitfield operations, general predicates
23375 cleanup
23376
23377 2007-02-18 Roman Zippel <zippel@linux-m68k.org>
23378
23379 * config/m68k/linux.h (MD_UNWIND_SUPPORT): Define.
23380 * config/m68k/linux-unwind.h: New file.
23381
23382 2007-02-18 Kazu Hirata <kazu@codesourcery.com>
23383
23384 * cfgloop.c, config/alpha/alpha.c, config/bfin/bfin.c,
23385 config/i386/athlon.md, config/ia64/ia64.md,
23386 config/rs6000/rs6000.c, config/s390/s390.c, config/spu/spu.md,
23387 df-problems.c, df.h, fold-const.c, ipa-cp.c, ipa-inline.c,
23388 ipa-prop.h, see.c, struct-equiv.c, tree-inline.c,
23389 tree-ssa-loop-niter.c, tree-vect-analyze.c,
23390 tree-vect-transform.c: Fix comment typos.
23391
23392 2007-02-17 Kazu Hirata <kazu@codesourcery.com>
23393
23394 * sched-deps.c (find_insn_list): Remove.
23395 * sched-int.h: Remove the prototype for find_insn_list.
23396
23397 2007-02-16 Geoffrey Keating <geoffk@apple.com>
23398
23399 * config/darwin.h (LINK_SPEC): Always pass -macosx_version_min
23400 to linker.
23401 (DARWIN_EXTRA_SPECS): Add %(darwin_minversion).
23402 * config/rs6000/darwin.h (SUBTARGET_OVERRIDE_OPTIONS): Just call
23403 darwin_rs6000_override_options.
23404 (C_COMMON_OVERRIDE_OPTIONS): Expect
23405 darwin_macosx_version_min to be non-NULL always.
23406 (TARGET_C99_FUNCTIONS): Likewise.
23407 (CC1_SPEC): Always pass -mmacosx-version-min to cc1*.
23408 (DARWIN_MINVERSION_SPEC): New.
23409 * config/rs6000/rs6000.c (darwin_rs6000_override_options): New.
23410 * config/i386/darwin.h (CC1_SPEC): Always pass -mmacosx-version-min
23411 to cc1*.
23412 (DARWIN_MINVERSION_SPEC): New.
23413 * config/darwin.opt (mmacosx-version-min): Initialize to non-NULL
23414 value.
23415 * config/darwin-c.c (darwin_cpp_builtins): Expect
23416 darwin_macosx_version_min to be non-NULL always.
23417
23418 * config/rs6000/rs6000.c: Clean up trailing whitespace.
23419
23420 2007-02-16 Uros Bizjak <ubizjak@gmail.com>
23421
23422 * config/i386/i386.h (x86_use_xchgb): New.
23423 (TARGET_USE_XCHGB): New macro.
23424 * config/i386/i386.c (x86_use_xchgb): Set for PENT4.
23425 * config/i386/i386.md (*rotlhi3_1 splitter, *rotrhi3_1 splitter):
23426 Split after reload into bswaphi for shifts of 8.
23427 (bswaphi_lowpart): Generate rolw insn for HImode byte swaps.
23428 (*bswaphi_lowpart_1): Generate xchgb for Q registers for TARGET_XCHGB
23429 or when optimizing for size.
23430
23431 2007-02-16 Richard Guenther <rguenther@suse.de>
23432 Christian Bruel <christian.bruel@st.com>
23433
23434 * fold-const.c (tree_swap_operands_p): Treat SSA_NAMEs like
23435 DECLs but prefer SSA_NAMEs over DECLs.
23436
23437 2007-02-16 Richard Guenther <rguenther@suse.de>
23438
23439 * tree-flow-inline.h (single_imm_use_p): Remove.
23440 (zero_imm_uses_p): Likewise.
23441 * tree-ssa-coalesce.c (create_outofssa_var_map): Use has_single_use
23442 instead of single_imm_use_p.
23443 * tree-cfg.c (replace_uses_by): Use has_zero_use instead of
23444 zero_imm_uses_p.
23445
23446 2007-02-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
23447
23448 PR other/27843
23449 * Makefile.in (SYSTEM_HEADER_DIR): Use single quotes to avoid
23450 nested double- and backquotes.
23451
23452 2007-02-15 Roger Sayle <roger@eyesopen.com>
23453
23454 PR middle-end/30391
23455 * tree.c (expr_align): Handle MODIFY_EXPR. GIMPLE_MODIFY_STMT
23456 should be unreachable.
23457 (build2_stat): Allow construction of MODIFY_EXPR at any time.
23458 For the time being redirect GIMPLE_MODIFY_STMT to the new
23459 (renamed) build_gimple_modify_stmt_stat.
23460 (build2_gimple_stat): Rename to...
23461 (build_gimple_modify_stmt_stat): Now longer take a CODE argument.
23462 Always build a GIMPLE_MODIFY_STMT node.
23463 * tree.h (build2_gimple, build2_gimple_stat): Delete.
23464 (build_gimple_modify_stmt, build_gimple_modify_stmt_stat): New
23465 declarations.
23466
23467 * tree-cfg.c (factor_computed_gotos, tree_merge_blocks,
23468 gimplify_val): Use build_gimple_modify_stmt instead of build2_gimple.
23469 * tree-complex.c (set_component_ssa_name, expand_complex_move,
23470 expand_complex_div_wide): Likewise.
23471 * tree-ssa-dom.c (record_equivalences_from_stmt): Likewise.
23472 * tree-ssa-loop-im.c (schedule_sm): Likewise.
23473 * tree-ssa-loop-ivopts.c (rewrite_use_nonlinear_expr): Likewise.
23474 * tree-ssa-loop-manip.c (create_iv): Likewise.
23475 * tree-ssa-phiopt.c (conditional_replacement, minmax_replacement,
23476 abs_replacement): Likewise.
23477 * tree-ssa-pre.c (create_expression_by_pieces, poolify_modify_stmt,
23478 realify_fake_stores): Likewise.
23479
23480 * builtins.c (std_expand_builtin_va_start): Build a MODIFY_EXPR
23481 node rather than a GIMPLE_MODIFY_STMT node.
23482 (std_gimpify_va_arg_expr, expand_builtin_va_copy,
23483 fold_builtin_memset, fold_builtin_memory_op, do_mpfr_sincos):
23484 Likewise.
23485 (integer_valued_real_p): Handle MODIFY_EXPR, not GIMPLE_MODIFY_STMT.
23486 * expr.c (expand_expr_real_1): Handle both MODIFY_EXPR and
23487 GIMPLE_MODIFY_STMT.
23488
23489 2007-02-15 Andrew Pinski <andrew_pinski@playstation.sony.com>
23490
23491 PR middle-end/30433
23492 * fold-const.c (fold_comparison): Add back the
23493 folding of constant complex comparisions.
23494
23495 2007-02-15 Andrew Pinski <andrew_pinski@playstation.sony.com>
23496
23497 PR middle-end/30729
23498 * stmt.c (warn_if_unused_value): VA_ARG_EXPR has side
23499 effects unknown to this function, return early.
23500
23501 2007-02-15 Ian Lance Taylor <iant@google.com>
23502
23503 * lower-subreg.c (move_eh_region_note): New static function.
23504 (resolve_simple_move): Call it.
23505 (decompose_multiword_subregs): Track blocks for which we resolve a
23506 simple move which is also a control flow insn. Pass them to
23507 find_many_sub_basic_blocks.
23508 (pass_lower_subreg): Add TODO_verify_flow.
23509 (pass_lower_subreg2): Likewise.
23510
23511 2007-02-15 Sandra Loosemore <sandra@codesourcery.com>
23512 Brooks Moses <brooks.moses@codesourcery.com>
23513 Lee Millward <lee.millward@codesourcery.com>
23514
23515 * tree.h (enum tree_code_class): Add tcc_vl_exp.
23516 (VL_EXP_CLASS_P): New.
23517 (TREE_OPERAND_CHECK): Use TREE_OPERAND_LENGTH instead of
23518 TREE_CODE_LENGTH.
23519 (TREE_OPERAND_CHECK_CODE): Likewise.
23520 (GIMPLE_STMT_OPERAND_CHECK): Likewise.
23521 (TREE_RTL_OPERAND_CHECK): Likewise.
23522 (tree_operand_check_failed): Make second parameter the whole tree
23523 instead of its code. Fixed callers.
23524 (VL_EXP_CHECK): New.
23525 (TREE_OPERAND_LENGTH): New.
23526 (VL_EXP_OPERAND_LENGTH): New.
23527 (CALL_EXPR_FN): New.
23528 (CALL_EXPR_STATIC_CHAIN): New.
23529 (CALL_EXPR_ARGS): New.
23530 (CALL_EXPR_ARG): New.
23531 (call_expr_nargs): New.
23532 (CALL_EXPR_ARGP): New.
23533 (build_nt_call_list): Declare.
23534 (build_vl_exp_stat): Declare.
23535 (build_vl_exp): New.
23536 (build_call_list): Declare.
23537 (build_call_nary): Declare.
23538 (build_call_valist): Declare.
23539 (build_call_array): Declare.
23540 (call_expr_arg): Declare.
23541 (call_expr_argp): Declare.
23542 (call_expr_arglist): Declare.
23543 (fold_build_call_list): Declare.
23544 (fold_build_call_list_initializer): Declare.
23545 (fold_call_expr): Declare to replace fold_builtin.
23546 (fold_builtin_fputs): Update to agree with modified definition.
23547 (fold_builtin_strcpy): Likewise.
23548 (fold_builtin_strncpy): Likewise.
23549 (fold_builtin_memory_chk): Likewise.
23550 (fold_builtin_stxcpy_chk): Likewise.
23551 (fold_builtin_strncpy_chk): Likewise.
23552 (fold_builtin_next_arg): Likewise.
23553 (fold_build_call_expr): Declare.
23554 (fold_builtin_call_list): Declare.
23555 (fold_builtin_call_valist): Declare.
23556 (build_call_expr): Declare.
23557 (validate_arglist): Update to agree with modified definition.
23558 (tree_operand_length): New.
23559 (call_expr_arg_iterator): New.
23560 (init_call_expr_arg_iterator): New.
23561 (next_call_expr_arg): New.
23562 (first_call_expr_arg): New.
23563 (more_call_expr_args_p): New.
23564 (FOR_EACH_CALL_EXPR_ARG): New.
23565
23566 * tree.c (tree_code_class_string): Add entries for tcc_vl_exp
23567 and tcc_gimple_stmt.
23568 (tree_code_size): Update documentation. Use sizeof (tree) rather
23569 than sizeof (char *).
23570 (tree_size): Likewise. Add case for tcc_vl_exp.
23571 (tree_node_structure): Add case for tcc_vl_exp.
23572 (contains_placeholder_p): Likewise.
23573 (substitute_in_expr): Likewise.
23574 (substitute_placeholder_in_expr): Likewise.
23575 (stabilize_reference_1): Likewise.
23576 (build3_stat): Remove logic for CALL_EXPRs. Replace with assertion
23577 to diagnose breakage of this interface for constructing CALL_EXPRs.
23578 (build_nt): Add similar assertion here.
23579 (build_nt_call_list): New.
23580 (simple_cst_equal) <CALL_EXPR>: Rewrite to use new accessors.
23581 (iterative_hash_expr): Use TREE_OPERAND_LENGTH instead of
23582 TREE_CODE_LENGTH.
23583 (get_callee_fndecl): Use new CALL_EXPR accessors.
23584 (tree_operand_check_failed): Change parameters to pass entire node
23585 instead of its code, so that we can call TREE_OPERAND_LENGTH on it.
23586 (process_call_operands): New.
23587 (build_vl_exp_stat): New.
23588 (build_call_list): New.
23589 (build_call_nary): New.
23590 (build_call_valist): New.
23591 (build_call_array): New.
23592 (walk_tree): Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH.
23593 (call_expr_arglist): New.
23594
23595 * tree.def (CALL_EXPR): Change representation of CALL_EXPRs to use
23596 tcc_vl_exp instead of a fixed-size tcc_expression.
23597
23598 * doc/c-tree.texi (CALL_EXPR): Document new representation and
23599 accessors for CALL_EXPRs.
23600 (AGGR_INIT_EXPR): Likewise.
23601
23602 2007-02-15 Sandra Loosemore <sandra@codesourcery.com>
23603 Brooks Moses <brooks.moses@codesourcery.com>
23604 Lee Millward <lee.millward@codesourcery.com>
23605
23606 * builtins.c (c_strlen): Return NULL_TREE instead of 0.
23607 (expand_builtin_nonlocal_goto): Change parameter to be entire
23608 CALL_EXPR instead of an arglist. Use new CALL_EXPR accessors.
23609 (expand_builtin_prefetch): Likewise.
23610 (expand_builtin_classify_type): Likewise.
23611 (mathfn_built_in): Return NULL_TREE instead of 0.
23612 (expand_errno_check): Use new CALL_EXPR accessors.
23613 (expand_builtin_mathfn): Use new CALL_EXPR accessors and constructors.
23614 Return NULL_RTX instead of 0.
23615 (expand_builtin_mathfn_2): Likewise.
23616 (expand_builtin_mathfn_3): Likewise.
23617 (expand_builtin_interclass_mathfn): Likewise.
23618 (expand_builtin_sincos): Likewise.
23619 (expand_builtin_cexpi): Likewise.
23620 (expand_builtin_int_roundingfn): Likewise.
23621 (expand_builtin_int_roundingfn_2): Likewise.
23622 (expand_builtin_pow): Likewise.
23623 (expand_builtin_powi): Likewise.
23624 (expand_builtin_strlen): Pass entire CALL_EXPR as parameter instead
23625 of arglist, fixing callers appropriately. Use new CALL_EXPR
23626 accessors and constructors. Return NULL_RTX instead of 0.
23627 (expand_builtin_strstr): Likewise.
23628 (expand_builtin_strchr): Likewise.
23629 (expand_builtin_strrchr): Likewise.
23630 (expand_builtin_strpbrk): Likewise.
23631 (expand_builtin_memcpy): Likewise.
23632 (expand_builtin_mempcpy): Likewise.
23633 (expand_builtin_mempcpy_args): New.
23634 (expand_builtin_memmove): Similarly to expand_builtin_mempcpy.
23635 (expand_builtin_memmove_args): New.
23636 (expand_builtin_bcopy): Similarly to expand_builtin_mempcpy.
23637 (expand_movstr): Likewise.
23638 (expand_builtin_strcpy): Likewise.
23639 (expand_builtin_strcpy_args): New.
23640 (expand_builtin_stpcpy): Similarly to expand_builtin_strcpy.
23641 (expand_builtin_strncpy): Likewise.
23642 (expand_builtin_memset): Likewise.
23643 (expand_builtin_memset_args): New.
23644 (expand_builtin_bzero): Similarly to expand_builtin_memset.
23645 (expand_builtin_memcmp): Likewise.
23646 (expand_builtin_strcmp): Likewise.
23647 (expand_builtin_strncmp): Likewise.
23648 (expand_builtin_strcat): Likewise.
23649 (expand_builtin_strncat): Likewise.
23650 (expand_builtin_strspn): Likewise.
23651 (expand_builtin_strcspn): Likewise.
23652 (expand_builtin_args_info): Likewise.
23653 (expand_builtin_va_start): Likewise.
23654 (gimplify_va_arg_expr): Likewise.
23655 (expand_builtin_va_end): Likewise.
23656 (expand_builtin_va_copy): Likewise.
23657 (expand_builtin_frame_address): Likewise.
23658 (expand_builtin_alloca): Likewise.
23659 (expand_builtin_bswap): Likewise.
23660 (expand_builtin_unop): Likewise.
23661 (expand_builtin_fputs): Likewise.
23662 (expand_builtin_expect): Likewise.
23663 (expand_builtin_fabs): Likewise.
23664 (expand_builtin_copysign): Likewise.
23665 (expand_builtin_printf): Likewise.
23666 (expand_builtin_fprintf): Likewise.
23667 (expand_builtin_sprintf): Likewise.
23668 (expand_builtin_init_trampoline): Likewise.
23669 (expand_builtin_signbit): Likewise.
23670 (expand_builtin_fork_or_exec): Likewise.
23671 (expand_builtin_sync_operation): Likewise.
23672 (expand_builtin_compare_and_swap): Likewise.
23673 (expand_builtin_lock_test_and_set): Likewise.
23674 (expand_builtin_lock_release): Likewise.
23675 (expand_builtin): Likewise.
23676 (builtin_mathfn_code): Likewise.
23677
23678 (fold_builtin_constant_p): Pass call arguments individually instead
23679 of as an arglist, fixing callers appropriately. Use new CALL_EXPR
23680 accessors and constructors. Return NULL_TREE instead of 0.
23681 (fold_builtin_expect): Likewise.
23682 (fold_builtin_classify_type): Likewise.
23683 (fold_builtin_strlen): Likewise.
23684 (fold_builtin_nan): Likewise.
23685 (integer_valued_real_p): Likewise.
23686 (fold_trunc_transparent_mathfn): Likewise.
23687 (fold_fixed_mathfn): Likewise.
23688 (fold_builtin_cabs): Likewise.
23689 (fold_builtin_sqrt): Likewise.
23690 (fold_builtin_cbrt): Likewise.
23691 (fold_builtin_cos): Likewise.
23692 (fold_builtin_cosh): Likewise.
23693 (fold_builtin_tan): Likewise.
23694 (fold_builtin_sincos): Likewise.
23695 (fold_builtin_cexp): Likewise.
23696 (fold_builtin_trunc): Likewise.
23697 (fold_builtin_floor): Likewise.
23698 (fold_builtin_ceil): Likewise.
23699 (fold_builtin_round): Likewise.
23700 (fold_builtin_int_roundingfn): Likewise.
23701 (fold_builtin_bitop): Likewise.
23702 (fold_builtin_bswap): Likewise.
23703 (fold_builtin_logarithm): Likewise.
23704 (fold_builtin_hypot): Likewise.
23705 (fold_builtin_pow): Likewise.
23706 (fold_builtin_powi): Likewise.
23707 (fold_builtin_exponent): Likewise.
23708 (fold_builtin_memset): Likewise.
23709 (fold_builtin_bzero): Likewise.
23710 (fold_builtin_memory_op): Likewise.
23711 (fold_builtin_bcopy): Deleted; call site changed to invoke
23712 fold_builtin_memory_op directly.
23713 (fold_builtin_strcpy): Similarly as for fold_builtin_memory_op.
23714 (fold_builtin_strncpy): Likewise.
23715 (fold_builtin_memcmp): Likewise.
23716 (fold_builtin_strcmp): Likewise.
23717 (fold_builtin_strncmp): Likewise.
23718 (fold_builtin_signbit): Likewise.
23719 (fold_builtin_copysign): Likewise.
23720 (fold_builtin_isascii): Likewise.
23721 (fold_builtin_toascii): Likewise.
23722 (fold_builtin_isdigit): Likewise.
23723 (fold_builtin_fabs): Likewise.
23724 (fold_builtin_abs): Likewise.
23725 (fold_builtin_fmin_fmax): Likewise.
23726 (fold_builtin_carg): Likewise.
23727 (fold_builtin_classify): Likewise.
23728 (fold_builtin_unordered_cmp): Likewise.
23729
23730 (fold_builtin_0, fold_builtin_2, fold_builtin_3, fold_builtin_4):
23731 New functions split out from fold_builtin_1.
23732 (fold_builtin_n): New.
23733 (fold_builtin_varargs): New.
23734 (fold_builtin): Deleted. Most callers changed to use fold_call_expr
23735 instead.
23736 (fold_call_expr): New.
23737 (build_function_call_expr): Rewrite to use new helper function.
23738 (fold_builtin_call_list): New.
23739 (build_call_expr): New.
23740 (fold_builtin_call_valist): New.
23741 (rewrite_call_expr): New.
23742 (validate_arg): New.
23743 (validate_arglist): Change parameter to be entire CALL_EXPR instead
23744 of an arglist. Change return type to bool. Use new CALL_EXPR
23745 accessors.
23746
23747 (fold_builtin_strstr): Pass call arguments individually instead
23748 of as an arglist, fixing callers appropriately. Use new CALL_EXPR
23749 accessors and constructors. Return NULL_TREE instead of 0.
23750 (fold_builtin_strchr): Likewise.
23751 (fold_builtin_strrchr): Likewise.
23752 (fold_builtin_strpbrk): Likewise.
23753 (fold_builtin_strcat): Likewise.
23754 (fold_builtin_strncat): Likewise.
23755 (fold_builtin_strspn): Likewise.
23756 (fold_builtin_strcspn): Likewise.
23757 (fold_builtin_fputs): Likewise.
23758 (fold_builtin_next_arg): Likewise.
23759 (fold_builtin_sprintf): Likewise.
23760
23761 (expand_builtin_object_size): Use new CALL_EXPR accessors. Use
23762 NULL_RTX instead of 0.
23763 (expand_builtin_memory_chk): Likewise.
23764 (maybe_emit_chk_warning): Likewise.
23765 (maybe_emit_sprintf_chk_warning): Likewise.
23766
23767 (fold_builtin_object_size): Pass call arguments individually instead
23768 of as an arglist, fixing callers appropriately. Use new CALL_EXPR
23769 accessors and constructors. Return NULL_TREE instead of 0.
23770 (fold_builtin_memory_chk): Likewise.
23771 (fold_builtin_stxcpy_chk): Likewise.
23772 (fold_builtin_strncpy_chk): Likewise.
23773 (fold_builtin_strcat_chk): Likewise.
23774 (fold_builtin_strcat_chk): Likewise.
23775 (fold_builtin_strncat_chk): Likewise.
23776 (fold_builtin_sprintf_chk): Likewise.
23777 (fold_builtin_snprintf_chk): Likewise.
23778 (fold_builtin_printf): Likewise.
23779 (fold_builtin_vprintf): Likewise.
23780
23781 * fold-const.c (negate_expr_p): Use new CALL_EXPR accessors and
23782 constructors.
23783 (operand_equal_p): Add separate tcc_vl_exp/CALL_EXPR case.
23784 (make_range): Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH.
23785 (extract_muldiv_1): Add VL_EXP_CLASS_P case.
23786 (fold_mathfn_compare): Use new CALL_EXPR accessors and constructors.
23787 (fold_unary): Likewise.
23788 (fold_binary): Likewise.
23789 (fold_ternary): Remove CALL_EXPR case, since they are no longer
23790 ternary expressions.
23791 (fold): Add logic for tcc_vl_exp.
23792 (fold_checksum_tree): Make it know about tcc_vl_exp. Use
23793 TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH.
23794 (fold_build3_stat): Add assertion to flag broken interface for
23795 constructing CALL_EXPRs.
23796 (fold_build_call_list): New.
23797 (fold_build_call_list_initializer): New.
23798 (tree_expr_nonnegative_p): Use new CALL_EXPR accessors and
23799 constructors.
23800 (fold_strip_sign_ops): Likewise.
23801
23802 2007-02-15 Sandra Loosemore <sandra@codesourcery.com>
23803 Brooks Moses <brooks.moses@codesourcery.com>
23804 Lee Millward <lee.millward@codesourcery.com>
23805
23806 * tree-dump.c (dequeue_and_dump) <CALL_EXPR>: Use new CALL_EXPR
23807 accessors and dump arguments explicitly.
23808
23809 * tree-pretty-print.c (do_niy): Use TREE_OPERAND_LENGTH instead of
23810 TREE_CODE_LENGTH.
23811 (dump_generic_node): Use new CALL_EXPR accessors and walk arguments
23812 explicitly.
23813 (print_call_name): Use new CALL_EXPR accessors.
23814
23815 * print-tree.c (print_node): Add case tcc_vl_exp. Print
23816 CALL_EXPR arguments explicitly instead of as a list. Use
23817 TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH.
23818
23819 * tree-vrp.c (stmt_interesting_for_vrp): Use new CALL_EXPR accessors.
23820 (vrp_visit_stmt): Likewise.
23821
23822 * tree-ssa-loop-im.c (outermost_invariant_loop_expr): Make it
23823 know about tcc_vl_exp. Use TREE_OPERAND_LENGTH instead of
23824 TREE_CODE_LENGTH.
23825 (force_move_till_expr): Likewise.
23826
23827 * targhooks.c (default_external_stack_protect_fail): Use
23828 build_call_expr instead of build_function_call_expr.
23829 (default_hidden_stack_protect_fail): Likewise.
23830
23831 * tree-complex.c (expand_complex_libcall): Use build_call_expr to
23832 build the call.
23833
23834 * cgraphbuild.c (build_cgraph_edges): Use new CALL_EXPR accessors
23835 and walk arguments explicitly.
23836
23837 * tree-ssa-loop-niter.c (simplify_replace_tree): Use
23838 TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH.
23839 (expand_simple_operations): Likewise.
23840 (infer_loop_bounds_from_array): Use new CALL_EXPR accessors.
23841
23842 * gengtype.c (adjust_field_tree_exp): Use TREE_OPERAND_LENGTH instead
23843 of TREE_CODE_LENGTH.
23844 (walk_type): Tweak walking of arrays not to blow up on CALL_EXPRs.
23845
23846 * optabs.c (expand_widen_pattern-expr): Use TREE_OPERAND_LENGTH
23847 instead of TREE_CODE_LENGTH.
23848
23849 * value_prof.c (tree_ic): Use new CALL_EXPR accessors.
23850 (tree_ic_transform): Likewise.
23851 (interesting_stringop_to_profile_p): Pass entire CALL_EXPR as
23852 parameter instead of arglist. Fix callers.
23853 (tree_stringop_fixed_value): Use new CALL_EXPR accessors.
23854 (tree_stringops_transform): Likewise.
23855 (tree_indirect_call_to_profile): Likewise.
23856 (tree_stringops_values_to_profile): Likewise.
23857
23858 * tree-tailcall.c (find_tail_calls): Use new CALL_EXPR iterator.
23859 (eliminate_tail_call): Likewise.
23860
23861 * ipa-cp.c (ipcp_update_callgraph): Use new CALL_EXPR accessors.
23862
23863 * tree-scalar-evolution.c (chrec_contains_symbols_defined_in_loop):
23864 Use TREE_OPERAND_LENGTH and generalize to handle any number of
23865 operands.
23866 (instantiate_parameters_1): Can't handle tcc_vl_exp here.
23867
23868 * omp-low.c (build_omp_barrier): Use build_call_expr.
23869 (lower_rec_input_clauses): Likewise.
23870 (lower_reduction_clauses): Likewise.
23871 (expand_parallel_call): Likewise.
23872 (maybe_catch_exception): Likewise.
23873 (expand_omp_for_generic): Likewise.
23874 (expand_omp_for_static_nochunk): Likewise.
23875 (expand_omp_sections): Likewise.
23876 (lower_omp_single_simple): Likewise.
23877 (lower_omp_single_copy): Likewise.
23878 (lower_omp_master): Likewise.
23879 (lower_omp_ordered): Likewise.
23880 (lower_omp_critical): Likewise.
23881
23882 * ipa-reference.c (check-call): Use new CALL_EXPR iterator.
23883 (scan_for_static_refs): Create tcc_vl_exp case for CALL_EXPR.
23884
23885 * tree-gimple.c (is_gimple_call_addr): Fix doc.
23886 (recalculate_side_effects): Use TREE_OPERAND_LENGTH instead of
23887 TREE_CODE_LENGTH. Add tcc_vl_exp case.
23888
23889 * tree-chrec.c (chrec_contains_symbols): Use TREE_OPERAND_LENGTH
23890 and generalize to handle any number of operands.
23891 (chrec_contains_undetermined): Likewise.
23892 (tree_contains_chrecs): Likewise.
23893 (evolution_function_is_invariant_rec_p): Use TREE_OPERAND_LENGTH.
23894
23895 * cgraphunit.c (update_call_expr): Use new CALL_EXPR accessors.
23896
23897 * tree-ssa-ccp.c (ccp_fold): Use new CALL_EXPR accessors. Use
23898 fold_call_expr instead of fold_builtin.
23899 (ccp_fold_builtin): Likewise. Update calls into builtins.c to
23900 match declarations there.
23901 (fold_stmt): Use new CALL_EXPR constructor and accessors. Doc
23902 updates.
23903
23904 * tree-ssa-loop-ivopts.c (expr_invariant_in_loop_p): Use
23905 TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH.
23906
23907 * ipa-pure-const.c (check_call): Use new CALL_EXPR accessors.
23908 (scan_function): Add case tcc_vl_exp for CALL_EXPR.
23909
23910 * tree-stdarg.c (execute_optimize_stdarg): Use new CALL_EXPR
23911 accessors.
23912
23913 * tree-ssa-math-opts.c (execute_cse_sincos_1): Use build_call_expr.
23914 (execute_cse_sincos): Use new CALL_EXPR accessors.
23915
23916 * tree-ssa-alias.c (find_used_portions): Use new CALL_EXPR iterator.
23917
23918 * gimple-low.c (lower_function_body): Use build_call_expr.
23919 (lower_builtin_setjmp): Likewise.
23920
23921 * expr.c (emit_block_move_via_libcall): Use build_call_expr.
23922 (set_storage_via_libcall): Likewise.
23923 (safe_from_p): Add tcc_vl_exp case. Use TREE_OPERAND_LENGTH
23924 instead of TREE_CODE_LENGTH.
23925 (expand_expr_real_1): Use new CALL_EXPR accessors.
23926
23927 * tree-browser.c (store_child_info): Use TREE_OPERAND_LENGTH and
23928 generalize to handle any number of operands.
23929 (TB_parent_eq): Likewise.
23930
23931 * predict.c (expr_expected_value): Use new CALL_EXPR accessors.
23932 (strip_builtin_expect): Likewise.
23933
23934 * function.c (gimplify_parameters): Use build_call_expr.
23935
23936 * tree-vectorizer.c (vect_is_simple_reduction): Use
23937 TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH.
23938
23939 * ipa-type-escape.c (check_call): Use new CALL_EXPR iterators.
23940 (scan_for_refs): Add case tcc_vl_exp for CALL_EXPR.
23941
23942 * tree-data-ref.c (get_references_in_stmt): Use new CALL_EXPR
23943 iterators.
23944
23945 * gimplify.c (build_stack_save_restore): Use build_call_expr.
23946 (gimplify_decl_expr): Likewise.
23947 (gimplify_call_expr): Use fold_call_expr instead of fold_builtin.
23948 Use new CALL_EXPR iterators.
23949 (gimplify_modify_expr_to_memcpy): Use build_call_expr.
23950 (gimplify_modify_expr_to_memset): Likewise.
23951 (gimplify_variable_sized_compare): Likewise.
23952 (gimplify_omp_atomic_fetch_op): Likewise.
23953 (gimplify_omp_atomic_pipeline): Likewise.
23954 (gimplify_omp_atomic_mutex): Likewise.
23955 (gimplify_function_tree): Likewise.
23956
23957 * calls.c (alloca_call_p): Use new CALL_EXPR accessors.
23958 (call_expr_flags): Likewise.
23959 (expand_call): Likewise.
23960
23961 * except.c (expand_builtin_eh_return_data_regno): Pass entire
23962 CALL_EXPR as parameter instead of arglist. Use new CALL_EXPR
23963 accessors.
23964
23965 * coverage.c (create_coverage): Use build_call_expr.
23966
23967 * tree-ssa-pre.c (expression_node_pool, list_node_pool): Delete.
23968 (temp_call_expr_obstack): New.
23969 (pool_copy_list): Delete.
23970 (temp_copy_call_expr): New.
23971 (phi_translate): Add case tcc_vl_exp for CALL_EXPR. Use new
23972 CALL_EXPR accessors. Get rid of special goo for copying argument
23973 lists and use temp_copy_call_expr instead.
23974 (valid_in_sets): Add case tcc_vl_exp for CALL_EXPR. Use new
23975 CALL_EXPR accessors.
23976 (create_expression_by_pieces): Likewise. Use build_call_array
23977 to construct the result instead of fold_build3.
23978 (create_value_expr_from): Add tcc_vl_exp. Delete special goo for
23979 dealing with argument lists.
23980 (init_pre): Remove references to expression_node_pool and
23981 list_node_pool. Init temp_call_expr_obstack instead.
23982 (fini_pre): Remove references to expression_node_pool and
23983 list_node_pool.
23984
23985 * tree-sra.c (sra_walk_call_expr): Use new CALL_EXPR accessors
23986 and walk arguments explicitly instead of as a list.
23987
23988 * tree-mudflap.c (mf_build_check_statement_for): Use build_call_expr.
23989 (mx_register_decls): Likewise.
23990 (mudflap_register_call): Likewise.
23991 (mudflap_finish_file): Likewise.
23992
23993 * ipa-prop.c (ipa_callsite_compute_count): Use new CALL_EXPR accessors.
23994 (ipa_callsite_compute_param): Likewise.
23995
23996 * tree-vect-patterns.c (vect_recog_pow_pattern): Use new CALL_EXPR
23997 accessors and constructor.
23998
23999 * tree-nested.c (convert_nl_goto_reference): Use new CALL_EXPR
24000 accessors and constructor.
24001 (convert_tramp_reference): Likewise.
24002 (convert_call_expr): Likewise.
24003 (finalize_nesting_tree_1): Likewise.
24004
24005 * tree-ssa.c (tree_ssa_useless_type_conversion): Use new CALL_EXPR
24006 accessors.
24007
24008 * tree-ssa-loop-prefetch.c (issue_prefetch_ref): Use build_call_expr.
24009
24010 * tree-inline.c (initialize_inlined_parameters): Pass entire
24011 CALL_EXPR as parameter instead of arglist. Use new CALL_EXPR
24012 accessors.
24013 (estimate_num_insns_1): Use new CALL_EXPR accessors.
24014 (expand_call_inline): Tidy up call to initialize_inlined_parameters.
24015
24016 * tree-vect-transform.c (vect_create_epilog_for_reduction): Use
24017 TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH.
24018 (vectorizable_reduction): Likewise.
24019 (vectorizable_call): Use new CALL_EXPR iterators.
24020 (vectorizable_conversion): Use build_call_expr.
24021 (vectorizable_operation): Use TREE_OPERAND_LENGTH.
24022 (vect_gen_widened_results_half): Use build_call_expr.
24023 (vect_setup_realignment): Likewise.
24024 (vectorizable_live_operation): Use TREE_OPERAND_LENGTH.
24025
24026 * tree-object-size.c (alloc_object_size): Use new CALL_EXPR accessors.
24027 (pass_through_call): Likewise.
24028 (compute_object_sizes): Likewise. Use fold_call_expr instead of
24029 fold_builtin.
24030
24031 * tree-profile.c (tree_gen_interval_profiler): Use build_call_expr.
24032 (tree_gen_pow2_profiler): Likewise.
24033 (tree_gen_one_value_profiler): Likewise.
24034 (tree_gen_ic_func_profiler): Likewise.
24035 (tree_gen_average_profiler): Likewise.
24036 (tree_gen_ior_profiler): Likewise.
24037
24038 * tree-ssa-structalias.c (get_constraint_for): Add case tcc_vl_exp.
24039 (find_func_aliases): Use new CALL_EXPR accessors. Add case
24040 tcc_vl_exp. Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH.
24041
24042 * tree-ssa-reassoc.c (get_rank): Use TREE_OPERAND_LENGTH instead
24043 of TREE_CODE_LENGTH.
24044
24045 * stmt.c (warn_if_unused_value): Use TREE_OPERAND_LENGTH instead
24046 of TREE_CODE_LENGTH.
24047
24048 * convert.c (convert_to_real): Use new CALL_EXPR accessors and
24049 constructor.
24050 (convert_to_integer): Likewise.
24051
24052 * tree-ssa-operands.c (get_call_expr_operands): Use new CALL_EXPR
24053 accessors.
24054
24055 2007-02-15 Sandra Loosemore <sandra@codesourcery.com>
24056 Brooks Moses <brooks.moses@codesourcery.com>
24057 Lee Millward <lee.millward@codesourcery.com>
24058
24059 * config/alpha/alpha.c (alpha_expand_builtin): Use new CALL_EXPR
24060 accessors.
24061 * config/frv/frv.c (frv_expand_builtin): Likewise.
24062 * config/s390/s390.c (s390_expand_builtin): Likewise.
24063
24064 * config/sparc/sparc.c (sparc_gimplify_va_arg): Use build_call_expr.
24065 (sparc_expand_builtin): Use new CALL_EXPR accessors.
24066
24067 * config/i386/i386.c (ix86_function_ok_for_sibcall): Likewise.
24068 (ix86_expand_binop_builtin): Pass entire CALL_EXPR as parameter
24069 instead of arglist. Use new CALL_EXPR accessors on it. Fix callers.
24070 (ix86_expand_store_builtin): Likewise.
24071 (ix86_expand_unop_builtin): Likewise.
24072 (ix86_expand_unop1_builtin): Likewise.
24073 (ix86_expand_sse_compare): Likewise.
24074 (ix86_expand_sse_comi): Likewise.
24075 (ix86_expand_vec_init_builtin): Likewise.
24076 (ix86_expand_vec_ext_builtin): Likewise.
24077 (ix86_expand_vec_set_builtin): Likewise.
24078 (ix86_expand_builtin): Use new CALL_EXPR accessors.
24079
24080 * config/sh/sh.c (sh_expand_builtin): Use new CALL_EXPR accessors.
24081 * config/c4x/c4x.c (c4x_expand_builtin): Likewise.
24082
24083 * config/iq2000/iq2000.c (expand_one_builtin): Pass entire CALL_EXPR
24084 instead of arglist. Use new CALL_EXPR accessors. Fix callers.
24085 (iq2000_expand_builtin): Use new CALL_EXPR accessors.
24086
24087 * config/rs6000/rs6000-c.c (altivec_build_resolved_builtin): Use
24088 build_call_expr.
24089 * config/rs6000/rs6000.c (rs6000_gimplify_va_arg): Likewise.
24090 (rs6000_expand_unop_builtin): Pass entire CALL_EXPR instead of
24091 arglist. Use new CALL_EXPR accessors. Fix callers.
24092 (altivec_expand_abs_builtin): Likewise.
24093 (rs6000_expand_binop_builtin): Likewise.
24094 (altivec_expand_predicate_builtin): Likewise.
24095 (altivec_expand_lv_builtin): Likewise.
24096 (spe_expand_stv_builtin): Likewise.
24097 (altivec_expand_stv_builtin): Likewise.
24098 (rs6000_expand_ternop_builtin): Likewise.
24099 (altivec_expand_ld_builtin): Use new CALL_EXPR accessors.
24100 (altivec_expand_st_builtin): Likewise.
24101 (altivec_expand_dst_builtin): Likewise.
24102 (altivec_expand_vec_init_builtin): Pass entire CALL_EXPR instead of
24103 arglist. Use new CALL_EXPR accessors. Fix callers.
24104 (altivec_expand_vec_set_builtin): Likewise.
24105 (altivec_expand_vec_ext_builtin): Likewise.
24106 (altivec_expand_builtin): Use new CALL_EXPR accessors.
24107 (spe_expand_builtin): Likewise.
24108 (spe_expand_predicate_builtin): Pass entire CALL_EXPR instead of
24109 arglist. Use new CALL_EXPR accessors. Fix callers.
24110 (spe_expand_evsel_builtin): Likewise.
24111 (rs6000_expand_builtin): Use new CALL_EXPR accessors. VCFUX and
24112 FCFSX cases must construct whole new CALL_EXPR, not just arglist.
24113
24114 * config/arm/arm.c (arm_expand_binop_builtin): Pass entire CALL_EXPR
24115 instead of arglist. Use new CALL_EXPR accessors. Fix callers.
24116 (arm_expand_unop_builtin): Likewise.
24117 (arm_expand_builtin): Use new CALL_EXPR accessors.
24118
24119 * config/mips/mips.c (mips_expand_builtin): Use new CALL_EXPR
24120 accessors.
24121
24122 * config/bfin/bfin.c (bfin_expand_binop_builtin): Pass entire
24123 CALL_EXPR instead of arglist. Use new CALL_EXPR accessors.
24124 Fix callers.
24125 (bfin_expand_unop_builtin): Likewise.
24126 (bfin_expand_builtin): Use new CALL_EXPR accessors.
24127
24128 2007-02-15 Sandra Loosemore <sandra@codesourcery.com>
24129 Brooks Moses <brooks.moses@codesourcery.com>
24130 Lee Millward <lee.millward@codesourcery.com>
24131
24132 * c-semantics.c (build_stmt): Add internal diagnostic check.
24133
24134 * c-pretty-print.c (pp_c_postfix_expression): Use new CALL_EXPR
24135 accessors. Print arguments explicitly instead of as a list.
24136
24137 * c-typeck.c (build_function_call): Use new CALL_EXPR constructors.
24138
24139 * c-omp.c (c_finish_omp_barrier): Use build_call_expr.
24140 (c_finish_omp_flish): Likewise.
24141
24142 * c-common.c (verify_tree): Use new CALL_EXPR accessors. Traverse
24143 arguments explicitly instead of as a list. Use TREE_OPERAND_LENGTH
24144 instead of TREE_CODE_LENGTH.
24145 (check_function_arguments_recurse): Use new CALL_EXPR accessors.
24146 (c_warn_unused_result): Likewise.
24147
24148 2007-02-15 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
24149
24150 PR c/26494
24151 * doc/invoke.texi (Warning Options): Remove
24152 -Werror-implicit-function-declaration.
24153 (Wimplicit-function-declaration): Update description.
24154 * opts.c (common_handle_option): Move handling of -Werror=* to...
24155 (enable_warning_as_error): ...here.
24156 * opts.h (enable_warning_as_error): Declare.
24157 * c-decl.c (implicit_decl_warning): Unless
24158 -Wno-implicit-function-declaration is given, emit a pedwarn if
24159 -std=c99 or emit a warning if -Wimplicit-function-declaration.
24160 * c.opt (Wimplicit-function-declaration): Replace
24161 mesg_implicit_function_declaration with
24162 warn_implicit_function_declaration.
24163 * c-opts.c (c_common_handle_option):
24164 -Werror-implicit-function-declaration is exactly equal as
24165 -Werror=implicit-function-declaration.
24166 (set_Wimplicit): Replace mesg_implicit_function_declaration with
24167 warn_implicit_function_declaration.
24168 (c_common_post_options): -Wimplict-function-declaration is enabled
24169 by default by -std=c99, otherwise is disabled by default.
24170 * c-objc-common.c (c_objc_common_init): Remove flawed logic.
24171
24172 2007-02-15 Eric Botcazou <ebotcazou@adacore.com>
24173
24174 * gimplify.c (gimplify_modify_expr): During gimplification, attach a
24175 DECL on the rhs to a DECL on the lhs for debug info purposes if the
24176 former is ignored but not the latter.
24177
24178 2007-02-15 Eric Botcazou <ebotcazou@adacore.com>
24179
24180 * expr.c (expand_expr_real_1) <normal_inner_ref>: If a temporary
24181 is made and the reference doesn't use the alias set of its type,
24182 do not create the temporary using that type.
24183
24184 2007-02-15 Aldy Hernandez <aldyh@redhat.com>
24185
24186 * jump.c: Remove prototypes for delete_computation and
24187 delete_prior_computation.
24188
24189 2007-02-15 Paolo Bonzini <bonzini@gnu.org>
24190
24191 * jump.c (get_label_after): Delete.
24192 (get_label_before, delete_computation, delete_jump,
24193 delete_prior_computation, follow_jumps): Move...
24194 * reorg.c (delete_computation, delete_prior_computation): ... here...
24195 (get_label_before, delete_jump): ... making these static ...
24196 (follow_jumps): ... and simplifying this since it only runs after
24197 reload.
24198 * rtl.h (get_label_after, get_label_before, delete_jump,
24199 follow_jumps): Delete prototypes.
24200
24201 2007-02-15 Paolo Bonzini <bonzini@gnu.org>
24202
24203 * caller-save.c (save_call_clobbered_regs): Do not process sibcalls.
24204
24205 2007-02-15 Nick Clifton <nickc@redhat.com>
24206
24207 * varasm.c (default_asm_output_anchor): Prepend * to . symbol in
24208 order to prevent it from being munged by the target.
24209
24210 2007-02-15 Uros Bizjak <ubizjak@gmail.com>
24211
24212 * config/i386/i386.md: Remove misleading comment.
24213
24214 2007-02-15 Alexandre Oliva <aoliva@redhat.com>
24215
24216 * config/frv/frv.md (reload_incc, reload_outcc, reload_incc_uns,
24217 reload_outcc_uns, reload_incc_nz, reload_outcc_nz): Remove
24218 invalid patterns.
24219
24220 2007-02-15 Alexandre Oliva <aoliva@redhat.com>
24221
24222 * tree-sra.c (instantiate_missing_elements): Canonicalize
24223 bit-field types.
24224 (sra_build_assignment): New.
24225 (generate_copy_inout, generate_element_copy,
24226 generate_element_zero, generate_one_element_init): Use it.
24227
24228 2007-02-15 Alexandre Oliva <aoliva@redhat.com>
24229
24230 * tree-sra.c (instantiate_missing_elements): Canonicalize
24231 bit-field types.
24232 (sra_build_assignment): New.
24233 (generate_copy_inout, generate_element_copy,
24234 generate_element_zero, generate_one_element_init): Use it.
24235
24236 2007-02-15 Alexandre Oliva <aoliva@redhat.com>
24237
24238 * dwarf2out.c (dwarf2out_finish): Accept namespaces as context of
24239 limbo die nodes.
24240
24241 2007-02-14 Joseph Myers <joseph@codesourcery.com>
24242
24243 * emit-rtl.c (set_mem_attributes_minus_bitpos): Treat complex
24244 types as aggregates not scalars.
24245 * function.c (assign_stack_temp_for_type): Likewise.
24246
24247 2007-02-14 Roger Sayle <roger@eyesopen.com>
24248 Zdenek Dvorak <dvorakz@suse.cz>
24249
24250 * tree-dump.c (dump_switch_p_1): Require exact match of the option
24251 name.
24252
24253 2007-02-14 Zdenek Dvorak <dvorakz@suse.cz>
24254
24255 * passes.c (next_pass_1): Clear the next field of the copied
24256 pass structure.
24257
24258 2007-02-14 Richard Henderson <rth@redhat.com>
24259
24260 * tree-sra.c (early_sra): New.
24261 (decl_can_be_decomposed_p): Deny va_list if early_sra.
24262 (tree_sra_early, pass_sra_early): New.
24263 * tree-pass.h (pass_sra_early): Declare.
24264 * passes.c (init_optimization_passes): Use it.
24265
24266 2007-02-14 Richard Guenther <rguenther@suse.de>
24267
24268 * flags.h (issue_strict_overflow_warning): Convert to a macro.
24269
24270 2007-02-14 Dorit Nuzman <dorit@il.ibm.com>
24271
24272 PR tree-optimization/30771
24273 * tree-vect-analyze.c (vect_determine_vectorization_factor): Traverse
24274 also phi nodes.
24275 (vect_analyze_operations): Induction phis can now be marked as
24276 used_in_loop.
24277 (vect_mark_stmts_to_be_vectorized): No special treatment for phis.
24278 Update documentation accordingly.
24279
24280 2007-02-14 Nick Clifton <nickc@redhat.com>
24281
24282 * builtin-types.def (DEF_FUNCTION_TYPE_x): Do not imply that at
24283 most 3 arguments are supported.
24284 (DEF_FUNCTION_TYPE_VAR_5): Fix typo in its description.
24285
24286 2007-02-13 Seongbae Park <seongbae.park@gmail.com>
24287
24288 * bitmap.c (bitmap_and, bitmap_and_compl, bitmap_xor):
24289 Ensure dst->current is valid.
24290
24291 2007-02-13 Paul Brook <paul@codesourcery.com>
24292
24293 * config.gcc: Add arm*-*-uclinux-*eabi.
24294 * config/arm/uclinux-elf.h (TARGET_OS_CPP_BUILTINS): Define.
24295 (SUBTARGET_EXTRA_LINK_SPEC): Define.
24296 (STARTFILE_SPEC, ENDFILE_SPEC): Remove broken -shared handling.
24297 (LINK_GCC_C_SEQUENCE_SPEC): Undef.
24298 (LINK_SPEC): Define.
24299 (LIB_SPEC): Define.
24300 * config/arm/arm.c (arm_override_options): Use r9 as EABI PIC
24301 register.
24302 * config/arm/uclinux-eabi.h: New file.
24303 * config/arm/linux-eabi.h (WCHAR_TYPE): Remove.
24304 * config/arm/linux-gas.h (WCHAR_TYPE): Use unsigned long on AAPCS
24305 based targets.
24306
24307 2007-02-13 Ian Lance Taylor <iant@google.com>
24308
24309 * common.opt: Add Wstrict-overflow and Wstrict-overflow=.
24310 * flags.h (warn_strict_overflow): Declare.
24311 (enum warn_strict_overflow_code): Define.
24312 (issue_strict_overflow_warning): New static inline function.
24313 * opts.c (warn_strict_overflow): New variable.
24314 (common_handle_option): Handle OPT_Wstrict_overflow and
24315 OPT_Wstrict_overflow_.
24316 * c-opts.c (c_common_handle_option): Set warn_strict_overflow for
24317 OPT_Wall.
24318 * fold-const.c: Include intl.h.
24319 (fold_deferring_overflow_warnings): New static variable.
24320 (fold_deferred_overflow_warning): New static variable.
24321 (fold_deferred_overflow_code): New static variable.
24322 (fold_defer_overflow_warnings): New function.
24323 (fold_undefer_overflow_warnings): New function.
24324 (fold_undefer_and_ignore_overflow_warnings): New function.
24325 (fold_deferring_overflow_warnings_p): New function.
24326 (fold_overflow_warning): New static function.
24327 (make_range): Add strict_overflow_p parameter. Change all
24328 callers.
24329 (extract_muldiv, extract_muldiv_1): Likewise.
24330 (fold_unary) [ABS_EXPR]: Check ABS_EXPR before calling
24331 tree_expr_nonnegative_p.
24332 (fold_negate_expr): Call fold_overflow_warning.
24333 (fold_range_test): Likewise.
24334 (fold_comparison): Likewise.
24335 (fold_binary): Likewise. Call tree_expr_nonnegative_warnv_p
24336 instead of tree_expr_nonnegative_p.
24337 (tree_expr_nonnegative_warnv_p): Rename from
24338 tree_expr_nonnegative_p, add strict_overflow_p parameter.
24339 (tree_expr_nonnegative_p): New function.
24340 (tree_expr_nonzero_warnv_p): Rename from tree_expr_nonzero_p, add
24341 strict_overflow_p parameter.
24342 (tree_expr_nonzero_p): New function.
24343 * passes.c (verify_interpass_invariants): New static function.
24344 (execute_one_pass): Call it.
24345 * tree-ssa-loop-niter.c (expand_simple_operations): Ignore fold
24346 warnings.
24347 (number_of_iterations_exit, loop_niter_by_eval): Likewise.
24348 (estimate_numbers_of_iterations): Likewise.
24349 (scev_probably_wraps_p): Likewise.
24350 * tree-ssa-ccp.c: Include "toplev.h".
24351 (evaluate_stmt): Defer fold overflow warnings until we know we are
24352 going to optimize.
24353 (struct fold_stmt_r_data): Add stmt field.
24354 (fold_stmt_r): Defer fold overflow warnings until we know we
24355 optimized.
24356 (fold_stmt): Initialize stmt field of fold_stmt_r_data.
24357 (fold_stmt_inplace): Likewise.
24358 * tree-cfgcleanup.c: Include "toplev.h" rather than "errors.h".
24359 (cleanup_control_expr_graph): Defer fold overflow warnings until
24360 we know we are going to optimize.
24361 * tree-cfg.c (fold_cond_expr_cond): Likewise.
24362 * tree-ssa-threadedge.c (simplify_control_stmt_condition):
24363 Likewise.
24364 * tree-vrp.c (vrp_expr_computes_nonnegative): Call
24365 tree_expr_nonnegative_warnv_p instead of tree_expr_nonnegative_p.
24366 * tree-ssa-loop-manip.c (create_iv): Likewise.
24367 * c-typeck.c (build_conditional_expr): Likewise.
24368 (build_binary_op): Likewise.
24369 * tree-vrp.c (vrp_expr_computes_nonzero): Call
24370 tree_expr_nonzero_warnv_p instead of tree_expr_nonzero_p.
24371 (extract_range_from_unary_expr): Likewise.
24372 * simplify-rtx.c (simplify_const_relational_operation): Warn when
24373 assuming that signed overflow does not occur.
24374 * c-common.c (pointer_int_sum): Ignore fold overflow warnings.
24375 * tree.h (tree_expr_nonnegative_warnv_p): Declare.
24376 (fold_defer_overflow_warnings): Declare.
24377 (fold_undefer_overflow_warnings): Declare.
24378 (fold_undefer_and_ignore_overflow_warnings): Declare.
24379 (fold_deferring_overflow_warnings_p): Declare.
24380 (tree_expr_nonzero_warnv_p): Declare.
24381 * doc/invoke.texi (Option Summary): Add -Wstrict-overflow to list
24382 of warning options.
24383 (Warning Options): Document -Wstrict-overflow.
24384 * Makefile.in (tree-ssa-threadedge.o): Depend on toplev.h.
24385 (tree-ssa-ccp.o): Likewise.
24386 (tree-cfgcleanup.o): Change errors.h dependency to toplev.h.
24387 (fold-const.o): Depend on intl.h.
24388
24389 2007-02-13 Ian Lance Taylor <iant@google.com>
24390
24391 PR middle-end/30751
24392 * lower-subreg.c (resolve_simple_move): Decompose subregs in
24393 addresses.
24394
24395 2007-02-13 Stuart Hastings <stuart@apple.com>
24396
24397 * config/i386/i386.md (fixuns_truncdfhi2): Require SSE2.
24398
24399 2007-02-13 Richard Henderson <rth@redhat.com>
24400
24401 * config/alpha/alpha.c (alpha_stdarg_optimize_hook): Strip
24402 handled_component_p before looking for the indirect_ref.
24403
24404 2007-02-13 Richard Henderson <rth@redhat.com>
24405
24406 * config/i386/i386.md (bswapsi_1): Rename from bswapsi2,
24407 remove flags clobber.
24408 (bswapsi2): New expander, emit code for !TARGET_BSWAP.
24409 (bswaphi_lowpart): New.
24410 (bswapdi2): Rename from bswapdi2_rex, remove flags clobber,
24411 remove TARGET_BSWAP test. Delete expander of the same name.
24412
24413 * optabs.c (widen_bswap, expand_doubleword_bswap): New.
24414 (expand_unop): Use them.
24415
24416 2007-02-13 Uros Bizjak <ubizjak@gmail.com>
24417
24418 * config/i386/i386.md (cmpdi_ccno_1_rex64, *cmpsi_ccno_1,
24419 *cmphi_ccno_1, *cmpqi_ccno_1, *movsi_xor, *movstricthi_xor,
24420 *movstrictqi_xor, *movdi_xor_rex64, *ashldi3_1_rex64,
24421 *ashldi3_cmp_rex64, *ashldi3_cconly_rex64, ashlsi3, *ashlsi3_1_zext,
24422 *ashlsi3_cmp, *ashlsi3_cconly, *ashlsi3_cmp_zext, *ashlhi3_1_lea,
24423 *ashlhi3_1, *ashlhi3_cmp, *ashlhi3_cconly, *ashlqi3_1_lea,
24424 *ashlqi3_1, *ashlqi3_cmp, *ashlqi3_cconly): Remove equivalent
24425 assembler dialect choice from asm templates.
24426
24427 2007-02-12 Richard Henderson <rth@redhat.com>
24428
24429 * config/i386/i386.md (fixuns_trunc<SSEMODEF>si_1): New insn.
24430 (fixuns_trunc<SSEMODEF>si2): Use it.
24431 * config/i386/sse.md (vec_setv4sf_0): Export.
24432 * config/i386/i386.c (ix86_build_const_vector): Export.
24433 (ix86_split_convert_uns_si_sse): Rename from
24434 ix86_expand_convert_uns_si_sse and rewrite as a splitter.
24435 * config/i386/i386-protos.h: Update.
24436
24437 2007-02-13 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
24438
24439 PR c/29521
24440 * c-typeck.c (c_finish_return): Improve warning message.
24441
24442 2007-02-12 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
24443
24444 * alias.c (find_symbolic_term): Delete unused function.
24445
24446 2007-02-12 Uros Bizjak <ubizjak@gmail.com>
24447
24448 * config/i386/i386.md (paritydi2, paritysi2): New expanders.
24449 (paritydi2_cmp, paritydi2_cmp): New insn and split patterns.
24450 (*parityhi2_cmp, *parityqi2_cmp): New insn patterns.
24451
24452 2007-02-12 Eric Botcazou <ebotcazou@adacore.com>
24453
24454 * tree.h (DECL_IGNORED_P): Document further effect for FUNCTION_DECL.
24455 * cgraphunit.c (cgraph_expand_function): If DECL_IGNORED_P is set on
24456 the function, temporarily point the debug interface to the null one.
24457
24458 2007-02-12 Eric Botcazou <ebotcazou@adacore.com>
24459
24460 * dwarf2out.c (round_up_to_align): New static function.
24461 (field_byte_offset): Use it to round the offset.
24462
24463 2007-02-12 Richard Henderson <rth@redhat.com>
24464
24465 * config/alpha/alpha.md (bswapsi2, bswapdi2): New.
24466 (inswl_const): Export.
24467
24468 2007-02-12 Richard Henderson <rth@redhat.com>
24469
24470 * calls.c (emit_library_call_value_1): If PROMOTE_MODE modifed the
24471 result mode of the libcall, convert back to outmode.
24472
24473 2007-02-12 Roger Sayle <roger@eyesopen.com>
24474
24475 * config/i386/i386.md (*bswapdi2_rex): Renamed from bswapdi2.
24476 (bswapdi2): New define_expand to implement 32-bit implementation.
24477
24478 2007-02-12 Nick Clifton <nickc@redhat.com>
24479
24480 * doc/invoke.texi (Overall Options): Document --help=.
24481 * gcc.c (target_help_flag): Rename to print_subprocess_flag.
24482 (cc1_options): Pass --help= on to cc1.
24483 (display_help): Add description of --help=.
24484 (process_command): Add code to handle --help=. Allow translated
24485 --help and --target-help switches to be passed on to compiler
24486 sub-process.
24487 (main): Remove unused if statement.
24488 * opts.c (columns): Remove.
24489 (LEFT_COLUMN): Define.
24490 (wrap_help): Add columns argument.
24491 (print_filtered_help): Change parameters to be an include bitmask,
24492 an exclude bitmask, an any bitmask and the column width. Move the
24493 code to display the params list here. Add code to display the
24494 status of options rather than their descriptions if the quiet flag
24495 is not active.
24496 (print_specific_help): Change parameters to be an include bitmask,
24497 an exclude bitmask and an any bitmask. Move code to look up the
24498 column width here. Decide upon the title for an options listing.
24499 (common_handle_options): Add code to handle --help=. Adapt code
24500 for --help and --target-help to use the revised form of the
24501 print_specific_help function.
24502 (print_help): Delete.
24503 (print_param_help): Delete.
24504 (print_switch): Delete.
24505 * opts.h (cl_lang_count): Add prototype.
24506 (CL_PARAMS, CL_WARNING, CL_OPTIMIZATION, CL_MIN_OPTION_CLASS,
24507 CL_MAX_OPTION_CLASS): New defines.
24508 * optc-gen.awk: Add construction of cl_lang_count.
24509 * c.opt: Add Warning attribute to warning options and Optimization
24510 attribute to optimization options.
24511 * common.opt: Likewise.
24512 Add --help=.
24513 Add -fhelp and -ftarget-help as aliases for the transformed --help
24514 and --target-help options.
24515 * opt-functions.awk: Add code to handle Warning and Optimization
24516 attributes.
24517
24518 2007-02-12 Richard Henderson <rth@redhat.com>
24519
24520 * config/alpha/constraints.md: New file.
24521 * config/alpha/alpha.c: Include tm-constrs.h.
24522 (alpha_const_ok_for_letter_p, alpha_const_double_ok_for_letter_p,
24523 alpha_extra_constraint): Remove.
24524 (alpha_emit_conditional_branch): Use satisfies_constraint_*.
24525 * config/alpha/alpha-protos.h: Update.
24526 * config/alpha/alpha.h (REG_CLASS_FROM_LETTER): Remove.
24527 (CONST_OK_FOR_LETTER_P, CONST_DOUBLE_OK_FOR_LETTER_P): Remove.
24528 (EXTRA_CONSTRAINT): Remove.
24529 * config/alpha/alpha.md: Include constraints.md.
24530 (adddi splitter): Use satisfies_constraint_*.
24531 * config/alpha/predicates.md (add_operand): Likewise.
24532 (sext_add_operand, addition_operation): Likewise.
24533
24534 2007-02-12 Dorit Nuzman <dorit@il.ibm.com>
24535
24536 PR tree-optimization/29145
24537 * tree-data-ref.c (base_addr_differ_p): Make us more conservative
24538 in our handling of restrict qualified pointers.
24539
24540 2007-02-12 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
24541
24542 PR middle-end/7651
24543 * doc/invoke.texi (Wunused-value): Update description.
24544 (Wextra): Delete item.
24545 * opts.c (set_Wextra): Don't use the value of Wextra to set the
24546 value of Wunused-value.
24547 * c-typeck.c (c_process_expr_stmt): Don't check extra_warnings.
24548 (c_finish_stmt_expr): Don't check extra_warnings.
24549 (emit_side_effect_warnings): The caller is responsible to check
24550 warn_unused_value.
24551
24552 2007-02-11 Roger Sayle <roger@eyesopen.com>
24553 Matt Thomas <matt@3am-software.com>
24554
24555 * simplify-rtx.c (simplify_relational_operation_1): Correct typo.
24556
24557 2007-02-11 Roger Sayle <roger@eyesopen.com>
24558
24559 * simplify-rtx.c (simplify_relational_operation_1): Optimize
24560 comparisons of POPCOUNT against zero.
24561 (simplify_const_relational_operation): Likewise.
24562
24563 2007-02-11 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
24564
24565 * doc/invoke.texi (Wextra): Delete outdated paragraph.
24566
24567 2007-02-11 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
24568
24569 * dwarf2out.c (root_type): Delete unused function.
24570
24571 2007-02-11 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
24572
24573 * genattrtab.c (contained_in_p): Delete unused function.
24574 (write_expr_attr_cache): Likewise.
24575
24576 2007-02-11 Jan Hubicka <jh@suse.cz>
24577
24578 * ipa-inline.c (cgraph_edge_badness): Add "else" missing in the
24579 previous patch.
24580
24581 2007-02-11 Steven Bosscher <steven@gcc.gnu.org>
24582
24583 * fwprop.c (try_fwprop_subst): Use set_unique_reg_note
24584 to add the REG_EQ* note.
24585 * see.c (see_merge_one_use_extension): Likewise.
24586 * local-alloc.c (update_equiv_regs): Likewise. Also don't
24587 turn REG_EQUAL notes into REG_EQUIV notes if the target
24588 register may have more than one set.
24589 * function.c (assign_parm_setup_reg): Use set_unique_reg_note.
24590 * gcse.c (try_replace_reg): Likewise.
24591 * alias.c (init_alias_analysis): Use find_reg_equal_equiv_note.
24592 * calls.c (fixup_tail_calls): Likewise. Abort if there is
24593 more than one REG_EQUIV note.
24594 * reload1.c (gen_reload): Use set_unique_reg_note.
24595
24596 2007-02-11 Uros Bizjak <ubizjak@gmail.com>
24597
24598 * config/i386/i386.c (TARGET_VECTORIZE_BUILTIN_CONVERSION): Define.
24599 (ix86_builtin_conversion): New function.
24600
24601 2007-02-06 Mark Mitchell <mark@codesourcery.com>
24602
24603 PR target/29487
24604 * tree.h (DECL_REPLACEABLE_P): New macro.
24605 * except.c (set_nothrow_function_flags): Likewise.
24606
24607 2007-02-11 Tehila Meyzels <tehila@il.ibm.com>
24608 Ira Rosen <irar@il.ibm.com>
24609 Dorit Nuzman <dorit@il.ibm.com>
24610
24611 * doc/tm.texi (TARGET_VECTORIZE_BUILTIN_CONVERSION): New target hook.
24612 * targhooks.c (default_builtin_vectorized_conversion): New.
24613 * targhooks.h (default_builtin_vectorized_function): New declaration.
24614 * target.h (struct vectorize): Add builtin_conversion field.
24615 * tree-vectorizer.h (type_conversion_vec_info_type): New enum
24616 stmt_vec_info_type value.
24617 (vectorizable_conversion): New declaration.
24618 * tree-vect-analyze.c (vect_analyze_operations): Add
24619 vectorizable_conversion call.
24620 * target-def.h (TARGET_VECTORIZE_BUILTIN_CONVERSION): New.
24621 * tree-vect-transform.c (vectorizable_conversion): New function.
24622 (vect_transform_stmt): Add case for type_conversion_vec_info_type.
24623 * tree-vect-generic.c (expand_vector_operations_1): Consider correct
24624 mode.
24625 * config/rs6000/rs6000.c (rs6000_builtin_conversion): New.
24626 (TARGET_VECTORIZE_BUILTIN_CONVERSION): Defined.
24627 (rs6000_expand_builtin): Add handling a case of ALTIVEC_BUILTIN_VCFUX
24628 or ALTIVEC_BUILTIN_VCFSX.
24629
24630 2007-02-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
24631
24632 PR target/30634
24633 * pa.md (movdf): For 64-bit target, fail if operand 1 is a non-zero
24634 CONST_DOUBLE and operand 0 is a hard register.
24635 (movdi): For 64-bit target, remove code to force CONST_DOUBLE to
24636 memory. Fail if operand 1 is a non-zero CONST_INT and operand 0
24637 is a hard floating-point register.
24638
24639 2007-02-10 Richard Henderson <rth@redhat.com>
24640 Jakub Jelinek <jakub@redhat.com>
24641 Alexandre Oliva <aoliva@redhat.com>
24642
24643 * Makefile.in (libgcc-support, libgcc.mvars): Add emutls.c.
24644 * builtin-types.def (BT_WORD): Make unsigned.
24645 (BT_FN_VOID_PTR_WORD_WORD_PTR): New.
24646 * builtins.def (BUILT_IN_EMUTLS_GET_ADDRESS): New.
24647 (BUILT_IN_EMUTLS_REGISTER_COMMON): New.
24648 * c-decl.c (grokdeclarator): Don't error if !have_tls.
24649 * c-parser.c (c_parser_omp_threadprivate): Likewise.
24650 * dwarf2out.c (loc_descriptor_from_tree_1): Don't do anything for
24651 emulated tls.
24652 * expr.c (emutls_var_address): New.
24653 (expand_expr_real_1): Expand emulated tls.
24654 (expand_expr_addr_expr_1): Likewise.
24655 * libgcc-std.ver: Add __emutls_get_address, __emutls_register_common.
24656 * output.h (emutls_finish): Declare.
24657 * toplev.c (compile_file): Call it.
24658 * tree-ssa-address.c (gen_addr_rtx): Check for const-ness of the
24659 address before wrapping in CONST.
24660 * varasm.c (emutls_htab, emutls_object_type): New.
24661 (EMUTLS_VAR_PREFIX, EMUTLS_TMPL_PREFIX): New.
24662 (get_emutls_object_name, get_emutls_object_type): New.
24663 (get_emutls_init_templ_addr, emutls_decl): New.
24664 (emutls_common_1, emutls_finish): New.
24665 (assemble_variable): When emulating tls, swap decls; generate
24666 constructor for the emutls objects.
24667 (do_assemble_alias): When emulating tls, swap decl and target name.
24668 (default_encode_section_info): Don't add SYMBOL_FLAG_TLS_SHIFT
24669 for emulated tls.
24670 * varpool.c (decide_is_variable_needed): Look at force_output.
24671 Recurse for emulated tls.
24672 (cgraph_varpool_remove_unreferenced_decls): Remove checks redundant
24673 with decide_is_variable_needed.
24674 * emutls.c: New file.
24675 * config/sparc/sol2.h (ASM_DECLARE_OBJECT_NAME): Only emit
24676 tls_object for real tls.
24677
24678 2007-02-10 Kaz Kojima <kkojima@gcc.gnu.org>
24679
24680 PR rtl-optimization/29599
24681 * reload1.c (eliminate_regs_in_insn): Take the destination
24682 mode into account when computing the offset.
24683
24684 2007-02-09 Stuart Hastings <stuart@apple.com>
24685 Richard Henderson <rth@redhat.com>
24686
24687 * config/i386/i386.h (TARGET_KEEPS_VECTOR_ALIGNED_STACK): New.
24688 * config/i386/darwin.h: (TARGET_KEEPS_VECTOR_ALIGNED_STACK): New.
24689 * config/i386/i386.md (fixuns_trunc<mode>si2, fixuns_truncsfhi2,
24690 fixuns_truncdfhi2): New.
24691 (fix_truncsfdi_sse): Call ix86_expand_convert_sign_didf_sse.
24692 (floatunsdidf2): Call ix86_expand_convert_uns_didf_sse.
24693 (floatunssisf2): Add call to ix86_expand_convert_uns_sisf_sse.
24694 (floatunssidf2): Allow nonimmediate source.
24695 * config/i386/sse.md (movdi_to_sse): New.
24696 (vec_concatv2di): Drop '*'.
24697 * config/i386/i386-protos.h (ix86_expand_convert_uns_si_sse,
24698 ix86_expand_convert_uns_didf_sse, ix86_expand_convert_uns_sidf_sse,
24699 ix86_expand_convert_uns_sisf_sse, ix86_expand_convert_sign_didf_sse):
24700 New.
24701 * config/i386/i386.c (ix86_expand_convert_uns_si_sse,
24702 ix86_expand_convert_uns_didf_sse, ix86_expand_convert_uns_sidf_sse,
24703 ix86_expand_convert_uns_sisf_sse, ix86_expand_convert_sign_didf_sse,
24704 ix86_build_const_vector, ix86_expand_vector_init_one_nonzero): New.
24705 (ix86_build_signbit_mask): Fix decl of v, refactor to call
24706 ix86_build_const_vector.
24707 (x86_emit_floatuns): Rewrite.
24708
24709 2007-02-10 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
24710
24711 * genautomata.c (longest_path_length): Delete unused function.
24712 (struct state): Delete unused longest_path_length.
24713 (UNDEFINED_LONGEST_PATH_LENGTH): Delete unused macro.
24714 (get_free_state): Delete unused.
24715
24716 2007-02-09 Jan Hubicka <jh@suse.cz>
24717
24718 * params.def (PARAM_INLINE_UNIT_GROWTH): Set to 30.
24719 * doc/invoke.texi (inline-unit-growth): Update default value.
24720
24721 * Makefile.in (passes.o, ipa-inline.o): Add dependencies.
24722 * cgraphbuild.c (build_cgraph_edges): Compute frequencies.
24723 (rebuild_cgraph_edges): Likewise.
24724 * cgraph.c (cgraph_set_call_stmt): Add new argument frequency.
24725 (dump_cgraph_node): Dump frequencies.
24726 (cgraph_clone_edge): Add frequency scales.
24727 (cgraph_clone_node): Add freuqnecy.
24728 * cgraph.h (cgraph_edge): Add freuqnecy argument.
24729 (CGRAPH_FREQ_BASE, CGRAPH_FREQ_MAX): New constants.
24730 (cgraph_create_edge, cgraph_clone_edge, cgraph_clone_node): Update.
24731 * tree-pass.h (TODO_rebuild_frequencies): New constant.
24732 * cgraphunit.c (verify_cgraph_node): Verify frequencies.
24733 (cgraph_copy_node_for_versioning): Update call of cgraph_clone_edge.
24734 (save_inline_function_body): Likewise.
24735 * ipa-inline.c: inluce rtl.h
24736 (cgraph_clone_inlined_nods): Update call of cgraph_clone_node.
24737 (cgraph_edge_badness): Use frequencies.
24738 (cgraph_decide_recursive_inlining): Update clonning.
24739 (cgraph_decide_inlining_of_small_function): Dump frequency.
24740 * predict.c (estimate_bb_frequencies): Export.
24741 * predict.h (estimate_bb_frequencies): Declare.
24742 * tree-inline.c (copy_bb): Watch overflows.
24743 (expand_call_inline): Update call of cgraph_create_edge.
24744 (optimize_inline_calls): Use TODO flags to update frequnecies.
24745 * passes.h: Include predict.h
24746 (init_optimization_passes): Move profile ahead.
24747 (execute_function_todo): Handle TODO_rebuild_frequencies.
24748
24749 2007-02-09 Roger Sayle <roger@eyesopen.com>
24750
24751 * config/alpha/alpha.c (emit_insxl): Force the first operand of
24752 the insbl or inswl pattern into a register.
24753
24754 2007-02-09 Roger Sayle <roger@eyesopen.com>
24755
24756 * config/ia64/ia64.md (bswapdi2): New define_insn.
24757
24758 2007-02-09 Richard Henderson <rth@redhat.com>
24759
24760 * config/i386/constraints.md (Ym): New constraint.
24761 * config/i386/i386.md (movsi_1): Change Y2 to Yi constraints.
24762 (movdi_1_rex64): Split sse and xmm general register moves from
24763 memory move alternatives. Use conditional register constraints.
24764 (movsf_1, movdf_integer): Likewise.
24765 (zero_extendsidi2_32, zero_extendsidi2_rex64): Likewise.
24766 (movdf_integer_rex64): New.
24767 (pushsf_rex64): Fix output constraints.
24768 * config/i386/sse.md (sse2_loadld): Split rm alternative, use Yi.
24769 (sse2_stored): Likewise.
24770 (sse2_storeq_rex64): New.
24771 * config/i386/i386.c (x86_inter_unit_moves): Enable for not
24772 amd and not generic.
24773 (ix86_secondary_memory_needed): Don't bypass TARGET_INTER_UNIT_MOVES
24774 for optimize_size. Remove SF/DFmode hack.
24775
24776 2007-02-09 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
24777
24778 * config/i386/driver-i386.c: Turn on -mtune=native for AMDFAM10.
24779 (bit_SSE4a): New.
24780
24781 2007-02-09 Nathan Sidwell <nathan@codesourcery.com>
24782 Richard Sandiford <richard@codesourcery.com>
24783
24784 * config.gcc (m68010-*-netbsdelf*, m68k*-*-netbsdelf*)
24785 (m68k*-*-openbsd*, m68k-*-linux*): Set default_cf_cpu.
24786 (m68k-*-aout*, m68k-*-coff*, m68k-*-uclinux*, m68k-*-rtems*): Add
24787 m68k/t-mlib to tmake_file.
24788 (m68020-*-elf*, m68k-*-elf*): Likewise. Add t-m68kbare as well.
24789 (m68k*-*-*): Use --with-arch to pick a default for --with-cpu.
24790 (m680[012]0-*-*, m68k*-*-*): Add support for --with-arch.
24791 Allow it to be cf or m68k. Set m68k_arch_family. If that
24792 variable is not empty, add t-$m68k_arch_family to tmake_file.
24793 Add t-mlibs to tmake_file.
24794 * doc/install.texi: Document --with-arch=m68k and --with-arch=cf.
24795 * config/m68k/t-cf: New file.
24796 * config/m68k/t-m68k: Likewise.
24797 * config/m68k/t-mlibs: Likewise.
24798 * config/m68k/t-m68kbare (MULTILIB_OPTIONS, MULTILIB_DIRNAMES)
24799 (MULTILIB_MATCHES, MULTILIB_EXCEPTIONS): Delete.
24800 (M68K_MLIB_DIRNAMES, M68K_MLIB_OPTIONS): Define.
24801 * config/m68k/t-m68kelf (MULTILIB_OPTIONS, MULTILIB_DIRNAMES)
24802 (MULTILIB_MATCHES, MULTILIB_EXCEPTIONS, LIBGCC, INSTALL_LIBGCC):
24803 Delete.
24804 * config/m68k/t-openbsd (MULTILIB_OPTIONS, LIBGCC): Delete.
24805 (INSTALL_LIBGCC): Delete.
24806 (M68K_MLIB_DIRNAMES, M68K_MLIB_OPTIONS): Define.
24807 * config/m68k/t-rtems (MULTILIB_OPTIONS, MULTILIB_DIRNAMES)
24808 (MULTILIB_MATCHES, MULTILIB_EXCEPTIONS): Delete.
24809 (M68K_MLIB_CPU): Define.
24810 * config/m68k/t-uclinux (MULTILIB_OPTIONS, MULTILIB_DIRNAMES)
24811 (MULTILIB_MATCHES, MULTILIB_EXCEPTIONS): Delete.
24812 (M68K_MLIB_CPU, M68K_MLIB_OPTIONS, M68K_MLIB_DIRNAMES): Define.
24813
24814 2007-02-09 Zdenek Dvorak <dvorakz@suse.cz>
24815 Richard Guenther <rguenther@suse.de>
24816
24817 PR middle-end/23361
24818 * fold-const.c (fold_comparison): Handle obfuscated comparisons
24819 against INT_MIN/INT_MAX.
24820 * tree-ssa-loop-ivcanon.c (remove_empty_loop): Print to dump
24821 file if a loop is removed.
24822
24823 2007-02-09 Joseph Myers <joseph@codesourcery.com>
24824
24825 * calls.c (store_one_arg): Pass correct alignment to
24826 emit_push_insn for non-BLKmode values.
24827 * expr.c (emit_push_insn): If STRICT_ALIGNMENT, copy to an
24828 unaligned stack slot via a suitably aligned slot.
24829
24830 2007-02-08 DJ Delorie <dj@redhat.com>
24831
24832 * config/m32c/m32c.c (m32c_unpend_compare): Add default to silence
24833 warnings.
24834 (legal_subregs): Use unsigned char, make const.
24835 (m32c_illegal_subreg_p): Use ARRAY_SIZE. Delete unused variables.
24836
24837 2007-02-08 Paul Brook <paul@codesourcery.com>
24838
24839 * config/arm/lib1funcs.asm (RETLDM): Pop directly into PC when no
24840 special interworking needed.
24841
24842 2007-02-08 Harsha Jagasia <harsha.jagasia@amd.com>
24843
24844 * config/i386/xmmintrin.h: Make inclusion of emmintrin.h
24845 conditional to __SSE2__.
24846 (Entries below should have been added to first ChangeLog
24847 entry for amdfam10 dated 2007-02-05)
24848 * config/i386/emmintrin.h: Generate #error if __SSE2__ is not
24849 defined.
24850 * config/i386/pmmintrin.h: Generate #error if __SSE3__ is not
24851 defined.
24852 * config/i386/tmmintrin.h: Generate #error if __SSSE3__ is not
24853 defined.
24854
24855 2007-02-08 DJ Delorie <dj@redhat.com>
24856
24857 * config/m32c/m32c-protos.h (m32c_illegal_subreg_p): New.
24858 * config/m32c/m32c.c (legal_subregs): New.
24859 (m32c_illegal_subreg_p): New.
24860 * config/m32c/predicates.md (m32c_any_operand): Use it to reject
24861 unsupported subregs of hard regs.
24862
24863 2007-02-08 Jan Hubicka <jh@suse.cz>
24864
24865 * tree-cfg.c (bsi_replace): Shortcut when replacing the statement with
24866 the same one; always update histograms.
24867
24868 2007-02-08 Diego Novillo <dnovillo@redhat.com>
24869
24870 * passes.c (init_optimization_passes): Tidy comment.
24871
24872 2007-02-08 Roger Sayle <roger@eyesopen.com>
24873
24874 * simplify-rtx.c (simplify_unary_operation_1) <POPCOUNT>: We can
24875 strip zero_extend, bswap and rotates from POCOUNT's argument.
24876 <PARITY>: Likewise, we can strip not, bswap, sign_extend,
24877 zero_extend and rotates from PARITY's argument.
24878 <BSWAP>: A byte-swap followed by a byte-swap is an identity.
24879 (simplify_const_unary_operation) <BSWAP>: Evaluate the byte-swap
24880 of an integer constant at compile-time.
24881
24882 2007-02-08 Diego Novillo <dnovillo@redhat.com>
24883
24884 PR 30562
24885 * tree-flow.h (struct var_ann_d): Remove field 'is_used'.
24886 Update all users.
24887 * tree-ssa-alias.c (compute_is_aliased): Remove. Update all
24888 users.
24889 (init_alias_info):
24890 * tree-ssa-live.c (remove_unused_locals): Do not remove
24891 TREE_ADDRESSABLE variables.
24892 * tree-ssa-structalias.c (compute_points_to_sets): Tidy.
24893 * tree-ssa-operands.c (add_virtual_operand): Remove argument
24894 FOR_CLOBBER. Update all users.
24895 If VAR has an associated alias set, add a virtual operand for
24896 it if no alias is found to conflict with the memory reference.
24897
24898 2007-02-07 Jan Hubicka <jh@suse.cz>
24899 Robert Kidd <rkidd@crhc.uiuc.edu>
24900
24901 * value-prof.c (visit_hist, free_hist): Return 1 instead of 0.
24902
24903 2007-02-07 Ian Lance Taylor <iant@google.com>
24904
24905 * lower-subreg.c (simple_move): Reject PARTIAL_INT modes.
24906
24907 2007-02-07 Roger Sayle <roger@eyesopen.com>
24908
24909 * config/rs6000/rs6000.md (ctz<mode>2, ffs<mode>2, popcount<mode>2,
24910 parity<mode>2, smulsi3_highpart, abstf2_internal, allocate_stack,
24911 tablejumpdi, movsi_to_cr_one): Remove constraints from
24912 define_expand's match_operands.
24913
24914 2007-02-07 Roger Sayle <roger@eyesopen.com>
24915
24916 * global.c (compute_regsets): Move declatation of "i" inside of
24917 #ifdef ELIMINABLE_REGS to avoid unused variable bootstrap failure.
24918
24919 2007-02-07 Jakub Jelinek <jakub@redhat.com>
24920
24921 PR c++/30703
24922 * gimplify.c (gimplify_scan_omp_clauses): Remove special casing
24923 of INDIRECT_REF <RESULT_DECL>.
24924
24925 * config/i386/i386.c (override_options): Set PTA_SSSE3 for core2.
24926
24927 2007-02-06 J"orn Rennecke <joern.rennecke@arc.com>
24928 Kaz Kojima <kkojima@gcc.gnu.org>
24929
24930 PR target/29746
24931 * config/sh/sh.c (expand_cbranchdi4): Use scratch register
24932 properly.
24933 (sh_initialize_trampoline): Add parentheses to avoid a warning.
24934
24935 2007-02-06 Zdenek Dvorak <dvorakz@suse.cz>
24936
24937 * doc/loop.texi: Document possibility not to perform disambiguation
24938 of loops with multiple latches.
24939 * cfgloopmanip.c (alp_enum_p): Removed.
24940 (add_loop): Handle subloops. Use get_loop_body_with_size.
24941 (create_preheader): Do not allow ENTRY_BLOCK_PTR to be preheader.
24942 * cfghooks.c (redirect_edge_and_branch_force): Set dominator for
24943 the new forwarder block.
24944 (make_forwarder_block): Only call new_bb_cbk if it is not NULL.
24945 Handle the case latch is NULL.
24946 * tree-ssa-dom.c (tree_ssa_dominator_optimize): Avoid cfg
24947 modifications when marking loop exits.
24948 * ifcvt.c (if_convert): Ditto. Mark loop exits even if cfg cannot
24949 be modified.
24950 * loop-init.c (loop_optimizer_init): Do not modify cfg. Call
24951 disambiguate_loops_with_multiple_latches.
24952 * tree-cfgcleanup.c (cleanup_tree_cfg_loop): Calculate dominators
24953 before fix_loop_structure.
24954 * cfgloop.c: Include pointer-set.h and output.h.
24955 (canonicalize_loop_headers, HEADER_BLOCK, LATCH_EDGE,
24956 update_latch_info, mfb_keep_just, mfb_keep_nonlatch): Removed.
24957 (get_loop_latch_edges, find_subloop_latch_edge_by_profile,
24958 find_subloop_latch_edge_by_ivs, find_subloop_latch_edge,
24959 mfb_redirect_edges_in_set, form_subloop, merge_latch_edges,
24960 disambiguate_multiple_latches, get_loop_body_with_size,
24961 disambiguate_loops_with_multiple_latches): New functions.
24962 (flow_loop_dump): Dump multiple latch edges.
24963 (flow_loop_nodes_find): Handle loops with multiple latches.
24964 (flow_loops_find): Ditto. Do not call canonicalize_loop_headers.
24965 (glb_enum_p): Modified.
24966 (get_loop_body): Use get_loop_body_with_size.
24967 * cfgloop.h (LOOPS_HAVE_RECORDED_EXITS): New flag.
24968 (AVOID_CFG_MODIFICATIONS): New constant.
24969 (disambiguate_loops_with_multiple_latches, add_loop,
24970 get_loop_body_with_size): Declare.
24971 * Makefile.in (cfgloop.o): Add pointer-set.h and output.h.
24972
24973 2007-02-06 Seongbae Park <seongbae.park@gmail.com>
24974
24975 PR inline-asm/28686
24976 * global.c (compute_regsets): New function.
24977 (global_alloc): Refactored ELIMINABLE_REGSET
24978 and NO_GLOBAL_ALLOC_REGS computation out.
24979 (rest_of_handle_global_alloc): Call compute_regsets()
24980 for non-optimizing case.
24981
24982 2007-02-06 Richard Henderson <rth@redhat.com>
24983
24984 * config/i386/constraints.md (Y2): Rename from Y.
24985 (Yi): New constraint.
24986 * config/i386/i386.md (movsi_1, movdi_2, pushdf_nointeger,
24987 pushdf_integer, movdf_nointeger, movdf_integer, zero_extendsidi2_32,
24988 zero_extendsidi2_rex64, truncxfdf2_mixed): Change Y constraints to Y2.
24989 (extendsfdf2_mixed, extendsfdf2_sse, truncdfsf_fast_mixed,
24990 truncdfsf_fast_sse, truncdfsf_mixed, fix_truncdfdi_sse,
24991 fix_truncdfsi_sse, floatsidf2_mixed, floatsidf2_sse,
24992 floatdidf2_mixed, floatdidf2_sse, absnegdf2_mixed,
24993 absnegdf2_sse, sse_setccdf, fop_df_comm_mixed, fop_df_comm_sse,
24994 fop_df_1_mixed, fop_df_1_sse): Change Y constraints to x.
24995 * config/i386/mmx.md (mov<MMXMODEI>_internal_rex64,
24996 mov<MMXMODEI>_internal, movv2sf_internal_rex64, movv2sf_internal,
24997 vec_extractv2si_1): Change Y constraints to Y2.
24998 * config/i386/sse.md (vec_setv4sf_0, vec_concatv2df, vec_dupv4si,
24999 vec_dupv2di, sse2_concatv2si, vec_concatv4si_1, vec_concatv2di):
25000 Change Y constraints to Y2.
25001 (sse2_loadld): Change Y constraints to x.
25002
25003 2007-02-06 Roger Sayle <roger@eyesopen.com>
25004
25005 * config/rs6000/rs6000.md (popcount<mode>2): Rewrite.
25006 (parity<mode>2): New define_expand using rs6000_emit_parity.
25007 * config/rs6000/rs6000.c (rs6000_emit_popcount,
25008 rs6000_emit_parity): New functions.
25009 * config/rs6000/rs6000-protos.h (rs6000_emit_popcount,
25010 rs6000_emit_parity): Prototype here.
25011
25012 2007-02-06 Ian Lance Taylor <iant@google.com>
25013
25014 * lower-subreg.c (simple_move_operand): Reject CONST.
25015 (resolve_clobber): Call validate_change rather than directly
25016 assigning to XEXP (pat, 0).
25017
25018 2006-02-06 Paolo Bonzini <bonzini@gnu.org>
25019
25020 * Makefile.in (tree-ssa-loop-ivopts.o): Add pointer-set.h dependency.
25021 (tree-ssa-reassoc.o): Add pointer-set.h dependency.
25022 (tree-cfg.o): Remove hashtab.h dependency.
25023
25024 * tree-ssa-loop-ivopts.c: Include pointer-set.h.
25025 (struct ivopts_data): Change niters to pointer_map_t.
25026 (struct nfe_cache_elt, nfe_hash, nfe_eq): Delete.
25027 (niter_for_exit): Create pointer_map on demand. Change for
25028 pointer_map API.
25029 (tree_ssa_iv_optimize_init): Initialize data->niters to NULL.
25030 (free_loop_data): Destroy data->niters if created and reset field.
25031 (tree_ssa_iv_optimize_finalize): Don't delete data->niters here.
25032 (tree_ssa_iv_optimize_loop): Check for presence of stale data.
25033
25034 * tree-ssa-reassoc.c: Include pointer-set.h.
25035 (bb_rank): Change to long *.
25036 (operand_rank): Change to pointer_map_t.
25037 (find_operand_rank): Return long, -1 if not found. Declare as inline.
25038 (insert_operand_rank): Accept long.
25039 (operand_entry_hash, operand_entry_eq): Remove.
25040 (get_rank): Return long. Adjust for changes above.
25041 (init_reassoc): Change rank type to long. Adjust creation of bb_rank
25042 and operand_rank.
25043 (fini_reassoc): Delete operand_rank with pointer_map_destroy.
25044
25045 * tree-ssa-structalias.c (vi_for_tree): Change to pointer_map.
25046 (struct tree_vi, tree_vi_t, tree_vi_hash, tree_vi_eq): Delete.
25047 (insert_vi_for_tree): Rewrite for pointer_map API. Assert argument
25048 is not NULL.
25049 (lookup_vi_for_tree): Rewrite for pointer_map API. Return varinfo_t
25050 directly since it cannot be NULL.
25051 (get_vi_for_tree): Rewrite for pointer_map API.
25052 (find_what_p_points_to): Adjust for change to lookup_vi_for_tree.
25053 (init_alias_vars): Create vi_for_tree as pointer_map.
25054 (delete_points_to_sets): Delete vi_for_tree using pointer_map_destroy.
25055
25056 * tree-cfg.c: Don't include hashtab.h.
25057 (edge_to_cases): Declare as pointer_map.
25058 (struct edge_to_cases_elt, edge_to_cases_hash, edge_to_cases_eq):
25059 Delete.
25060 (edge_to_cases_cleanup): Rewrite as pointer_map_traverse callback.
25061 (start_recording_case_labels): Create edge_to_cases as pointer_map.
25062 (end_recoding_case_labels): Cleanup edge_to_cases manually before
25063 destroying it.
25064 (record_switch_edge): Delete.
25065 (get_cases_for_edge): Adjust for pointer_map API, inline
25066 record_switch_edge (rewritten for new API), remove goto.
25067
25068 2006-02-06 Paolo Bonzini <bonzini@gnu.org>
25069
25070 * Makefile.in (tree-nested.o): Add pointer-set.h dependency.
25071 * tree-nested.c: Include pointer-set.h.
25072 (var_map_elt, var_map_eq, var_map_hash): Delete.
25073 (struct nesting_info): Remove GTY marker. Change the two htab_t's
25074 to pointer_map_t's.
25075 (nesting_info_bitmap_obstack): New.
25076 (lookup_field_for_decl): Adjust for pointer_map API.
25077 (lookup_tramp_for_decl): Adjust for pointer_map API.
25078 (get_nonlocal_debug_decl): Adjust for pointer_map API.
25079 (get_local_debug_decl): Adjust for pointer_map API.
25080 (convert_nl_goto_reference): Adjust for pointer_map API.
25081 (convert_nl_goto_receiver): Adjust for pointer_map API.
25082 (create_nesting_tree): Create outside GGC space. Create bitmap on
25083 the new obstack. Create field_map and var_map as pointer_maps.
25084 (free_nesting_tree): Adjust for changes to create_nesting_tree.
25085 (root): Delete.
25086 (lower_nested_functions): Move root here, no need to NULL it.
25087 Initialize and release the obstack.
25088
25089 2007-02-06 Paolo Bonzini <bonzini@gnu.org>
25090
25091 * tree.c (tree_int_map_hash, tree_int_map_eq, tree_int_map_marked_p):
25092 Remove prototypes and make them non-static.
25093 (struct tree_int_map): Remove.
25094 * tree.h (struct tree_int_map): Move here, turning TO into an
25095 unsigned int.
25096 (tree_int_map_hash, tree_int_map_eq, tree_int_map_marked_p): Declare.
25097
25098 * tree.h (TREE_COMPLEXITY): Remove.
25099 (struct tree_exp): Remove complexity field.
25100 * tree.c (build1_stat): Don't set it.
25101
25102 2007-02-06 Dorit Nuzman <dorit@il.ibm.com>
25103 Victor Kaplansky <victork@il.ibm.com>
25104
25105 * tree-vectorizer.c (vect_is_simple_use): Support induction.
25106 (vect_is_simple_reduction): Support reduction with induction as
25107 one of the operands.
25108 (vect_is_simple_iv_evolution): Fix formatting.
25109 * tree-vect-analyze.c (vect_mark_stmts_to_be_vectorized): Fix
25110 formatting. Don't mark induction phis for vectorization.
25111 (vect_analyze_scalar_cycles): Analyze all inductions, then reductions.
25112 * tree-vect-transform.c (get_initial_def_for_induction): New function.
25113 (vect_get_vec_def_for_operand): Support induction.
25114 (vect_get_vec_def_for_stmt_copy): Fix formatting and add check for
25115 induction case.
25116 (vectorizable_reduction): Support reduction with induction as one of
25117 the operands.
25118 (vectorizable_type_demotion): Use def-type of stmt argument rather
25119 than dummy def-type.
25120
25121 * tree-ssa-loop.c (gate_scev_const_prop): Return the value of
25122 flag_tree_scev_cprop.
25123 * common.opt (tree-scev-cprop): New flag.
25124
25125 * tree-vect-transform.c (vect_create_destination_var): Use 'kind' in
25126 call to vect_get_new_vect_var.
25127
25128 2007-02-06 Ira Rosen <irar@il.ibm.com>
25129
25130 * tree-vect-patterns.c (vect_recog_widen_mult_pattern): Check that
25131 vectype is not NULL.
25132 (vect_pattern_recog_1): Likewise.
25133
25134 2007-02-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
25135
25136 * fold-const.c (negate_expr_p): Handle CONJ_EXPR.
25137 (fold_negate_expr): Likewise.
25138
25139 2007-02-05 Alexandre Oliva <aoliva@redhat.com>
25140
25141 PR debug/30189
25142 * dwarf2out.c (modified_type_die): Follow DECL_ORIGINAL_TYPE
25143 even if cv-qualification is the same.
25144
25145 2007-02-05 Geoffrey Keating <geoffk@apple.com>
25146
25147 * config/rs6000/darwin-tramp.asm (__trampoline_setup): Call
25148 __enable_execute_stack on completion.
25149
25150 2007-02-05 Harsha Jagasia <harsha.jagasia@amd.com>
25151
25152 * config/i386/athlon.md (athlon_fldxf_k8, athlon_fld_k8,
25153 athlon_fstxf_k8, athlon_fst_k8, athlon_fist, athlon_fmov,
25154 athlon_fadd_load, athlon_fadd_load_k8, athlon_fadd, athlon_fmul,
25155 athlon_fmul_load, athlon_fmul_load_k8, athlon_fsgn,
25156 athlon_fdiv_load, athlon_fdiv_load_k8, athlon_fdiv_k8,
25157 athlon_fpspc_load, athlon_fpspc, athlon_fcmov_load,
25158 athlon_fcmov_load_k8, athlon_fcmov_k8, athlon_fcomi_load_k8,
25159 athlon_fcomi, athlon_fcom_load_k8, athlon_fcom): Added amdfam10.
25160
25161 2007-02-05 Harsha Jagasia <harsha.jagasia@amd.com>
25162
25163 * config/i386/i386.md (x86_sahf_1, cmpfp_i_mixed, cmpfp_i_sse,
25164 cmpfp_i_i387, cmpfp_iu_mixed, cmpfp_iu_sse, cmpfp_iu_387,
25165 swapsi, swaphi_1, swapqi_1, swapdi_rex64, fix_truncsfdi_sse,
25166 fix_truncdfdi_sse, fix_truncsfsi_sse, fix_truncdfsi_sse,
25167 x86_fldcw_1, floatsisf2_mixed, floatsisf2_sse, floatdisf2_mixed,
25168 floatdisf2_sse, floatsidf2_mixed, floatsidf2_sse,
25169 floatdidf2_mixed, floatdidf2_sse, muldi3_1_rex64, mulsi3_1,
25170 mulsi3_1_zext, mulhi3_1, mulqi3_1, umulqihi3_1, mulqihi3_insn,
25171 umulditi3_insn, umulsidi3_insn, mulditi3_insn, mulsidi3_insn,
25172 umuldi3_highpart_rex64, umulsi3_highpart_insn,
25173 umulsi3_highpart_zext, smuldi3_highpart_rex64,
25174 smulsi3_highpart_insn, smulsi3_highpart_zext, x86_64_shld,
25175 x86_shld_1, x86_64_shrd, sqrtsf2_mixed, sqrtsf2_sse,
25176 sqrtsf2_i387, sqrtdf2_mixed, sqrtdf2_sse, sqrtdf2_i387,
25177 sqrtextendsfdf2_i387, sqrtxf2, sqrtextendsfxf2_i387,
25178 sqrtextenddfxf2_i387): Added amdfam10_decode.
25179
25180 * config/i386/athlon.md (athlon_idirect_amdfam10,
25181 athlon_ivector_amdfam10, athlon_idirect_load_amdfam10,
25182 athlon_ivector_load_amdfam10, athlon_idirect_both_amdfam10,
25183 athlon_ivector_both_amdfam10, athlon_idirect_store_amdfam10,
25184 athlon_ivector_store_amdfam10): New define_insn_reservation.
25185 (athlon_idirect_loadmov, athlon_idirect_movstore): Added
25186 amdfam10.
25187
25188 2007-02-05 Harsha Jagasia <harsha.jagasia@amd.com>
25189
25190 * config/i386/athlon.md (athlon_call_amdfam10,
25191 athlon_pop_amdfam10, athlon_lea_amdfam10): New
25192 define_insn_reservation.
25193 (athlon_branch, athlon_push, athlon_leave_k8, athlon_imul_k8,
25194 athlon_imul_k8_DI, athlon_imul_mem_k8, athlon_imul_mem_k8_DI,
25195 athlon_idiv, athlon_idiv_mem, athlon_str): Added amdfam10.
25196
25197 2007-02-05 Harsha Jagasia <harsha.jagasia@amd.com>
25198
25199 * config/i386/athlon.md (athlon_sseld_amdfam10,
25200 athlon_mmxld_amdfam10, athlon_ssest_amdfam10,
25201 athlon_mmxssest_short_amdfam10): New define_insn_reservation.
25202
25203 2007-02-05 Harsha Jagasia <harsha.jagasia@amd.com>
25204
25205 * config/i386/athlon.md (athlon_sseins_amdfam10): New
25206 define_insn_reservation.
25207 * config/i386/i386.md (sseins): Added sseins to define_attr type
25208 and define_attr unit.
25209 * config/i386/sse.md: Set type attribute to sseins for insertq
25210 and insertqi.
25211
25212 2007-02-05 Harsha Jagasia <harsha.jagasia@amd.com>
25213
25214 * config/i386/athlon.md (sselog_load_amdfam10, sselog_amdfam10,
25215 ssecmpvector_load_amdfam10, ssecmpvector_amdfam10,
25216 ssecomi_load_amdfam10, ssecomi_amdfam10,
25217 sseaddvector_load_amdfam10, sseaddvector_amdfam10): New
25218 define_insn_reservation.
25219 (ssecmp_load_k8, ssecmp, sseadd_load_k8, seadd): Added amdfam10.
25220
25221 2007-02-05 Harsha Jagasia <harsha.jagasia@amd.com>
25222
25223 * config/i386/athlon.md (cvtss2sd_load_amdfam10,
25224 cvtss2sd_amdfam10, cvtps2pd_load_amdfam10, cvtps2pd_amdfam10,
25225 cvtsi2sd_load_amdfam10, cvtsi2ss_load_amdfam10,
25226 cvtsi2sd_amdfam10, cvtsi2ss_amdfam10, cvtsd2ss_load_amdfam10,
25227 cvtsd2ss_amdfam10, cvtpd2ps_load_amdfam10, cvtpd2ps_amdfam10,
25228 cvtsX2si_load_amdfam10, cvtsX2si_amdfam10): New
25229 define_insn_reservation.
25230
25231 * config/i386/sse.md (cvtsi2ss, cvtsi2ssq, cvtss2si,
25232 cvtss2siq, cvttss2si, cvttss2siq, cvtsi2sd, cvtsi2sdq,
25233 cvtsd2si, cvtsd2siq, cvttsd2si, cvttsd2siq,
25234 cvtpd2dq, cvttpd2dq, cvtsd2ss, cvtss2sd,
25235 cvtpd2ps, cvtps2pd): Added amdfam10_decode attribute.
25236
25237 2007-02-05 Harsha Jagasia <harsha.jagasia@amd.com>
25238
25239 * config/i386/athlon.md (athlon_ssedivvector_amdfam10,
25240 athlon_ssedivvector_load_amdfam10, athlon_ssemulvector_amdfam10,
25241 athlon_ssemulvector_load_amdfam10): New define_insn_reservation.
25242 (athlon_ssediv, athlon_ssediv_load_k8, athlon_ssemul,
25243 athlon_ssemul_load_k8): Added amdfam10.
25244
25245 2007-02-05 Harsha Jagasia <harsha.jagasia@amd.com>
25246
25247 * config/i386/i386.h (TARGET_SSE_UNALIGNED_MOVE_OPTIMAL): New macro.
25248 (x86_sse_unaligned_move_optimal): New variable.
25249
25250 * config/i386/i386.c (x86_sse_unaligned_move_optimal): Enable for
25251 m_AMDFAM10.
25252 (ix86_expand_vector_move_misalign): Add code to generate movupd/movups
25253 for unaligned vector SSE double/single precision loads for AMDFAM10.
25254
25255 2007-02-05 Harsha Jagasia <harsha.jagasia@amd.com>
25256
25257 * config/i386/i386.h (TARGET_AMDFAM10): New macro.
25258 (TARGET_CPU_CPP_BUILTINS): Add code for amdfam10.
25259 Define TARGET_CPU_DEFAULT_amdfam10.
25260 (TARGET_CPU_DEFAULT_NAMES): Add amdfam10.
25261 (processor_type): Add PROCESSOR_AMDFAM10.
25262
25263 * config/i386/i386.md: Add amdfam10 as a new cpu attribute to match
25264 processor_type in config/i386/i386.h.
25265 Enable imul peepholes for TARGET_AMDFAM10.
25266
25267 * config.gcc: Add support for --with-cpu option for amdfam10.
25268
25269 * config/i386/i386.c (amdfam10_cost): New variable.
25270 (m_AMDFAM10): New macro.
25271 (m_ATHLON_K8_AMDFAM10): New macro.
25272 (x86_use_leave, x86_push_memory, x86_movx, x86_unroll_strlen,
25273 x86_cmove, x86_3dnow_a, x86_deep_branch, x86_use_simode_fiop,
25274 x86_promote_QImode, x86_integer_DFmode_moves,
25275 x86_partial_reg_dependency, x86_memory_mismatch_stall,
25276 x86_accumulate_outgoing_args, x86_arch_always_fancy_math_387,
25277 x86_sse_partial_reg_dependency, x86_sse_typeless_stores,
25278 x86_use_ffreep, x86_use_incdec, x86_four_jump_limit,
25279 x86_schedule, x86_use_bt, x86_cmpxchg16b, x86_pad_returns):
25280 Enable/disable for amdfam10.
25281 (override_options): Add amdfam10_cost to processor_target_table.
25282 Set up PROCESSOR_AMDFAM10 for amdfam10 entry in
25283 processor_alias_table.
25284 (ix86_issue_rate): Add PROCESSOR_AMDFAM10.
25285 (ix86_adjust_cost): Add code for amdfam10.
25286
25287 2007-02-05 Harsha Jagasia <harsha.jagasia@amd.com>
25288
25289 * config/i386/i386.opt: Add new Advanced Bit Manipulation (-mabm)
25290 instruction set feature flag. Add new (-mpopcnt) flag for popcnt
25291 instruction. Add new SSE4A (-msse4a) instruction set feature flag.
25292 * config/i386/i386.h: Add builtin definition for SSE4A.
25293 * config/i386/i386.md: Add support for ABM instructions
25294 (popcnt and lzcnt).
25295 * config/i386/sse.md: Add support for SSE4A instructions
25296 (movntss, movntsd, extrq, insertq).
25297 * config/i386/i386.c: Add support for ABM and SSE4A builtins.
25298 Add -march=amdfam10 flag.
25299 * config/i386/ammintrin.h: Add support for SSE4A intrinsics.
25300 * doc/invoke.texi: Add documentation on flags for sse4a, abm, popcnt
25301 and amdfam10.
25302 * doc/extend.texi: Add documentation for SSE4A builtins.
25303
25304 2007-02-05 Bob Wilson <bob.wilson@acm.org>
25305
25306 * config/xtensa/xtensa.c (constantpool_mem_p): Skip over SUBREGs.
25307
25308 2007-02-05 Richard Guenther <rguenther@suse.de>
25309
25310 * tree-vectorizer.h (vectorizable_function): Add argument type
25311 argument, change return type.
25312 * tree-vect-patterns.c (vect_recog_pow_pattern): Adjust caller.
25313 * tree-vect-transform.c (vectorizable_function): Handle extra
25314 argument, return vectorized function decl.
25315 (build_vectorized_function_call): Remove.
25316 (vectorizable_call): Handle calls with result and argument types
25317 differing. Handle loop vectorization factor correctly.
25318 * targhooks.c (default_builtin_vectorized_function): Adjust for
25319 extra argument.
25320 * targhooks.h (default_builtin_vectorized_function): Likewise.
25321 * target.h (builtin_vectorized_function): Add argument type
25322 argument.
25323 * config/i386/i386.c (ix86_builtin_vectorized_function): Handle
25324 extra argument, allow vectorizing of lrintf.
25325 * doc/tm.texi (TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION): Adjust
25326 documentation of target hook.
25327
25328 2007-02-05 Hans-Peter Nilsson <hp@axis.com>
25329
25330 PR target/30665
25331 * config/cris/cris.md ("*andsi_movu", "*andsi_clear", "*andhi_movu")
25332 ("*andhi_clear", andu (casesi+45)): For size-changed operand where
25333 memory is allowed, require !side_effects_p, not just !MEM_VOLATILE_P.
25334
25335 2007-02-05 Roger Sayle <roger@eyesopen.com>
25336
25337 * fold-const.c (fold_unary) <REAL_PART>: Test for availability of
25338 BUILT_IN_COS before simplifying REAL_PART(CEXPI)) to COS.
25339 <IMAG_PART>: Likewise, check for availability of BUILT_IN_SIN.
25340 * builtins.c (fold_builtin_sincos): Check for TARGET_C99_FUNCTIONS
25341 before canonicalizing sincos to cexpi.
25342 (fold_builtin_cexp): Likewise, for canonicalizing cexp to cexpi.
25343
25344 2007-02-05 Roger Sayle <roger@eyesopen.com>
25345
25346 * config/alpha/alpha.c (alpha_add_builtins): New Helper function.
25347 Set TREE_READONLY and TREE_NOTHROW directly, not via attributes.
25348 (alpha_init_builtins): Use alpha_add_builtins to process tables.
25349
25350 2007-02-05 Roger Sayle <roger@eyesopen.com>
25351
25352 * mips-tfile.c (initialize_init_file): Correct endianness test.
25353
25354 2007-02-05 Kazu Hirata <kazu@codesourcery.com>
25355
25356 * config/m68k/m68k.md (pushdi-1, pushdi, movsi+1): Don't use
25357 the 'y' constraint.
25358
25359 2007-02-05 Richard Sandiford <richard@codesourcery.com>
25360
25361 * dwarf2out.c (dwarf2out_frame_debug_expr): Record the register
25362 saves in a PARALLEL before the register assignments.
25363
25364 2007-02-05 Richard Sandiford <richard@codesourcery.com>
25365
25366 * doc/tm.texi (DWARF_ALT_FRAME_RETURN_COLUMN): Do not require
25367 DWARF_FRAME_RETURN_COLUMN to be a general register.
25368 * dwarf2out.c (init_return_column_size): New function, split from...
25369 (expand_builtin_init_dwarf_reg_sizes): ...here. Allow both
25370 DWARF_FRAME_RETURN_COLUMN and DWARF_ALT_FRAME_RETURN_COLUMN
25371 to be nongeneral registers.
25372 * config/m68k/m68k.h (DWARF_FRAME_REGNUM): Only map FP and
25373 integer registers.
25374 (DWARF_FRAME_REGISTERS, DWARF_FRAME_RETURN_COLUMN): Define.
25375 (DWARF_ALT_FRAME_RETURN_COLUMN): Define.
25376
25377 2007-02-04 Zdenek Dvorak <dvorakz@suse.cz>
25378
25379 * cfgcleanup.c (try_optimize_cfg): Avoid removing ENTRY_BLOCK_PTR.
25380
25381 2007-02-04 Zdenek Dvorak <dvorakz@suse.cz>
25382
25383 * cfgloopmanip.c (loop_delete_branch_edge): Removed.
25384 (remove_path): Use can_remove_branch_p and remove_branch instead
25385 of loop_delete_branch_edge.
25386 * tree-ssa-loop-manip.c (scale_dominated_blocks_in_loop): New function.
25387 (tree_transform_and_unroll_loop): Remove dead branches immediately.
25388 Update profile using scale_dominated_blocks_in_loop.
25389 * cfghooks.c (can_remove_branch_p, remove_branch): New functions.
25390 * cfghooks.h (struct cfg_hooks): Add can_remove_branch_p.
25391 (can_remove_branch_p, remove_branch): Declare.
25392 * tree-cfg.c (tree_can_remove_branch_p): New function.
25393 (tree_cfg_hooks): Add tree_can_remove_branch_p.
25394 * cfgrtl.c (rtl_can_remove_branch_p): New function.
25395 (rtl_cfg_hooks, cfg_layout_rtl_cfg_hook): Add rtl_can_remove_branch_p.
25396
25397 2007-02-05 Jan Hubicka <jh@suse.cz>
25398
25399 PR middle-end/30696
25400 * ipa-inline.c (cgraph_clone_inlined_nodes): When there are unanalyzed
25401 nodes in cgraph, don't remove offline copy of the function.
25402
25403 2007-02-04 Jan Hubicka <jh@suse.cz>
25404
25405 * tree-sra.c (sra_walk_expr): Add linebreaks. BITFIELD_REFs into
25406 vectors might cause maybe_lookup_element_for_expr to be called
25407 on non-sra-candidate.
25408
25409 2007-02-04 Kazu Hirata <kazu@codesourcery.com>
25410
25411 * config/bfin/bfin-modes.def, config/bfin/bfin.c,
25412 config/bfin/bfin.md, config/bfin/predicates.md: Follow
25413 spelling conventions.
25414
25415 2007-02-04 Richard Guenther <rguenther@suse.de>
25416
25417 PR middle-end/30636
25418 * fold-const.c (try_move_mult_to_index): Make sure to not
25419 overflow one dimension of a multi-dimensional array access.
25420
25421 2007-02-04 Jan Hubicka <jh@suse.cz>
25422
25423 * passes.c (init_optimization_passes): Reindent.
25424
25425 2007-02-04 Jan Hubicka <jh@suse.cz>
25426 Eric Botcazou <ebotcazou@adacore.com>
25427
25428 * tree-optimize.c (has_abnormal_outgoing_edge_p): Move to...
25429 (execute_fixup_cfg): Break out the abnormal goto code.
25430 * tree-inline.c (has_abnormal_outgoing_edge_p): ...here.
25431 (make_nonlocal_label_edges): Move here from execute_fixup_cfg.
25432 (optimize_inline_calls): Call make_nonlocal_label_edges.
25433
25434 2007-02-04 Jan Hubicka <jh@suse.cz>
25435
25436 * tree-ssa-copyrename.c (copy_rename_partition_coalesce): Return
25437 true when something was changed.
25438 (rename_ssa_copies): When something was changed, do
25439 TODO_remove_unused_locals.
25440 * tree-ssa-forwprop.c (tree_ssa_forward_propagate_single_use_value):
25441 add TODO_remove_unused_locals when instruction was removed.
25442
25443 2007-02-04 Jan Hubicka <jh@suse.cz>
25444
25445 * ipa-inline.c (try_inline): Improve debug output; work on already
25446 inline edges too.
25447 (cgraph_decide_inlining_incrementally): Indent; improve debug output;
25448 call try_inline for already inlined edges too when flattening;
25449 inline also functions that make callee growth but overall unit size
25450 reduce.
25451
25452 2007-02-04 Kazu Hirata <kazu@codesourcery.com>
25453
25454 * config/m32c/bitops.md, config/m32c/jump.md,
25455 config/m32c/m32c.c, config/m32c/m32c.h, config/m32r/m32r.c,
25456 config/m32r/m32r.h, config/m32r/m32r.md,
25457 config/m32r/predicates.md, config/m68hc11/larith.asm,
25458 config/m68hc11/m68hc11.c, config/m68hc11/m68hc11.h,
25459 config/m68k/m68k.h, config/mcore/mcore.md, config/mips/4k.md,
25460 config/mips/mips-protos.h, config/mips/mips.c,
25461 config/mips/mips.h, config/mips/mips.md, config/mips/mips16.S,
25462 config/mn10300/mn10300.h, config/mn10300/predicates.md,
25463 config/mt/mt.c, config/mt/mt.h, config/mt/mt.md: Follow
25464 spelling conventions.
25465
25466 * config/v850/v850.c, config/v850/v850.h, config/v850/v850.md:
25467 Follow spelling conventions.
25468
25469 2007-02-03 Douglas Gregor <doug.gregor@gmail.com>
25470
25471 * c-opts.c (c_common_post_options): If C++0x mode is enabled, don't
25472 warn about C++0x compatibility.
25473
25474 2007-02-04 Kazu Hirata <kazu@codesourcery.com>
25475
25476 * config/h8300/h8300.c, config/h8300/h8300.h,
25477 config/h8300/h8300.md: Follow spelling conventions.
25478
25479 2007-02-03 Uros Bizjak <ubizjak@gmail.com>
25480
25481 PR middle-end/30667
25482 * combine.c (try_combine): Do not substitute source operand
25483 with constants wider than 2 * HOST_BITS_PER_WIDE_INT.
25484
25485 2007-02-03 Jan Hubicka <jh@suse.cz>
25486
25487 PR gcov-profile/30650
25488 * value-prof.c (stringop_block_profile): Fix handling of size counter;
25489 do not divide by zero for never executed counters.
25490 (tree_find_values_to_profile): Fix counters.
25491 * gcov-ui.h (GCOV_COUNTER_AVERAGE, GCOV_COUNTER_IOR): Fix comments.
25492
25493 2007-02-03 Ian Lance Taylor <iant@google.com>
25494
25495 * lower-subreg.c (simple_move_operand): New static function,
25496 broken out of simple_move. Reject LABEL_REF, SYMBOL_REF, and HIGH
25497 operands.
25498 (simple_move): Call simple_move_operand.
25499 (find_decomposable_subregs): Add special handling of MEMs.
25500 (can_decompose_p): Rename from cannot_decompose_p. Reverse
25501 meaning of return value. If we see a hard register, test whether
25502 it can store a word_mode value. Change all callers.
25503
25504 2007-02-03 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
25505
25506 * pa.md (addvdi3, addvsi3, subvdi3, subvsi3, negvdi2, negvsi2): New
25507 ftrapv insns and expanders.
25508 (subdi3): Change define_expand operand 1 to arith11_operand, and
25509 operand 2 to reg_or_0_operand. Change constraints of 64-bit insn
25510 pattern to handle reg_or_0 operands. Revise 32-bit insn pattern to
25511 handle 11-bit constants and reg_or_0 operands in operands 1 and 2,
25512 respectively.
25513
25514 PR middle-end/30174
25515 * varasm.c (notice_global_symbol): Treat global objects as weak when
25516 flag_shlib is true.
25517
25518 2007-02-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
25519
25520 * emit-rtl.c (dconstpi): Delete.
25521 (dconstsqrt2): New.
25522 (init_emit_once): Delete dconstpi and init dconstsqrt2.
25523 * real.h (dconstpi): Delete.
25524 (dconstsqrt2): New.
25525 * builtins.c (fold_builtin_cabs): Use dconstsqrt2.
25526 (fold_builtin_hypot): Likewise.
25527
25528 2007-02-03 Tom Tromey <tromey@redhat.com>
25529
25530 PR driver/30246
25531 * gcc.c (cpp_unique_options): Any of -ggdb3, -gstabs3,
25532 -gcoff3, -gxcoff3, -gvms3 implies -dD.
25533
25534 2007-02-03 Kazu Hirata <kazu@codesourcery.com>
25535
25536 * c-decl.c, config/avr/avr.c, config/avr/avr.h,
25537 config/m68k/m68k.c, config/m68k/netbsd-elf.h,
25538 config/mn10300/mn10300.c, config/pdp11/pdp11.h,
25539 config/rs6000/cell.md, config/rs6000/darwin.h,
25540 config/sh/sh.md, config/sh/sh4-300.md, config/spu/spu.c,
25541 config/spu/spu.md, cselib.c, expr.c, haifa-sched.c, hwint.h,
25542 jump.c, reload.c, sched-deps.c, sched-int.h, tree-inline.c,
25543 tree-profile.c, tree-ssa-live.h, tree-vrp.c: Fix comment
25544 typos. Follow spelling conventions.
25545 * doc/invoke.texi: Follow spelling conventions.
25546
25547 2007-02-03 Roger Sayle <roger@eyesopen.com>
25548
25549 * simplify-rtx.c (simplify_relational_operation_1): Implement some
25550 canonicalization transformations that attempt to simplify integer
25551 constant comparisons to become comparisons against zero.
25552
25553 2007-02-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
25554
25555 * builtins.c (fold_builtin_cabs): Fold cabs(x+xi) into
25556 fabs(x)*sqrt(2).
25557 * fold-const.c (fold_binary): Fix comment typos. Fold complex
25558 (x,0)-(0,y) into (x,-y). Likewise (0,y)-(x,0) into (-x,y).
25559
25560 2007-02-02 Mike Stump <mrs@apple.com>
25561
25562 * config/darwin9.h (DARWIN_LINKER_GENERATES_ISLANDS): Add.
25563 * config/rs6000/rs6000.c (DARWIN_GENERATE_ISLANDS): Add.
25564 (output_call): Use DARWIN_GENERATE_ISLANDS to decide when to
25565 generate a branch island.
25566
25567 2007-02-02 Bob Wilson <bob.wilson@acm.org>
25568
25569 * config/xtensa/xtensa.c (smalloffset_mem_p): Use BASE_REG_P.
25570 (xtensa_legitimate_address_p): New.
25571 (xtensa_legitimize_address): New.
25572 (xtensa_output_addr_const_extra): New.
25573 * config/xtensa/xtensa.h (REG_OK_STRICT_FLAG): Define.
25574 (BASE_REG_P): New.
25575 (REG_OK_FOR_BASE_P): Use BASE_REG_P.
25576 (GO_IF_LEGITIMATE_ADDRESS): Move code to xtensa_legitimate_address_p.
25577 (LEGITIMIZE_ADDRESS): Move code to xtensa_legitimize_address.
25578 (OUTPUT_ADDR_CONST_EXTRA): Move code to xtensa_output_addr_const_extra.
25579 * config/xtensa/xtensa-protos.h (xtensa_legitimate_address_p): New.
25580 (xtensa_legitimize_address): New.
25581 (xtensa_output_addr_const_extra): New.
25582
25583 2007-02-02 Steve Ellcey <sje@cup.hp.com>
25584
25585 * config/ia64/ia64.c (ia64_print_operand): Fix compare strings.
25586
25587 2007-02-02 Ian Lance Taylor <iant@google.com>
25588
25589 * expmed.c (expand_divmod): Add comment.
25590
25591 2007-02-02 Kazu Hirata <kazu@codesourcery.com>
25592
25593 * emit-rtl.c (renumber_insns): Remove.
25594 * flags.h: Remove the extern for flag_renumber_insns.
25595 * rtl.h: Remove the prototype for renumber_insns.
25596 * toplev.c (flag_renumber_insns): Remove.
25597
25598 2007-02-02 Hui-May Chang <hm.chang@apple.com>
25599
25600 Revert for x86 darwin:
25601 2005-06-19 Uros Bizjak <uros@kss-loka.si>
25602
25603 * config/i386/i386.c (ix86_function_arg_regno_p): Put back the
25604 code before the following patch under TARGET_MACHO.
25605 (ix86_function_value_regno_p): Likewise.
25606
25607 2007-02-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
25608
25609 * fold-const.c (negate_expr_p, fold_negate_expr): Handle
25610 COMPLEX_EXPR.
25611
25612 2007-02-02 Maxim Kuvyrkov <mkuvyrkov@ispras.ru>
25613
25614 PR target/29682
25615 * config/ia64/ia64.c (ia64_speculate_insn): Restrict to memory
25616 loads to general or fp registers. Add comments.
25617 * config/ia64/ia64.md (reg_pred_prefix): Add comment.
25618
25619 2007-02-02 Paolo Bonzini <bonzini@gnu.org>
25620
25621 * pointer-set.c (insert_aux): Only return insertion slot.
25622 (pointer_set_insert): Adjust.
25623 (pointer_set_traverse, struct pointer_map_t, pointer_map_create,
25624 pointer_map_destroy, pointer_map_insert, pointer_map_contains,
25625 pointer_map_traverse): New.
25626 * pointer-set.h (pointer_set_traverse, struct pointer_map_t,
25627 pointer_map_create, pointer_map_destroy, pointer_map_insert,
25628 pointer_map_contains, pointer_map_traverse): Declare.
25629
25630 2007-02-02 Jakub Jelinek <jakub@redhat.com>
25631
25632 PR middle-end/30473
25633 * builtins.c (fold_builtin_sprintf): Do not attempt to optimize
25634 sprintf (str, "%s"). Do not optimize sprintf (str, "nopercent", p++).
25635
25636 2007-02-02 Maxim Kuvyrkov <mkuvyrkov@ispras.ru>
25637
25638 * sched-int.h (ds_to_dk, dk_to_ds): Declare functions.
25639
25640 (struct _dep): New type.
25641 (dep_t): New typedef.
25642 (DEP_PRO, DEP_CON, DEP_KIND): New access macros.
25643 (DEP_STATUS): New access macro. The macro with the same name was
25644 renamed to DEP_LINK_STATUS.
25645 (dep_init): Declare function
25646
25647 (struct _dep_link): New type.
25648 (dep_link_t): New typedef.
25649 (DEP_LINK_NODE, DEP_LINK_NEXT, DEP_LINK_PREV_NEXTP): New access macros.
25650 (DEP_LINK_DEP, DEP_LINK_PRO, DEP_LINK_CON, DEP_LINK_KIND): New macros.
25651 (DEP_LINK_STATUS): New macro.
25652 (debug_dep_links): New debug function.
25653
25654 (struct _deps_list): New type.
25655 (deps_list_t): New typedef.
25656 (DEPS_LIST_FIRST): New access macro.
25657 (FOR_EACH_DEP_LINK): New cycle macro.
25658 (create_deps_list, free_deps_list, delete_deps_list): Declare
25659 functions.
25660 (deps_list_empty_p, debug_deps_list, add_back_dep_to_deps_list): Ditto.
25661 (find_link_by_pro_in_deps_list, find_link_by_con_in_deps_list): Ditto.
25662 (copy_deps_list_change_con): Ditto.
25663
25664 (move_dep_link): Declare function.
25665
25666 (struct _dep_node): New type.
25667 (dep_node_t): New typedef.
25668 (DEP_NODE_BACK, DEP_NODE_DEP, DEP_NODE_FORW): New access macros.
25669
25670 (struct haifa_insn_data.back_deps): New field to hold backward
25671 dependencies of the insn.
25672 (struct haifa_insn_data.depend): Rename to forw_deps. Change its type
25673 to deps_list_t.
25674 (struct haifa_insn_data.resolved_deps): Rename to resolved_back_deps.
25675 Change its type to deps_list_t.
25676 (INSN_BACK_DEPS): New access macro to use instead of LOG_LINKS.
25677 (INSN_DEPEND): Rename to INSN_FORW_DEPS.
25678 (RESOLVED_DEPS): Rename to INSN_RESOLVED_BACK_DEPS.
25679
25680 (INSN_COST): Move to haifa-sched.c. Use insn_cost () instead.
25681
25682 (DEP_STATUS): Rename to DEP_LINK_STATUS. Fix typo in the comment.
25683
25684 (add_forw_dep, delete_back_forw_dep, insn_cost): Update declaration
25685 and all callers.
25686 (dep_cost): Declare.
25687
25688 * sched-deps.c (CHECK): New macro to (en/dis)able sanity checks.
25689 (ds_to_dk, dk_to_ds): New functions.
25690
25691 (init_dep_1): New static function.
25692 (init_dep): New function.
25693 (copy_dep): New static function.
25694
25695 (dep_link_consistent_p, attach_dep_link, add_to_deps_list): New static
25696 functions.
25697 (detach_dep_link): New static function.
25698 (move_dep_link): New function.
25699
25700 (dep_links_consistent_p, dump_dep_links): New static functions.
25701 (debug_dep_links): New debugging function.
25702
25703 (deps_obstack, dl_obstack, dn_obstack): New static variables.
25704
25705 (alloc_deps_list, init_deps_list): New static functions.
25706 (create_deps_list): New function.
25707 (clear_deps_list): New static function.
25708 (free_deps_list, delete_deps_list, deps_list_empty_p): New functions.
25709 (deps_list_consistent_p, dump_deps_list): New static functions.
25710 (debug_deps_list): New function.
25711 (add_back_dep_to_deps_list, find_link_by_pro_in_deps_list): New
25712 functions.
25713 (find_link_by_con_in_deps_list, copy_deps_list_change_con): Ditto.
25714
25715 (maybe_add_or_update_back_dep_1, add_or_update_back_dep_1): Update to
25716 use new scheduler dependencies lists.
25717 (add_back_dep, delete_all_dependences, fixup_sched_groups): Ditto.
25718 (sched_analyze): Ditto. Initialize dependencies lists.
25719 (add_forw_dep, compute_forward_dependences): Update to use new
25720 scheduler dependencies lists.
25721
25722 (init_dependency_caches): Init deps_obstack.
25723 (free_dependency_caches): Free deps_obstack.
25724
25725 (adjust_add_sorted_back_dep, adjust_back_add_forw_dep): Update to use
25726 new scheduler dependencies lists.
25727 (delete_forw_dep, add_or_update_back_forw_dep): Ditto.
25728 (add_back_forw_dep, delete_back_forw_dep): Ditto.
25729
25730 * sched-rgn.c (set_spec_fed, find_conditional_protection, is_pfree):
25731 Update to use new scheduler dependencies lists.
25732 (is_conditionally_protected, is_prisky, add_branch_dependences): Ditto.
25733 (debug_dependencies): Ditto.
25734 (schedule_region): Update comments.
25735
25736 * sched-ebb.c (earliest_block_with_similiar_load): Update to use new
25737 scheduler dependencies lists.
25738 (schedule_ebb): Update comments.
25739
25740 * rtl.def (DEPS_LIST): Remove.
25741
25742 * lists.c (unused_deps_list): Remove.
25743 (free_list): Update assertions.
25744
25745 (alloc_DEPS_LIST, free_DEPS_LIST_list, free_DEPS_LIST_node): Remove.
25746 (remove_free_DEPS_LIST_elem, copy_DEPS_LIST_list): Ditto.
25747
25748 * rtl.h (free_DEPS_LIST_list, alloc_DEPS_LIST): Remove declarations.
25749 (remove_free_DEPS_LIST_elem, copy_DEPS_LIST_list): Ditto.
25750
25751 * haifa-sched.c (comments): Update.
25752 (insn_cost1): Remove. Inline the code into insn_cost ().
25753 (insn_cost): Update to use new scheduler dependencies lists. Move
25754 processing of the dependency cost to dep_cost ().
25755 (dep_cost): New function. Use it instead of insn_cost () when
25756 evaluating cost of the dependency. Use compatible interface to
25757 interact with the target.
25758 (priority): Update to use new scheduler dependencies lists.
25759 (rank_for_schedule): Ditto. Optimize heuristic that prefers the insn
25760 with greater number of insns that depend on the insn.
25761 (schedule_insn): Update to use new scheduler dependencies lists. Add
25762 code to free backward dependencies lists. Inline and optimize code
25763 from resolve_dep () - see PR28071.
25764 (ok_for_early_queue_removal): Update to use new scheduler dependencies
25765 lists. Update call to targetm.sched.is_costly_dependence hook.
25766
25767 (fix_inter_tick, try_ready, fix_tick_ready): Update to use new
25768 scheduler dependencies lists.
25769
25770 (resolve_dep): Remove. Move the logic to schedule_insn ().
25771 (init_h_i_d): Initialize dependencies lists.
25772
25773 (process_insn_depend_be_in_spec): Rename to
25774 process_insn_forw_deps_be_in_spec. Update to use new scheduler
25775 dependencies lists.
25776 (add_to_speculative_block, create_check_block_twin, fix_recovery_deps):
25777 Update to use new scheduler dependencies lists.
25778 (clear_priorities, calc_priorities, add_jump_dependencies): Ditto.
25779
25780 * ddg.c (create_ddg_dependence, create_ddg_dep_no_link): Update to use
25781 new scheduler dependencies lists.
25782 (build_intra_loop_deps): Ditto.
25783
25784 * target.h (struct _dep): Declare to use in
25785 gcc_target.sched.is_costly_dependence.
25786 (struct gcc_target.sched.adjust_cost): Fix typo.
25787 (struct gcc_target.sched.is_costly_dependence): Change signature to
25788 use single dep_t parameter instead of an equivalent triad.
25789 (struct gcc_target.sched.adjust_cost_2): Remove.
25790
25791 * target-def.h (TARGET_SCHED_ADJUST_COST_2): Remove.
25792
25793 * reg-notes.def (DEP_TRUE, DEP_OUTPUT, DEP_ANTI): Update comments.
25794
25795 * doc/tm.texi (TARGET_SCHED_IS_COSTLY_DEPENDENCE): Update
25796 documentation.
25797 (TARGET_SCHED_ADJUST_COST_2): Remove documentation.
25798
25799 * doc/rtl.texi (LOG_LINKS): Remove part about instruction scheduler.
25800 (REG_DEP_TRUE): Document.
25801
25802 * config/ia64/ia64.c (ia64_adjust_cost_2): Rename to ia64_adjust_cost.
25803 Change signature to correspond to the targetm.sched.adjust_cost hook.
25804 Update use in TARGET_SCHED_ADJUST_COST_2.
25805 (TARGET_SCHED_ADJUST_COST_2): Rename to TARGET_SCHED_ADJUST_COST.
25806 (ia64_dependencies_evaluation_hook, ia64_dfa_new_cycle): Update to use
25807 new scheduler dependencies lists.
25808 (ia64_gen_check): Ditto.
25809
25810 * config/mips/mips.c (vr4130_swap_insns_p): Update to use new
25811 scheduler dependencies lists.
25812
25813 * config/rs6000/rs6000.c (rs6000_is_costly_dependence): Change
25814 signature to correspond to the targetm.sched.is_costly_dependence hook.
25815 (is_costly_group): Update to use new scheduler dependencies lists.
25816
25817 * config/spu/spu.c (spu_sched_adjust_cost): Use insn_cost () function
25818 instead of INSN_COST () macro.
25819
25820 2007-02-01 Ian Lance Taylor <iant@google.com>
25821
25822 * lower-subreg.c (resolve_clobber): Handle a subreg of a concatn.
25823
25824 2007-02-01 Guy Martin <gmsoft@gentoo.org>
25825
25826 * pa.md (tp_load): Correct mfctl instruction syntax.
25827
25828 2007-02-01 Geoffrey Keating <geoffk@apple.com>
25829
25830 * config/rs6000/rs6000.c (rs6000_stack_info): Correct
25831 altivec_padding_size calculation on AIX. Improve comment, add
25832 assert to verify that it's right.
25833
25834 * config/rs6000/darwin.h (MD_UNWIND_SUPPORT): Don't define for
25835 64-bit.
25836
25837 2007-2-01 Seongbae Park <seongbae.park@gmail.com>
25838
25839 PR inline-asm/28686
25840 * global.c (global_alloc): Add mising initialization of
25841 ELIMINABLE_REGSET.
25842
25843 2007-02-01 Roger Sayle <roger@eyesopen.com>
25844
25845 * alias.c (init_alias_analysis): Correct whitespace.
25846 * bb-reorder.c (fix_edges_for_rarely_executed_code,
25847 partition_hot_cold_basic_blocks): Likewise.
25848 * builtins.c (expand_builtin_printf, expand_builtin_fprintf,
25849 expand_builtin_sprintf, fold_builtin_carg, fold_builtin_sprintf,
25850 maybe_emit_sprintf_chk_warning, fold_builtin_sprintf_chk,
25851 fold_builtin_snprintf_chk, fold_builtin_printf,
25852 fold_builtin_fprintf, do_mpfr_ckconv, do_mpfr_arg1, do_mpfr_arg2,
25853 do_mpfr_arg3, do_mpfr_sincos): Likewise.
25854 * cfgcleanup.c (cleanup_cfg): Likewise.
25855 * cfgexpand.c (tree_expand_cfg): Likewise.
25856 * fold-const.c (fold_binary) <RDIV_EXPR>: Likewise.
25857 * function.c (get_next_funcdef_no): Likewise.
25858 * gengtype.c (main): Likewise.
25859 * genmodes.c (main): Likewise.
25860 * gcse.c (bypass_conditional_jumps, print_ldst_list): Likewise.
25861 * haifa-sched.c (schedule_block, extend_h_i_d): Likewise.
25862 * ifcvt.c (noce_emit_move_insn): Likewise.
25863 * modulo-sched.c (generate_prolog_epilog, sms_schedule_by_order):
25864 Likewise.
25865 * stor-layout.c (get_best_mode): Likewise.
25866 * tree-ssa-loop-niter.c (get_val_for): Likewise.
25867 * tree-ssa-structalias.c (get_varinfo, get_varinfo_fc,
25868 scc_visit, do_ds_constraint, do_complex_constraint, label_visit,
25869 perform_var_substitution, solve_graph): Likewise.
25870 * tree-vrp.c (vrp_finalize): Likewise.
25871
25872 2007-02-01 Ian Lance Taylor <iant@google.com>
25873
25874 * lower-subreg.c (simplify_gen_subreg_concatn): If we ask for the
25875 high part of a paradoxical subreg, return a constant zero.
25876
25877 2007-02-01 Zdenek Dvorak <dvorakz@suse.cz>
25878
25879 * toplev.c (lang_dependent_init): Call init_set_costs.
25880 * loop-init.c (loop_optimizer_init): Do not call init_set_costs.
25881
25882 2007-02-01 Richard Guenther <rguenther@suse.de>
25883
25884 PR middle-end/30656
25885 * fold-const.c (fold_negate_expr): Allow negating a
25886 constant if overflow does not change.
25887
25888 2007-02-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
25889
25890 * doc/c-tree.texi (Expression trees): Improve markup.
25891 * doc/tm.texi (Register Classes, Addressing Modes)
25892 (Floating Point): Fix spacing after abbreviations. Fix some
25893 typos.
25894
25895 2007-02-01 Ben Elliston <bje@au.ibm.com>
25896
25897 * doc/invoke.texi: Replace "bugfix" with "bug fix" throughout.
25898 * doc/contrib.texi: Likewise.
25899 * doc/install.texi: Likewise.
25900
25901 2007-01-31 Richard Henderson <rth@redhat.com>
25902 Ian Lance Taylor <iant@google.com>
25903
25904 * lower-subreg.c: New file.
25905 * rtl.def (CONCATN): Define.
25906 * passes.c (init_optimization_passes): Add pass_lower_subreg and
25907 pass_lower_subreg2.
25908 * emit-rtl.c (update_reg_offset): New static function, broken out
25909 of gen_rtx_REG_offset.
25910 (gen_rtx_REG_offset): Call update_reg_offset.
25911 (gen_reg_rtx_offset): New function.
25912 * regclass.c: Revert patch of 2006-03-05, restoring
25913 reg_scan_update.
25914 (clear_reg_info_regno): New function.
25915 * dwarf2out.c (concatn_loc_descriptor): New static function.
25916 (loc_descriptor): Handle CONCATN.
25917 * common.opt (fsplit_wide_types): New option.
25918 * opts.c (decode_options): Set flag_split_wide_types when
25919 optimizing.
25920 * timevar.def (TV_LOWER_SUBREG): Define.
25921 * rtl.h (gen_reg_rtx_offset): Declare.
25922 (reg_scan_update): Declare.
25923 * regs.h (clear_reg_info_regno): Declare.
25924 * tree-pass.h (pass_lower_subreg): Declare.
25925 (pass_lower_subreg2): Declare.
25926 * doc/invoke.texi (Option Summary): List -fno-split-wide-types.
25927 (Optimize Options): Add -fsplit-wide-types to -O1 list. Document
25928 -fsplit-wide-types.
25929 * doc/rtl.texi (Regs and Memory): Document concat and concatn.
25930 * Makefile.in (OBJS-common): Add lower-subreg.o.
25931 (lower-subreg.o): New target.
25932
25933 2007-01-31 Kazu Hirata <kazu@codesourcery.com>
25934
25935 * config/sh/sh.h (HAVE_SECONDARY_RELOADS): Remove.
25936
25937 2007-01-31 Anatoly Sokolov <aesok@post.ru>
25938
25939 PR target/19087
25940 * config/avr/avr.c (DWARF2_ADDR_SIZE): Define.
25941
25942 2007-01-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
25943
25944 PR middle-end/29335
25945 * builtins.c (fold_builtin_sqrt): Use MPFR for constant args.
25946
25947 2007-01-31 Zdenek Dvorak <dvorakz@suse.cz>
25948
25949 * cfgloop.h: Include vec-prim.h.
25950 (enum li_flags): Remove LI_ONLY_OLD.
25951 (loop_iterator): Changed.
25952 (fel_next, fel_init): Iterate over loop tree.
25953 (FOR_EACH_LOOP_BREAK): New macro.
25954 * loop-unswitch.c (unswitch_loops): Do not pass LI_ONLY_OLD to
25955 FOR_EACH_LOOP.
25956 * tree-ssa-loop-unswitch.c (tree_ssa_unswitch_loops): Ditto.
25957 * modulo-sched.c (sms_schedule): Ditto.
25958 * tree-vectorizer.c (vectorize_loops): Ditto.
25959 * doc/loop.texi: Update information on loop numbering and behavior of
25960 FOR_EACH_LOOP wrto new loops.
25961 * tree-scalar-evolution.c (compute_overall_effect_of_inner_loop,
25962 add_to_evolution_1): Test nestedness of loops instead of comparing
25963 their numbers.
25964 * tree-chrec.c (chrec_fold_plus_poly_poly,
25965 chrec_fold_multiply_poly_poly, chrec_evaluate,
25966 hide_evolution_in_other_loops_than_loop, chrec_component_in_loop_num,
25967 reset_evolution_in_loop): Ditto.
25968 * Makefile.in (CFGLOOP_H): Add vecprim.h dependency.
25969
25970 2007-01-31 Dirk Mueller <dmueller@suse.de>
25971
25972 * c-common.c (warn_about_parentheses): Separate warning about
25973 un-parenthized sequence of comparison operators from the one
25974 which is supposed to warn about x <= y <= z.
25975
25976 2007-01-31 Uros Bizjak <ubizjak@gmail.com>
25977
25978 * optabs.h (enum optab_index): Add new OTI_isinf.
25979 (isinf_optab): Define corresponding macro.
25980 * optabs.c (init_optabs): Initialize isinf_optab.
25981 * genopinit.c (optabs): Implement isinf_optab using isinf?f2
25982 patterns.
25983 * builtins.c (mathfn_built_in): Handle BUILT_IN_ISINF{,F,L}.
25984 (expand_builtin_interclass_mathfn): Expand BUILT_IN_ISINF{,F,L}
25985 using isinf_optab.
25986 (expand_builtin): Expand BUILT_IN_ISINF{,F,L} using
25987 expand_builtin_interclass_mathfn.
25988 * reg_stack.c (subst_stack_regs_pat): Handle UNSPEC_FXAM.
25989 * config/i386/i386.md (UNSPEC_FXAM): New constant.
25990 (fxam<mode>2_i387): New insn pattern.
25991 (isinf<mode>2) New expander to implement isinf, isinff and isinfl
25992 built-in functions as x87 inline asm.
25993
25994 2007-01-31 Kazu Hirata <kazu@codesourcery.com>
25995
25996 * config/arm/unwind-arm.h (_sleb128_t, _uleb128_t): New.
25997
25998 2007-01-30 Eric Christopher <echristo@apple.com>
25999
26000 * config.gcc: Add geode.
26001
26002 2007-01-31 Kazu Hirata <kazu@codesourcery.com>
26003
26004 * cgraphunit.c, config/arm/arm.c, config/m68k/m68k.c,
26005 ipa-inline.c, tree-profile.c, tree-ssa-live.c,
26006 tree-ssa-math-opts.c, tree-ssanames.c, tree-vect-analyze.c,
26007 value-prof.c: Fix comment typos.
26008
26009 2007-01-30 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
26010
26011 PR c++/24745
26012 * doc/invoke.texi (Wpointer-arith): Document warning.
26013
26014 2007-01-30 Janis Johnson <janis187@us.ibm.com>
26015
26016 * doc/extend.texi (Decimal Floating Types): Remove decfloat.h from
26017 the list of discrepancies from the draft TR.
26018
26019 2007-01-30 Dirk Mueller <dmueller@suse.de>
26020
26021 PR c++/30601
26022 * doc/invoke.texi (-Wreturn-type): Update description to
26023 match new behavior.
26024
26025 2007-01-30 Richard Sandiford <richard@codesourcery.com>
26026
26027 * cfgrtl.c (try_redirect_by_replacing_jump): Check only_sets_cc0_p.
26028
26029 2007-01-30 Uros Bizjak <ubizjak@gmail.com>
26030
26031 * builtins.c (expand_builtin_int_interclass_roundingfn): New function
26032 to handle optabs that operate on floating point input argument and
26033 output to integer output.
26034 (expand_builtin_mathfn) [BUILT_IN_ILOGB]: Move from here ...
26035 (expand_builtin_interclass_mathfn) [BUILT_IN_ILOGB]: ... to here.
26036 (expand_builtin): Expand BUILT_IN_ILOGB{,F,L} using
26037 expand_builtin_interclass_mathfn ().
26038 * config/i386/i386.md (fxtractxf3_i387): Rename from *fxtractxf3_i387.
26039 (ilogbsi2): Remove.
26040 (ilogbxf2, ilogb<mode>2): New expanders to implement ilogb, ilogbf and
26041 ilogbl built-in functions as x87 intrinsics.
26042
26043 2007-01-30 Richard Guenther <rguenther@suse.de>
26044
26045 PR middle-end/27657
26046 * dwarf2out.c (reference_to_unused): Query varpool if the
26047 variable was output.
26048
26049 2007-01-30 Richard Guenther <rguenther@suse.de>
26050
26051 PR middle-end/30313
26052 * passes.c (execute_one_pass): Reset in_gimple_form to not
26053 confuse non-unit-at-a-time mode.
26054
26055 2007-01-29 Roger Sayle <roger@eyesopen.com>
26056 Richard Guenther <rguenther@suse.de>
26057
26058 * fold-const.c (round_up): Make HIGH an unsigned HOST_WIDE_INT to
26059 avoid undefined behaviour on overflow. Use force_fit_type_double
26060 to construct the constant with the specified TREE_OVERFLOW.
26061
26062 2007-01-29 Janis Johnson <janis187@us.ibm.com>
26063
26064 * config/dfp-bit.c: Add parameterized support for fp exceptions.
26065 * config/dfp-bit.h: Ditto.
26066
26067 2007-01-29 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
26068
26069 * c-decl.c (pop_scope): Replace warnings with call to
26070 warn_for_unused_label.
26071 * c-common.h (warn_for_unused_label): Declare.
26072 * c-common.c (warn_for_unused_label): Define.
26073
26074 2007-01-29 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
26075
26076 * tree-optimize.c (update_inlined_to_pointers): Delete unused
26077 function.
26078
26079 2007-01-29 Janis Johnson <janis187@us.ibm.com>
26080
26081 * Makefile.in (USER_H): Remove decfloat.h.
26082 * ginclude/decfloat.h: Delete, moving contents to ...
26083 * ginclude/float.h: Add support for decimal floating point,
26084 guarded by __STDC_WANT_DEC_FP__.
26085
26086 2007-01-29 Mike Stump <mrs@apple.com>
26087
26088 * doc/gccint.texi (Top): Rename Loop Representation to Loop
26089 Analysis and Representation to resolve case insensitive conflict.
26090 * doc/loop.texi (Loop Analysis and Representation): Likewise.
26091
26092 2007-01-28 Daniel Berlin <dberlin@dberlin.org>
26093
26094 * tree.h (struct tree_memory_tag): Add aliases member.
26095 (MTAG_ALIASES): New macro.
26096 * tree-ssa-alias.c (alias_bitmap_obstack): New variable.
26097 (add_may_alias): Remove pointer-set. Update for may_aliases being
26098 a bitmap.
26099 (mark_aliases_call_clobbered): Update for may_aliases being a
26100 bitmap.
26101 (compute_tag_properties): Ditto.
26102 (create_partition_for): Ditto.
26103 (compute_memory_partitions): Ditto.
26104 (dump_may_aliases_for): Ditto.
26105 (is_aliased_with): Ditto.
26106 (add_may_alias_for_new_tag): Ditto.
26107 (rewrite_alias_set_for): Rewrite for may_aliases being a bitmap.
26108 (compute_is_aliased): New function.
26109 (compute_may_aliases): Call compute_is_aliased).
26110 (init_alias_info): Initialize alias_bitmap_obstack.
26111 (union_alias_set_into): New function.
26112 (compute_flow_sensitive_aliasing): Use union_aliases_into.
26113 (have_common_aliases_p): Rewrite to take two bitmaps and use
26114 intersection.
26115 (compute_flow_insensitive_aliasing): Stop using pointer-sets.
26116 Update for bitmaps.
26117 (finalize_ref_all_pointers): Update for add_may_alias changes.
26118 (new_type_alias): Ditto.
26119 * tree-flow-inline.h (may_aliases): Return a bitmap.
26120 * tree-dfa.c (dump_variable): Check for MTAG_P'ness.
26121 * tree-ssa.c (verify_flow_insensitive_alias_info): Update for
26122 may_aliases being a bitmap.
26123 * tree-flow.h (struct var_ann_d): Remove may_aliases member.
26124 may_aliases now returns a bitmap.
26125 * tree-ssa-structalias.c (merge_smts_into): Update for may_aliases
26126 being a bitmap.
26127 * tree-ssa-operands.c (add_virtual_operand): Update for
26128 may_aliases being a bitmap.
26129
26130 2007-01-29 Daniel Berlin <dberlin@dberlin.org>
26131
26132 PR tree-optimization/30630
26133 * tree-ssa-structalias.c (do_complex_constraint): Mark correct
26134 variable as changed.
26135
26136 2007-01-29 Simon Martin <simartin@users.sourceforge.net>
26137
26138 PR c++/28266
26139 * gimplify.c (gimplify_target_expr): Make sure that the TARGET_EXPR is
26140 expanded only once even if an error occurs.
26141
26142 2007-01-29 Ben Elliston <bje@au.ibm.com>
26143
26144 * gcov-io.h (__gcov_indirect_call_profiler): Declare.
26145 (__gcov_average_profiler): Likewise.
26146 (__gcov_ior_profiler): Likewise.
26147 (__gcov_merge_ior): Likewise.
26148
26149 2007-01-28 Jan Hubicka <jh@suse.cz>
26150
26151 * builtins.c (expand_builtin_memset): Fix typo in my last patch.
26152 * value-prof.c (stringop_block_profile): Likewise.
26153
26154 2007-01-28 Jan Hubicka <jh@suse.cz>
26155
26156 * expr.c (emit_block_move_via_movmem, emit_block_move_via_libcall):
26157 Add variant handling histograms; add wrapper.
26158 (clear_storage_via_libcall): Export.
26159 (emit_block_move_hints): Break out from ...; add histograms.
26160 (emit_block_move): ... this one.
26161 (clear_storage_hints): Break out from ...; add histograms.
26162 (clear_storage): ... this one.
26163 (set_storage_via_memset): Handle histogram.
26164 * expr.h (emit_block_move_via_libcall, emit_block_move_hints): Declare.
26165 (clear_storage_hints, clear_storage_via_libcall): Declare.
26166 (set_storage_via_setmem): Update prototype.
26167 * doc/md.texi (movmem, setmem): Document new arguments.
26168
26169 * value-prof.c (dump_histogram_value, tree_find_values_to_profile):
26170 Add new histograms.
26171 (stringop_block_profile): New global function.
26172 (tree_stringops_values_to_profile): Profile block size and alignment.
26173 * value-prof.h (enum hist_type): add HIST_TYPE_AVERAGE and
26174 HIST_TYPE_IOR.
26175 (struct profile_hooks): Add gen_average_profiler and gen_ior_profiler.
26176 (stringop_block_profile): Declare.
26177 * builtins.c: Include value-prof.h.
26178 (expand_builtin_memcpy, expand_builtin_memset): Pass block profile.
26179 * gcov-ui.h (GCOV_COUNTER_NAMES): Add new counter.
26180 (GCOV_COUNTER_AVERAGE, GCOV_COUNTER_IOR): New constants.
26181 (GCOV_COUNTERS, GCOV_LAST_VALUE_COUNTER): Update.
26182 * profile.c (instrument_values): Add new counters.
26183 * cfgexpand.c (expand_gimple_basic_block): Propagate histograms to
26184 calls.
26185 * tree-profile.c (tree_average_profiler_fn, tree_ior_profiler_fn): New.
26186 (tree_init_edge_profiler): Build new profilers.
26187 (tree_gen_average_profiler, tree_gen_ior_profiler): New.
26188 (pass_tree_profile): Add dump.
26189 (tree_profile_hooks): Update.
26190 * Makefile.in (LIBGCOV): Add new constants.
26191 * libgcov.c (__gcov_merge_ior, __gcov_average_profiler,
26192 __gcov_ior_profiler): New.
26193 * i386.md (movmem/setmem expanders): Add new optional arguments.
26194
26195 2007-01-28 David Edelsohn <edelsohn@gnu.org>
26196
26197 * doc/md.texi (Standard Pattern Names): Document blockage pattern.
26198
26199 2007-01-28 Zdenek Dvorak <dvorakz@suse.cz>
26200
26201 * tree-ssa-loop-unswitch.c: Include tree-inline.h.
26202 (tree_unswitch_single_loop): Pass eni_size_weights to
26203 tree_num_loop_insns.
26204 * tree-ssa-loop-manip.c: Include tree-inline.h.
26205 (can_unroll_loop_p): Pass eni_size_weights to
26206 tree_num_loop_insns.
26207 * tree-ssa-loop-ch.c (should_duplicate_loop_header_p):
26208 Pass eni_size_weights to estimate_num_insns.
26209 * tree.h (init_inline_once): Export.
26210 * toplev.c (backend_init): Call init_inline_once.
26211 * cgraphunit.c (cgraph_process_new_functions,
26212 cgraph_analyze_function): Pass eni_inlining_weights to
26213 estimate_num_insns.
26214 * ipa-inline.c (compute_inline_parameters): Ditto.
26215 * tree-ssa-loop-ivcanon.c (tree_num_loop_insns): Pass weights
26216 to estimate_num_insns.
26217 (try_unroll_loop_completely): Pass eni_size_weights to
26218 tree_num_loop_insns.
26219 * tree-eh.c (decide_copy_try_finally): Pass eni_size_weights
26220 ot estimate_num_insns.
26221 * tree-ssa-loop-prefetch.c: Include tree-inline.h.
26222 (loop_prefetch_arrays): Pass eni_time_weights to tree_num_loop_insns.
26223 * tree-inline.c (eni_inlining_weights, eni_size_weights,
26224 eni_time_weights): New variables.
26225 (init_inline_once): Initialize them.
26226 (struct eni_data): Mew.
26227 (estimate_num_insns_1, estimate_num_insns): Use weights.
26228 * tree-inline.h (struct eni_weights_d): New.
26229 (eni_inlining_weights, eni_size_weights, eni_time_weights): Declare.
26230 (estimate_num_insns): Declaration changed.
26231 * cfgloop.h (tree_num_loop_insns): Declaration changed.
26232 * Makefile.in (tree-ssa-loop-unswitch.o, tree-ssa-loop-prefetch.o,
26233 tree-ssa-loop-manip.o): Add TREE_INLINE_H dependency.
26234
26235 2007-01-28 Zdenek Dvorak <dvorakz@suse.cz>
26236
26237 * tree-data-ref.c (conflict_fn): Assert that the number of affine
26238 relations in the conflict function is valid.
26239
26240 2007-01-27 Ian Lance Taylor <iant@google.com>
26241
26242 * common.opt: Add fstrict-overflow.
26243 * opts.c (decode_options): Set flag_strict_overflow if -O2.
26244 * flags.h (TYPE_OVERFLOW_WRAPS): Define.
26245 (TYPE_OVERFLOW_UNDEFINED): Define.
26246 (TYPE_OVERFLOW_TRAPS): Define. This replaces TYPE_TRAP_SIGNED.
26247 Replace all uses.
26248 * tree.h (TYPE_TRAP_SIGNED): Don't define.
26249 * fold-const.c (negate_expr_p): Use TYPE_OVERFLOW_UNDEFINED.
26250 (fold_negate_expr): Likewise.
26251 (make_range): Likewise.
26252 (extract_muldiv_1): Likewise.
26253 (maybe_canonicalize_comparison): Likewise.
26254 (fold_comparison): Likewise.
26255 (fold_binary): Likewise.
26256 (tree_expr_nonnegative_p): Likewise.
26257 (tree_expr_nonzero_p): Likewise.
26258 * tree-vrp.c (compare_values): Likewise.
26259 (extract_range_from_binary_expr): Likewise.
26260 (extract_range_from_unary_expr): Likewise.
26261 * tree-ssa-loop-niter.c (infer_loop_bounds_from_signedness):
26262 Likewise.
26263 (nowrap_type_p): Likewise.
26264 * tree-scalar-evolution.c (simple_iv): Likewise.
26265 * fold-const.c (negate_expr_p): Use TYPE_OVERFLOW_WRAPS.
26266 (build_range_check): Likewise.
26267 (extract_muldiv_1): Likewise.
26268 (fold_comparison): Likewise.
26269 * tree-vrp.c (vrp_int_const_binop): Likewise.
26270 (extract_range_from_unary_expr): Likewise.
26271 * convert.c (convert_to_integer): Likewise.
26272 * fold-const.c (fold_negate_expr): Use TYPE_OVERFLOW_TRAPS.
26273 (fold_comparison): Likewise.
26274 (fold_binary): Likewise.
26275 * optabs.c (optab_for_tree_code): Likewise.
26276 * tree-vectorizer.c (vect_is_simple_reduction): Likewise.
26277 * simplify-rtx.c (simplify_const_relational_operation): Check
26278 flag_strict_overflow and flag_trapv.
26279 (simplify_const_relational_operation): Likewise.
26280 * doc/invoke.texi (Option Summary): Mention -fstrict-overflow.
26281 (Optimize Options): Add -fstrict-overflow to -O2 list. Document
26282 -fstrict-overflow.
26283
26284 2007-01-27 Roger Sayle <roger@eyesopen.com>
26285
26286 * tree.c (tree_fold_gcd): Delete.
26287 * tree.h (tree_fold_gcd): Remove prototype.
26288 * tree-data-ref.c (tree_fold_divides_p): Don't use tree_fold_gcd to
26289 test whether one constant integer is a multiple of another. Instead
26290 call int_const_binop with TRUNC_MOD_EXPR and test for a zero result.
26291 * fold-const.c (multiple_of_p): We've determined both TOP and
26292 BOTTOM are integer constants so we can call int_const_binop directly
26293 instead of the more generic const_binop.
26294
26295 2007-01-27 Roger Sayle <roger@eyesopen.com>
26296
26297 * fold-const.c (size_binop): In the fast-paths for X+0, 0+X, X-0 and
26298 1*X check that the constant hasn't overflowed, to preserve the
26299 TREE_OVERFLOW bit.
26300 (round_up): Provide an efficient implementation when rouding-up an
26301 INTEGER_CST to a power-of-two.
26302
26303 2007-01-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
26304
26305 * doc/sourcebuild.texi: Add comma for clarity.
26306 * doc/extend.texi: Fix some typos.
26307 * doc/passes.texi: Likewise.
26308 * doc/cppinternals.texi: Likewise.
26309 * doc/c-tree.texi: Likewise.
26310 * doc/tree-ssa.texi: Likewise.
26311 * doc/install.texi: Likewise.
26312
26313 2007-01-27 Jan Hubicka <jh@suse.cz>
26314
26315 * tree-sra.c (sra_walk_function): Don't rely on aliases being build.
26316 (pass_sra): Do not require alias information.
26317 * passes.c (init_optimization_passes): Add SRA
26318
26319 2007-01-27 Steven Bosscher <steven@gcc.gnu.org>
26320
26321 * tracer.c (rest_of_handle_tracer): We already cleaned
26322 up the CFG in tracer() so don't do it here again.
26323 * cfgcleanup.c (rest_of_handle_jump2): Don't repeat
26324 cleanup_cfg here, either. And don't call renumber_insns.
26325
26326 * cfgrtl.c (rtl_verify_flow_info_1): Don't verify that BB_END
26327 and BB_HEAD are in the insn stream here. Instead make sure
26328 that BB_INSN is valid on all insns. Also, do check here that
26329 there are no pending branch predictions...
26330 (rtl_verify_flow_info): ...instead of doing it here. Checks
26331 for BB_END and BB_HEAD moved from rtl_verify_flow_info_1 to
26332 here.
26333
26334 2007-01-26 Roger Sayle <roger@eyesopen.com>
26335
26336 * config/i386/i386.c (ix86_swap_binary_operands_p): New helper
26337 function to simplify/factorize operand order canonicalization.
26338 (ix86_fixup_binary_operands): Reorganize using the above function.
26339 (ix86_binary_operator_ok): Likewise.
26340
26341 2007-01-27 Jakub Jelinek <jakub@redhat.com>
26342
26343 * genattrtab.c (struct attr_value_list, insn_code_values): Move to
26344 file scope from optimize_attrs.
26345 (simplify_test_exp): If insn_code_values is not NULL, use it to speed
26346 up search.
26347 (optimize_attrs): Clear insn_code_values after freeing it.
26348
26349 2007-01-26 Zdenek Dvorak <dvorakz@suse.cz>
26350
26351 * tree-ssa-address.c (create_mem_ref): Remove ", bsi" from
26352 a parts.base assignment.
26353
26354 2007-01-26 Zdenek Dvorak <dvorakz@suse.cz>
26355
26356 * tree-data-ref.c (dump_subscript): Use dump_conflict_function.
26357 (compute_subscript_distance, initialize_data_dependence_relation,
26358 finalize_ddr_dependent, analyze_ziv_subscript,
26359 analyze_siv_subscript_cst_affine,
26360 compute_overlap_steps_for_affine_univar,
26361 compute_overlap_steps_for_affine_1_2, analyze_subscript_affine_affine,
26362 analyze_siv_subscript, analyze_miv_subscript,
26363 analyze_overlapping_iterations, subscript_dependence_tester_1,
26364 compute_self_dependence, free_dependence_relation): Work
26365 with affine_fn instead of chrecs.
26366 (dump_affine_function, dump_conflict_function, affine_function_equal_p,
26367 common_affine_function, affine_function_base,
26368 affine_function_constant_p, affine_fn_op, affine_fn_plus,
26369 affine_fn_minus, affine_fn_free, conflict_fn_not_known,
26370 conflict_fn_no_dependence, free_conflict_function, free_subscripts,
26371 conflict_fn, affine_fn_cst, affine_fn_univar): New functions.
26372 (all_chrecs_equal_p): Removed.
26373 * tree-data-ref.h (affine_fn, conflict_function): New types.
26374 (struct subscript): Change type of conflicting_iterations_in_a
26375 and conflicting_iterations_in_b.
26376
26377 2007-01-26 Steve Ellcey <sje@cup.hp.com>
26378
26379 PR other/30182
26380 * config/pa/pa.h (TARGET_HPUX_11): New.
26381 * config/pa/pa-hpux11.h (TARGET_HPUX_11): New.
26382 * config/pa/pa.c (pa_init_builtins): Use TARGET_HPUX_11.
26383
26384 2007-01-26 Daniel Berlin <dberlin@dberlin.org>
26385 Richard Guenther <rguenther@suse.de>
26386
26387 * tree-ssa-structalias.c (solve_graph): Handle case
26388 we merged the variable to another.
26389
26390 2007-01-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
26391
26392 * builtins.c (fold_builtin_1): Treat ccos and ccosh as 'even'
26393 functions.
26394
26395 * fold-const.c (negate_mathfn_p): Treat casin, casinh, catan,
26396 catanh, cproj, csin, csinh, ctan and ctanh as 'odd' functions.
26397
26398 2007-01-25 DJ Delorie <dj@redhat.com>
26399
26400 * config/m32c/m32c.c (m32c_cannot_change_mode_class): We don't
26401 allow changes to modes which don't fit in those registers.
26402
26403 * reload1.c (choose_reload_regs): Check for invalid subregs before
26404 computing their locations, not after.
26405
26406 2007-01-25 Geoffrey Keating <geoffk@apple.com>
26407
26408 PR 25127
26409 * config/rs6000/rs6000.c (first_altivec_reg_to_save): On Darwin,
26410 save Altivec registers in an eh_return function.
26411 (compute_vrsave_mask): Likewise.
26412 (rs6000_stack_info): Correct AIX/Darwin stack alignment computation
26413 for saving Altivec registers.
26414 (rs6000_emit_prologue): Don't allocate stack twice in
26415 eh_return function. Correct expected value of altivec_save_offset
26416 when using save_world. Describe save of R0 to stack when using
26417 save_world. Describe stack pointer adjustment when using
26418 save_world. Remove duplicated eh_return parameter register saving.
26419 Update sp_offset variable after save_world.
26420 * config/rs6000/t-darwin (LIB2FUNCS_STATIC_EXTRA): Remove
26421 darwin-world.asm.
26422 (LIB2FUNCS_EXTRA): Add darwin-world.asm.
26423 * config/rs6000/darwin.h (SUBTARGET_OVERRIDE_OPTIONS): -m64
26424 implies Altivec.
26425
26426 2007-01-25 Steve Ellcey <sje@cup.hp.com>
26427
26428 * config.gcc (ia64*-*-hpux*): Make posix threads the default.
26429
26430 2007-01-25 Steve Ellcey <sje@cup.hp.com>
26431
26432 PR other/30182
26433 * config/pa/pa.c (pa_init_builtins): Set asm names for finite routines.
26434 * config/ia64/ia64.c (ia64_init_builtins): Ditto.
26435
26436 2007-01-25 Richard Guenther <rguenther@suse.de>
26437
26438 * doc/invoke.texi (-Wcoverage-mismatch): Document.
26439 * common.opt (-Wcoverage-mismatch): New warning option.
26440 * coverage.c (get_coverage_counts): Ignore coverage mismatch
26441 if -Wcoverage-mismatch is given.
26442
26443 2007-01-25 Razya Ladelsky <razya@il.ibm.com>
26444
26445 * ipa-cp.c (ipcp_insert_stage, ipcp_driver): Support for SSA.
26446 (ipcp_driver): Change to static definition.
26447 Add dumping of the ifunctions.
26448 (constant_val_insert): Remove unused parameter. Support for SSA.
26449 (ipcp_propagate_const): Support for SSA.
26450 (ipcp_profile_bb_print): Print only analyzed nodes.
26451 (ipcp_replace_map_create): Remove support for Fortran constant
26452 for now.
26453 * ipa-prop.c (ipa_method_modify_stmt,
26454 ipa_callsite_compute_param): Support for SSA.
26455 * ipa-prop.h (ipcp_driver): Remove declaration.
26456 (IS_VALID_TREE_MAP_INDEX): Add define.
26457
26458 2007-01-24 Geoffrey Keating <geoffk@apple.com>
26459
26460 * unwind-dw2.c (execute_stack_op): Handle DW_OP_swap.
26461
26462 2007-01-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
26463
26464 PR middle-end/30447
26465 * builtins.c (fold_builtin_cabs): Use MPFR to evaluate a
26466 constant argument to cabs and do it without checking for
26467 -funsafe-math-optimizations.
26468
26469 2007-01-24 Douglas Gregor <dgregor@osl.iu.edu>
26470
26471 * c-common.h (RID_FIRST_CXX0X): New.
26472 (RID_LAST_CXX0X): New.
26473 * c-opts.c (c_common_handle_option): -Wc++0x-compat is triggered
26474 by -Wall.
26475 * c.opt (Wc++0x-compat): New.
26476 * doc/invoke.texi (-Wc++0x-compat): Document.
26477
26478 2007-01-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
26479
26480 * builtins.c (fold_builtin_carg): New.
26481 (fold_builtin_1): Use it.
26482
26483 2007-01-24 Jan Hubicka <jh@suse.cz>
26484
26485 * ipa-inline.c (cgraph_decide_inlining): Initialize initial_insns.
26486
26487 * ipa-inline.c (initial_insns, max_insns): Delete.
26488 (compute_max_insns): New function.
26489 (cgraph_decide_inlining_of_small_function): Use it; take minimal
26490 amount of insns as base for code growth.
26491 (cgraph_decide_inlining): Make initial_insns local; do not compute
26492 max_insns.
26493 * params.def (PARAM_INLINE_UNIT_GROWTH): Set to 60.
26494 * doc/invoke.texi (inline-unit-growth): Update docs.
26495
26496 2007-01-24 Jakub Jelinek <jakub@redhat.com>
26497
26498 * config/i386/i386.h (x86_cmpxchg16b): Remove const.
26499 (TARGET_CMPXCHG16B): Define to x86_cmpxchg16b.
26500 * config/i386/i386.c (x86_cmpxchg16b): Remove const.
26501 (override_options): Add PTA_CX16 flag. Set x86_cmpxchg16b
26502 for CPUs that have PTA_CX16 set.
26503
26504 PR middle-end/27416
26505 * gimplify.c (omp_check_private): New function.
26506 (gimplify_scan_omp_clauses): Use it for
26507 firstprivate/lastprivate/reduction.
26508
26509 PR middle-end/30494
26510 * gimplify.c (omp_add_variable): Don't call omp_notice_variable
26511 on TYPE_SIZE_UNIT for GOVD_LOCAL VLAs.
26512
26513 PR middle-end/30421
26514 * omp-low.c (lower_omp_for_lastprivate): Add dlist argument.
26515 If lower_lastprivate_clauses emits some statements, append them
26516 to dlist rather than body_p and to body_p append an initializer.
26517 (lower_omp_for): Adjust caller.
26518
26519 2007-01-24 Steve Ellcey <sje@cup.hp.com>
26520
26521 * target.h (globalize_decl_name): New.
26522 * target-def.h (TARGET_ASM_GLOBALIZE_DECL_NAME): New.
26523 * output.h (default_globalize_decl_name): New.
26524 * varasm.c (asm_output_bss): Use globalize_decl_name instead of
26525 globalize_label.
26526 (globalize_decl): Ditto.
26527 (default_globalize_decl_name): New.
26528 * config/ia64/ia64.c (ia64_globalize_decl_name): New.
26529 (ia64_handle_version_id_attribute): New.
26530 (TARGET_ASM_GLOBALIZE_DECL_NAME): New.
26531 (ia64_asm_output_external): Use globalize_decl_name instead
26532 of globalize_label.
26533 * doc/extend.texi (version_id): New pragma.
26534 * doc/tm.texi (ARGET_ASM_GLOBALIZE_DECL_NAME): New target hook.
26535
26536 2007-01-24 Andreas Krebbel <krebbel1@de.ibm.com>
26537
26538 * unwind-dw2-fde.c (get_cie_encoding): Replaced _Unwind_Word with
26539 _uleb128_t and _Unwind_SWord with _sleb128_t.
26540 * unwind-dw2.c (extract_cie_info, execute_stack_op,
26541 execute_cfa_program, uw_frame_state_for, uw_update_context_1):
26542 Likewise.
26543 * unwind-c.c (parse_lsda_header, PERSONALITY_FUNCTION): Likewise.
26544 * unwind-pe.h (read_uleb128, read_sleb128,
26545 read_encoded_value_with_base): Likewise.
26546 * unwind-generic.h: Define _sleb128_t and _uleb128_t types.
26547
26548 2007-01-24 Richard Guenther <rguenther@suse.de>
26549
26550 * builtins.c (expand_builtin_cexpi): Get the fndecl
26551 for cexp in the correct way.
26552
26553 2007-01-24 Jan Hubicka <jh@suse.cz>
26554
26555 * tree-ssa-dce.c (eliminate_unnecesary_stmts): Remove dead LHS
26556 of calls.
26557
26558 2007-01-24 Andreas Krebbel <krebbel1@de.ibm.com>
26559
26560 * c-cppbuiltin.c (builtin_define_type_sizeof): New function.
26561 (c_cpp_builtins): New builtin macros: __SIZEOF_INT__, __SIZEOF_LONG__,
26562 __SIZEOF_LONG_LONG__, __SIZEOF_SHORT__, __SIZEOF_POINTER__,
26563 __SIZEOF_FLOAT__, __SIZEOF_DOUBLE__, __SIZEOF_LONG_DOUBLE__,
26564 __SIZEOF_SIZE_T__, __SIZEOF_WCHAR_T__, __SIZEOF_WINT_T__ and
26565 __SIZEOF_PTRDIFF_T__.
26566 * doc/cpp.texi: Documentation for the new builtin macros added.
26567
26568 2007-01-24 Uros Bizjak <ubizjak@gmail.com>
26569
26570 * config/i386/i386.md (tanxf2, tan<mode>2, atan<mode>2, log<mode>2,
26571 log10<mode>2, log2<mode>2, expxf2, exp10xf2, exp2xf2): Use op2
26572 instead of operands[2] to avoid access past the end of array.
26573
26574 2007-01-24 Richard Sandiford <richard@codesourcery.com>
26575
26576 * reload1.c (emit_reload_insns): Pass the reload register
26577 for a non-spill output reload through forget_old_reloads_1.
26578
26579 2007-01-23 Joseph Myers <joseph@codesourcery.com>
26580
26581 * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Define
26582 _SOFT_DOUBLE if doubles use software floating-point.
26583 * config/rs6000/libgcc-ppc-glibc.ver: Export additional long
26584 double functions if _SOFT_DOUBLE, not _SOFT_FLOAT.
26585 * config/rs6000/darwin-ldouble.c: Also compile functions for
26586 hard-float without FPRs. Use fmsub function for all __NO_FPRS__
26587 cases. Compile extra functions if _SOFT_DOUBLE, not _SOFT_FLOAT.
26588 * config/rs6000/linuxspe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Remove
26589 commented-out long double override.
26590 (CPP_LONGDOUBLE_DEFAULT_SPEC): Likewise.
26591 * config/rs6000/eabispe.h: Likewise.
26592 * config/rs6000/rs6000.c (rs6000_override_options): Don't override
26593 long double for non-SPE.
26594 (rs6000_handle_option): Likewise.
26595 (invalid_e500_subreg): Disallow more subregs involding DImode,
26596 DFmode, TImode or TFmode.
26597 (rs6000_legitimate_offset_address_p): Check TFmode offsets for
26598 E500 double.
26599 (legitimate_lo_sum_address_p): Also check for TFmode for E500
26600 double.
26601 (rs6000_legitimize_address): Also handle TFmode for E500 double.
26602 (rs6000_legitimize_reload_address): Also handle TFmode for E500
26603 double.
26604 (rs6000_legitimate_address): Also check for TFmode for E500
26605 double.
26606 (rs6000_emit_move): Use DFmode subregs of TFmode for E500 double.
26607 (spe_build_register_parallel): Handle TFmode and TCmode.
26608 (rs6000_spe_function_arg): Handle TFmode and TCmode for E500
26609 double.
26610 (function_arg): Handle TFmode and TCmode for E500 double.
26611 (rs6000_init_libfuncs): Initialize extra libfuncs for soft double
26612 in general.
26613 (print_operand): Handle TFmode and TImode for %y.
26614 (rs6000_generate_compare): Handle TFmode comparisons for E500
26615 double.
26616 (spe_func_has_64bit_regs_p): Check for TFmode for E500 double.
26617 (rs6000_function_value): Handle TFmode and TCmode for E500 double.
26618 (rs6000_libcall_value): Handle TFmode and TCmode for E500 double.
26619 * config/rs6000/rs6000.h (CANNOT_CHANGE_MODE_CLASS): Check for
26620 TFmode for E500 double.
26621 * config/rs6000/rs6000.md (FP): Allow TF for E500 double.
26622 (floatsidf2): Enable for E500 double.
26623 (movtf_softfloat): Use rs6000_nonimmediate_operand.
26624 (extenddftf2): Change to extenddftf2_fprs.
26625 (extenddftf2): Call gen_spe_extenddftf2 or gen_extenddftf2_fprs
26626 depending on TARGET_E500_DOUBLE.
26627 (extendsftf2): Enable for E500 double.
26628 (trunctfdf2): Enable for E500 double.
26629 (trunctfsf2): Change to trunctfsf2_fprs.
26630 (trunctfsf2): Call gen_spe_trunctfsf2 or gen_trunctfsf2_fprs
26631 depending on TARGET_E500_DOUBLE.
26632 (floatsitf2): Enable for E500 double.
26633 (fix_trunctfsi2): Change to fix_trunctfsi2_fprs.
26634 (fix_trunctfsi2): Call gen_spe_fix_trunctfsi2 or
26635 gen_fix_trunctfsi2_fprs depending on TARGET_E500_DOUBLE.
26636 (negtf2): Change to negtf2_internal.
26637 (negtf2): New expander.
26638 (abstf2): Enable for E500 double. Call gen_spe_abstf2_tst,
26639 gen_spe_abstf2_cmp or gen_abstf2_internal depending on
26640 TARGET_E500_DOUBLE and flag_unsafe_math_optimizations.
26641 (movdi_internal32): Use rs6000_nonimmediate_operand.
26642 (unnamed splitter): Likewise.
26643 * config/rs6000/spe.md (CMPTFEQ_GPR, TSTTFEQ_GPR, CMPTFGT_GPR,
26644 TSTTFGT_GPR, CMPTFLT_GPR, TSTTFLT_GPR): New unspecs.
26645 (SPE64TF, DITI): New mode macros.
26646 (frob_df_di): Change to frob_<SPE64:mode>_<DITI:mode>; allow more
26647 modes.
26648 (frob_tf_ti): New.
26649 (frob_<mode>_di_2): New.
26650 (frob_tf_di_8_2): New.
26651 (frob_di_df): Change to frob_di_<mode>; allow more modes.
26652 (frob_ti_tf): New.
26653 (frob_di_df_2): Change to frob_<DITI:mode>_<SPE64:mode>_2; allow
26654 more modes.
26655 (frob_ti_<mode>_8_2): New.
26656 (frob_ti_tf_2): New.
26657 (mov_si<mode>_e500_subreg0, mov_si<mode>_e500_subreg0_2,
26658 mov_si<mode>_e500_subreg4, mov_si<mode>_e500_subreg4_2): Allow
26659 TFmode.
26660 (mov_sitf_e500_subreg8, mov_sitf_e500_subreg8_2,
26661 mov_sitf_e500_subreg12, mov_sitf_e500_subreg12_2): New.
26662 (spe_trunctfdf2_internal1, spe_trunctfsf2, spe_extenddftf2,
26663 spe_fix_trunctfsi2, spe_fix_trunctfsi2_internal,
26664 spe_negtf2_internal, spe_abstf2_cmp, spe_abstf2_tst): New.
26665 (cmptfeq_gpr, tsttfeq_gpr, cmptfgt_gpr, tsttfgt_gpr, cmptflt_gpr,
26666 tsttflt_gp): New.
26667
26668 2007-01-23 Ian Lance Taylor <iant@google.com>
26669
26670 * Makefile.in (OBJS-common): Reformat, alphabetize, but put
26671 insn-*.o first.
26672 (OBJS-archive): Reformat, alphabetize.
26673 (OBJS): Change out_object_file to OBJS-md.
26674
26675 2007-01-23 Uros Bizjak <ubizjak@gmail.com>
26676
26677 * config/i386/i386.md: Use REG_P, MEM_P, CONST_INT_P, LABEL_P,
26678 JUMP_P and CALL_P predicates where applicable.
26679 * config/i386/i386.c: Ditto.
26680 * config/i386/i386.md: Ditto.
26681 * config/i386/mmx.md: Ditto.
26682 * config/i386/predicates.md: Ditto.
26683
26684 2007-01-22 Andreas Schwab <schwab@suse.de>
26685
26686 * config/m68k/m68k.h: Fix comment.
26687
26688 2007-01-22 Jan Hubicka <jh@suse.cz>
26689
26690 * passes.c (init_optimization_passes): Do not rerun
26691 pass_early_warn_uninitialized.
26692
26693 2007-01-22 Richard Guenther <rguenther@suse.de>
26694
26695 PR tree-optimization/30038
26696 * tree-ssa-math-opts.c (maybe_record_sincos): New static helper
26697 function.
26698 (execute_cse_sincos_1): Likewise.
26699 (execute_cse_sincos): Likewise.
26700 (gate_cse_sincos): Likewise.
26701 (pass_cse_sincos): New pass CSEing sin() and cos() calls using
26702 the cexpi() canonicalization of sincos().
26703 * tree-pass.h (pass_cse_sincos): Declare.
26704 * passes.c (init_optimization_passes): New pass pas_cse_sincos.
26705
26706 2007-01-21 Eric Botcazou <ebotcazou@libertysurf.fr>
26707
26708 PR rtl-optimization/29329
26709 * combine.c (replaced_rhs_insn): Rename to i2mod.
26710 (replaced_rhs_value): Rename to i2mod_new_rhs.
26711 (i2mod_old_rhs): New global variable.
26712 (combine_instructions): Adjust for above change. Save a copy of
26713 the old RHS into i2mod_old_rhs when the contents of a REG_EQUAL
26714 note are substituted in the second instruction.
26715 (distribute_notes) <REG_DEAD>: Adjust for above change. Do not
26716 ditch the note if it pertains to the second eliminated register
26717 and this register is mentioned in i2mod_old_rhs.
26718
26719 Revert:
26720 2006-09-12 Eric Botcazou <ebotcazou@libertysurf.fr>
26721
26722 * combine.c (distribute_notes) <REG_DEAD>: Do not consider SETs past
26723 the insn to which the note was originally attached.
26724
26725 2007-01-21 Jan Hubicka <jh@suse.cz>
26726
26727 * ipa-inline.c (inlining_mode): Comment, move up.
26728 (cgraph_decide_inlining_incrementally): Do not perform inlining
26729 itself; fix handling of flattening of self recursive functions.
26730 (cgraph_find_cycles): Remove.
26731 (cgraph_flatten_node): Remove.
26732 (cgraph_decide_inlining): Use incremental inliner to handle flattening.
26733 (try_inline): New function.
26734 (cgraph_early_inlining): Update call of
26735 cgraph_decide_inlining_incrementally. Apply inlining here.
26736 (apply_inline): Update call of cgraph_decide_inlining_incrementally.
26737
26738 2007-01-21 Dirk Mueller <dmueller@suse.de>
26739
26740 PR bootstrap/30511
26741 * tree-vrp.c (check_array_bounds): do not warn
26742 about ADDR_EXPR's of ARRAY_REF's which are immediately
26743 used in binary expressions.
26744
26745 2007-01-21 Ira Rosen <irar@il.ibm.com>
26746
26747 * tree-vectorizer.h (struct _stmt_vec_info): Add new field
26748 read_write_dep and macros for its access.
26749 * tree-vectorizer.c (new_stmt_vec_info): Initialize the new field.
26750 * tree-vect-analyze.c (vect_analyze_data_ref_dependence): Remove
26751 argument, call vect_check_interleaving for every independent pair of
26752 data-refs. Mark loads that access the same memory location as a store
26753 in the loop.
26754 (vect_check_dependences): Remove.
26755 (vect_analyze_data_ref_dependences): Remove vect_check_dependences
26756 call, fix the call to vect_analyze_data_ref_dependence.
26757 (vect_analyze_data_ref_access): For statements that access the same
26758 data-ref, check that they are not stores; for loads, check that there
26759 is no store that access the same location.
26760
26761 2007-01-20 Roger Sayle <roger@eyesopen.com>
26762 Joseph Myers <joseph@codesourcery.com>
26763
26764 * doc/invoke.texi (-fdump-rtl-combine): Fix under/overfull hbox.
26765 (-fdump-rtl-stack): Likewise.
26766 (-fno-signed-zeros): Use @minus{} for a minus sign. Correct typo.
26767 (-mcheck-zero-division, -mcpu): Fix under/overfull hbox.
26768 (-mpt-fixed): Use @minus{} for minus sign.
26769 (Using Precompiled Headers): Fix under/overfull hbox.
26770
26771 2007-01-20 Jan Hubicka <jh@suse.cz>
26772
26773 * tree-flow.h (struct stmt_ann_d): Move references_memory to proper
26774 place within annotation.
26775
26776 2007-01-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
26777
26778 * pa.c (output_move_double): Change array size of xoperands to 4.
26779
26780 2007-01-20 Jan Hubicka <jh@suse.cz>
26781
26782 * tree-tailcall.c (adjust_return_value): Do not use RESULT_DECL
26783 as temporary.
26784
26785 2007-01-19 Ian Lance Taylor <iant@google.com>
26786
26787 * expmed.c (expand_divmod) [TRUNC_MOD_EXPR, TRUNC_DIV_EXPR]: Cast
26788 constant to unsigned HOST_WIDE_INT before negating.
26789
26790 2007-01-19 Ian Lance Taylor <iant@google.com>
26791
26792 * tree-ssa-operands.h (struct vuse_vec_d): Change num_vuse field
26793 to unsigned.
26794 (VUSE_VECT_ELEMENT) [ENABLE_CHECKING]: Use unsigned comparison.
26795 (VUSE_ELEMENT_PTR) [ENABLE_CHECKING]: Likewise.
26796 (SET_VUSE_VECT_ELEMENT) [ENABLE_CHECKING]: Likewise.
26797 (SET_VUSE_ELEMENT_VAR) [ENABLE_CHECKING]: Likewise.
26798 (SET_VUSE_ELEMENT_PTR) [ENABLE_CHECKING]: Likewise.
26799 (realloc_vdef, realloc_vuse): Change second parameter to
26800 unsigned.
26801 (ssa_operand_iterator_d): Change vuse_index and mayuse_index
26802 fields to unsigned.
26803 * tree-ssa-operands.c (realloc_vop): Change num_elem parameter to
26804 unsigned. Change x and lim locals to unsigned.
26805 (realloc_vdef, realloc_vuse): Change num_elem parameter to
26806 unsigned.
26807 (finalize_ssa_vuse_ops): Change old_i local to unsigned.
26808 (copy_virtual_operands): Change i and n locals to unsigned.
26809
26810 2007-01-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
26811
26812 PR middle-end/29335
26813 * builtins.c (fold_builtin_1): Handle builtin fdim.
26814
26815 2007-01-20 Jan Hubicka <jh@suse.cz>
26816
26817 * tree-ssa.c (init_tree_ssa): Do not call init_alias_heapvars.
26818 * tree-ssa-structalias.c (compute_points_to_sets): Do call
26819 init_alias_heapvars.
26820 (init_alias_heapvars): Initialize only when not already initialized.
26821 (delete_alias_heapvars): Set heapvar_for_stmt to NULL.
26822
26823 2007-01-19 Roger Sayle <roger@eyesopen.com>
26824
26825 * common.opt (fsigned-zeros): New command line option.
26826 * flags.h (HONOR_SIGNED_ZEROS): Control via flag_signed_zeros instead
26827 of flag_unsafe_math_optimizations.
26828 * opts.c (set_fast_math_flags): The -ffast-math command line option
26829 implies -fno-signed-zeros.
26830 (fast_math_flags_set_p): Likewise.
26831
26832 * doc/invoke.texi: Document new -fno-signed-zeros option, and update
26833 the documentation of -ffast-math appropriately. Wrap long lines.
26834
26835 2007-01-19 Steve Ellcey <sje@cup.hp.com>
26836
26837 * system.h (ASM_MAKE_LABEL_LINKONCE): Poison.
26838 * varasm.c (globalize_decl): Remove ASM_MAKE_LABEL_LINKONCE ifdef.
26839
26840 2007-01-19 Tomas Bily <tbily@suse.cz>
26841
26842 * cgraphunit.c (cgraph_finalize_function): Updating of pid
26843 * tree-profile.c:
26844 (tree_init_ic_make_global_vars): New function
26845 (tree_init_edge_profiler): call of tree_init_ic_make_global_vars
26846 (tree_gen_ic_profiler): New function
26847 (tree_gen_ic_func_profiler): New function
26848 (tree_profiling): Added calling of tree_gen_ic_func_profiler
26849 (tree_profile_hooks): Added hook for indirec/virtual calls
26850 * value-prof.c (tree_find_values_to_profile): New case for
26851 indirect calls
26852 (tree_values_to_profile): Call for determining indirect/virtual
26853 counters
26854 (tree_indirect_call_to_profile): New function
26855 (tree_ic_transform): New function
26856 (tree_ic): New function
26857 (find_func_by_pid): New function
26858 (init_pid_map): New function
26859 (tree_value_profile_transformations): Added check for
26860 indirect/virtual call transformation
26861 * value-prof.h (enum hist_type): New counter type for
26862 indirect/virtual calls
26863 (profile_hooks): Added new hook for profiling indirect/virtual
26864 calls
26865 * profile.c (instrument_values): New case for indirect/virtual
26866 call added
26867 * gcov-io.h (GCOV_LAST_VALUE_COUNTER): Changed to 6
26868 (GCOV_COUNTER_V_INDIR): New counter type
26869 (GCOV_COUNTER_NAMES): New name of counter "indirect" added
26870 (GCOV_MERGE_FUNCTIONS): New merge function for indirect/virtual
26871 call added
26872 * cgraph.c: Definition of cgraph_max_pid
26873 (cgraph_create_node): Default init of pid attribute
26874 * cgraph.h: Declaration of cgraph_max_pid
26875 (struct cgraph_node): Added pid attribute
26876 * libgcov.c (__gcov_indirect_call_profiler): New function
26877 (__gcov_one_value_profiler_body): New function
26878 (__gcov_one_value_profiler): Body was moved to
26879 __gcov_one_value_profiler_body and calls it
26880
26881 2007-01-19 Basile Starynkevitch <basile@starynkevitch.net>
26882
26883 * doc/gty.texi (Options): Document the mark_hook option to GTY.
26884 * gengtype.c (write_types_data, write_func_for_structure,
26885 write_types, ggc_wtd, pch_wtd): Add skip_hooks to
26886 write_types_data, ggc_wtd, pch_wtd for processing mark_hook.
26887 (walk_type, write_func_for_structure): Generate the mark_hook if
26888 needed.
26889
26890 2007-01-19 Jan Hubicka <jh@suse.cz>
26891
26892 * ipa-inline.c (cgraph_decide_inlining_incrementally): Instead of
26893 'early' argument take inlining mode argument specifying whether to
26894 inline for size/speeed or all functions; add support for flattening;
26895 improve dumpting.
26896 (cgraph_early_inlining): Update call of decide_inlining_incrementally.
26897
26898 2007-01-19 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
26899
26900 PR c++/17947
26901 * toplev.c (warn_deprecated_use): Use %qD instead of %qs to print
26902 the name of the declared identifier.
26903
26904 2007-01-19 Dirk Mueller <dmueller@suse.de>
26905
26906 * config/i386.h (CONDITIONAL_REGISTER_USAGE): Store
26907 result of PIC_OFFSET_TABLE_REGNUM in temporary variable to avoid
26908 duplicate evaluation.
26909
26910 2007-01-19 Uros Bizjak <ubizjak@gmail.com>
26911
26912 * config/i386/i386.md (acos<mode>2): Rename from acossf2 and acosdf2.
26913 Macroize expander using X87MODEF12 mode macro. Extend operand 1
26914 to XFMode, use acosxf2 and truncate result to requested mode.
26915 Use SSE_FLOAT_MODE_P to disable patterns for SSE math.
26916 (asin<mode>2): Similarly, with asin expanders.
26917 (*fscalexf4_i387): Rename from *fscalexf4.
26918 (expNcorexf3): New expander.
26919 (expxf2, exp10xf2, exp2xf2): Use expNcorexf3 expander.
26920 (exp<mode>2): Rename from expsf2 and expdf2. Macroize expander using
26921 X87MODEF12 mode macro. Extend operand 1 to XFMode, use expxf2 and
26922 truncate result to requested mode. Use SSE_FLOAT_MODE_P to disable
26923 patterns for SSE math.
26924 (exp10<mode>2): Similarly, with exp10 expanders.
26925 (exp2<mode>2): Similarly, with exp2 expanders.
26926 (expm1<mode>2): Similarly, with expm1 expanders.
26927 (ldexp<mode>3): Similarly, with ldexp expanders.
26928 (log<mode>2, log10<mode>2, log2<mode>2, log1p<mode>2, logb<mode>2):
26929 Use gen_truncxf<mode>2_i387_noop to truncate result.
26930
26931 2007-01-19 Richard Sandiford <richard@codesourcery.com>
26932
26933 * config/m68k/m68k.h (PREFERRED_STACK_BOUNDARY): Define to 32
26934 for ColdFire targets.
26935
26936 2007-01-19 Nathan Sidwell <nathan@codesourcery.com>
26937 Richard Sandiford <richard@codesourcery.com>
26938
26939 * config/m68k/m68k.h (M68K_STATIC_CHAIN_REG_NAME): New macro.
26940 (INITIALIZE_TRAMPOLINE): Use STATIC_CHAIN_REGNUM.
26941 (__transfer_from_trampoline): Use M68K_STATIC_CHAIN_REG_NAME.
26942 * config/m68k/m68kelf.h (STATIC_CHAIN_REGNUM): Override.
26943 (M68K_STATIC_CHAIN_REG_NAME): Likewise.
26944 * config/m68k/netbsd-elf.h (M68K_STATIC_CHAIN_REG_NAME): Likewise.
26945
26946 2007-01-19 Richard Sandiford <richard@codesourcery.com>
26947
26948 * config/m68k/m68k.md (adddi_dilshr32): Rename to...
26949 (*adddi_dilshr32): ...this. Fix formatting. Remove commented-out
26950 non-canonical pattern. Restrict to !TARGET_COLDFIRE.
26951 (*adddi_dilshr32_cf): New pattern.
26952 (adddi3, subdi3): Remove first alternatives.
26953
26954 2007-01-19 Richard Sandiford <richard@codesourcery.com>
26955
26956 * config/m68k/m68k.c (notice_update_cc): If an SFmode move is
26957 implemented using move.l, do not use its cc result for floating-point
26958 comparisons.
26959
26960 2007-01-19 Richard Sandiford <richard@codesourcery.com>
26961
26962 * config/m68k/m68k.h (EXTRA_CONSTRAINT): Stop the 'T' constraint
26963 from accepting 's' constraints if flag_pic.
26964
26965 2007-01-19 Richard Sandiford <richard@codesourcery.com>
26966
26967 * config/m68k/m68k.md (bordered, bunordered, buneq, bunge, bungt)
26968 (bunle, bunlt, bltgt, bordered_rev, bunordered_rev, buneq_rev)
26969 (bunge_rev, bungt_rev, bunle_rev, bunlt_rev, bltgt_rev): Change
26970 condition from TARGET_68881 to TARGET_HARD_FLOAT.
26971
26972 2007-01-19 Sandra Loosemore <sandra@codesourcery.com>
26973
26974 * longlong.h (count_leading_zeros, COUNT_LEADING_ZEROS_0): Add
26975 ColdFire alternatives.
26976 * config/m68k/m68k.h (CLZ_DEFINED_VALUE_AT_ZERO): New macro.
26977 * config/m68k/m68k.md (clzsi2): Define for ColdFire
26978 architectures that support ff1 instruction.
26979
26980 2007-01-19 Richard Sandiford <richard@codesourcery.com>
26981 Julian Brown <julian@codesourcery.com>
26982
26983 * config/m68k/m68k.h (CONST_OK_FOR_LETTER_P): Add an 'R' case.
26984 * config/m68k/m68k.md (*movsi_cfv4): Fold into...
26985 (*movsi_cf): ...here. Remove unnecessary 'R' from 'Rg'.
26986 Add commentary.
26987
26988 2007-01-19 Richard Sandiford <richard@codesourcery.com>
26989
26990 * config/m68k/m68k-protos.h (valid_mov3q_const): Take a HOST_WIDE_INT
26991 and return a bool.
26992 (output_move_const_into_data_reg, output_move_simode_const): Delete.
26993 * config/m68k/m68k.c (const_method, const_int_cost): Take a
26994 HOST_WIDE_INT instead of an rtx.
26995 (m68k_rtx_costs): Update call accordingly.
26996 (output_move_const_into_data_reg): Likewise. Fix formatting.
26997 (valid_mov3q_const): Take a HOST_WIDE_INT instead of an rtx.
26998 Return a bool.
26999 (output_move_simode_const): Update calls after above changes.
27000 Rework to use automatic variables and predicates like MEM_P.
27001 * config/m68k/m68k.md (pushexthisi_const): Update call to
27002 valid_mov3q_const.
27003
27004 2007-01-19 Dirk Mueller <dmueller@suse.de>
27005
27006 * tree-ssa-alias.c (perform_var_substitution): Fix typo
27007 in dump_flags test.
27008
27009 2007-01-19 Richard Guenther <rguenther@suse.de>
27010
27011 * builtins.c (expand_builtin_cexpi): Fall back to expanding
27012 via cexp in case sincos is not available.
27013
27014 2007-01-19 Richard Guenther <rguenther@suse.de>
27015
27016 * doc/tm.texi (TARGET_HAS_SINCOS): Document new target macro.
27017 * defaults.h (TARGET_HAS_SINCOS): Default to off.
27018 * config/linux.h (TARGET_HAS_SINCOS): Set to on if we have glibc.
27019 * config/alpha/linux.h (TARGET_HAS_SINCOS): Likewise.
27020 * config/sparc/linux.h (TARGET_HAS_SINCOS): Likewise.
27021 * config/sparc/linux64.h (TARGET_HAS_SINCOS): Likewise.
27022 * config/rs6000/linux.h (TARGET_HAS_SINCOS): Likewise.
27023 * config/rs6000/linux64.h (TARGET_HAS_SINCOS): Likewise.
27024
27025 2007-01-19 Uros Bizjak <ubizjak@gmail.com>
27026
27027 * config/i386/i386.md (*fpatanxf3_i387, fpatan_extend<mode>xf3_i387):
27028 New insn patterns.
27029 (atan2sf3_1, atan2df3_1, atan2xf3_1): Remove insn patterns.
27030 (atan2xf3): Directly generate RTL pattern.
27031 (atan2<mode>3): Rename from atan2sf3 and atan2df3 and macroize insn
27032 patterns using X87MODEF12 mode macro. Use fpatan_extend<mode>xf3_i387
27033 and truncate result to requested mode. Use SSE_FLOAT_MODE_P to
27034 disable patterns for SSE math.
27035 (atan<mode>2): Rename from atansf2 and atandf2 and macroize insn
27036 patterns using X87MODEF12 mode macro. Use fpatan_extend<mode>xf3_i387
27037 and truncate result to requested mode. Use SSE_FLOAT_MODE_P to
27038 disable patterns for SSE math.
27039
27040 2007-01-19 Alexandre Oliva <aoliva@redhat.com>
27041
27042 * libgcc-std.ver: Fix typo in %inherit for GCC_4.3.0.
27043
27044 2007-01-18 Roger Sayle <roger@eyesopen.com>
27045
27046 * fold-const.c (fold_unary) <VIEW_CONVERT_EXPR>: Optimize away a
27047 VIEW_CONVERT_EXPR to the same type as it's operand.
27048
27049 2007-01-18 David Edelsohn <edelsohn@gnu.org>
27050
27051 * config/rs6000/darwin-ldouble.c: Only build _SOFT_FLOAT if
27052 configured for long double 128.
27053
27054 2007-01-18 Mike Stump <mrs@apple.com>
27055
27056 * config/rs6000/rs6000.c (rs6000_emit_vector_compare): Fix build
27057 error.
27058
27059 2007-01-18 Michael Meissner <michael.meissner@amd.com>
27060
27061 * i386.c (ix86_compute_frame_layout): Make fprintf's in #if 0 code
27062 type correct.
27063
27064 2007-01-18 Jan Hubicka <jh@suse.cz>
27065
27066 * tree-ssa-operands.c (vop_free_bucket_size): Never return value
27067 greater than NUM_VOP_FREE_BUCKETS.
27068
27069 2007-01-18 Daniel Berlin <dberlin@dberlin.org>
27070
27071 * tree-ssa-structalias.c: Update comments.
27072 (ptabitmap_obstack): Removed.
27073 (pta_obstack): New.
27074 (oldpta_obstack): Ditto.
27075 (stats): Add a few members.
27076 (struct variable_info): Remove node, complex, address_taken, and
27077 indirect_target members. Add oldsolution member.
27078 (new_var_info): Do not initialize removed members.
27079 (constraint_expr_type): Remove INCLUDES.
27080 (constraint_graph): Add size, implicit_preds, rep,
27081 indirect_cycles, eq_rep, label, direct_nodes, and complex members.
27082 (FIRST_REF_NODE): New macro.
27083 (LAST_REF_NODE): Ditto.
27084 (FIRST_ADDR_NODE): Ditto.
27085 (find): New function.
27086 (unite): Ditto.
27087 (dump_constraint): Do not handle INCLUDES.
27088 (insert_into_complex): Do not insert duplicate constraints.
27089 (condense_varmap_nodes): Renamed and rewritten into ...
27090 (merge_node_constraints): This. Also fix bug in handling of
27091 offseted copy constraints.
27092 (clear_edges_for_node): No longer need to deal with preds at all,
27093 or removing associated preds/succs.
27094 (merge_graph_nodes): Deal with indirect_cycles.
27095 Don't deal with predecessors.
27096 (add_implicit_graph_edge): New function.
27097 (add_pred_graph_edge): Ditto.
27098 (add_graph_edge): Don't deal with predecessors.
27099 (build_constraint_graph): Removed.
27100 (build_pred_graph): New function.
27101 (build_succ_graph): Ditto.
27102 (struct scc_info): Removed in_component. Added roots, dfs, and
27103 node_mapping. Remove visited_index, unification_queue.
27104 (scc_visit): Deal with union-find we do now.
27105 Deal with cycles with REF nodes.
27106 (collapse_nodes): Renamed and rewritten to ...
27107 (unify_nodes): This.
27108 (process_unification_queue): Removed.
27109 (topo_visit): Cleanup
27110 (do_da_constraint): Use find.
27111 (do_sd_constraint): Ditto.
27112 (do_ds_constraint): Ditto.
27113 (do_complex_constraint): Ditto.
27114 (init_scc_info): Update for removed and added members.
27115 (find_and_collapse_graph_cycles): Renamed and rewritten into ...
27116 (find_indirect_cycles): This.
27117 (equivalence_class): New variable.
27118 (label_visit): New function.
27119 (perform_variable_substitution): Rewritten.
27120 (free_var_substitution_info): New function.
27121 (find_equivalent_node): Ditto.
27122 (move_complex_constraints): Ditto.
27123 (eliminate_indirect_cycles): Ditto.
27124 (solve_graph): Only propagate changed bits.
27125 Use indirect cycle elimination.
27126 Use find.
27127 (tree_id_t): Rename to tree_vi_t, delete id member, add vi member.
27128 (tree_id_eq): Renamed to ...
27129 (tree_vi_eq): This. Update for member change
27130 (insert_id_for_tree): Renamed and rewritten to ...
27131 (insert_vi_for_tree): This.
27132 (lookup_id_for_tree): Renamed and rewritten to ...
27133 (lookup_vi_for_tree): This.
27134 (get_id_for_tree): Renamed and rewritten to ...
27135 (get_vi_for_tree): Ditto.
27136 (get_constraint_exp_from_ssa_var): Update to use get_vi_for_tree.
27137 (process_constraint): Don't handle INCLUDES.
27138 Remove special ADDRESSOF case.
27139 (find_func_aliases): Rewrite to use vi functions instead of id
27140 ones.
27141 (create_function_info_for): Ditto.
27142 (create_variable_info_for): Ditto.
27143 (intra_create_variable_infos): Ditto.
27144 (merge_smts_into): Ditto.
27145 (find_what_p_points_to): Ditto.
27146 (init_base_vars): Ditto.
27147 (init_alias_vars): Ditto.
27148 (remove_preds_and_fake_succs): New function.
27149 (dump_sa_points_to_info): Dump new stats.
27150 (dump_solution_for_var): Use find.
27151 (set_used_smts): Fix formatting.
27152 (compute_points_to_sets): Updated for new functions.
27153 (ipa_pta_execute): Ditto.
27154
27155 2007-01-18 Kazu Hirata <kazu@codesourcery.com>
27156 Richard Sandiford <richard@codesourcery.com>
27157
27158 * doc/tm.texi (TARGET_FUNCTION_VALUE): Expand documentation of
27159 parallels.
27160 * calls.c (expand_call): If the return value is a PARALLEL,
27161 extract its first member.
27162 * config/m68k/linux.h (FUNCTION_EXTRA_EPILOGUE): Remove.
27163 * config/m68k/m68k.c (m68k_output_function_epilogue): Don't
27164 use FUNCTION_EXTRA_EPILOGUE.
27165 (m68k_function_value): Return a PARALLEL if the return value
27166 is of a pointer type.
27167 * config/m68k/netbsd-elf.h (current_function_returns_pointer)
27168 (FUNCTION_EXTRA_EPILOGUE): Remove.
27169 * config/m68k/m68k.md (D0_REG): New constant.
27170
27171 2007-01-18 Kazu Hirata <kazu@codesourcery.com>
27172
27173 * config/m68k/m68k.c (m68k_output_function_epilogue): Don't
27174 output a NOP for empty epilogues.
27175
27176 2007-01-18 Richard Sandiford <richard@codesourcery.com>
27177
27178 * config/m68k/m68k.c (m68k_use_return_insn): Update comments
27179 before function. Extend register save check to include all
27180 registers, not just integer ones.
27181
27182 2007-01-18 Kazu Hirata <kazu@codesourcery.com>
27183
27184 * config/m68k/m68k-protos.h (use_return_insn): Rename to...
27185 (m68k_use_return_insn): ...this.
27186 * config/m68k/m68k.h (USE_RETURN_INSN): Delete.
27187 * config/m68k/m68k.c (use_return_insn): Rename to...
27188 (m68k_use_return_insn): ...this.
27189 * config/m68k/m68k.md (return): Use m68k_use_return_insn instead
27190 of USE_RETURN_INSN.
27191
27192 2007-01-18 Nathan Sidwell <nathan@codesourcery.com>
27193
27194 * config/m68k/fpgnulib.c (__truncdfsf2): Implement round to
27195 nearest even, fix denormal rounding overflow.
27196
27197 2007-01-18 Richard Sandiford <richard@codesourcery.com>
27198
27199 * config/m68k/m68k.md (movsf_cf_hard): Use fsmove instead of
27200 f%$smove and f%$move.
27201 (movdf_cf_hard): Use fdmove for cases 0 and 3 and fmove for case 1.
27202 (extendsfdf2_cf): Use fdmove instead of f%&move.
27203 (truncdfsf2_cf): Use fsmove instead of f%$smove.
27204 (add<mode>3_cf, sub<mode>3_cf): Use <FP:prec> instead of <FP:round>.
27205
27206 2007-01-18 Richard Sandiford <richard@codesourcery.com>
27207
27208 * config/m68k/m68k.md (movdf_cf_hard): Use output_move_double for
27209 GPR<-GPR moves.
27210
27211 2007-01-18 Richard Sandiford <richard@codesourcery.com>
27212
27213 * real.h (real_format): Add a canonical_nan_lsbs_set field.
27214 (coldfire_single_format): Declare.
27215 (coldfire_double_format): Likewise.
27216 * real.c (encode_ieee_single): Use canonical_nan_lsbs_set instead
27217 of qnan_msb_set to determine the lower bits of a canonical
27218 NaN significand.
27219 (encode_ieee_double): Likewise.
27220 (encode_ieee_quad): Likewise.
27221 (ieee_single_format): Initialize canonical_nan_lsbs_set.
27222 (mips_single_format): Likewise.
27223 (ieee_double_format): Likewise.
27224 (mips_double_format): Likewise.
27225 (ieee_extended_motorola_format): Likewise.
27226 (ieee_extended_intel_96_format): Likewise.
27227 (ieee_extended_intel_128_format): Likewise.
27228 (ieee_extended_intel_96_round_53_format): Likewise.
27229 (ibm_extended_format): Likewise.
27230 (mips_extended_format): Likewise.
27231 (ieee_quad_format): Likewise.
27232 (mips_quad_format): Likewise.
27233 (vax_f_format): Likewise.
27234 (vax_d_format): Likewise.
27235 (vax_g_format): Likewise.
27236 (i370_single_format): Likewise.
27237 (i370_double_format): Likewise.
27238 (decimal_single_format): Likewise.
27239 (decimal_double_format): Likewise.
27240 (decimal_quad_format): Likewise.
27241 (c4x_single_format): Likewise.
27242 (c4x_extended_format): Likewise.
27243 (real_internal_format): Likewise.
27244 (coldfire_single_format): New real_format.
27245 (coldfire_double_format): Likewise.
27246 * config/pdp11/pdp11.c (pdp11_f_format): Initialize
27247 canonical_nan_lsbs_set.
27248 (pdp11_d_format): Likewise.
27249 * config/m68k/m68k.c (override_options): Override REAL_FORMAT_MODE
27250 if TARGET_COLDFIRE_CPU.
27251
27252 2007-01-18 Richard Sandiford <richard@codesourcery.com>
27253
27254 * config/m68k/m68k-protos.h (m68k_output_pic_call): Delete.
27255 (output_call, m68k_legitimize_call_address): Declare.
27256 * config/m68k/m68k.h (EXTRA_CONSTRAINT): Remove unnecessary
27257 parenthesees. Add support for a 'W' constraint.
27258 (LEGITIMATE_PIC_OPERAND_P): Remove SYMBOL_REF_FLAG handling.
27259 (PRINT_OPERAND_PUNCT_VALID_P): Remove comment about 'o'.
27260 (m68k_symbolic_call, m68k_symbolic_jump): Declare.
27261 * config/m68k/m68k.c (m68k_symbolic_call, m68k_symbolic_jump): New
27262 variables.
27263 (override_options): Initialize them. Do not set flag_no_function_cse
27264 for TARGET_ID_SHARED_LIBRARY.
27265 (m68k_output_pic_call): Delete.
27266 (m68k_legitimize_call_address): New function.
27267 (print_operand): Remove the %o prefix. Handle the %p prefix.
27268 (output_call): New function.
27269 (m68k_output_mi_thunk): Use m68k_symbolic_jump. Always load the
27270 target address from the GOT if symbolic jumps are not allowed.
27271 * config/m68k/m68k.md (call, general_operand): Do not set
27272 SYMBOL_REF_FLAG. Use m68k_legitimize_call_address instead.
27273 Merge separate flag_pic and !flag_pic define_insns into...
27274 (*call, *call_value): ...these new patterns. Match the address
27275 rather than the containing MEM and require it to be a call_operand.
27276 Use output_call to generate the asm template.
27277 * config/m68k/predicates.md (const_call_operand): New predicate.
27278 (call_operand): Likewise.
27279
27280 2007-01-18 Nathan Sidwell <nathan@codesourcery.com>
27281
27282 * config/m68k/m68k.h (REGISTER_MOVE_COST): Simplify definition.
27283 (STACK_GROWS_DOWNWARD): Define to 1.
27284 (FUNCTION_VALUE, LIBCALL_VALUE, FUNCTION_VALUE_REGNO_P): Equivocate
27285 comments, emphasizing that these values are only defaults.
27286 * config/m68k/linux.h (LINK_SPEC): Fix formatting in #undef.
27287 * config/m68k/m68k.c (const_method): Remove trailing whitespace.
27288
27289 2007-01-18 Richard Sandiford <richard@codesourcery.com>
27290
27291 * config/m68k/m68k.md (cmpsi): Remove outdated flag_pic handling.
27292
27293 2007-01-18 Kazu Hirata <kazu@codesourcery.com>
27294 Richard Sandiford <richard@codesourcery.com>
27295
27296 * config/m68k/m68k.h (DATA_REGNO_P, ADDRESS_REGNO_P, INT_REGNO_P)
27297 (FP_REGNO_P): New macros.
27298 (REGNO_OK_FOR_INDEX_P, REGNO_OK_FOR_BASE_P, REGNO_OK_FOR_DATA_P)
27299 (REGNO_OK_FOR_FP_P, REG_OK_FOR_INDEX_P, REG_OK_FOR_BASE_P): Use them.
27300 (EH_RETURN_STACKADJ_RTX): Use A0_REG.
27301 * config/m68k/m68k.c (m68k_regno_mode_ok): Use the new REGNO macros.
27302
27303 2007-01-18 Nathan Sidwell <nathan@codesourcery.com>
27304
27305 * config.gcc (m68k-*-aout*, m68k-*-coff*, m68020-*-elf*, m68k-*-elf*)
27306 (m68k-*-uclinuxoldabi, m68k-*-uclinux*, m68k-*-rtems*): Add t-floatlib
27307 to $tmake_file.
27308 * config/m68k/t-floatlib: New file, extracting common code from...
27309 * config/m68k/t-m68kbare, config/m68k/t-m68kelf,
27310 * config/m68k/t-uclinux: Here.
27311 * config/m68k/fpgnulib.c: Do not compile extendeed precision
27312 routines on ColdFire targets.
27313
27314 2007-01-18 Nathan Sidwell <nathan@codesourcery.com>
27315
27316 * config.gcc (m68k-*-aout*, m68k-*-coff*, m68020-*-elf*, m68k-*-elf*)
27317 (m68010-*-netbsdelf*, m68k*-*-netbsdelf*, m68k*-*-openbsd*)
27318 (m68k-*-uclinuxoldabi, m68k-*-uclinux*, m68k-*-linux*)
27319 (m68k-*-rtems*): Use tm_file rather than m68k/m68k.h and
27320 explicitly set MOTOROLA to 1.
27321 * config/m68k/m68k.h (MOTOROLA): Simplify definition accordingly.
27322
27323 2007-01-18 Richard Sandiford <richard@codesourcery.com>
27324 Nathan Sidwell <nathan@codesourcery.com>
27325
27326 * config/m68k/m68k.h (PCC_STATIC_STRUCT_RETURN): Delete.
27327 (ASM_OUTPUT_REG_PUSH, ASM_OUTPUT_REG_POP): Add MOTOROLA cases.
27328 * config/m68k/coff.h (REGISTER_PREFIX_MD): Delete.
27329 * config/m68k/m68020-elf.h (LIB_SPEC): Delete.
27330 * config/m68k/m68k-none.h (CC1_SPEC, CPP_SUBTARGET_SPEC): Delete.
27331 * config/m68k/m68kelf.h (IMMEDIATE_PREFIX, REGISTER_PREFIX_MD)
27332 (ASM_OUTPUT_REG_PUSH, ASM_OUTPUT_REG_POP): Delete.
27333 (NO_DOLLAR_IN_LABEL, PCC_STATIC_STRUCT_RETURN): Don't undefine.
27334 (BSS_ASM_OP, ASM_OUTPUT_SKIP, ASM_OUTPUT_ASCII): Delete.
27335 * config/m68k/m68kemb.h (PCC_STATIC_STRUCT_RETURN): Don't undefine.
27336 * config/m68k/linux.h (SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE)
27337 (WCHAR_TYPE_SIZE, TARGET_OBJFMT_CPP_BUILTINS): Delete.
27338 (TARGET_OS_CPP_BUILTINS): Don't define mc68000 and mc68020 here.
27339 (DBX_REGISTER_NUMBER): Delete.
27340 * config/m68k/netbsd-elf.h (IMMEDIATE_PREFIX): Delete.
27341 (PCC_STATIC_STRUCT_RETURN): Don't undefine.
27342 * config/m68k/openbsd.h (PCC_STATIC_STRUCT_RETURN): Define.
27343
27344 2007-01-18 Richard Sandiford <richard@codesourcery.com>
27345
27346 * config.gcc (m68k-*-uclinux*): Add flat.h to $tm_file.
27347 * config/flat.h: New file.
27348 * crtstuff.c (USE_PT_GNU_EH_FRAME): Don't define if
27349 OBJECT_FORMAT_FLAT.
27350 * config/m68k/m68k.h (ASM_PREFERRED_EH_DATA_FORMAT): Do not use
27351 indirect references for -msep-data or -mid-shared-library.
27352 Do not use PC-relative code addresses either.
27353 * config/m68k/m68k.c (override_options): Restrict -fPIC error
27354 to -mpcrel.
27355 * config/m68k/uclinux.h (STARTFILE_SPEC): Define. Use Scrt1.o
27356 for shared libraries and crt1.o for executables. Use crti.o and
27357 crtbegin.o.
27358 (ENDFILE_SPEC): Use crtend.o and crtn.o.
27359 (LIB_SPEC): Suppress -Rlibc.gdb if -static-libc is given.
27360 Do not add -elf2flt or -shared-lib-id options here.
27361 (LINK_SPEC): Define. Pass -elf2flt if no -elf2flt option is given.
27362 Pass -shared-lib-id if -mid-shared-library, taking the library
27363 identifier from -mshared-library-id if given, otherwise
27364 defaulting to 0.
27365 (EH_FRAME_IN_DATA_SECTION): Do not undefine.
27366 (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP): Likewise.
27367 (TARGET_OS_CPP_BUILTINS): Define __GXX_MERGED_TYPEINFO_NAMES=0
27368 and __GXX_TYPEINFO_EQUALITY_INLINE=0 if -mid-shared-library.
27369 (DRIVER_SELF_SPECS): Map unadorned PIC options to -msep-data.
27370 * config/m68k/t-uclinux (EXTRA_MULTILIB_PARTS): Add crtbegin.o
27371 and crtend.o.
27372 * config/m68k/lb1sf68.asm (PICCALL): Use an lea and pc-relative
27373 jump sequence for ISA A and ISA A+.
27374 (PICJUMP): Likewise.
27375
27376 2007-01-18 Richard Sandiford <richard@codesourcery.com>
27377
27378 * config.gcc (m68k-*-uclinux*): Base the port on the common
27379 and m68k GNU/Linux files rather than on the generic ELF ones.
27380 * config/m68k/uclinux.h (TARGET_VERSION): Override.
27381 (TARGET_OS_CPP_BUILTINS): Use LINUX_TARGET_OS_CPP_BUILTINS.
27382
27383 2007-01-18 Julian Brown <julian@codesourcery.com>
27384 Richard Sandiford <richard@codesourcery.com>
27385
27386 * config/m68k/m68k.h (LONG_DOUBLE_TYPE_SIZE): Make 64-bit on ColdFire.
27387 (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Likewise.
27388 * config/m68k/netbsd-elf.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Undefine
27389 before redefining.
27390 * config/m68k/uclinux-oldabi.h (LONG_DOUBLE_TYPE_SIZE): Redefine to
27391 80 unconditionally.
27392 (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Likewise.
27393
27394 2007-01-18 Richard Sandiford <richard@codesourcery.com>
27395
27396 * doc/install.texi: Document m68k-uclinuxoldabi.
27397 * config.gcc (m68k-*-uclinuxoldabi): New configuration.
27398 * config/m68k/uclinux-oldabi.h: New file, copied from
27399 config/m68k/uclinux.h.
27400
27401 2007-01-18 Kaz Kojima <kkojima@rr.iij4u.or.jp>
27402
27403 * config/m32r/m32r-protos.h (m32r_expand_epilogue): Declare it.
27404 * config/m32r/m32r.c (m32r_setup_incoming_varargs): Use gen_frame_mem.
27405 (m32r_compute_frame_size): Use unsigned for regno.
27406 (m32r_reload_lr): Use gen_frame_mem.
27407 (pop): New.
27408 (m32r_output_function_epilogue): Don't output the function epilogue
27409 textually here.
27410 (m32r_expand_epilogue): New.
27411 (direct_return): Return false if the function has the interrupt
27412 attribute.
27413 (m32r_hard_regno_rename_ok): Remove code for the textual epilogue.
27414 * config/m32r/m32r.md (epilogue): New expander.
27415 (return_lr, return_rte): New insns.
27416 (return): Make it expander.
27417 (return_normal): New expander.
27418
27419 2007-01-18 Josh Conner <jconner@apple.com>
27420
27421 PR target/30485
27422 * config/rs6000/rs6000.c (rs6000_emit_vector_compare): Add
27423 support for UNLE, UNLT, UNGE, and UNGT.
27424
27425 2007-01-18 Jan Hubicka <jh@suse.cz>
27426
27427 * tree-vrp.c (finalize_jump_threads): Do not call cleanup_cfg by hand.
27428 * tree-tailcall (add_virtual_phis): Likewise.
27429 (optimize_tail_call): Return TODOs.
27430 (execute_tail_calls): Return TODOs.
27431 * tree-ssa-ccp (execute_fold_all_builtins): Do cleanup_cfg via TODO.
27432 * tree-cfgcleanup.c (cleanup_tree_cfg_loop): Return if something
27433 changed.
27434 * tree-ssa-forwprop.c (tree_ssa_forward_propagate_single_use_value):
27435 Cleanup cfg using TODO.
27436 * tree-flow.h (cleanup_tree_cfg_loop): Update prototype.
27437 * passes.c (execute_function_todo): When cleanup did something, remove
27438 unused locals.
27439 * tree-cfg.c (pass_build_cfg): Add cleanup_cfg TODO.
27440 (make_edges): Don't cleanup_cfg.
27441
27442 2007-01-18 Uros Bizjak <ubizjak@gmail.com>
27443
27444 * reg-stack.c (subst_stack_regs_pat) [UNSPEC_SINCOS_COS,
27445 UNSPEC_XTRACT_FRACT]: Use generic code for instructions that
27446 operate on the top of stack.
27447 [UNSPEC_SINCOS_SIN, UNSPEC_XTRACT_EXP, UNSPEC_TAN]: Rewrite
27448 register handling of instructions that output to the second
27449 stack slot.
27450 [UNSPEC_TAN_ONE, UNSPEC_TAN_TAN]: Remove.
27451 (move_for_stack_reg): Special-case check for dead destination
27452 stack slot for constant load of 1.0 inside UNSPEC_TAN.
27453
27454 * config/i386/i386.md (UNSPEC_TAN): New constant.
27455 (UNSPEC_TAN_ONE, UNSPEC_TAN_TAN): Remove.
27456 (fptanxf4_i387, fptan_extend<mode>xf4_i387): New patterns
27457 to correctly model move of constant 1.0 to top stack slot.
27458 (*tandf3_1, *tansf3_1, *tanxf3_1): Remove insn patterns.
27459 (unnamed peephole2 pattern): Remove corresponding peephole2
27460 pattern that optimizes tan insn and loading of constant 1.0.
27461 (tanxf2): Use fptanxf4_i387.
27462 (tan<mode>2): Rename from tansf2 and tandf2 and macroize insn
27463 patterns using X87MODEF12 mode macro. Use fptan_extend<mode>xf4_i387
27464 and truncate result to requested mode. Use SSE_FLOAT_MODE_P to
27465 disable patterns for SSE math.
27466 (sincos<mode>3): Use truncxf<mode>2_i387_noop for truncation.
27467 (fyl2x_extend<mode>xf3_i387): Use X87MODEF12 for operand 1.
27468
27469 2007-01-18 Dirk Mueller <dmueller@suse.de>
27470 Richard Guenther <rguenther@suse.de>
27471
27472 PR diagnostic/8268
27473 * doc/invoke.texi (Warray-bounds): Document -Warray-bounds.
27474 * common.opt (Warray-bounds): Add new warning option.
27475 * c-opts.c (c_common_handle_option): Define -Warray-bounds
27476 if -Wall is given.
27477 * Makefile.in: make tree-vrp.o depend on toplev.h
27478 * tree-vrp.c (vrp_finalize): Call check_array_refs if -Warray-bounds
27479 is enabled.
27480 (check_array_refs, check_array_bounds, check_array_ref): New.
27481
27482 2007-01-18 Jan Hubicka <jh@suse.cz>
27483
27484 * tree-ssa-ccp.c (ccp_finalize): Return if something changed.
27485 (execute_ssa_ccp): Return flags conditionally.
27486 * tree-ssa-propagate.c (substitue_and_fold): Return if something was
27487 changed.
27488 * tree-ssa-propagate.h (substitute_and_fold): Update prototype.
27489
27490 2007-01-18 Steven Bosscher <steven@gcc.gnu.org>
27491
27492 * cfgcleanup.c (cleanup_cfg): Detect cfglayout mode and set
27493 the CLEANUP_CFGLAYOUT flag when in cfglayout mode.
27494
27495 * Makefile.c (GTFILES): Add cfglayout.h.
27496 * gengtype.c (open_base_files): Likewise.
27497 * cfglayout.c (cfg_layout_function_footer,
27498 cfg_layout_function_header) Reindent to make gengtype happy.
27499 * cfglayout.h (cfg_layout_function_footer,
27500 cfg_layout_function_header): Add GTY(()) marker.
27501
27502 * ifcvt.c (noce_try_sign_mask): Make sure INSN_B is non-null.
27503
27504 2007-01-18 Ben Elliston <bje@au.ibm.com>
27505
27506 * genautomata.c (write_automata): Include xstrerror output in the
27507 error message if writing the DFA description file fails.
27508
27509 2007-01-17 H.J. Lu <hongjiu.lu@intel.com>
27510
27511 * config/mips/mips-protos.h (mips_output_external): Make it
27512 return void.
27513 * config/mips/iris.h (TARGET_ASM_EXTERNAL_LIBCALL): Removed.
27514 * config/mips/mips.c (irix_output_external_libcall): Likewise.
27515 (extern_list): Likewise.
27516 (extern_head): Likewise.
27517 (TARGET_ASM_FILE_END): Likewise.
27518 (mips_file_end): Likewise.
27519 (mips_output_external): Rewritten.
27520
27521 2007-01-18 Ben Elliston <bje@au.ibm.com>
27522
27523 * genpreds.c (write_insn_preds_c): Only write out the function
27524 body for regclass_for_constraint if we have register constraints.
27525
27526 2007-01-17 Tom Tromey <tromey@redhat.com>
27527
27528 * doc/sourcebuild.texi (libgcj Tests): Use sourceware.org.
27529 * doc/install.texi (Testing): Use sourceware.org.
27530 (Binaries): Likewise.
27531 (Specific): Likewise.
27532 * doc/contrib.texi (Contributors): Use sourceware.org.
27533
27534 2007-01-17 Anatoly Sokolov <aesok@post.ru>
27535
27536 * config/avr/avr.h (AVR_HAVE_LPMX): New macro.
27537 (AVR_ENHANCED): Rename to ...
27538 (AVR_HAVE_MUL): ... new.
27539 (avr_enhanced_p): Rename to ...
27540 (avr_have_mul_p): ... new.
27541 (TARGET_CPU_CPP_BUILTINS): Use 'avr_have_mul_p' instead of
27542 'avr_enhanced_p' for "__AVR_ENHANCED__". Define "__AVR_HAVE_MUL__".
27543 * config/avr/avr.c (avr_enhanced_p): Rename to ...
27544 (avr_have_mul_p): ... new.
27545 (base_arch_s): Rename 'enhanced' to 'have_mul'.
27546 (avr_override_options): Use 'avr_have_mul_p' and 'have_mul' instead of
27547 'avr_enhanced_p' and 'enhanced'.
27548 (ashlhi3_out, ashrhi3_out, lshrhi3_out, avr_rtx_costs): Use
27549 AVR_HAVE_MUL instead of AVR_ENHANCED.
27550 * avr.md (*tablejump_enh): Use AVR_HAVE_LPMX instead of AVR_ENHANCED.
27551 (mulqi3, *mulqi3_enh, *mulqi3_call, mulqihi3, umulqihi3, mulhi3,
27552 *mulhi3_enh, *mulhi3_call, mulsi3, *mulsi3_call): Use AVR_HAVE_MUL
27553 instead of AVR_ENHANCED.
27554 (*tablejump_enh): Use AVR_HAVE_LPMX instead of AVR_ENHANCED.
27555 * libgcc.S: Use __AVR_HAVE_MUL__ instead of __AVR_ENHANCED__.
27556 (__tablejump__): Use __AVR_HAVE_LPMX__ instead of __AVR_ENHANCED__.
27557
27558 2007-01-17 Ian Lance Taylor <iant@google.com>
27559
27560 * vec.h (VEC_reserve_exact): Define.
27561 (vec_gc_p_reserve_exact): Declare.
27562 (vec_gc_o_reserve_exact): Declare.
27563 (vec_heap_p_reserve_exact): Declare.
27564 (vec_heap_o_reserve_exact): Declare.
27565 (VEC_OP (T,A,reserve_exact)): New static inline function, three
27566 versions.
27567 (VEC_OP (T,A,reserve)) [all versions]: Remove handling of
27568 negative parameter.
27569 (VEC_OP (T,A,alloc)) [all versions]: Call ...reserve_exact.
27570 (VEC_OP (T,A,copy)) [all versions]: Likewise.
27571 (VEC_OP (T,a,safe_grow)) [all versions]: Likewise.
27572 * vec.c (calculate_allocation): Add exact parameter. Change all
27573 callers.
27574 (vec_gc_o_reserve_1): New static function, from vec_gc_o_reserve.
27575 (vec_gc_p_reserve, vec_gc_o_reserve): Call vec_gc_o_reserve_1.
27576 (vec_gc_p_reserve_exact, vec_gc_o_reserve_exact): New functions.
27577 (vec_heap_o_reserve_1): New static function, from vec_heap_o_reserve.
27578 (vec_heap_p_reserve, vec_heap_o_reserve): Call vec_heap_o_reserve_1.
27579 (vec_heap_p_reserve_exact): New function.
27580 (vec_heap_o_reserve_exact): New function.
27581
27582 2007-01-17 Jan Hubicka <jh@suse.cz>
27583
27584 * ipa-type-escape.c (look_for_casts): Revamp using handled_component_p.
27585
27586 2007-01-17 Eric Christopher <echristo@apple.com>
27587
27588 * config.gcc: Support core2 processor.
27589
27590 2007-01-16 Jan Hubicka <jh@suse.cz>
27591
27592 * tree-ssanames.c (release_dead_ssa_names): Instead of ggc_freeing
27593 the names, just unlink the chain so we don't crash on dangling
27594 pointers
27595 to dead SSA names.
27596
27597 2007-01-16 Jan Hubicka <jh@suse.cz>
27598
27599 * cgraph.h (cgraph_decide_inlining_incrementally): Kill.
27600 * tree-pass.h: Reorder to make IPA passes appear toegher.
27601 (pass_early_inline, pass_inline_parameters, pass_apply_inline):
27602 Declare.
27603 * cgraphunit.c (cgraph_finalize_function): Do not compute inling
27604 parameters, do not call early inliner.
27605 * ipa-inline.c: Update comments. Include tree-flow.h
27606 (cgraph_decide_inlining): Do not compute inlining parameters.
27607 (cgraph_decide_inlining_incrementally): Return TODOs; assume to
27608 be called with function context set up.
27609 (pass_ipa_inline): Remove unreachable functions before pass.
27610 (cgraph_early_inlining): Simplify assuming to be called from the
27611 PM as local pass.
27612 (pass_early_inline): New pass.
27613 (cgraph_gate_ipa_early_inlining): New gate.
27614 (pass_ipa_early_inline): Turn into simple wrapper.
27615 (compute_inline_parameters): New function.
27616 (gate_inline_passes): New gate.
27617 (pass_inline_parameters): New pass.
27618 (apply_inline): Move here from tree-optimize.c
27619 (pass_apply_inline): New pass.
27620 * ipa.c (cgraph_remove_unreachable_nodes): Verify cgraph after
27621 transforming.
27622 * tree-inline.c (optimize_inline_calls): Return TODOs rather than
27623 doing them by hand.
27624 (tree_function_versioning): Do not allocate dummy struct function.
27625 * tree-inline.h (optimize_inline_calls): Update prototype.
27626 * tree-optimize.c (execute_fixup_cfg): Export.
27627 (pass_fixup_cfg): Remove
27628 (tree_rest_of_compilation): Do not apply inlines.
27629 * tree-flow.h (execute_fixup_cfg): Declare.
27630 * Makefile.in (gt-passes.c): New.
27631 * passes.c: Include gt-passes.h
27632 (init_optimization_passes): New passes.
27633 (nnodes, order): New static vars.
27634 (do_per_function_toporder): New function.
27635 (execute_one_pass): Dump current pass here.
27636 (execute_ipa_pass_list): Don't dump current pass here.
27637
27638 2007-01-16 Janis Johnson <janis187@us.ibm.com>
27639
27640 * config/dfp-bit.c (dfp_compare_op): Return separate value for NaN.
27641 (DFP_NE, DFP_LE, DFP_GE): Return false for NaN.
27642
27643 2007-01-16 David Edelsohn <edelsohn@gnu.org>
27644
27645 * config/rs6000/darwin-ldouble.c: Build file for SOFT_FLOAT.
27646 (strong_alias): Define.
27647 (__gcc_qmul): Provide non-FMA for soft-float.
27648 (__gcc_qdiv): Same.
27649 (__gcc_qneg): New.
27650 (__gcc_qeq): New.
27651 (__gcc_qle): New.
27652 (__gcc_qge): New.
27653 (__gcc_qunord): New.
27654 (__gcc_stoq): New.
27655 (__gcc_dtoq): New.
27656 (__gcc_qtos): New.
27657 (__gcc_qtod): New.
27658 (__gcc_qtoi): New.
27659 (__gcc_qtou): New.
27660 (__gcc_itoq): New.
27661 (__gcc_utoq): New.
27662 (fmsub): New.
27663 * config/rs6000/rs6000.c (rs6000_init_libfuncs): Initialize
27664 soft-float functions.
27665 * config/rs6000/libgcc-ppc-glibc.ver: Version soft-float symbols.
27666 * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Do not warn
27667 about long double soft float.
27668
27669 2007-01-16 Dorit Nuzman <dorit@il.ibm.com>
27670 Tehila Meyzels <tehila@il.ibm.com>
27671
27672 * tree-vectorizer.h (is_pattern_stmt_p): New.
27673 * tree-vect-analyze.c (vect_determine_vectorization_factor): Fix
27674 formatting (tabs instead of spaces). Cleanup and clarify setting
27675 of STMT_VINFO_VECTYPE. Call is_pattern_stmt_p.
27676 * tree-vect-transform.c (vect_get_vec_def_for_operand): Fix typo.
27677 (vectorizable_type_demotion): Check that types are integral.
27678 (vectorizable_type_promotion): Likewise.
27679 (vectorizable_store): Fix typo. Eliminate new-line at end of
27680 comments.
27681
27682 2007-01-16 Jan Hubicka <jh@suse.cz>
27683
27684 * tree-ssanames.c (release_dead_ssa_names): Remove invalidated
27685 cgraph edges too.
27686
27687 2007-01-15 Eric Christopher <echristo@apple.com>
27688
27689 * ifcvt.c: Include vec.h, vecprim.h.
27690 (check_cond_move_block): New argument regs.
27691 Reorganize. Add registers used to regs.
27692 (cond_move_process_if_block): Use regs set above as
27693 loop bounds.
27694
27695 2007-01-15 Eric Christopher <echristo@apple.com>
27696
27697 * config/darwin.h: Update copyright.
27698 (TARGET_OPTION_TRANSLATE_TABLE): Add umbrella.
27699 (LINK_COMMAND_SPEC): Add -u.
27700 (LINK_SPEC): Fix umbrella for above.
27701
27702 2007-01-15 Joseph S. Myers <joseph@codesourcery.com>
27703
27704 * config/soft-fp/op-common.h, config/soft-fp/op-4.h: Update from
27705 glibc CVS.
27706
27707 2007-01-15 Tom Tromey <tromey@redhat.com>
27708
27709 * doc/sourcebuild.texi (libgcj Tests): Don't mention jacks.
27710 * doc/install.texi (Testing): Don't mention jacks.
27711 (Configuration): Document --enable-java-maintainer-mode. Move
27712 --with-java-home to libgcj-specific section. Document
27713 --with-ecj-jar.
27714 (Prerequisites): Mention --enable-java-maintainer-mode, ecj1.
27715
27716 2007-01-15 Jan Hubicka <jh@suse.cz>
27717
27718 * tree-ssa-dce.c (DCE_TODOs): New.
27719 (propagate_necessity): Return if something changed.
27720 (eliminate_unnecessary_stmts): Likewise.
27721 (perform_tree_ssa_dce): Return TODO flags when needed.
27722 (pass_dce, pass_dce_loop, pass_cd_dce): Remove TODO flags.
27723
27724 2007-01-15 Uros Bizjak <ubizjak@gmail.com>
27725
27726 * config/i386/i386.md (fyl2xxf3_i387): Rename from fyl2x_xf3.
27727 (fyl2x_extend<mode>xf3_i387): New insn pattern.
27728 (log<mode>2): Rename from logsf2 and logdf2 and macroize insn
27729 patterns using X87MODEF12 mode macro. Extend operand 1
27730 to XFmode. Use SSE_FLOAT_MODE_P to disable patterns for SSE math.
27731 (log10<mode>2): Ditto.
27732 (log2<mode>2): Ditto.
27733 (log1p<mode>2): Ditto.
27734 (logb<mode>2): Ditto.
27735 (fyl2xp1xf3_i387): Rename from fyl2xp1_xf3.
27736 (fyl2xp1_extend<mode>xf3_i387): New insn pattern.
27737 (*fxtractxf3_i387): Rename from *fxtractxf3.
27738 (fxtract_extend<mode>xf3_i387): New insn pattern.
27739 (ilogbsi2): Use match_dup 3, not match_operand:XF 3.
27740 * config/i386/i386.c (ix86_emit_i387_log1p): Use gen_fyl2xp1xf3_i387()
27741 and gen_fyl2xxf3_i387().
27742
27743 2007-01-14 Zdenek Dvorak <dvorakz@suse.cz>
27744
27745 * loop-unswitch.c (unswitch_loop): Do not call fix_loop_placement.
27746 * cfgloopmanip.c (fix_loop_placement): Made static. Use
27747 get_loop_exit_edges. Changed return type to bool.
27748 * cfgloop.h (fix_loop_placement): Declaration removed.
27749
27750 2007-01-14 Dorit Nuzman <dorit@il.ibm.com>
27751
27752 * param.h (MIN_VECT_LOOP_BOUND): New.
27753 * params.def (MIN_VECT_LOOP_BOUND): New.
27754 * tree-vectorizer.c (slpeel_tree_peel_loop_to_edge): Takes another
27755 argument - minimum threshold for number of iterations.
27756 * tree-vectorizer.h (slpeel_tree_peel_loop_to_edge): Add another
27757 argument to declaration.
27758 * tree-vect-analyze.c (vect_analyze_operations): Check value of
27759 MIN_VECT_LOOP_BOUND.
27760 * tree-vect-transform.c (vect_do_peeling_for_loop_bound): Call
27761 slpeel_tree_peel_loop_to_edge with additional argument.
27762 (vect_do_peeling_for_alignment): Likewise.
27763 * doc/invoke.texi (min-vect-loop-bound): Document new param option.
27764
27765 2007-01-14 Uros Bizjak <ubizjak@gmail.com>
27766
27767 PR target/30413
27768 * config/i386/i386.c (print_operand) ['z']: Output 'b' for
27769 operands of size 1.
27770
27771 2007-01-14 Jan Hubicka <jh@suse.cz>
27772
27773 * tree-dfa.c (remove_referenced_var): New function.
27774 * tree-ssa-live.c (remove_unused_locals): Walk referenced vars and
27775 prune referenced vars list too.
27776 * tree-flow.h (remove_referenced_var): Declare.
27777
27778 2007-01-14 Jan Hubicka <jh@suse.cz>
27779
27780 * tree-eh.c (add_stmt_to_eh_region_fn): Do not add call_exprs
27781 separately.
27782 (remove_stmt_from_eh_region_fn): Do not remove call_exprs.
27783 (verify_eh_throw_stmt_node, verify_eh_throw_table_statements): Kill.
27784 * except.h (verify_eh_throw_table_statements): Kill prototype.
27785 * cfgexpand.c (expand_gimple_basic_block): Propagate Eh regions
27786 into call exrepssions.
27787 * tree-optimize.c (execute_free_cfg_annotatiosn): Do not call
27788 eh trhow verifier.
27789 * tree-cfg.c: Include pointer-set.h.
27790 (verify_node_sharing): Work on pointer set.
27791 (verify_eh_throw_stmt_node): New.
27792 (verify_stmts): Use pointers sets, verify throw_stmt.
27793
27794 2007-01-13 Zdenek Dvorak <dvorakz@suse.cz>
27795
27796 * ipa-reference.c (analyze_function): Consider also addresses taken
27797 in phi nodes.
27798
27799 2007-01-12 Roger Sayle <roger@eyesopen.com>
27800
27801 * c-typeck.c (null_pointer_constant_p): Replace use of
27802 TREE_CONSTANT_OVERFLOW with TREE_OVERFLOW.
27803 (build_c_cast): Likewise.
27804
27805 2007-01-12 Roger Sayle <roger@eyesopen.com>
27806
27807 * tree.h (force_fit_type_double): Remove unused final argument.
27808 * c-common.c (constant_expression_warning): Replace use of
27809 TREE_CONSTANT_OVERFLOW with TREE_OVERFLOW.
27810 (convert_and_check): Likewise.
27811 (shorten_compare): Update call to force_fit_type_double.
27812 (c_common_truthvalue_conversion) <INTEGER_CST>: Use integer_zerop.
27813 * convert.c (convert_to_pointer): Update call to
27814 force_fit_type_double.
27815 * fold-const.c (force_fit_type_double): Remove overflowed_const
27816 argument.
27817 (int_const_binop, fold_convert_const_int_from_int,
27818 fold_convert_const_int_from_real, fold_div_compare,
27819 fold_sign_changed_comparison, fold_unary, fold_negate_const,
27820 fold_abs_const, fold_not_const): Remove the final argument from
27821 calls to force_fit_type_double.
27822
27823 2007-01-12 Andrew Pinski <andrew_pinski@playstation.sony.com>
27824
27825 * configure.ac: Set insn to "nop" for spu-*-* also.
27826 * configure: Regenerate.
27827
27828 2007-01-12 Olga Golovanevsky <olga@il.ibm.com>
27829
27830 * builtins.def : Add BUILT_IN_FREE.
27831
27832 2007-01-12 Jan Hubicka <jh@suse.cz>
27833
27834 PR tree-optimization/30443
27835 * tree-inline.c (tree_function_versioning): Do not optimize when
27836 cloning for inlining.
27837
27838 2007-01-12 Zdenek Dvorak <dvorakz@suse.cz>
27839
27840 * doc/loop.texi: Document recording of loop exits.
27841 * cfgloopmanip.c (loopify, duplicate_loop): Use alloc_loop.
27842 (update_single_exits_after_duplication,
27843 update_single_exit_for_duplicated_loop,
27844 update_single_exit_for_duplicated_loops): Removed.
27845 (duplicate_loop_to_header_edge): Do not call
27846 update_single_exits_after_duplication and
27847 update_single_exit_for_duplicated_loops.
27848 (loop_version): Do not update single_exit information.
27849 (fix_loop_structure): Use record_loop_exits instead of
27850 mark_single_exit_loops.
27851 * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop): Update
27852 the lists of loop exits.
27853 * cfghooks.c (redirect_edge_and_branch, redirect_edge_and_branch_force,
27854 split_edge, merge_blocks): Update the lists of loop exits.
27855 * modulo-sched.c (sms_schedule): Pass LOOPS_HAVE_RECORDED_EXITS to
27856 loop_optimizer_init.
27857 * loop-init.c (loop_optimizer_init): Call record_loop_exits instead
27858 of mark_single_exit_loops.
27859 (loop_optimizer_finalize): Call release_recorded_exits.
27860 * tree-ssa-loop.c (tree_loop_optimizer_init): Pass
27861 LOOPS_HAVE_RECORDED_EXITS to loop_optimizer_init.
27862 * tree-vectorizer.c (slpeel_tree_duplicate_loop_to_edge_cfg): Do not
27863 update single exit information.
27864 * lambda-code.c (perfect_nestify): Ditto.
27865 * cfgloop.c (flow_loop_free): Destroy the list of exits of the loop.
27866 (mark_single_exit_loops): Removed.
27867 (alloc_loop, loop_exit_hash, loop_exit_eq, loop_exit_free,
27868 get_exit_descriptions, rescan_loop_exit, record_loop_exits,
27869 dump_recorded_exit, dump_recorded_exits, release_recorded_exits): New
27870 functions.
27871 (get_loop_exit_edges, single_exit): Use recorded exit lists.
27872 (add_bb_to_loop, remove_bb_from_loops): Update the lists of loop exits.
27873 (verify_loop_structure): Verify consistency of the exit lists.
27874 (flow_loops_find): Use alloc_loop. Initialize exits hash.
27875 (set_single_exit): Removed.
27876 * cfgloop.h (struct loop_exit): New function.
27877 (struct loop): single_exit_ field replaced by exits field.
27878 (LOOPS_HAVE_MARKED_SINGLE_EXITS): Replaced by
27879 LOOPS_HAVE_RECORDED_EXITS.
27880 (struct loops): Added exits hash.
27881 (mark_single_exit_loops, set_single_exit): Declaration removed.
27882 (release_recorded_exits, record_loop_exits, rescan_loop_exit): Declare.
27883
27884 2007-01-12 Richard Sandiford <richard@codesourcery.com>
27885
27886 * doc/invoke.texi: Avoid use of @headitem.
27887
27888 2007-01-12 Richard Sandiford <richard@codesourcery.com>
27889
27890 * cse.c (cse_insn): Move HAVE_CC0 code after declarations.
27891
27892 2007-01-12 Richard Sandiford <richard@codesourcery.com>
27893
27894 * doc/install.texi: Fix m68k-*-* anchor and add m68k-*-* to the
27895 list of targets.
27896
27897 2007-01-12 Nathan Sidwell <nathan@codesourcery.com>
27898 Richard Sandiford <richard@codesourcery.com>
27899
27900 * doc/invoke.texi: Document -mno-bitfield, -mno-rtd and -mno-short.
27901 * config/m68k/m68k.opt: Resort options.
27902 (mbitfield, mrtd, mshort): Remove RejectNegative properties.
27903
27904 2007-01-12 Nathan Sidwell <nathan@codesourcery.com>
27905 Richard Sandiford <richard@codesourcery.com>
27906
27907 * doc/invoke.texi: Document the macros that are defined by
27908 m68k's -mtune and -mhard-float options.
27909 * config/m68k/m68k-protos.h (m68k_cpp_cpu_ident) Declare.
27910 (m68k_cpp_cpu_family): Likewise.
27911 * config/m68k/m68k.h (TARGET_CPU_CPP_BUILTINS): Add a full set
27912 of __ucfv*__ macros. Define __mcffpu__ if generating code for
27913 ColdFire FPUs. Define __mcf_cpu_* and __mcf_family_* macros.
27914 * config/m68k/m68k.c (m68k_cpp_cpu_ident): New function.
27915 (m68k_cpp_cpu_family): Likewise.
27916
27917 2007-01-12 Richard Sandiford <richard@codesourcery.com>
27918
27919 * config/m68k/m68k.h (TARGET_CPU_CPP_BUILTINS): Treat all mc68*
27920 macros besides mc68000 as tuning macros. Use a switch statement
27921 to set them and mcpu32.
27922
27923 2007-01-12 Julian Brown <julian@codesourcery.com>
27924
27925 * config/m68k/m68k.h: Use TARGET_68040 instead of TARGET_68040_ONLY.
27926 (TARGET_68040_ONLY): Rename to...
27927 (TARGET_68040): ...this.
27928 * config/m68k/m68k.c: Use TARGET_68040 instead of TARGET_68040_ONLY.
27929 * config/m68k/m68k.md: Likewise.
27930
27931 2007-01-12 Julian Brown <julian@codesourcery.com>
27932 Nathan Sidwell <nathan@codesourcery.com>
27933 Richard Sandiford <richard@codesourcery.com>
27934
27935 * config.gcc (m680[012]0-*-*, m68k*-*-*): Set m68k_cpu_ident to
27936 the -mcpu= argument associated with the --with-cpu setting.
27937 Define M68K_DEFAULT_TUNE to the default -mtune= option,
27938 if different from the one implied by the -mcpu setting.
27939 Accept --with-cpu=FOO if FOO is listed in m68k-devices.def,
27940 using mcpu=FOO as the default CPU option. Set target_cpu_default2.
27941 * doc/invoke.texi: Mention ColdFire in the introduction to the
27942 m68k options. Document the new -march, -mcpu, -mtune, -mdiv,
27943 -mno-div and -mhard-float options. Make -m68881 a synonym for
27944 -mhard-float. Document the previously-undocumented -m5206e,
27945 -m528x, -m5307 and -m5407 options. Tweak the existing option
27946 documentation for consistency.
27947 * doc/install.texi: Mention new --with-cpu arguments.
27948 * config/m68k/m68k.h (OPTION_DEFAULT_SPECS): Only use the
27949 default CPU if neither -mcpu nor -march are specified.
27950 (ASM_CPU_SPEC): Pass down -mcpu and -march options.
27951 (TARGET_CPU_CPP_BUILTINS): Set __mcfisa*__ macros from
27952 TARGET_ISA*. Set the legacy __mcf*__ cpu macros in the same way,
27953 using m68k_tune to decide between families that implement the
27954 same ISA. Use m68k_tune to set __mcfv4e__.
27955 (FL_BITFIELD, FL_68881, FL_COLDFIRE, FL_CF_HWDIV, FL_CF_MAC)
27956 (FL_CF_EMAC, FL_CF_EMAC_B, FL_CF_USP, FL_CF_FPU, FL_ISA_68000)
27957 (FL_ISA_68010, FL_ISA_68020, FL_ISA_68040, FL_ISA_A, FL_ISA_B)
27958 (FL_ISA_C, FL_ISA_MMU): New macros.
27959 (MASK_COLDFIRE): Delete.
27960 (TARGET_68010, TARGET_68020, TARGET_68040_ONLY, TARGET_COLDFIRE)
27961 (TARGET_ISAB): Redefine in terms of m68k_cpu_flags.
27962 (TARGET_68881, TARGET_COLDFIRE_FPU): Redefine in terms of m68k_fpu.
27963 (TARGET_HARD_FLOAT): Do not define here.
27964 (TARGET_ISAAPLUS, TARGET_ISAC): New macros.
27965 (TUNE_68000): New macro.
27966 (TUNE_68000_10): Redefine in terms of TUNE_68000 and TUNE_68010.
27967 (TUNE_68010, TUNE_68030, TUNE_68040, TUNE_68060, TUNE_CPU32)
27968 (TUNE_CFV2): Redefine in terms of m68k_tune.
27969 (uarch_type, target_device, fpu_type): New enums.
27970 (m68k_cpu, m68k_tune, m68k_fpu, m68k_cpu_flags): Declare.
27971 * config/m68k/m68k.c (TARGET_DEFAULT): Remove MASK_68881.
27972 (FL_FOR_isa_00, FL_FOR_isa_10, FL_FOR_isa_20, FL_FOR_isa_40)
27973 (FL_FOR_isa_cpu32, FL_FOR_isa_a, FL_FOR_isa_aplus, FL_FOR_isa_b)
27974 (FL_FOR_isa_c): New macros.
27975 (m68k_isa): New enum.
27976 (m68k_target_selection): New structure.
27977 (all_devices, all_isas, all_microarchs): New tables.
27978 (m68k_cpu_entry, m68k_arch_entry, m68k_tune_entry, m68k_cpu)
27979 (m68k_tune, m68k_fpu, m68k_cpu_flags): New variables.
27980 (MASK_ALL_CPU_BITS): Delete.
27981 (m68k_find_selection): New function.
27982 (m68k_handle_option): Handle -mcpu=, -march= and -mtune=.
27983 Map the legacy target options to a combination of the new ones.
27984 (override_options): Set m68k_cpu, m68k_tune, m68k_fpu and
27985 m68k_cpu_flags. Handle M68K_DEFAULT_TUNE. Use m68k_cpu_flags
27986 to derive default MASK_BITFIELD, MASK_CF_HWDIV and MASK_HARD_FLOAT
27987 settings.
27988 * config/m68k/m68k.opt (m5200, m5206e, m528x, m5307, m5407, mcfv4e)
27989 (m68010, m68020, m68020-40, m68020-60, m68030, m68040): Remove Mask
27990 properties.
27991 (m68881, msoft-float): Change mask from 68881 to HARD_FLOAT.
27992 (march=, mcpu=, mdiv, mhard-float, mtune=): New options.
27993 * config/m68k/m68k-devices.def: New file.
27994
27995 2007-01-12 Richard Sandiford <richard@codesourcery.com>
27996 Nathan Sidwell <nathan@codesourcery.com>
27997
27998 * config/m68k/m68k.h (ASM_CPU_SPEC, ASM_SPEC, EXTRA_SPECS)
27999 (SUBTARGET_EXTRA_SPECS): New macros.
28000 * config/m68k/linux.h (ASM_SPEC): Remove CPU flags;
28001 use %(asm_cpu_spec) instead.
28002 * config/m68k/m68k-none.h (ASM_SPEC): Likewise.
28003 * config/m68k/openbsd.h (ASM_SPEC): Likewise.
28004 * config/m68k/netbsd-elf.h (ASM_SPEC): Likewise.
28005 (EXTRA_SPECS): Rename to...
28006 (SUBTARGET_EXTRA_SPECS): ...this.
28007
28008 2007-01-12 Nathan Sidwell <nathan@codesourcery.com>
28009 Richard Sandiford <richard@codesourcery.com>
28010 Julian Brown <julian@codesourcery.com>
28011
28012 * config.gcc (m68k-*-aout*, m68k-*-coff*, m68020-*-elf*, m68k-*-elf*)
28013 (m68k-*-uclinux*, m68k-*-linux*, m68k-*-rtems*): Set default_m68k_cpu
28014 to the configuration's default CPU.
28015 (m68010-*-netbsdelf*, m68k*-*-netbsdelf*, m68k*-*-openbsd*): Likewise.
28016 Remove default masks.
28017 (m680[012]0-*-*): Set the default with_cpu to the first part of
28018 the target name.
28019 (m68k*-*-*): Set the default with_cpu to m$default_m68k_cpu.
28020 (m68k*-*-linux): Extend the --with-cpu handling to...
28021 (m680[012]0-*-*, m68k*-*-*): ...these configurations. Allow m68000
28022 and m68010. Don't set target_cpu_default2.
28023 * doc/install.texi: Document --with-cpu for m68k.
28024 * config/m68k/m68k.h (OPTION_DEFAULT_SPECS): Define.
28025 * config/m68k/m68k-none.h (TARGET_CPU_DEFAULT, M68K_CPU_m68k)
28026 (M68K_CPU_m68000, M68K_CPU_m68010, M68K_CPU_m68020, M68K_CPU_m68030)
28027 (M68K_CPU_m68040, M68K_CPU_m68302, M68K_CPU_m68332, TARGET_DEFAULT)
28028 (ASM_CPU_DEFAULT_SPEC, CC1_CPU_DEFAULT_SPEC): Delete.
28029 (ASM_SPEC): Remove use of %(asm_cpu_default).
28030 (EXTRA_SPECS, SUBTARGET_EXTRA_SPECS, MULTILIB_DEFAULTS): Delete.
28031 * config/m68k/linux.h (TARGET_DEFAULT): Delete.
28032 (CPP_SPEC): Merge definitions. Do not handle __HAVE_68881__ here.
28033 * config/m68k/netbsd-elf.h (TARGET_OS_CPP_BUILTINS): Define
28034 __HAVE_FPU__ if TARGET_HARD_FLOAT.
28035 (TARGET_DEFAULT): Delete.
28036 (EXTRA_SPECS): Delete cpp_cpu_default_spec, cpp_cpu_spec,
28037 cpp_fpu_spec, asm_default_spec and netbsd_cpp_spec.
28038 (CPP_CPU_SPEC): Delete.
28039 (TARGET_VERSION): Merge definitions, using TARGET_68010 to pick
28040 the appropriate string.
28041 (CPP_CPU_DEFAULT_SPEC, ASM_DEFAULT_SPEC, CPP_FPU_SPEC): Delete.
28042 (CPP_SPEC): Define to NETBSD_CPP_SPEC.
28043 (ASM_SPEC): Don't use %(asm_default_spec).
28044 * config/m68k/m68k.c (TARGET_DEFAULT_TARGET_FLAGS): Remove
28045 TARGET_DEFAULT and add MASK_68881.
28046 * config/m68k/m68k.md: Remove mention of TARGET_DEFAULT from comments.
28047
28048 2007-01-12 Richard Sandiford <richard@codesourcery.com>
28049
28050 * config.gcc (m68010-*-netbsdelf*): Add MASK_68010.
28051 (m68k*-*-netbsdelf*, m68k*-*-openbsd*, m68k*-linux*): Add
28052 MASK_68010 alongside MASK_68020.
28053 * doc/invoke.texi: Document -m68010.
28054 * config/m68k/m68k.opt (m68010): New.
28055 * config/m68k/m68k.h (TARGET_CPU_CPP_BUILTINS): Define mc68010
28056 if TUNE_68010.
28057 (TUNE_68010): New macro.
28058 * config/m68k/m68k-none.h (M68K_CPU_m68k, M68K_CPU_m68010)
28059 (M68K_CPU_m68020, M68K_CPU_m68030, M68K_CPU_m68040)
28060 (M68K_CPU_m68332): Add MASK_68010.
28061 * config/m68k/linux.h (TARGET_DEFAULT): Add MASK_68010 to
28062 fallback definition.
28063 * config/m68k/netbsd-elf.h (CPP_CPU_SPEC): Remove now-redundant
28064 defines.
28065 * config/m68k/m68k.c (MASK_ALL_CPU_BITS): Add MASK_68010.
28066 (m68k_handle_option): Handle OPT_m68010. Add MASK_68010
28067 to all entries that use MASK_68020.
28068 (output_move_simode_const, output_move_himode, output_move_qimode)
28069 (output_move_stricthi, output_move_strictqi): Use TARGET_68010
28070 instead of TARGET_68020 to select clr behavior. Remove comment
28071 about there being no TARGET_68010.
28072 * config/m68k/m68k.md: Likewise throughout.
28073
28074 2007-01-12 Julian Brown <julian@codesourcery.com>
28075
28076 * config/m68k/m68k.h (TARGET_ISAB): New macro.
28077 * config/m68k/m68k.c: Use TARGET_ISAB rather than TARGET_CFV4.
28078 * config/m68k/m68k.md: Likewise.
28079
28080 2007-01-12 Julian Brown <julian@codesourcery.com>
28081
28082 * config/m68k/m68k.h (LEGITIMATE_INDEX_P, LEGITIMIZE_ADDRESS): Use
28083 TARGET_COLDFIRE_FPU instead of TARGET_CFV4E.
28084
28085 2007-01-12 Julian Brown <julian@codesourcery.com>
28086
28087 * config/m68k/m68k.h (TUNE_68040_60): New macro.
28088 * config/m68k/m68k.c (standard_68881_constant_p): Use it.
28089 * config/m68k/m68k.md: Likewise.
28090
28091 2007-01-12 Julian Brown <julian@codesourcery.com>
28092 Richard Sandiford <richard@codesourcery.com>
28093
28094 * config/m68k/m68k.h (TARGET_CPU_CPP_BUILTINS): Use TUNE_68030
28095 instead of TARGET_68030, TUNE_68040 instead of TARGET_68040,
28096 TUNE_68060 instead of TARGET_68060 and TUNE_CPU32 instead of
28097 TARGET_CPU32.
28098 (TARGET_CPU32): Rename to...
28099 (TUNE_CPU32): ...this.
28100 (TUNE_68000_10, TUNE_68030, TUNE_68040, TUNE_68060)
28101 (TUNE_CFV2): New macros.
28102 * config/m68k/netbsd-elf.h (LONG_DOUBLE_TYPE_SIZE): Simplify;
28103 remove conditions that are implied by TARGET_68020.
28104 * config/m68k/m68k.c (m68k_output_function_prologue): Use TUNE_68040
28105 instead of TARGET_68040 and TUNE_CPU32 instead of TARGET_CPU32.
28106 (m68k_output_function_epilogue): Likewise.
28107 (m68k_rtx_costs): Likewise. Use TUNE_68060 instead of TARGET_68060
28108 and TUNE_CFV2 instead of TARGET_5200. Use TUNE_68000_10 instead of
28109 "!TARGET_68020 && !TARGET_COLDFIRE" to choose between 68000 and
28110 non-68000 timings. Refactor multiplication and division costs.
28111 (output_addsi3): Use TUNE_68040 instead of TARGET_68040 and
28112 TUNE_CPU32 instead of TARGET_CPU32.
28113 (standard_68881_constant_p): Use TUNE_68040 instead of TARGET_68040
28114 and TUNE_68060 instead of TARGET_68060.
28115 * config/m68k/m68k.md: Use TUNE_68040 instead of TARGET_68040,
28116 TUNE_68060 instead of TARGET_68060, and TUNE_CPU32 instead of
28117 TARGET_CPU32.
28118 (movsi_const0): Use TUNE_68000_10 rather than "!TARGET_68020
28119 && !TARGET_COLDFIRE" to choose between moveq and clr.
28120 Likewise in the unnamed movsf pattern.
28121 (ashlsi_17_24, lshrsi_17_24): Guard with TUNE_68000_10 rather than
28122 "!TARGET_68020 && !TARGET_COLDFIRE". Likewise the unnamed
28123 ashiftrt pattern.
28124
28125 2007-01-12 Richard Sandiford <richard@codesourcery.com>
28126
28127 * config/m68k/m68k.h (TARGET_CPU_CPP_BUILTINS): Increase amount
28128 of tabbing before backslashes.
28129
28130 2007-01-11 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
28131
28132 * pa-linux.h (ASM_OUTPUT_INTERNAL_LABEL): Undefine.
28133 * pa.h (ASM_OUTPUT_LABEL): Output colon when using GAS.
28134 (ASM_OUTPUT_INTERNAL_LABEL): Define.
28135
28136 2007-01-11 Zdenek Dvorak <dvorakz@suse.cz>
28137
28138 * tree-ssa-loop-ivopts.c (extract_cond_operands): Split from
28139 find_interesting_uses_cond.
28140 (find_interesting_uses_cond): Use extract_cond_operands.
28141 (rewrite_use_compare): Use extract_cond_operands and
28142 force_gimple_operand_bsi. Do not call update_stmt.
28143 (determine_use_iv_cost_condition): Use extract_cond_operands.
28144 Return cheaper of using original bound and changing the exit bound.
28145
28146 2007-01-11 Zdenek Dvorak <dvorakz@suse.cz>
28147
28148 PR tree-optimization/29516
28149 * tree-ssa-address.c (tree_mem_ref_addr, add_to_parts,
28150 most_expensive_mult_to_index, addr_to_parts,
28151 create_mem_ref, maybe_fold_tmr): Make the type of
28152 fields of TARGET_MEM_REF sizetype.
28153 (move_fixed_address_to_symbol, move_pointer_to_base):
28154 New functions.
28155 * tree.def (TARGET_MEM_REF): Add comment on types of
28156 the operands.
28157
28158 2007-01-11 Joseph Myers <joseph@codesourcery.com>
28159
28160 * c-common.c (vector_types_convertible_p): Treat opaque types as
28161 always convertible if they have the same size, but not otherwise.
28162
28163 2007-01-11 Steven Bosscher <steven@gcc.gnu.org>
28164
28165 * ifcvt.c (struct noce_if_info): Add comments to the fields.
28166 Remove the b_unconditional field.
28167 (noce_try_sign_mask): Do not look at b_unconditional.
28168 (noce_process_if_block): Do not use merge_if_blocks. Update
28169 the CFG here. Do not set b_unconditional.
28170 (cond_move_process_if_block): Likewise.
28171 (find_cond_trap): Likewise.
28172 (check_cond_move_block): Require simple jump insns at the end
28173 of the basic block.
28174
28175 2007-01-11 Jan Hubicka <jh@suse.cz>
28176
28177 PR tree-optimization/1046
28178 * tree-tailcall.c (suitable_for_tail_call_opt_p): Use TREE_ADDRESSABLE
28179 when alias info is not ready.
28180 (pass_tail_recursion): Do not require aliasing.
28181 * tree-ssa-copyrename.c (pass_rename_ssa_cop): Likewise.
28182 * tree-ssa-ccp.c (pass_ccp, pass_fold_builtins): Likewise.
28183 * tree-ssa-copy.c (pass_copy_prop): Likewise.
28184 * tree-ssa-forwprop.c (pass_forwprop): Likewise.
28185 * tree-ssa-dce.c (pass_dce, pass_dce_loop, pass_cd_dce): Likewise.
28186 * passes.c (init_optimization_passes): Execute rename_ssa_copies,
28187 ccp, forwprop, copy_prop, merge_phi, copy_prop, dce and tail recursion
28188 before inlining.
28189 * tree-ssa-operands.c (add_virtual_operand, get_indirect_ref_operand):
28190 When aliasing is not build, mark statement as volatile.
28191
28192 2007-01-11 Tom Tromey <tromey@redhat.com>
28193
28194 PR preprocessor/15185, PR preprocessor/20989:
28195 * doc/cppopts.texi <-MT>: Update description of algorithm for
28196 computing default target.
28197 <-M, -MD>: Reword "basename" text.
28198
28199 2007-01-11 Roger Sayle <roger@eyesopen.com>
28200
28201 * builtins.c (expand_builtin_pow, expand_builtin_powi,
28202 fold_builtin_cabs, fold_builtin_sqrt, fold_builtin_trunc,
28203 fold_builtin_floor, fold_builtin_ceil, fold_builtin_round,
28204 fold_builtin_int_int_roundingfn, fold_builtin_bitop,
28205 fold_builtin_bswap, real_constp, fold_builtin_pow,
28206 fold_builtin_powi, fold_builtin_signbit, fold_builtin_copysign,
28207 do_mpfr_arg1, do_mpfr_arg2, do_mpfr_arg3, do_mpfr_sincos): Replace
28208 uses of the macro TREE_CONSTANT_OVERFLOW with TREE_OVERFLOW.
28209 * convert.c (convert_to_pointer): Likewise.
28210 * expr.c (highest_pow2_factor, expand_expr_real_1): Likewise.
28211 * fold-const.c (force_fit_type, fold_negate_expr, int_const_binop,
28212 const_binop, fold_convert_const_int_from_int,
28213 fold_convert_const_int_from_real,
28214 fold_convert_const_real_from_real, sign_bit_p,
28215 optimize_minmax_comparison, extract_muldiv_1, fold_div_compare,
28216 fold_sign_changed_comparison, fold_unary, fold_comparison,
28217 fold_binary, multiple_of_p, tree_Expr_non_zero_p,
28218 fold_negate_const, fold_abs_const, fold_not_const): Likewise.
28219 * print-tree.c (print_node_brief, print_node): Likewise.
28220 * stor-layout.c (place_field, layout_type): Likewise.
28221 * tree-chrec.c (keep_cast): Likewise.
28222 * tree.c (build_vector, build_real, build_real_from_int_cst,
28223 build_complex): Likewise.
28224
28225 2007-01-11 Roger Sayle <roger@eyesopen.com>
28226
28227 * tree.h (TREE_CONSTANT_OVERFLOW): Obsolete. For the time being,
28228 treat TREE_CONSTANT_OVERFLOW as a synonym of TREE_OVERFLOW.
28229
28230 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
28231
28232 * configure.ac (strict1_warn): Rename to strict_warn.
28233 (WERROR, --enable-werror, symlink hacks, stage1_cflags,
28234 cc_set_by_configure, quoted_cc_set_by_configure,
28235 stage_prefix_set_by_configure, quoted_stage_prefix_set_by_configure,
28236 all_boot_languages, all_stagestuff): Remove.
28237 (target_list): Remove bootstrap targets.
28238 * Makefile.in (quickstrap): Unconditionally make a synonym of all.
28239 (BOOT_LANGUAGES, STAGE1_CFLAGS, STAGE1_CHECKING,
28240 REMAKEFLAGS, FLAGS_TO_PASS, PREPEND_DOTDOT_TO_RELATIVE_PATHS,
28241 SUBDIR_FLAGS_TO_PASS, WERROR_FLAGS, STRICT2_WARN, LANG_STAGESTUFF,
28242 VOL_FILES, POSTSTAGE1_FLAGS_TO_PASS, STAGE2_FLAGS_TO_PASS,
28243 STAGEPROFILE_FLAGS_TO_PASS, STAGEFEEDBACK_FLAGS_TO_PASS, stage1_build,
28244 stage1_copy, stage2_build, stage2_copy, stageprofile_build,
28245 stageprofile_copy, stage3_build, stage3_copy, stagefeedback_build,
28246 stagefeedback_copy, stage4_build, clean_s1, clean_sw, bootstrap,
28247 bootstrap-lean, bootstrap2, bootstrap2-lean, bootstrap3,
28248 bootstrap3-lean, bootstrap4, bootstrap4-lean, unstage1, unstage2,
28249 unstage3, unstage4, unstageprofile, unstagefeedback, restage, restage2,
28250 restage3, restage4, restageprofile, restagefeedback, bubbleestrap,
28251 cleanstrap, unstrap, restrap, *compare, *compare3, *compare4,
28252 *compare-lean, *compare3-lean, *compare4-lean, stage1-start, stage1,
28253 stage2-start, stage2, stage3-start, stage3, stage4-start, stage4,
28254 stageprofile-start, stageprofile, stagefeedback-start, stagefeedback,
28255 risky-stage1, risky-stage2, risky-stage3, risky-stage4): Remove.
28256 (ORDINARY_FLAGS_TO_PASS): Rename to FLAGS_TO_PASS.
28257 (STAGECOPYSTUFF, STAGEMOVESTUFF): Consolidate into MOSTLYCLEANFILES.
28258 (mostlyclean): Adjust.
28259 (clean, distclean): Don't mention bootstrap stuff.
28260 * configure: Regenerate.
28261 * ada/config-lang.in, cp/config-lang.in, forttran/config-lang.in,
28262 java/config-lang.in, objc/config-lang.in, objcp/config-lang.in,
28263 treelang/config-lang.in (stagestuff): Remove.
28264 * doc/sourcebuild.texi (stage1, stage2, stage3, stage4,
28265 stageprofile, stagefeedback, stagestuff): Remove mention.
28266
28267 2007-01-11 Nick Clifton <nickc@redhat.com>
28268
28269 * config/mcore/predicates.md (mcore_general_movesrc_operand):
28270 Accept CONSTs.
28271 (mcore_general_movdst_operand): Do not accept CONST_INTs.
28272 (mcore_arith_K_S_operand): Run the test for the S constraint not
28273 the test for the M constraint.
28274 (mcore_addsub_operand): Do not accept integer values that are
28275 larger than 32 bits.
28276 * config/mcore/mcore.md: Remove unused constraints from split.
28277 (andsi3): Use HOST_WIDE_INT instead of int to hold an INTVAL.
28278 (addsi3): Likewise.
28279 (allocate_stack): Likewise.
28280 * config/mcore/mcore.c (mcore_print_operand): Restrict output of P
28281 operands to 32 bits.
28282 (mcore_const_costs): Use HOST_WIDE_INT instead of int to hold an
28283 INTVAL.
28284 (mcore_and_cost, mcore_modify_comparison, const_ok_for_mcore,
28285 mcore_const_ok_for_inline, mcore_const_trick_uses_not,
28286 try_constant_tricks, mcore_num_ones, mcore_num_zeros,
28287 mcore_output_bclri, mcore_output_andn, output_inline_const,
28288 mcore_output_move, mcore_output_movedouble): Likewise.
28289 (mcore_output_cmov): Use CONST_OK_FOR_M and CONST_OK_FOR_N.
28290 (output_inline_const): Likewise.
28291 (output_inline_const): Fix format strings used in sprintf
28292 statements.
28293 * config/mcore/mcore-protos.h: Update prototypes for changed
28294 functions in mcore.c.
28295 * config/mcore/mcore.h (CONST_OK_FOR_I): Cast values to
28296 HOST_WIDE_INT and not int.
28297 (CONST_OK_FOR_J, CONST_OK_FOR_K, CONST_OK_FOR_L, CONST_OK_FOR_M,
28298 CONST_OK_FOR_N): Likewise.
28299 (LEGITIMATE_CONSTANT_P): Also check CONSTANT_P.
28300 (GO_IF_LEGITIMATE_INDEX): Use HOST_WIDE_INT instead of int to hold
28301 an INTVAL.
28302
28303 2007-01-10 Jan Hubicka <jh@suse.cz>
28304
28305 * tree-vrp.c (remove_range_assertions): Release defs.
28306 * tree-ssa-loop-ivopts.c (rmeove_statement): Likewise.
28307 * tree-ssa-dom.c (remove_stmt_or_phi): Likewise.
28308
28309 2007-01-10 Paul Brook <paul@codesourcery.com>
28310
28311 * config/arm/arm.c (arm_rtx_costs_1): Handle mutiply-subtract.
28312 * config/arm/arm.md (mulsi3subsi): New insn.
28313
28314 2007-01-10 Zdenek Dvorak <dvorakz@suse.cz>
28315
28316 * tree-ssa-loop-manip.c (tree_unroll_loop): Make it a wrapper over ...
28317 (tree_transform_and_unroll_loop): New.
28318 * tree-flow.h (transform_callback, tree_transform_and_unroll_loop):
28319 Declare.
28320
28321 2007-01-10 Robert Kennedy <jimbob@google.com>
28322
28323 * fold-const.c (fold_comparison): Fold comparisons like (x *
28324 1000 < 0) to (x < 0).
28325
28326 2007-01-10 Ian Lance Taylor <iant@google.com>
28327
28328 * tree-pretty-print.c (dump_generic_node): Print parentheses when
28329 operands have the same priority.
28330
28331 2007-01-10 Tom Tromey <tromey@redhat.com>
28332
28333 * fold-const.c (fold_truthop): Don't check can_use_bit_fields_p.
28334 (fold_binary): Likewise.
28335 * langhooks.c (lhd_can_use_bit_fields_p): Removed.
28336 * langhooks-def.h (lhd_can_use_bit_fields_p): Removed.
28337 (LANG_HOOKS_CAN_USE_BIT_FIELDS_P): Removed.
28338 (LANG_HOOKS_INITIALIZER): Remove LANG_HOOKS_CAN_USE_BIT_FIELDS_P.
28339 * langhooks.h (struct lang_hooks): Removed field
28340 'can_use_bit_fields_p'.
28341
28342 2007-01-10 Ralf Corsépius <ralf.corsepius@rtems.org>
28343
28344 * config/bfin/t-bfin, config/bfin/t-bfin-elf: Remove GCC_CFLAGS.
28345
28346 2007-01-10 Razya Ladelsky <razya@il.ibm.com>
28347
28348 * function.c (get_last_funcdef_no): New function.
28349 * function.h (get_last_funcdef_no): Declare.
28350 * tree-inline.c (initialize_cfun): Add initialization.
28351 (tree_function_versioning): Cleanup.
28352
28353 2007-01-10 Jan Hubicka <jh@suse.cz>
28354
28355 * tree-inline.c (setup_one_parameter): Do not propagate into abnormal
28356 PHIs.
28357
28358 2007-01-10 Sa Liu <saliu@de.ibm.com>
28359 Ben Elliston <bje@au.ibm.com>
28360
28361 * spu.h (STACK_SAVE_AREA): Use VOIDmode for SAVE_FUNCTION, SImode
28362 for SAVE_NONLOCAL and Pmode for any other save level.
28363 * spu-protos.h (spu_restore_stack_block): Declare.
28364 * spu.md (save_stack_block): Remove.
28365 (restore_stack_block): Call spu_restore_stack_block.
28366 * spu.c (spu_restore_stack_block): New function.
28367 (spu_expand_epilogue): Remove old comment.
28368
28369 2007-01-09 Zdenek Dvorak <dvorakz@suse.cz>
28370
28371 PR tree-optimization/30322
28372 * tree-ssa-loop-ivopts.c (fold_affine_expr, iv_value): Removed.
28373 (cand_value_at): Return the value as aff_tree.
28374 (may_eliminate_iv): Convert the bound from aff_tree to tree.
28375 * tree-affine.c (aff_combination_add_cst, aff_combination_add_product,
28376 aff_combination_mult): New functions.
28377 (aff_combination_add): Use aff_combination_add_cst.
28378 (aff_combination_convert): Allow conversions to a wider type.
28379 (tree_to_aff_combination): Handle BIT_NOT_EXPR.
28380 * tree-affine.h (aff_combination_mult): Declare.
28381
28382 2007-01-09 Carlos O'Donell <carlos@codesourcery.com>
28383
28384 * doc/tm.texi: Update documentation to reflect reality of exec
28385 and start file search behaviours. Update copyright year.
28386 * doc/invoke.texi: Explain how GCC_EXEC_PREFIX is used to find
28387 header file directories.
28388
28389 2007-01-09 Uros Bizjak <ubizjak@gmail.com>
28390
28391 * config/i386/i386.md (*sinxf2): Rename to *sinxf2_i387.
28392 (*cosxf2): Rename to cosxf2_i387.
28393 (*sindf2, *sinsf2): Extend operand 1 to XFmode. Macroize patterns
28394 using X87MODEF12 mode macro. Rename patterns to
28395 *sin_extend<mode>xf2_i387. Use SSE_FLOAT_MODE_P to disable patterns
28396 for SSE math.
28397 (*cosdf2, *cossf2): Ditto.
28398 (sincosdf3, sincossf3): Ditto. Rewrite corresponding splitters
28399 to match extended input operands.
28400 (sincos<mode>3): New expander.
28401 (*sinextendsfdf2, *cosextendsfdf2, *sincosextendsfdf3): Remove
28402 insn patterns and corresponding splitters.
28403
28404 2007-01-09 Kaz Kojima <kkojima@gcc.gnu.org>
28405
28406 * config/sh/t-linux (TARGET_LIBGCC2_CFLAGS): Delete.
28407 (SHLIB_MAPFILES, SHLIB_LINK, SHLIB_INSTALL): Likewise.
28408
28409 2007-01-09 Nicolas Pitre <nico@cam.org>
28410
28411 PR target/30173
28412 * arm/ieee754-df.S (Lad_s): Also test the low word of X for zero.
28413
28414 2007-01-08 Geoffrey Keating <geoffk@apple.com>
28415
28416 * target.h (struct gcc_target): New field library_rtti_comdat.
28417 * target-def.h (TARGET_CXX_LIBRARY_RTTI_COMDAT): New.
28418 (TARGET_CXX): Add TARGET_CXX_LIBRARY_RTTI_COMDAT.
28419 * doc/tm.texi (C++ ABI): Document TARGET_CXX_LIBRARY_RTTI_COMDAT.
28420 * config/darwin.h (TARGET_CXX_LIBRARY_RTTI_COMDAT): Define.
28421
28422 2007-01-08 Geoffrey Keating <geoffk@apple.com>
28423
28424 * doc/invoke.texi (Optimize Options): Correct description of -O0.
28425
28426 2007-01-08 Richard Guenther <rguenther@suse.de>
28427
28428 * tree.h (force_fit_type_double): Export.
28429 (force_fit_type): Remove.
28430 * fold-const.c (force_fit_type_double): New function.
28431 (force_fit_type): Remove.
28432 (int_const_binop): Use it.
28433 (fold_convert_const_int_from_int): Likewise.
28434 (fold_convert_const_int_from_real): Likewise.
28435 (fold_div_compare): Likewise.
28436 (fold_sign_changed_comparison): Likewise.
28437 (fold_unary): Likewise.
28438 (fold_negate_const): Likewise.
28439 (fold_abs_const): Likewise.
28440 (fold_not_const): Likewise.
28441 * c-common.c (shorten_compare): Use force_fit_type_double.
28442 * convert.c (convert_to_pointer): Likewise.
28443
28444 2007-01-08 Richard Guenther <rguenther@suse.de>
28445
28446 * tree.h (build_int_cst_wide_type): Export.
28447 * tree.c (build_int_cst_wide_type): New function.
28448 (build_int_cst_wide): Fix comment.
28449 * builtins.c (fold_builtin_object_size): Use build_int_cst
28450 to build -1 or 0 of the correct type. Use fit_double_type
28451 to check for overflow.
28452 * fold-const.c (optimize_bit_field_compare): Use build_int_cst_type
28453 to build the mask.
28454 (decode_field_reference): Likewise.
28455 (all_ones_mask_p): Likewise.
28456 (native_interpret_int): Use build_int_cst_wide_type.
28457 (fold_binary): Use build_int_cst_type to build an all-ones
28458 value.
28459 * stor-layout.c (set_sizetype): Use build_int_cst_wide_type.
28460
28461 2007-01-08 Daniel Jacobowitz <dan@codesourcery.com>
28462
28463 * config/pa/t-pa64 (libgcc_stub.a): Use $(T).
28464
28465 2007-01-09 Ben Elliston <bje@au.ibm.com>
28466
28467 * genautomata.c (STATS_OPTION): New option.
28468 (stats_flag): New flag.
28469 (gen_automata_option): Handle it.
28470 (initiate_automaton_gen): Ditto.
28471 (write_automata): Output statistics only if stats_flag is
28472 set. Likewise, output time statistics only if time_flag is set.
28473 * doc/md.texi (Processor pipeline description): Document new flag.
28474
28475 2007-01-08 Richard Guenther <rguenther@suse.de>
28476
28477 * builtins.c (fold_builtin_int_roundingfn): Use fit_double_type.
28478 * tree.c (build_int_cst_type): Likewise.
28479 (size_in_bytes): Don't call force_fit_type on the result.
28480 (int_fits_type_p): Use fit_double_type.
28481 * fold-const.c (fit_double_type): New function.
28482 (force_fit_type): Use it.
28483 * tree.h (fit_double_type): Export.
28484
28485 2007-01-08 Jan Hubicka <jh@suse.cz>
28486
28487 * tree-vectorizer.c (gate_increase_alignment): Fix return type.
28488 * ipa.c (function_and_variable_visibility): Fix return type.
28489
28490 2007-01-08 Richard Guenther <rguenther@suse.de>
28491
28492 * tree-ssa-ccp.c (maybe_fold_offset_to_array_ref): Use type
28493 of offset to build the index.
28494 * tree-pretty-print.c (dump_generic_node): Don't build negated
28495 const just for printing.
28496 * c-pretty-print.c (pp_c_integer_constant): Likewise.
28497 * builtins.c (fold_builtin_int_roundingfn): Check if result
28498 fits the type by using force_fit_type and comparing the result.
28499 * predict.c (predict_loops): Use compare_tree_int for comparison.
28500 * tree.c (build_int_cst): Fall back to integer_type_node for
28501 NULL_TREE type.
28502 (build_int_cst_wide): Assert type is non-null.
28503
28504 2007-01-08 Roberto Costa <roberto.costa@st.com>
28505
28506 * tree-vrp.c (extract_range_from_cond_expr): New.
28507 (extract_range_from_expr): Handle COND_EXPR nodes used as expressions.
28508 * tree-ssa-ccp.c (get_maxval_strlen): Handle COND_EXPR nodes used
28509 as expressions.
28510 (fold_stmt): Bug fix, avoid infinite recursion when folding COND_EXPRs.
28511 * tree-ssa-forwprop.c (simplify_cond, forward_propagate_into_cond,
28512 tree_ssa_forward_propagate_single_use_vars): Handle COND_EXPR nodes
28513 used as expressions.
28514 * tree-object-size.c (cond_expr_object_size): New.
28515 (collect_object_sizes_for): Handle COND_EXPR nodes used as expressions.
28516
28517 2007-01-08 Jan Hubicka <jh@suse.cz>
28518
28519 * tree-ssa-forwprop.c (forward_propagate_into_cond,
28520 tree_ssa_forward_propagate_single_use_va): Release defs of propagated
28521 statement.
28522
28523 2007-01-08 Richard Guenther <rguenther@suse.de>
28524
28525 PR tree-optimization/23603
28526 * tree-vrp.c (set_value_range_to_truthvalue): New function.
28527 (extract_range_from_binary): Fall back to truthvalue instead of
28528 varying for TRUTH_*_EXPR.
28529 (extract_range_from_comparison): Fall back to truthvalue instead of
28530 varying.
28531 (vrp_visit_phi_node): Don't adjust new range bounds to +INF/-INF
28532 if all visited PHI values were constant.
28533
28534 2007-01-08 Jan Hubicka <jh@suse.cz>
28535
28536 * cgraphunit.c (cgraph_process_new_functions): Reset reachable flag.
28537 (cgraph_analyze_function): break out from ...
28538 (cgraph_finalize_compilation_unit): ... here.
28539 (cgraph_expand_function): Remove forgoten commented out line.
28540 (cgraph_optimize): Analyze functions.
28541
28542 2007-01-08 Jan Hubicka <jh@suse.cz>
28543
28544 * tree-pas.h (TODO_remove_function): New flag.
28545 (TODO_update*): Renumber.
28546 (pass_ipa_increase_alignment,
28547 pass_ipa_function_and_variable_visibility): New passes.
28548 * cgraphunit.c (cgraph_increase_alignment): Move to tree-vectorizer.c
28549 (cgraph_function_and_variable_visibility): Move to ipa.c
28550 (cgraph_optimize): Don't call cgraph_function_and_variable_visibility,
28551 cgraph_increase_alignment.
28552 * ipa-inline.c (cgraph_decide_inlining): Don't push timevar.
28553 (cgraph_decide_inlining_incrementally): Push TV_INTEGRATION before
28554 calling tree-inline.
28555 (cgraph_early_inlining): Do not call cgraph_remove_unreachable_nodes.
28556 (pass_ipa_inline, pass_early_ipa_inlining): Set TODO_remove_functions
28557 * tree-vectorizer.c (increase_alignment): Move here from cgraphunit.c
28558 (gate_increase_alignment): New function.
28559 (pass_ipa_increase_alignment): New pass.
28560 * ipa.c: Inline tree-pass.h and timevar.h
28561 (function_and_variable_visibility): Move here from cgraphunit.c
28562 * tree-optimize.c (pass_early_local_passes): Add TODO_remove_functions.
28563 * passes.c (init_optimization_passes): Add the two new passes.
28564 (execute_todo): Handle cgraph_remove_functions.
28565
28566 2007-01-08 Nick Clifton <nickc@redhat.com>
28567
28568 * config/frv/predicates.md (reg_or_0_operand): Accept
28569 CONST_DOUBLEs.
28570
28571 2007-01-08 Ralf Corsépius <ralf.corsepius@rtems.org>
28572
28573 * config/bfin/rtems.h, config/bfin/t-rtems: New.
28574 * config.gcc: Add bfin*-rtems*.
28575
28576 2007-01-08 Mark Shinwell <shinwell@codesourcery.com>
28577
28578 * c.opt: Add -flax-vector-conversions.
28579 * c-typeck.c (convert_for_assignment): Pass flag to
28580 vector_types_convertible_p to allow emission of note.
28581 (digest_init): Likewise.
28582 * c-opts.c: Handle -flax-vector-conversions.
28583 * c-common.c (flag_lax_vector_conversions): New.
28584 (vector_types_convertible_p): Unless -flax-vector conversions
28585 has been passed, disallow conversions between vectors with
28586 differing numbers of subparts and/or element types. If such
28587 a conversion is disallowed, possibly emit a note on the first
28588 occasion only to inform the user of -flax-vector-conversions.
28589 The new last argument specifies this.
28590 * c-common.h (flag_lax_vector_conversions): New.
28591 (vector_types_convertible_p): Add extra argument.
28592 * config/i386/i386.c (ix86_init_mmx_sse_builtins): Use
28593 char_type_node for V*QI type vectors.
28594 * config/rs6000/rs6000-c.c (altivec_overloaded_builtins):
28595 Update to satisfy new typechecking rules.
28596 * config/rs6000/altivec.h (vec_cmple): Use vec_cmpge, for both
28597 C and C++ variants.
28598 * doc/invoke.texi (C Dialect Options): Document
28599 -flax-vector-conversions.
28600
28601 2007-01-08 Mark Shinwell <shinwell@codesourcery.com>
28602
28603 PR tree-optimization/29877
28604 * tree-ssa-ter.c (is_replaceable_p): Deem assignments with
28605 a register variable on the RHS to not be replaceable.
28606
28607 2007-01-08 Chen Liqin <liqin@sunnorth.com.cn>
28608 * config/score/t-score-elf (MULTILIB_OPTIONS): Change.
28609 * config/score/predicates.md (const_uimm5, sr0_operand, const_simm12,
28610 const_simm15, const_pow2, const_npow2): Added.
28611 * config/score/misc.md (insv, extv, extzv, movmemsi,
28612 move_lbu_a/b, mov_lhu_a/b etc): Added and fix some bug.
28613 * config/score/score.c (score_address_cost, score_select_cc_mode):
28614 Added.
28615 Change CONST_OK_FOR_LETTER_P/EXTRA_CONSTRAINT define.
28616 Update score_rtx_costs for MACRO TARGET_RTX_COSTS.
28617 Update score_print_operand.
28618 * config/score/score.h (DATA_ALIGNMENT, SELECT_CC_MODE): Added.
28619 Adjust register allocate order and update some macro define.
28620 * config/score/score-mdaux.c (mdx_unaligned_load, mdx_unsigned_store,
28621 mdx_block_move_straight, mdx_block_move_loop_head,
28622 mdx_block_move_loop_body, mdx_block_move_loop_foot,
28623 mdx_block_move_loop, mdx_block_move): Added.
28624 (mdx_movsicc, mdp_select_add_imm, mdp_select, mds_zero_extract_andi,
28625 mdp_limm): Updated and fix some bug and typo.
28626 * config/score/score.md (movqi/hi/si, add/sub/zero/ext): Updated.
28627 (movsf, movdf, doloop_end): Added.
28628
28629 2007-01-08 Kazu Hirata <kazu@codesourcery.com>
28630
28631 * config/arm/arm.c, config/arm/arm.h, config/arm/arm.md,
28632 config/arm/thumb2.md: Fix comment typos.
28633 * doc/extend.texi: Fix a typo.
28634
28635 2007-01-07 Eric Christopher <echristo@apple.com>
28636
28637 * configure.ac: Check for __stack_chk_fail for darwin.
28638 * configure: Regenerate.
28639
28640 2007-01-07 Richard Guenther <rguenther@suse.de>
28641
28642 * tree-vrp.c (extract_range_from_assert): CSE calls to
28643 compare_values where possible.
28644 (extract_range_from_unary_expr): Likewise.
28645
28646 2007-01-07 Anatoly Sokolov <aesok@post.ru>
28647
28648 * config/avr/avr-protos.h (call_insn_operand): Delete prototype.
28649 * config/avr/avr.c (call_insn_operand): Delete function.
28650 * config/avr/avr.md (*pushqi, *pushhi, *pushsi, *pushsf): Use REG_SP
28651 instead of register number. Use predicates.
28652 * config/avr/predicates.md (const0_operand, reg_or_0_operand,
28653 call_insn_operand): Add.
28654
28655 2007-01-06 Jan Hubicka <jh@suse.cz>
28656
28657 * tree-pass.h (pass_build_cgraph_edges): Declare.
28658 * cgraphunit.c (record_refernece): Move to cgraphbuild.c
28659 (visited_nodes): Remove.
28660 (cgraph_create_edges): Move to cgraphbuild.c; rename to
28661 build_cgrpah_edges; make visited_nodes local.
28662 (cgraph_process_new_functions): DO not call initialize_inline_failed.
28663 (record_references_in_initializer): Move to cgraphbuild.c
28664 (initialize_inline_failed, rebuild_cgraph_edges,
28665 pass_rebuild_cgraph_edges): Move to cgraphbuild.c.
28666 (verify_cgraph_node): Make visited_nodes local.
28667 (cgraph_analyze_function): Do not call cgraph_create_edges and
28668 initialize_inline_failed.
28669 (cgraph_expand_function): Do not call cgraph_lower_function;
28670 assert that function is already lowered.
28671 * Makefile.in (cgraphbuild.o): New.
28672 * passes.c (init_optimization_passes): Add pass_build_cgraph_edges
28673 at the end of lowering passes.
28674
28675 2007-01-06 Steven Bosscher <steven@gcc.gnu.org>
28676
28677 * ifcvt.c (cond_move_convert_if_block): New function, code
28678 factored out from...
28679 (cond_move_process_if_block): ...here. Call the new function
28680 on the THEN and ELSE blocks.
28681 (merge_if_block): Do not copy global_live_at_end, merge_blocks
28682 already takes care of this.
28683
28684 2007-01-05 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
28685
28686 PR c/19978
28687 * tree.h (TREE_OVERFLOW_P): New.
28688 * c-typeck.c (parser_build_unary_op): Warn only if result
28689 overflowed and operands did not.
28690 (parser_build_binary_op): Likewise.
28691 (convert_for_assignment): Remove redundant overflow_warning.
28692 * c-common.c (overflow_warning): Don't check or set TREE_OVERFLOW.
28693
28694 2007-01-05 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
28695
28696 * c-typeck.c (store_init_value): Split over two lines to follow
28697 the GNU coding style.
28698
28699 2007-01-05 Benjamin Kosnik <bkoz@redhat.com>
28700
28701 * c-cppbuiltin.c (c_cpp_builtins): __GXX_EXPERIMENTAL_CPP0X__ to
28702 __GXX_EXPERIMENTAL_CXX0X__.
28703 * doc/cpp.texi: Same.
28704
28705 2007-01-05 Richard Guenther <rguenther@suse.de>
28706
28707 PR middle-end/27826
28708 * tree.c (get_narrower): Do not construct COMPONENT_REFs
28709 with mismatched types. Instead explicitly build a
28710 conversion NOP_EXPR.
28711
28712 2007-01-05 Ian Lance Taylor <iant@google.com>
28713
28714 * c-common.c (decl_with_nonnull_addr_p): New function.
28715 (c_common_truthvalue_conversion): Call it.
28716 * c-typeck.c (build_binary_op): Likewise.
28717 * c-common.h (decl_with_nonnull_addr_p): Declare.
28718
28719 2007-01-05 Jakub Jelinek <jakub@redhat.com>
28720
28721 PR c/30360
28722 * libgcc2.c (__divdc3): Compare c and d against 0.0 instead of
28723 denom against 0.0.
28724
28725 2007-01-05 Joel Brobecker <brobecker@adacore.com>
28726
28727 * doc/install.texi (Final install): Document the fact that
28728 the GNAT runtime should not be stripped.
28729
28730 2007-01-04 Jan Hubicka <jh@suse.cz>
28731
28732 * tree-inline.c (fold_marked_statements): Update operand caches
28733 and EH after folding
28734
28735 2007-01-04 Ian Lance Taylor <iant@google.com>
28736
28737 * c-common.c (check_function_nonnull): Whitespace fix.
28738
28739 2007-01-04 Jan Hubicka <jh@suse.cz>
28740
28741 * tree-optimize.c (execute_fixup_cfg): Correct previously mistakely
28742 comitted older version of patch.
28743 (pass_fixup_cfg): Add TODOs to verify flow and statements, dump
28744 function, celanup cfg and collect garbage.
28745
28746 2007-01-04 Mike Stump <mrs@apple.com>
28747
28748 * Makefile.in (mostlyclean): Don't remove libgcc anymore.
28749 (clean): Likewise.
28750
28751 2007-01-04 Eric Christopher <echristo@apple.com>
28752
28753 * libgcc2.c (__bswapsi2): Use SItype.
28754 (__bswapdi2): Use DItype.
28755 * libgcc2.h: Update for above.
28756
28757 2007-01-04 Paul Brook <paul@codesourcery.com>
28758
28759 * config/arm/arm.md (arm_mulsi3, thumb_mulsi3, mulsi3_compare0,
28760 mulsi_compare0_scratch, mulsi3addsi, mulsi3addsi_compare0,
28761 mulsi3addsi_compare0_scratch, mulsidi3adddi, mulsidi3,
28762 umulsidi3, umulsidi3adddi, smulsi3_highpart,
28763 umulsi3_highpart): Make conditional on !arm_arch6.
28764 (arm_mulsi3_v6, thumb_mulsi3_v6, mulsi3_compare0_v6,
28765 mulsi_compare0_scratch_v6, mulsi3addsi_v6, mulsi3addsi_compare0_v6,
28766 mulsi3addsi_compare0_scratch_v6, mulsidi3adddi_v6, mulsidi3_v6,
28767 umulsidi3_v6, umulsidi3adddi_v6, smulsi3_highpart_v6,
28768 umulsi3_highpart_v6): New insns.
28769
28770 2007-01-04 Roger Sayle <roger@eyesopen.com>
28771
28772 * fold-const.c (fold_convert): When casting an expression to void,
28773 fold_ignored_result may discover a GIMPLE_MODIFY_STMT which doesn't
28774 have a type. Instead of attempting to build a NOP_EXPR, return
28775 these "special" trees directly.
28776
28777 2007-01-04 Joseph Myers <joseph@codesourcery.com>
28778
28779 * config/rs6000/rs6000.c (rs6000_rtx_costs): Make adjustment for
28780 MULT inside MINUS as either argument. Use rs6000_cost->dmul -
28781 rs6000_cost->fp not 0 as adjustment for outer NEG.
28782
28783 2007-01-04 Jan Hubicka <jh@suse.cz>
28784
28785 * cgraph.c (cgraph_release_function_body): New function.
28786 (cgraph_remove_node): Use it.
28787 * cgraph.h (cgraph_release_function_body): Declare.
28788 * cgraphunit.c (cgraph_expand_function): Use it.
28789 * ipa.c (cgraph_remove_unreahchable_nodes): Use it.
28790 * tree-ssa.c (delete_tree_ssa): Allow to be called before aliasing
28791 is initialized and while compilation of other function is running.
28792 * tree-optimize.c (execute_free_cfg_annotations): Move code to clear
28793 statement CFG annotations from here to ...
28794 * tree-cfg.c (delete_tree_cfg_annotations): ... here.
28795
28796 2007-01-04 Zdenek Dvorak <dvorakz@suse.cz>
28797
28798 * cfgloop.h (enum li_flags): Make the constants powers of two.
28799
28800 2007-01-04 Jan Hubicka <jh@suse.cz>
28801
28802 * tree-inline.c (copy_bb): Insert new statements to statements_to_fold
28803 set.
28804 (fold_marked_statements): New function.
28805 (optimize_inline_calls, tree_function_versioning): Fold new statements.
28806 * tree-inline.h (copy_body_data): Add statements_to_fold.
28807
28808 2007-01-03 Daniel Jacobowitz <dan@codesourcery.com>
28809
28810 * config.gcc: Mention libgcc/config.host.
28811 * Makefile.in: Update comments mentioning libgcc.
28812 (LIBGCC, INSTALL_LIBGCC, GCC_PARTS, mklibgcc): Delete.
28813 (all.cross, start.encap, rest.encap, rest.cross): Update
28814 dependencies for libgcc move.
28815 (libgcc.mk, LIBGCC_DEPS, libgcov.a, libgcc.a, stmp-multilib)
28816 (clean-target, clean-target-libgcc): Delete.
28817 (srcdirify, GCC_EXTRA_PARTS): New macros.
28818 (libgcc-support, libgcc.mvars): New rules.
28819 (distclean): Remove mention of mklibgcc.
28820 (install): Don't reference INSTALL_LIBGCC.
28821 (install-common): Don't reference EXTRA_PARTS.
28822 (install-libgcc, install-multilib): Delete rules.
28823 * mklibgcc.in: Delete file.
28824 * doc/configfiles.texi: Don't mention mklibgcc.
28825
28826 * config/i386/t-darwin (SHLIB_VERPFX): Delete (moved to libgcc).
28827 * config/i386/t-darwin64 (SHLIB_VERPFX): Likewise.
28828 * config/rs6000/t-darwin (SHLIB_VERPFX): Likewise.
28829 * config/rs6000/t-ppccomm (TARGET_LIBGCC2_CFLAGS, SHLIB_MAPFILES)
28830 (mklibgcc, ldblspecs): Likewise.
28831
28832 * config/i386/t-nwld (libgcc.def, libc.def, libpcre.def)
28833 (posixpre.def): Use $(T).
28834 (SHLIB_EXT, SHLIB_NAME, SHLIB_SLIBDIR_QUAL, SHLIB_DEF, SHLIB_MAP)
28835 (SHLIB_SRC, SHLIB_INSTALL): Delete.
28836 (SHLIB_LINK): Make dummy.
28837 * config/t-slibgcc-darwin: Delete contents except for dummy SHLIB_LINK.
28838
28839 * config/frv/t-linux (EXTRA_MULTILIB_PARTS): Clear.
28840
28841 * config/alpha/t-crtfm: Use $(T) in rules for EXTRA_PARTS.
28842 * config/alpha/t-vms, config/alpha/t-vms64, config/fr30/t-fr30,
28843 config/i386/t-rtems-i386, config/ia64/t-ia64, config/rs6000/t-beos,
28844 config/rs6000/t-newas, config/sparc/t-elf: Likewise.
28845
28846 * configure.ac (all_outputs): Remove mklibgcc.
28847 * configure: Regenerated.
28848
28849 2007-01-03 Josh Conner <jconner@apple.com>
28850
28851 PR middle-end/29683
28852 * calls.c (compute_argument_addresses): Set stack and stack_slot
28853 for partial args, too.
28854 (store_one_arg): Use locate.size.constant for the size when
28855 generating a save_area.
28856
28857 2007-01-03 Robert Kennedy <jimbob@google.com>
28858
28859 * tree-cfg.c (tree_merge_blocks): Release SSA_NAME phi results
28860 whose definitions are deleted due to basic block merging.
28861
28862 2007-01-03 Paul Brook <paul@codesourcery.com>
28863
28864 PR target/16634
28865 * config/arm/arm.c (output_return_instruction): Pop PC in interrupt
28866 functions.
28867 (use_return_insn): Return 0 for Thumb interrupt functions.
28868 (print_multi_reg): Add rfe argument for IRQ returns.
28869 (arm_output_epilogue): Pop interrupt return address directly into PC.
28870 (arm_expand_prologue): Only adjust IRQ return address in Arm mode.
28871
28872 2007-01-03 Paul Brook <paul@codesourcery.com>
28873
28874 Merge from sourcerygxx-4_1.
28875 * config/arm/thumb2.md: New file.
28876 * config/arm/elf.h (JUMP_TABLES_IN_TEXT_SECTION): Return True for
28877 Thumb-2.
28878 * config/arm/coff.h (JUMP_TABLES_IN_TEXT_SECTION): Ditto.
28879 * config/arm/aout.h (ASM_OUTPUT_ADDR_VEC_ELT): Add !Thumb-2 assertion.
28880 (ASM_OUTPUT_ADDR_DIFF_ELT): Output Thumb-2 jump tables.
28881 * config/arm/aof.h (ASM_OUTPUT_ADDR_DIFF_ELT): Output Thumb-2 jump
28882 tables.
28883 (ASM_OUTPUT_ADDR_VEC_ELT): Add !Thumb-2 assertion.
28884 * config/arm/ieee754-df.S: Use macros for Thumb-2/Unified asm
28885 comptibility.
28886 * config/arm/ieee754-sf.S: Ditto.
28887 * config/arm/arm.c (thumb_base_register_rtx_p): Rename...
28888 (thumb1_base_register_rtx_p): ... to this.
28889 (thumb_index_register_rtx_p): Rename...
28890 (thumb1_index_register_rtx_p): ... to this.
28891 (thumb_output_function_prologue): Rename...
28892 (thumb1_output_function_prologue): ... to this.
28893 (thumb_legitimate_address_p): Rename...
28894 (thumb1_legitimate_address_p): ... to this.
28895 (thumb_rtx_costs): Rename...
28896 (thumb1_rtx_costs): ... to this.
28897 (thumb_compute_save_reg_mask): Rename...
28898 (thumb1_compute_save_reg_mask): ... to this.
28899 (thumb_final_prescan_insn): Rename...
28900 (thumb1_final_prescan_insn): ... to this.
28901 (thumb_expand_epilogue): Rename...
28902 (thumb1_expand_epilogue): ... to this.
28903 (arm_unwind_emit_stm): Rename...
28904 (arm_unwind_emit_sequence): ... to this.
28905 (thumb2_legitimate_index_p, thumb2_legitimate_address_p,
28906 thumb1_compute_save_reg_mask, arm_dwarf_handle_frame_unspec,
28907 thumb2_index_mul_operand, output_move_vfp, arm_shift_nmem,
28908 arm_save_coproc_regs, thumb_set_frame_pointer, arm_print_condition,
28909 thumb2_final_prescan_insn, thumb2_asm_output_opcode, arm_output_shift,
28910 thumb2_output_casesi): New functions.
28911 (TARGET_DWARF_HANDLE_FRAME_UNSPEC): Define.
28912 (FL_THUMB2, FL_NOTM, FL_DIV, FL_FOR_ARCH6T2, FL_FOR_ARCH7,
28913 FL_FOR_ARCH7A, FL_FOR_ARCH7R, FL_FOR_ARCH7M, ARM_LSL_NAME,
28914 THUMB2_WORK_REGS): Define.
28915 (arm_arch_notm, arm_arch_thumb2, arm_arch_hwdiv, arm_condexec_count,
28916 arm_condexec_mask, arm_condexec_masklen)): New variables.
28917 (all_architectures): Add armv6t2, armv7, armv7a, armv7r and armv7m.
28918 (arm_override_options): Check new CPU capabilities.
28919 Set new architecture flag variables.
28920 (arm_isr_value): Handle v7m interrupt functions.
28921 (user_return_insn): Return 0 for v7m interrupt functions. Handle
28922 Thumb-2.
28923 (const_ok_for_arm): Handle Thumb-2 constants.
28924 (arm_gen_constant): Ditto. Use movw when available.
28925 (arm_function_ok_for_sibcall): Return false for v7m interrupt
28926 functions.
28927 (legitimize_pic_address, arm_call_tls_get_addr): Handle Thumb-2.
28928 (thumb_find_work_register, arm_load_pic_register,
28929 legitimize_tls_address, arm_address_cost, load_multiple_sequence,
28930 emit_ldm_seq, emit_stm_seq, arm_select_cc_mode, get_jump_table_size,
28931 print_multi_reg, output_mov_long_double_fpa_from_arm,
28932 output_mov_long_double_arm_from_fpa, output_mov_double_fpa_from_arm,
28933 output_mov_double_fpa_from_arm, output_move_double,
28934 arm_compute_save_reg_mask, arm_compute_save_reg0_reg12_mask,
28935 output_return_instruction, arm_output_function_prologue,
28936 arm_output_epilogue, arm_get_frame_offsets, arm_regno_class,
28937 arm_output_mi_thunk, thumb_set_return_address): Ditto.
28938 (arm_expand_prologue): Handle Thumb-2. Use arm_save_coproc_regs.
28939 (arm_coproc_mem_operand): Allow POST_INC/PRE_DEC.
28940 (arithmetic_instr, shift_op): Use arm_shift_nmem.
28941 (arm_print_operand): Use arm_print_condition. Handle '(', ')', '.',
28942 '!' and 'L'.
28943 (arm_final_prescan_insn): Use extract_constrain_insn_cached.
28944 (thumb_expand_prologue): Use thumb_set_frame_pointer.
28945 (arm_file_start): Output directive for unified syntax.
28946 (arm_unwind_emit_set): Handle stack alignment instruction.
28947 * config/arm/lib1funcs.asm: Remove default for __ARM_ARCH__.
28948 Add v6t2, v7, v7a, v7r and v7m.
28949 (RETLDM): Add Thumb-2 code.
28950 (do_it, shift1, do_push, do_pop, COND, THUMB_SYNTAX): New macros.
28951 * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Define __thumb2__.
28952 (TARGET_THUMB1, TARGET_32BIT, TARGET_THUMB2, TARGET_DSP_MULTIPLY,
28953 TARGET_INT_SIMD, TARGET_UNIFIED_ASM, ARM_FT_STACKALIGN, IS_STACKALIGN,
28954 THUMB2_TRAMPOLINE_TEMPLATE, TRAMPOLINE_ADJUST_ADDRESS,
28955 ASM_OUTPUT_OPCODE, THUMB2_GO_IF_LEGITIMATE_ADDRESS,
28956 THUMB2_LEGITIMIZE_ADDRESS, CASE_VECTOR_PC_RELATIVE,
28957 CASE_VECTOR_SHORTEN_MODE, ADDR_VEC_ALIGN, ASM_OUTPUT_CASE_END,
28958 ADJUST_INSN_LENGTH): Define.
28959 (TARGET_REALLY_IWMMXT, TARGET_IWMMXT_ABI, CONDITIONAL_REGISTER_USAGE,
28960 STATIC_CHAIN_REGNUM, HARD_REGNO_NREGS, INDEX_REG_CLASS,
28961 BASE_REG_CLASS, MODE_BASE_REG_CLASS, SMALL_REGISTER_CLASSES,
28962 PREFERRED_RELOAD_CLASS, SECONDARY_OUTPUT_RELOAD_CLASS,
28963 SECONDARY_INPUT_RELOAD_CLASS, LIBCALL_VALUE, FUNCTION_VALUE_REGNO_P,
28964 TRAMPOLINE_SIZE, INITIALIZE_TRAMPOLINE, HAVE_PRE_INCREMENT,
28965 HAVE_POST_DECREMENT, HAVE_PRE_DECREMENT, HAVE_PRE_MODIFY_DISP,
28966 HAVE_POST_MODIFY_DISP, HAVE_PRE_MODIFY_REG, HAVE_POST_MODIFY_REG,
28967 REGNO_MODE_OK_FOR_BASE_P, LEGITIMATE_CONSTANT_P,
28968 REG_MODE_OK_FOR_BASE_P, REG_OK_FOR_INDEX_P, GO_IF_LEGITIMATE_ADDRESS,
28969 LEGITIMIZE_ADDRESS, THUMB2_LEGITIMIZE_ADDRESS,
28970 GO_IF_MODE_DEPENDENT_ADDRESS, MEMORY_MOVE_COST, BRANCH_COST,
28971 ASM_APP_OFF, ASM_OUTPUT_CASE_LABEL, ARM_DECLARE_FUNCTION_NAME,
28972 FINAL_PRESCAN_INSN, PRINT_OPERAND_PUNCT_VALID_P,
28973 PRINT_OPERAND_ADDRESS): Adjust for Thumb-2.
28974 (arm_arch_notm, arm_arch_thumb2, arm_arch_hwdiv): New declarations.
28975 * config/arm/arm-cores.def: Add arm1156t2-s, cortex-a8, cortex-r4 and
28976 cortex-m3.
28977 * config/arm/arm-tune.md: Regenerate.
28978 * config/arm/arm-protos.h: Update prototypes.
28979 * config/arm/vfp.md: Enable patterns for Thumb-2.
28980 (arm_movsi_vfp): Add movw alternative. Use output_move_vfp.
28981 (arm_movdi_vfp, movsf_vfp, movdf_vfp): Use output_move_vfp.
28982 (thumb2_movsi_vfp, thumb2_movdi_vfp, thumb2_movsf_vfp,
28983 thumb2_movdf_vfp, thumb2_movsfcc_vfp, thumb2_movdfcc_vfp): New.
28984 * config/arm/libunwind.S: Add Thumb-2 code.
28985 * config/arm/constraints.md: Update include Thumb-2.
28986 * config/arm/ieee754-sf.S: Add Thumb-2/Unified asm support.
28987 * config/arm/ieee754-df.S: Ditto.
28988 * config/arm/bpabi.S: Ditto.
28989 * config/arm/t-arm (MD_INCLUDES): Add thumb2.md.
28990 * config/arm/predicates.md (low_register_operand,
28991 low_reg_or_int_operand, thumb_16bit_operator): New.
28992 (thumb_cmp_operand, thumb_cmpneg_operand): Rename...
28993 (thumb1_cmp_operand, thumb1_cmpneg_operand): ... to this.
28994 * config/arm/t-arm-elf: Add armv7 multilib.
28995 * config/arm/arm.md: Update patterns for Thumb-2 and Unified asm.
28996 Include thumb2.md.
28997 (UNSPEC_STACK_ALIGN, ce_count): New.
28998 (arm_incscc, arm_decscc, arm_umaxsi3, arm_uminsi3,
28999 arm_zero_extendsidi2, arm_zero_extendqidi2): New
29000 insns/expanders.
29001 * config/arm/fpa.md: Update patterns for Thumb-2 and Unified asm.
29002 (thumb2_movsf_fpa, thumb2_movdf_fpa, thumb2_movxf_fpa,
29003 thumb2_movsfcc_fpa, thumb2_movdfcc_fpa): New insns.
29004 * config/arm/cirrus.md: Update patterns for Thumb-2 and Unified asm.
29005 (cirrus_thumb2_movdi, cirrus_thumb2_movsi_insn,
29006 thumb2_cirrus_movsf_hard_insn, thumb2_cirrus_movdf_hard_insn): New
29007 insns.
29008 * doc/extend.texi: Document ARMv7-M interrupt functions.
29009 * doc/invoke.texi: Document Thumb-2 new cores+architectures.
29010
29011 2007-01-03 Jakub Jelinek <jakub@redhat.com>
29012
29013 * unwind-dw2.c (SIGNAL_FRAME_BIT, EXTENDED_CONTEXT_BIT): Define.
29014 (struct _Unwind_Context): Rename args_size to flags, remove
29015 signal_frame field, add a new args_size field and version field.
29016 (_Unwind_IsSignalFrame, _Unwind_SetSignalFrame,
29017 _Unwind_IsExtendedContext): New inline functions.
29018 (_Unwind_GetGR, _Unwind_SetGR, _Unwind_GetGRPtr, _Unwind_SetGRPtr):
29019 Assume by_value array is only present if _Unwind_IsExtendedContext.
29020 (_Unwind_GetIPInfo, execute_cfa_program, uw_frame_state_for): Use
29021 _Unwind_IsSignalFrame.
29022 (__frame_state_for): Initialize context.flags to EXTENDED_CONTEXT_BIT.
29023 (uw_update_context_1): Use _Unwind_SetSignalFrame.
29024 (uw_init_context_1): Initialize context->flags to
29025 EXTENDED_CONTEXT_BIT.
29026 * config/rs6000/linux-unwind.h (frob_update_context): Use
29027 _Unwind_SetSignalFrame.
29028
29029 2007-01-03 Andrew Pinski <andrew_pinski@playstation.sony.com>
29030
29031 PR middle-end/30353
29032 * gimplify.c (gimplify_modify_expr_complex_part): Move below
29033 tree_to_gimple_tuple. Call tree_to_gimple_tuple when we need
29034 the value.
29035
29036 2007-01-03 Kazu Hirata <kazu@codesourcery.com>
29037
29038 * config/i386/i386.h (NON_STACK_REG_P, REGNO_OK_FOR_SIREG_P,
29039 REGNO_OK_FOR_DIREG_P, REWRITE_ADDRESS, ASM_OPERAND_LETTER,
29040 RET, AT_SP): Remove.
29041 * config/i386/i386.md (*sse_prologue_save_insn): Use return
29042 instead of RET.
29043
29044 * alias.c (init_alias_analysis): Use VEC_safe_grow_cleared.
29045 * cfgbuild.c (find_basic_blocks): Likewise.
29046 * cfgrtl.c (rtl_create_basic_block): Likewise.
29047 * function.c (temp_slots_at_level): Likewise.
29048 * reg-stack.c (stack_regs_mentioned): Likewise.
29049 * regclass.c (allocate_reg_info): Likewise.
29050 * tree-cfg.c (init_empty_tree_cfg, build_tree_cfg, create_bb,
29051 set_bb_for_stmt, move_block_to_fn): Likewise.
29052 * tree-complex.c (tree_lower_complex): Likewise.
29053 * vec.h (VEC_safe_grow_cleared): New.
29054
29055 * cgraphunit.c, tree-ssa-alias.c: Fix comment typos.
29056
29057 2007-01-03 Zdenek Dvorak <dvorakz@suse.cz>
29058
29059 * loop-unswitch.c (unswitch_loop): Pass probabilities to loopify.
29060 * tree-ssa-loop-unswitch.c (tree_unswitch_loop): Pass probabilities
29061 to loop_version.
29062 * cfgloopmanip.c (scale_loop_frequencies): Export.
29063 (loopify): Scale the frequencies by prescribed coefficients.
29064 (set_zero_probability): New function.
29065 (duplicate_loop_to_header_edge): Improve updating of frequencies.
29066 (lv_adjust_loop_entry_edge, loop_version): Set probabilities
29067 and frequencies according to arguments.
29068 * tree-ssa-loop-manip.c (tree_unroll_loop): Set probabilities
29069 correctly.
29070 * cfg.c (scale_bbs_frequencies_int): Allow scaling the frequencies up.
29071 * modulo-sched.c (sms_schedule): Set probabilities for entering
29072 versioned loop correctly.
29073 * tree-vect-transform.c (vect_transform_loop): Ditto.
29074 * cfgloop.h (loopify, loop_version): Declaration changed.
29075 (scale_loop_frequencies): Declared.
29076
29077 2007-01-02 Jan Hubicka <jh@suse.cz>
29078
29079 * cgraph.c: Include tree-flow.h
29080 (cgraph_add_new-function): Handle IPA_SSA mode; execute
29081 early_local_passes.
29082 * cgraph.h (enum cgraph_state): Add CGRAPH_STATE_IPA_SSA.
29083 * tree-pass.h (pass_all_early_optimizations): Declare.
29084 * cgraphunit.c (cgraph_process_new_functions): Add IPA_SSA; execute
29085 early_local_passes.
29086 (cgraph_analyze_function): Do early_local_passes.
29087 * tree-mudflap.c (mf_decl_cache_locals, mf_build_check_statement_for):
29088 Do not add referenced vars.
29089 * tree-optimize.c (gate_all_optimizations): Do not execute when not in
29090 SSA form.
29091 (gate_all_early_local_passes): New gate.
29092 (pass_early_local_passes): Use new gate.
29093 (execute_early_local_optimizations): New functions.
29094 (gate_all_early_optimizations): New gate.
29095 (pass_all_early_optimizations): New pass.
29096 (execute_free_datastructures): Free SSA only when initialized.
29097 (gate_init_datastructures): Init only when optimizing.
29098 (tree_lowering_passes): Do early local passes when called late.
29099 * tree-profile.c (do_tree_profiling): Don't profile functions added
29100 late.
29101 (do_early_tree_profiling, pass_early_tree_profile): Kill.
29102 * tree-cfg.c (update_modified_stmts): Do not update when operands are
29103 not active.
29104 * passes.c (init_optimizations_passes): Reorder so we go into SSA
29105 during early_local_passes.
29106 * Makefile.in (cgraph.o): Add dependency on tree-flow.h.
29107
29108
29109 2007-01-02 Carlos O'Donell <carlos@codesourcery.com>
29110
29111 * Makefile.in: Update copyright year.
29112
29113 2007-01-02 Carlos O'Donell <carlos@codesourcery.com>
29114
29115 * Makefile.in: Export GCC_EXEC_PREFIX before calling $(RUNTEST)
29116 in $(lang_checks) and check-consistency targets.
29117
29118 2007-01-02 Jan Hubicka <jh@suse.cz>
29119
29120 * tree-mudflap.c (mf_decl_cache_locals, mf_build_check_statement_for):
29121 Do not add referenced vars.
29122 * tree-cfg.c (update_modified_stmts): Do not update when SSA operands
29123 are not active.
29124 * passes.c (init_optimization_passes): Put mudflap_2 after
29125 free_datastructures.
29126
29127 2007-01-02 Jan Hubicka <jh@suse.cz>
29128
29129 * tree-optimize (execute_fixup_cfg): Set after_inlining flag.
29130 Set NOTHROW flag on call statements proved to be nothrow.
29131 Update statement of local calls so new pure/const functions are
29132 updated. Update_ssa when in ssa form. Mark PHI nodes of nonlocal
29133 goto receivers.
29134 (tree_rest_of_compilation): Register hooks and initialize bitmap
29135 early. Do not set after_inlining flag.
29136
29137 2007-01-02 Steve Ellcey <sje@cup.hp.com>
29138
29139 * sbitmap.c (HOST_BITS_PER_LONG_LONG): Change to
29140 HOST_BITS_PER_LONGLONG
29141
29142 2007-01-02 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
29143
29144 PR c/19977
29145 * c-typeck.c (store_init_value): Don't emit pedantic overflow
29146 warning for non-static initializers.
29147
29148 2007-01-02 Steven Bosscher <steven@gcc.gnu.org>
29149
29150 * config/alpha/alpha.md, arm/arm.c, darwin.c, frv/frv.md,
29151 m32r/m32r.c, m32r/m32r.c, mn10300/mn10300.md, pa/pa.c,
29152 rs6000/rs6000.c, s390/s390.md, sh/sh.md, sparc/sparc.c:
29153 Always use set_unique_reg_note to add REG_EQUAL notes.
29154
29155 2007-01-02 Kazu Hirata <kazu@codesourcery.com>
29156
29157 Revert:
29158 2007-01-02 Kazu Hirata <kazu@codesourcery.com>
29159
29160 * alias.c (init_alias_analysis): Use VEC_safe_grow_cleared.
29161 * cfgbuild.c (find_basic_blocks): Likewise.
29162 * cfgrtl.c (rtl_create_basic_block): Likewise.
29163 * function.c (temp_slots_at_level): Likewise.
29164 * reg-stack.c (stack_regs_mentioned): Likewise.
29165 * regclass.c (allocate_reg_info): Likewise.
29166 * tree-cfg.c (init_empty_tree_cfg, build_tree_cfg, create_bb,
29167 set_bb_for_stmt, move_block_to_fn): Likewise.
29168 * tree-complex.c (tree_lower_complex): Likewise.
29169 * vec.h (VEC_safe_grow_cleared): New.
29170
29171 2007-01-02 Ian Lance Taylor <iant@google.com>
29172
29173 * c-common.c (c_common_truthvalue_conversion): When warning about
29174 using an assignment as a truth value, set TREE_NO_WARNING.
29175
29176 2007-01-02 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
29177
29178 PR middle-end/7651
29179 * c.opt (Wold-style-declaration): New.
29180 * doc/invoke.texi (C-only Warning Options): New.
29181 (Wold-style-declaration): Document it.
29182 (Wextra): Enabled by -Wextra.
29183 * c-opts.c (c_common_post_options): Enabled by -Wextra.
29184 * c-decl.c (declspecs_add_scspec): Replace -Wextra with
29185 -Wold-style-declaration.
29186
29187 2007-01-02 Kazu Hirata <kazu@codesourcery.com>
29188
29189 * alias.c (init_alias_analysis): Use VEC_safe_grow_cleared.
29190 * cfgbuild.c (find_basic_blocks): Likewise.
29191 * cfgrtl.c (rtl_create_basic_block): Likewise.
29192 * function.c (temp_slots_at_level): Likewise.
29193 * reg-stack.c (stack_regs_mentioned): Likewise.
29194 * regclass.c (allocate_reg_info): Likewise.
29195 * tree-cfg.c (init_empty_tree_cfg, build_tree_cfg, create_bb,
29196 set_bb_for_stmt, move_block_to_fn): Likewise.
29197 * tree-complex.c (tree_lower_complex): Likewise.
29198 * vec.h (VEC_safe_grow_cleared): New.
29199
29200 2007-01-02 Douglas Gregor <doug.gregor@gmail.com>
29201
29202 * c-common.c (c_common_nodes_and_builtins): Since variants of
29203 void_type_node get built before it is given a name, we need to
29204 give those variants the name, too.
29205 (complete_array_type): We need to work with the canonical main
29206 type of the array, from which we will build the qualified version.
29207 * params.def (PARAM_VERIFY_CANONICAL_TYPES): New.
29208 * print-tree.c (print_node): Display canonical type information
29209 for each type.
29210 * stor-layout.c (layout_type): When we don't know the
29211 alignment of a type for which we're building an array, we end up
29212 guessing wrong, so make the type require structural equality.
29213 * tree.c (make_node_stat): When we build a new type, it is its
29214 own canonical type.
29215 (build_type_attribute_qual_variant): When building an attribute
29216 variant, its canonical type is the non-attribute variant. However,
29217 if the attributes are target-dependent and they differ, we need to
29218 use structural equality checks for this type.
29219 (build_qualified_type): A qualified type is not equivalent to its
29220 unqualified variant; set the canonical type appropriately.
29221 (build_distinct_type_copy): When building a distinct type from
29222 another type, the new type is its own canonical type.
29223 (build_variant_type_copy): When building a new type variant, we
29224 assume that it is equivalent to the original type.
29225 (build_pointer_type_for_mode): When building a pointer type, also
29226 build a canonical type pointer.
29227 (build_reference_type_for_mode): When building a reference type,
29228 also build a canonical type reference.
29229 (build_index_type): When we can't hash an index type (e.g.,
29230 because its maximum value is negative), the index type requires
29231 structural equality tests.
29232 (build_array_type): Build the canonical form of an array type.
29233 (build_function_type): Function types require structural equality,
29234 because they contain default arguments, attributes, etc.
29235 (build_method_type_directly): Ditto for method types.
29236 (build_offset_type): Build the canonical offset type.
29237 (build_complex_type): Build the canonical vector type.
29238 (make_vector_type): Build the canonical vector type.
29239 * tree.h (TYPE_CANONICAL): New.
29240 (TYPE_STRUCTURAL_EQUALITY_P): New.
29241 (SET_TYPE_STRUCTURAL_EQUALITY): New.
29242 (struct tree_type): Added "canonical" field.
29243 * params.h (VERIFY_CANONICAL_TYPES): New.
29244 * doc/c-tree.texi (TYPE_CANONICAL): Document.
29245 (TYPE_STRUCTURAL_EQUALITY_P): Document.
29246 (SET_TYPE_STRUCTURAL_EQUALITY): Document.
29247 * doc/invoke.texi (verify-canonical-types): Document --param
29248 parameter for verifying canonical types.
29249
29250 2007-01-02 Joseph Myers <joseph@codesourcery.com>
29251
29252 * config.gcc (powerpc-*-eabispe*, powerpc-*-eabisimaltivec*,
29253 powerpc-*-eabisim*, powerpc-*-eabialtivec*, powerpc-*-eabi*,
29254 powerpc-*-rtems*, powerpc-wrs-vxworks, powerpc-wrs-vxworksae,
29255 powerpcle-*-eabisim*, powerpcle-*-eabi*): Add rs6000/e500.h to
29256 tm_file.
29257 * config/rs6000/e500.h: New.
29258 * config/rs6000/eabi.h (TARGET_SPE_ABI, TARGET_SPE, TARGET_E500,
29259 TARGET_ISEL, TARGET_FPRS, TARGET_E500_SINGLE, TARGET_E500_DOUBLE):
29260 Remove.
29261 * config/rs6000/linuxspe.h (TARGET_SPE_ABI, TARGET_SPE,
29262 TARGET_E500, TARGET_ISEL, TARGET_FPRS, TARGET_E500_SINGLE,
29263 TARGET_E500_DOUBLE): Remove.
29264 * config/rs6000/vxworks.h (TARGET_SPE_ABI, TARGET_SPE,
29265 TARGET_E500, TARGET_ISEL, TARGET_FPRS): Remove.
29266 * config/rs6000/rs6000.h (CHECK_E500_OPTIONS): Define.
29267 * config/rs6000/rs6000.c (rs6000_override_options): Use
29268 CHECK_E500_OPTIONS.
29269
29270 2007-01-02 Joseph Myers <joseph@codesourcery.com>
29271
29272 * config/rs6000/rs6000.c (print_operand): Check (TARGET_SPE ||
29273 TARGET_E500_DOUBLE), not TARGET_E500, for %y.
29274 (rs6000_generate_compare, rs6000_emit_sCOND, output_cbranch,
29275 rs6000_emit_cmove): Don't check TARGET_E500.
29276 * config/rs6000/rs6000.md (bunordered, bordered, sunordered,
29277 sordered): Don't check TARGET_E500.
29278
29279 2007-01-01 Eric Christopher <echristo@apple.com>
29280
29281 * config/mips/mips.c (mips_regno_mode_ok_for_base_p): Use
29282 HARD_REGISTER_NUM_P.
29283
29284 2007-01-01 Roger Sayle <roger@eyesopen.com>
29285
29286 * fold-const.c (fold_binary) <EQ_EXPR>: Fold "(X^C1) eq/ne C2" into
29287 "X eq/ne (C1^C2)". Fold "(X^Z) eq/ne (Y^Z)" as "X eq/ne Y" when Z
29288 has no side-effects. Fold "(X^C1) eq/ne (Y^C2)" as "(X^(C1^C2))
29289 eq/ne Y".
29290
29291 2007-01-01 Mike Stump <mrs@apple.com>
29292
29293 * configure.ac: Remove support for building with Apple's gcc-3.1.
29294
29295 2007-01-02 Joseph Myers <joseph@codesourcery.com>
29296
29297 PR middle-end/30311
29298 * caller-save.c (add_stored_regs): Only handle SUBREGs if inner
29299 REG is a hard register. Do not modify REG before calling
29300 subreg_nregs.
29301 * rtlanal.c (subreg_get_info): Don't assert size of XMODE is a
29302 multiple of the size of YMODE for certain lowpart cases.
29303
29304 2007-01-01 Andrew Pinski <pinskia@gmail.com>
29305
29306 PR middle-end/30253
29307 * gimplify (voidify_wrapper_expr): Update for
29308 GIMPLE_MODIFY_STMT.
29309
29310 2007-01-01 Andreas Schwab <schwab@suse.de>
29311
29312 PR target/29166
29313 * config/ia64/ia64.c (ia64_compute_frame_size): Account space for
29314 save of BR0 in extra_spill_size instead of spill_size.
29315 (ia64_expand_prologue): Save BR0 outside of the gr/br/fr spill
29316 area.
29317 (ia64_expand_epilogue): Restore BR0 from its new location.
29318
29319 2007-01-01 Andrew Pinski <pinskia@gmail.com>
29320
29321 * gimplify.c (gimplify_init_constructor <case VECTOR_TYPE>):
29322 Use a temporary variable if the left hand side is not a gimple
29323 register.
29324
29325 2007-01-01 Andrew Pinski <pinskia@gmail.com>
29326
29327 * gimplify.c (gimplify_return_expr): Make the temporary variable
29328 for the return expression, a gimple register variable.
29329
29330 2007-01-01 Jan Hubicka <jh@suse.cz>
29331
29332 * emit-rtl.c (emit_copy_of_insn_after): Do not call copy_insn_1 for
29333 INSN_LIST.
29334
29335 2007-01-01 Mike Stump <mrs@apple.com>
29336
29337 * configure.ac (HAVE_GAS_LITERAL16): Add autoconf check for
29338 .literal16.
29339 * config/darwin.c (machopic_select_rtx_section): Use
29340 HAVE_GAS_LITERAL16.
29341 (darwin_mergeable_constant_section): Likewise.
29342 * configure: Regenerate.
29343 * config.in: Regenerate.
29344
29345 2007-01-01 Jan Hubicka <jh@suse.cz>
29346 Andrew Pinski <pinskia@gmail.com>
29347
29348 * cgraphunit.c (cgraph_optimize): Call cgraph_add_new_functions
29349 before starting IPA passes.