1 2008-09-18 Simon Baldwin <simonb@google.com>
3 * c-opts.c (c_common_handle_option): Add handling for
4 -Wbuiltin-macro-redefined command line option.
5 * c.opt: Added builtin-macro-redefined option.
6 * doc/invoke.texi (Warning Options): Add -Wbuiltin-macro-redefined
9 2008-09-18 Richard Guenther <rguenther@suse.de>
11 PR tree-optimization/37258
12 * tree-ssa-sccvn.c (vn_phi_compute_hash): Include the precision
13 and signedness for integral types.
14 (vn_phi_eq): Require compatible types.
16 2008-09-18 Jakub Jelinek <jakub@redhat.com>
19 * gimplify.c (gimplify_type_sizes): When not optimizing, ensure
20 TYPE_MIN_VALUE and TYPE_MAX_VALUE is not is not DECL_IGNORED_P
22 * cfgexpand.c (expand_used_vars): Keep DECL_ARTIFICIAL
23 !DECL_IGNORED_P vars in local_decls list for instantiate_decls,
24 ggc_free other TREE_LIST nodes from that chain.
25 * function.c (instantiate_decls): Instantiate also DECL_RTL
26 of vars in cfun->local_decls, free that list afterwards.
28 2008-09-18 Eric Botcazou <ebotcazou@adacore.com>
30 * config/sparc/sol2.h (WIDEST_HARDWARE_FP_SIZE): Move to...
31 * config/sparc/sparc.h (WIDEST_HARDWARE_FP_SIZE): ...here.
33 2008-09-18 Andrew MacLeod <amacleod@redhat.com>
35 * tree-outof-ssa.c (eliminate_useless_phis): Fix formatting.
36 * tree-flow-.h (struct immediate_use_iterator_d): Fix comment.
38 2008-09-18 Andrew MacLeod <amacleod@redhat.com>
40 PR tree-optimization/37102
41 * tree-outof-ssa.c (remove_gimple_phi_args): Remove all the PHI args
42 from a node. Check to see if another PHI is dead.
43 (eliminate_useless_phis): Rename from eliminate_virtual_phis and
44 remove real PHIs which have no uses.
45 (rewrite_out_of_ssa): Call eliminate_useless_phis.
47 2008-09-18 Richard Guenther <rguenther@suse.de>
50 * tree-cfg.c (remove_useless_stmts_1): Remove
51 GIMPLE_CHANGE_DYNAMIC_TYPE if not optimizing.
53 2008-09-18 Nick Clifton <nickc@redhat.com>
55 * config/frv/frv.h (IRA_COVER_CLASSES): Define.
56 (SECONDARY_INPUT_RELOAD_CLASS): Omit unused argument in call
57 to frv_secondary_reload_class.
58 (SECONDARY_OUTPUT_RELOAD_CLASS): Likewise.
59 * config/frv/frv.c (TARGET_SECONDARY_RELOAD): Define.
60 (frv_secondary_reload_class): Omit unused parameter.
61 (frv_secondary_reload): New function. Handle the case when
62 secondary_reload_class() is called before the reload_(in|out)
63 _optabs have been initialised.
64 * config/frv/frv-protos.h (frv_secondary_reload_class): Omit
66 * config/frv/frv.md: Define an exclusion set between fr550_m0
69 2008-09-18 Richard Guenther <rguenther@suse.de>
71 PR tree-optimization/37456
72 * tree-ssa-reassoc.c (build_and_add_sum): If the stmt we
73 want to insert after ends a BB insert on the single fallthru
76 2008-09-18 Andreas Krebbel <krebbel1@de.ibm.com>
78 * doc/invoke.texi: Document -mhard-dfp, -mno-hard-dfp.
79 Mention -march=z9-109, z9-ec and z10.
81 2008-09-18 Uros Bizjak <ubizjak@gmail.com>
83 PR rtl-optimization/37544
84 * regrename.c (maybe_mode_change): Exit early when copy_mode
85 is narrower than orig_mode and narrower than new_mode.
87 2008-09-18 Alexander Monakov <amonakov@ispras.ru>
90 * sched-int.h (struct _haifa_insn_data): Remove unused field
93 * sched-rgn.c (ref_counts): Remove.
94 (insn_referenced): New static variable.
95 (INSN_REF_COUNT): Remove.
96 (sched_run_compute_dependencies): Use insn_referenced instead of
98 (add_branch_dependences): Likewise. Delete dead assignment.
100 2008-09-17 Adam Nemet <anemet@caviumnetworks.com>
102 * haifa-sched.c (dep_cost_1): Recognize the producer even if the
103 consumer is an asm. Add comment why this is important.
104 (choose_ready): Add comment to the "INSN_CODE (insn) >= 0 ||
105 recog_memoized (insn) < 0" assert. Put ENABLE_CHECKING around
108 2008-09-17 Joseph Myers <joseph@codesourcery.com>
110 * expr.c (emit_group_store): Do not shift before moving via a
113 2008-09-17 Eric Botcazou <ebotcazou@adacore.com>
115 * varasm.c (initializer_constant_valid_p): Forbid view-conversions
116 from aggregate to non-aggregate type if the bit pattern is not fully
117 preserved afterwards.
119 2008-09-17 Richard Guenther <rguenther@suse.de>
121 * tree-cfg.c (verify_types_in_gimple_assign): Rename to ...
122 (verify_gimple_assign): ... this. Split into ...
123 (verify_gimple_assign_unary): ... this,
124 (verify_gimple_assign_binary): ... that,
125 (verify_gimple_assign_single): ... and this.
126 (verify_types_in_gimple_stmt): Call verify_gimple_assign.
127 Fix GIMPLE_CHANGE_DYNAMIC_TYPE handling.
128 (verify_types_in_gimple_min_lval): Handle TARGET_MEM_REF.
129 (verify_types_in_gimple_reference): Be forgiving with
131 (verify_gimple_phi): Deal with virtual operands.
133 * tree.def (PREDICT_EXPR): Change to tcc_expression.
135 2008-09-17 Andrew Pinski <andrew_pinski@playstation.sony.com>
137 * tree.c (get_callee_fndecl): Don't call the language hook.
138 * langhooks.h (lang_hooks): Remove lang_get_callee_fndecl.
139 * langhooks-def.h (LANG_HOOKS_GET_CALLEE_FNDECL): Kill.
140 (LANG_HOOKS_INITIALIZER): Remove LANG_HOOKS_GET_CALLEE_FNDECL.
142 2008-09-17 Jakub Jelinek <jakub@redhat.com>
144 * tree.c (protected_set_expr_location): Don't unnecessarily
145 check for error_mark_node.
147 2008-09-17 Art Haas <ahaas@impactweather.com>
149 * ipa-reference.c (analyze_function): Declare step only if
150 ENABLE_CHECKING is defined.
152 2008-09-17 Jan Hubicka <jh@suse.cz>
155 * tree.h (DECL_INLINE): remove.
156 (DECL_DECLARED_INLINE_P): Update docs.
157 (DECL_NO_INLINE_WARNING_P): new.
158 (tree_function_decl): Replace inline_flag by no_inline_warning_flag.
159 * tree-inline.c (inlinable_function_p): Set DECL_NO_INLINE_WARNING_P.
161 2008-09-17 Jakub Jelinek <jakub@redhat.com>
162 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
165 * dwarf2out.c (dwarf2out_do_cfi_asm) [MIPS_DEBUGGING_INFO]: Return
168 2008-09-17 Jan Hubicka <jh@suse.cz>
170 * ipa-reference.c (ipa_obstack): Remove.
171 (local_info_obstack, global_info_obstack): New.
172 (add_static_var): We now handle variables only.
173 (mark_address_taken, mark_load, mark_store): New functions based on ...
174 (check_operand): ... remove.
175 (get_asm_stmt_operands): Rename to ...
176 (check_asm_memory_clobber): ... this. Look only for memory clobber.
177 (scan_stmt_for_static_refs): Rewrite.
178 (scan_op_for_static_refs): Rename to ...
179 (scan_initializer_for_static_refs): do not look for VAR_DECL
180 initializers; stop recursion on types and decls.
181 (ipa_init): Use proper obstacks.
182 (analyze_variable): Use scan_initializer_for_static_refs.
183 (init_function_info): Use local obstack.
184 (analyze_function): Simplify.
185 (add_new_function): We don't need visited_nodes obstack.
186 (generate_summary): Use proper obstacks; cleanup after propagation.
188 2008-09-17 Richard Guenther <rguenther@suse.de>
191 PR tree-optimization/37491
192 * alias.c (get_alias_set): Use the canonical type.
193 * tree-vect-transform.c (vectorizable_store): Use the type of
194 the lhs for the vector type. Adjust checking.
195 (vectorizable_load): Adjust checking.
197 2008-09-16 Jakub Jelinek <jakub@redhat.com>
198 Adam Nemet <anemet@caviumnetworks.com>
200 PR rtl-optimization/37483
201 * ifcvt.c (noce_try_sign_mask): Use if_info->test_bb instead of
202 if_info->insn_b's bb as argument to optimize_bb_for_speed_p.
203 Rearrange code to better match the original comment. Check
204 t_unconditional first. Improve comment.
206 2008-09-16 Jakub Jelinek <jakub@redhat.com>
209 * gimplify.c (gimplify_expr) <case GOTO_EXPR>: If gimplification of
210 GOTO_DESTINATION failed, don't create GIMPLE_GOTO.
213 * gimplify.c (gimplify_expr) <case TRY_CATCH_EXPR>: Don't create
214 GIMPLE_TRY if cleanup sequence is empty.
216 2008-09-16 Andrew Pinski <andrew_pinski@playstation.sony.com>
219 * tree-ssa-loop-ivopts.c (determine_use_iv_cost_condition): Prefer the
220 eliminate IV if the cost are the same.
222 2008-09-16 Richard Guenther <rguenther@suse.de>
225 * tree-sra.c (sra_build_assignment): Do not call the gimplifier
228 2008-09-16 Richard Guenther <rguenther@suse.de>
230 PR tree-optimization/37508
231 * tree-vrp.c (simplify_truth_ops_using_ranges): Also allow -1.
233 2008-09-15 Kaz Kojima <kkojima@gcc.gnu.org>
235 * config/sh/sh.md (movsf_ie): Fix length for TARGET_SH2A.
237 2008-09-15 Andrew Pinski <andrew_pinski@playstation.sony.com>
239 * config/rs6000/rs6000.md (floatsidf2): Rewrite PowerPC64 case to
240 use gen_floatdidf2 directly.
241 (floatunssidf2): Likewise.
242 (floatsidf_ppc64_mfpgpr): Remove.
243 (floatsidf_ppc64): Remove.
244 (floatunssidf_ppc64): Remove.
246 2008-09-15 Jakub Jelinek <jakub@redhat.com>
248 * ira-color.c (finish_cost_update): Free update_cost_queue_elems
249 rather than update_cost_queue.
251 * tree-ssa-alias.c (init_alias_info): Call bitmap_obstack_release
252 in every call starting with the second one, instead of only when
253 alias_bitmap_obstack.elements != NULL.
255 * tree-predcom.c (filter_suitable_components): Free all refs in
256 act->refs vector before calling release_component.
257 (add_ref_to_chain): Free ref if not adding it to chain->refs.
259 * tree-data-ref.c (free_subscripts): Free all subscript objects.
261 * tree-loop-linear.c (linear_transform_loops): Initialize
262 lambda_obstack only after calling perfect_loop_nest_depth.
263 Goto free_and_continue instead of just continue for later failures.
266 * doc/invoke.texi: Document -fno-dwarf2-cfi-asm.
269 * tree-mudflap.c (mf_xform_derefs_1): Handle VIEW_CONVERT_EXPR.
271 2008-09-14 Andreas Schwab <schwab@suse.de>
273 * tree-call-cdce.c (check_target_format): Accept Motorola formats.
275 2008-09-14 Jan Hubicka <jh@suse.cz>
277 * invoke.texi (-fconserve-stack): Document.
278 * opts.c (decode_options): Handle conserve_stack.
279 * common.opt (fconvserve_stack): New.
281 2008-09-14 David Edelsohn <edelsohn@gnu.org>
283 * config.host: Add x-aix to host_xmake_file.
284 * config/rs6000/t-aix52: Do not override LDFLAGS.
285 * config/rs6000/x-aix: New file.
287 2008-09-14 Andy Hutchinson <hutchinsonandy@aim.com>
293 * config/avr/avr.c (legitimate_address_p): Fix problem where subreg
294 is not recognized as a valid register usage. Allow REG_X to be used
296 * config/avr/avr.h (LEGITIMIZE_RELOAD_ADDRESS): Remove code that
297 forces a reload when using a base register.
299 2008-09-14 Danny Smith <dannysmith@users.sourceforge.net>
301 * config/i386/cygming-crtend.c (register_frame_ctor): If
302 DEFAULT_USE_CXA_ATEXIT, register __gcc_deregister_frame
303 directly with atexit.
304 (deregister_frame_ctor): Rename to ...
305 (deregister_frame_dtor): Use to call __gcc_deregister_frame
306 if !DEFAULT_USE_CXA_ATEXIT.
308 2008-09-13 Jan Hubicka <jh@suse.cz>
310 * cgraph.c: Include value-prof.h
311 * Makefile.in (cgraph.o): Add value-prof.h dependency.
313 2008-09-13 Jan Hubicka <jh@suse.cz>
316 * tree-profile.c (add_abnormal_goto_call_edges): New function.
317 (tree_gen_interval_profiler, tree_gen_pow2_profiler,
318 tree_gen_one_value_profiler, tree_gen_average_profiler,
319 tree_gen_ic_func_profiler, tree_gen_ior_profiler): Use it.
321 2008-09-13 Jan Hubicka <jh@suse.cz>
323 * i386.c (ix86_expand_movmem, ix86_expand_movstr): Avoid processing
324 too many bytes on misalligned blocks.
326 2008-09-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
328 * doc/cfg.texi: Fix some typos.
329 * doc/extend.texi: Likewise.
330 * doc/install.texi: Likewise.
331 * doc/invoke.texi: Likewise.
332 * doc/rtl.texi: Likewise.
333 * doc/tree-ssa.texi: Likewise.
335 2008-09-13 Richard Guenther <rguenther@suse.de>
338 * tree-nested.c (finalize_nesting_tree_1): Generate valid
339 gimple stores for memory rhs.
341 2008-09-13 H.J. Lu <hongjiu.lu@intel.com>
343 PR rtl-optimization/37489
344 * cse.c (fold_rtx): Don't return const_true_rtx for float
345 compare if FLOAT_STORE_FLAG_VALUE is undefined.
347 2008-09-13 Jan Hubicka <jh@suse.cz>
349 PR tree-optimization/37392
350 * tree-inline.c (remap_gimple_stmt): Do not remap return value.
352 2008-09-13 Martin Jambor <mjambor@suse.cz>
353 Jan Hubicka <jh@suse.cz>
355 * cgraph.c (free_edges): New variable.
356 (NEXT_FREE_EDGE): New macro.
357 (cgraph_free_edge): New function.
358 (cgraph_remove_edge): Call cgraph_remove_edge_1.
359 (cgraph_node_remove_callees): Likewise.
360 (cgraph_node_remove_callers): Likewise.
361 (cgraph_create_edge): Reuse edges from the free list. Do not
362 update uid if doing so.
363 (cgraph_remove_*_hook): Add free call.
365 2008-09-13 Richard Sandiford <rdsandiford@googlemail.com>
367 * ira-color.c (conflict_allocno_vec): Delete.
368 (update_cost_queue_elem): New structure.
369 (update_cost_queue): New variable.
370 (update_cost_queue_tail): Likewise.
371 (update_cost_queue_elems): Likewise.
372 (allocno_update_cost_check): Delete.
373 (initiate_cost_update): Allocate update_cost_queue_elems
374 instead of allocno_update_cost_check.
375 (finish_cost_update): Update the free()s accordingly.
376 (start_update_cost): New function.
377 (queue_update_cost): Likewise.
378 (get_next_update_cost): Likewise.
379 (update_copy_costs_1): Inline into...
380 (update_copy_costs): ...here. Use a queue instead of recursive calls.
381 Use cover_class instead of ALLOCNO_COVER_CLASS (another_allocno),
382 once we've established they are equal. Don't allocate update
383 costs if there is nothing to add to them.
384 (update_conflict_hard_regno_costs): Remove ALLOCNO and
385 DIVISOR arguments. Use a queue instead of recursive calls;
386 process all the allocnos in the initial queue, rather than
388 (assign_hard_reg): Use queue_update_cost instead of
389 conflict_allocno_vec. Queue coalesced allocnos instead
390 of calling update_conflict_hard_regno_costs for each one.
391 Just call update_conflict_hard_regno_costs once for the
393 (ira_color): Remove conflict_allocno_vec handling.
395 2008-09-12 Sebastian Pop <sebastian.pop@amd.com>
397 PR tree-optimization/37484
398 * graphite.c (scop_record_loop): Use snprintf instead of sprintf.
399 (save_var_name): Same.
400 (initialize_cloog_names): Same.
401 (initialize_cloog_names): Same.
403 2008-09-12 Sebastian Pop <sebastian.pop@amd.com>
405 * tree-scalar-evolution.c (set_instantiated_value): Set
408 2008-09-12 Vladimir Makarov <vmakarov@redhat.com>
412 * ira-build.c (common_loop_tree_node_dominator): Remove.
413 (copy_live_ranges_to_removed_store_destinations): New function.
414 (regno_top_level_allocno_map): Move to top level from ...
415 (ira_flattening): ... here. Use
416 copy_live_ranges_to_removed_store_destinations.
418 * ira-emit.c (generate_edge_moves): Fix a comment.
420 2008-09-12 Anatoly Sokolov <aesok@post.ru>
423 * config/avr/avr.md (movsi_lreg_const peephole2): Add match_dup for
424 scratch register after 'set' pattern.
426 2008-09-12 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
428 * emit-rtl.c (set_reg_attrs_from_value): Fix invalid alignment
429 information passed to mark_reg_pointer.
430 * explow.c (force_reg): Likewise.
432 2008-09-12 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
434 * config/spu/spu.c (spu_override_options): Default to -mno-safe-hints
435 when building for the celledp architecture.
437 2008-09-12 Richard Guenther <rguenther@suse.de>
439 * tree-vrp.c (simplify_truth_ops_using_ranges): Fix types.
441 2008-09-12 Eric Botcazou <ebotcazou@adacore.com>
443 PR rtl-optimization/37424
444 * ira-color.c (coalesced_pseudo_reg_slot_compare): Untie by comparing
445 the regnos instead of the addresses.
447 2008-09-11 Janis Johnson <janis187@us.ibm.com>
449 * ginclude/float.h (DEC_EVAL_METHOD): Correct the macro name.
451 2008-09-11 Richard Guenther <rguenther@suse.de>
453 * tree-ssa-uncprop.c (associate_equivalences_with_edges): Avoid
454 entering the weaker equivalence recording.
456 * tree-ssa-phiprop.c (propagate_with_phi): Fix tuplification.
458 2008-09-11 Jeff Law <law@redhat.com>
460 * reload1.c (alter_reg): Undo the BYTE_BIG_ENDIAN correction performed
461 by assign_stack_local on the IRA path for stack slot sharing
462 as well as the non-IRA path.
464 2008-09-11 Uros Bizjak <ubizjak@gmail.com>
466 * config/i386/i386.h: Fix whitespace issues.
468 2008-09-11 Martin Jambor <mjambor@suse.cz>
470 * ipa-prop.h (struct ipa_param_flags): Removed.
471 (struct ipa_param_descriptor): New structure.
472 (struct ipa_node_params): ipcp_lattices, param_decls and
473 param_flags moved to ipa_param_description.
474 (ipa_get_ith_param): Renamed to ipa_get_param, changed to access
475 descriptors. Renamed all users.
476 (ipa_is_ith_param_modified): Renamed to ipa_is_param_modified,
477 changed to access descriptors. Renamed all users.
478 (ipa_is_ith_param_called): Renamed to ipa_is_param_called, changed
479 to access descriptors. Renamed all users.
480 * ipa-cp.c (ipcp_init_cloned_node): Call
481 ipa_initialize_node_params instead of ipa_count_formal_params and
482 ipa_create_param_decls_array.
483 (ipcp_analyze_node): Likewise.
484 (ipcp_get_ith_lattice): Renamed to ipcp_get_lattice, changed to access
485 descriptors. Renamed all users.
486 (ipcp_initialize_node_lattices): Remove allocation.
487 * ipa-inline.c (inline_indirect_intraprocedural_analysis): Call
488 ipa_initialize_node_params instead of ipa_count_formal_params and
489 ipa_create_param_decls_array.
490 * ipa-prop.c (ipa_create_param_decls_array): Renamed to
491 ipa_populate_param_decls, made static, added parameter info,
492 renamed mt to node, removed allocation, changed to use
494 (ipa_count_formal_params): Made static, added parameter info,
496 (ipa_initialize_node_params): New function.
497 (ipa_check_stmt_modifications): Changed to use descriptors.
498 (ipa_detect_param_modifications): Removed allocation, changed to
500 (ipa_note_param_call): Changed to use descriptors.
501 (ipa_analyze_params_uses): Removed allocation.
502 (ipa_free_node_params_substructures): Changed to use descriptors.
503 (ipa_edge_duplication_hook): Use the unused attribute.
504 (ipa_node_duplication_hook): Use the unused attribute, changed to
505 use descriptors, changed to duplicate descriptors.
507 * ipa-inline.c (cgraph_mark_inline_edge): New parameter new_edges,
508 changed all callers. Call ipa_propagate_indirect_call_infos if doing
509 indirect inlining. Made static.
510 (cgraph_decide_inlining): Freeing ipa-prop structures after inlining
511 functions called only once.
512 (cgraph_decide_recursive_inlining): Don't call
513 ipa_propagate_indirect_call_infos, pass new_edges to
514 cgraph_mark_inline_edge instead.
515 (cgraph_decide_inlining_of_small_functions): Don't call
516 ipa_propagate_indirect_call_infos, pass new_edges to
517 cgraph_mark_inline_edge instead.
518 (cgraph_decide_inlining): Don't call
519 ipa_propagate_indirect_call_infos.
520 * ipa-prop.c: Check that vectors are allocated.
522 * ipa-inline.c (cgraph_mark_inline_edge): Returns boolean, true
523 iff a new cgraph edges have been created.
524 (cgraph_decide_inlining): New variable redo_always_inline.
525 Flattening and always_inlining loop until callgraph stabilizes.
526 * ipa-prop.c (update_call_notes_after_inlining): Returns boolean,
527 true iff new cgraph edges have been created.
528 (propagate_info_to_inlined_callees): Likewise.
529 (ipa_propagate_indirect_call_infos): Likewise.
531 2008-09-11 Richard Guenther <rguenther@suse.de>
533 * tree-vectorizer.c (slpeel_add_loop_guard): Fix types.
534 (set_prologue_iterations): Likewise.
535 * tree-vect-transform.c (vect_create_addr_base_for_vector_ref):
537 (vect_update_init_of_dr): Likewise.
538 * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Fix
540 * fold-const.c (fold_unary): Do not generate calculations
543 2008-09-11 Paolo Bonzini <bonzini@gnu.org>
545 * dojump.c (do_jump) [BIT_AND_EXPR]: Move below. Fall through to
546 TRUTH_AND_EXPR for boolean (1-bit precision) expressions.
547 (do_jump) [BIT_IOR_EXPR]: Compile as TRUTH_OR_EXPR.
549 * tree-flow.h (simplify_stmt_using_ranges): Accept a GSI, return
551 * tree-ssa-propagate.c (substitute_and_fold): Pass a GSI to
552 VRP's simplify_stmt_using_ranges. Do simplify_stmt_using_ranges
553 before finalizing the changes.
554 * tree-vrp.c (extract_range_from_binary_expr): Add limited support
556 (simplify_truth_ops_using_ranges): New.
557 (simplify_div_or_mod_using_ranges, simplify_abs_using_ranges,
558 simplify_cond_using_ranges, simplify_switch_using_ranges): Return
559 whether a simplification was made.
560 (simplify_stmt_using_ranges): Ditto, and accept a GSI. For GS_ASSIGN,
561 use a switch statement and also call simplify_truth_ops_using_ranges.
563 2008-09-11 Jan Hubicka <jh@suse.cz>
565 * ggc-common.c (loc_array): Make static.
566 * dce.c (rest_of_handle_ud_dce): Free worklist.
568 2008-09-11 Jan Hubicka <jh@suse.cz>
570 * cgraph.c (cgraph_release_function_body): Plug memory leak on
571 ipa_transforms_to_apply and CFG; ggc_free gimple df and struct
572 function so we are sure we do not dangle it forever.
573 * function.c (outer_function_chain, find_function_data): Remove.
574 (function_context_stack): New.
575 (push_function_context, pop_function_context): Update.
576 * function.h (struct function): Remove pointer outer.
577 (outer_function_chain, find_function_data): Remove.
578 * stmt.c (force_label_rtx): Remove dead call of find_function_data.
580 2008-09-11 Jan Hubicka <jh@suse.cz>
583 * cgraph.c (cgraph_create_edge): Use !cgraph_edge for sanity check.
585 2008-09-11 Jan Hubicka <jh@suse.cz>
587 * tree-ssa-pre.c (phi_translate_1): Fix memory leak
589 2008-09-11 Jan Hubicka <jh@suse.cz>
591 * tree-ssa.c (redirect_edge_var_map_clear): Fix formatting.
592 (free_var_map_entry): New function.
593 (redirect_edge_var_map_destroy): Use it.
595 2008-09-11 Jan Hubicka <jh@suse.cz>
598 * tree-inline.c (add_lexical_block): Replace with ...
599 (prepend_lexical_block): ... prepend at begginig.
600 (remap_blocks): Use it and reverse later.
601 (expand_call_inline): Use prepend_lexical_block.
603 2008-09-11 Jan Hubicka <jh@suse.cz>
605 * gimplify.c (pop_gimplify_context): Free bind_expr_stack.
607 2008-09-11 Jan Hubicka <jh@suse.cz>
609 * function.c (free_after_compilation): Call insn_locators_free.
610 * cfglayout.c (insn_locators_free): New function.
611 * rtl.h (insn_locators_free): Declare.
613 2008-09-11 Jan Hubicka <jh@suse.cz>
615 * ifcvt.c (check_cond_move_block): Make regs argument pointer to
617 (cond_move_process_if_block): Update call.
619 2008-09-11 Jan Hubicka <jh@suse.cz>
621 * toplev.c (dump_memory_report): Call dump_vec_loc_statistics.
622 * vec.c: Include hashtab.h
623 (vec_descriptor, ptr_hash_entry): New structures.
624 (vec_desc_hash, vec_ptr_map): New static variables.
625 (hash_descriptor, eq_descriptor, hash_ptr, eq_ptr, vec_descriptor,
626 register_overhead, free_overhead, vec_heap_free): New functions.
627 (vec_gc_o_reserve_1): ggc_free when resizing to 0.
628 (vec_heap_o_reserve_1): free when resizing to 0; add statistics.
629 (cmp_statistic, add_statistics, dump_vec_loc_statistics):
632 2008-09-11 Ira Rosen <irar@il.ibm.com>
634 PR tree-optimization/37474
635 * tree-vect-analyze.c (vect_supported_load_permutation_p): Check the
636 length of load permutation.
638 2008-09-11 Andreas Schwab <schwab@suse.de>
640 * config/m68k/m68k.h (IRA_COVER_CLASSES): Define.
642 2008-09-11 Jakub Jelinek <jakub@redhat.com>
645 * expmed.c (extract_low_bits): Avoid creating invalid subregs.
646 * dse.c (find_shift_sequence): Use extract_low_bits instead of
649 2008-09-11 Ira Rosen <irar@il.ibm.com>
651 * tree-vect-transform.c (vectorizable_store): Use the rhs vector type
654 2008-09-10 Jakub Jelinek <jakub@redhat.com>
657 * gimplify.c (gimplify_body): Call default_rtl_profile.
660 * config/rs6000/rs6000-c.c (rs6000_macro_to_expand): Return NULL
661 instead of tok->val.node if not expanding to something else. Handle
662 intervening CPP_PADDING tokens.
663 (altivec_categorize_keyword): Remove unneeded comparisons.
665 2008-09-10 Richard Guenther <rguenther@suse.de>
667 * tree-ssa-pre.c (phi_translate_1): Fix memory leak.
669 2008-09-10 Richard Guenther <rguenther@suse.de>
672 * tree-inline.c (insert_init_stmt): Make sure to not
673 insert invalid gimple stores.
675 2008-09-10 Sebastian Pop <sebastian.pop@amd.com>
677 PR tree-optimization/37388
678 * toplev.c (process_options): Fail and warn when graphite
679 flags are used, but the compiler has not been configured
680 with graphite libraries.
681 * graphite.c (graphite_transform_loops): Remove printfs
682 to dump_file for the case when graphite is not available.
684 2008-09-10 H.J. Lu <hongjiu.lu@intel.com>
687 * config/i386/i386.c (ix86_expand_vector_init_interleave): Force
688 the even element into register.
689 (ix86_expand_vector_init_general): Don't use
690 ix86_expand_vector_init_interleave on V16QImode and V8HImode
691 if we can't move from GPR to SSE register directly.
693 2008-09-10 Bernd Schmidt <bernd.schmidt@analog.com>
695 * config/bfin/bfin.c (workaround_speculation): Correct algorithm to
696 not lose track of the number of NOPs needed. Number of NOPs needed
697 for sync vs. loads workaround was switched; corrected. Run second
698 pass for all workarounds. No NOPs needed after call insns. Change
699 second pass to use find_next_insn_start and find_load helpers in order
700 to properly detect parallel insns.
701 * config/bfin/bfin.md (cbranch_with_nops): Increase length.
703 2008-09-10 Jan Hubicka <jh@suse.cz>
705 * value-prof.c (gimple_ic): Fix tuplification bug.
706 * sched-deps.c (sched_insns_conditions_mutex_p): Silence unitialized
709 2008-09-10 Jakub Jelinek <jakub@redhat.com>
711 PR tree-optimization/37353
712 * tree-call-cdce.c (cond_dead_built_in_calls): Remove.
713 (shrink_wrap_conditional_dead_built_in_calls): Add calls argument, use
714 calls instead of cond_dead_built_in_calls.
715 (tree_call_cdce): Add cond_dead_built_in_calls automatic variable,
716 initalize the vector only before adding first entry. Use VEC_safe_push
717 instead of VEC_quick_push. Pass cond_dead_built_in_calls to
718 shrink_wrap_conditional_dead_built_in_calls call.
720 2008-09-10 Ira Rosen <irar@il.ibm.com>
722 PR tree-optimization/37385
723 * tree-vect-transform.c (vect_create_data_ref_ptr): Add a new argument,
724 and use it as a vector type if not NULL.
725 (vectorizable_store): Call vect_create_data_ref_ptr with the type of
727 (vect_setup_realignment): Call vect_create_data_ref_ptr with additional
729 (vectorizable_load): Likewise.
731 2008-09-10 Jakub Jelinek <jakub@redhat.com>
733 * config/i386/i386.md (SWI32): New mode iterator.
734 (jcc_fused_1, jcc_fused_2, jcc_fused_3, jcc_fused_4): Use it instead
737 2008-09-09 Vladimir Makarov <vmakarov@redhat.com>
739 PR rtl-optimization/37435
740 * caller-save.c (insert_restore, insert_save): Check the mode by
743 2008-09-09 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
746 * dwarf2asm.c (dw2_force_const_mem): Use unstripped symbol name for
748 (dw2_output_indirect_constant_1): Use unstripped name in symbol
751 2008-09-09 Sandra Loosemore <sandra@codesourcery.com>
753 * doc/invoke.texi (ARM Options): Correct errors in discussion
754 of -mfloat-abi, -mhard-float, and -msoft-float.
756 2008-09-09 Jakub Jelinek <jakub@redhat.com>
757 Jan Hubicka <jh@suse.cz>
760 * tree-inline.c (copy_bb): Insert stmt into copy_basic_block before
761 calling gimple_regimplify_operands on it. Iterate over all newly
762 added statements, not just the last one.
763 (insert_init_stmt): Insert stmt into seq first, then call
764 gimple_regimplify_operands on it. Don't create new gimplification
765 context, nor find referenced vars.
767 2008-09-09 Jakub Jelinek <jakub@redhat.com>
770 * ipa-prop.h (ipa_propagate_indirect_call_infos): Change last argument
771 to pointer to vector pointer.
772 * ipa-prop.c (ipa_propagate_indirect_call_infos,
773 propagate_info_to_inlined_callees): Likewise.
774 (update_call_notes_after_inlining): Likewise. Push new indirect edge
775 to *new_edges instead of new_edges. Reread IPA_EDGE_REF after
776 ipa_check_create_edge_args.
777 * ipa-inline.c (cgraph_decide_recursive_inlining): Change last argument
778 to pointer to vector pointer.
779 (cgraph_decide_inlining_of_small_function): Adjust
780 cgraph_decide_recursive_inlining and ipa_propagate_indirect_call_infos
784 * config/i386/i386.md (zero_extendqihi2_movzbl): Enable when
785 optimizing for size, not speed.
787 PR rtl-optimization/37408
788 * function.c (assign_parm_find_stack_rtl): Set correct MEM_SIZE
791 2008-09-09 Sebastian Pop <sebastian.pop@amd.com>
793 PR tree-optimization/37375
794 * tree-scalar-evolution.c (scev_info_str): Add field
796 (new_scev_info_str, eq_scev_info, find_var_scev_info,
797 set_scalar_evolution, get_scalar_evolution, get_instantiated_value,
798 set_instantiated_value): Pass instantiated_below.
799 (analyze_scalar_evolution_1, analyze_scalar_evolution): Update calls
801 (instantiate_scev_1, instantiate_scev): Pass a basic block above which
802 the definitions are not instantiated.
804 * tree-scalar-evolution.h (instantiate_scev): Update declaration.
805 (block_before_loop): New.
806 * tree-data-ref.c (dr_analyze_indices): Update uses of
808 * graphite.c (block_before_scop): New.
809 (loop_affine_expr, stmt_simple_for_scop_p, harmful_stmt_in_bb): Pass a
810 basic block, not a loop for determining the parameters.
811 (scopdet_edge_info, build_scops_1): Do not pass outermost loop in the
813 (idx_record_params, find_params_in_bb, find_scop_parameters,
814 build_loop_iteration_domains, add_conditions_to_domain): Update calls
817 * Makefile.in (cfgloopmanip.o): Add missing dependency on TREE_FLOW_H.
819 2008-09-09 Vladimir Makarov <vmakarov@redhat.com>
823 * ira-build.c (ira_create_allocno): Setup frequency to 0.
825 * ira-color.c (update_conflict_hard_regno_costs): Remove assert.
826 Check zero freq and increase if necessary.
828 2008-09-09 Vladimir Makarov <vmakarov@redhat.com>
830 * ira-conflicts.c (process_regs_for_copy): Check that the hard
831 regno is in the right range. Add comments.
833 2008-09-09 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
835 * Makefile.in (mips-tfile.o-warn): Don't error out on mips-tfile.c
837 * mips-tfile.c (copy_object): Cast alloca result to int *.
838 * mips-tdump.c (print_symbol): Cast xmalloc return values to
840 Rename class to sclass.
841 (read_tfile): Cast read_seek return values to proper types.
842 Cast xcalloc return value to proper type.
844 2008-09-09 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
846 * config/sol2.h (REGISTER_TARGET_PRAGMAS): Move ...
847 * config/i386/sol2.h (REGISTER_SUBTARGET_PRAGMAS): ... here.
848 * config/sparc/sol2.h (REGISTER_TARGET_PRAGMAS): ... and here.
850 2008-09-09 Jan Hubicka <jh@suse.cz>
852 * profile.c (is_edge_inconsistent): Add debug output; ignore
853 negative count on fake edges.
854 (is_inconsistent): Add debug output.
856 2008-09-09 Andrey Belevantsev <abel@ispras.ru>
858 * haifa-sched.c (advance_one_cycle): Do not print '\n' before printing
860 (choose_ready): When first insn is chosen from the ready list, also
863 2008-09-09 Andrey Belevantsev <abel@ispras.ru>
865 PR rtl-optimization/37360
866 * haifa-sched.c (max_issue): Do not assert that we never issue more
867 insns than issue_rate. Add comment.
869 2008-09-09 Richard Guenther <rguenther@suse.de>
871 * tree-cfg.c (verify_types_in_gimple_op): Remove.
872 (verify_types_in_gimple_call): Rename to ...
873 (verify_gimple_call): ... this. Enhance.
874 (verify_types_in_gimple_cond): Remove.
875 (verify_gimple_comparison): New function ...
876 (verify_types_in_gimple_assign): ... split out from here.
877 (verify_types_in_gimple_return): Rename to ...
878 (verify_gimple_return): ... this. Enhance.
879 (verify_types_in_gimple_switch): Rename to ...
880 (verify_gimple_switch): ... this. Enhance.
881 (verify_gimple_goto): New function.
882 (verify_types_in_gimple_phi): Rename to ...
883 (verify_gimple_phi): ... this. Enhance.
884 (verify_types_in_gimple_stmt): Adjust calls to helper functions.
885 Fold in single-statement cases from verify_types_in_gimple_seq_2.
886 (verify_types_in_gimple_seq_2): Remove cases handled in
887 verify_types_in_gimple_stmt.
889 2008-09-09 Bernd Schmidt <bernd.schmidt@analog.com>
891 * config/bfin/bfin.c (n_regs_to_save): New static variable.
892 (push_multiple_operation, pop_multiple_operation): Set it.
893 (workaround_rts_anomaly): New function.
894 (workaround_speculation): New function, broken out of bfin_reorg.
895 (bfin_reorg): Call the new functions.
897 2008-09-09 Richard Guenther <rguenther@suse.de>
901 * gimplify.c (gimplify_conversion): Change conversions of
902 non-register type to VIEW_CONVERT_EXPRs.
903 (gimplify_addr_expr): If we need to make the operand
904 addressable make sure to use a properly initialized
905 temporary for that so it gets a valid gimple store.
907 2008-09-09 Aldy Hernandez <aldyh@redhat.com>
909 * function.h (struct function): Add function_start_locus.
910 * cfgexpand.c (gimple_expand_cfg): Use it.
911 * c-parser.c (c_parser_declaration_or_fndef): Set it.
913 2008-09-09 Richard Guenther <rguenther@suse.de>
915 PR tree-optimization/37433
916 * tree-ssa-ccp.c (ccp_fold): Properly guard folding of
919 2008-09-09 Richard Guenther <rguenther@suse.de>
921 PR tree-optimization/37387
922 * tree-ssa-ifcombine.c (ifcombine_iforif): Convert the name
923 and bits to a common type.
925 2008-09-09 Nick Clifton <nickc@redhat.com>
927 * config/v850/v850.md (return): Restore frame size restriction.
929 2008-09-09 Paolo Bonzini <bonzini@gnu.org>
931 * c-common.c (c_expand_decl): Remove.
932 * c-common.h (anon_aggr_type_p): Remove prototype.
933 (DECL_ANON_UNION_ELEMS): Remove.
934 * c-objc-common.h (LANG_HOOKS_EXPAND_DECL): Remove.
935 * c-decl.c (anon_aggr_type_p): Remove.
936 * langhooks-def.h (LANG_HOOKS_EXPAND_DECL): Remove.
937 (LANG_HOOKS_INITIALIZER): Remove LANG_HOOKS_EXPAND_DECL.
938 * langhooks.h (struct lang_hooks): Remove expand_decl.
939 * langhooks.c (lhd_expand_decl): Remove.
940 * stmt.c (expand_anon_union_decl): Remove.
941 * tree.h (expand_anon_union_decl): Remove prototype.
943 2008-08-09 Andy Hutchinson <hutchinsonandy@aim.com>
946 * config/avr/avr.c (avr_reorg): Create RTL for reversed compare with
948 * config/avr/avr.md (QISI) : Define mode iterator.
949 (negated_tst<mode>) : Redefine as split using mode macro.
950 (reversed_tstqi): Define insn as reversed compare with zero.
951 (reversed_tsthi): Ditto.
952 (reversed_tstsi): Ditto.
954 2008-09-08 Jakub Jelinek <jakub@redhat.com>
957 * tree-inline.c (copy_bb): When replacing a gimple_call_va_arg_pack_p
958 call stmt by new_call, clear gimple_bb on stmt after gsi_replace.
961 * predict.c (optimize_function_for_size_p): Don't segfault if
963 * fold-const.c (LOGICAL_OP_NON_SHORT_CIRCUIT, fold_truthop,
964 tree_swap_operands_p): Don't test cfun != NULL before calling
965 optimize_function_for_s*_p.
967 2008-09-08 Eric Botcazou <ebotcazou@adacore.com>
969 * ira-color.c (ira_reuse_stack_slot): Set slot_num on success at the
972 2008-09-08 M R Swami Reddy <MR.Swami.Reddy@nsc.com>
974 * crx/crx.h (IRA_COVER_CLASSES): Define.
976 2008-09-08 Jakub Jelinek <jakub@redhat.com>
979 * tree-ssa-dom.c (optimize_stmt): Call maybe_clean_or_replace_eh_stmt
980 even when a stmt has been gimple_modified_p, but after fold_stmt is
981 not any longer. Remove unneeded may_have_exposed_new_symbols
984 2008-09-08 Richard Guenther <rguenther@suse.de>
986 PR tree-optimization/37421
987 * tree-ssa-sccvn.c (visit_copy): Make sure to fully
990 2008-09-08 Jakub Jelinek <jakub@redhat.com>
993 * opts.c (common_handle_option): Handle OPT_ftree_store_ccp.
995 2008-09-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
998 * pa-hpux.h (LINK_SPEC): Strip -fwhole-program.
999 * pa-hpux10.h (LINK_SPEC): Likewise.
1000 * pa-hpux11.h (LINK_SPEC): Likewise.
1002 2008-09-07 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
1004 * pa32-regs.h (IRA_COVER_CLASSES): Define.
1005 * pa64-regs.h (IRA_COVER_CLASSES): Define.
1007 2008-09-07 Helge Deller <deller@gmx.de>
1009 * pa/linux-atomic.c: New file.
1010 * pa/t-linux (LIB2FUNCS_STATIC_EXTRA): Define.
1011 * pa/t-linux64 (LIB2FUNCS_STATIC_EXTRA): Define.
1013 2008-09-07 Richard Guenther <rguenther@suse.de>
1014 Ira Rosen <irar@il.ibm.com>
1016 PR tree-optimization/36630
1017 * tree-vect-transform.c (vect_update_ivs_after_vectorizer):
1018 Call STRIP_NOPS before calling evolution_part_in_loop_num.
1020 2008-09-07 Dorit Nuzman <dorit@il.ibm.com>
1021 Ira Rosen <irar@il.ibm.com>
1023 PR tree-optimization/35642
1024 * config/rs6000/altivec.md (mulv8hi3): Implement.
1026 2008-09-06 Jeff Law <law@redhat.com>
1028 * h8300/h8300.h (IRA_COVER_CLASSES): Define.
1030 2008-09-06 Jan Hubicka <jh@suse.cz>
1032 PR tree-optimization/14703
1033 * tree-ssa-live.c (remove_unused_scope_block_p): Remove ignored
1035 * passes.c (init_optimization_passes): Recompute inline parameters.
1037 2008-09-06 Richard Sandiford <rdsandiford@googlemail.com>
1039 * config/mips/mips.c (mips_function_ok_for_sibcall): Check for
1042 2008-09-06 Richard Sandiford <rdsandiford@goolemail.com>
1043 Peter Fuerst <post@pfrst.de>
1045 * doc/invoke.texi: Document -mr10k-cache-barrier=.
1046 * doc/extend.texi: Document __builtin_mips_cache.
1047 * config/mips/mips-ftypes.def: Add a (VOID, SI, CVPOINTER) entry.
1048 * config/mips/mips.opt (mr10k-cache-barrier=): New option.
1049 * config/mips/mips.h (TARGET_CPU_CPP_BUILTINS): Define
1050 __GCC_HAVE_BUILTIN_MIPS_CACHE.
1051 (TARGET_CACHE_BUILTIN, ISA_HAS_CACHE): New macros.
1052 * config/mips/mips.c (mips_r10k_cache_barrier_setting): New enum.
1053 (set_push_mips_isas): New variable.
1054 (mips_r10k_cache_barrier): New variable.
1055 (cache): New availability predicate.
1056 (mips_builtins): Add an entry for __builtin_mips_cache.
1057 (mips_build_cvpointer_type): New function.
1058 (MIPS_ATYPE_CVPOINTER): New macro.
1059 (mips_prepare_builtin_arg): Only use the insn's mode if the rtx's
1061 (r10k_simplified_address_p, r10k_simplify_address)
1062 (r10k_uncached_address_p, r10k_safe_address_p)
1063 (r10k_needs_protection_p_1, r10k_needs_protection_p_store)
1064 (r10k_needs_protection_p_call, r10k_needs_protection_p)
1065 (r10k_insert_cache_barriers): New functions.
1066 (mips_reorg_process_insns): Delete cache barriers after a
1067 branch-likely instruction.
1068 (mips_reorg): Call r10k_insert_cache_barriers.
1069 (mips_handle_option): Handle OPT_mr10k_cache_barrier_.
1070 * config/mips/mips.md (UNSPEC_MIPS_CACHE): New constant.
1071 (UNSPEC_R10K_CACHE_BARRIER): Likewise.
1072 (mips_cache, r10k_cache_barrier): New define_insns.
1074 2008-09-06 Richard Sandiford <rdsandiford@googlemail.com>
1076 * ira-int.h (ira_zero_hard_reg_set, ira_one_hard_reg_set): Delete.
1077 * ira-color.c (setup_allocno_left_conflicts_num): Use
1078 hard_reg_set_equal_p instead of a comparison with
1079 ira_zero_hard_reg_set.
1080 * ira.c (setup_reg_subclasses): Likewise.
1081 (setup_cover_and_important_classes): Likewise.
1082 (setup_class_translate): Likewise.
1083 (setup_reg_class_intersect_union): Likewise.
1084 (ira_zero_hard_reg_set, ira_one_hard_reg_set): Delete.
1085 (ira_init_once): Don't initialize them.
1087 2008-09-05 Vladimir Makarov <vmakarov@redhat.com>
1089 * doc/tm.texi (IRA_COVER_CLASSES): Fix a typo.
1091 2008-09-05 Vladimir Makarov <vmakarov@redhat.com>
1093 * ira-color.c (ira_fast_allocation): Permit global allocno allocation.
1095 2008-09-05 Trevor Smigiel <Trevor_Smigiel@playstation.sony.com>
1097 Improved branch hints, safe hints, and scheduling.
1099 * haifa-sched.c (sched_emit_insn) : Define.
1100 * sched-int.h (sched_emit_insn) : Add prototype.
1101 * doc/invoke.texi (-mdual-nops, -mhint-max-nops,
1102 -mhint-max-distance -msafe-hints) : Document.
1103 * config/spu/spu.c (spu_flag_var_tracking): New.
1104 (TARGET_SCHED_INIT_GLOBAL, TARGET_SCHED_INIT,
1105 TARGET_SCHED_REORDER, TARGET_SCHED_REORDER2,
1106 TARGET_ASM_FILE_START): Define.
1107 (TARGET_SCHED_ADJUST_PRIORITY): Remove.
1108 (STOP_HINT_P, HINTED_P, SCHED_ON_EVEN_P): Define.
1109 (spu_emit_branch_hint): Add blocks argument.
1110 (insert_branch_hints, insert_nops): Remove.
1111 (pad_bb, insert_hbrp_for_ilb_runout, insert_hbrp, in_spu_reorg,
1112 uses_ls_unit, spu_sched_init_global, spu_sched_init,
1113 spu_sched_reorder, asm_file_start): New functions.
1114 (clock_var, spu_sched_length, pipe0_clock,
1115 pipe1_clock, prev_clock_var, prev_priority,
1116 spu_ls_first, prev_ls_clock): New static variables.
1117 * config/spu/spu.h (TARGET_DEFAULT): Add MASK_SAFE_HINTS.
1118 * config/spu.md (iprefetch): Add operand, make it clobber MEM.
1119 (nopn_nv): Add a non-volatile version of nop.
1120 * config/spu/spu.opt (-mdual-nops, -mhint-max-nops,
1121 -mhint-max-distance, -msafe-hints): New options.
1123 2008-09-05 Janis Johnson <janis187@us.ibm.com>
1124 Samuel Tardieu <sam@rfc1149.net>
1126 * opts.c (decode_options): Combine nested if statements.
1129 * opts.c (decode_options): Handle more relationships among
1130 unit-at-a-time, toplevel-reorder, and section-anchors.
1132 2008-09-05 David Daney <ddaney@avtrex.com>
1134 * doc/install.texi (--enable-reduced-reflection): Document new option.
1136 2008-09-05 Bob Wilson <bob.wilson@acm.org>
1138 * config/xtensa/predicates.md (nonimmed_operand, mem_operand): Use
1140 (constantpool_operand): New.
1141 (move_operand): Disallow sub-word modes for the constant pool.
1142 * config/xtensa/xtensa.c (TARGET_SECONDARY_RELOAD): Define.
1143 (xtensa_secondary_reload_class): Replace with....
1144 (xtensa_secondary_reload): this function. Remove SIGN_EXTEND check.
1145 Set icode for sub-word reloads from the constant pool.
1146 * config/xtensa/xtensa.h (SECONDARY_INPUT_RELOAD_CLASS): Delete.
1147 (SECONDARY_OUTPUT_RELOAD_CLASS): Delete.
1148 * config/xtensa/xtensa.md (reload<mode>_literal): New.
1149 * config/xtensa/xtensa-protos.h: Update prototypes.
1151 2008-09-05 Joseph Myers <joseph@codesourcery.com>
1153 * config/mips/mips.h (enum reg_class): Add FRAME_REGS.
1154 (REG_CLASS_NAMES): Update.
1155 (REG_CLASS_CONTENTS): Update.
1156 * config/mips/mips.c (mips_regno_to_class): Use FRAME_REGS instead
1157 of ALL_REGS for regs 77 and 78.
1158 * function.c (instantiate_virtual_regs_in_insn): Assert that
1159 return value of simplify_gen_subreg is not NULL.
1161 2008-09-05 Paolo Bonzini <bonzini@gnu.org>
1163 * emit-rtl.c (gen_rtvec): Rewrite not using gen_rtvec_v.
1164 (gen_rtvec_v): Fix coding standards.
1166 2008-09-04 Jan Hubicka <jh@suse.cz>
1168 * i386.c (decide_alg): Be more conservative about optimizing for size.
1170 2008-09-04 Ian Lance Taylor <iant@google.com>
1172 * varasm.c (narrowing_initializer_constant_valid_p): New
1174 (initializer_constant_valid_p): Call it.
1176 2008-09-04 Jeff Law <law@redhat.com>
1178 * fold-const.c (native_encode_real): Fix computation of WORDS.
1179 (native_interpret_real): Likewise.
1181 2008-09-04 Janis Johnson <janis187@us.ibm.com>
1183 * config/rs6000/t-rs6000: Remove target gt-rs6000.h.
1185 2008-09-04 Vladimir Makarov <vmakarov@redhat.com>
1187 * ira-conflicts.c (process_regs_for_copy): Check insn to check
1188 that the cost is already taken into account in ira-costs.c
1190 * ira-int.h (ira_debug_copy, ira_debug_copies): New.
1192 * ira-build.c (print_copy, print_copies, ira_debug_copy,
1193 ira_debug_copies): New.
1194 (ira_bulid): Call print_copies.
1196 * doc/tm.texi (IRA_COVER_CLASSES): Fix the description.
1198 2008-09-04 Samuel Tardieu <sam@rfc1149.net>
1201 * config/rs6000/rs6000.c (optimization_options): Remove check of
1202 flag_toplevel_order.
1204 2008-09-04 Adam Nemet <anemet@caviumnetworks.com>
1206 * config/mips/mips.h (ISA_HAS_SEQ_SNE): New macro.
1207 * config/mips/mips.c (mips_expand_scc): Also expand seq and sne if
1208 second operand is a reg_imm10_operand.
1209 * config/mips/mips.md (*seq_<GPR:mode><GPR2:mode>_seq,
1210 *sne_<GPR:mode><GPR2:mode>_sne): New patterns.
1211 (*seq_<GPR:mode><GPR2:mode>): Rename to
1212 *seq_zero_<GPR:mode><GPR2:mode>. Don't match if
1214 (*seq_<GPR:mode><GPR2:mode>_mips16): Rename to
1215 *seq_zero_<GPR:mode><GPR2:mode>_mip16. Don't match if
1217 (*sne_<GPR:mode><GPR2:mode>): Rename to
1218 *sne_zero_<GPR:mode><GPR2:mode>. Don't match if
1221 2008-09-04 Adam Nemet <anemet@caviumnetworks.com>
1223 * config/mips/mips.h (ISA_HAS_EXTS): New macro.
1224 * config/mips/mips.md (*ashr_trunc<mode>): Name the pattern
1225 combining an arithmetic right shift by more than 31 and a
1226 trunction. Don't match for out-of-range shift amounts. Set
1227 attribute mode to <MODE>.
1228 (*lshr32_trunc<mode>): Name the pattern combining a logical right
1229 shift by 32 and and a truncation. Set attribute mode to <MODE>.
1230 (*<optab>_trunc<mode>_exts): New pattern for truncated right
1231 shifts by less than 32.
1232 (extv): Change predicate on first operand to accept registers.
1233 Change predicate of the other operands from immediate_operand to
1234 const_int_operand. Expand exts when source is a register.
1235 (extzv): Change predicate of the constant operands from
1236 immediate_operand to const_int_operand.
1237 (extzv<mode>): Change predicate of the constant operands from
1238 immediate_operand to const_int_operand and no constraint. Also
1240 (*extzv_trunc<mode>_exts): New pattern.
1242 2008-09-04 Adam Nemet <anemet@caviumnetworks.com>
1244 * config/mips/mips.h (ISA_HAS_CINS): New macro.
1245 * config/mips/mips-protos.h (mask_low_and_shift_p,
1246 mask_low_and_shift_len): Declare.
1247 * config/mips/mips.c (mask_low_and_shift_p,
1248 mask_low_and_shift_len): New functions.
1249 (mips_print_operand): Handle new operand prefix "m".
1250 * config/mips/mips.md (*cins<mode>): New pattern.
1252 2008-09-04 Bernd Schmidt <bernd.schmidt@analog.com>
1254 * config/bfin/bfin.c (gen_one_bundle): Don't create new nops when
1255 optimizing for size.
1257 2008-09-04 Richard Sandiford <rdsandiford@googlemail.com>
1259 * df-scan.c (df_get_entry_block_def_set): Add STACK_POINTER_REGNUM
1260 regardless of epilogue_completed.
1262 2008-09-04 Vladimir Makarov <vmakarov@redhat.com>
1265 * ira-lives.c (process_bb_node_lives): Check setjmp.
1267 2008-09-04 Richard Sandiford <rdsandiford@googlemail.com>
1270 * ira-build.c (form_loop_tree): Reverse BB walk.
1271 (create_bb_allocnos): Likewise.
1272 * ira-lives.c (make_regno_born_and_dead, regs_set): Delete.
1273 (mark_reg_store): Rename to...
1274 (mark_ref_live): ...this and take a df_ref argument instead of
1275 note_stores arguments. Assert that we have a register.
1276 (mark_reg_clobber): Delete.
1277 (def_conflicts_with_inputs_p): New function.
1278 (mark_reg_conflicts): Delete.
1279 (mark_reg_death): Rename to...
1280 (mark_ref_dead): ...this and take a df_ref argument instead of
1281 a register. Assert that we have a register.
1282 (process_bb_node_lives): Hoist frequency calculation out of
1283 instruction walk. Convert from a forwards scan to a backwards scan.
1284 Use DF_REF_USES and DF_REF_DEFS instead of register notes and
1285 note_stores. Remove EH_RETURN_DATA_REGNO and regs_set handling.
1286 (create_allocno_live_ranges): Don't create regs_set.
1288 2008-09-04 Ian Lance Taylor <iant@google.com>
1290 * rtl.h (LABEL_REF_NONLOCAL_P): Don't check for REG_LABEL_OPERAND
1291 or REG_LABEL_TARGET.
1292 * calls.c (emit_library_call_value_1): Use MEM_P rather than
1293 comparing MODE with MEM.
1294 * gimple.c (gimple_build_predict): Cast END_PREDICTORS before
1295 comparing with GF_PREDICT_TAKEN.
1296 (gimple_get_lhs): Change code to enum gimple_code.
1297 (gimple_set_lhs): Likewise.
1298 * ifcvt.c (noce_process_if_block): Correct GET_MODE to GET_CODE.
1299 * omp-low.c (find_omp_clause): Change kind parameter to enum
1301 * tree-flow.h (find_omp_clause): Update declaration.
1302 * regrename.c (clear_dead_regs): Change kind parameter to enum
1304 * reload1.c (eliminate_regs_1): Use REG_NOTE_KIND rather than
1306 * see.c (see_get_extension_data): Change return type to enum
1307 entry_type. Change UNKNOWN to NOT_RELEVANT, SIGN_EXTEND to
1308 SIGNED_EXTENDED_DEF, ZERO_EXTEND to ZERO_EXTENDED_DEF.
1309 (see_gen_normalized_extension): Change extension_code parameter to
1311 (see_seek_pre_extension_expr): Change extension_code to enum
1313 (see_merge_one_def_extension): Likewise.
1314 (see_handle_relevant_defs): Likewise.
1315 (see_handle_relevant_uses): Likewise.
1316 (see_analyze_one_def): Likewise.
1317 * tree-cfg.c (need_fake_edge_p): Compare gimple code with
1318 GIMPLE_ASM rather than ASM_EXPR.
1319 * tree-ssa-alias.c (is_escape_site): Compare gimple code with
1320 GIMPLE_RETURN rather than RETURN_EXPR.
1321 * tree-ssa-ccp.c (likely_value): Change code to enum gimple_code.
1322 (evaluate_stmt): Likewise.
1323 * tree-vect-analyze.c (vect_analyze_operations): Change relevance
1324 to enum vect_relevant.
1325 (vect_mark_stmts_to_be_vectorized): Change assertion to not
1326 compare gimple codes with tree codes.
1328 2008-09-04 Paul Brook <paul@codesourcery.com>
1330 * config/arm/arm.c (arm_size_rtx_costs): Call cost function.
1332 2008-09-04 Bernd Schmidt <bernd.schmidt@analog.com>
1334 * config/bfin/bfin.c (bfin_function_ok_for_sibcall): Restore a null
1335 pointer check lost in the recent no-unit-at-a-time patch.
1337 2008-09-04 Jan Hubicka <jh@suse.cz>
1340 * tree-switch-conversion.c (check_final_bb): Accept only IP
1343 2008-09-04 Jan Hubicka <jh@suse.cz>
1345 * tree-vrp.c (vrp_evaluate_conditional_warnv_with_ops_using_ranges):
1347 (vrp_evaluate_conditional_warnv_with_ops): ... this one. Add
1348 using_ranges argument.
1349 (vrp_evaluate_conditional): Avoid bogus warning for type range.
1350 (vrp_visit_cond_stmt): Update call of
1351 vrp_evaluate_conditional_warnv_with_ops
1353 2008-09-04 Jan Hubicka <jh@suse.cz>
1355 PR tree-optimization/37345
1356 PR tree-optimization/37358
1357 PR tree-optimization/37357
1358 * tree.c (build_function_type_skip_args): Build distinct type copy;
1360 (build_function_decl_skip_args): Set type of new decl not orig decl;
1361 clear DECL_VINDEX for methods turned into functions.
1363 2008-09-04 Nick Clifton <nickc@redhat.com>
1365 * configure.ac (HAVE_GAS_LCOMM_WITH_ALIGNMENT): New assembler check.
1366 * configure: Regenerate.
1367 * config.in: Regenerate.
1368 * config/i386/bsd.h (ASM_OUTPUT_ALIGNED_LOCAL): Use .lcomm with an
1369 alignment field, if it is supported.
1371 2008-09-04 Kai Tietz <kai.tietz@onevision.com>
1373 * config/i386/t-mingw32 (SHLIB_LC): Change order of import
1376 2008-09-03 David Edelsohn <edelsohn@gnu.org>
1378 * config/rs6000/rs6000.c (processor_target_table): Do not
1379 enable VMX for POWER6.
1381 2008-09-03 Anton Blanchard <anton@samba.org>
1383 * config/rs6000/rs6000.c (rs6000_split_lock_test_and_set): Do not
1384 emit memory barrier before operation.
1386 2008-09-03 John David Anglin <dave.anglin@nrc.cnrc.gc.ca>
1389 * config/pa/pa64-hpux.h (ASM_OUTPUT_EXTERNAL_REAL): Call
1390 default_elf_asm_output_external.
1392 2008-09-03 Jeff Law <law@redhat.com>
1394 * h8300.c (expand_a_shift): Avoid invalid RTL sharing.
1396 2008-09-03 Richard Henderson <rth@redhat.com>
1398 * config/alpha/alpha.c (alpha_split_lock_test_and_set): Move
1399 memory barrier to below the test-and-set.
1400 (alpha_split_lock_test_and_set_12): Likewise.
1402 2008-09-03 Vladimir Makarov <vmakarov@redhat.com>
1406 * ira-int.h (ira_loop_tree_node): Rename mentioned_allocnos to
1409 * ira-color.c (print_loop_title): Use all_allocnos.
1410 (color_pass): Ditto. Don't add border_allocnos. Check that
1411 subloop allocno in the correspdoning bitmap all_allocnos.
1413 * ira-emit.c (change_loop): Use all_allocnos.
1415 * ira-build.c (create_loop_tree_nodes, finish_loop_tree_node):
1417 (ira_create_allocno): Set up all_allocnos bit for the created
1419 (create_cap_allocno): Remove setting mentioned_allocnos.
1420 (create_insn_allocnos): Ditto.
1421 (remove_unnecessary_allocnos): Use all_allocnos.
1422 (check_allocno_creation): Check that allocnos are in the
1423 corresponding bitmap all_allocnos.
1425 2008-09-03 Vladimir Makarov <vmakarov@redhat.com>
1429 * ira-conflicts.c (REG_SUBREG_P, go_through_subreg): New.
1430 (process_regs_for_copy): Process subregs. Refine check when cost
1431 is taken into account in ira-costs.c.
1432 (process_reg_shuffles): Use REG_SUBREG_P.
1433 (add_insn_allocno_copies): Ditto. Ignore modes.
1435 * ira-color.c (conflict_allocno_vec): New.
1436 (COST_HOP_DIVISOR): New macro.
1437 (update_copy_costs_1): Use it.
1438 (update_conflict_hard_regno_costs): New function.
1439 (assign_hard_reg): Use it.
1440 (ira_color): Allocate and free conflict_allocno_vec.
1442 2008-09-03 Vladimir Makarov <vmakarov@redhat.com>
1446 * ira-int.h (ira_sort_insn_chain): Remove.
1448 * ira.c (basic_block_order_nums, chain_insn_order,
1449 chain_freq_compare, chain_bb_compare, ira_sort_insn_chain): Remove.
1450 (ira): Don't call ira_sort_insn_chain.
1452 * reload1.c (reload): Don't call ira_sort_insn_chain.
1454 2008-09-03 Andrew Pinski <andrew_pinski@playstation.sony.com>
1457 * cgraphunit.c (update_call_expr): Remove eh regions from statements
1458 which become non throw.
1459 (cgraph_function_versioning): Also clear DECL_WEAK. Call
1460 update_call_expr after updating the flags on the decl.
1462 2008-09-03 Jan Hubicka <jh@suse.cz>
1464 PR tree-optimization/37315
1465 * cgraph.c (cgraph_create_edge): Use gimple_has_body_p.
1466 * cgraphunit.c (verify_cgraph_node): drop gimple_body check.
1467 (cgraph_analyze_functions): Use node->analyzed
1468 (cgraph_mark_functions_to_output): Likewise.
1469 (cgraph_expand_function): All functions can be released after
1471 (cgraph_optimize): Use gimple_has_body_p.
1472 * ipa-inline.c (cgraph_clone_inlined_nodes): Use analyzed flag.
1473 (cgraph_decide_inlining_incrementally): Likewise.
1474 (inline_transform): Inline transform.
1475 * tree-inline.c (initialize_cfun): Do now shallow copy structure;
1477 (inlinable_function_p): Drop gimple_body check.
1478 (expand_call_inline): Use gimple_has_body_p.
1479 * gimple.c (gimple_has_body_p): New.
1480 * gimple.h (gimple_has_body_p): Add prototype.
1481 * tree-cfg.c (execute_build_cfg): Remove gimple_body.
1482 (dump_function_to_file): Use gimple_has_body_p check.
1484 2008-09-03 Jakub Jelinek <jakub@redhat.com>
1487 * gimple.h (gimple_has_substatements): GIMPLE_OMP_CRITICAL has
1489 * tree-inline.c (remap_gimple_stmt): Handle GIMPLE_OMP_CRITICAL.
1491 2008-09-03 Bernd Schmidt <bernd.schmidt@analog.com>
1493 From Michael Frysinger <michael.frysinger@analog.com>
1494 * config/bfin/bfin.c (bfin_cpus[]): Add 0.1 for bf522, bf523, bf524,
1495 bf525, bf526, bf527, bf542, bf544, bf547, bf548, and bf549. Add 0.2
1498 2008-09-03 Hari Sandanagobalane <hariharan@picochip.com>
1501 * doc/extend.texi: Document picoChip builtin functions.
1502 * doc/invoke.texi: Document picoChip options.
1503 * doc/contrib.texi: Add picoChip contribution.
1504 * doc/md.texi: Document picoChip constraints.
1505 * config.gcc: Add picochip-*-*.
1506 * config/picochip/: Add new port.
1508 2008-09-03 Richard Guenther <rguenther@suse.de>
1510 PR tree-optimization/37328
1511 * tree-sra.c (sra_build_assignment): Gimplify properly.
1512 (generate_copy_inout): Take the correct stmt as definition,
1513 remove bogus assert.
1515 2008-09-03 Bernd Schmidt <bernd.schmidt@analog.com>
1517 * config/bfin/bfin.c (bfin_expand_prologue): Honour no_stack_limit
1520 From Michael Frysinger <michael.frysinger@analog.com>
1521 * config/bfin/bfin.c (bfin_handle_option): Remove BF561 warning.
1523 2008-09-03 Danny Smith <dannysmith@usrs.sourceforge.net>
1525 * gthr-win32.h (CONST_CAST2): Really make sure CONST_CAST2 is defined.
1526 (__gthread_setspecific): Revert 2008-08-31 change to
1527 __GTHREAD_HIDE_W32API case. Apply it to !__GTHREAD_HIDE_W32API case.
1529 2008-09-02 Aldy Hernandez <aldyh@redhat.com>
1531 * diagnostic.c (error_at): New.
1532 * toplev.h (error_at): New prototype.
1533 * c-typeck.c (build_array_ref): Call error_at instead of error.
1534 Pass location to pedwarn.
1536 2008-09-02 Adam Nemet <anemet@caviumnetworks.com>
1538 * sel-sched.c (sel_hard_regno_rename_ok): Mark arguments unused.
1540 2008-09-02 Jakub Jelinek <jakub@redhat.com>
1542 * dwarf2out.c (tree_add_const_value_attribute): Only handle
1543 VAR_DECL and CONST_DECL.
1545 2008-09-02 H.J. Lu <hongjiu.lu@intel.com>
1546 Jakub Jelinek <jakub@redhat.com>
1548 * config/i386/i386.c (X86_64_VARARGS_SIZE): Removed.
1549 (setup_incoming_varargs_64): Assume cum != NULL. Set/check
1550 ix86_varargs_gpr_size and ix86_varargs_fpr_size. Use
1551 ix86_varargs_gpr_size instead of X86_64_REGPARM_MAX.
1552 Don't set ix86_save_varrargs_registers.
1553 (ix86_setup_incoming_varargs): Assume cum != NULL.
1554 (ix86_va_start): Check ix86_varargs_gpr_size and
1555 ix86_varargs_fpr_size instead of cfun->va_list_gpr_size and
1556 cfun->va_list_fpr_size, respectively. Subtract 8*X86_64_REGPARM_MAX
1557 from frame pointer if ix86_varargs_gpr_size == 0.
1558 (ix86_compute_frame_layout): Updated.
1559 * config/i386/i386.h (ix86_save_varrargs_registers): Removed.
1560 (ix86_varargs_gpr_size): Define.
1561 (ix86_varargs_fpr_size): Likewise.
1562 (machine_function): Remove save_varrargs_registers.
1563 Add varargs_gpr_size and varargs_fpr_size.
1565 2008-09-02 Jakub Jelinek <jakub@redhat.com>
1567 * config/alpha/alpha.c (va_list_skip_additions,
1568 alpha_stdarg_optimize_hook, alpha_gimplify_va_arg_1): Tuplify.
1569 (alpha_gimplify_va_arg): Call unshare_expr on second use of
1572 PR tree-optimization/36766
1573 * tree-cfg.c (gimple_purge_all_dead_eh_edges): Do nothing
1574 for already removed basic blocks.
1577 * real.c (real_maxval): Clear a lower bit to make real_maxval
1578 match get_max_float for IBM long double format.
1580 2008-09-02 Andreas Schwab <schwab@suse.de>
1582 * configure.ac: Use m4_quote to quote the expansion of m4_do.
1583 * configure: Regenerate.
1585 2008-09-02 Richard Sandiford <rdsandiford@googlemail.com>
1587 * simplify-rtx.c (simplify_binary_operation_1): Check for CONST,
1588 SYMBOL_REF and LABEL_REF when applying plus_constant, instead of
1589 checking for a non-VOID CONSTANT_P.
1591 2008-09-02 Jan Hubicka <jh@suse.cz>
1593 * predict.c (pass_strip_predict_hints): Avoid bugs dump file.
1594 * expmed.c (expand_divmod): Fix test of smod_pow2_cheap and
1597 2008-09-02 H.J. Lu <hongjiu.lu@intel.com>
1599 * expr.c (emit_group_store): Don't assert stack temp mode size.
1601 2008-09-02 Sebastian Pop <sebastian.pop@amd.com>
1602 Tobias Grosser <grosser@fim.uni-passau.de>
1603 Jan Sjodin <jan.sjodin@amd.com>
1604 Harsha Jagasia <harsha.jagasia@amd.com>
1605 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
1606 Konrad Trifunovic <konrad.trifunovic@inria.fr>
1607 Adrien Eliche <aeliche@isty.uvsq.fr>
1609 Merge from graphite branch.
1612 * tree-loop-linear.c (perfect_loop_nest_depth): Export.
1613 * doc/invoke.texi (-floop-block, -floop-interchange,
1614 -floop-strip-mine): Document new flags.
1615 * tree-into-ssa.c (gimple_vec): Moved...
1616 * tree-loop-distribution.c (rdg_component): Moved...
1617 * cfgloopmanip.c: Include tree-flow.h.
1618 (update_dominators_in_loop): New.
1619 (create_empty_if_region_on_edge): New.
1620 (create_empty_loop_on_edge): New.
1621 (loopify): Use update_dominators_in_loop.
1622 * tree-pass.h (pass_graphite_transforms): Declared.
1623 * configure: Regenerate.
1624 * tree-phinodes.c (make_phi_node): Export.
1625 (add_phi_node_to_bb): New, split from create_phi_node.
1626 * tree-chrec.c (for_each_scev_op): New.
1627 * tree-chrec.h (for_each_scev_op): Declared.
1628 * tree-ssa-loop-ivopts.c (get_phi_with_result): New.
1629 (remove_statement): Call get_phi_with_result.
1630 * config.in (HAVE_cloog): Undef.
1631 * gdbinit.in (pgg): New.
1632 * timevar.def (TV_GRAPHITE_TRANSFORMS): New.
1633 * tree-ssa-loop.c (graphite_transforms): New.
1634 (gate_graphite_transforms): New.
1635 (pass_graphite_transforms): New.
1636 * configure.ac (PPLLIBS, PPLINC, CLOOGLIBS, CLOOGINC,
1637 HAVE_cloog): Defined.
1638 * tree-vectorizer.c (rename_variables_in_bb): Export.
1639 * tree-data-ref.c (dr_may_alias_p): Export.
1640 (stmt_simple_memref_p): New.
1641 (find_data_references_in_stmt): Export.
1642 (find_data_references_in_loop): Export.
1643 (create_rdg_edge_for_ddr): Initialize RDGE_RELATION.
1644 (create_rdg_edges_for_scalar): Initialize RDGE_RELATION.
1645 (create_rdg_vertices): Export.
1646 (build_empty_rdg): New.
1647 (build_rdg): Call build_empty_rdg. Free dependence_relations.
1648 * tree-data-ref.h (rdg_component): ... here.
1650 (struct data_reference): Add a field scop.
1652 (find_data_references_in_loop): Declared.
1653 (find_data_references_in_stmt): Declared.
1654 (create_rdg_vertices): Declared.
1655 (dr_may_alias_p): Declared.
1656 (stmt_simple_memref_p): Declared.
1657 (struct rdg_edge): Add a field ddr_p relation.
1658 (build_empty_rdg): Declared.
1659 * lambda.h (lambda_matrix): Declare a VEC of.
1660 (find_induction_var_from_exit_cond): Declared.
1661 (lambda_vector_compare): New.
1662 * common.opt (fgraphite, floop-strip-mine,
1663 floop-interchange, floop-block): New flags.
1664 * lambda-code.c (find_induction_var_from_exit_cond): Export.
1665 * cfgloop.c (is_loop_exit): New.
1666 * cfgloop.h (is_loop_exit): Declared.
1667 (create_empty_if_region_on_edge): Declared.
1668 (create_empty_loop_on_edge): Declared.
1669 * tree-flow.h (add_phi_node_to_bb): Declared.
1670 (make_phi_node): Declared.
1671 (rename_variables_in_bb): Declared.
1672 (perfect_loop_nest_depth): Declared.
1673 (graphite_transform_loops): Declared.
1674 * Makefile.in (cfgloopmanip.o): Depend on TREE_FLOW_H.
1675 (graphite.o-warn): Add -Wno-error.
1676 (PPLLIBS, PPLINC, CLOOGLIBS, CLOOGINC): Declared.
1677 (LIBS): Add GMPLIBS, CLOOGLIBS, PPLLIBS.
1678 (INCLUDES): Add PPLINC, CLOOGINC.
1679 (OBJS-common): Add graphite.o.
1680 (graphite.o): Add rule.
1681 * gimple.h (gimple_vec): ... here.
1682 * tree-cfg.c (print_loops): Start printing at ENTRY_BLOCK_PTR.
1683 * passes.c (init_optimization_passes): Schedule
1684 pass_graphite_transforms.
1686 2008-09-02 Samuel Tardieu <sam@rfc1149.net>
1689 * opts.c (decode_options): Move processing of -fno-unit-at-a-time
1690 and -fno-toplevel-reorder after handle_options.
1692 2008-09-02 Paul Brook <paul@codesourcery.com>
1694 * config/arm/arm.c (arm_tune_cortex_a9): Define.
1695 (arm_override_options): Set arm_tune_cortex_a9.
1696 (arm_rtx_costs_1): Make register shifts more expensive on Cortex-A9.
1697 (arm_issue_rate): Handle cortexa9.
1698 * config/arm/arm.h (arm_tune_cortex_a9): Declare.
1699 * config/arm/arm-cores.def: Add cortex-a9.
1700 * config/arm/arm-tune.md: Regenerate.
1701 * config/arm/arm.md: Include cortex-a9.md.
1702 (generic_sched, generic_vfp): Add cortexa9.
1703 * config/arm/cortex-a9.md: New file.
1705 2008-09-02 Richard Guenther <rguenther@suse.de>
1707 PR tree-optimization/37327
1708 * tree-vrp.c (register_new_assert_for): Make sure to not have
1709 TREE_OVERFLOW set on the bound.
1711 2008-09-02 Alexander Monakov <amonakov@ispras.ru>
1713 Fixed typo in date of the 2008-09-01 MOVE_RATIO commit.
1715 * config/ia64/ia64.opt (msched-ar-data-spec): Default to 1.
1716 * config/ia64/ia64.c (ia64_set_sched_flags): Always initialize
1719 2008-09-02 Victor Kaplansky <victork@il.ibm.com>
1721 * gcc/config/spu/spu.md (divdf3): Removed.
1723 2008-09-02 Jakub Jelinek <jakub@redhat.com>
1725 PR tree-optimization/37095
1726 * cgraph.c (cgraph_node): When creating new cgraph node after
1727 assembler_name_hash has been populated, record it in the hash
1730 2008-09-01 Paul Brook <paul@codesourcery.com>
1732 * doc/invoke.texi: Document -mword-relocations.
1733 * config/arm/uclinux-elf.h (TARGET_DEFAULT_WORD_RELOCATIONS): Define.
1734 * config/arm/symbian.h (TARGET_DEFAULT_WORD_RELOCATIONS): Define.
1735 * config/arm/vxworks.h (TARGET_DEFAULT_WORD_RELOCATIONS): Define.
1736 * config/arm/arm.c (arm_split_constant): Use arm_emit_movpair.
1737 (arm_rtx_costs_1, arm_size_rtx_costs): Handle HIGH and LO_SUM.
1738 (arm_emit_movpair): New function.
1739 (arm_print_operand <c>): Handle sybolic addresses.
1740 * config/arm/arm.h (TARGET_USE_MOVT): Define.
1741 (TARGET_DEFAULT_WORD_RELOCATIONS): Define.
1742 * config/arm/arm-protos.h (arm_emit_movpair): Add prototype.
1743 * config/arm/arm.opt: Add -mword-relocations.
1744 * config/arm/arm.md (movsi): Use arm_emit_movpair.
1745 (arm_movt, arm_movw): New.
1747 2008-09-01 Paul Brook <paul@codesourcery.com>
1749 * config/arm/arm.c (arm_override_options): Set arm_abi earlier.
1750 Allow Interworking on ARMv4 EABI based targets.
1751 * config/arm/bpabi.h (TARGET_FIX_V4BX_SPEC): Define.
1752 (SUBTARGET_EXTRA_ASM_SPEC, LINK_SPEC): Add TARGET_FIX_V4BX_SPEC.
1754 2008-09-01 Paul Brook <paul@codesourcery.com>
1756 * config/arm/thumb2.md (thumb2_negscc): Match the correct operand for
1757 optimized LT0 test. Remove optimization for GT.
1759 2008-09-01 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
1761 * pa64-hpux.h (LIB_SPEC): Link against librt when building static
1762 openmp applications.
1763 * pa-hpux11.h (LIB_SPEC): Likewise.
1765 * ira.c (setup_eliminable_regset): Only declare i if ELIMINABLE_REGS
1768 2008-09-01 Jan Hubicka <jh@suse.cz>
1770 * predict.c (maybe_hot_count_p, maybe_hot_edge_p): When profile is
1771 present, use only counts; when guessed use only frequencies.
1772 (estimate_bb_frequencies): Use function_frequency.
1773 * profile.c (compute_branch_probabilities): Exit early when
1774 profile reading failed. Set profile_status.
1775 (branch_prob): Do not set profile_status.
1777 2008-09-01 Aldy Hernandez <aldyh@redhat.com>
1779 * tree.c (protected_set_expr_location): New.
1780 * tree.h (protected_set_expr_location): New prototype.
1781 * c-tree.h (build_array_ref): Add argument.
1782 (parser_build_unary_op): Same.
1783 * c-typeck.c (build_indirect_ref): Handle new location argument.
1784 (build_array_ref): Same.
1785 (parser_build_unary_op): Same.
1786 * gimplify.c (gimplify_asm_expr): Set input_location before calling
1788 * c-omp.c (c_finish_omp_atomic): Pass location when calling
1790 * c-common.c (finish_label_address_expr): Handle new location argument.
1791 * c-common.h (build_indirect_ref): Add argument.
1792 (finish_label_address_expr): Same.
1793 * c-parser.c (c_parser_unary_expression): Pass location to build
1795 (c_parser_postfix_expression): Same.
1797 2008-09-01 Paul Brook <paul@codesourcery.com>
1799 * config/arm/arm.md: Include cortex-r4f.md.
1800 (attr fpu): Update type list.
1801 (attr type): Add fcpys, ffariths, ffarithd, fadds, faddd, fconsts,
1802 fconstd, fcmps and fcmpd.
1803 (attr tune_cortexr4): Define.
1804 (attr generic_sched, attr generic_vfp): Use tune_cortexr4.
1805 * config/arm/vfp.md: Document fcpys, ffariths, ffarithd, fadds, faddd,
1806 fconsts, fconstd, fcmps and fcmpd. Use them in insn patterns.
1807 * config/arm/arm.c (arm_issue_rate): Add cortexr4f.
1808 * config/arm/arm1020e.md (v10_ffarith, v10_farith): Use new insn types.
1809 * config/arm/cortex-a8-neon.md (cortex_a8_vfp_add_sub,
1810 cortex_a8_vfp_farith: Ditto.
1811 * config/arm/vfp11.md (vfp_ffarith, vfp_farith): Ditto.
1812 * config/arm/cortex-r4.md: Use tune_cortexr4.
1813 * config/arm/cortex-r4f.md: New file.
1815 2008-09-01 Richard Guenther <rguenther@suse.de>
1817 PR tree-optimization/37305
1818 * tree-ssa-ccp.c (ccp_fold): Do not set TREE_OVERFLOW on
1819 the result of constant conversions.
1820 (fold_gimple_assign): Likewise.
1822 2008-09-01 Andrey Belevantsev <abel@ispras.ru>
1824 * sel-sched-ir.c (cmp_v_in_regset_pool): Surround with
1825 #ifdef ENABLE_CHECKING.
1827 2008-09-01 Andrey Belevantsev <abel@ispras.ru>
1829 * sel-sched-dump.c: Surround with #ifdef INSN_SCHEDULING.
1830 * sched-int.h (print_insn, print_pattern, print_value): Declare also
1831 when !INSN_SCHEDULING.
1833 2008-09-01 Andreas Schwab <schwab@suse.de>
1835 * config/ia64/ia64.c (TARGET_ADDRESS_COST): Update.
1837 2008-09-01 Paul Brook <paul@codesourcery.com>
1839 * config/arm/arm.c (arm_no_early_mul_dep): Handle multiply-subtract.
1841 2008-09-01 Jan Hubicka <jh@suse.cz>
1843 * config/spu/spu.c (spu_expand_block_move) Update call of MOVE_RATIO.
1845 * expr.c (MOVE_BY_PIECES_P, CLEAR_BY_PIECES_P, SET_BY_PIECES_P):
1847 * expr.h (MOVE_RATIO, CLEAR_RATIO, SET_RATIO): Update.
1848 * gimplify.c (gimplify_init_constructor): Add speed operand.
1849 * tree-sra.c (decide_block_copy): Likewise.
1850 * tree-inline.c (estimate_move_cost): Likewise.
1851 * config/alpha/alpha.h (MOVE_RATIO): Update.
1852 * config/frv/frv.c (MOVE_RATIO): Update.
1853 * config/spu/spu.h (MOVE_RATIO): Update.
1854 * config/sparc/sparc.h (MOVE_RATIO): Update.
1855 * config/i386/i386.h (MOVE_RATIO, CLEAR_RATIO): Update.
1856 * config/m68hc11/m68hc11.h (MOVE_RATIO): Update.
1857 * config/cris/cris.h (MOVE_RATIO): Update.
1858 * config/mn10300/mn10300.h (MOVE_RATIO): Update.
1859 * config/arm/arm.h (MOVE_RATIO): Update.
1860 * config/pa/pa.md: Update uses of MOVE_RATIO
1861 * config/pa/pa.h (MOVE_RATIO): Update.
1862 * config/mips/mips.h (MOVE_RATIO, MOVE_BY_PIECES,
1863 CLEAR_RATIO, SET_RATIO): Update.
1864 * config/h8300/h8300.h (MOVE_RATIO): Update.
1865 * config/v850/v850.h (MOVE_RATIO): Update.
1866 * config/bfin/bfin.h (MOVE_RATIO): Update.
1868 2008-08-31 Andrey Belevantsev <abel@ispras.ru>
1869 Dmitry Melnik <dm@ispras.ru>
1870 Dmitry Zhurikhin <zhur@ispras.ru>
1871 Alexander Monakov <amonakov@ispras.ru>
1872 Maxim Kuvyrkov <maxim@codesourcery.com>
1874 * sel-sched.h, sel-sched-dump.h, sel-sched-ir.h, sel-sched.c,
1875 sel-sched-dump.c, sel-sched-ir.c: New files.
1876 * Makefile.in (OBJS-common): Add selective scheduling object files.
1877 (sel-sched.o, sel-sched-dump.o, sel-sched-ir.o): New entries.
1878 (SEL_SCHED_IR_H, SEL_SCHED_DUMP_H): New entries.
1879 (sched-vis.o): Add dependency on $(INSN_ATTR_H).
1880 * cfghooks.h (get_cfg_hooks, set_cfg_hooks): New prototypes.
1881 * cfghooks.c (get_cfg_hooks, set_cfg_hooks): New functions.
1882 (make_forwarder_block): Update loop latch if we have redirected
1883 the loop latch edge.
1884 * cfgloop.c (get_loop_body_in_custom_order): New function.
1885 * cfgloop.h (LOOPS_HAVE_FALLTHRU_PREHEADERS): New enum field.
1886 (CP_FALLTHRU_PREHEADERS): Likewise.
1887 (get_loop_body_in_custom_order): Declare.
1888 * cfgloopmanip.c (has_preds_from_loop): New.
1889 (create_preheader): Honor CP_FALLTHRU_PREHEADERS.
1890 Assert that the preheader edge will be fall thru when it is set.
1891 * common.opt (fsel-sched-bookkeeping, fsel-sched-pipelining,
1892 fsel-sched-pipelining-outer-loops, fsel-sched-renaming,
1893 fsel-sched-substitution, fselective-scheduling): New flags.
1894 * cse.c (hash_rtx_cb): New.
1896 * dbgcnt.def (sel_sched_cnt, sel_sched_region_cnt,
1897 sel_sched_insn_cnt): New counters.
1898 * final.c (compute_alignments): Export. Free dominance
1899 info after loop_optimizer_finalize.
1900 * genattr.c (main): Output maximal_insn_latency prototype.
1901 * genautomata.c (output_default_latencies): New.
1902 Factor its code from ...
1903 (output_internal_insn_latency_func): ... here.
1904 (output_internal_maximal_insn_latency_func): New.
1905 (output_maximal_insn_latency_func): New.
1906 * hard-reg-set.h (UHOST_BITS_PER_WIDE_INT): Define unconditionally.
1907 (struct hard_reg_set_iterator): New.
1908 (hard_reg_set_iter_init, hard_reg_set_iter_set,
1909 hard_reg_set_iter_next): New functions.
1910 (EXECUTE_IF_SET_IN_HARD_REG_SET): New macro.
1911 * lists.c (remove_free_INSN_LIST_node,
1912 remove_free_EXPR_LIST_node): New functions.
1913 * loop-init.c (loop_optimizer_init): When
1914 LOOPS_HAVE_FALLTHRU_PREHEADERS, set CP_FALLTHRU_PREHEADERS when
1915 calling create_preheaders.
1916 (loop_optimizer_finalize): Do not verify flow info after reload.
1917 * recog.c (validate_replace_rtx_1): New parameter simplify.
1918 Default it to true. Update all uses. Factor out simplifying
1920 (simplify_while_replacing): ... this new function.
1921 (validate_replace_rtx_part,
1922 validate_replace_rtx_part_nosimplify): New.
1923 * recog.h (validate_replace_rtx_part,
1924 validate_replace_rtx_part_nosimplify): Declare.
1925 * rtl.c (rtx_equal_p_cb): New.
1926 (rtx_equal_p): Use it.
1927 * rtl.h (rtx_equal_p_cb, hash_rtx_cb): Declare.
1928 (remove_free_INSN_LIST_NODE, remove_free_EXPR_LIST_node,
1929 debug_bb_n_slim, debug_bb_slim, print_rtl_slim): Likewise.
1930 * vecprim.h: Add a vector type for unsigned int.
1931 * haifa-sched.c: Include vecprim.h and cfgloop.h.
1932 (issue_rate, sched_verbose_param, note_list, dfa_state_size,
1933 ready_try, cycle_issued_insns, spec_info): Make global.
1934 (readyp): Initialize.
1935 (dfa_lookahead): New global variable.
1936 (old_max_uid, old_last_basic_block): Remove.
1937 (h_i_d): Make it a vector.
1938 (INSN_TICK, INTER_TICK, QUEUE_INDEX, INSN_COST): Make them work
1940 (after_recovery, adding_bb_to_current_region_p):
1941 New variables to handle correct insertion of the recovery code.
1942 (struct ready_list): Move declaration to sched-int.h.
1943 (rgn_n_insns): Removed.
1944 (rtx_vec_t): Move to sched-int.h.
1945 (find_insn_reg_weight): Remove.
1946 (find_insn_reg_weight1): Rename to find_insn_reg_weight.
1947 (haifa_init_h_i_d, haifa_finish_h_i_d):
1948 New functions to initialize / finalize haifa instruction data.
1949 (extend_h_i_d, init_h_i_d): Rewrite.
1950 (unlink_other_notes): Move logic to add_to_note_list. Handle
1951 selective scheduler.
1952 (ready_lastpos, ready_element, ready_sort, reemit_notes,
1953 find_fallthru_edge): Make global, remove static prototypes.
1954 (max_issue): Make global. Add privileged_n and state parameters. Use
1956 (extend_global, extend_all): Removed.
1957 (init_before_recovery): Add new param. Fix the handling of the case
1958 when we insert a recovery code before the EXIT which has a predecessor
1959 with a fallthrough edge to it.
1960 (create_recovery_block): Make global. Rename to
1961 sched_create_recovery_block. Update.
1962 (change_pattern): Rename to sched_change_pattern. Make global.
1963 (speculate_insn): Rename to sched_speculate_insn. Make global.
1964 Split haifa-specific functionality into ...
1965 (haifa_change_pattern): New static function.
1966 (sched_extend_bb): New static function.
1967 (sched_init_bbs): New function.
1968 (current_sched_info): Change type to struct haifa_sched_info.
1969 (insn_cost): Adjust for selective scheduling.
1970 (dep_cost_1): New function. Move logic from ...
1971 (dep_cost): ... here.
1972 (dep_cost): Use dep_cost_1.
1973 (contributes_to_priority_p): Use sched_deps_info instead of
1975 (priority): Adjust to work with selective scheduling. Process the
1976 corner case when all dependencies don't contribute to priority.
1977 (rank_for_schedule): Use ds_weak instead of dep_weak.
1978 (advance_state): New function. Move logic from ...
1979 (advance_one_cycle): ... here.
1980 (add_to_note_list, concat_note_lists): New functions.
1981 (rm_other_notes): Make static. Adjust for selective scheduling.
1982 (remove_notes, restore_other_notes): New functions.
1983 (move_insn): Add two arguments. Update assert. Don't call
1985 (choose_ready): Remove lookahead variable, use dfa_lookahead.
1986 Remove more_issue, max_points. Move the code to initialize
1987 max_lookahead_tries to max_issue.
1988 (schedule_block): Remove rgn_n_insns1 parameter. Don't allocate
1989 ready. Adjust use of move_insn. Call restore_other_notes.
1991 (sched_init, sched_finish): Move Haifa-specific initialization/
1993 (haifa_sched_init, haifa_sched_finish): ... respectively.
1995 (setup_sched_dump): New function.
1996 (haifa_init_only_bb): New static function.
1997 (haifa_speculate_insn): New static function.
1998 (try_ready): Use haifa_* instead of speculate_insn and change_pattern.
1999 (extend_ready, extend_all): Remove.
2000 (sched_extend_ready_list, sched_finish_ready_list): New functions.
2001 (create_check_block_twin, add_to_speculative_block): Use
2002 haifa_insns_init instead of extend_global. Update to use new
2003 initialization functions. Change parameter. Factor out code from
2004 create_check_block_twin to ...
2005 (sched_create_recovery_edges) ... this new function.
2006 (add_block): Remove.
2007 (sched_scan_info): New.
2008 (extend_bb): Use sched_scan_info.
2009 (init_bb, extend_insn, init_insn, init_insns_in_bb, sched_scan): New
2010 static functions for walking through scheduling region.
2011 (sched_luids): New vector variable to replace uid_to_luid.
2012 (luids_extend_insn): New function.
2013 (sched_max_luid): New variable.
2014 (luids_init_insn): New function.
2015 (sched_init_luids, sched_finish_luids): New functions.
2016 (insn_luid): New debug function.
2017 (sched_extend_target): New function.
2018 (haifa_init_insn): New static function.
2019 (sched_init_only_bb): New hook.
2020 (sched_split_block): New hook.
2021 (sched_split_block_1): New function.
2022 (sched_create_empty_bb): New hook.
2023 (sched_create_empty_bb_1): New function.
2024 (common_sched_info, ready): New global variables.
2025 (current_sched_info_var): Remove.
2026 (move_block_after_check): Use common_sched_info.
2027 (haifa_luid_for_non_insn): New static function.
2028 (init_before_recovery): Use haifa_init_only_bb instead of add_block.
2029 (increase_insn_priority): New.
2030 * modulo-sched.c: (issue_rate): Remove static declaration.
2031 (sms_sched_info): Change type to haifa_sched_info.
2032 (sms_sched_deps_info, sms_common_sched_info): New variables.
2033 (setup_sched_infos): New.
2034 (sms_schedule): Initialize them. Call haifa_sched_init/finish.
2035 Do not call regstat_free_calls_crossed.
2036 (sms_print_insn): Use const_rtx.
2037 * params.def (PARAM_MAX_PIPELINE_REGION_BLOCKS,
2038 PARAM_MAX_PIPELINE_REGION_INSNS, PARAM_SELSCHED_MAX_LOOKAHEAD,
2039 PARAM_SELSCHED_MAX_SCHED_TIMES, PARAM_SELSCHED_INSNS_TO_RENAME,
2040 PARAM_SCHED_MEM_TRUE_DEP_COST): New.
2041 * sched-deps.c (sched_deps_info): New. Update all relevant uses of
2042 current_sched_info to use it.
2043 (enum reg_pending_barrier_mode): Move to sched-int.h.
2044 (h_d_i_d): New variable. Initialize to NULL.
2045 ({true, output, anti, spec, forward}_dependency_cache): Initialize
2047 (estimate_dep_weak): Remove static declaration.
2048 (sched_has_condition_p): New function. Adjust users of
2049 sched_get_condition to use it instead.
2050 (conditions_mutex_p): Add arguments indicating which conditions are
2052 (sched_get_condition_with_rev): Rename from sched_get_condition. Add
2053 argument to indicate whether returned condition is reversed. Do not
2054 generate new rtx when condition should be reversed; indicate it by
2055 setting new argument instead.
2056 (add_dependence_list_and_free): Add deps parameter.
2057 Update all users. Do not free dependence list when
2058 deps context is readonly.
2059 (add_insn_mem_dependence, flush_pending_lists): Adjust for readonly
2061 (remove_from_dependence_list, remove_from_both_dependence_lists): New.
2062 (remove_from_deps): New. Use the above functions.
2063 (cur_insn, can_start_lhs_rhs_p): New static variables.
2064 (add_or_update_back_dep_1): Initialize present_dep_type.
2065 (haifa_start_insn, haifa_finish_insn, haifa_note_reg_set,
2066 haifa_note_reg_clobber, haifa_note_reg_use, haifa_note_mem_dep,
2067 haifa_note_dep): New functions implementing dependence hooks for
2068 the Haifa scheduler.
2069 (note_reg_use, note_reg_set, note_reg_clobber, note_mem_dep,
2070 note_dep): New functions.
2071 (ds_to_dt, extend_deps_reg_info, maybe_extend_reg_info_p): New
2073 (init_deps): Initialize last_reg_pending_barrier and deps->readonly.
2074 (free_deps): Initialize deps->reg_last.
2075 (sched_analyze_reg, sched_analyze_1, sched_analyze_2,
2076 sched_analyze_insn): Update to use dependency hooks infrastructure
2077 and readonly contexts.
2078 (deps_analyze_insn): New function. Move part of logic from ...
2079 (sched_analyze): ... here. Also move some logic to ...
2080 (deps_start_bb): ... here. New function.
2081 (add_forw_dep, delete_forw_dep): Guard use of INSN_DEP_COUNT with
2083 (sched_deps_init): New function. Move code from ...
2084 (init_dependency_caches): ... here. Remove.
2085 (init_deps_data_vector): New.
2086 (sched_deps_finish): New function. Move code from ...
2087 (free_dependency_caches): ... here. Remove.
2088 (init_deps_global, finish_deps_global): Adjust for use with
2089 selective scheduling.
2090 (get_dep_weak): Move logic to ...
2091 (get_dep_weak_1): New function.
2092 (ds_merge): Move logic to ...
2093 (ds_merge_1): New static function.
2094 (ds_full_merge, ds_max_merge, ds_get_speculation_types): New functions.
2095 (ds_get_max_dep_weak): New function.
2096 * sched-ebb.c (sched_n_insns): Rename to sched_rgn_n_insns.
2097 (n_insns): Rename to rgn_n_insns.
2098 (debug_ebb_dependencies): New function.
2099 (init_ready_list): Use it.
2100 (begin_schedule_ready): Use sched_init_only_bb.
2101 (ebb_print_insn): Indicate when an insn starts a new cycle.
2102 (contributes_to_priority, compute_jump_reg_dependencies,
2103 add_remove_insn, fix_recovery_cfg): Add ebb_ prefix to function names.
2104 (add_block1): Remove to ebb_add_block.
2105 (ebb_sched_deps_info, ebb_common_sched_info): New variables.
2106 (schedule_ebb): Initialize them. Use remove_notes instead of
2107 rm_other_notes. Use haifa_local_init/finish.
2108 (schedule_ebbs): Use haifa_sched_init/finish.
2109 * sched-int.h: Include vecprim.h, remove rtl.h.
2110 (struct ready_list): Delete declaration.
2111 (sched_verbose_param, enum sched_pass_id_t,
2112 bb_vec_t, insn_vec_t, rtx_vec_t): New.
2113 (struct sched_scan_info_def): New structure.
2114 (sched_scan_info, sched_scan, sched_init_bbs,
2115 sched_init_luids, sched_finish_luids, sched_extend_target,
2116 haifa_init_h_i_d, haifa_finish_h_i_d): Declare.
2117 (struct common_sched_info_def): New.
2118 (common_sched_info, haifa_common_sched_info,
2119 sched_emulate_haifa_p): Declare.
2121 (sched_luids): Declare.
2122 (INSN_LUID, LUID_BY_UID, SET_INSN_LUID): Declare.
2123 (sched_max_luid, insn_luid): Declare.
2124 (note_list, remove_notes, restore_other_notes, bb_note): Declare.
2125 (sched_insns_init, sched_insns_finish, xrecalloc, reemit_notes,
2126 print_insn, print_pattern, print_value, haifa_classify_insn,
2127 sel_find_rgns, sel_mark_hard_insn, dfa_state_size, advance_state,
2128 setup_sched_dump, sched_init, sched_finish,
2129 sel_insn_is_speculation_check): Export.
2130 (struct ready_list): Move from haifa-sched.c.
2131 (ready_try, ready, max_issue): Export.
2132 (ebb_compute_jump_reg_dependencies, find_fallthru_edge,
2133 sched_init_only_bb, sched_split_block, sched_split_block_1,
2134 sched_create_empty_bb, sched_create_empty_bb_1,
2135 sched_create_recovery_block, sched_create_recovery_edges): Export.
2136 (enum reg_pending_barrier_mode): Export.
2137 (struct deps): New fields `last_reg_pending_barrier' and `readonly'.
2139 (struct sched_info): Rename to haifa_sched_info. Use const_rtx for
2140 print_insn field. Move add_block and fix_recovery_cfg to
2141 common_sched_info_def. Move compute_jump_reg_dependencies,
2143 (struct sched_deps_info_def): ... this new structure.
2144 (sched_deps_info): Declare.
2145 (struct spec_info_def): Remove weakness_cutoff, add
2146 data_weakness_cutoff and control_weakness_cutoff.
2147 (spec_info): Declare.
2148 (struct _haifa_deps_insn_data): Split from haifa_insn_data. Add
2150 (struct haifa_insn_data): Rename to struct _haifa_insn_data.
2151 (haifa_insn_data_def, haifa_insn_data_t): New typedefs.
2152 (current_sched_info): Change type to struct haifa_sched_info.
2153 (haifa_deps_insn_data_def, haifa_deps_insn_data_t): New typedefs.
2154 (h_d_i_d): New variable.
2155 (HDID): New accessor macro.
2156 (h_i_d): Change type to VEC (haifa_insn_data_def, heap) *.
2157 (HID): New accessor macro. Rewrite h_i_d accessor macros through HID
2159 (IS_SPECULATION_CHECK_P): Update for selective scheduler.
2160 (enum SCHED_FLAGS): Update for selective scheduler.
2161 (enum SPEC_SCHED_FLAGS): New flag SEL_SCHED_SPEC_DONT_CHECK_CONTROL.
2162 (init_dependency_caches, free_dependency_caches): Delete declarations.
2163 (deps_analyze_insn, remove_from_deps, get_dep_weak_1,
2164 estimate_dep_weak, ds_full_merge, ds_max_merge, ds_weak,
2165 ds_get_speculation_types, ds_get_max_dep_weak, sched_deps_init,
2166 sched_deps_finish, haifa_note_reg_set, haifa_note_reg_use,
2167 haifa_note_reg_clobber, maybe_extend_reg_info_p, deps_start_bb,
2169 (rm_other_notes): Delete declaration.
2170 (schedule_block): Remove one argument.
2171 (cycle_issued_insns, issue_rate, dfa_lookahead, ready_sort,
2172 ready_element, ready_lastpos, sched_extend_ready_list,
2173 sched_finish_ready_list, sched_change_pattern, sched_speculate_insn,
2174 concat_note_lists): Export.
2175 (struct region): Move from sched-rgn.h.
2176 (nr_regions, rgn_table, rgn_bb_table, block_to_bb, containing_rgn,
2177 RGN_NR_BLOCKS, RGN_BLOCKS, RGN_DONT_CALC_DEPS, RGN_HAS_REAL_EBB,
2178 BLOCK_TO_BB, CONTAINING_RGN): Export.
2179 (ebb_head, BB_TO_BLOCK, EBB_FIRST_BB, EBB_LAST_BB, INSN_BB): Likewise.
2180 (current_nr_blocks, current_blocks, target_bb): Likewise.
2181 (dep_cost_1, sched_is_disabled_for_current_region_p, sched_rgn_init,
2182 sched_rgn_finish, rgn_setup_region, sched_rgn_compute_dependencies,
2183 sched_rgn_local_init, extend_regions,
2184 rgn_make_new_region_out_of_new_block, compute_priorities,
2185 debug_rgn_dependencies, free_rgn_deps, contributes_to_priority,
2186 extend_rgns, deps_join rgn_setup_common_sched_info,
2187 rgn_setup_sched_infos, debug_regions, debug_region, dump_region_dot,
2188 dump_region_dot_file, haifa_sched_init, haifa_sched_finish): Export.
2189 (get_rgn_sched_max_insns_priority, sel_add_to_insn_priority,
2190 increase_insn_priority): Likewise.
2191 * sched-rgn.c: Include sel-sched.h.
2192 (ref_counts): New static variable. Use it ...
2193 (INSN_REF_COUNT): ... here. Rewrite and move closer to uses.
2194 (FED_BY_SPEC_LOAD, IS_LOAD_INSN): Rewrite to use HID accessor macro.
2195 (sched_is_disabled_for_current_region_p): Delete static declaration.
2196 (struct region): Move to sched-int.h.
2197 (nr_regions, rgn_table, rgn_bb_table, block_to_bb, containing_rgn,
2198 ebb_head): Define and initialize.
2199 (RGN_NR_BLOCKS, RGN_BLOCKS, RGN_DONT_CALC_DEPS, RGN_HAS_REAL_EBB,
2200 BLOCK_TO_BB, CONTAINING_RGN, debug_regions, extend_regions,
2201 BB_TO_BLOCK, EBB_FIRST_BB, EBB_LAST_BB): Move to
2203 (find_single_block_region): Add new argument to indicate that EBB
2204 regions should be constructed.
2205 (debug_live): Delete declaration.
2206 (current_nr_blocks, current_blocks, target_bb):
2207 Remove static qualifiers.
2208 (compute_dom_prob_ps, check_live, update_live, set_spec_fed): Delete
2210 (init_regions): Delete declaration.
2211 (debug_region, bb_in_region_p, dump_region_dot_file, dump_region_dot,
2212 rgn_estimate_number_of_insns): New.
2213 (too_large): Use estimate_number_of_insns.
2214 (haifa_find_rgns): New. Move the code from ...
2215 (find_rgns): ... here. Call either sel_find_rgns or haifa_find_rgns.
2216 (free_trg_info): New.
2217 (compute_trg_info): Allocate candidate tables here instead of ...
2218 (init_ready_list): ... here.
2219 (rgn_print_insn): Use const_rtx.
2220 (contributes_to_priority, extend_regions): Delete static declaration.
2221 (add_remove_insn, fix_recovery_cfg): Add rgn_ to function names.
2222 (add_block1): Rename to rgn_add_block.
2223 (debug_rgn_dependencies): Delete static qualifier.
2224 (new_ready): Use sched_deps_info. Simplify.
2225 (rgn_common_sched_info, rgn_const_sched_deps_info,
2226 rgn_const_sel_sched_deps_info, rgn_sched_deps_info, rgn_sched_info):
2228 (region_sched_info): Rename to rgn_const_sched_info.
2229 (deps_join): New, extracted from ...
2230 (propagate_deps): ... here.
2231 (compute_block_dependences, debug_dependencies): Update for selective
2233 (free_rgn_deps, compute_priorities): New functions.
2234 (sched_rgn_init, sched_rgn_finish, rgn_setup_region,
2235 sched_rgn_compute_dependencies): New functions.
2236 (schedule_region): Use them.
2237 (sched_rgn_local_init, sched_rgn_local_free, sched_rgn_local_finish,
2238 rgn_setup_common_sched_info, rgn_setup_sched_infos):
2240 (schedule_insns): Call new functions that were split out.
2241 (rgn_make_new_region_out_of_new_block): New.
2242 (get_rgn_sched_max_insns_priority): New.
2243 (rest_of_handle_sched, rest_of_handle_sched2): Call selective
2244 scheduling when appropriate.
2245 * sched-vis.c: Include insn-attr.h.
2246 (print_value, print_pattern): Make global.
2247 (print_rtl_slim, debug_bb_slim, debug_bb_n_slim): New functions.
2248 * target-def.h (TARGET_SCHED_ADJUST_COST_2,
2249 TARGET_SCHED_ALLOC_SCHED_CONTEXT, TARGET_SCHED_INIT_SCHED_CONTEXT,
2250 TARGET_SCHED_SET_SCHED_CONTEXT, TARGET_SCHED_CLEAR_SCHED_CONTEXT,
2251 TARGET_SCHED_FREE_SCHED_CONTEXT, TARGET_SCHED_GET_INSN_CHECKED_DS,
2252 TARGET_SCHED_GET_INSN_SPEC_DS, TARGET_SCHED_SKIP_RTX_P): New target
2253 hooks. Initialize them to 0.
2254 (TARGET_SCHED_GEN_CHECK): Rename to TARGET_SCHED_GEN_SPEC_CHECK.
2255 * target.h (struct gcc_target): Add them. Rename gen_check field to
2257 * flags.h (sel_sched_switch_set): Declare.
2258 * opts.c (sel_sched_switch_set): New variable.
2259 (decode_options): Unset flag_sel_sched_pipelining_outer_loops if
2260 pipelining is disabled from command line.
2261 (common_handle_option): Record whether selective scheduling is
2262 requested from command line.
2263 * doc/invoke.texi: Document new flags and parameters.
2264 * doc/tm.texi: Document new target hooks.
2265 * config/ia64/ia64.c (TARGET_SCHED_GEN_SPEC_CHECK): Define to
2267 (dfa_state_size): Do not declare locally.
2268 * config/ia64/ia64.opt (msched-ar-data-spec): Default to 0.
2269 * config/rs6000/rs6000.c (rs6000_init_sched_context,
2270 rs6000_alloc_sched_context, rs6000_set_sched_context,
2271 rs6000_free_sched_context): New functions.
2272 (struct _rs6000_sched_context): New.
2273 (rs6000_sched_reorder2): Do not modify INSN_PRIORITY for selective
2275 (rs6000_sched_finish): Do not run for selective scheduling.
2277 2008-08-31 Jan Hubicka <jh@suse.cz>
2279 * frv.c (frv_rtx_costs): Update forward declaration.
2280 * spu.c (spu_rtx_costs): Likewise.
2281 * pdp11.c: Include df.h
2282 (pdp11_output_function_epilogue): Use df_set_regs_ever_live.
2283 * m68hc11.c (m68hc11_gen_highpart): Fix call of gen_rtx_SUBREG.
2284 (m68hc11_rtx_costs_1): Fix call of rtx_cost.
2285 * iq2000.c (iq2000_address_cost): Add speed argument.
2286 (iq2000_rtx_costs): Likewise.
2287 * mn10300.c (mn10300_address_cost_1): Remove speed argument;
2288 update call of mn10300_address_cost.
2289 * mcore.c: Include df.h
2290 (mcore_rtx_costs): Update prototype.
2291 * score3.c: Include df.h
2292 (score3_rtx_costs): Remove speed argument.
2293 * score7.c: Include df.h
2294 (score7_address_cost): Remove speed argument.
2295 * score-protos.h (score_address_cost): Update prototype.
2296 * score.c: Include df.h
2297 (score_rtx_costs): Update call of costs functions.
2298 * v850.c (v850_rtx_costs): Add bool argument.
2300 2008-08-31 Hans-Peter Nilsson <hp@axis.com>
2302 * config/cris/cris.c (cris_rtx_costs): Correct call to rtx_costs.
2304 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
2306 * gthr-win32.h (__gthread_setspecific): Use CONST_CAST2.
2307 * config/i386/gthr-win32.c (__gthread_setspecific): Same.
2309 2008-08-31 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
2311 * mkmap-flat.awk: Add option pe_dll.
2312 * config/i386/t-cygming (SHLIB_LINK): Support building libgcc_s.
2313 * config/i386/t-cygwin (SHLIB_LC): Add.
2314 * config/i386/t-mingw32 (SHLIB_LC): Add.
2315 * config/i386/mingw32.h (SHARED_LIBGCC_UNDEFS_SPEC): New.
2316 (SUBTARGET_EXTRA_SPECS): Use SHARED_LIBGCC_UNDEFS_SPEC.
2317 (LINK_SPEC): Support libgcc_s.
2318 (LIBGCC_SPEC): Support libgcc_s.
2319 (LIBGCC_SONAME): New.
2321 2008-08-31 Jan Hubicka <jh@suse.cz>
2323 * predict.c (maybe_hot_bb_p, maybe_hot_edge_p): Previous commit
2324 mistakely had old version of patch.
2326 * ipa-cp.c (ipcp_need_original_clone_p): Remove.
2327 (ipcp_estimate_growth): New.
2328 (ipcp_insert_stage): Use ipcp_estimate_growth.
2329 * profile.c (branch_prob): When reading failed, do not consider
2332 2008-08-31 Jan Hubicka <jh@suse.cz>
2334 * tree-ssa-loop-unswitch.c (tree_unswitch_single_loop): Check that
2335 loop is optimized for speed.
2337 2008-08-31 Richard Guenther <rguenther@suse.de>
2340 * fold-const.c (fold_binary): Retain conversions in folding
2343 2008-08-31 Jan Hubicka <jh@suse.cz>
2345 * postreload-gcse.c (eliminate_partially_redundant_loads):
2346 Use optimize_bb_for_size_p.
2347 * predict.c (maybe_hot_frequency_p): Make inline.
2348 (maybe_hot_count_p): Break out from ...
2349 (maybe_hot_bb_p): ... this one.
2350 (maybe_hot_edge_p): Simplify.
2351 * basic-block.h (probably_cold_bb_p): Remove.
2353 2008-08-31 Jakub Jelinek <jakub@redhat.com>
2356 * config/rs6000/rs6000-protos.h (const_vector_elt_as_int): Add
2358 * config/rs6000/rs6000.c (const_vector_elt_as_int): No longer static.
2359 * config/rs6000/altivec.md (easy_vector_constant_add_self splitter):
2360 Also split V4SFmode.
2361 * config/rs6000/predicates.md (easy_vector_constant_add_self): Handle
2364 2008-08-31 Jan Hubicka <jh@suse.cz>
2366 * predict.c (PROB_VERY_LIKELY): Make small enough so things
2368 * predict.def (PRED_NORETURN_CALL, PRED_COLD_CALL): Use it.
2370 2008-08-31 Jakub Jelinek <jakub@redhat.com>
2373 * dwarf2out.c (gen_namespace_die): For DECL_EXTERNAL modules don't
2376 * dwarf2out.c (native_encode_initializer): Subtract min_index for
2377 non-range array index. Handle VIEW_CONVERT_EXPR and NON_LVALUE_EXPR.
2379 2008-08-31 Jan Hubicka <jh@suse.cz>
2381 * sparc.h (BRANCH_COST): Fix macro definition.
2382 * avr.c (avr_operand_rtx_cost): Add speed argument.
2383 (avr_rtx_costs): Update calls of avr_operand_rtx_cost.
2385 2008-08-31 Richard Guenther <rguenther@suse.de>
2387 * tree-cfg.c (verify_types_in_gimple_assign): Dump mismatched
2388 types instead of operands. Re-instantiate verifying of
2389 binary expression operands.
2391 2008-08-30 Jan Hubicka <jh@suse.cz>
2393 * fwprop.c (should_replace_address): Add speed attribute.
2394 (PR_OPTIMIZE_FOR_SPEED): New flag.
2395 (propagate_rtx_1): Use it.
2396 (propagate_rtx): Set it.
2397 (try_fwprop_subst): Update call of rtx_costs.
2398 (forward_propagate_and_simplify): LIkewise.
2399 * hooks.c (hook_int_rtx_bool_0): New
2400 (hook_bool_rtx_int_int_intp_false): Replace by ...
2401 (hook_bool_rtx_int_int_intp_bool_false): .. thisone.
2402 * hooks.h (hook_int_rtx_bool_0): New
2403 (hook_bool_rtx_int_int_intp_false): Replace by ...
2404 (hook_bool_rtx_int_int_intp_bool_false): .. thisone.
2405 * optabs.c (avoid_expensive_constant): UPdate call of rtx_cost.
2406 (prepare_cmp_insn): UPdate call of rtx_cost.
2407 * postreload.c (reload_cse_simplify_set): Update call of rtx_cost.
2408 (reload_cse_simplify_operands): Update call of rtx_cost.
2409 (reload_cse_move2add): call of rtx_cost.
2410 * target.h (struct gcc_target): Update rtx_costs and address_costs.
2411 * rtlanal.c (rtx_cost): Add speed argument.
2412 (address_cost): Add speed argument
2413 (default_address_cost): Likewise.
2414 (insn_rtx_cost): Likewise.
2415 * cfgloopanal.c (seq_cost): Add speed argument.
2416 (target_reg_cost, target_spill_cost): Turn to array.
2417 (init_set_costs): Update for speed.
2418 (estimate_reg_pressure_cost): Add speed argument.
2419 * auto-inc-dec.c (attempt_change): Update call of rtx_cost.
2420 * dojump.c (prefer_and_bit_test): UPdate call of rtx_cost.
2421 * tree-ssa-loop-ivopts.c (struct ivopts_data): New field speed.
2422 (seq_cost): Add speed argument.
2423 (computation_cost): Add speed arugment.
2424 (add_cost, multiply_by_const, get_address_cost): add speed argument.
2425 (force_expr_to_var_cost): Update for profile info.
2426 (force_var_cost): Likewise.
2427 (split_address_cost): Likewise.
2428 (ptr_difference_cost): Likewise.
2429 (difference_cost): Likewise.
2430 (get_computation_cost_at): Likewise.
2431 (determine_iv_cost): Likewise.
2432 (ivopts_global_cost_for_size): Likewise.
2433 (rewrite_use_address): Likewise.
2434 (tree_ssa_iv_optimize_loop): Initialize speed field.
2435 * cse.c (optimize_this_for_speed_p): New static var.
2436 (notreg_cost): Update call of rtx_cost.
2437 (cse_extended_basic_block): set optimize_this_for_speed_p.
2438 * ifcvt.c (cheap_bb_rtx_cost_p): Update call of rtx_cost.
2439 (noce_try_cmove_arith): Likewise.
2440 (noce_try_sign_mask): LIkewise.
2441 * expr.c (compress_float_constant): Update rtx_cost calls.
2442 * tree-ssa-address.c (most_expensive_mult_to_index): Add speed
2444 (addr_to_parts): Likewise.
2445 (create_mem_ref): Likewise.
2446 * dse.c (find_shift_sequence): Add speed argument.
2447 (replace_read): Update call.
2448 * calls.c (precompute_register_parameters): Update call of rtx_cost.
2449 * expmed.c (sdiv_pow2_cheap, smod_pow2_cheap, zero_cost, add_cost,
2450 * neg_cost, shift_cost, shiftadd_cost,
2451 shiftsub_cost, mul_cost, sdiv_cost, udiv_cost ,mul_widen_cost,
2452 mul_highpart_cost): Increase dimension.
2453 (init_expmed): Initialize for both size and speed.
2454 (expand_shift): Use profile.
2455 (synth_mult): Use profile.
2456 (choose_mult_variant): Use profile.
2457 (expand_mult): Use profile.
2458 (expand_mult_highpart_optab): Use profile.
2459 (expand_mult_highpart): Use profile.
2460 (expand_smod_pow2): Use profile.
2461 (expand_divmod): Use profile.
2462 * simplify-rtx.c (simplify_binary_operation_1): Update call of
2464 * loop-invariant.c (create_new_invariant): Use profile.
2465 (gain_for_invariant): Add speed parameter.
2466 (best_gain_for_invariant): Likewise.
2467 (find_invariants_to_move): Likewise.
2468 (move_single_loop_invariants): Set it.
2469 * target-def.h (TARGET_RTX_COSTS): Use hook.
2470 * rtl.h (rtx_cost, address_cost, insn_rtx_cost): Update prototpe.
2471 (optimize_insn_for_size_p, optimize_insn_for_speed_p): Declare.
2472 * output.h (default_address_cost): Update prototype.
2473 * combine.c (optimize_this_for_speed_p): New static var.
2474 (combine_validate_cost): Update call of rtx_cost.
2475 (combine_instructions): Set optimize_this_for_speed_p.
2476 (expand_compound_operation): Update call of rtx_cost.
2477 (make_extraction):Update call of rtx_cost.
2478 (force_to_mode):Update call of rtx_cost.
2479 (distribute_and_simplify_rtx):Update call of rtx_cost.
2480 * cfgloop.h (target_reg_cost, target_spill_cost): Turn to array.
2481 (estimate_reg_pressure_cost): Update prototype.
2482 * tree-flow.h (multiply_by_cost, create_mem_ref): Update prototype.
2483 * basic-block.h (optimize_insn_for_size_p, optimize_insn_for_speed_p):
2485 * config/alpha/alpha.c (alpha_rtx_costs): Update.
2486 (alpha_rtx_costs): Update.
2487 * config/frv/frv.c (frv_rtx_costs): Update.
2488 * config/s390/s390.c (s390_rtx_costs): Update.
2489 * config/m32c/m32c.c (m32c_memory_move_cost): Update.
2490 (m32c_rtx_costs): Update.
2491 * config/spu/spu.c (TARGET_ADDRESS_COST): Upate.
2492 (spu_rtx_costs): Update.
2493 * config/sparc/sparc.c (sparc_rtx_costs): Update.
2494 * config/m32r/m32r.c (m32r_rtx_costs): Update.
2495 * config/i386/i386.c (:ix86_address_cost): Update.
2496 (ix86_rtx_costs): Update.
2497 * config/sh/sh.c (sh_rtx_costs, sh_address_cost): Update.
2498 * config/pdp11/pdp11.c (pdp11_rtx_costs): Update.
2499 * config/avr/avr.c (avr_rtx_costs, avr_address_cost): Update.
2500 * config/crx/crx.c (crx_address_cost): Update.
2501 * config/xtensa/xtensa.c (xtensa_rtx_costs): Update.
2502 * config/stormy16/stormy16.c
2503 (xstormy16_address_cost, xstormy16_rtx_costs): Update.
2504 * config/m68hc11/m68hc11.c
2505 (m68hc11_address_cost, m68hc11_rtx_costs): Update.
2506 * config/cris/cris.c (cris_rtx_costs, cris_address_cost): Update.
2507 * config/iq2000/iq2000.c (iq2000_rtx_costs, iq2000_address_cost):
2509 * config/mn10300/mn10300.c (mn10300_address_cost, mn10300_rtx_costs):
2511 * config/ia64/ia64.c (ia64_rtx_costs): Update.
2512 * config/m68k/m68k.c (m68k_rtx_costs): Update.
2513 * config/rs6000/rs6000.c (rs6000_rtx_costs): Update.
2514 * config/arc/arc.c (arc_rtx_costs, arc_address_cost): Update.
2515 * config/mcore/mcore.c (TARGET_ADDRESS_COST): Update.
2516 (mcore_rtx_costs): update.
2517 * config/score/score3.c (score3_rtx_costs): Update.
2518 * config/score/score7.c (score7_rtx_costs): Update.
2519 * config/score/score3.h (score3_rtx_costs):Update.
2520 * config/score/score7.h (score7_rtx_costs): Update.
2521 * config/score/score.c (score_rtx_costs): Update.
2522 * config/arm/arm.c (arm_address_cost): Update.
2523 (arm_rtx_costs_1): Update.
2524 (arm_rtx_costs_1): Update.
2525 (arm_size_rtx_costs): Update.
2526 (arm_size_rtx_costs): Update.
2527 (arm_size_rtx_costs): Update.
2528 (arm_xscale_rtx_costs): Update.
2529 (arm_thumb_address_cost): Update.
2530 * config/pa/pa.c (hppa_address_cost): Update.
2531 * config/mips/mips.c (mips_rtx_costs): Update.
2532 * config/vax/vax.c (vax_address_cost): Update.
2533 * config/h8300/h8300.c (h8300_shift_costs): Update.
2534 (h8300_rtx_costs): Update.
2535 * config/v850/v850.c (TARGET_ADDRESS_COST): Update.
2536 (v850_rtx_costs): Update.
2537 * config/mmix/mmix.c (mmix_rtx_costs, mmix_rtx_costs): Update.
2538 * config/bfin/bfin.c
2539 (bfin_address_cost): Update.
2540 (bfin_rtx_costs): Update.
2541 * stmt.c (lshift_cheap_p): Update.
2543 2008-08-30 Andrew Pinski <andrew_pinski@playstation.sony.com>
2546 * expmed.c (extract_bit_field_1): Check the mode size to make
2547 sure the vector modes have the same size.
2549 2008-08-29 Michael Meissner <gnu@the-meissners.org>
2551 * dojump.c (top level): Include basic-block.h to declare
2552 optimize_insn_for_speed_p
2554 * Makefile.in (dodump.h): Add $(BASIC_BLOCK_H) dependency.
2556 * opts.h (CL_SAVE): New option class for marking options that are
2557 target specific options usable in the target attribute.
2558 (CL_MIN_OPTION_CLASS): CL_SAVE is now the minimum option.
2560 * opt-functions.awk (switch_flags): Add CL_SAVE flag so backends
2561 can easily find the target specific options that are safe to use
2562 in the attribute or pragma.
2564 * attribs.c (decl_attributes): Change #pragma GCC option to
2565 #pragma GCC target, and attribute((option(...))) to
2566 attribute((target(...))).
2568 * doc/extend.texi (target attribute): Change from option
2569 attribute. Delete push/pop/reset.
2570 (#pragma GCC target): Change from #pragma GCC option. Delete
2572 (#pragma GCC push_options): Document new pragma.
2573 (#pragma GCC pop_options): Document new pragma.
2574 (#pragma GCC reset_options): Document new pragma.
2576 * targhooks.c (default_target_option_valid_attribute_p): Add
2577 warning about port not supporting target attributes.
2578 (default_target_option_pragma_parse): New function, warn about
2579 #pragma GCC target not being supported.
2581 * targhooks.h (default_target_option_pragma_parse): Add
2584 * tree.h (TI_CURRENT_TARGET_PRAGMA): Rename from
2585 TI_CURRENT_OPTION_PRAGMA.
2586 (current_target_pragma): Rename from current_option_pragma.
2588 * target.h: (struct target_option): Delete booleans for changing
2589 the optimization level on hot/cold functions. Change signature of
2590 pragma_parse hook to take a second tree.
2592 * c-tree.h (c_builtin_function_ext_scope): Add declaration.
2594 * c-decl.c (c_builtin_function_ext_scope): New function, guarantee
2595 that the declaration is done at global scope.
2597 * langhooks.c (add_builtin_function_common): Move most of the code
2598 from add_builtin_function here, calling the hook passed in.
2599 (add_builtin_function): Call add_builtin_function_common with
2600 standard builtin hook.
2601 (add_builtin_function_ext_scope): New function to add builtins to
2604 * langhooks.h (struct lang_hooks): Add builtin_function_ext_scope
2606 (add_builtin_function_ext_scope): Add declaration.
2608 * c-pragma.c (handle_pragma_target): Rename from
2609 handle_pragma_option, #pragma GCC option is now #pragma GCC
2610 target. Move warning about port not supporting target options to
2611 default pragma parse hook. Remove push/pop/reset from this
2613 (handle_pragma_optimize): Remove push/pop/reset from this pragma.
2614 (option_stack): Delete static variable.
2615 (optimize_stack): Ditto.
2616 (optons_stack): New stack of saved target and optimization
2618 (handle_pragma_push_options): New function to handle pushing both
2619 target and optimization options.
2620 (handle_pragma_pop_options): New function to handle popping both
2621 target and optimization options.
2622 (handle_pragma_reset_options): New function to handle resetting
2623 both target and optimization options to their initial state.
2624 (init_pragma): Rename handle_pragma_option to
2625 handle_pragma_target. Add support for push_options, pop_options,
2626 and reset_options pragmas.
2628 * target-def.h (TARGET_OPTION_PRAGMA_PARSE): Change default to
2629 default_target_option_pragma_parse.
2630 (TARGET_OPTION_VALID_ATTRIBUTE_P): Change default to
2631 default_target_option_valid_attribute_p.
2632 (TARGET_OPTION_COLD_ATTRIBUTE_SETS_OPTIMIZATION): Delete.
2633 (TARGET_OPTION_HOT_ATTRIBUTE_SETS_OPTIMIZATION): Ditto.
2634 (TARGET_OPTION_HOOKS): Delete the fields for whether to change
2635 optimization level on hot/cold functions.
2637 * tree-inline.c (tree_can_inline_p): Disable suppressing inlining
2638 if the caller and callee have different optimization levels.
2640 * c-common.c (handle_target_attribute): Rename from
2641 handle_option_attribute, attribute((option(...))) is now
2642 attribute((target(...))). Move warning if the port does not
2643 support target attributes to the default hook.
2644 (handle_hot_attribute): Delete code to change the optimization
2645 level of hot functions.
2646 (handle_cold_attribute): Ditto.
2648 * config/i386/i386-c.c (ix86_pragma_target_parse): Take a second
2649 argument that is the binary tree options to use if there are no
2650 arguments. Call ix86_valid_target_attribute_tree instead of
2651 ix86_valid_option_attribute_tree.
2652 (ix86_pragma_target_parse): Rename from ix86_pragma_option_parse.
2653 (ix86_register_pragmas): Use ix86_pragma_target_parse instead of
2654 ix86_pragma_option_parse.
2656 * config/i386/i386-protos.h (ix86_valid_target_attribute_tree):
2657 Rename from ix86_valid_option_attribute_tree.
2659 * config/i386/i386.c (ix86_add_new_builtins): New function to add
2660 new builtins when the ISA changes.
2661 (ix86_valid_target_attribute_tree): Rename from
2662 ix86_valid_option_attribute_tree. Change callers. If the
2663 function specified optimization options, use those as the starting
2664 point before setting up the target attributes. If the
2665 optimization options were changed in the course of setting the
2666 target attributes, record the new optimization options.
2667 (ix86_valid_target_attribute_tree_inner_p): Rename from
2668 ix86_valid_option_attribute_tree_inner_p. Change callers. Call
2669 ix86_add_new_builtins if the ISA changed.
2670 (ix86_valid_target_attribute_p): Rename from
2671 ix86_valid_option_attribute_p. Change callers.
2672 (enum ix86_builtins): Add IX86_BUILTIN_PCMOV to allow both
2673 __builtin_ia32_pcmov and __builtin_ia32_pcmov_v2di to be declared
2674 as delayed builtin functions.
2675 (struct builtin_isa): New structure to record builtin functions
2676 that should be delayed until the ISA for that function is used.
2677 (ix86_builtins_isa): Change from int to struct to track builtin
2678 functions we want to declare at some point.
2679 (def_builtin): If the front end can delay defining the builtin
2680 functions, don't create builtins for ISAs not part of the default
2682 (def_builtin_const): Ditto.
2683 (bdesc_multi_arg): Declare __builtin_ia32_pcmov and
2684 __builtin_ia32_pcmov_v2di to be different builtin functions.
2685 (ix86_expand_builtin): Changes due to ix86_builtins_isa now being
2686 a structure instead of an int.
2687 (TARGET_OPTION_VALID_ATTRIBUTE_P): Use
2688 ix86_valid_target_attribute_p, not ix86_valid_option_attribute_p.
2689 (TARGET_OPTION_COLD_ATTRIBUTE_SETS_OPTIMIZATION): Delete.
2690 (TARGET_OPTION_HOT_ATTRIBUTE_SETS_OPTIMIZATION): Ditto.
2692 * config/ia64/ia64.h
2693 (TARGET_OPTION_COLD_ATTRIBUTE_SETS_OPTIMIZATION): Delete.
2694 (TARGET_OPTION_HOT_ATTRIBUTE_SETS_OPTIMIZATION): Ditto.
2696 * langhooks-def.h (LANG_HOOKS_BUILTIN_FUNCTION_EXT_SCOPE): New
2697 hook, default to being the same as LANG_HOOKS_BUILTIN_FUNCTION.
2698 (LANG_HOOKS_INITIALIZER): Add
2699 LANG_HOOKS_BUILTIN_FUNCTION_EXT_SCOPE hook.
2701 2008-08-30 Kaz Kojima <kkojima@gcc.gnu.org>
2704 * config/sh/sh.h (LEGITIMIZE_RELOAD_ADDRESS): Generate
2705 the reload address with the index register for SFmode
2706 access with a displacement.
2708 2008-08-30 Jan Hubicka <jh@suse.cz>
2710 * optabs.c (expand_abs_nojump): Update BRANCH_COST call.
2711 * fold-cost.c (LOGICAL_OP_NON_SHORT_CIRCUIT, fold_truthop): Likewise.
2712 * dojump.c (do_jump): Likewise.
2713 * ifcvt.c (MAX_CONDITIONAL_EXECUTE): Likewise.
2714 (note-if_info): Add BRANCH_COST.
2715 (noce_try_store_flag_constants, noce_try_addcc,
2716 noce_try_store_flag_mask, noce_try_cmove_arith, noce_try_cmove_arith,
2717 noce_try_cmove_arith, noce_find_if_block, find_if_case_1,
2718 find_if_case_2): Use computed branch cost.
2719 * expr.h (BRANCH_COST): Update default.
2720 * predict.c (predictable_edge_p): New function.
2721 * expmed.c (expand_smod_pow2, expand_sdiv_pow2, emit_store_flag):
2722 Update BRANCH_COST call.
2723 * basic-block.h (predictable_edge_p): Declare.
2724 * config/alpha/alpha.h (BRANCH_COST): Update.
2725 * config/frv/frv.h (BRANCH_COST): Update.
2726 * config/s390/s390.h (BRANCH_COST): Update.
2727 * config/spu/spu.h (BRANCH_COST): Update.
2728 * config/sparc/sparc.h (BRANCH_COST): Update.
2729 * config/m32r/m32r.h (BRANCH_COST): Update.
2730 * config/i386/i386.h (BRANCH_COST): Update.
2731 * config/i386/i386.c (ix86_expand_int_movcc): Update use of
2733 * config/sh/sh.h (BRANCH_COST): Update.
2734 * config/pdp11/pdp11.h (BRANCH_COST): Update.
2735 * config/avr/avr.h (BRANCH_COST): Update.
2736 * config/crx/crx.h (BRANCH_COST): Update.
2737 * config/xtensa/xtensa.h (BRANCH_COST): Update.
2738 * config/stormy16/stormy16.h (BRANCH_COST): Update.
2739 * config/m68hc11/m68hc11.h (BRANCH_COST): Update.
2740 * config/iq2000/iq2000.h (BRANCH_COST): Update.
2741 * config/ia64/ia64.h (BRANCH_COST): Update.
2742 * config/rs6000/rs6000.h (BRANCH_COST): Update.
2743 * config/arc/arc.h (BRANCH_COST): Update.
2744 * config/score/score.h (BRANCH_COST): Update.
2745 * config/arm/arm.h (BRANCH_COST): Update.
2746 * config/pa/pa.h (BRANCH_COST): Update.
2747 * config/mips/mips.h (BRANCH_COST): Update.
2748 * config/vax/vax.h (BRANCH_COST): Update.
2749 * config/h8300/h8300.h (BRANCH_COST): Update.
2750 * params.def (PARAM_PREDICTABLE_BRANCH_OUTCOME): New.
2751 * doc/invoke.texi (predictable-branch-cost-outcome): Document.
2752 * doc/tm.texi (BRANCH_COST): Update.
2754 2008-08-30 Samuel Tardieu <sam@rfc1149.net>
2757 * config/arm/arm.c (arm_optimization_options): Set
2758 flag_section_anchors to 2 instead of 1 to distinguish it from
2759 -fsection-anchors given explicitely on the command line.
2761 2008-08-30 Richard Sandiford <rdsandiford@googlemail.com>
2763 * recog.c (split_insn): Consider attaching a REG_EQUAL note to the
2764 final insn of a split.
2766 2008-08-30 Jan Hubicka <jh@suse.cz>
2768 * postreload-gcse.c (gate_handle_gcse2): Disable for functions
2769 optimized for speed.
2770 * final.c (compute_alignments): Use optimize_bb_for_size_p.
2771 * tree-call-cdce.c (gate_call_cdce): Use optimize_function_for_speed_p.
2772 * opts.c (flag_predictive_commoning_set, flag_unswitch_loops_set,
2773 flag_gcse_after_reload_set): New static vars.
2774 (common_handle_option): Enable those flags for profile-use.
2775 (decode_options): Remove optimize_size flags that are handled
2776 on higher granuality.
2777 * tree-vectorizer.c (vectorize_loops): Use
2778 optimize_loop_nest_for_speed_p.
2779 * tree-ssa-pre.c (do_pre): Use optimize_function_for_speed_p.
2780 * tree-predcom.c (tree_predictive_commoning): Use
2781 optimize_loop_for_speed_p.
2782 * varasm.c (assemble_start_function): Use
2783 optimize_function_for_speed_p.
2784 * bb-reorder.c (rest_of_handle_reorder_blocks): Likewise.
2785 * predict.c (optimize_loop_for_speed_p): Fix walk.
2787 2008-08-30 Jan Hubicka <jh@suse.cz>
2789 * ipa-inline.c (cgraph_estimate_growth): Discover self recursive
2791 (cgraph_decide_inlining_of_small_function): Use edge->count to detect
2792 profile presence locally.
2794 2008-08-29 Joseph Myers <joseph@codesourcery.com>
2797 * tree-vrp.c (find_switch_asserts): Make idx volatile for GCC
2798 versions before 4.0.
2800 2008-08-29 Jan Hubicka <jh@suse.cz>
2802 * tree-inline.c (insert_init_stmt): Insert sequence even when
2805 2008-08-29 Jeff Law <law@redhat.com>
2807 * mn10300.c (mn10300_secondary_reload_class): We need secondary
2808 reloads for AM33-2 if IN is a pseudo with an equivalent memory
2809 location and class is an FP register.
2811 2008-08-29 Jan Hubicka <jh@suse.cz>
2813 * see.c (see_merge_one_def_extension): Silence used uninitialized
2815 * matrix-reorg.c (check_allocation_function): Likewise.
2816 * config/i386/driver-i386.c (detect_caches_amd): Likewise.
2818 2008-08-29 Jakub Jelinek <jakub@redhat.com>
2821 * fold-const.c (fold_binary): In (X | C1) & C2 canonicalization
2822 compute new & and | in type rather than TREE_TYPE (arg0).
2824 * dwarf2out.c (fortran_common): Update comment.
2825 (gen_variable_die): Swap com_die and var_die variables in Fortran
2826 COMMON block handling code.
2828 * dwarf2out.c (descr_info_loc): Handle VAR_DECL.
2830 * dwarf2out.c (gen_const_die): New function.
2831 (size_of_die, value_format, output_die): Output larger
2832 dw_val_class_vec using DW_FORM_block2 or DW_FORM_block4.
2833 (native_encode_initializer): New function.
2834 (tree_add_const_value_attribute): Call it.
2835 (gen_decl_die, dwarf2out_decl): Handle CONST_DECLs if is_fortran ().
2837 * dwarf2out.c (gen_formal_parameter_die, gen_variable_die): For
2838 DECL_BY_REFERENCE decls don't pass TREE_READONLY and
2839 TREE_THIS_VOLATILE to add_type_attribute.
2841 * dwarf2out.c (add_subscript_info): Stop on Fortran TYPE_STRING_FLAG
2843 (gen_array_type_die): Emit DW_TAG_string_type for Fortran character
2846 * dwarf2out.c (loc_by_reference): New function.
2847 (add_location_or_const_value_attribute): Use it.
2850 * dwarf2out.c (gen_variable_die): Represent Fortran COMMON vars
2851 as DW_TAG_variable children of DW_TAG_common_block rather than
2852 DW_TAG_member children. Put DW_AT_external to individual
2853 DW_TAG_variable DIEs, not to DW_TAG_common_block.
2855 * dwarf2out.c (add_bound_info): If lookup_decl_die failed, try
2856 loc_descriptor_from_tree_1.
2860 * debug.h (struct gcc_debug_hooks): Add NAME and CHILD
2861 arguments to imported_module_or_decl.
2862 (debug_nothing_tree_tree): Removed.
2863 (debug_nothing_tree_tree_tree_bool): New prototype.
2864 * debug.c (do_nothing_debug_hooks): Adjust.
2865 (debug_nothing_tree_tree): Removed.
2866 (debug_nothing_tree_tree_tree_bool): New function.
2867 * dwarf2out.c (is_symbol_die): Handle DW_TAG_module.
2868 (gen_variable_die): Put all common vars for the
2869 same COMMON block under one DW_TAG_common_block.
2870 (declare_in_namespace): Return new context_die, for Fortran
2871 return the module DIE instead of adding extra declarations into
2873 (gen_type_die_with_usage): Adjust declare_in_namespace caller.
2874 (gen_namespace_die): If is_fortran (), generate DW_TAG_module
2875 instead of DW_TAG_namespace. If DECL_EXTERNAL is set, add
2877 (dwarf2out_global_decl): Don't skip Fortran global vars.
2878 (gen_decl_die): Likewise. Adjust declare_in_namespace callers.
2879 (dwarf2out_imported_module_or_decl): Add NAME and CHILD arguments.
2880 If NAME is non-NULL, add DW_AT_name. If CHILD is non-NULL, put
2881 DW_TAG_imported_declaration as child of previous
2882 DW_TAG_imported_module.
2883 * dbxout.c (dbx_debug_hooks, xcoff_debug_hooks): Adjust.
2884 * sdbout.c (sdb_debug_hooks): Likewise.
2885 * vmsdbgout.c (vmsdbg_debug_hooks): Likewise.
2887 2008-08-29 Jan Hubicka <jh@suse.cz>
2889 * cgraph.c (cgraph_remove_node): Do not remove nested nodes.
2891 * cgraph.h (cgraph_maybe_hot_edge_p): Declare.
2892 * ipa-cp.c (n_cloning_candidates): New static variable.
2893 (ipcp_print_profile_data, ipcp_function_scale_print): Forward declare.
2894 (ipcp_print_all_lattices): Improve debug output.
2895 (ipcp_cloning_candidate_p): New function.
2896 (ipcp_initialize_node_lattices): Use it.
2897 (ipcp_init_stage): Do only analyzis here; prettier debug output.
2898 (ipcp_propagate_stage): Prettier debug output.
2899 (ipcp_iterate_stage): Initialize latices here; prettier debug output.
2900 (ipcp_print_all_structures): Remove.
2901 (ipcp_need_redirect_p): Test !n_cloning_candidates.
2902 (ipcp_insert_stage): Prettier debug output; call
2903 cgraph_remove_unreachable_nodes before propagating.
2904 (pass_ipa_cp): Schedule function removal pass.
2905 * ipa-inline.c (inline_indirect_intraprocedural_analysis): Better
2907 (cgraph_maybe_hot_edge_p): Move to ...
2908 * predict.c (cgraph_maybe_hot_edge_p) ... here.
2909 * opts.c (flag_ipa_cp_set, flag_ipa_cp_clone_set): New.
2910 (common_handle_option): Set them; enable ipa-cp when profiling.
2911 * ipa-prop.c (ipa_print_node_jump_functions): Prettier output.
2912 (ipa_print_all_jump_functions): Likewise.
2913 (ipa_print_all_tree_maps, ipa_print_node_param_flags): Remove.
2914 (ipa_print_node_params, ipa_print_all_params): New.
2915 * ipa-prop.h (ipa_print_all_tree_maps, ipa_print_node_param_flags,
2916 ipa_print_all_param_flags): Remove.
2917 (ipa_print_node_params, ipa_print_all_params): New.
2919 2008-08-29 Bob Wilson <bob.wilson@acm.org>
2921 * config/xtensa/xtensa.c (xtensa_secondary_reload_class): Revert
2922 change from 2008-04-03.
2923 * config/xtensa/xtensa.h (IRA_COVER_CLASSES): Define.
2925 2008-08-29 Vladimir Makarov <vmakarov@redhat.com>
2928 * ira-color.c (push_allocnos_to_stack): Truncate
2929 removed_splay_allocno_vec.
2931 2008-08-29 Vladimir Makarov <vmakarov@redhat.com>
2934 * ira-color (ira_fast_allocation): Don't assign hard registers to
2937 2008-08-29 Jan Hubicka <jh@suse.cz>
2940 * predict.c (optimize_loop_nest_for_speed_p): Do not ICE
2941 for cold internal loops.
2943 2008-08-29 Richard Guenther <rguenther@suse.de>
2945 * tree-ssa-structalias.c (create_variable_info_for): Do not
2946 create fields for heap vars or vars with a noalias state.
2947 For NO_ALIAS_ANYTHING variables add a self-constraint, not one
2950 2008-08-29 Richard Guenther <rguenther@suse.de>
2952 * common.opt (ftree-store-ccp): Mark as preserved for
2953 backward compatibility.
2954 * doc/invoke.texi (-ftree-store-ccp): Remove documentation.
2955 * tree-pass.h (pass_store_ccp): Remove.
2956 * tree-ssa-propagate.h (struct prop_value_d): Remove mem_ref field.
2957 (first_vdef): Remove declaration.
2958 (get_value_loaded_by): Likewise.
2959 * tree-ssa-ccp.c (do_store_ccp): Remove.
2960 (get_default_value): Simplify as do_store_ccp is always false
2961 now. Do not initialize mem_ref.
2962 (set_value_varying): Likewise.
2963 (canonicalize_float_value): Likewise.
2964 (set_lattice_value): Likewise.
2965 (likely_value): Likewise.
2966 (surely_varying_stmt_p): Likewise.
2967 (ccp_initialize): Likewise.
2968 (ccp_lattice_meet): Likewise.
2969 (ccp_visit_phi_node): Likewise.
2970 (ccp_fold): Likewise.
2971 (evaluate_stmt): Likewise.
2972 (visit_assignment): Likewise.
2973 (ccp_visit_stmt): Likewise.
2974 (execute_ssa_ccp): Fold into ...
2975 (do_ssa_ccp): ... this.
2976 (do_ssa_store_ccp): Remove.
2977 (gate_store_ccp): Likewise.
2978 (pass_store_ccp): Likewise.
2979 * tree-ssa-copy.c (copy_prop_visit_phi_node): Do not
2981 * tree-ssa-propagate.c (first_vdef): Remove.
2982 (get_value_loaded_by): Likewise.
2983 (replace_vuses_in): Likewise.
2984 (substitute_and_fold): Do not call replace_vuses_in.
2985 * opts.c (decode_options): Do not set flag_tree_store_ccp.
2987 2008-08-29 Richard Guenther <rguenther@suse.de>
2990 * tree-ssa-structalias.c (intra_create_variable_infos): Mark
2991 PARAM_NOALIAS tags with is_heapvar.
2992 * tree-ssa-operands.c (access_can_touch_variable): Offset
2993 based tests do not apply for heapvars. Fix offset test.
2995 2008-08-29 Jan Hubicka <jh@suse.cz>
2997 * doc/invoke.texi (-fipa-cp): Enabled by default at -O2/-Os/-O3
2998 (-fipa-cp-clone): Enabled by default at -O3.
2999 * opts.c (decode_options): Enable ipa-cp at -O2, ipa-cp-clone at -O3;
3000 make ipa-cp-clone to imply ipa-cp; disable cloning at -Os.
3002 2008-08-29 Jan Hubicka <jh@suse.cz>
3004 * tree.c (build_function_type_skip_args,
3005 build_function_decl_skip_args): New functions.
3006 * tree.h (build_function_type_skip_args,
3007 build_function_decl_skip_args): Declare.
3008 * gimple.c (giple_copy_call_skip_args): New function.
3009 (giple_copy_call_skip_args): Declare.
3011 * cgraph.h (cgraph_function_versioning): Add skip_args arugmnet
3012 * ipa-cp.c (ipcp_node_not_modifiable_p): Rename to ...
3013 (ipcp_node_modifiable_p): ... this one; use
3014 tree_versionable_function_p.
3015 (ipcp_create_replace_map): Improve debug output.
3016 (ipcp_need_redirect_p): Return false when not clonning.
3017 (ipcp_update_callgraph): Skip args.
3018 (ipcp_insert_stage): UPdate call of !ipcp_node_modifiable_p;
3020 * cgraphunit.c (cgraph_function_versioning): Add skip_args argument.
3021 (save_inline_function_body): Update call of tree_function_versioning.
3022 * ipa-prop.c (ipa_edge_removal_hook): Do not ICE on unanalyzed nodes.
3023 * tree-inline.c (copy_arguments_for_versioning): Add skip_args
3025 (tree_function_versioning): Likewise.
3026 * tree-inline.h (tree_function_versioning): Update prototype.
3028 2008-08-29 Jan Hubicka <jh@suse.cz>
3030 * loop-unswitch.c (unswitch_single_loop): Use
3031 optimize_loop_for_speed_p.
3032 * tree-ssa-threadupdate.c (mark_threaded_blocks):
3033 Use optimize_function_for_size_p.
3034 * tracer.c (ignore_bb_p): Use optimize_bb_for_size_p.
3035 * postreload-gcse.c (eliminate_partially_redundant_load):
3036 Use optimize_bb_for_size_p.
3037 * value-prof.c (gimple_divmod_fixed_value_transform,
3038 gimple_mod_pow2_value_transform, gimple_mod_subtract_transform,
3039 gimple_stringops_transform): Use optimize_bb_for_size_p.
3040 * ipa-cp.c (ipcp_insert_stage): Use optimize_function_for_size_p.
3041 * final.c (compute_alignments): Use optimize_function_for_size_p.
3042 * builtins.c (fold_builtin_cabs): Use optimize_function_for_speed_p.
3043 (fold_builtin_strcpy, fold_builtin_fputs): Use
3044 optimize_function_for_size_p.
3045 * fold-const.c (tree_swap_operands_p): Use
3046 optimize_function_for_size_p.
3047 * recog.c (relax_delay_slots): Likewise.
3048 * tree-ssa-math-opts.c (replace_reciprocal):
3049 Use optimize_bb_for_speed_p.
3050 (execute_cse_reciprocals): Use optimize_bb_for_size_p.
3051 * ipa-inline.c (cgraph_decide_recursive_inlining): Use
3052 optimize_function_for_size_p.
3053 (cgraph_decide_inlining_of_small_function): Use
3054 optimize_function_for_size_p.
3055 * global.c (find_reg): Use optimize_function_for_size_p.
3056 * opts.c (decode_options): Do not clear flag_tree_ch,
3057 flag_inline_functions, flag_unswitch_loops, flag_unroll_loops,
3058 flag_unroll_all_loops and flag_prefetch_loop_arrays. Those can
3059 work it out from profile.
3060 * tree-ssa-loop-ivcanon.c (tree_unroll_loops_completely): Use
3061 optimize_loop_for_speed_p.
3062 * predict.c (optimize_bb_for_size_p, optimize_bb_for_speed_p):
3064 (optimize_loop_nest_for_size_p, optimize_loop_nest_for_speed_p): New.
3065 * tree-parloops.c (parallelize_loops): Use optimize_loop_for_size_p.
3066 * tree-eh.c (decide_copy_try_finally): Use
3067 optimize_function_for_size_p.
3068 * local-alloc.c (block_alloc): Pass BB pointer.
3069 (find_free_reg): Add BB pointer, use optimize_bb_for_size_p.
3070 * gcse.c (gcse_main): Use optimize_function_for_size_p.
3071 * loop-unroll.c (decide_unrolling_and_peeling):
3072 Use optimize_loop_for_size_p.
3073 (decide_peel_completely): Likewise.
3074 * tree-vect-analyze.c (vect_mark_for_runtime_alias_test): Use
3075 optimize_loop_for_size_p.
3076 (vect_enhance_data_refs_alignment): Likewise.
3077 * tree-ssa-coalesce.c (coalesce_cost): Add optimize_for_size argument.
3078 (coalesce_cost_bb, coalesce_cost_edge, create_outofssa_var_map):
3080 * cfgcleanup.c (outgoing_edges_match): Use optimize_bb_for_speed_p.
3081 (try_crossjump_bb): Use optimize_bb_for_size_p.
3082 * tree-ssa-loop-prefetch.c (loop_prefetch_arrays): Use
3083 optimize_loop_for_speed_p.
3084 * bb-reorder.c (find_traces_1_round): Likewise.
3085 (copy_bb): Use optimize_bb_for_speed_p.
3086 (duplicate_computed_gotos): Likewise.
3087 * basic-block.h (optimize_loop_nest_for_size_p,
3088 optimize_loop_nest_for_speed_p): New.
3089 * stmt.c (expand_case): Use optimize_insn_for_size_p.
3091 2008-08-29 Tristan Gingold <gingold@adacore.com>
3093 * gcov.c (main): Call expandargv.
3095 2008-08-29 Jan Hubicka <jh@suse.cz>
3097 * tree-ssa-loop-ch.c (should_duplicate_loop_header_p): Check that loop
3099 * predict.c (optimize_bb_for_size_p, optimize_bb_for_speed_p):
3101 (optimize_loop_for_size_p, optimize_loop_for_speed_p): New functions.
3102 * basic-block.h (optimize_bb_for_size_p, optimize_bb_for_speed_p):
3104 (optimize_loop_for_size_p, optimize_loop_for_speed_p): Declare.
3106 2008-08-29 Jan Hubicka <jh@suse.cz>
3108 * tree-pass.h (pass_strip_predict_hints): Declare.
3109 * predict.c (strip_builtin_expect): Rename to ...
3110 (strip_predict_hints): ... this one; strip also GIMPLE_PREDICT.
3111 (tree_bb_level_predictions): Do not remove GIMPLE_PREDICT.
3112 (tree_estimate_probability): Do not strip builtin_expect.
3113 (pass_strip_predict_hints): New pass.
3114 * tree-inline.c (expand_call_inline): When inlining cold function,
3115 predict it as unlikely.
3116 * passes.c (init_optimization_passes): Add pass_strip_predict_hints.
3118 2008-08-29 Richard Guenther <rguenther@suse.de>
3120 PR tree-optimization/37207
3121 * tree-vrp.c (extract_range_from_binary_expr): Also try
3122 to constant fold if only one of the operands is a constant.
3124 2008-08-29 Nick Clifton <nickc@redhat.com>
3126 * config/m32r/m32r.h (LEGITIMATE_CONSTANT_P): Treat LABEL_REFs in
3127 the same way as SYMBOL_REFs.
3129 2008-08-28 Bob Wilson <bob.wilson@acm.org>
3131 * config/xtensa/xtensa.md (<u>mulsidi3): Use a temporary register.
3133 2008-08-28 Adam Nemet <anemet@caviumnetworks.com>
3135 * config/mips/mips.h (ISA_HAS_BBIT): New macro.
3136 * config/mips/mips.md (branch_likely): Remove const. Fix
3138 (define_delay for type "branch"): Change to only apply for branch
3139 with likely variant.
3140 (define_delay for type "branch" and "branch_likely" no). New delay
3142 (equality_op): New code iterator.
3143 (bbv, bbinv): New code attributes.
3144 (*branch_bit<bbv><mode>, *branch_bit<bbv><mode>_inverted): New
3147 2008-08-28 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
3148 Andrew Pinski <pinskia@gcc.gnu.org>
3151 * c-common.c (verify_tree): Fix handling of ADDR_EXPR.
3153 2008-08-28 Paolo Carlini <paolo.carlini@oracle.com>
3155 * gtrh-posix.h: Fix uses of _POSIX_TIMEOUTS per the normal Posix
3156 rule that a symbolic constant must be defined and >= 0 for the
3157 corresponding facility to be present at compile-time.
3158 * gthr-posix.c: Likewise.
3160 2008-08-28 Adam Nemet <anemet@caviumnetworks.com>
3162 * config/mips/mips.h (ISA_HAS_DMUL3): New macro.
3163 * config/mips/mips.md (D): New mode attribute.
3164 (mulsi3, muldi3): Merge it into ...
3165 (mul<mode>3): ... new template. Use _mul3 ending for 3-op patterns.
3166 (muldi3_mul3): New pattern.
3167 (mulsi3_mult3): Rename to mulsi3_mul3.
3169 2008-08-28 Jan Hubicka <jh@suse.cz>
3171 * expmed.c (store_bit_field_1): Be prepared for movstrict expander
3173 * predict.c (always_optimize_for_size_p): Rename to ...
3174 (optimize_function_for_size): ... this one; make extern.
3175 (optimize_function_for_speed_p): New.
3176 (optimize_bb_for_size_p, optimize_bb_for_size_p,
3177 optimize_edge_for_size_p,optimize_edge_for_size_p,
3178 optimize_insn_for_size_p, optimize_insn_for_size_p): Update.
3179 * basic-block.h (optimize_function_for_size_p,
3180 optimize_function_for_speed_p): Declare.
3181 * i386.md (optimize_size checks): Replace them by appropriate
3183 (standard_80387_constant_p, ix86_compute_frame_layout,
3184 ix86_expand_epilogue, ix86_decompose_address,
3185 print_operand, emit_i387_cw_initialization,
3186 inline_memory_move_cost, ix86_pad_returns,
3187 ix86_reorg): Replace optimize_size checks.
3189 2008-08-28 Richard Sandiford <rdsandiford@googlemail.com>
3191 * rtl.h (simplify_subreg_regno): Declare.
3192 * rtlanal.c (simplify_subreg_regno): New function, split out from...
3193 * simplify-rtx.c (simplify_subreg): ...here.
3194 * reload.c (find_reloads): Use simplify_subreg_regno instead of
3195 subreg_offset_representable_p.
3197 2008-08-28 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
3200 * c-typeck.c (convert_for_assignment): Give a note describing what
3201 was passed and what was expected.
3203 2008-08-28 Joey Ye <joey.ye@intel.com>
3205 * doc/extend.texi: Document AVX built-in functions.
3206 * doc/invoke.texi: Document -mavx.
3208 2008-08-28 H.J. Lu <hongjiu.lu@intel.com>
3209 Joey Ye <joey.ye@intel.com>
3210 Xuepeng Guo <xuepeng.guo@intel.com>
3212 * config.gcc (extra_headers): Add gmmintrin.h for x86 and x86-64.
3214 * config/i386/cpuid.h (bit_FMA): New.
3215 (bit_XSAVE): Likewise.
3216 (bit_OSXSAVE): Likewise.
3217 (bit_AVX): Likewise.
3219 * config/i386/gas.h (ASM_OUTPUT_OPCODE): Undefine before
3220 define. Use ASM_OUTPUT_AVX_PREFIX.
3222 * config/i386/gmmintrin.h: New.
3224 * config/i386/i386.c (x86_64_reg_class): Add X86_64_AVX_CLASS.
3225 (OPTION_MASK_ISA_AVX_SET): New.
3226 (OPTION_MASK_ISA_FMA_SET): Likewise.
3227 (OPTION_MASK_ISA_AVX_UNSET): Likewise.
3228 (OPTION_MASK_ISA_FMA_SET): Likewise.
3229 (OPTION_MASK_ISA_SSE4_2_UNSET): Updated.
3230 (ix86_handle_option): Handle OPT_mavx and OPT_mfma.
3231 (pta_flags): Add PTA_AVX and PTA_FMA.
3232 (override_options): Handle PTA_AVX and PTA_FMA.
3233 (init_cumulative_args): Handle warn_avx.
3234 (classify_argument): Return 0 for COImode and OImode. Return
3235 1 and X86_64_AVX_CLASS for 256bit vector types.
3236 (examine_argument): Handle X86_64_AVX_CLASS.
3237 (construct_container): Likewise.
3238 (function_arg_advance_32): Pass OImode and 256bit vector types
3240 (function_arg_advance_64): Take a new argument to indicate if a
3241 parameter is named. Handle 256bit vector types. Return
3242 immediately for unnamed 256bit vector mode parameters.
3243 (function_arg_advance): Updated.
3244 (function_arg_32): Add comments for TImode. Handle OImode
3245 and 256bit vector types.
3246 (function_arg_64): Take a new argument to indicate if a
3247 parameter is named. Handle 256bit vector types. Return NULL
3248 for unnamed 256bit vector mode parameters.
3249 (function_arg): Updated.
3250 (setup_incoming_varargs_64): Support
3251 AVX encoding for *sse_prologue_save_insn.
3252 (ix86_gimplify_va_arg): Handle 256bit vector mode parameters.
3253 (standard_sse_constant_p): Return -2 for all 1s if SSE2 isn't
3254 enabled. For all 1s in 256bit vector modes, return 3 if AVX is
3255 enabled, otherwise return -3.
3256 (standard_sse_constant_opcode): Handle AVX and 256bit vector
3258 (print_reg): Support AVX registers. Handle 'x' and 't'.
3259 Handle 'd' to duplicate the operand.
3260 (print_operand): Likewise. Also support AVX vector compare
3262 (output_387_binary_op): Support AVX.
3263 (output_fp_compare): Likewise.
3264 (ix86_expand_vector_move_misalign): Likewise.
3265 (ix86_attr_length_vex_default): New.
3266 (ix86_builtins): Add IX86_BUILTIN_ADDPD256,
3267 IX86_BUILTIN_ADDPS256, IX86_BUILTIN_ADDSUBPD256,
3268 IX86_BUILTIN_ADDSUBPS256, IX86_BUILTIN_ANDPD256,
3269 IX86_BUILTIN_ANDPS256, IX86_BUILTIN_ANDNPD256,
3270 IX86_BUILTIN_ANDNPS256, IX86_BUILTIN_BLENDPD256,
3271 IX86_BUILTIN_BLENDPS256, IX86_BUILTIN_BLENDVPD256,
3272 IX86_BUILTIN_BLENDVPS256, IX86_BUILTIN_DIVPD256,
3273 IX86_BUILTIN_DIVPS256, IX86_BUILTIN_DPPS256,
3274 IX86_BUILTIN_HADDPD256, IX86_BUILTIN_HADDPS256,
3275 IX86_BUILTIN_HSUBPD256, IX86_BUILTIN_HSUBPS256,
3276 IX86_BUILTIN_MAXPD256, IX86_BUILTIN_MAXPS256,
3277 IX86_BUILTIN_MINPD256, IX86_BUILTIN_MINPS256,
3278 IX86_BUILTIN_MULPD256, IX86_BUILTIN_MULPS256,
3279 IX86_BUILTIN_ORPD256, IX86_BUILTIN_ORPS256,
3280 IX86_BUILTIN_SHUFPD256, IX86_BUILTIN_SHUFPS256,
3281 IX86_BUILTIN_SUBPD256, IX86_BUILTIN_SUBPS256,
3282 IX86_BUILTIN_XORPD256, IX86_BUILTIN_XORPS256,
3283 IX86_BUILTIN_CMPSD, IX86_BUILTIN_CMPSS, IX86_BUILTIN_CMPPD,
3284 IX86_BUILTIN_CMPPS, IX86_BUILTIN_CMPPD256,
3285 IX86_BUILTIN_CMPPS256, IX86_BUILTIN_CVTDQ2PD256,
3286 IX86_BUILTIN_CVTDQ2PS256, IX86_BUILTIN_CVTPD2PS256,
3287 IX86_BUILTIN_CVTPS2DQ256, IX86_BUILTIN_CVTPS2PD256,
3288 IX86_BUILTIN_CVTTPD2DQ256, IX86_BUILTIN_CVTPD2DQ256,
3289 IX86_BUILTIN_CVTTPS2DQ256, IX86_BUILTIN_EXTRACTF128PD256,
3290 IX86_BUILTIN_EXTRACTF128PS256, IX86_BUILTIN_EXTRACTF128SI256,
3291 IX86_BUILTIN_VZEROALL, IX86_BUILTIN_VZEROUPPER,
3292 IX86_BUILTIN_VZEROUPPER_REX64, IX86_BUILTIN_VPERMILVARPD,
3293 IX86_BUILTIN_VPERMILVARPS, IX86_BUILTIN_VPERMILVARPD256,
3294 IX86_BUILTIN_VPERMILVARPS256, IX86_BUILTIN_VPERMILPD,
3295 IX86_BUILTIN_VPERMILPS, IX86_BUILTIN_VPERMILPD256,
3296 IX86_BUILTIN_VPERMILPS256, IX86_BUILTIN_VPERMIL2PD,
3297 IX86_BUILTIN_VPERMIL2PS, IX86_BUILTIN_VPERMIL2PD256,
3298 IX86_BUILTIN_VPERMIL2PS256, IX86_BUILTIN_VPERM2F128PD256,
3299 IX86_BUILTIN_VPERM2F128PS256, IX86_BUILTIN_VPERM2F128SI256,
3300 IX86_BUILTIN_VBROADCASTSS, IX86_BUILTIN_VBROADCASTSD256,
3301 IX86_BUILTIN_VBROADCASTSS256, IX86_BUILTIN_VBROADCASTPD256,
3302 IX86_BUILTIN_VBROADCASTPS256, IX86_BUILTIN_VINSERTF128PD256,
3303 IX86_BUILTIN_VINSERTF128PS256, IX86_BUILTIN_VINSERTF128SI256,
3304 IX86_BUILTIN_LOADUPD256, IX86_BUILTIN_LOADUPS256,
3305 IX86_BUILTIN_STOREUPD256, IX86_BUILTIN_STOREUPS256,
3306 IX86_BUILTIN_LDDQU256, IX86_BUILTIN_LOADDQU256,
3307 IX86_BUILTIN_STOREDQU256, IX86_BUILTIN_MASKLOADPD,
3308 IX86_BUILTIN_MASKLOADPS, IX86_BUILTIN_MASKSTOREPD,
3309 IX86_BUILTIN_MASKSTOREPS, IX86_BUILTIN_MASKLOADPD256,
3310 IX86_BUILTIN_MASKLOADPS256, IX86_BUILTIN_MASKSTOREPD256,
3311 IX86_BUILTIN_MASKSTOREPS256, IX86_BUILTIN_MOVSHDUP256,
3312 IX86_BUILTIN_MOVSLDUP256, IX86_BUILTIN_MOVDDUP256,
3313 IX86_BUILTIN_SQRTPD256, IX86_BUILTIN_SQRTPS256,
3314 IX86_BUILTIN_SQRTPS_NR256, IX86_BUILTIN_RSQRTPS256,
3315 IX86_BUILTIN_RSQRTPS_NR256, IX86_BUILTIN_RCPPS256,
3316 IX86_BUILTIN_ROUNDPD256, IX86_BUILTIN_ROUNDPS256,
3317 IX86_BUILTIN_UNPCKHPD256, IX86_BUILTIN_UNPCKLPD256,
3318 IX86_BUILTIN_UNPCKHPS256, IX86_BUILTIN_UNPCKLPS256,
3319 IX86_BUILTIN_SI256_SI, IX86_BUILTIN_PS256_PS,
3320 IX86_BUILTIN_PD256_PD, IX86_BUILTIN_SI_SI256,
3321 IX86_BUILTIN_PS_PS256, IX86_BUILTIN_PD_PD256,
3322 IX86_BUILTIN_VTESTZPD, IX86_BUILTIN_VTESTCPD,
3323 IX86_BUILTIN_VTESTNZCPD, IX86_BUILTIN_VTESTZPS,
3324 IX86_BUILTIN_VTESTCPS, IX86_BUILTIN_VTESTNZCPS,
3325 IX86_BUILTIN_VTESTZPD256, IX86_BUILTIN_VTESTCPD256,
3326 IX86_BUILTIN_VTESTNZCPD256, IX86_BUILTIN_VTESTZPS256,
3327 IX86_BUILTIN_VTESTCPS256, IX86_BUILTIN_VTESTNZCPS256,
3328 IX86_BUILTIN_PTESTZ256, IX86_BUILTIN_PTESTC256,
3329 IX86_BUILTIN_PTESTNZC256, IX86_BUILTIN_MOVMSKPD256
3330 and IX86_BUILTIN_MOVMSKPS256,
3331 (ix86_special_builtin_type): Add V32QI_FTYPE_PCCHAR,
3332 V8SF_FTYPE_PCV4SF, V8SF_FTYPE_PCFLOAT, V4DF_FTYPE_PCV2DF,
3333 V4DF_FTYPE_PCDOUBLE, V8SF_FTYPE_PCV8SF_V8SF,
3334 V4DF_FTYPE_PCV4DF_V4DF, V4SF_FTYPE_PCV4SF_V4SF,
3335 V2DF_FTYPE_PCV2DF_V2DF, VOID_FTYPE_PCHAR_V32QI,
3336 VOID_FTYPE_PFLOAT_V8SF, VOID_FTYPE_PDOUBLE_V4DF,
3337 VOID_FTYPE_PV8SF_V8SF_V8SF, VOID_FTYPE_PV4DF_V4DF_V4DF,
3338 VOID_FTYPE_PV4SF_V4SF_V4SF and VOID_FTYPE_PV2DF_V2DF_V2DF,
3339 (ix86_builtin_type): Add INT_FTYPE_V8SF_V8SF_PTEST,
3340 INT_FTYPE_V4DI_V4DI_PTEST, INT_FTYPE_V4DF_V4DF_PTEST,
3341 INT_FTYPE_V4SF_V4SF_PTEST, INT_FTYPE_V2DF_V2DF_PTEST,
3342 INT_FTYPE_V8SF, INT_FTYPE_V4DF, V8SI_FTYPE_V8SF, V8SI_FTYPE_V4SI,
3343 V8SF_FTYPE_V8SF, V8SF_FTYPE_V8SI, V8SF_FTYPE_V4SF,
3344 V4SI_FTYPE_V8SI, V4SI_FTYPE_V4DF, V4DF_FTYPE_V4DF,
3345 V4DF_FTYPE_V4SI, V4DF_FTYPE_V4SF, V4DF_FTYPE_V2DF,
3346 V4SF_FTYPE_V4DF, V4SF_FTYPE_V8SF, V2DF_FTYPE_V4DF,
3347 V8SF_FTYPE_V8SF_V8SF, V8SF_FTYPE_V8SF_V8SI,
3348 V4DF_FTYPE_V4DF_V4DF, V4DF_FTYPE_V4DF_V4DI,
3349 V4SF_FTYPE_V4SF_V4SI, V2DF_FTYPE_V2DF_V2DI,
3350 V8SF_FTYPE_V8SF_INT, V4SI_FTYPE_V8SI_INT, V4SF_FTYPE_V8SF_INT,
3351 V2DF_FTYPE_V4DF_INT, V4DF_FTYPE_V4DF_INT,
3352 V8SF_FTYPE_V8SF_V8SF_V8SF, V4DF_FTYPE_V4DF_V4DF_V4DF,
3353 V8SI_FTYPE_V8SI_V8SI_INT, V8SF_FTYPE_V8SF_V8SF_INT,
3354 V4DF_FTYPE_V4DF_V4DF_INT, V4DF_FTYPE_V4DF_V2DF_INT,
3355 V8SF_FTYPE_V8SF_V8SF_V8SI_INT, V4DF_FTYPE_V4DF_V4DF_V4DI_INT,
3356 V4SF_FTYPE_V4SF_V4SF_V4SI_INT and V2DF_FTYPE_V2DF_V2DF_V2DI_INT.
3357 (bdesc_special_args): Add IX86_BUILTIN_VZEROALL,
3358 IX86_BUILTIN_VZEROUPPER. IX86_BUILTIN_VZEROUPPER_REX64,
3359 IX86_BUILTIN_VBROADCASTSS, IX86_BUILTIN_VBROADCASTSD256,
3360 IX86_BUILTIN_VBROADCASTSS256, IX86_BUILTIN_VBROADCASTPD256,
3361 IX86_BUILTIN_VBROADCASTPS256, IX86_BUILTIN_LOADUPD256,
3362 IX86_BUILTIN_LOADUPS256, IX86_BUILTIN_STOREUPD256,
3363 IX86_BUILTIN_STOREUPS256, IX86_BUILTIN_LOADDQU256,
3364 IX86_BUILTIN_STOREDQU256, IX86_BUILTIN_LDDQU256,
3365 IX86_BUILTIN_MASKLOADPD, IX86_BUILTIN_MASKLOADPS,
3366 IX86_BUILTIN_MASKLOADPD256, IX86_BUILTIN_MASKLOADPS256,
3367 IX86_BUILTIN_MASKSTOREPD, IX86_BUILTIN_MASKSTOREPS,
3368 IX86_BUILTIN_MASKSTOREPD256 and IX86_BUILTIN_MASKSTOREPS256.
3369 (ix86_builtins): Add IX86_BUILTIN_ADDPD256,
3370 IX86_BUILTIN_ADDPS256, IX86_BUILTIN_ADDSUBPD256,
3371 IX86_BUILTIN_ADDSUBPS256, IX86_BUILTIN_ANDPD256,
3372 IX86_BUILTIN_ANDPS256, IX86_BUILTIN_ANDNPD256,
3373 IX86_BUILTIN_ANDNPS256, IX86_BUILTIN_DIVPD256,
3374 IX86_BUILTIN_DIVPS256, IX86_BUILTIN_HADDPD256,
3375 IX86_BUILTIN_HSUBPS256, IX86_BUILTIN_HSUBPD256,
3376 IX86_BUILTIN_HADDPS256, IX86_BUILTIN_MAXPD256,
3377 IX86_BUILTIN_MAXPS256, IX86_BUILTIN_MINPD256,
3378 IX86_BUILTIN_MINPS256, IX86_BUILTIN_MULPD256,
3379 IX86_BUILTIN_MULPS256, IX86_BUILTIN_ORPD256,
3380 IX86_BUILTIN_ORPS256, IX86_BUILTIN_SUBPD256,
3381 IX86_BUILTIN_SUBPS256, IX86_BUILTIN_XORPD256,
3382 IX86_BUILTIN_XORPS256, IX86_BUILTIN_VPERMILVARPD,
3383 IX86_BUILTIN_VPERMILVARPS, IX86_BUILTIN_VPERMILVARPD256,
3384 IX86_BUILTIN_VPERMILVARPS256, IX86_BUILTIN_BLENDPD256,
3385 IX86_BUILTIN_BLENDPS256, IX86_BUILTIN_BLENDVPD256,
3386 IX86_BUILTIN_BLENDVPS256, IX86_BUILTIN_DPPS256,
3387 IX86_BUILTIN_SHUFPD256, IX86_BUILTIN_SHUFPS256,
3388 IX86_BUILTIN_CMPSD, IX86_BUILTIN_CMPSS, IX86_BUILTIN_CMPPD,
3390 IX86_BUILTIN_CMPPD256,IX86_BUILTIN_CMPPS256,
3391 IX86_BUILTIN_EXTRACTF128PD256, IX86_BUILTIN_EXTRACTF128PS256,
3392 IX86_BUILTIN_EXTRACTF128SI256, IX86_BUILTIN_CVTDQ2PD256,
3393 IX86_BUILTIN_CVTDQ2PS256, IX86_BUILTIN_CVTPD2PS256,
3394 IX86_BUILTIN_CVTPS2DQ256, IX86_BUILTIN_CVTPS2PD256,
3395 IX86_BUILTIN_CVTTPD2DQ256, IX86_BUILTIN_CVTPD2DQ256,
3396 IX86_BUILTIN_CVTTPS2DQ256, IX86_BUILTIN_VPERM2F128PD256,
3397 IX86_BUILTIN_VPERM2F128PS256, IX86_BUILTIN_VPERM2F128SI256,
3398 IX86_BUILTIN_VPERMILPD, IX86_BUILTIN_VPERMILPS,
3399 IX86_BUILTIN_VPERMILPD256, IX86_BUILTIN_VPERMILPS256,
3400 IX86_BUILTIN_VPERMIL2PD, IX86_BUILTIN_VPERMILPS,
3401 IX86_BUILTIN_VPERMILPD256, IX86_BUILTIN_VPERMILPS256,
3402 IX86_BUILTIN_VPERMIL2PD, IX86_BUILTIN_VPERMIL2PS,
3403 IX86_BUILTIN_VPERMIL2PD256, IX86_BUILTIN_VPERMIL2PS256,
3404 IX86_BUILTIN_VINSERTF128PD256, IX86_BUILTIN_VINSERTF128PS256,
3405 IX86_BUILTIN_VINSERTF128SI256, IX86_BUILTIN_MOVSHDUP256,
3406 IX86_BUILTIN_MOVSLDUP256, IX86_BUILTIN_MOVDDUP256,
3407 IX86_BUILTIN_SQRTPD256, IX86_BUILTIN_SQRTPS256,
3408 IX86_BUILTIN_SQRTPS_NR256, IX86_BUILTIN_RSQRTPS256,
3409 IX86_BUILTIN_RSQRTPS_NR256, IX86_BUILTIN_RCPPS256,
3410 IX86_BUILTIN_ROUNDPD256, IX86_BUILTIN_ROUNDPS256,
3411 IX86_BUILTIN_UNPCKHPD256, IX86_BUILTIN_UNPCKLPD256,
3412 IX86_BUILTIN_UNPCKHPS256, IX86_BUILTIN_UNPCKLPS256,
3413 IX86_BUILTIN_SI256_SI, IX86_BUILTIN_PS256_PS,
3414 IX86_BUILTIN_PD256_PD, IX86_BUILTIN_SI_SI256,
3415 IX86_BUILTIN_PS_PS256, IX86_BUILTIN_PD_PD256,
3416 IX86_BUILTIN_VTESTZPD, IX86_BUILTIN_VTESTCPD,
3417 IX86_BUILTIN_VTESTNZCPD, IX86_BUILTIN_VTESTZPS,
3418 IX86_BUILTIN_VTESTCPS, IX86_BUILTIN_VTESTNZCPS,
3419 IX86_BUILTIN_VTESTZPD256, IX86_BUILTIN_VTESTCPD256,
3420 IX86_BUILTIN_VTESTNZCPD256, IX86_BUILTIN_VTESTZPS256,
3421 IX86_BUILTIN_VTESTCPS256, IX86_BUILTIN_VTESTNZCPS256,
3422 IX86_BUILTIN_PTESTZ256, IX86_BUILTIN_PTESTC256,
3423 IX86_BUILTIN_PTESTNZC256, IX86_BUILTIN_MOVMSKPD256 and
3424 IX86_BUILTIN_MOVMSKPS256.
3425 (ix86_init_mmx_sse_builtins): Support AVX builtins.
3426 (ix86_expand_args_builtin): Likewise.
3427 (ix86_expand_special_args_builtin): Likewise.
3428 (ix86_hard_regno_mode_ok): Handle AVX modes.
3429 (ix86_expand_vector_init_duplicate): Likewise.
3430 (ix86_expand_vector_init_one_nonzero): Likewise.
3431 (ix86_expand_vector_init_one_var): Likewise.
3432 (ix86_expand_vector_init_concat): Likewise.
3433 (ix86_expand_vector_init_general): Likewise.
3434 (ix86_expand_vector_set): Likewise.
3435 (ix86_vector_mode_supported_p): Likewise.
3436 (x86_extended_reg_mentioned_p): Check INSN_P before using
3439 * config/i386/i386-c.c (ix86_target_macros_internal): Handle
3440 OPTION_MASK_ISA_AVX and OPTION_MASK_ISA_FMA.
3442 * config/i386/i386.h (TARGET_AVX): New.
3443 (TARGET_FMA): Likewise.
3444 (TARGET_CPU_CPP_BUILTINS): Handle TARGET_AVX and TARGET_FMA.
3445 (BIGGEST_ALIGNMENT): Set to 256 for TARGET_AVX.
3446 (VALID_AVX256_REG_MODE): New.
3447 (AVX256_VEC_FLOAT_MODE_P): Likewise.
3448 (AVX_FLOAT_MODE_P): Likewise.
3449 (AVX128_VEC_FLOAT_MODE_P): Likewise.
3450 (AVX256_VEC_FLOAT_MODE_P): Likewise.
3451 (AVX_VEC_FLOAT_MODE_P): Likewise.
3452 (ASM_OUTPUT_AVX_PREFIX): Likewise.
3453 (ASM_OUTPUT_OPCODE): Likewise.
3454 (UNITS_PER_SIMD_WORD): Add a FIXME for 32byte vectorizer
3456 (SSE_REG_MODE_P): Allow 256bit vector modes.
3457 (ix86_args): Add a warn_avx field.
3459 * config/i386/i386.md (UNSPEC_PCMP): New.
3460 (UNSPEC_VPERMIL): Likewise.
3461 (UNSPEC_VPERMIL2): Likewise.
3462 (UNSPEC_VPERMIL2F128): Likewise.
3463 (UNSPEC_MASKLOAD): Likewise.
3464 (UNSPEC_MASKSTORE): Likewise.
3465 (UNSPEC_CAST): Likewise.
3466 (UNSPEC_VTESTP): Likewise.
3467 (UNSPECV_VZEROALL): Likewise.
3468 (UNSPECV_VZEROUPPER): Likewise.
3469 (XMM0_REG): Likewise.
3470 (XMM1_REG): Likewise.
3471 (XMM2_REG): Likewise.
3472 (XMM3_REG): Likewise.
3473 (XMM4_REG): Likewise.
3474 (XMM5_REG): Likewise.
3475 (XMM6_REG): Likewise.
3476 (XMM8_REG): Likewise.
3477 (XMM9_REG): Likewise.
3478 (XMM10_REG): Likewise.
3479 (XMM11_REG): Likewise.
3480 (XMM12_REG): Likewise.
3481 (XMM13_REG): Likewise.
3482 (XMM14_REG): Likewise.
3483 (XMM15_REG): Likewise.
3485 (prefix_vex_imm8): Likewise.
3486 (prefix_vex_w): Likewise.
3487 (length_vex): Likewise.
3490 (*avx_ashlti3): Likewise.
3491 (*avx_lshrti3): Likewise.
3492 (*avx_setcc<mode>): Likewise.
3493 (*fop_<mode>_comm_mixed_avx): Likewise.
3494 (*fop_<mode>_comm_avx): Likewise.
3495 (*fop_<mode>_1_mixed_avx): Likewise.
3496 (*fop_<mode>_1_avx): Likewise.
3497 (*avx_<code><mode>3): Likewise.
3498 (*avx_ieee_smin<mode>3): Likewise.
3499 (*avx_ieee_smax<mode>3): Likewise.
3500 (mode): Add OI, V8SF and V4DF.
3501 (length): Support VEX prefix.
3502 (*cmpfp_i_mixed): Set prefix attribute.
3503 (*cmpfp_i_sse): Likewise.
3504 (*cmpfp_iu_mixed): Likewise.
3505 (*cmpfp_iu_sse): Likewise.
3506 (*movsi_1): Support AVX.
3507 (*movdi_2): Likewise.
3508 (*movdi_1_rex64): Likewise.
3509 (*movti_internal): Likewise.
3510 (*movti_rex64): Likewise.
3511 (*movsf_1): Likewise.
3512 (*movdf_nointeger): Likewise.
3513 (*movdf_integer_rex64): Likewise.
3514 (*movtf_internal): Likewise.
3515 (zero_extendsidi2_32): Likewise.
3516 (zero_extendsidi2_rex64): Likewise.
3517 (*extendsfdf2_mixed): Likewise.
3518 (*extendsfdf2_sse): Likewise.
3519 (*truncdfsf_fast_mixed): Likewise.
3520 (*truncdfsf_fast_sse): Likewise.
3521 (*truncdfsf_mixed): Likewise.
3522 (fix_trunc<mode>di_sse): Likewise.
3523 (fix_trunc<mode>si_sse): Likewise.
3524 (*float<SSEMODEI24:mode><MODEF:mode>2_mixed_interunit): Likewise.
3525 (*float<SSEMODEI24:mode><MODEF:mode>2_mixed_nointerunit): Likewise.
3526 (*float<SSEMODEI24:mode><MODEF:mode>2_sse_interunit): Likewise.
3527 (*float<SSEMODEI24:mode><MODEF:mode>2_sse_nointerunit): Likewise.
3528 (*rcpsf2_sse): Likewise.
3529 (*rsqrtsf2_sse): Likewise.
3530 (*sqrt<mode>2_sse): Likewise.
3531 (sse4_1_round<mode>2): Likewise.
3532 (*sse_prologue_save_insn): Disallow REX prefix for AVX.
3533 Support AVX. Set length attribute properly for AVX.
3535 * config/i386/i386-modes.def (VECTOR_MODES (INT, 32)): New.
3536 (VECTOR_MODES (FLOAT, 32)): Likewise.
3537 (VECTOR_MODE (INT, DI, 8)): Likewise.
3538 (VECTOR_MODE (INT, HI, 32)): Likewise.
3539 (VECTOR_MODE (INT, QI, 64)): Likewise.
3540 (VECTOR_MODE (FLOAT, DF, 8)): Likewise.
3541 (VECTOR_MODE (FLOAT, SF, 16)): Likewise.
3542 (VECTOR_MODE (INT, DI, 4)): Removed.
3543 (VECTOR_MODE (INT, SI, 8)): Likewise.
3544 (VECTOR_MODE (INT, HI, 16)): Likewise.
3545 (VECTOR_MODE (INT, QI, 32)): Likewise.
3546 (VECTOR_MODE (FLOAT, SF, 8)): Likewise.
3547 (INT_MODE (OI, 32)): Likewise.
3549 * config/i386/i386.opt (mavx): New.
3552 * config/i386/i386-protos.h (ix86_attr_length_vex_default): New.
3554 * config/i386/mmx.md (*mov<mode>_internal_rex64): Support AVX.
3555 (*mov<mode>_internal_avx): New.
3556 (*movv2sf_internal_rex64_avx): Likewise.
3557 (*movv2sf_internal_avx): Likewise.
3559 * config/i386/predicates.md (const_4_to_5_operand): New.
3560 (const_6_to_7_operand): Likewise.
3561 (const_8_to_11_operand): Likewise.
3562 (const_12_to_15_operand): Likewise.
3563 (avx_comparison_float_operator): Likewise.
3565 * config/i386/sse.md (AVX256MODEI): New.
3566 (AVX256MODE): Likewise.
3567 (AVXMODEQI): Likewise.
3568 (AVXMODE): Likewise.
3569 (AVX256MODEF2P): Likewise.
3570 (AVX256MODE2P): Likewise.
3571 (AVX256MODE4P): Likewise.
3572 (AVX256MODE8P): Likewise.
3573 (AVXMODEF2P): Likewise.
3574 (AVXMODEF4P): Likewise.
3575 (AVXMODEDCVTDQ2PS): Likewise.
3576 (AVXMODEDCVTPS2DQ): Likewise.
3577 (avxvecmode): Likewise.
3578 (avxvecpsmode): Likewise.
3579 (avxhalfvecmode): Likewise.
3580 (avxscalarmode): Likewise.
3581 (avxcvtvecmode): Likewise.
3582 (avxpermvecmode): Likewise.
3583 (avxmodesuffixf2c): Likewise.
3584 (avxmodesuffixp): Likewise.
3585 (avxmodesuffixs): Likewise.
3586 (avxmodesuffix): Likewise.
3587 (vpermilbits): Likewise.
3588 (pinsrbits): Likewise.
3589 (mov<mode>): Likewise.
3590 (*mov<mode>_internal): Likewise.
3591 (push<mode>1): Likewise.
3592 (movmisalign<mode>): Likewise.
3593 (avx_movup<avxmodesuffixf2c><avxmodesuffix>): Likewise.
3594 (avx_movdqu<avxmodesuffix>): Likewise.
3595 (avx_lddqu<avxmodesuffix>): Likewise.
3596 (<plusminus_insn><mode>3): Likewise.
3597 (*avx_<plusminus_insn><mode>3): Likewise.
3598 (*avx_vm<plusminus_insn><mode>3): Likewise.
3599 (mul<mode>3): Likewise.
3600 (*avx_mul<mode>3): Likewise.
3601 (*avx_vmmul<mode>3): Likewise.
3602 (divv8sf3): Likewise.
3603 (divv4df3): Likewise.
3604 (avx_div<mode>3): Likewise.
3605 (*avx_div<mode>3): Likewise.
3606 (*avx_vmdiv<mode>3): Likewise.
3607 (avx_rcpv8sf2): Likewise.
3608 (*avx_vmrcpv4sf2): Likewise.
3609 (sqrtv8sf2): Likewise.
3610 (avx_sqrtv8sf2): Likewise.
3611 (*avx_vmsqrt<mode>2): Likewise.
3612 (rsqrtv8sf2): Likewise.
3613 (avx_rsqrtv8sf2): Likewise.
3614 (*avx_vmrsqrtv4sf2): Likewise.
3615 (<code><mode>3): Likewise.
3616 (*avx_<code><mode>3_finite): Likewise.
3617 (*avx_<code><mode>3): Likewise.
3618 (*avx_vm<code><mode>3): Likewise.
3619 (*avx_ieee_smin<mode>3): Likewise.
3620 (*avx_ieee_smax<mode>3): Likewise.
3621 (avx_addsubv8sf3): Likewise.
3622 (avx_addsubv4df3): Likewise.
3623 (*avx_addsubv4sf3): Likewise.
3624 (*avx_addsubv2df3): Likewise.
3625 (avx_h<plusminus_insn>v4df3): Likewise.
3626 (avx_h<plusminus_insn>v8sf3): Likewise.
3627 (*avx_h<plusminus_insn>v4sf3): Likewise.
3628 (*avx_h<plusminus_insn>v2df3): Likewise.
3629 (avx_cmpp<avxmodesuffixf2c><mode>3): Likewise.
3630 (avx_cmps<ssemodesuffixf2c><mode>3): Likewise.
3631 (*avx_maskcmp<mode>3): Likewise.
3632 (avx_nand<mode>3): Likewise.
3633 (*avx_<code><mode>3): Likewise.
3634 (*avx_nand<mode>3): Likewise.
3635 (*avx_<code><mode>3): Likewise.
3636 (*avx_cvtsi2ss): Likewise.
3637 (*avx_cvtsi2ssq): Likewise.
3638 (*avx_cvtsi2sd): Likewise.
3639 (*avx_cvtsi2sdq): Likewise.
3640 (*avx_cvtsd2ss): Likewise.
3641 (avx_cvtss2sd): Likewise.
3642 (avx_cvtdq2ps<avxmodesuffix>): Likewise.
3643 (avx_cvtps2dq<avxmodesuffix>): Likewise.
3644 (avx_cvttps2dq<avxmodesuffix>): Likewise.
3645 (*avx_cvtsi2sd): Likewise.
3646 (*avx_cvtsi2sdq): Likewise.
3647 (avx_cvtdq2pd256): Likewise.
3648 (avx_cvtpd2dq256): Likewise.
3649 (avx_cvttpd2dq256): Likewise.
3650 (*avx_cvtsd2ss): Likewise.
3651 (*avx_cvtss2sd): Likewise.
3652 (avx_cvtpd2ps256): Likewise.
3653 (avx_cvtps2pd256): Likewise.
3654 (*avx_movhlps): Likewise.
3655 (*avx_movlhps): Likewise.
3656 (avx_unpckhps256): Likewise.
3657 (*avx_unpckhps): Likewise.
3658 (avx_unpcklps256): Likewise.
3659 (*avx_unpcklps): Likewise.
3660 (avx_movshdup256): Likewise.
3661 (avx_movsldup256): Likewise.
3662 (avx_shufps256): Likewise.
3663 (avx_shufps256_1): Likewise.
3664 (*avx_shufps_<mode>): Likewise.
3665 (*avx_loadhps): Likewise.
3666 (*avx_storelps): Likewise.
3667 (*avx_loadlps): Likewise.
3668 (*avx_movss): Likewise.
3669 (*vec_dupv4sf_avx): Likewise.
3670 (*vec_concatv2sf_avx): Likewise.
3671 (*vec_concatv4sf_avx): Likewise.
3672 (*vec_setv4sf_0_avx): Likewise.
3673 (*vec_setv4sf_avx): Likewise.
3674 (*avx_insertps): Likewise.
3675 (avx_vextractf128<mode>): Likewise.
3676 (vec_extract_lo_<mode>): Likewise.
3677 (vec_extract_hi_<mode>): Likewise.
3678 (vec_extract_lo_<mode>): Likewise.
3679 (vec_extract_hi_<mode>): Likewise.
3680 (vec_extract_lo_v16hi): Likewise.
3681 (vec_extract_hi_v16hi): Likewise.
3682 (vec_extract_lo_v32qi): Likewise.
3683 (vec_extract_hi_v32qi): Likewise.
3684 (avx_unpckhpd256): Likewise.
3685 (*avx_unpckhpd): Likewise.
3686 (avx_movddup256): Likewise.
3687 (*avx_movddup): Likewise.
3688 (avx_unpcklpd256): Likewise.
3689 (*avx_unpcklpd): Likewise.
3690 (avx_shufpd256): Likewise.
3691 (avx_shufpd256_1): Likewise.
3692 (*avx_punpckhqdq): Likewise.
3693 (*avx_punpcklqdq): Likewise.
3694 (*avx_shufpd_<mode>): Likewise.
3695 (*avx_storehpd): Likewise.
3696 (*avx_loadhpd): Likewise.
3697 (*avx_loadlpd): Likewise.
3698 (*avx_movsd): Likewise.
3699 (*vec_concatv2df_avx): Likewise.
3700 (*avx_<plusminus_insn><mode>3): Likewise.
3701 (*avx_<plusminus_insn><mode>3): Likewise.
3702 (*avx_mulv8hi3): Likewise.
3703 (*avxv8hi3_highpart): Likewise.
3704 (*avx_umulv8hi3_highpart): Likewise.
3705 (*avx_umulv2siv2di3): Likewise.
3706 (*avx_mulv2siv2di3): Likewise.
3707 (*avx_pmaddwd): Likewise.
3708 (*avx_mulv4si3): Likewise.
3709 (*avx_ashr<mode>3): Likewise.
3710 (*avx_lshr<mode>3): Likewise.
3711 (*avx_ashl<mode>3): Likewise.
3712 (*avx_<code><mode>3): Likewise.
3713 (*avx_eq<mode>3): Likewise.
3714 (*avx_gt<mode>3): Likewise.
3715 (*avx_nand<mode>3): Likewise.
3716 (*avx_nand<mode>3): Likewise.
3717 (*avx_<code><mode>3): Likewise.
3718 (*avx_<code><mode>3): Likewise.
3719 (*avx_packsswb): Likewise.
3720 (*avx_packssdw): Likewise.
3721 (*avx_packuswb): Likewise.
3722 (*avx_punpckhbw): Likewise.
3723 (*avx_punpcklbw): Likewise.
3724 (*avx_punpckhwd): Likewise.
3725 (*avx_punpcklwd): Likewise.
3726 (*avx_punpckhdq): Likewise.
3727 (*avx_punpckldq): Likewise.
3728 (*avx_pinsr<avxmodesuffixs>): Likewise.
3729 (*avx_pinsrq): Likewise.
3730 (*avx_loadld): Likewise.
3731 (*vec_extractv2di_1_rex64_avx): Likewise.
3732 (*vec_extractv2di_1_avx): Likewise.
3733 (*vec_dupv2di_avx): Likewise.
3734 (*vec_concatv2si_avx): Likewise.
3735 (*vec_concatv4si_1_avx): Likewise.
3736 (*vec_concatv2di_avx): Likewise.
3737 (*vec_concatv2di_rex64_avx): Likewise.
3738 (*avx_uavgv16qi3): Likewise.
3739 (*avx_uavgv8hi3): Likewise.
3740 (*avx_psadbw): Likewise.
3741 (avx_movmskp<avxmodesuffixf2c>256): Likewise.
3742 (*avx_phaddwv8hi3): Likewise.
3743 (*avx_phadddv4si3): Likewise.
3744 (*avx_phaddswv8hi3): Likewise.
3745 (*avx_phsubwv8hi3): Likewise.
3746 (*avx_phsubdv4si3): Likewise.
3747 (*avx_phsubswv8hi3): Likewise.
3748 (*avx_pmaddubsw128): Likewise.
3749 (*avx_pmulhrswv8hi3): Likewise.
3750 (*avx_pshufbv16qi3): Likewise.
3751 (*avx_psign<mode>3): Likewise.
3752 (*avx_palignrti): Likewise.
3753 (avx_blendp<avxmodesuffixf2c><avxmodesuffix>): Likewise.
3754 (avx_blendvp<avxmodesuffixf2c><avxmodesuffix>): Likewise.
3755 (avx_dpp<avxmodesuffixf2c><avxmodesuffix>): Likewise.
3756 (*avx_mpsadbw): Likewise.
3757 (*avx_packusdw): Likewise.
3758 (*avx_pblendvb): Likewise.
3759 (*avx_pblendw): Likewise.
3760 (avx_vtestp<avxmodesuffixf2c><avxmodesuffix>): Likewise.
3761 (avx_ptest256): Likewise.
3762 (avx_roundp<avxmodesuffixf2c>256): Likewise.
3763 (*avx_rounds<ssemodesuffixf2c>): Likewise.
3764 (*avx_aesenc): Likewise.
3765 (*avx_aesenclast): Likewise.
3766 (*avx_aesdec): Likewise.
3767 (*avx_aesdeclast): Likewise.
3768 (avx_vzeroupper): Likewise.
3769 (avx_vzeroupper_rex64): Likewise.
3770 (avx_vpermil<mode>): Likewise.
3771 (avx_vpermilvar<mode>3): Likewise.
3772 (avx_vpermil2<mode>3): Likewise.
3773 (avx_vperm2f128<mode>3): Likewise.
3774 (avx_vbroadcasts<avxmodesuffixf2c><avxmodesuffix>): Likewise.
3775 (avx_vbroadcastss256): Likewise.
3776 (avx_vbroadcastf128_p<avxmodesuffixf2c>256): Likewise.
3777 (avx_vinsertf128<mode>): Likewise.
3778 (vec_set_lo_<mode>): Likewise.
3779 (vec_set_hi_<mode>): Likewise.
3780 (vec_set_lo_<mode>): Likewise.
3781 (vec_set_hi_<mode>): Likewise.
3782 (vec_set_lo_v16hi): Likewise.
3783 (vec_set_hi_v16hi): Likewise.
3784 (vec_set_lo_v32qi): Likewise.
3785 (vec_set_hi_v32qi): Likewise.
3786 (avx_maskloadp<avxmodesuffixf2c><avxmodesuffix>): Likewise.
3787 (avx_maskstorep<avxmodesuffixf2c><avxmodesuffix>): Likewise.
3788 (avx_<avxmodesuffixp><avxmodesuffix>_<avxmodesuffixp>): Likewise.
3789 (avx_<avxmodesuffixp>_<avxmodesuffixp><avxmodesuffix>): Likewise.
3790 (vec_init<mode>): Likewise.
3791 (*vec_concat<mode>_avx): Likewise.
3792 (blendbits): Support V8SF and V4DF.
3793 (sse2_movq128): Support AVX.
3794 (<sse>_movnt<mode>): Likewise.
3795 (sse2_movntv2di): Likewise.
3796 (sse_rcpv4sf2): Likewise.
3797 (sse_sqrtv4sf2): Likewise.
3798 (sse_rsqrtv4sf2): Likewise.
3799 (<sse>_comi): Likewise.
3800 (<sse>_ucomi): Likewise.
3801 (sse_cvtss2si): Likewise.
3802 (sse_cvtss2si_2): Likewise.
3803 (sse_cvtss2siq): Likewise.
3804 (sse_cvtss2siq_2): Likewise.
3805 (sse_cvttss2si): Likewise.
3806 (sse_cvttss2siq): Likewise.
3807 (sse2_cvtsd2si): Likewise.
3808 (sse2_cvtsd2si_2): Likewise.
3809 (sse2_cvtsd2siq): Likewise.
3810 (sse2_cvtsd2siq_2): Likewise.
3811 (sse2_cvttsd2si): Likewise.
3812 (sse2_cvttsd2siq): Likewise.
3813 (sse2_cvtdq2pd): Likewise.
3814 (*sse2_cvtpd2dq): Likewise.
3815 (*sse2_cvttpd2dq): Likewise.
3816 (*sse2_cvtpd2ps): Likewise.
3817 (sse2_cvtps2pd): Likewise.
3818 (sse3_movshdup): Likewise.
3819 (sse3_movsldup): Likewise.
3820 (sse_storehps): Likewise.
3821 (*sse4_1_extractps): Likewise.
3822 (sse2_storelpd): Likewise.
3823 (vec_dupv2df_sse3): Likewise.
3824 (*vec_concatv2df_sse3): Likewise.
3825 (*sse4_1_pextrb): Likewise.
3826 (*sse4_1_pextrb_memory): Likewise.
3827 (*sse2_pextrw): Likewise.
3828 (*sse4_1_pextrw_memory): Likewise.
3829 (*sse4_1_pextrd): Likewise.
3830 (*sse4_1_pextrq): Likewise.
3831 (sse2_pshufd_1): Likewise.
3832 (sse2_pshuflw_1): Likewise.
3833 (sse2_pshufhw_1): Likewise.
3834 (*sse2_storeq_rex64): Likewise.
3835 (*vec_dupv4si): Likewise.
3836 (<sse>_movmskp<ssemodesuffixf2c>): Likewise.
3837 (sse2_pmovmskb): Likewise.
3838 (*sse2_maskmovdqu): Likewise.
3839 (*sse2_maskmovdqu_rex64): Likewise.
3840 (sse_ldmxcsr): Likewise.
3841 (sse_stmxcsr): Likewise.
3842 (abs<mode>2): Likewise.
3843 (sse4_1_movntdqa): Likewise.
3844 (sse4_1_phminposuw): Likewise.
3845 (sse4_1_extendv8qiv8hi2): Likewise.
3846 (*sse4_1_extendv8qiv8hi2): Likewise.
3847 (sse4_1_extendv4qiv4si2): Likewise.
3848 (*sse4_1_extendv4qiv4si2): Likewise.
3849 (sse4_1_extendv2qiv2di2): Likewise.
3850 (*sse4_1_extendv2qiv2di2): Likewise.
3851 (sse4_1_extendv4hiv4si2): Likewise.
3852 (*sse4_1_extendv4hiv4si2): Likewise.
3853 (sse4_1_extendv2hiv2di2): Likewise.
3854 (*sse4_1_extendv2hiv2di2): Likewise.
3855 (sse4_1_extendv2siv2di2): Likewise.
3856 (*sse4_1_extendv2siv2di2): Likewise.
3857 (sse4_1_zero_extendv8qiv8hi2): Likewise.
3858 (*sse4_1_zero_extendv8qiv8hi2): Likewise.
3859 (sse4_1_zero_extendv4qiv4si2): Likewise.
3860 (*sse4_1_zero_extendv4qiv4si2): Likewise.
3861 (sse4_1_zero_extendv2qiv2di2): Likewise.
3862 (*sse4_1_zero_extendv2qiv2di2): Likewise.
3863 (sse4_1_zero_extendv4hiv4si2): Likewise.
3864 (*sse4_1_zero_extendv4hiv4si2): Likewise.
3865 (sse4_1_zero_extendv2hiv2di2): Likewise.
3866 (*sse4_1_zero_extendv2hiv2di2): Likewise.
3867 (sse4_1_zero_extendv2siv2di2): Likewise.
3868 (*sse4_1_zero_extendv2siv2di2): Likewise.
3869 (sse4_1_ptest): Likewise.
3870 (sse4_1_roundp<ssemodesuffixf2c>): Likewise.
3871 (sse4_2_pcmpestri): Likewise.
3872 (sse4_2_pcmpestrm): Likewise.
3873 (sse4_2_pcmpistri): Likewise.
3874 (sse4_2_pcmpistrm): Likewise.
3876 (aeskeygenassist): Likewise.
3878 2008-08-28 Uros Bizjak <ubizjak@gmail.com>
3880 * config/i386/predicates.md (vzeroall_operation): New.
3882 * config/i386/sse.md (avx_vzeroall): New.
3883 (*avx_vzeroall): Likewise.
3885 2008-08-28 Paul Brook <paul@codesourcery.com>
3886 Mark Shinwell <shinwell@codesourcery.com>
3887 Richard Earnshaw <richard.earnshaw@arm.com>
3889 * config/arm/arm.c (TARGET_MAX_ANCHOR_OFFSET): New.
3890 (TARGET_MIN_ANCHOR_OFFSET): New.
3891 (arm_override_options): Set correct anchor ranges for Thumb-1
3892 and Thumb-2 if required.
3893 (legitimize_pic_address): Handle case involving a TLS symbol
3894 reference with an addend.
3895 (arm_optimization_options): Enable section anchors at -O1 and
3897 * config/arm/arm.h (OPTIMIZATION_OPTIONS): New.
3898 * config/arm/arm-protos.h (arm_optimization_options): New.
3900 2008-08-28 Nick Clifton <nickc@redhat.com>
3902 * config/stormy16/stormy16.h (IRA_COVER_CLASSES): Define.
3903 * config/stormy16/stormy16.md (zero_extendqihi2): Fix length
3906 * config/v850/v850.h (IRA_COVER_CLASSES): Define.
3907 * config/v850/v850.md (return): Remove frame size restriction.
3909 * config/mcore/mcore.h (IRA_COVER_CLASSES): Define.
3911 * config/iq2000/iq2000.h (IRA_COVER_CLASSES): Define.
3913 * config/fr30/fr30.h (IRA_COVER_CLASSES): Define.
3915 * config/m32r/m32r.h (IRA_COVER_CLASSES): Define.
3917 2008-08-28 Paul Brook <paul@codesourcery.com>
3919 * config/arm/vfp11.md: Update license notice.
3920 * config/arm/cortex-r4.md: Ditto.
3922 2008-08-28 Richard Guenther <rguenther@suse.de>
3924 PR tree-optimization/37207
3925 * tree-ssa-ifcombine.c (recognize_single_bit_test): Fix
3928 2008-08-28 Dodji Seketeli <dodji@redhat.com>
3931 * tree.c (int_fits_type_p): Don't forget unsigned integers
3932 of type sizetype which higher end word equals -1.
3934 2008-08-28 Ira Rosen <irar@il.ibm.com>
3936 * target.h (struct vectorize): Add new target builtin.
3937 * tree-vectorizer.c (destroy_loop_vec_info): Call
3938 vect_free_slp_instance instead of vect_free_slp_node.
3939 * tree-vectorizer.h (enum slp_load_perm_type): New.
3940 (struct _slp_instance): Add new fields.
3941 (SLP_INSTANCE_LOAD_PERMUTATION): New.
3942 (SLP_INSTANCE_LOADS): New.
3943 (vect_free_slp_tree): Remove.
3944 (vect_free_slp_instance): Declare.
3945 (SLP_TREE_LOADS_PERM_TYPE, TARG_VEC_PERMUTE_COST): New.
3946 (vectorizable_load): Add argument.
3947 (vect_transform_slp_perm_load): New.
3948 * tree-vect-analyze.c (vect_analyze_operations): Add an argument to
3950 (vect_get_place_in_interleaving_chain): New function.
3951 (vect_free_slp_tree): Make static.
3952 (vect_free_slp_instance): New function.
3953 (vect_build_slp_tree): Add new arguments. Allow load permutations and
3954 collect the load location in the interleaving chain.
3955 (vect_supported_slp_permutation_p): New function.
3956 (vect_supported_load_permutation_p): Likewise.
3957 (vect_analyze_slp_instance): In case of loads permutation, call
3958 vect_supported_load_permutation_p to check that the permutation is
3960 * target-def.h (TARGET_VECTORIZE_BUILTIN_VEC_PERM): New.
3961 * tree-vect-transform.c (vect_transform_stmt): Add new argument.
3962 (vect_create_mask_and_perm): New function.
3963 (vect_get_mask_element, vect_transform_slp_perm_load): Likewise.
3964 (vectorizable_load): Add an argument. Don't keep the created vectors
3965 statements in the node if permutation is required. Call
3966 vect_transform_slp_perm_load to generate the permutation.
3967 (vect_transform_stmt): Add new argument. Call vectorizable_load with
3968 additional argument.
3969 (vect_schedule_slp_instance): In case of loads permutation, allocate
3970 vectorized statements structure for all the related SLP nodes. Call
3971 vect_transform_stmt with addditional argument.
3972 (vect_transform_loop): Call vect_transform_stmt with correct arguments.
3973 * config/spu/spu.c (spu_builtin_vec_perm): New.
3974 (TARGET_VECTORIZE_BUILTIN_VEC_PERM): Redefine.
3975 * config/spu/spu.h (TARG_VEC_PERMUTE_COS): Define.
3976 * config/rs6000/rs6000.c (rs6000_builtin_vec_perm): New.
3977 (TARGET_VECTORIZE_BUILTIN_VEC_PERM): Redefine.
3979 2008-08-28 Chris Fairles <chris.fairles@gmail.com>
3981 * gthr-posix.h (__gthread_create, __gthread_join, __gthread_detach,
3982 __gthread_mutex_timed_lock, __gthread_recursive_mutex_timed_lock,
3983 __gthread_cond_signal, __gthread_cond_timedwait,
3984 __gthread_cond_timedwait_recursive): New functions.
3985 * gthr-posix.c (pthread_mutex_timedlock, pthread_cond_timedwait):
3987 * gthr.h: Comment on defining __GTHREADS_CXX0X macro in conforming
3990 2008-08-28 Richard Guenther <rguenther@suse.de>
3993 * fold-const.c (maybe_canonicalize_comparison_1): Require
3994 undefined overflow only for canonicalizing A +- CST cmp CST.
3995 Make sure to not generate new constants that are not inside
3996 their TYPE_MIN/MAX_VALUE range.
3997 (maybe_canonicalize_comparison): Remove undefined overflow
3999 (fold_binary): Remove now duplicate folding.
4001 2008-08-27 Paolo Carlini <paolo.carlini@oracle.com>
4003 * c-typeck.c (convert_for_assignment): Adjust WARN_FOR_ASSIGNMENT
4004 use not updated in the last change.
4006 2008-08-27 Kaz Kojima <kkojima@gcc.gnu.org>
4008 * config/sh/sh.h (REG_CLASS_CONTENTS): Drop fr32 from FPUL_REGS.
4009 (IRA_COVER_CLASSES): Add FPUL_REGS.
4011 2008-08-27 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
4014 * c-common.c (conversion_warning): Check for null operands.
4016 2008-08-27 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
4019 * c-decl.c (check_for_loop_decls): Improve error message. Give
4022 2008-08-27 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
4025 * c-typeck.c (WARN_FOR_ASSIGNMENT): Add OPT parameter.
4026 (convert_for_assignment): Pass corrent OPT_W* parameter to
4027 WARN_FOR_ASSIGNMENT.
4029 2008-08-27 Paolo Carlini <paolo.carlini@oracle.com>
4032 * c-common.c (fold_offsetof_1): Handle TARGET_EXPR like CALL_EXPR.
4034 2008-08-27 Paul Brook <paul@codesourcery.com>
4036 * config.gcc: Loosen checks for arm uclinux eabi targets.
4038 2008-08-27 Paul Brook <paul@codesourcery.com>
4040 * config/arm/t-arm-coff (LIB1ASMFUNCS): Add missing undescrore on
4042 * config/arm/t-linux (LIB1ASMFUNCS): Ditto.
4044 2008-08-26 Douglas Gregor <doug.gregor@gmail.com>
4046 * c-common.c (do_switch_warnings): Look through the CONST_DECLs in
4047 the enumerators of an ENUMERAL_TYPE.
4048 * dbxout.c (dbxout_type): Ditto.
4050 2008-08-26 Andrew Pinski <andrew_pinski@playstation.sony.com>
4053 * fwprop.c (fwprop): Check that the loop_father is the outer loop.
4054 (fwprop_addr): Check that the loop_father is not the outer loop.
4056 2008-08-26 Paul Brook <paul@codesourcery.com>
4058 * config/arm/vfp.md: Document fmul{s,d} and fmac{s,d} types.
4059 Remove documentation entry for fmul type.
4060 Use fmuls to annotate single-precision multiplication patterns,
4061 fmuld to annotate double-precision multiplication patterns,
4062 fmacs to annotate single-precision multiply-accumulate patterns
4063 and fmacd to annotate double-precision multiply-accumulate patterns.
4064 * config/arm/vfp11.md: Update reservations accordingly.
4065 * config/arm/arm.md: Note that certain values of the "type"
4066 attribute are documented in vfp.md.
4067 * config/arm/arm1020e.md: Remove out of date duplicate comment.
4068 (v10_cvt): Use new fmul types.
4070 2008-08-26 Paul Brook <paul@codesourcery.com>
4072 * config/arm/vfp.md: Move pipeline description for VFP11 to...
4073 * config/arm/vfp11.md: ...here. New.
4074 * config/arm/arm.md: Include vfp11.md.
4076 2008-08-26 Hans-Peter Nilsson <hp@axis.com>
4078 * opts.c (decode_options) [!IRA_COVER_CLASSES]: Add missing
4079 parameter to inform call.
4081 2008-08-26 Jeff Law <law@redhat.com>
4083 * mn10300.md (movqi, movhi): Split i->d*a case into two cases to
4084 avoid the possibility of getting DATA_OR_ADDRESS_REGS as the
4085 preferred class when copying a constant into a partial word register.
4087 2008-08-26 Ben Elliston <bje@au.ibm.com>
4089 * rtlanal.c: Fix uses of "it's" with "its" where appropriate.
4090 * cp/typeck.c: Likewise.
4091 * cp/tree.c: Likewise.
4092 * gimple-low.c: Likewise.
4095 2008-08-26 Vladimir Makarov <vmakarov@redhat.com>
4097 * ira-build.c, ira-color.c, ira-costs.c, ira.h, ira-lives.c,
4098 ira.c, ira-conflicts.c, ira-emit.c, ira-int.h: New files.
4100 * doc/passes.texi: Describe IRA.
4102 * doc/tm.texi (IRA_COVER_CLASSES,
4103 IRA_HARD_REGNO_ADD_COST_MULTIPLIER): Describe the new macros.
4105 * doc/invoke.texi (ira-max-loops-num): Describe the new parameter.
4106 (-fira, -fira-algorithm, -fira-coalesce, -fno-ira-move-spills,
4107 -fira-propagate-cost, -fno-ira-share-save-slots,
4108 -fno-ira-share-spill-slots, -fira-verbose): Describe new options.
4110 * flags.h (ira_algorithm): New enumeration.
4111 (flag_ira_algorithm, flag_ira_verbose): New external variable
4114 * postreload.c (gate_handle_postreload): Don't do post reload
4115 optimizations unless the reload is completed.
4117 * reload.c (push_reload, find_dummy_reload): Use DF_LR_OUT for
4120 * tree-pass.h (pass_ira): New external variable declaration.
4122 * reload.h: Add 2008 to the Copyright.
4124 * cfgloopanal.c: Include params.h.
4125 (estimate_reg_pressure_cost): Decrease cost for IRA optimization
4128 * params.h (IRA_MAX_LOOPS_NUM): New macro.
4130 * toplev.c (ira.h): New include.
4131 (flag_ira_algorithm, flag_ira_verbose): New external variables.
4132 (backend_init_target): Call ira_init.
4133 (backend_init): Call ira_init_once.
4134 (finalize): Call finish_ira_once.
4136 * toplev.h (flag_ira, flag_ira_coalesce, flag_ira_move_spills,
4137 flag_ira_share_save_slots, flag_ira_share_spill_slots): New
4140 * regs.h (contains_reg_of_mode, move_cost, may_move_in_cost,
4141 may_move_out_cost): New external variable declarations.
4142 (move_table): New typedef.
4144 * caller-save.c: Include headers output.h and ira.h.
4145 (no_caller_save_reg_set): New global variable.
4146 (save_slots_num, save_slots): New variables.
4147 (reg_save_code, reg_restore_code, add_stored_regs): Add
4149 (init_caller_save): Set up no_caller_save_reg_set.
4150 (init_save_areas): Reset save_slots_num.
4151 (saved_hard_reg): New structure.
4152 (hard_reg_map, saved_regs_num, all_saved_regs): New variables.
4153 (initiate_saved_hard_regs, new_saved_hard_reg,
4154 finish_saved_hard_regs, saved_hard_reg_compare_func): New
4156 (setup_save_areas): Add code for sharing stack slots.
4157 (all_blocks): New variable.
4158 (save_call_clobbered_regs): Process pseudo-register too.
4159 (mark_set_regs): Process pseudo-register too.
4160 (insert_one_insn): Put the insn after bb note in a empty basic
4161 block. Add insn check.
4163 * global.c (eliminable_regset): Make it external.
4164 (mark_elimination): Use DF_LR_IN for IRA.
4165 (pseudo_for_reload_consideration_p): New.
4166 (build_insn_chain): Make it external. Don't ignore spilled
4167 pseudos for IRA. Use pseudo_for_reload_consideration_p.
4168 (gate_handle_global_alloc): New function.
4169 (pass_global_alloc): Add the gate function.
4171 * opts.c (decode_options): Set up flag_ira. Print the warning for
4173 (common_handle_option): Process -fira-algorithm and -fira-verbose.
4175 * timevar.def (TV_IRA, TV_RELOAD): New passes.
4177 * regmove.c (regmove_optimize): Don't do replacement of output for
4180 * hard-reg-set.h (no_caller_save_reg_set, reg_class_subclasses):
4181 New external variable declarations.
4183 * local-alloc.c (update_equiv_regs): Make it external. Return
4184 true if jump label rebuilding should be done. Rescan new_insn for
4186 (gate_handle_local_alloc): New function.
4187 (pass_local_alloc): Add the gate function.
4189 * alias.c (value_addr_p, stack_addr_p): New functions.
4190 (nonoverlapping_memrefs_p): Use them for IRA.
4192 * common.opt (fira, fira-algorithm, fira-coalesce,
4193 fira-move-spills, fira-share-save-slots, fira-share-spill-slots,
4194 fira-verbose): New options.
4196 * regclass.c (reg_class_subclasses, contains_reg_of_mode,
4197 move_cost, may_move_in_cost, may_move_out_cost): Make the
4199 (move_table): Remove typedef.
4200 (init_move_cost): Make it external.
4201 (allocate_reg_info, resize_reg_info, setup_reg_classes): New
4204 * rtl.h (init_move_cost, allocate_reg_info, resize_reg_info,
4205 setup_reg_classes): New function prototypes.
4206 (eliminable_regset): New external variable declaration.
4207 (build_insn_chain, update_equiv_regs): New function prototypes.
4209 * Makefile.in (IRA_INT_H): New definition.
4210 (OBJS-common): Add ira.o, ira-build.o, ira-costs.o,
4211 ira-conflicts.o, ira-color.o, ira-emit.o, and ira-lives.o.
4212 (reload1.o, toplev.o): Add dependence on ira.h.
4213 (cfgloopanal.o): Add PARAMS_H.
4214 (caller-save.o): Add dependence on output.h and ira.h.
4215 (ira.o, ira-build.o, ira-costs.o, ira-conflicts.o, ira-color.o,
4216 ira-emit.o, ira-lives.o): New entries.
4218 * passes.c (pass_ira): New pass.
4220 * params.def (PARAM_IRA_MAX_LOOPS_NUM): New parameter.
4222 * reload1.c (ira.h): Include the header.
4223 (changed_allocation_pseudos): New bitmap.
4224 (init_reload): Initiate the bitmap.
4225 (compute_use_by_pseudos): Permits spilled registers in FROM.
4226 (temp_pseudo_reg_arr): New variable.
4227 (reload): Allocate and free temp_pseudo_reg_arr. Sort pseudos for
4228 IRA. Call alter_reg with the additional parameter. Don't clear
4229 spilled_pseudos for IRA. Restore original insn chain for IRA.
4230 Clear changed_allocation_pseudos at the end of reload.
4231 (calculate_needs_all_insns): Call IRA's mark_memory_move_deletion.
4232 (hard_regno_to_pseudo_regno): New variable.
4233 (count_pseudo): Check spilled pseudos. Set up
4234 hard_regno_to_pseudo_regno.
4235 (count_spilled_pseudo): Check spilled pseudos. Update
4236 hard_regno_to_pseudo_regno.
4237 (find_reg): Use better_spill_reload_regno_p. Check
4238 hard_regno_to_pseudo_regno.
4239 (alter_reg): Set up spilled_pseudos. Add a new parameter. Add
4241 (eliminate_regs_1): Use additional parameter for alter_reg.
4242 (finish_spills): Set up pseudo_previous_regs only for spilled
4243 pseudos. Call reassign_pseudos once for all spilled pseudos, pass
4244 more arguments. Don't clear live_throughout and dead_or_set for
4245 spilled pseudos. Use additional parameter for alter_reg. Call
4246 mark_allocation_change. Set up changed_allocation_pseudos.
4247 Remove sanity check.
4248 (emit_input_reload_insns, delete_output_reload): Use additional
4249 parameter for alter_reg. Call mark_allocation_change.
4250 (substitute, gen_reload_chain_without_interm_reg_p): New
4252 (reloads_conflict): Use gen_reload_chain_without_interm_reg_p.
4254 * testsuite/gcc.dg/20080410-1.c: New file.
4256 * config/s390/s390.h (IRA_COVER_CLASSES,
4257 IRA_HARD_REGNO_ADD_COST_MULTIPLIER): Define.
4259 * config/sparc/sparc.h (IRA_COVER_CLASSES): New macro.
4261 * config/i386/i386.h (IRA_COVER_CLASSES): Ditto.
4263 * config/ia64/ia64.h (IRA_COVER_CLASSES): Ditto.
4265 * config/rs6000/rs6000.h (IRA_COVER_CLASSES): Ditto.
4267 * config/arm/arm.h (IRA_COVER_CLASSES): Ditto.
4269 * config/alpha/alpha.h (IRA_COVER_CLASSES): Ditto.
4271 2008-08-24 Jeff Law <law@redhat.com>
4272 * ira.c (setup_reg_class_intersect_union): Prefer smallest class
4273 when ignoring unavailable registers.
4275 2008-08-24 Jeff Law <law@redhat.com>
4276 * ira-color.c (coalesced_pseudo_reg_slot_compare): Check
4277 FRAME_GROWS_DOWNWARD and STACK_GROWS_DOWNWARD.
4278 * ira.c (setup_eliminable_regset): Check stack_realign_needed.
4279 * config/mn10300/mn10300.h (IRA_COVER_CLASSES): New macro.
4281 2008-06-03 Steve Chamberlain <steve.chamberlain@gmail.com>
4282 * ira-build.c (allocno_range_compare_func): Stabilize sort.
4284 2008-05-29 Andy Hutchinson <hutchinsonandy@aim.com>
4285 * config/avr/avr.h (IRA_COVER_CLASSES): New macro.
4286 * reload1.c (find_reg): Process registers in register allocation order.
4288 2008-05-10 Richard Sandiford <rsandifo@nildram.co.uk>
4289 * toplev.c (backend_init_target): Move ira_init call from
4291 (lang_dependent_init_target): ...to here.
4293 2008-05-10 Richard Sandiford <rsandifo@nildram.co.uk>
4294 * ira.c (setup_class_subset_and_memory_move_costs): Don't
4295 calculate memory move costs for NO_REGS.
4297 2008-05-05 Kaz Kojima <kkojima@gcc.gnu.org>
4298 * ira-color.c (ira_fast_allocation): Use no_stack_reg_p only if
4299 STACK_REGS is defined.
4301 2008-04-08 Andrew Pinski <andrew_pinski@playstation.sony.com>
4302 * config/spu/spu.h (IRA_COVER_CLASSES): New macro.
4304 2008-04-04 Bernd Schmidt <bernd.schmidt@analog.com>
4305 * config/bfin/bfin.h (IRA_COVER_CLASSES): New macro.
4307 2008-04-04 Kaz Kojima <kkojima@gcc.gnu.org>
4308 * config/sh/sh.h (IRA_COVER_CLASSES): Define.
4309 * config/sh/sh.md (movsicc_true+3): Check if emit returns a
4312 2008-08-26 Victor Kaplansky <victork@il.ibm.com>
4313 Dorit Nuzman <dorit@il.ibm.com>
4315 * gcc/config/spu/spu.md (vec_extract_evenv4si,
4316 vec_extract_evenv4sf, vec_extract_evenv8hi,
4317 vec_extract_evenv16qi, vec_extract_oddv4si,
4318 vec_extract_oddv4sf, vec_extract_oddv8hi, vec_extract_oddv16qi,
4319 vec_interleave_highv4sf, vec_interleave_lowv4sf,
4320 vec_interleave_highv4si, vec_interleave_lowv4si,
4321 vec_interleave_highv8hi, vec_interleave_lowv8hi,
4322 vec_interleave_highv16qi, vec_interleave_lowv16qi,
4323 vec_pack_trunc_v8hi, vec_pack_trunc_v4si): Implement.S
4325 2008-08-25 Janis Johnson <janis187@us.ibm.com>
4328 * config/rs6000/rs6000.c (optimization_options): Don't default to
4329 section anchors without toplevel reorder.
4331 2008-08-25 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
4333 * config/spu/spu_mfcio.h (mfc_begin_critical_section): New function.
4334 (mfc_end_critical_section): Likewise.
4336 2008-08-25 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
4338 * config/rs6000/rs6000.c (rs6000_handle_altivec_attribute): Propagate
4339 all type qualifiers from element type to vector type.
4341 2008-08-25 David Daney <ddaney@avtrex.com>
4343 * config/mips/mips.md (immediate_insn): Move up in file, fix
4344 comment typo, reformat.
4345 (fetchop_bit, atomic_hiqi_op memory_barrier,
4346 sync_compare_and_swap<mode>, compare_and_swap_12, sync_add<mode>,
4347 sync_<optab><mode>, sync_<optab>_12, sync_old_<optab><mode>,
4348 sync_old_<optab>_12, sync_new_<optab><mode>, sync_new_<optab>_12,
4349 sync_nand<mode>, sync_nand_12, sync_old_nand<mode>,
4350 sync_old_nand_12, sync_new_nand<mode>, sync_new_nand_12,
4351 sync_sub<mode>, sync_old_add<mode>, sync_old_sub<mode>,
4352 sync_new_add<mode>, sync_new_sub<mode>, sync_<optab><mode>,
4353 sync_old_<optab><mode>, sync_new_<optab><mode>, sync_nand<mode>,
4354 sync_old_nand<mode>, sync_new_nand<mode>,
4355 sync_lock_test_and_set<mode>, sync_lock_test_and_set<mode>,
4356 test_and_set_12): Moved to sync.md.
4358 * config/mips/sync.md: New file.
4360 2008-08-25 Richard Henderson <rth@redhat.com>
4362 * dwarf2out.c (def_cfa_1): Don't scale by DWARF_CIE_DATA_ALIGNMENT.
4363 (regsave): Likewise.
4364 (lookup_cfa_1): Don't rescale by DWARF_CIE_DATA_ALIGNMENT.
4365 (output_cfi_directive): Likewise.
4366 (div_data_align): New.
4367 (output_cfi): Use it.
4369 2008-08-24 Adam Nemet <anemet@caviumnetworks.com>
4371 * config.gcc (mips64*-*-linux*): Handle mips64octeon*-*-linux*.
4372 * config/mips/mips.h (enum processor_type): Add PROCESSOR_OCTEON.
4373 (TARGET_OCTEON): New macro.
4374 (TARGET_CPU_CPP_BUILTINS): Define __OCTEON__ for Octeon.
4375 (MIPS_ISA_LEVEL_SPEC, MIPS_ARCH_FLOAT_SPEC): Handle -march=octeon.
4376 (ISA_HAS_POP): New macro.
4377 * config/mips/driver-native.c (host_detect_local_cpu): Handle
4379 * config/mips/mips.c (mips_cpu_info_table, mips_rtx_cost_data):
4381 * config/mips/mips.md (cpu): Add octeon.
4382 (type): Add pop attribute value.
4383 (popcount<mode>2): New pattern.
4384 * doc/invoke.texi (-march=@var{arch}): Add octeon.
4386 2008-08-24 Jan Hubicka <jh@suse.cz>
4388 * doc/invoke.texi (-fipa-cp-clone): New option.
4389 (-fipa-cp): Update docs.
4390 (--param ipcp-unit-growth):New.
4391 * ipa-cp.c: Include fibheap.h, params.h
4392 (ipcp_initialize_node_lattices): When not cloning, all externally
4393 visible functions are bottom.
4394 (ipcp_need_redirect_p): Accept clones.
4395 (ipcp_insert_stage): Use cost driven heuristics.
4396 (max_count, dead_nodes): New static vars.
4397 (ipcp_need_original_clone_p, ipcp_estimate_cloning_cost,
4398 ipcp_const_param_count): New functions.
4399 * common.opt (ipa-cp-clone): New command line option.
4400 * params.def (ipcp-unit-growth): New.
4402 2008-08-24 Jan Hubicka <jh@suse.cz>
4404 * tree-inline.c (tree_function_versioning): Look harder
4405 for referenced vars.
4407 2008-08-24 Razya Ladelsky <razya@il.ibm.com>
4409 PR tree-optimization/37185
4410 * matrix-reorg.c (transform_access_sites): Update changed stmt.
4412 2008-08-23 Jan Hubicka <jh@suse.cz>
4414 * ipa-cp.c (ipcp_analyze_node): New function.
4415 (ipcp_update_cloned_node): Use it.
4416 (ipcp_init_stage): Likewise.
4417 * ipa-inline.c (function_insertion_hook_holder): New static var.
4418 (analyze_function): Break out from ....
4419 (inline_generate_summary): Here; register insertion hook.
4420 (cgraph_decide_inlining): Remove hook.
4421 (add_new_function): New function.
4423 2008-08-23 Jan Hubicka <jh@suse.cz>
4425 * opts.c (decode_options): Revert accidental change enabling ipa-cp.
4427 2008-08-23 Jan Hubicka <jh@suse.cz>
4429 * ipa-cp.c (constant_val_insert): Remove.
4430 (ipcp_propagate_one_const): Remove.
4431 (ipcp_create_replace_map): Always insert replacements to the map.
4432 (ipcp_insert_stage): Do not try to insert statements by hand.
4433 * tree-inline.c (insert_init_stmt): Break out from ...
4434 (setup_one_parameter): ... here; allow NULL BB pointer.
4435 (tree_function_versioning): Use setup_one_parameter to process
4438 2008-08-23 Jan Hubicka <jh@suse.cz>
4440 * tree.c (decl_address_ip_invariant_p): New function.
4441 * tree.h (decl_address_ip_invariant_p): Declare.
4442 * gimple.c (strip_invariant_refs): Break out from ...
4443 (is_gimple_invariant_address): ... here
4444 (is_gimple_ip_invariant_address): New function.
4445 (is_gimple_ip_invariant): New function.
4446 * gimple.h (is_gimple_ip_invariant_address, is_gimple_ip_invariant):
4449 * ipa-cp.c (ipcp_lat_is_const): Remove handling of IPA_CONST_VALUE_REF.
4450 (ipcp_lat_is_insertable): All constants are insertable.
4451 (ipcp_lattice_from_jfunc, ipcp_print_all_lattices): Remove handling of
4452 IPA_CONST_VALUE_REF.
4453 (ipcp_initialize_node_lattices): Propagate all types of operands.
4454 (build_const_val): Do not handle IPA_CONST_VALUE_REF.
4455 (ipcp_create_replace_map): Reformat.
4456 (ipcp_need_redirect_p): Simplify.
4457 (ipcp_insert_stage): Check that argument is used before clonning.
4458 * ipa-prop.c (ipa_print_node_jump_functions): Do not handle
4460 (compute_scalar_jump_functions): Simplify using is_gimple_ip_invariat.
4461 (determine_cst_member_ptr): Keep wrapping ADDR_EXPR of members.
4462 (update_call_notes_after_inlining): Expect ADDR_EXPR in operand.
4463 * ipa-prop.h (jump_func_type): Remove IPA_CONST_REF.
4464 (jump_func_type): Remove IPA_CONST_VALUE_REF.
4465 * tree-inline.c (tree_function_versioning): Add variables referenced
4468 2008-08-23 Jan Hubicka <jh@suse.cz>
4471 * i386.c (standard_80387_constant_p): Use optimize_size.
4473 2008-08-23 Ira Rosen <irar@il.ibm.com>
4475 PR tree-optimization/37161
4476 * tree-vectorizer.h (vect_get_smallest_scalar_type): Declare.
4477 * tree-vect-analyze.c (vect_get_smallest_scalar_type): New function.
4478 (vect_determine_vectorization_factor): Move the scalar type
4479 retrieval to vect_get_smallest_scalar_type.
4480 (vect_build_slp_tree): Call vect_get_smallest_scalar_type to get
4481 scalar type. Remove redundant computation.
4482 * tree-vect-transform.c (vect_get_constant_vectors): Add argument.
4483 (vect_get_slp_defs): Take the type of RHS into account if
4484 necessary by calling vect_get_smallest_scalar_type. Call
4485 vect_get_constant_vectors with additional argument.
4487 2008-08-23 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
4490 * doc/invoke.texi (Wwrite-strings): Clarify description.
4492 2008-08-23 Ira Rosen <irar@il.ibm.com>
4494 PR tree-optimization/37174
4495 * tree-vect-analyze.c (vect_get_and_check_slp_defs): Check that the
4496 def stmt is a part of the loop before accessing its stmt_vec_info.
4498 2008-08-22 Anatoly Sokolov <aesok@post.ru>
4501 * config/avr/avr.md (UNSPEC_SWAP): New constants.
4502 (*swap): New insn pattern.
4503 (*ashlqi3): Rename from ashlqi3 insn pattern.
4504 (ashlqi3): New expanders.
4505 (*lshrqi3): Rename from lshrqi3 insn pattern.
4506 (lshrqi3): New expanders.
4507 (ashlqi3_const4, ashlqi3_const5, ashlqi3_const6, lshrqi3_const4,
4508 lshrqi3_const5, lshrqi3_const6): New splitters.
4509 (andi, ashlqi3_l_const4, ashlqi3_l_const5, ashlqi3_l_const6,
4510 lshrqi3_l_const4, lshrqi3_l_const5, lshrqi3_l_const6): Define
4513 2008-08-22 Richard Guenther <rguenther@suse.de>
4515 PR tree-optimization/37078
4516 * tree-vrp.c (extract_range_from_unary_expr): Avoid generating
4517 [+INF, +INF] ranges.
4519 2008-08-22 Richard Guenther <rguenther@suse.de>
4521 PR tree-optimization/37143
4522 * tree-vect-transform.c (vect_create_cond_for_align_checks): Build
4523 a conversion statement instead of a copy.
4525 2008-08-22 Uros Bizjak <ubizjak@gmail.com>
4528 * config/i386/i386.c (ix86_match_ccmode): Handle CCAmode,
4529 CCCmode, CCOmode and CCSmode destination modes.
4532 * config/i386/mmx.md (*vec_extractv2sf_0): Avoid combining registers
4533 from different units in a single alternative.
4534 (*vec_extractv2sf_1): Ditto.
4535 (*vec_extractv2si_0): Ditto.
4536 (*vec_extractv2si_1): Ditto.
4537 * config/i386/sse.md (sse2_storehpd): Ditto.
4538 (sse2_storelpd): Ditto.
4539 (sse2_loadhpd): Ditto.
4540 (sse2_loadlpd): Ditto.
4543 * config/i386/i386.md (clzsi2_abm): Fix operand 1 constraints.
4544 (popcountsi2): Ditto.
4545 (clzdi2_abm): Ditto.
4546 (popcountdi2): Ditto.
4547 (clzhi2_abm): Ditto.
4548 (popcounthi2): Ditto.
4550 2008-08-22 Richard Guenther <rguenther@suse.de>
4554 * fold-const.c (extract_muldiv_1): Optimize (X * C1) % C2 only
4555 if the multiplication does not overflow.
4557 2008-08-21 Nathan Sidwell <nathan@codesourcery.com>
4559 * c-ppoutput.c (init_pp_output): Initialize src_line to 1.
4561 2008-08-21 Richard Henderson <rth@redhat.com>
4563 * configure.ac (HAVE_GAS_CFI_PERSONALITY_DIRECTIVE): Remove
4564 spurrious comma from test.
4565 * configure: Rebuild.
4567 2008-08-21 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
4570 * builtins.c (fold_builtin_next_arg): Add warning about undefined
4573 2008-08-21 Aldy Hernandez <aldyh@redhat.com>
4575 * c-tree.h (grokfield): New argument.
4576 * c-decl.c (grokfield): Handle new location argument.
4577 * c-parser.c (c_parser_struct_declaration): Pass location to grokfield.
4579 2008-08-21 Richard Guenther <rguenther@suse.de>
4581 * tree-ssa-ccp.c (ccp_fold): Fold VIEW_CONVERT_EXPRs of constants.
4583 2008-08-21 Jan Hubicka <jh@suse.cz>
4585 * cgraph.c (first_cgraph_function_insertion_hook): New variable.
4586 (cgraph_add_function_insertion_hook,
4587 cgraph_remove_function_insertion_hook,
4588 cgraph_call_function_insertion_hooks): New functions.
4589 * cgraph.h (cgraph_add_function_insertion_hook,
4590 cgraph_remove_function_insertion_hook,
4591 cgraph_call_function_insertion_hooks): Declare.
4592 * ipa-reference.c (function_insertion_hook_holder): New variable.
4593 (check_operand, look_for_address_of): When checking late, do not care
4594 about module bitmaps.
4595 (add_new_function): New function.
4596 (generate_summary): Register hooks; zero module bitmaps.
4597 (propagate): Unregister hooks.
4598 * ipa-pure-const.c (function_insertion_hook_holder): New variable.
4599 (add_new_function): New function.
4600 (generate_summary): Register hook.
4601 (propagate): Remove hook.
4603 * ipa-cp.c (ipcp_need_redirect_p): Fix to not be constant 0.
4605 * tree-pass.h (pass_ipa_cp): Make ipa_opt_pass.
4606 * ipa-cp.c (ipcp_update_cloned_node): New function.
4607 (build_const_val): Handle functions correctly; bring type logic
4608 into sync with tree-inline.c
4609 (ipcp_init_stage): Take care of computing stuff needed by
4610 indirect inlining; update clones.
4611 (ipcp_generate_summary): Break out of ipcp_driver.
4612 (ipcp_driver): Do only execution and transformation.
4613 (pass_ipa_cp): Make IPA_PASS.
4614 * tree-ssa-ccp.c (fold_stmt_r): Check type before trying to fold
4616 * ipa-inline.c (inline_indirect_intraprocedural_analysis): When doing
4617 ipcp, some info is already available.
4618 * ipa-prop.c (ipa_count_arguments): Grow edge lists as needed.
4619 * tree-inline.c (remap_ssa_name): Unshare expression.
4621 2008-08-21 Richard Guenther <rguenther@suse.de>
4623 * tree-ssa-pre.c (insert_into_preds_of_block): Before inserting
4624 a PHI ask VN if it is already available.
4625 * tree-ssa-sccvn.h (vn_phi_lookup): Declare.
4626 * tree-ssa-sccvn.c (vn_phi_lookup): Export.
4628 2008-08-21 Richard Guenther <rguenther@suse.de>
4631 * tree-chrec.c (chrec_apply): Always call chrec_fold_plus which
4632 makes sure to produce a result of the correct type.
4634 2008-08-21 Jan Hubicka <jh@suse.cz>
4635 Backport from LTO branch:
4637 2008-05-05 Kenneth Zadeck <zadeck@naturalbridge.com>
4638 Jan Hubicka <jh@suse.cz>
4641 (init_state, finish_state, set_function_state, generate_summary):
4643 (scan_stmt): Renamed from scan_function. Changed to keep state in
4644 local static vars rather than cgraph aux field.
4645 (propagate): Renamed from static_execute. Changed to keep state in
4646 local static vars rather than cgraph aux field.
4647 (pass_ipa_pure_const): Changed from SIMPLE_IPA_PASS to IPA_PASS.
4648 * tree-pass.h (pass_ipa_pure_const): Turn into IPA_PASS.
4650 2008-07-15 Kenneth Zadeck <zadeck@naturalbridge.com>
4652 * tree-pass.h (pass_ipa_reference): Make into ipa_opt_pass.
4653 * ipa-reference.c (init_function_info, generate_summary,
4654 propagate): New functions.
4655 (analyze_function): Call init_function_info.
4656 (static_execute): Stripped into generate_summary and propagate.
4657 (pass_ipa_reference): Made into ipa_opt_pass.
4659 2008-08-21 Richard Guenther <rguenther@suse.de>
4661 PR tree-optimization/37181
4662 * tree-vrp.c (extract_range_from_binary_expr): Check for NULL
4664 (extract_range_from_unary_expr): Likewise.
4666 2008-08-21 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
4668 * diagnostic.c (pedwarn_at): Rename as pedwarn.
4670 * toplev.h (pedwarn_at): Likewise.
4671 * builtins.c: Update all calls to pedwarn.
4672 * c-lex.c: Likewise.
4673 * toplev.c: Likewise.
4674 * c-tree.h: Likewise.
4675 * c-decl.c: Likewise.
4676 * c-errors.c: Likewise.
4677 * c-typeck.c: Likewise.
4678 * c-common.c: Likewise.
4679 * c-parser.c: Likewise.
4681 2008-08-20 Joseph Myers <joseph@codesourcery.com>
4684 * config/sparc/sparc.c (function_arg_slotno): Handle structure
4685 with MODE_VECTOR_INT mode.
4687 2008-08-21 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
4690 * tree-ssa.c (warn_uninit): Do not warn for variables that can be
4691 initialized outside the current module.
4692 (warn_uninitialized_var): Ignore left-hand side when walking the
4693 trees. Ignore address expressions. Examine VUSE operands in gimple
4694 statements with a variable declaration on the right-hand side.
4696 2008-08-20 Richard Sandiford <rdsandiford@googlemail.com>
4699 * rtlanal.c (subreg_offset_representable_p): Revert last change.
4701 2008-08-20 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
4704 * c-common.c (conversion_warning): Do not warn if applying bit-and
4705 operator to unsigned constant that fits in the target type.
4707 2008-08-20 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
4710 * c-common.c (conversion_warning): Do not warn for artificial
4713 2008-08-20 Richard Guenther <rguenther@suse.de>
4715 * tree-vrp.c (op_with_constant_singleton_value_range): New function.
4716 (extract_range_from_binary_expr): Fall back to constant propagation.
4717 (extract_range_from_unary_expr): Likewise.
4719 2008-08-20 Richard Guenther <rguenther@suse.de>
4721 * tree-ssa-ccp.c (maybe_fold_stmt_indirect): Do not mess
4722 with TREE_THIS_VOLATILE on shared nodes.
4723 (fold_stmt_r): Likewise.
4725 2008-08-20 Jakub Jelinek <jakub@redhat.com>
4728 * c-parser.c (c_parser_attributes): For keywords use canonical
4729 spelling for attr_name.
4731 2008-08-20 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
4733 * value-prof.c (check_counter): Revert wrong call to error.
4735 2008-08-20 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
4737 * profile.c: Update calls to inform.
4738 * value-prof.c: Update calls to inform.
4740 2008-08-20 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
4742 * diagnostic.c (inform): Add an explicit location_t parameter.
4743 * toplev.h (inform): Update declaration.
4744 * builtins.c: Update all calls to inform.
4745 * c-common.c: Likewise.
4746 * c-decl.c: Likewise.
4747 * c-opts.c: Likewise.
4748 * c-pch.c: Likewise.
4749 * c-pragma.c: Likewise.
4750 * c-typeck.c: Likewise.
4751 * coverage.c: Likewise.
4753 * toplev.c: Likewise.
4754 * tree-cfg.c: Likewise.
4755 * tree-ssa.c: Likewise.
4757 2008-08-20 H.J. Lu <hongjiu.lu@intel.com>
4760 * config/i386/i386.c (ix86_expand_vector_init_one_nonzero): In
4761 V2DI mode, for SSE4.1, use movq instead of vector set if the
4762 second element is zero and inter-unit moves are OK.
4764 2008-08-20 Richard Guenther <rguenther@suse.de>
4766 * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): More
4767 properly handle conversion/copy chains after tuplification.
4769 2008-08-20 Richard Guenther <rguenther@suse.de>
4771 * passes.c (init_optimization_passes): Move the second
4772 forwprop pass before alias computation. Remove the second
4773 DCE pass. Remove the first dominator and phi copy/const
4776 2008-08-20 Nick Clifton <nickc@redhat.com>
4778 * configure.ac (HAVE_GAS_CFI_DIRECTIVE): Always test for assembler
4779 support of this feature. Do not assume that a sufficiently new
4780 assembler will support the feature regardless of the target type.
4781 (HAVE_GAS_CFI_PERSONALITY_DIRECTIVE): Likewise.
4782 * configure: Regenerate.
4784 2008-08-20 Richard Guenther <rguenther@suse.de>
4786 * tree-vrp.c (found_in_subgraph): Remove.
4787 (live): New global static.
4788 (live_on_edge): New function.
4789 (blocks_visited): Remove.
4790 (register_edge_assert_for_2): Use live_on_edge.
4791 (find_conditional_asserts): Remove code dealing with
4792 found_in_subgraph. Do not walk the CFG.
4793 (find_switch_asserts): Likewise.
4794 (find_assert_locations_1): Renamed from find_assert_locations.
4795 Move finding assert locations for conditional and switch
4796 statements first. Update live bitmap. Do not walk the CFG.
4797 (find_assert_locations): New function.
4798 (insert_range_assertions): Remove entry of CFG walk.
4799 Adjust call to find_assert_locations.
4800 * tree-ssa-pre.c (do_regular_insertion): Ignore critical edges
4801 that only can appear because of fake exit edges but assert we
4802 never try to insert on those.
4803 (fini_pre): Do not remove fake exit edges here...
4804 (execute_pre): ...but here, before committing edge inserts.
4806 2008-08-19 Richard Guenther <rguenther@suse.de>
4808 * passes.c (init_optimization_passes): Exchange store-ccp
4811 2008-08-19 Rafael Espíndola <espindola@google.com>
4813 * varasm.c (weak_decls): Move earlier in the file.
4814 (assemble_external): Add weak decls to the weak_decls list.
4815 (declare_weak): Don't add decls to the weak_decls list.
4817 2008-08-19 H.J. Lu <hongjiu.lu@intel.com>
4820 * config/i386/sse.md (sse2_punpckhqdq, sse2_punpcklqdq): Moved
4821 before (sse2_shufpd_<mode>).
4823 2008-08-19 Jakub Jelinek <jakub@redhat.com>
4826 * pretty-print.c (pp_base_format): Deal with recursive BLOCK trees.
4827 * tree.c (block_nonartificial_location): Likewise.
4829 2008-08-19 Richard Guenther <rguenther@suse.de>
4831 PR tree-optimization/35972
4832 PR tree-optimization/23094
4833 * tree-ssa-sccvn.h (vn_reference_lookup_pieces): Add maywalk
4835 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Properly
4836 handle MISALIGNED_INDIRECT_REF.
4837 (get_ref_from_reference_ops): New helper.
4838 (vn_reference_lookup_pieces): Walk the use-def chain using the
4839 alias-oracle if requested.
4840 * tree-ssa-pre.c (phi_translate_1): Do reference lookup with
4841 walking the use-def chain.
4842 (compute_avail): But not here.
4843 (create_component_ref_by_pieces_1): Properly handle
4844 MISALIGNED_INDIRECT_REF.
4845 (do_regular_insertion): Handle fully redundant
4846 expressions after PHI-translation also for SSA_NAME values, not
4847 only constants. Correctly use edoubleprime for that.
4849 2008-08-19 Ira Rosen <irar@il.ibm.com>
4851 * tree-vectorizer.c (supportable_widening_operation): Support
4852 multi-step conversion, return the number of steps in such conversion
4853 and the required intermediate types.
4854 (supportable_narrowing_operation): Likewise.
4855 * tree-vectorizer.h (vect_pow2): New function.
4856 (supportable_widening_operation): Change argument types.
4857 (supportable_narrowing_operation): Likewise.
4858 (vectorizable_type_promotion): Add an argument.
4859 (vectorizable_type_demotion): Likewise.
4860 * tree-vect-analyze.c (vect_analyze_operations): Call
4861 vectorizable_type_promotion and vectorizable_type_demotion with
4862 additional argument.
4863 (vect_get_and_check_slp_defs): Detect patterns.
4864 (vect_build_slp_tree): Add an argument, don't fail in case of multiple
4866 (vect_analyze_slp_instance): Don't fail in case of multiple types.
4867 Call vect_build_slp_tree with correct arguments. Calculate unrolling
4868 factor according to the smallest type in the loop.
4869 (vect_detect_hybrid_slp_stmts): Include statements from patterns.
4870 * tree-vect-patterns.c (vect_recog_widen_mult_pattern): Call
4871 supportable_widening_operation with correct arguments.
4872 * tree-vect-transform.c (vect_get_slp_defs): Allocate output vector
4873 operands lists according to the number of vector statements in left
4874 or right node, if exists.
4875 (vect_gen_widened_results_half): Remove unused argument.
4876 (vectorizable_conversion): Call supportable_widening_operation,
4877 supportable_narrowing_operation, and vect_gen_widened_results_half
4878 with correct arguments.
4879 (vectorizable_assignment): Change documentation, support multiple
4881 (vectorizable_operation): Likewise.
4882 (vect_get_loop_based_defs): New function.
4883 (vect_create_vectorized_demotion_stmts): Likewise.
4884 (vectorizable_type_demotion): Support loop-aware SLP and general
4885 multi-step conversion. Call vect_get_loop_based_defs and
4886 vect_create_vectorized_demotion_stmts for transformation.
4887 (vect_create_vectorized_promotion_stmts): New function.
4888 (vectorizable_type_promotion): Support loop-aware SLP and general
4889 multi-step conversion. Call vect_create_vectorized_promotion_stmts
4891 (vectorizable_store): Change documentation, support multiple
4893 (vectorizable_load): Likewise.
4894 (vect_transform_stmt): Pass SLP_NODE to
4895 vectorizable_type_promotion and vectorizable_type_demotion.
4896 (vect_schedule_slp_instance): Move here the calculation of number
4897 of vectorized statements for each node from...
4898 (vect_schedule_slp): ... here.
4899 (vect_transform_loop): Call vect_schedule_slp without the last
4902 2008-08-19 Dorit Nuzman <dorit@il.ibm.com>
4905 * tree-vect-transform.c (vect_create_epilog_for_reduction): Change =
4906 to == in assert statement.
4907 (vectorizable_reduction): Fix typo.
4909 2008-08-18 H.J. Lu <hongjiu.lu@intel.com>
4912 * value-prof.c (check_counter): Dereference pointer to overall
4913 count when printing it.
4915 2008-08-18 H.J. Lu <hongjiu.lu@intel.com>
4917 * profile.h: Really add it.
4919 2008-08-18 H.J. Lu <hongjiu.lu@intel.com>
4921 * mcf.c: Really add it.
4923 2008-08-18 Paul Yuan <yingbo.com@gmail.com>
4924 Vinodha Ramasamy <vinodha@google.com>
4926 * cgraph.c (cgraph_edge): Handle inconsistent counts when setting
4928 * value-prof.c (check_counter): Fix the counter if
4929 flag_profile_correction is true.
4930 (tree_divmod_fixed_value_transform, tree_mod_pow2_value_transform,
4931 tree_mod_subtract_transform):
4932 Follow check_counter parameter change.
4933 * common.opt (fprofile-correction): New option.
4935 * profile.h: Likewise.
4936 * profile.c (edge_info, EDGE_INFO): Moved to new file profile.h.
4937 (sum_edge_counts, is_edge_inconsistent, correct_negative_edge_counts,
4938 is_inconsistent, set_bb_counts, read_profile_edge_counts): New
4940 (compute_branch_probabilities): Refactored. Invokes mcf_smooth_cfg if
4941 flag_profile_correction is set.
4943 2008-08-18 Richard Sandiford <rdsandiford@googlemail.com>
4945 * rtlanal.c (subreg_offset_representable_p): Check HARD_REGNO_MODE_OK.
4947 2008-08-18 Tomas Bily <tbily@suse.cz>
4949 * tree.h (IS_CONVERT_EXPR_CODE_P): Renamed to CONVERT_EXPR_CODE_P.
4950 * tree-ssa-threadedge.c (simplify_control_stmt_condition): Use
4952 * tree-data-ref.c (split_constant_offset_1): Likewise.
4953 * tree-inline.c (estimate_operator_cost): Use CASE_CONVERT.
4954 * tree-sra.c (sra_walk_expr): Likewise.
4955 * matrix-reorg.c (ssa_accessed_in_assign_rhs): Likewise.
4956 * tree-ssa-loop-niter.c (expand_simple_operations): Likewise.
4957 * gimple.h (gimple_assign_cast_p): Use CONVERT_EXPR_CODE_P.
4958 * tree-ssa-structalias.c (find_func_aliases, find_func_aliases):
4960 * gimple.c (gimple_assign_unary_nop_p): Likewise.
4961 * tree-vect-transform.c (vectorizable_type_demotion)
4962 (vectorizable_type_promotion): Likewise.
4963 * tree-inline.c (expand_call_inline):
4964 * tree-ssa-forwprop.c (get_prop_source_stmt, can_propagate_from)
4965 (forward_propagate_addr_expr_1, forward_propagate_comparison)
4966 (tree_ssa_forward_propagate_single_use_vars): Likewise.
4967 * expr.c (expand_expr_real_1): Likewise.
4968 * tree-ssa-dom.c (hashable_expr_equal_p, iterative_hash_hashable_expr)
4969 (gimple_assign_unary_useless_conversion_p): Likewise.
4970 * tree-stdarg.c (execute_optimize_stdarg): Likewise.
4971 * tree-ssa-ccp.c (ccp_fold, fold_gimple_assign): Likewise.
4972 * fold-const.c (fold_unary): Likewise.
4973 * tree.h (CONVERT_EXPR_P): Likewise.
4974 * tree.c (simple_cst_equal, iterative_hash_expr): Likewise.
4975 * tree-ssa-loop-im.c (rewrite_bittest): Likewise.
4977 (register_edge_assert_for_2, extract_range_from_unary_expr)
4978 (register_edge_assert_for_1): Likewise.
4980 2008-08-18 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
4982 * real.h (dconst_e, dconst_third, dconst_sqrt2, dconst_e_ptr,
4983 dconst_third_ptr, dconst_sqrt2_ptr): Declare.
4984 (enum real_value_const): Delete.
4985 (get_real_const): Delete.
4986 * real.c (get_real_const): Delete.
4987 (dconst_e_ptr): Define.
4988 (dconst_third_ptr): Define.
4989 (dconst_sqrt2_ptr): Define.
4990 * builtins.c: Update all callers.
4992 2008-08-18 Richard Guenther <rguenther@suse.de>
4994 * tree-ssa-reassoc.c (reassociate_bb): Properly reset the
4995 statement iterator after statement removal.
4997 2008-08-18 Andreas Tobler <a.tobler@schweiz.org>
4999 * config/rs6000/driver-rs6000.c (detect_caches_freebsd): New function.
5000 (detect_processor_freebsd): Likewise.
5001 (host_detect_local_cpu): Call newly added functions for FreeBSD.
5003 2008-08-18 Richard Guenther <rguenther@suse.de>
5005 * tree-cfg.c (verify_types_in_gimple_assign): Verify copies
5006 and loads have the correct types.
5008 2008-08-18 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
5011 * c-opts.c (cpp_opts): Remove static.
5012 * c-parser.c (cpp_opts): Declare it extern.
5013 (disable_extension_diagnostics): Handle cpp options.
5014 (enable_extension_diagnostics): Likewise.
5016 2008-08-18 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
5018 * diagnostics.c (permerror_at): Rename as permerror.
5019 (permerror): Delete.
5020 * toplev.h: Likewise.
5022 2008-08-18 Richard Guenther <rguenther@suse.de>
5024 * passes.c (init_optimization_passes): Remove cleanup_cfg1,
5025 sdse1 and addressables2 passes. Replace dce1 with cddce1.
5026 Move call_cdce before build_alias. Move copyrename2,
5027 cunrolli and ccp2 beafore build_alias. Re-add addressable2
5028 right after final inlining.
5029 * tree-cfg.c (build_gimple_cfg): Do not dump function here.
5030 (pass_build_cfg): But instead via TODO_dump_func.
5032 2008-08-18 Richard Guenther <rguenther@suse.de>
5034 * tree-sra.c (generate_element_init_1): Deal with NULL constructor
5036 (scalarize_init): If we failed to generate some initializers
5037 do not generate zeros for not instantiated members. Instead
5038 rely on the copy out.
5039 * tree-ssa-operands.c (get_addr_dereference_operands): Warn
5040 about missing flow-sensitive alias info only if we have
5043 2008-08-17 Nick Clifton <nickc@redhat.com>
5045 * doc/extend.texi (Function Attributes): Fix typo in description
5046 if hot function attribute.
5048 2008-08-17 Daniel Jacobowitz <dan@codesourcery.com>
5049 Richard Sandiford <rdsandiford@googlemail.com>
5051 * doc/install.texi (--with-mips-plt): Document.
5052 * doc/invoke.texi (-mplt, -mno-plt): Document.
5053 * config.gcc (mips*-*-*): Add mips-plt to supported_defaults
5054 and handle ${with_mips_plt}.
5055 * config/mips/mips.opt (mplt): New option.
5056 * config/mips/mips.h (TARGET_ABICALLS_PIC0): New macro.
5057 (TARGET_ABICALLS_PIC2): Likewise.
5058 (TARGET_GPWORD): Return false for TARGET_ABSOLUTE_ABICALLS.
5059 (OPTION_DEFAULT_SPECS): Add a mips-plt entry.
5060 (ASM_SPEC): Use !mabi=* instead of !mabi*.
5061 (MIPS_CALL): Use TARGET_ABICALLS_PIC2 instead of TARGET_ABICALLS
5062 to decide whether to output ".option picX" directives.
5063 * config/mips/linux.h (SUBTARGET_ASM_SPEC): Remove -mabi=64 handling.
5064 Pass -call_nonpic rather than -KPIC for -mplt.
5065 (BASE_DRIVER_SELF_SPECS): Remove -mplt if -mno-shared is not present
5066 on the command line. Also remove it when -mabi=64 is used without
5068 * config/mips/linux64.h (SUBTARGET_ASM_SPEC): Delete.
5069 * config/mips/mips.c (mips_use_pic_fn_addr_reg_p): Handle
5070 TARGET_ABICALLS_PIC0.
5071 (mips_classify_symbol): Use TARGET_ABICALLS_PIC2 instead of
5073 (mips16_build_function_stub): Only output ".option pic" directives
5074 and PIC stubs if TARGET_ABICALLS_PIC2. Call through $25 instead of $1.
5075 (mips16_build_call_stub): Fix comment and remove redundant
5076 ".set at"/"set .noat" directives.
5077 (mips_function_rodata_section): Use the default behaviour for
5078 TARGET_ABSOLUTE_ABICALLS.
5079 (mips_file_start): Emit ".option pic0" for TARGET_ABICALLS_PIC0.
5080 (mips_global_pointer): Handle TARGET_ABICALLS_PIC0.
5081 (mips_restore_gp): Do nothing if the current function doesn't use
5083 (mips_expand_prologue): Only save $gp if the current function uses it.
5084 Use a normal move for TARGET_ABICALLS_PIC0.
5085 (mips_override_options): Only set flag_pic if TARGET_ABICALLS_PIC2.
5087 2008-08-17 Richard Sandiford <rdsandiford@googlemail.com>
5089 * config/mips/mips.c (mips_save_reg_p): Don't short-circuit rest
5090 of function when handling GLOBAL_POINTER_REGNUM.
5092 2008-08-16 Eric Botcazou <ebotcazou@adacore.com>
5095 * common.opt (-fstack-check): Do not declare the variable here.
5096 (-fstack-check=): New option variant.
5097 * doc/invoke.texi (Code Gen Options): Document it.
5098 * expr.h (STACK_OLD_CHECK_PROTECT): New macro.
5099 (STACK_CHECK_PROTECT): Bump to 3 pages if DWARF-2 EH is used.
5100 (STACK_CHECK_STATIC_BUILTIN): New macro.
5101 * doc/tm.texi (Stack Checking): Document STACK_CHECK_STATIC_BUILTIN.
5102 * opts.c: Include expr.h.
5103 (common_handle_option) <OPT_fold_stack_check_>: New case.
5104 <OPT_fstack_check>: Likewise.
5105 * calls.c (initialize_argument_information): Use TYPE_SIZE_UNIT
5106 consistently in the test for variable-sized types. Adjust for
5107 new behaviour of flag_stack_check.
5108 * explow.c: Include except.h.
5109 (allocate_dynamic_stack_space): Do not take into account
5110 STACK_CHECK_MAX_FRAME_SIZE for static builtin stack checking.
5111 * function.c (gimplify_parameters): Use DECL_SIZE_UNIT in the test
5112 for variable-sized parameters. Treat all parameters whose size is
5113 greater than STACK_CHECK_MAX_VAR_SIZE as variable-sized if generic
5114 stack checking is enabled.
5115 * gimplify.c (gimplify_decl_expr): Treat non-static objects whose
5116 size is greater than STACK_CHECK_MAX_VAR_SIZE as variable-sized
5117 if generic stack checking is enabled.
5118 (expand_function_end): Adjust for new behaviour of flag_stack_check.
5119 * reload1.c (reload): Likewise.
5120 * stmt.c (expand_decl): Assert that all automatic variables have
5121 fixed size at this point and remove dead code.
5122 * flags.h (stack_check_type): New enumeration type.
5123 (flag_stack_check): Declare.
5124 * toplev.c (flag_stack_check): New global variable.
5125 * Makefile.in (opts.o): Add dependency on EXPR_H.
5126 (explow.o): Add dependency on except.h.
5128 2008-08-16 Andy Hutchinson <hutchinsonandy@aim.com>
5130 * config/avr/avr.c (avr_override_options): Reduce value of
5131 PARAM_INLINE_CALL_COST.
5133 2008-08-15 Eric Botcazou <ebotcazou@adacore.com>
5135 * expr.c (expand_expr_real_1) <VIEW_CONVERT_EXPR>: When converting
5136 to BLKmode, try to fetch an inner memory reference. Use 'mode' in
5137 lieu of TYPE_MODE (type) throughout.
5139 2008-08-15 Joseph Myers <joseph@codesourcery.com>
5141 * config/arm/arm.c (add_minipool_backward_ref): Check for
5142 8-byte-aligned entries in second case of forcing insertion after a
5143 particular entry. Change third case to avoid inserting
5144 non-8-byte-aligned entries before 8-byte-aligned ones.
5146 2008-08-15 Richard Guenther <rguenther@suse.de>
5148 * tree-ssa-ccp.c (maybe_fold_offset_to_reference): Do not
5149 strip components for unknown size accesses.
5151 2008-08-15 Wolfgang Gellerich <gellerich@de.ibm.com>
5153 * config/s390/2097.md New file.
5154 * config/s390/s390.md ("z10prop" attribute): Define none,
5155 z10_super, z10_super_E1, z10_super_A1, z10_super_c,
5156 z10_super_c_E1, z10_fwd, z10_fwd_A1, z10_fwd_A3, z10_fwd_E1,
5157 z10_rec, z10_fr, z10_fr_A3, z10_fr_E1, z10_c, and z10_cobra as
5158 possible values and apply them to insns as appropriate.
5159 ("type" attribute): Removed itof and added ftrunctf,ftruncdf,
5160 ftruncsd, ftruncdd, itoftf, itofdf, itofsf, itofdd, itoftd,
5161 fdivdd, fdivtd, floaddd, floadsd, fmuldd, fmultd, fsimpdd,
5162 fsimpsd, fsimptd, fstoredd, fstoresd, ftoidfp as possible values.
5163 ("bfp" mode attribute): Removed. Every occurence replaced
5165 * config/s390/s390.c (struct "z10_cost"): Updated entries.
5166 * config/s390/2084.md (insn_reservation "x_itof"): Updated
5169 2008-08-14 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
5172 * c-parser.c (c_lex_one_token): Do not store the canonical spelling
5175 2008-08-14 Dorit Nuzman <dorit@il.ibm.com>
5177 * tree-vect-transform.c (vect_create_epilog_for_reduction): Takes an
5178 additional argument. Support reduction when duplication is needed due
5179 to data-types of different sizes in the loop.
5180 (get_initial_def_for_induction): Fix printout.
5181 (vect_get_vec_def_for_stmt_copy): Support case where the
5182 vec_stmt_for_operand is a phi node.
5183 (vectorizable_reduction): Support reduction when duplication is needed
5184 due to data-types of different sizes in the loop.
5185 (vectorizable_call): Remove restriction to not vectorize in case we
5186 have data-types of different sizes in the loop.
5187 (vectorizable_conversion): Likewise.
5188 (vectorizable_operation): Likewise.
5189 (vectorizable_type_demotion): Likewise.
5190 (vectorizable_type_promotion): Likewise.
5191 (vectorizable_induction): Add restriction to not vectorize in case
5192 we have data-types of different sizes in the loop.
5194 2008-08-14 Christophe Saout <christophe@saout.de>
5195 Uros Bizjak <ubizjak@gmail.com>
5198 * config/i386/sse.md (vec_concatv2di): Remove movlps alternative.
5199 (*vec_concatv2di_rex64_sse4_1): Ditto.
5200 (*vec_concatv2di_rex64_sse): Ditto.
5202 2008-08-14 Jakub Jelinek <jakub@redhat.com>
5205 * fold-const.c (fold_widened_comparison): Do not allow
5206 sign changes that change the result even if shorter type
5207 is wider than arg1_unw's type.
5209 2008-08-13 Kazu Hirata <kazu@codesourcery.com>
5211 * gcc.dg/arm-g2.c, gcc.dg/arm-mmx-1.c, gcc.dg/arm-scd42-2.c:
5212 Skip if the multilib testing specifies -march that does not
5213 agree with the one specified in the testcase.
5215 2008-08-13 Joseph Myers <joseph@codesourcery.com>
5217 * config/sparc/sparc.c (emit_soft_tfmode_cvt): Explicitly sign or
5218 zero extend SImode values being converted to TFmode before passing
5221 2008-08-13 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
5223 * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Predefine
5224 __PPU__ when targeting the Cell/B.E. PPU processor.
5226 2008-08-13 Eric Botcazou <ebotcazou@adacore.com>
5228 * gimple.h (gimple_call_set_chain): Accept SSA variables.
5229 * tree-ssa-pre.c (create_component_ref_by_pieces_1) <CALL_EXPR>:
5230 Rematerialize the static chain, if any.
5231 * tree-ssa-sccvn.c (copy_reference_ops_from_call): Also copy the
5234 2008-08-13 H.J. Lu <hongjiu.lu@intel.com>
5236 * dwarf2out.c (dwarf_stack_op_name): Remove prototype.
5237 (new_loc_descr): Likewise.
5238 (add_loc_descr): Likewise.
5239 (size_of_loc_descr): Likewise.
5240 (size_of_locs): Likewise.
5241 (output_loc_operands): Likewise.
5242 (output_loc_sequence): Likewise.
5243 (new_reg_loc_descr): New.
5244 (build_cfa_loc): Use it.
5245 (build_cfa_aligned_loc): Likewise.
5246 (one_reg_loc_descriptor): Likewise.
5247 (based_loc_descr): Likewise.
5249 2008-08-13 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
5252 * doc/invoke.texi (Wmain): Update.
5253 * c-decl.c (start_decl): warn_main is only 0 or 1.
5254 (start_function): Likewise. Fix formatting.
5255 (finish_function): Delete redundant warning.
5256 * c.opt (Wmain): Add Var(warn_main) and Init(-1).
5257 * c-opts (c_common_handle_option): -Wall only has effect if
5258 warn_main is uninitialized. OPT_Wmain is automatically
5259 handled. -pedantic also enables Wmain.
5260 (c_common_post_options): Handle all logic for Wmain here.
5261 * c-common.c (warn_main): Delete.
5262 (check_main_parameter_types): Make pedwarns conditional on OPT_Wmain.
5263 * c-common.h (warn_main): Delete.
5265 2008-08-13 H.J. Lu <hongjiu.lu@intel.com>
5268 * expr.c (emit_group_store): Allocate stack temp with the
5269 largest alignment when copying from register to stack.
5271 2008-08-13 Richard Guenther <rguenther@suse.de>
5273 * tree.h (maybe_fold_offset_to_address): Declare.
5274 * tree-ssa-ccp.c (surely_varying_stmt_p): Fix typo in last commit.
5275 (ccp_fold): Handle pointer conversions the same as fold_stmt.
5276 Likewise for POINTER_PLUS_EXPR.
5277 (maybe_fold_offset_to_reference): Enable disabled code.
5278 (maybe_fold_offset_to_address): New function.
5279 (fold_stmt_r): Use it.
5280 (fold_gimple_assign): Likewise.
5281 * gimplify.c (gimplify_conversion): Use maybe_fold_offset_to_address.
5282 (gimplify_expr): Likewise.
5284 2008-08-13 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
5286 * toplev.h (pedwarn_at): Fix declaration.
5288 2008-08-13 Joseph Myers <joseph@codesourcery.com>
5290 * config/sparc/linux64.h (LINK_ARCH32_SPEC, LINK_ARCH64_SPEC,
5291 LINK_SPEC): Use %R in -Y P argument.
5293 2008-08-13 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
5296 * diagnostic.c (pedwarn_at): New.
5297 * toplev.h (pedwarn_at): Declare.
5298 * c-tree.h (build_enumerator): Update declaration.
5299 * c-decl.c (finish_enum): Update comment.
5300 (build_enumerator): Take a location parameter. Give a pedwarn but do
5301 not perform any conversion.
5302 * c-parser.c (c_parser_enum_specifier): Set correct location for
5305 2008-08-13 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
5308 * c-common.c (conversion_warning): Use a switch. Ignore boolean
5309 expressions except for conversions to signed:1 bitfields. Handle
5310 COND_EXPR with constant operands.
5312 2008-08-13 Richard Guenther <rguenther@suse.de>
5314 PR tree-optimization/15255
5315 * tree-ssa-reassoc.c (linearize_expr_tree): Declare.
5316 (struct oecount_s): New struct and VEC types.
5318 (oecount_hash): New function.
5319 (oecount_eq): Likewise.
5320 (oecount_cmp): Likewise.
5321 (zero_one_operation): New function.
5322 (build_and_add_sum): Likewise.
5323 (undistribute_ops_list): Perform un-distribution of multiplication
5324 and division on the chain of summands.
5325 (should_break_up_subtract): Also break up subtracts for factors.
5326 (reassociate_bb): Delete dead visited statements.
5327 Call undistribute_ops_list. Re-sort and optimize if it did something.
5328 * passes.c (init_optimization_passes): Move DSE before
5330 * tree-ssa-loop-niter.c (stmt_dominates_stmt_p): Correctly handle
5333 2008-08-12 Janis Johnson <janis187@us.ibm.com>
5335 * doc/invoke.texi (-fipa-pta): Say the option is experimental.
5337 * doc/invoke.texi: Revert unintended checkin.
5339 2008-08-12 Nathan Froyd <froydnj@codesourcery.com>
5342 * gcc.c (include_spec_function): Tweak call to find_a_file.
5344 2008-08-12 Jakub Jelinek <jakub@redhat.com>
5347 * expr.c (expand_expr_real_1): Handle TRUTH_ANDIF_EXPR
5348 and TRUTH_ORIF_EXPR.
5349 * dojump.c (do_jump): Likewise.
5351 PR tree-optimization/37084
5352 * tree-inline.c (copy_bb): Call gimple_regimplify_operands
5353 if id->regimplify, don't assume stmt is a cast assignment.
5355 2008-08-12 Anatoly Sokolov <aesok@post.ru>
5357 * final.c (final_scan_insn): Use app_enable/app_disable functions.
5359 2008-08-12 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
5362 * builtins.c (do_mpfr_bessel_n): Fix copy-and-paste bug introduced
5365 2008-08-12 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
5367 * defaults.h (TARGET_FLOAT_FORMAT): Remove.
5368 (UNKNOWN_FLOAT_FORMAT, IEEE_FLOAT_FORMAT, VAX_FLOAT_FORMAT): Remove.
5370 * config/alpha/alpha.h (TARGET_FLOAT_FORMAT): Remove.
5371 * config/iq2000/iq2000.h (TARGET_FLOAT_FORMAT): Remove.
5372 * config/pdp11/pdp11.h (TARGET_FLOAT_FORMAT): Remove.
5373 * config/score/score.h (TARGET_FLOAT_FORMAT): Remove.
5374 * config/vax/vax.h (TARGET_FLOAT_FORMAT): Remove.
5376 * doc/tm.texi (Storage Layout): Remove documentation for
5377 TARGET_FLOAT_FORMAT.
5379 * simplify-rtx.c (simplify_binary_operation_1): Replace
5380 TARGET_FLOAT_FORMAT check by appropriate HONOR_... checks.
5382 2008-08-12 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
5384 * real.h (struct real_format): New member has_sign_dependent_rounding.
5385 * real.c (ieee_single_format, mips_single_format, motorola_single_format,
5386 spu_single_format, ieee_double_format, mips_double_format,
5387 motorola_double_format, ieee_extended_motorola_format,
5388 ieee_extended_intel_96_format, ieee_extended_intel_128_format,
5389 ieee_extended_intel_96_round_53_format, ibm_extended_format,
5390 mips_extended_format, ieee_quad_format, mips_quad_format,
5391 vax_f_format, vax_d_format, vax_g_format): Initialize it.
5392 * config/pdp11/pdp11.c (pdp11_f_format, pdp11_d_format): Likewise.
5394 * defaults.h (MODE_HAS_NANS, MODE_HAS_INFINITIES,
5395 MODE_HAS_SIGNED_ZEROS, MODE_HAS_SIGN_DEPENDENT_ROUNDING): Remove.
5396 * config/spu/spu.h (MODE_HAS_NANS, MODE_HAS_INFINITIES,
5397 MODE_HAS_SIGN_DEPENDENT_ROUNDING): Remove.
5398 (ROUND_TOWARDS_ZERO): Likewise.
5400 * real.h (REAL_MODE_FORMAT): Protect MODE against macro expansion.
5401 (FLOAT_MODE_FORMAT): New macro.
5402 (REAL_MODE_FORMAT_COMPOSITE_P): Remove, replace by ...
5403 (MODE_COMPOSITE_P): ... this new macro.
5404 (MODE_HAS_NANS, MODE_HAS_INFINITIES, MODE_HAS_SIGNED_ZEROS,
5405 MODE_HAS_SIGN_DEPENDENT_ROUNDING): New macros.
5406 * machmode.h (GET_MODE_INNER): Cast result to enum machine_mode.
5408 * flags.h: Include "real.h".
5410 * fold-const.c (const_binop): Use MODE_COMPOSITE_P instead of
5411 REAL_MODE_FORMAT_COMPOSITE_P.
5412 * simplify-rtx.c (simplify_const_binary_operation): Likewise.
5414 * doc/tm.texi (Storage Layout): Remove documentation of
5415 MODE_HAS_NANS, MODE_HAS_INFINITIES, MODE_HAS_SIGNED_ZEROS,
5416 MODE_HAS_SIGN_DEPENDENT_ROUNDING. Update documentation of
5417 ROUND_TOWARDS_ZERO and LARGEST_EXPONENT_IS_NORMAL to clarify
5418 they only apply to libgcc2.a.
5420 2008-08-12 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
5422 * config/spu/float_disf.c: New file.
5423 * config/spu/float_unsdisf.c: New file.
5424 * config/spu/t-elf (LIB2FUNCS_STATIC_EXTRA): Add them.
5425 (LIB2FUNCS_EXCLUDE): Define.
5427 2008-08-12 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
5428 Trevor Smigiel <trevor_smigiel@playstation.sony.com>
5430 * real.h (struct real_format): New member round_towards_zero.
5431 * real.c (round_for_format): Respect fmt->round_towards_zero.
5432 (ieee_single_format, mips_single_format, motorola_single_format,
5433 spu_single_format, ieee_double_format, mips_double_format,
5434 motorola_double_format, ieee_extended_motorola_format,
5435 ieee_extended_intel_96_format, ieee_extended_intel_128_format,
5436 ieee_extended_intel_96_round_53_format, ibm_extended_format,
5437 mips_extended_format, ieee_quad_format, mips_quad_format,
5438 vax_f_format, vax_d_format, vax_g_format): Initialize it.
5439 * config/pdp11/pdp11.c (pdp11_f_format, pdp11_d_format): Likewise.
5441 * builtins.s (do_mpfr_arg1): Consider round_towards_zero member of
5442 real_format to choose rounding mode when calling MPFR functions.
5443 (do_mpfr_arg2, do_mpfr_arg3, do_mpfr_sincos): Likewise.
5444 (do_mpfr_bessel_n, do_mpfr_remquo, do_mpfr_lgamma_r): Likewise.
5446 * real.h (real_to_decimal_for_mode): Add prototype.
5447 * real.c (real_to_decimal_for_mode): Renames old real_to_decimal.
5448 Respect target rounding mode when generating decimal representation.
5449 (real_to_decimal): New stub for backwards compatibility.
5450 * c-cppbuiltin.c (builtin_define_with_hex_fp_value): Use
5451 real_to_decimal_for_mode instead of real_to_decimal.
5453 * config/spu/spu.md ("floatdisf2", "floatunsdisf2"): New.
5455 2008-08-12 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
5456 Trevor Smigiel <trevor_smigiel@playstation.sony.com>
5458 * real.c (spu_single_format): New variable.
5459 * real.h (spu_single_format): Declare.
5461 * config/spu/spu.c (spu_override_options): Install SFmode format.
5462 (spu_split_immediate): Use integer mode to operate on pieces of
5463 floating-point values in all cases.
5465 * config/spu/spu.md (UNSPEC_FLOAT_EXTEND, UNSPEC_FLOAT_TRUNCATE): New.
5466 ("extendsfdf2"): Use UNSPEC_FLOAT_EXTEND instead of FLOAT_EXTEND.
5467 ("truncdfsf2"): Use UNSPEC_FLOAT_TRUNCATE instead of FLOAT_TRUNCATE.
5469 2008-08-12 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
5471 * config/spu/spu.c (spu_safe_dma): Respect TARGET_SAFE_DMA.
5473 2008-08-12 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
5475 * config/spu/spu.h (DWARF_FRAME_RETURN_COLUMN): Define.
5477 2008-08-12 Jakub Jelinek <jakub@redhat.com>
5480 * gimplify.c (gimplify_modify_expr_rhs): Test TREE_READONLY
5481 on the VAR_DECL instead of TYPE_READONLY on its type.
5483 2008-08-12 Ira Rosen <irar@il.ibm.com>
5485 * tree-vectorizer.c: Depend on langhooks.h.
5486 (supportable_widening_operation): Add two arguments. Support double
5488 (supportable_narrowing_operation): Likewise.
5489 * tree-vectorizer.h (supportable_widening_operation): Add two
5491 (supportable_narrowing_operation): Likewise.
5492 * tree-vect-patterns.c (vect_recog_widen_mult_pattern) : Call
5493 supportable_widening_operation with correct arguments.
5494 * tree-vect-transform.c (vectorizable_conversion): Likewise.
5495 (vectorizable_type_demotion): Support double type conversions.
5496 (vectorizable_type_promotion): Likewise.
5497 * Makefile.in (tree-vectorizer.o): Depend on langhooks.h.
5499 2008-08-11 Michael Matz <matz@suse.de>
5501 * i386/i386.c (override_options): Move initialisation from
5502 flag_schedule_insns_after_reload to here from ...
5503 (optimization_options): ... here.
5505 2008-08-11 Jakub Jelinek <jakub@redhat.com>
5507 PR rtl-optimization/36998
5508 * dwarf2out.c (compute_barrier_args_size_1,
5509 compute_barrier_args_size): Temporarily remove assertions.
5511 2008-08-10 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
5514 * tree-ssa.c (struct walk_data): Add new flag
5515 warn_possibly_uninitialized.
5516 (warn_uninitialized_var): Use it.
5517 (warn_uninitialized_vars): New.
5518 (execute_early_warn_uninitialized): Call it.
5519 (execute_late_warn_uninitialized): Likewise.
5521 2008-08-09 Andrew Pinski <andrew_pinski@playstation.sony.com>
5524 * reload1.c (gen_reload): Guard calls to get_secondary_mem
5527 2008-08-09 Jan Hubicka <jh@suse.cz>
5530 * optabs.c (maybe_emit_unop_insn): Remove produced code if
5532 (expand_fix): Be prepared for expansion to fail.
5533 (expand_sfix_optab): Remove instructions if expansion failed.
5535 2008-08-09 Anatoly Sokolov <aesok@post.ru>
5537 * config/avr/avr.c (avr_mcu_types): Move the AT43USB320 device to
5539 * config/avr/avr.h (CRT_BINUTILS_SPECS): (Ditto.).
5540 * config/avr/t-avr (MULTILIB_MATCHES): (Ditto.).
5542 2008-08-09 Richard Sandiford <rdsandiford@googlemail.com>
5544 * config.gcc (mips*-*-linux*, mips64*-*-linux*): Add
5545 mips/t-libgcc-mips16 to tmake_file.
5546 * config/mips/mips-protos.h (mips_call_type): New enum.
5547 (mips_pic_base_register, mips_got_load): Declare.
5548 (mips_restore_gp): Take an rtx argument.
5549 (mips_use_pic_fn_addr_reg_p): Declare.
5550 (mips_expand_call): Replace the sibcall_p argument with
5551 a mips_call_type argument. Add a lazy_p parameter.
5552 (mips_split_call): Declare.
5553 * config/mips/mips.h (MIPS16_PIC_TEMP_REGNUM): New macro.
5554 (MIPS16_PIC_TEMP): Likewise.
5555 (reg_class): Delete M16_NA_REGS.
5556 (REG_CLASS_NAMES, REG_CLASS_CONTENTS): Update accordingly.
5557 (SYMBOL_FLAG_BIND_NOW, SYMBOL_REF_BIND_NOW_P): New macros.
5558 (mips_split_hi_p): Declare.
5559 * config/mips/mips.c (mips_split_hi_p): New array.
5560 (mips_regno_to_class): Change M16_NA_REGS entries to M16_REGS.
5561 (mips_got_symbol_type_p): New function.
5562 (mips_global_symbol_p): Check SYMBOL_REF_EXTERNAL_P.
5563 (mips16_stub_function_p): New function.
5564 (mips16_local_function_p): Likewise.
5565 (mips_use_pic_fn_addr_reg_p): Likewise.
5566 (mips_cannot_force_const_mem): Return false for HIGHs.
5567 Extend CONST_INT and symbolic handling to MIPS16, using
5568 mips_symbol_insns to check that the base symbol type is a
5569 legitimate constant. Reject GOT-based constants if
5570 TARGET_MIPS16_PCREL_LOADS.
5571 (mips_const_insns): Check targetm.cannot_force_const_mem when
5572 decomposing a symbolic base and a large offset.
5573 (mips_emit_call_insn): Add ORIG_ADDR and ADDR parameters.
5574 When calling a function that needs $25 from MIPS16 code,
5575 move the target address into $25 separately and add a USE
5577 (mips16_gp_pseudo_reg): Insert the initializer immediately
5578 before the first real insn.
5579 (mips_pic_base_register, mips_got_load): New functions.
5580 (mips_split_symbol): Generalize the name of the LO_SUM_OUT
5581 parameter to LOW_OUT. Say that it can be any valid SET_SRC
5582 when splitting a load-address operation. Split SYMBOL_GOT_DISP
5583 constants and highs of SYMBOL_GOT_PAGE_OFST constants.
5584 (mips_call_tls_get_addr): Update the call to mips_expand_call,
5585 also passing NULL_RTX rather than const0_rtx as the aux argument.
5586 (mips_rewrite_small_data_p): Check mips_lo_relocs and mips_split_p
5587 instead of TARGET_EXPLICIT_RELOCS.
5588 (mips_ok_for_lazy_binding_p): Check SYMBOL_REF_BIND_NOW_P.
5589 (mips_load_call_address): Replace the sibcall_p argument with
5590 a mips_call_type argument. Use mips_got_load.
5591 (mips16_local_alias): New structure.
5592 (mips16_local_aliases): New variable.
5593 (mips16_local_aliases_hash): New function.
5594 (mips16_local_aliases_eq): Likewise.
5595 (mips16_local_alias): Likewise.
5596 (mips16_stub_function): Likewise.
5597 (mips16_build_function_stub): Create a local alias for the target
5598 function. Handle TARGET_ABICALLS. For PIC abicalls, emit a
5599 .cpload directive and an R_MIPS_NONE relocation for the target
5600 function, then load the alias rather than the function itself.
5601 Wrap the non-PIC abicalls version in ".option pic0/.option pic2".
5602 (mips16_copy_fpr_return_value): Use mips16_stub_function and
5603 mips_expand_call. Set SYMBOL_REF_BIND_NOW on the symbol.
5604 (mips16_build_call_stub): Replace the FN parameter with an
5605 FN_PTR parameter. Force the address into a register if it
5606 isn't a call_insn_operand; don't rely on the caller to do this.
5607 If a call to a locally-defined and locally-binding MIPS16
5608 function must be made indirectly, redirect the call to the
5609 function's local alias. Use mips16_stub_function_p,
5610 mips16_stub_function, mips_expand_call and use_reg.
5611 Set SYMBOL_FLAG_BIND_NOW on __mips_call_* symbols.
5612 Use explicit %hi and %lo accesses where possible.
5613 Use MIPS_CALL to generate the correct code form of a
5614 jal instruction. Add clobbers of $18 instead of uses.
5615 Update the call to mips_emit_call_insn.
5616 (mips_expand_call): Replace the SIBCALL_P argument with a
5617 mips_call_type argument and handle the new MIPS_CALL_EPILOGUE value.
5618 Take a LAZY_P parameter. Call mips16_build_call_stub first,
5619 allowing it to modify the call address. Update the calls to
5620 mips_load_call_address and mips_emit_call_insn.
5621 (mips_split_call): New function.
5622 (mips_init_relocs): Clear mips_split_hi_p. Only use %gp_rel if
5623 !TARGET_MIPS16. Split SYMBOL_GOT_DISP, and the high parts of
5624 SYMBOL_GOT_PAGE_OFST, for MIPS16 code.
5625 (mips_global_pointer): Check mips16_cfun_returns_in_fpr_p.
5626 (mips_extra_live_on_entry): Include MIPS16_PIC_TEMP_REGNUM
5628 (mips_cprestore_slot): New function.
5629 (mips_restore_gp): Take a TEMP parameter. Handle TARGET_MIPS16
5630 and use mips_cprestore_slot.
5631 (mips_output_function_prologue): Handle TARGET_MIPS16 for
5633 (mips_emit_loadgp): Move into MIPS16_PIC_TEMP for MIPS16,
5634 then use a copygp_mips16 instruction to set up $28.
5635 (mips_expand_prologue): Initialize the cprestore slot for MIPS16 too.
5636 (mips16_lay_out_constants): Call split_all_insns_noflow.
5637 (mips_reorg_process_insns): Explicitly set all_noreorder_p to
5638 false if TARGET_MIPS16.
5639 (mips_reorg): Don't call vr4130_align_insns if TARGET_MIPS16.
5640 (mips_output_mi_thunk): Use mips_got_symbol_type_p. Use the
5641 mips_dangerous_for_la25_p approach for MIPS16 PIC calls too.
5642 (mips_set_mips16_mode): Always set MASK_EXPLICIT_RELOCS for
5643 MIPS16 code. Allow MIPS16 o32 PIC.
5644 (mips_override_options): Allow MIPS16 o32 PIC.
5645 * config/mips/mips.md: Lower CONST_GP_P moves into register moves
5646 after reload if TARGET_USE_GOT.
5647 (UNSPEC_COPYGP): New constant.
5648 (length): Use a default length of 8 for MIPS16 GOT loads.
5649 (*got_disp<mode>): Check mips_split_p instead of TARGET_XGOT.
5650 (*got_page<mode>): Check mips_split_hi_p.
5651 (*got_disp<mode>, *got_page<mode>): Use mips_got_load.
5652 (unspec_got<mode>, unspec_call<mode>): New expanders.
5653 (load_got<mode>, load_call<mode>): Remove the length attributes.
5654 Use a got attribute instead of a type attribute.
5655 (copygp_mips16): New insn.
5656 (restore_gp): Add a scratch clobber and pass it to mips_restore_gp.
5657 (load_call<mode>): Use a "d" constraint instead of an "r" constraint.
5658 (sibcall, sibcall_value, call, call_value): Update the calls
5659 to mips_expand_call.
5660 (call_internal, call_value_internal): Use mips_split_call.
5661 (call_value_multiple_internal): Likewise.
5662 (call_split): Move after call_internal (the insn it is split from).
5663 (call_internal_direct, call_value_internal_direct): Turn into
5664 define_insn_and_splits. Split if TARGET_SPLIT_CALLS.
5665 (call_direct_split, call_value_direct_split): New patterns.
5666 * config/mips/constraints.md (c): Handle TARGET_MIPS16 first
5667 and use M16_REGS instead of M16_NA_REGS.
5668 * config/mips/predicates.md (const_call_insn_operand): Replace
5669 the TARGET_ABSOLUTE_ABICALLS-based check with a more general
5670 mips_use_pic_fn_addr_reg_p check.
5671 (move_operand): Reject HIGHs if mips_split_hi_p.
5672 * config/mips/mips16.S: Assembly as empty if the ABI is not suitable.
5673 (__mips16_floatunsisf): Inline __mips16_floatsisf.
5674 (CALL_STUB_NO_RET, CALL_STUB_REG): Copy the target register to $25.
5675 * config/mips/libgcc-mips16.ver: New file.
5676 * config/mips/t-libgcc-mips16 (SHLIB_MAPFILES): Add
5677 $(srcdir)/config/mips/libgcc-mips16.ver.
5679 2008-08-09 Richard Sandiford <rdsandiford@googlemail.com>
5681 * config/mips/mips.c (mips_unspec_address_offset): Move earlier
5683 (mips_unspec_address, mips_unspec_offset_high): Likewise.
5684 (mips_ok_for_lazy_binding_p, mips_load_call_address): Likewise.
5685 (mips16_cfun_returns_in_fpr_p): Likewise.
5687 2008-08-09 Richard Sandiford <rdsandiford@googlemail.com>
5689 * config/mips/mips.h (MASK_RETURN_ADDR): Expand commentary.
5690 * config/mips/linux-unwind.h (mips_fallback_frame_state): Add 2
5691 rather than 4 to PC.
5693 2008-08-09 Richard Sandiford <rdsandiford@googlemail.com>
5695 * config/mips/mips.h (STATIC_CHAIN_REGNUM): Remap to $15.
5696 (FUNCTION_PROFILER): Save the static chain pointer into $2
5697 beforehand and restore it aftewards.
5698 (TRAMPOLINE_TEMPLATE): Adjust accordingly. Load the target
5699 address directly into $25 and call the function through $25;
5700 do not clobber $3. Pad the DImode version to cover the space
5701 left by the deleted $25 <- $3 move.
5702 (TRAMPOLINE_SIZE): Adjust the size of the SImode version after
5703 the removal of the $25 <- $3 move.
5704 (INITIALIZE_TRAMPOLINE): Update offsets accordingly.
5705 * config/mips/sdemtk.h (FUNCTION_PROFILER): As for mips.h.
5707 2008-08-09 Richard Sandiford <rdsandiford@googlemail.com>
5708 Daniel Jacobowitz <dan@codesourcery.com>
5710 * config/mips/mips.h (FUNCTION_NAME_ALREADY_DECLARED): Delete.
5711 * config/mips/linux.h (ASM_DECLARE_FUNCTION_NAME): Delete.
5712 (ASM_DECLARE_FUNCTION_SIZE, FUNCTION_NAME_ALREADY_DECLARED): Delete.
5713 * config/mips/mips.c (mips_start_function_definition): New function.
5714 (mips_end_function_definition): Likewise.
5715 (mips_output_function_prologue): Use mips_start_function_definition.
5716 (mips_output_function_epilogue): Use mips_end_function_definition.
5717 (build_mips16_function_stub): Use mips_start_function_definition
5718 and mips_end_function_definition.
5719 (build_mips16_call_stub): Likewise.
5721 2008-08-09 Richard Guenther <rguenther@suse.de>
5723 * gimple.c (gimple_build_call_1): Deal with FUNCTION_DECL fn.
5724 * gimple.h (gimple_call_fn): Adjust comment.
5725 (gimple_call_set_fndecl): New function.
5726 (gimple_call_fndecl): Adjust for GIMPLE_CALL no
5727 longer having bare FUNCTION_DECL operand.
5728 (gimple_call_return_type): Likewise.
5729 * tree-cfg.c (verify_stmt): Verify function operand of a GIMPLE_CALL.
5731 * value-prof.c (gimple_divmod_fixed_value): Do not emit labels.
5732 (gimple_mod_pow2): Likewise.
5733 (gimple_mod_subtract): Likewise.
5734 (gimple_ic): Likewise.
5735 (gimple_stringop_fixed_value): Likewise.
5736 (gimple_indirect_call_to_profile): Fix for GIMPLE_CALL no
5737 longer having bare FUNCTION_DECL operand.
5738 * ipa-cp.c (ipcp_update_callgraph): Use gimple_call_set_fndecl.
5739 * omp-low.c (optimize_omp_library_calls): Likewise.
5740 * cgraphunit.c (update_call_expr): Likewise.
5741 * tree-ssa-math-opts.c (execute_cse_reciprocals): Likewise.
5742 (execute_convert_to_rsqrt): Likewise.
5743 * cfgexpand.c (gimple_to_tree): Simplify.
5744 (release_stmt_tree): Fix for GIMPLE_CALL no longer having
5745 bare FUNCTION_DECL operand.
5746 * tree-nested.c (init_tmp_var_with_call): Use gimple_call_return_type.
5747 (convert_gimple_call): Use gimple_call_fndecl.
5748 * c-common.c (c_warn_unused_result): Likewise.
5750 2008-08-09 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
5753 * c-typeck.c (digest_init): Call verify_sequence_points from here.
5754 (c_finish_return): Likewise.
5755 (c_start_case): Likewise.
5756 * c-common.c (warn_for_collisions_1): Use explicit location in warning.
5757 * c-parser.c (c_parser_condition): New. Call
5758 verify_sequence_points.
5759 (c_parser_paren_condition): Call c_parser_condition.
5760 (c_parser_for_statement): Call c_parser_condition.
5762 2008-08-09 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
5765 * diagnostic.def (DK_PEDWARN, DK_PERMERROR): New.
5766 * diagnostic.c (pedantic_warning_kind, permissive_error_kind):
5767 Moved from diagnostic.h
5768 (diagnostic_report_diagnostic): Return bool. Handle DK_PEDWARN and
5770 (emit_diagnostic): New.
5771 (warning0, pedwarn0): Delete.
5772 (warning, warning_at, pedwarn, permerror): Return bool.
5773 * diagnostic.h (pedantic_warning_kind, permissive_error_kind):
5774 Moved to diagnostic.c.
5775 (struct diagnostic_context): Use correct type for
5776 classify_diagnostic.
5777 (diagnostic_report_diagnostic): Update declaration.
5778 (emit_diagnostic): Declare.
5779 * errors.c (warning): Return bool.
5780 * errors.h (warning): Update declaration.
5781 * toplev.h (warning0, pedwarn0): Delete.
5782 (warning, warning_at, pedwarn, permerror): Return bool.
5783 * c-errors.c (pedwarn_c99, pedwarn_c90): Use DK_PEDWARN.
5784 * c-decl.c (locate_old_decl): Delete 'diag' argument. Always use
5785 inform. Update all calls.
5786 (diagnose_mismatched_decls): Check return value of warning/pedwarn
5787 before giving informative note.
5788 (implicit_decl_warning): Likewise.
5789 * c-typeck.c (build_function_call): Likewise.
5790 * tree-sssa.c (warn_uninit): Likewise.
5791 * builtins.c (gimplify_va_arg_expr): Likewise.
5793 2008-08-09 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
5796 * doc/invoke.texi (-Wextra): Move warning from here...
5797 (-Wuninitialized): ... to here.
5799 2008-08-08 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
5802 * flags.h (set_Wunused): Delete
5803 * toplev.c (process_options): Handle Wunused flags here.
5804 * opts.c (maybe_warn_unused_parameter): Delete.
5805 (common_handle_option): Replace set_Wunused by warn_unused.
5806 (set_Wextra): Do not handle Wunused-parameter here.
5807 (set_Wunused): Delete.
5808 * c-opts.c (c_common_handle_option): Replace set_Wunused by
5810 * common.opt (Wunused): Add Var and Init.
5811 (Wunused-function): Likewise.
5812 (Wunused-label): Likewise.
5813 (Wunused-parameter): Likewise.
5814 (Wunused-value): Likewise.
5815 (Wunused-variable): Likewise.
5817 2008-08-08 Peter Bergner <bergner@vnet.ibm.com>
5819 * doc/invoke.texi: Add cpu_type power7.
5820 * config.in (HAVE_AS_VSX): New.
5821 * config.gcc: Add cpu_type power7.
5822 * configure.ac (HAVE_AS_VSX): Check for assembler support of the
5824 * configure: Regenerate.
5825 * config/rs6000/rs6000.c (rs6000_override_options): Alias power7 to
5827 * config/rs6000/rs6000.h (ASM_CPU_POWER7_SPEC): Define.
5828 (ASM_CPU_SPEC): Pass %(asm_cpu_power7) for -mcpu=power7.
5829 (EXTRA_SPECS): Add asm_cpu_power7 spec string.
5831 2008-08-08 Dorit Nuzman <dorit@il.ibm.com>
5833 * tree-vect-transform.c (vectorizable_conversion): Pass the integral
5834 type to vectorize.builtin_conversion.
5835 (vectorizable_conversion): Likewise.
5836 * config/i386/i386.c (ix86_vectorize_builtin_conversion): Always takes
5837 integral type as input.
5838 * config/rs6000/rs6000.c (rs6000_builtin_conversion): Add case for
5840 (rs6000_expand_builtin): Add case for ALTIVEC_BUILTIN_VCTUXS
5841 and ALTIVEC_BUILTIN_VCTSXS.
5842 (rs6000_builtin_mul_widen_even. rs6000_builtin_mul_widen_odd): Fix
5845 2008-08-08 Richard Guenther <rguenther@suse.de>
5847 * tree-ssa-ccp.c (likely_value): Calls are not all varying.
5848 (surely_varying_stmt_p): Calls are varying only if they are
5849 non-builtin and not indirect or have no result.
5850 (ccp_fold): Re-instantiate code before the tuples merge.
5852 2008-08-08 Richard Guenther <rguenther@suse.de>
5854 PR tree-optimization/37056
5855 * gimple.h (gimple_assign_rhs_class): New helper function.
5856 * tree-ssa-loop-niter.c (get_val_for): Fix tuplification, handle
5857 unary operations properly.
5859 2008-08-07 Jan Hubicka <jh@suse.cz>
5861 * i386.h (ix86_size_cost): Declare.
5862 (ix86_cur_cost): New function macro.
5863 * i386.md (peepholes expanding size and splitters): Predicate by
5864 optimize_insn_for_speed_p.
5865 (peepholes reduce size and splitters): Predicate by
5866 optimize_insn_for_size_p.
5867 * i386.c (ix86_size_cost): Rename from ...
5868 (size_cost): This one.
5869 (override_options): Update.
5870 (decide_alg): Likewise.
5871 (ix86_expand_clear): Use RTL profile.
5872 (ix86_pad_returns): Use RTL profile.
5874 2008-08-07 Jan Hubicka <jh@suse.cz>
5876 * recog.c (split_all_insns): Set RTL profile
5877 (peephole2_optimize): Likewise.
5878 * function.c (thread_prologue_and_epilogue_insns): Likewise.
5879 * combine.c (combine_instructions): Likewise.
5881 2008-08-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5883 * c-common.c (c_common_reswords): Also warn about keyword "bool".
5885 2008-08-07 Bob Wilson <bob.wilson@acm.org>
5887 * config/xtensa/xtensa.c (xtensa_copy_incoming_a7): Copy incoming
5888 value in a6 after the set_frame_ptr insn.
5890 2008-08-07 Richard Henderson <rth@redhat.com>
5893 * gcc.c (cpp_options): Pass along -g*.
5895 2008-08-07 Joseph Myers <joseph@codesourcery.com>
5897 * config/arm/arm.c (output_move_neon): Update comment describing
5898 big-endian vector layout.
5899 (arm_assemble_integer): Do not handle big-endian NEON vectors
5901 * config/arm/neon.md (vec_set<mode>_internal, vec_extract<mode>,
5902 neon_vget_lane<mode>_sext_internal,
5903 neon_vget_lane<mode>_zext_internal, neon_vget_lane<mode>): Adjust
5904 element indices for big-endian.
5906 2008-08-07 Richard Henderson <rth@redhat.com>
5908 * configure.ac (HAVE_GAS_CFI_PERSONALITY_DIRECTIVE): New.
5909 * configure, config.in: Rebuild.
5910 * debug.h (dwarf2out_do_cfi_asm): Declare.
5911 * c-cppbuiltin.c (c_cpp_builtins): Use it.
5912 * dwarf2out.c (dwarf2out_do_cfi_asm): New.
5913 (dwarf2out_cfi_label, add_fde_cfi, output_call_frame_info,
5914 dwarf2out_begin_prologue, dwarf2out_end_epilogue): Use it.
5916 2008-08-07 Joseph Myers <joseph@codesourcery.com>
5918 * config/arm/iwmmxt.md (movv8qi_internal, movv4hi_internal,
5919 movv2si_internal): Combine into mov<mode>_internal.
5920 (movv2si_internal_2): Remove.
5922 2008-08-07 Jan Hubicka <jh@suse.cz>
5925 * i386.md (single stringop patterns): Enable unconditionally.
5927 2008-08-07 H.J. Lu <hongjiu.lu@intel.com>
5930 * config/i386/emmintrin.h (_mm_move_epi64): Use __builtin_ia32_movq128.
5932 * config/i386/i386.c (ix86_builtins): Add IX86_BUILTIN_MOVQ128.
5933 (bdesc_args): Add IX86_BUILTIN_MOVQ128.
5935 * config/i386/sse.md (sse2_movq128): New.
5937 * doc/extend.texi: Document __builtin_ia32_movq128.
5939 2008-08-07 Richard Guenther <rguenther@suse.de>
5942 * tree-ssa-alias-warnings.c (nonstandard_alias_p): Ref-all
5943 pointers can access anything.
5945 2008-08-06 Jan Hubicka <jh@suse.cz>
5947 * optabs.c (emit_unop_insn): Break out to ...
5948 (maybe_emit_unop_insn): ... this one.
5949 (expand_sfix_optab): Use maybe variant.
5950 * optabs.h (maybe_emit_unop_insn): Declare.
5952 * i386.md (mov0 patterns): Enable by default.
5953 (FP conversion expanders): Disable expansion of code expanding
5954 sequences when instruction should be optimized for size.
5955 (single strinop patterns): Enable when optimizing for size.
5956 (string expanders): Disable expanding of code expanding sequences
5957 when optimizning instruction for size.
5958 * i386.c (ix86_expand_vector_move_misalign): Do code size optimization
5960 (ix86_fp_comparison_sahf_cost): Likewise.
5961 (ix86_expand_branch): Likewise.
5962 (ix86_expand_ashl_const): Likewise.
5963 (ix86_split_ashl): Likewise.
5964 (ix86_expand_strlen): Likewise.
5965 (ix86_emit_fp_unordered_jump): Likewie.
5967 2008-08-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5969 * c-common.c: Fix typo.
5970 (c_common_reswords): Activate more C++ keyword warnings.
5972 * matrix-reorg.c (compute_offset): Avoid C++ keywords.
5974 2008-08-06 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
5977 * diagnostic.c (permerror_at): New.
5978 * toplev.h (permerror_at): Declare.
5980 2008-08-06 Victor Kaplansky <victork@il.ibm.com>
5981 Ira Rosen <irar@il.ibm.com>
5983 * tree-vect-transform.c (vect_model_simple_cost): Return
5984 immediately if stmt is pure SLP.
5985 (vect_model_store_cost): Ditto.
5986 (vect_model_load_cost): Ditto.
5987 (vectorizable_store): Remove PURE_SLP check before call
5988 to vect_model_store_cost.
5989 (vect_model_store_cost): When checking whether stmt describe
5990 strided access, add a check that it is not slp_node.
5992 2008-08-06 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
5995 * c-common.c (warn_for_sign_compare): New. Handle separately the
5996 case that 'constant' is zero.
5997 * c-typeck.c (build_binary_op): Move code to c-common.c
5999 2008-08-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6001 * config/alpha/alpha.c (alpha_preferred_reload_class,
6002 alpha_secondary_reload, alpha_emit_set_const_1, function_value,
6003 alpha_output_mi_thunk_osf): Avoid C++ keywords.
6004 * config/arm/arm.c (output_move_vfp, output_move_neon): Likewise.
6005 * config/arm/arm.md: Likewise.
6006 * config/avr/avr-protos.h (preferred_reload_class,
6007 test_hard_reg_class, avr_simplify_comparison_p,
6008 out_shift_with_cnt, class_max_nregs): Likewise.
6009 * config/avr/avr.c (class_max_nregs, avr_simplify_comparison_p,
6010 output_movqi, output_movhi, output_movsisf, out_shift_with_cnt,
6011 preferred_reload_class, test_hard_reg_class): Likewise.
6012 * config/bfin/bfin.c (legitimize_pic_address, hard_regno_mode_ok,
6013 bfin_memory_move_cost, bfin_secondary_reload,
6014 bfin_output_mi_thunk): Likewise.
6015 * config/crx/crx.c (crx_secondary_reload_class,
6016 crx_memory_move_cost): Likewise.
6017 * config/frv/frv-protos.h (frv_secondary_reload_class,
6018 frv_class_likely_spilled_p, frv_class_max_nregs): Likewise.
6019 * config/frv/frv.c (frv_override_options, frv_alloc_temp_reg,
6020 frv_secondary_reload_class, frv_class_likely_spilled_p,
6021 frv_class_max_nregs): Likewise.
6022 * config/h8300/h8300.c (h8300_classify_operand,
6023 h8300_unary_length, h8300_bitfield_length, h8300_asm_insn_count):
6025 * config/i386/winnt.c (i386_pe_declare_function_type): Likewise.
6026 * config/ia64/ia64.c (ia64_preferred_reload_class,
6027 ia64_secondary_reload_class, ia64_output_mi_thunk): Likewise.
6028 * config/iq2000/iq2000.c (gen_int_relational): Likewise.
6029 * config/m32c/m32c.c (class_can_hold_mode, m32c_output_compare):
6031 * config/m68hc11/m68hc11.c (preferred_reload_class,
6032 m68hc11_memory_move_cost): Likewise.
6033 * config/mcore/mcore.c (mcore_secondary_reload_class,
6034 mcore_reload_class): Likewise.
6035 * config/mips/mips.c (mips_hard_regno_mode_ok_p,
6036 mips_class_max_nregs, mips_cannot_change_mode_class,
6037 mips_preferred_reload_class, mips_secondary_reload_class,
6038 mips_output_mi_thunk): Likewise.
6039 * config/mmix/mmix.c (mmix_preferred_reload_class,
6040 mmix_preferred_output_reload_class, mmix_secondary_reload_class):
6042 * config/mn10300/mn10300.c (mn10300_secondary_reload_class):
6044 * config/pa/pa.c (pa_secondary_reload, pa_combine_instructions,
6045 pa_can_combine_p, pa_cannot_change_mode_class): Likewise.
6046 * config/pa/pa.h (LEGITIMIZE_RELOAD_ADDRESS): Likewise.
6047 * config/rs6000/rs6000.c (paired_expand_vector_init,
6048 rs6000_secondary_reload_class, rs6000_output_mi_thunk,
6049 compare_section_name, rs6000_memory_move_cost): Likewise.
6050 * config/s390/s390.c (s390_emit_compare_and_swap,
6051 s390_preferred_reload_class, s390_secondary_reload,
6052 legitimize_pic_address, legitimize_tls_address,
6053 legitimize_reload_address, s390_expand_cs_hqi, s390_expand_atomic,
6054 s390_class_max_nregs): Likewise.
6055 * config/s390/s390.h (LEGITIMIZE_RELOAD_ADDRESS): Likewise.
6056 * config/s390/s390.md: Likewise.
6057 * config/score/score-protos.h (score_secondary_reload_class,
6058 score_preferred_reload_class): Likewise.
6059 * config/score/score.c (score_preferred_reload_class,
6060 score_secondary_reload_class): Likewise.
6061 * config/score/score3.c (score3_output_mi_thunk,
6062 score3_preferred_reload_class, score3_secondary_reload_class,
6063 score3_hard_regno_mode_ok): Likewise.
6064 * config/score/score3.h (score3_preferred_reload_class,
6065 score3_secondary_reload_class): Likewise.
6066 * config/score/score7.c (score7_output_mi_thunk,
6067 score7_preferred_reload_class, score7_secondary_reload_class,
6068 score7_hard_regno_mode_ok): Likewise.
6069 * config/score/score7.h (score7_preferred_reload_class,
6070 score7_secondary_reload_class): Likewise.
6071 * config/sh/sh.c (prepare_move_operands, output_far_jump,
6072 output_branchy_insn, add_constant, gen_block_redirect,
6073 sh_insn_length_adjustment, sh_cannot_change_mode_class,
6074 sh_output_mi_thunk, replace_n_hard_rtx, sh_secondary_reload): Likewise.
6075 * config/sparc/sparc.c (sparc_output_mi_thunk): Likewise.
6076 * config/stormy16/stormy16.c (xstormy16_output_cbranch_hi,
6077 xstormy16_output_cbranch_si, xstormy16_secondary_reload_class,
6078 xstormy16_preferred_reload_class): Likewise.
6079 * config/xtensa/xtensa.c (xtensa_expand_compare_and_swap,
6080 xtensa_expand_atomic, override_options,
6081 xtensa_preferred_reload_class, xtensa_secondary_reload_class):
6083 * reorg.c (try_merge_delay_insns): Likewise.
6084 * tree.c (merge_dllimport_decl_attributes): Likewise.
6086 * config/frv/frv.c (frv_print_operand): Change isalpha to ISALPHA.
6088 2008-08-06 Michael Matz <matz@suse.de>
6090 * Makefile.in (write_entries_to_file): Quote words.
6091 * gengtype.c: (read_input_line): Skip over leading white-space.
6093 2008-08-06 Marc Gauthier <marc@tensilica.com>
6095 * config.gcc: Match more processor names for Xtensa.
6096 * configure.ac: Likewise.
6097 * doc/install.texi (Specific): Likewise.
6098 * configure: Regenerate.
6100 2008-08-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6102 * builtins.c (expand_builtin_profile_func): Avoid C++ keywords.
6103 * calls.c (avoid_likely_spilled_reg): Likewise.
6104 * cfgexpand.c (gimple_assign_rhs_to_tree): Likewise.
6105 * cgraph.c (cgraph_clone_edge, cgraph_clone_node): Likewise.
6106 * config/i386/i386.c (ix86_expand_special_args_builtin,
6107 ix86_secondary_reload): Likewise.
6108 * except.c (struct eh_region, gen_eh_region_catch,
6109 remove_unreachable_regions, duplicate_eh_regions,
6110 assign_filter_values, build_post_landing_pads,
6111 sjlj_find_directly_reachable_regions, remove_eh_handler,
6112 reachable_next_level, foreach_reachable_handler,
6113 can_throw_internal_1, can_throw_external_1,
6114 collect_one_action_chain): Likewise.
6115 * expr.c (expand_expr_real_1, vector_mode_valid_p): Likewise.
6116 * fold-const.c (twoval_comparison_p, eval_subst): Likewise.
6117 * function.c (update_temp_slot_address, instantiate_new_reg,
6118 instantiate_virtual_regs_in_rtx,
6119 instantiate_virtual_regs_in_insn): Likewise.
6120 * gimple.c (extract_ops_from_tree, gimple_seq_copy): Likewise.
6121 * gimplify.c (gimplify_call_expr, gimplify_init_constructor,
6122 gimplify_cleanup_point_expr): Likewise.
6123 * ipa-cp.c (ipcp_lattice_changed): Likewise.
6124 * passes.c (next_pass_1): Likewise.
6125 * print-tree.c (print_node_brief, print_node): Likewise.
6126 * profile.c (branch_prob): Likewise.
6127 * tree-dump.c (dump_register): Likewise.
6128 * tree-eh.c (replace_goto_queue_cond_clause, lower_catch):
6130 * tree-inline.c (remap_ssa_name, remap_type_1, remap_blocks,
6131 copy_statement_list, remap_gimple_op_r, copy_tree_body_r,
6132 copy_edges_for_bb, copy_cfg_body, copy_tree_r,
6133 copy_arguments_for_versioning, copy_static_chain): Likewise.
6134 * tree-into-ssa.c (names_replaced_by, add_to_repl_tbl,
6135 add_new_name_mapping, register_new_name_mapping): Likewise.
6136 * tree-mudflap.c (mf_xform_derefs): Likewise.
6137 * tree-predcom.c (struct chain, dump_chain, replace_ref_with,
6138 get_init_expr, combine_chains): Likewise.
6139 * tree-pretty-print.c (dump_generic_node): Likewise.
6140 * tree-ssa-structalias.c (create_variable_info_for): Likewise.
6141 * tree-vrp.c (simplify_cond_using_ranges): Likewise.
6142 * tree.c (substitute_in_expr, iterative_hash_expr): Likewise.
6143 * value-prof.c (gimple_duplicate_stmt_histograms): Likewise.
6145 2008-08-06 H.J. Lu <hongjiu.lu@intel.com>
6148 * calls.c (expand_call): Use the biggest preferred stack
6151 2008-08-06 Michael Matz <matz@suse.de>
6154 * reload.c (push_reload): Merge in,out,in_reg,out_reg members
6155 for reused reload, instead of overwriting them.
6157 2008-08-06 H.J. Lu <hongjiu.lu@intel.com>
6160 * cfgexpand.c (expand_stack_alignment): Check parm_stack_boundary
6161 for incoming stack boundary.
6163 * function.c (assign_parm_find_entry_rtl): Update
6164 parm_stack_boundary.
6166 * function.h (rtl_data): Add parm_stack_boundary.
6168 * config/i386/i386.c (ix86_finalize_stack_realign_flags): Check
6169 parm_stack_boundary for incoming stack boundary.
6171 2008-08-06 Joseph Myers <joseph@codesourcery.com>
6173 * jump.c (rtx_renumbered_equal_p): Do not call subreg_regno_offset
6174 for unrepresentable subregs or treat them as equal to other regs
6175 or subregs with the same register number.
6177 2008-08-06 Aldy Hernandez <aldyh@redhat.com>
6180 * gimplify.c (gimplify_modify_expr): Do not optimize zero-sized types
6183 2008-08-06 Jan Hubicka <jh@suse.cz>
6185 * predict.c (maybe_hot_frequency_p): When profile is absent, all
6186 frequencies might be hot.
6188 2008-08-06 Andreas Krebbel <krebbel1@de.ibm.com>
6190 * reload.c (find_reloads): Force constants into literal pool
6191 also if they are wrapped in a SUBREG.
6193 2008-08-06 Maxim Kuvyrkov <maxim@codesourcery.com>
6196 * haifa-sched.c (sched_insn_is_legitimate_for_speculation_p): Move ...
6197 * sched-deps.c (sched_insn_is_legitimate_for_speculation_p): ... here.
6198 Don't allow predicated instructions for data speculation.
6199 * sched-int.h (sched_insn_is_legitimate_for_speculation_p): Move
6202 2008-08-06 Maxim Kuvyrkov <maxim@codesourcery.com>
6204 * haifa-sched.c (extend_global): Split to extend_global_data and
6205 extend_region_data. Update all uses.
6206 (extend_all): Rename to extend_block_data.
6208 2008-08-06 Maxim Kuvyrkov <maxim@codesourcery.com>
6210 * sched-rgn.c (new_ready): Check if instruction can be
6211 speculatively scheduled before attempting speculation.
6212 (debug_rgn_dependencies): Remove wrongful assert.
6214 2008-08-05 Bob Wilson <bob.wilson@acm.org>
6216 * config/xtensa/t-xtensa: Remove dependency for gt-xtensa.h.
6218 2008-08-05 Bob Wilson <bob.wilson@acm.org>
6220 * config/xtensa/xtensa.c (xtensa_va_start): Unshare valist.
6221 (xtensa_gimplify_va_arg_expr): Unshare valist, orig_ndx, ndx, array,
6222 va_size, and type_size.
6224 2008-08-04 Jason Merrill <jason@redhat.com>
6227 * tree-ssa.c (useless_type_conversion_p_1): Call langhook
6228 if TYPE_STRUCTURAL_EQUALITY_P is true for both types.
6230 2008-08-05 Richard Henderson <rth@redhat.com>
6232 * configure.ac (HAVE_GAS_CFI_DIRECTIVE): Check .cfi_personality.
6233 * configure: Rebuild.
6235 2008-08-05 Andrew Pinski <andrew_pinski@playstation.sony.com>
6238 * tree-tailcall.c (process_assignment): Use gimple_assign_cast_p
6239 instead of IS_CONVERT_EXPR_CODE_P for seeing if the assignment
6242 2008-08-05 Richard Henderson <rth@redhat.com>
6244 * Makefile.in (c-cppbuiltin.o): Depend on debug.h.
6245 * c-cppbuiltin.c (c_cpp_builtins): Define __GCC_HAVE_DWARF2_CFI_ASM.
6246 * doc/cpp.texi (__GCC_HAVE_DWARF2_CFI_ASM): Document it.
6247 * common.opt (fdwarf2-cfi-asm): New.
6248 * configure.ac (HAVE_GAS_CFI_DIRECTIVE): New.
6249 * config.in, configure: Rebuild.
6250 * dwarf2asm.c (dw2_asm_output_data_raw): New.
6251 (dw2_asm_output_data_uleb128_raw, dw2_asm_output_data_sleb128_raw):
6253 (dw2_force_const_mem): Externalize.
6254 * dwarf2asm.h: Update.
6255 * dwarf2out.c (dwarf2out_cfi_label): If flag_dwarf2_cfi_asm, don't
6256 generate a real label.
6257 (output_cfi_directive): New.
6258 (add_fde_cfi): If flag_dwarf2_cfi_asm, use it.
6259 (output_call_frame_info): Do nothing if flag_dwarf2_cfi_asm.
6260 (dwarf2out_begin_prologue): Emit .cfi_startproc, .cfi_personality,
6262 (dwarf2out_end_epilogue): Emit .cfi_endproc.
6263 (output_loc_operands_raw, output_loc_sequence_raw): New.
6264 (output_cfa_loc_raw): New.
6266 2008-08-05 Paul Brook <paul@codesourcery.com>
6268 * doc/invoke.texi: Document new ARM -mfpu= and -mcpu= options.
6269 * config/arm/arm.c (all_fpus): Add vfpv3 and vfpv3-d16.
6270 (fp_model_for_fpu): Add entry for FPUTYPE_VFP3D16.
6271 (arm_file_start): Add FPUTYPE_VFP3D16. Rename vfp3 to vfpv3.
6272 * config/arm/arm.h (TARGET_VFPD32): Define.
6273 (TARGET_VFP3): Use TARGET_VFPD32.
6274 (fputype): Add FPUTYPE_VFP3D16.
6275 (LAST_VFP_REGNUM): Use TARGET_VFPD32.
6276 * config/arm/constraints.md ("w"): Use TARGET_VFPD32.
6277 * config/arm/arm-cores.def: Add cortex-r4f.
6278 * config/arm/arm-tune.md: Regenerate.
6280 2008-08-05 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
6282 * config/spu_spu_mfcio.h: Wrap in extern "C" if __cplusplus.
6283 Reword some comments throughout the file.
6285 (MFC_MIN_DMA_LIST_ELEMENTS): New define.
6286 (MFC_MAX_DMA_LIST_ELEMENTS): Likewise.
6287 (MFC_MIN_DMA_LIST_SIZE): Redefine in terms of
6288 MFC_MIN_DMA_LIST_ELEMENTS.
6289 (MFC_MAX_DMA_LIST_SIZE): Redefine in terms of
6290 MFC_MAX_DMA_LIST_ELEMENTS.
6292 (MFC_START_ENABLE): Remove PPU-only define.
6293 (MFC_PUTS_CMD, MFC_PUTFS_CMD, MFC_PUTBS_CMD): Likewise.
6294 (MFC_GETS_CMD, MFC_GETFS_CMD, MFC_GETBS_CMD): Likewise.
6296 (MFC_PUTB_CMD, MFC_PUTF_CMD): Reimplement using symbolic constants.
6297 (MFC_PUTL_CMD, MFC_PUTLB_CMD, MFC_PUTLF_CMD): Likewise.
6298 (MFC_PUTR_CMD, MFC_PUTRB_CMD, MFC_PUTRF_CMD): Likewise.
6299 (MFC_PUTRL_CMD, MFC_PUTRLB_CMD, MFC_PUTRLF_CMD): Likewise.
6300 (MFC_GETB_CMD, MFC_GETF_CMD): Likewise.
6301 (MFC_GETL_CMD, MFC_GETLB_CMD, MFC_GETLF_CMD): Likewise.
6302 (MFC_SNDSIGB_CMD, MFC_SNDSIGF_CMD): Likewise.
6304 (MFC_SDCRT_CMD, MFC_SDCRTST_CMD): New defines.
6305 (MFC_SDCRZ_CMD, MFC_SDCRST_CMD, MFC_SDCRF_CMD): Likewise.
6306 (mfc_sdcrt, mfc_sdcrtst): Likewise.
6307 (mfc_sdcrz, mfc_sdcrst, mfc_sdcrf): Likewise.
6309 (spu_read_machine_status): Fix typo.
6311 2008-08-05 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
6313 * config/spu/spu.h (CANNOT_CHANGE_MODE_CLASS): Allow (multi)word-sized
6314 SUBREG of multi-word hard register.
6315 * config/spu/spu.c (valid_subreg): Likewise.
6316 (adjust_operand): Handle SUBREGs of multi-word hard registers.
6318 2008-08-04 Richard Guenther <rguenther@suse.de>
6320 * tree-ssa-loop-ivopts.c (add_iv_value_candidates): Also add
6321 the candidate with the stripped base if that base is different
6322 from the original base even for offset zero.
6324 2008-08-04 Richard Guenther <rguenther@suse.de>
6327 * tree-ssa-loop-niter.c (number_of_iterations_lt_to_ne): Correctly
6328 check for no_overflow.
6330 2008-08-04 Richard Guenther <rguenther@suse.de>
6332 * tree-vect-transform.c (vectorizable_call): Fix tuplification.
6334 2008-08-04 Paul Brook <paul@codesourcery.com>
6336 * cofig/arm/arm.c (thumb_core_reg_alloc_order): New.
6337 (arm_order_regs_for_local_alloc): New function.
6338 * config/arm/arm-protos.h (arm_order_regs_for_local_alloc): Add
6340 * config/arm/arm.h (ORDER_REGS_FOR_LOCAL_ALLOC): Define.
6342 2008-08-04 H.J. Lu <hongjiu.lu@intel.com>
6345 * config/i386/i386.c (ix86_expand_prologue): Use UNITS_PER_WORD
6346 instead of STACK_BOUNDARY / BITS_PER_UNIT to align stack.
6347 (ix86_expand_epilogue): Likewise.
6349 2008-08-04 H.J. Lu <hongjiu.lu@intel.com>
6351 * config/i386/i386.c (ix86_compute_frame_layout): Fix a typo
6354 2008-08-03 Uros Bizjak <ubizjak@gmail.com>
6356 * config/i386/mmx.md (*mov<mode>_internal_rex64): Use Yi instead of x
6357 to avoid inter-unit moves for !TARGET_INTER_UNIT_MOVES.
6358 (*movv2sf_internal_rex64): Ditto.
6360 2008-08-03 Jan Hubicka <jh@suse.cz>
6362 * optabs.c (expand_binop, expand_builtin_pow, expand_builtin_powi,
6363 expand_builtin_strcat): Upse optimize_insn_for_speed predicate.
6364 * expmed.c (expand_smod_pow2): Likewise.
6366 2008-08-03 Uros Bizjak <ubizjak@gmail.com>
6369 * config/i386/sse.md (vec_concatv2di): Add Y2 constraint to
6370 alternative 0 of operand 1.
6371 (*vec_concatv2di_rex64_sse): Ditto.
6372 (*vec_concatv2di_rex64_sse4_1): Add x constraint to alternative 0
6374 (*sse2_storeq_rex64): Penalize allocation of "r" registers.
6375 * config/i386/mmx.md (*mov<mode>_internal_rex64): Penalize allocation
6376 of "Y2" registers to avoid SSE <-> MMX conversions for DImode moves.
6377 (*movv2sf_internal_rex64): Ditto.
6379 2008-08-02 Richard Guenther <rguenther@suse.de>
6382 * config/i386/sse.md (SSEMODE4S, SSEMODE2D): New mode iterators.
6383 (ssedoublesizemode): New mode attribute.
6384 (sse_shufps): Call gen_sse_shufps_v4sf.
6385 (sse_shufps_1): Macroize.
6386 (sse2_shufpd): Call gen_Sse_shufpd_v2df.
6387 (sse2_shufpd_1): Macroize.
6388 (vec_extract_odd, vec_extract_even): New expanders.
6389 (vec_interleave_highv4sf, vec_interleave_lowv4sf,
6390 vec_interleave_highv2df, vec_interleave_lowv2df): Likewise.
6391 * i386.c (ix86_expand_vector_init_one_nonzero): Call
6392 gen_sse_shufps_v4sf instead of gen_sse_shufps_1.
6393 (ix86_expand_vector_set): Likewise.
6394 (ix86_expand_reduc_v4sf): Likewise.
6396 2008-08-01 Doug Kwan <dougkwan@google.com>
6398 * matrix-reorg.c: Re-enable all code.
6399 (struct malloc_call_data): Change CALL_STMT to gimple type.
6400 (collect_data_for_malloc_call): Tuplify.
6401 (struct access_site_info): Change STMT to gimple type.
6402 (struct matrix_info): Change MIN_INDIRECT_LEVEL_ESCAPE_STMT,
6403 and MALLOC_FOR_LEVEL to gimple and gimple pointer type.
6404 (struct free_info): Change STMT to gimple type.
6405 (struct matrix_access_phi_node): Change PHI to gimple type.
6406 (get_inner_of_cast_expr): Remove.
6407 (may_flatten_matrices_1): Tuplify.
6408 (may_flatten_matrices): Ditto.
6409 (mark_min_matrix_escape_level): Ditto.
6410 (ssa_accessed_in_tree): Refactor statement RHS related code into ...
6411 (ssa_accessed_in_call_rhs): New
6412 (ssa_accessed_in_assign_rhs): New
6413 (record_access_alloc_site_info): Tuplify.
6414 (add_allocation_site): Ditto.
6415 (analyze_matrix_allocation_site): Ditto.
6416 (analyze_transpose): Ditto.
6417 (get_index_from_offset): Ditto.
6418 (update_type_size): Ditto.
6419 (analyze_accesses_for_call_expr): Tuplify and renamed into ...
6420 (analyze_accesses_for_call_stmt): New. Also handle LHS of a call.
6421 (analyze_accesses_for_phi_node): Tuplify.
6422 (analyze_accesses_for_modify_stmt): Tuplify and renamed into ...
6423 (analyze_accesses_for_assign_stmt): Remove code for handling call LHS.
6424 (analyze_matrix_accesses): Tuplify.
6425 (check_var_data): New call-back type for check_var_notmodified_p.
6426 (check_var_notmodified_p): Tuplify and use call-back struct to
6427 return statement found.
6428 (can_calculate_expr_before_stmt): Factor out statement related code
6430 (can_calculate_stmt_before_stmt): New.
6431 (check_allocation_function): Tuplify.
6432 (find_sites_in_func): Ditto.
6433 (record_all_accesses_in_func): Ditto.
6434 (transform_access_sites): Ditto.
6435 (transform_allocation_sites): Ditto.
6436 (matrix_reorg): Re-enable.
6437 (gate_matrix_reorg): Re-enable.
6439 2008-08-01 Jakub Jelinek <jakub@redhat.com>
6441 * dwarf2out.c (compute_barrier_args_size): Set barrier_args_size
6442 for labels for which it hasn't been set yet. If it has been set,
6443 stop walking insns and continue with next worklist item.
6444 (dwarf2out_stack_adjust): Don't call compute_barrier_args_size
6445 if the only BARRIER is at the very end of a function.
6447 2008-08-01 H.J. Lu <hongjiu.lu@intel.com>
6449 * cfgexpand.c (expand_stack_alignment): Assert that
6450 stack_realign_drap and drap_rtx must match.
6452 * function.c (instantiate_new_reg): If DRAP is used to realign
6453 stack, replace virtual_incoming_args_rtx with internal arg
6456 2008-08-01 Richard Guenther <rguenther@suse.de>
6458 * tree-ssa-pre.c (fini_pre): Take in_fre parameter. Free
6459 loop information only if we initialized it.
6460 (execute_pre): Call fini_pre with in_fre.
6461 * tree-ssa-loop-ivcanon (try_unroll_loop_completely): Dump
6462 if we do not unroll because we hit max-completely-peeled-insns.
6463 Use our estimation for consistency, do allow shrinking.
6465 2008-08-01 H.J. Lu <hongjiu.lu@intel.com>
6467 * config/i386/i386.c (override_options): Replace ABI_STACK_BOUNDARY
6468 with MIN_STACK_BOUNDARY.
6469 (ix86_update_stack_boundary): Likewise.
6470 (ix86_expand_prologue): Assert MIN_STACK_BOUNDARY instead of
6473 * config/i386/i386.h (ABI_STACK_BOUNDARY): Renamed to ...
6474 (MIN_STACK_BOUNDARY): This.
6476 2008-08-01 Richard Guenther <rguenther@suse.de>
6479 * gimplify.c (gimplify_call_expr): Set error_mark_node on GS_ERROR.
6481 2008-08-01 Richard Guenther <rguenther@suse.de>
6483 PR tree-optimization/36988
6484 * tree-ssa-ccp.c (ccp_fold): Conversions of constants only
6485 do not matter if that doesn't change volatile qualification.
6487 2008-08-01 Paolo Bonzini <bonzini@gnu.org>
6489 * configure.ac: Do not generate libada-mk. Do not subst
6491 * libada-mk.in: Remove.
6492 * Makefile.in: Pass TARGET_LIBGCC2_CFLAGS to libgcc.mvars.
6493 * configure: Regenerate.
6495 2008-08-01 Basile Starynkevitch <basile@starynkevitch.net>
6497 * tree-pass.h: Added comment about not dumping passes with name
6498 starting with star in struct opt_pass.
6499 * passes.c (register_dump_files_1): Don't do dump for a pass with
6500 name starting with star.
6501 * doc/passes.texi (Pass manager): Mention pass names and special
6502 meaning of star prefix to avoid dump.
6504 2008-07-31 Adam Nemet <anemet@caviumnetworks.com>
6506 * config.gcc (mipsisa64r2*-*-linux*): New configuration. Set ISA
6508 * config/mips/mips.h (GENERATE_MIPS16E): Update comment.
6509 (ISA_MIPS64R2): New macro.
6510 (TARGET_CPU_CPP_BUILTINS, MULTILIB_ISA_DEFAULT): Handle it.
6511 (ISA_HAS_64BIT_REGS, ISA_HAS_MUL3, ISA_HAS_FP_CONDMOVE,
6512 ISA_HAS_8CC, ISA_HAS_FP4, ISA_HAS_PAIRED_SINGLE,
6513 ISA_HAS_MADD_MSUB, ISA_HAS_NMADD4_NMSUB4, ISA_HAS_CLZ_CLO,
6514 ISA_HAS_ROR, ISA_HAS_PREFETCH, ISA_HAS_PREFETCHX, ISA_HAS_SEB_SEH,
6515 ISA_HAS_EXT_INS, ISA_HAS_MXHC1, ISA_HAS_HILO_INTERLOCKS,
6516 ISA_HAS_SYNCI, MIN_FPRS_PER_FMT): Return true for ISA_MIPS64R2.
6517 (MIPS_ISA_LEVEL_SPEC, ASM_SPEC, LINK_SPEC): Handle -mips64r2.
6518 (TARGET_LOONGSON_2E, TARGET_LOONGSON_2F, TARGET_LOONGSON_2EF):
6519 Move up to keep list alphabetically sorted.
6520 (TUNE_20KC, TUNE_24K, TUNE_74K, TUNE_LOONGSON_2EF): Likewise.
6521 * config/mips/mips.c (mips_cpu_info_table): Add default MIPS64r2
6523 * doc/invoke.texi (MIPS Options): Add -mips64r2.
6524 (-march=@var{arch}): Add mips64r2.
6526 2008-07-31 H.J. Lu <hongjiu.lu@intel.com>
6528 * config/i386/darwin.h (MAIN_STACK_BOUNDARY): Define to 128.
6530 2008-07-31 Steve Ellcey <sje@cup.hp.com>
6532 * expr.c (expand_assignment): Check for complete type.
6534 2008-07-31 H.J. Lu <hongjiu.lu@intel.com>
6537 * cfgexpand.c (expand_stack_alignment): Set stack_realign_tried.
6539 * dwarf2out.c (based_loc_descr): Check crtl->stack_realign_tried
6540 for stack alignment.
6542 * function.h (rtl_data): Add stack_realign_tried. Update comments.
6544 2008-07-31 Kaz Kojima <kkojima@gcc.gnu.org>
6546 * config/sh/sh.c (sh_canonical_va_list_type): Remove.
6547 (TARGET_CANONICAL_VA_LIST_TYPE): Remove.
6549 2008-07-31 Jakub Jelinek <jakub@redhat.com>
6551 PR rtl-optimization/36419
6552 * dwarf2out.c (barrier_args_size): New variable.
6553 (compute_barrier_args_size, compute_barrier_args_size_1): New
6555 (dwarf2out_stack_adjust): For BARRIERs call compute_barrier_args_size
6556 if not called yet in the current function, use barrier_args_size
6557 array to find the new args_size value.
6558 (dwarf2out_frame_debug): Free and clear barrier_args_size.
6560 2008-07-31 H.J. Lu <hongjiu.lu@intel.com>
6563 * dwarf2out.c (dwarf2out_frame_debug_expr): Move rule 17 before
6566 2008-07-31 H.J. Lu <hongjiu.lu@intel.com>
6569 * dwarf2out.c (dwarf2out_args_size_adjust): New.
6570 (dwarf2out_stack_adjust): Use it.
6571 (dwarf2out_frame_debug_expr): Likewise.
6573 2008-07-31 Richard Guenther <rguenther@suse.de>
6575 PR tree-optimization/36978
6576 * tree-ssa-loop-unswitch.c (tree_may_unswitch_on): Do not fold
6577 the generated condition.
6579 2008-07-31 Richard Guenther <rguenther@suse.de>
6581 * passes.c (init_optimization_passes): Always call
6582 pass_early_warn_uninitialized.
6583 * opts.c (decode_options): Do not warn about -Wuninitialized at -O0.
6584 * doc/invoke.texi (-Wuninitialized): Correct for enabling at -O0.
6585 * doc/passes.texi (Warn for uninitialized variables): Adjust.
6587 2008-07-31 Jakub Jelinek <jakub@redhat.com>
6590 * builtins.c (maybe_emit_free_warning): New function.
6591 (expand_builtin): Process BUILT_IN_FREE even at -O0. Call
6592 maybe_emit_free_warning for BUILT_IN_FREE.
6595 * dwarf2out.c (get_context_die): New function.
6596 (force_decl_die, force_type_die): Use it.
6597 (dwarf2out_imported_module_or_decl): Likewise. If base_type_die
6598 returns NULL, force generation of DW_TAG_typedef and put that into
6601 PR preprocessor/36649
6602 * c-pch.c (c_common_read_pch): Save and restore
6603 line_table->trace_includes across PCH restore.
6605 2008-07-30 Eric Botcazou <ebotcazou@adacore.com>
6608 * dwarf2out.c (is_subrange_type): Deal with BOOLEAN_TYPE.
6610 2008-07-30 Rafael Ávila de Espíndola <espindola@google.com>
6613 * final.c (call_from_call_insn): Handle COND_EXEC.
6615 2008-07-30 H.J. Lu <hongjiu.lu@intel.com>
6617 * builtins.c (std_gimplify_va_arg_expr): Replace
6618 PREFERRED_STACK_BOUNDARY with MAX_SUPPORTED_STACK_ALIGNMENT.
6619 * config/i386/i386.c (ix86_gimplify_va_arg): Likewise.
6621 2008-07-30 Joey Ye <joey.ye@intel.com>
6622 H.J. Lu <hongjiu.lu@intel.com>
6624 * builtins.c (expand_builtin_setjmp_receiver): Replace
6625 virtual_incoming_args_rtx with crtl->args.internal_arg_pointer.
6626 (expand_builtin_apply_args_1): Likewise.
6627 (expand_builtin_longjmp): Need DRAP for stack alignment.
6628 (expand_builtin_apply): Likewise.
6630 * caller-save.c (setup_save_areas): Call assign_stack_local_1
6631 instead of assign_stack_local to allow alignment reduction.
6633 * calls.c (emit_call_1): Need DRAP for stack alignment if
6635 (expand_call): Replace virtual_incoming_args_rtx with
6636 crtl->args.internal_arg_pointer.
6637 * stmt.c (expand_nl_goto_receiver): Likewise.
6639 * cfgexpand.c (get_decl_align_unit): Estimate stack variable
6640 alignment and store to stack_alignment_estimated and
6641 max_used_stack_slot_alignment.
6642 (expand_one_var): Likewise.
6643 (expand_stack_alignment): New function.
6644 (tree_expand_cfg): Initialize max_used_stack_slot_alignment
6645 and stack_alignment_estimated fields in rtl_data. Call
6646 expand_stack_alignment at end.
6648 * defaults.h (INCOMING_STACK_BOUNDARY): New.
6649 (MAX_STACK_ALIGNMENT): Likewise.
6650 (MAX_SUPPORTED_STACK_ALIGNMENT): Likewise.
6651 (SUPPORTS_STACK_ALIGNMENT): Likewise.
6653 * emit-rtl.c (gen_reg_rtx): Estimate stack alignment for
6654 stack alignment when generating virtual registers.
6656 * function.c (assign_stack_local): Renamed to ...
6657 (assign_stack_local_1): This. Add a parameter to indicate
6658 if it is OK to reduce alignment.
6659 (assign_stack_local): Use it.
6660 (instantiate_new_reg): Instantiate virtual incoming args rtx
6661 to vDRAP if stack realignment and DRAP is needed.
6662 (assign_parms): Collect parameter/return type alignment and
6663 contribute to stack_alignment_estimated.
6664 (locate_and_pad_parm): Likewise.
6665 (get_arg_pointer_save_area): Replace virtual_incoming_args_rtx
6666 with crtl->args.internal_arg_pointer.
6668 * function.h (rtl_data): Add new field drap_reg,
6669 max_used_stack_slot_alignment, stack_alignment_estimated,
6670 stack_realign_needed, need_drap, stack_realign_processed and
6671 stack_realign_finalized.
6672 (stack_realign_fp): New macro.
6673 (stack_realign_drap): Likewise.
6675 * global.c (compute_regsets): Frame pointer is needed when
6676 stack is realigned. Can eliminate frame pointer when stack is
6677 realigned and dynamic realigned argument pointer isn't used.
6679 * reload1.c (update_eliminables): Frame pointer is needed
6680 when stack is realigned.
6681 (init_elim_table): Can eliminate frame pointer when stack is
6682 realigned and dynamic realigned argument pointer isn't used.
6684 * rtl.h (assign_stack_local_1): Declare new funtion.
6686 * target-def.h (TARGET_UPDATE_STACK_BOUNDARY): New.
6687 (TARGET_GET_DRAP_RTX): Likewise.
6688 (TARGET_CALLS): Add TARGET_UPDATE_STACK_BOUNDARY and
6689 TARGET_GET_DRAP_RTX.
6691 * target.h (gcc_target): Add update_stack_boundary and get_drap_rtx.
6693 * tree-vectorizer.c (vect_can_force_dr_alignment_p): Replace
6694 STACK_BOUNDARY with MAX_STACK_ALIGNMENT.
6696 2008-07-30 Xuepeng Guo <xuepeng.guo@intel.com>
6697 H.J. Lu <hongjiu.lu@intel.com>
6699 * dwarf2out.c (dw_fde_struct): Add stack_realignment, drap_reg,
6700 vdrap_reg, stack_realign and drap_reg_saved.
6701 (add_cfi): Don't allow redefining CFA when DRAP is used.
6702 (reg_save): Handle stack alignment.
6703 (dwarf2out_frame_debug_expr): Add rules 16-20 to handle stack
6704 alignment. Don't generate DWARF information for (set fp sp)
6706 (dwarf2out_begin_prologue): Initialize drap_reg and vdrap_reg
6708 (int_loc_descriptor): Move prototype forward. Also define if
6709 DWARF2_UNWIND_INFO is true.
6710 (output_cfa_loc): Handle DW_CFA_expression.
6711 (build_cfa_aligned_loc): New.
6712 (based_loc_descr): Update assert for stack realign. For local
6713 variables, use sp+offset when stack is aligned without drap and
6714 fp+offset when stack is aligned with drap. For arguments, use
6715 cfa+offset when drap is used to align stack.
6717 2008-07-30 Joey Ye <joey.ye@intel.com>
6718 H.J. Lu <hongjiu.lu@intel.com>
6720 * config/i386/i386.c (ix86_force_align_arg_pointer_string):
6722 (ix86_gen_andsp): New.
6723 (ix86_user_incoming_stack_boundary): Likewise.
6724 (ix86_default_incoming_stack_boundary): Likewise.
6725 (ix86_incoming_stack_boundary): Likewise.
6726 (ix86_can_eliminate): Likewise.
6727 (find_drap_reg): Likewise.
6728 (ix86_update_stack_boundary): Likewise.
6729 (ix86_get_drap_rtx): Likewise.
6730 (ix86_finalize_stack_realign_flags): Likewise.
6731 (TARGET_UPDATE_STACK_BOUNDARY): Likewise.
6732 (TARGET_GET_DRAP_RTX): Likewise.
6733 (override_options): Overide option value for new options.
6734 (ix86_function_ok_for_sibcall): Remove check for
6735 force_align_arg_pointer.
6736 (ix86_handle_cconv_attribute): Likewise.
6737 (ix86_function_regparm): Likewise.
6738 (setup_incoming_varargs_64): Don't set stack_alignment_needed here.
6739 (ix86_va_start): Replace virtual_incoming_args_rtx with
6740 crtl->args.internal_arg_pointer.
6741 (ix86_select_alt_pic_regnum): Check DRAP register.
6742 (ix86_save_reg): Replace force_align_arg_pointer with drap_reg.
6743 (ix86_compute_frame_layout): Compute frame layout wrt stack
6745 (ix86_internal_arg_pointer): Just return virtual_incoming_args_rtx.
6746 (ix86_expand_prologue): Decide if stack realignment is needed
6747 and generate prologue code accordingly.
6748 (ix86_expand_epilogue): Generate epilogue code wrt stack
6749 realignment is really needed or not.
6751 * config/i386/i386.h (MAIN_STACK_BOUNDARY): New.
6752 (ABI_STACK_BOUNDARY): Likewise.
6753 (PREFERRED_STACK_BOUNDARY_DEFAULT): Likewise.
6754 (STACK_REALIGN_DEFAULT): Likewise.
6755 (INCOMING_STACK_BOUNDARY): Likewise.
6756 (MAX_STACK_ALIGNMENT): Likewise.
6757 (ix86_incoming_stack_boundary): Likewise.
6758 (FORCE_PREFERRED_STACK_BOUNDARY_IN_MAIN): Removed.
6759 (REAL_PIC_OFFSET_TABLE_REGNUM): Updated to use BX_REG.
6760 (CAN_ELIMINATE): Defined with ix86_can_eliminate.
6761 (machine_function): Remove force_align_arg_pointer.
6763 * config/i386/i386.md (BX_REG): New.
6764 (R13_REG): Likewise.
6766 * config/i386/i386.opt (mforce_drap): New.
6767 (mincoming-stack-boundary): Likewise.
6768 (mstackrealign): Add Init(-1).
6770 * config/i386/i386-protos.h (ix86_can_eliminate): New
6772 2008-07-30 H.J. Lu <hongjiu.lu@intel.com>
6774 * doc/extend.texi: Update force_align_arg_pointer.
6776 * doc/invoke.texi: Document -mincoming-stack-boundary. Update
6779 * doc/tm.texi (MAX_STACK_ALIGNMENT): Add macro.
6780 (INCOMING_STACK_BOUNDARY): Likewise.
6781 (TARGET_UPDATE_STACK_BOUNDARY): New target hook.
6782 (TARGET_GET_DRAP_RTX): Likewise.
6784 2008-07-30 Andreas Schwab <schwab@suse.de>
6786 PR rtl-optimization/36929
6787 * dse.c (replace_inc_dec): Use emit_insn_before instead of
6788 add_insn_before and fix argument order.
6789 (replace_inc_dec_mem): Handle NULL rtx.
6791 2008-07-30 Andrew Jenner <andrew@codesourcery.com>
6793 * config/arm/arm.c (arm_compute_static_chain_stack_bytes): New
6795 (arm_compute_initial_elimination_offset): Use it.
6796 (arm_compute_save_reg_mask): Include static chain save slot when
6797 calculating alignment.
6798 (arm_get_frame_offsets): Ditto.
6799 (thumb1_compute_save_reg_mask): Ensure we have a low register saved
6800 that we can use to decrement the stack when the stack decrement
6801 could be too big for an immediate value in a single insn.
6802 (thumb1_expand_prologue): Avoid using r12 for stack decrement.
6804 2008-07-30 Richard Guenther <rguenther@suse.de>
6806 PR tree-optimization/36967
6807 * tree-predcom.c (remove_stmt): Use gimple_assign_ssa_name_copy_p.
6808 Release defs of statements we remove.
6810 2008-07-30 Nathan Froyd <froydnj@codesourcery.com>
6812 * config/arm/arm.c (arm_expand_prologue): Use 0-length rtvec
6813 instead of NULL_RTVEC.
6815 2008-07-30 Nathan Froyd <froydnj@codesourcery.com>
6819 * config/rs6000/rs6000.h (SLOW_UNALIGNED_ACCESS): Add clause for
6822 2008-07-30 Rafael Ávila de Espíndola <espindola@google.com>
6824 * final.c (call_from_call_insn): New.
6825 (final_scan_insn): Call assemble_external on FUNCTION_DECLs.
6827 2008-07-30 Paolo Bonzini <bonzini@gnu.org>
6829 * configure.ac: Substitute ADA_CFLAGS.
6830 * configure: Regenerate.
6831 * config.host: Remove mention of pa/x-ada and pa/x-ada-hpux10 files.
6832 * Makefile.in: Remove mention of X_* variables.
6833 * config/pa/x-ada-hpux10: Remove.
6834 * config/pa/x-ada: Remove.
6836 * doc/fragments.texi: Update.
6838 2008-07-30 Olivier Hainque <hainque@adacore.com>
6840 * config/mips/irix-crti.asm: .hide __gcc_init and __gcc_fini.
6841 * config/mips/iris6.h (IRIX_SUBTARGET_LINK_SPEC, irix ld): Hide
6842 __dso_handle explicitly here.
6844 2008-07-30 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
6847 * c-typeck.c (build_binary_op): Encapsulate code into...
6848 * c-common.c (shorten_binary_op): ...this new function.
6849 (conversion_warning): Use the new function. Handle non-negative
6850 constant in bitwise-and.
6851 * c-common.h (shorten_binary_op): Declare.
6853 2008-07-30 Olivier Hainque <hainque@adacore.com>
6855 * scan.c (make_sstring_space): Add explicit conversions of
6856 allocator's return value.
6857 * fix-header.c (recognized_function): Likewise.
6859 2008-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
6861 * doc/cpp.texi: Update to GFDL 1.2.
6862 * doc/gcc.texi: Do not list GPL as Invariant Section.
6863 * doc/gccint.texi: Likewise. Update copyright years.
6864 * doc/install.texi: Update copyright years.
6866 2008-07-30 Alan Modra <amodra@bigpond.net.au>
6869 * config/rs6000/rs6000.c (rs6000_legitimize_tls_address): Add
6870 a use of pic_offset_table_rtx for -msecure-plt __tls_get_addr calls.
6872 2008-07-29 Jan Hubicka <jh@suse.cz>
6874 * c-decl.c (merge_decls): Do not handle DECL_INLINE.
6875 (grokdeclarator): Likewise.
6876 * langhooks.c (lhd_warn_unused_global_decl): Use
6877 DECL_DECLARED_INLINE_P.
6878 * print-tree.c (print_node): Remove DECL_INLINE check.
6880 2008-07-29 Richard Guenther <rguenther@suse.de>
6882 PR tree-optimization/36945
6883 * tree-ssa-sccvn.h (copy_reference_ops_from_ref): Declare.
6884 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Export.
6885 Record invariant addresses un-decomposed.
6886 (copy_reference_ops_from_call): Record reference call
6887 arguments properly. Simplify.
6888 * tree-ssa-pre.c (create_component_ref_by_pieces_1): New
6889 helper split out from ...
6890 (create_component_ref_by_pieces): ... here. Simplify.
6891 Prepare for recursive invocation for call arguments.
6892 (create_expression_by_pieces): Adjust call to
6893 create_component_ref_by_pieces.
6894 (compute_avail): Process operand 2 of reference ops.
6896 2008-07-29 Richard Guenther <rguenther@suse.de>
6898 * gimplify.c (gimplify_expr): Clear TREE_SIDE_EFFECTS for OBJ_TYPE_REF.
6900 2008-07-29 Jakub Jelinek <jakub@redhat.com>
6902 * c-format.c (check_format_types): Revert unwanted checkin.
6904 2008-07-29 Jan Hubicka <jh@suse.cz>
6906 * flags.h (flag_really_no_inline): Remove.
6907 * cgraph.c (cgraph_function_possibly_inlined_p): Simplify.
6908 * toplev.c (flag_really_no_inline): Remove.
6909 * c-cppbuiltin.c (c_cpp_builtins): Use flag_no_inline.
6910 * ipa-inline.c (cgraph_decide_inlining): Do not check flag_no_inline.
6911 (cgraph_decide_inlining_incrementally): Likewise.
6912 (compute_inline_parameters): Likewise.
6913 * opts.c (decode_options): Simplify.
6914 * c-opts.c (c_common_post_options): Do not set flag_no_inline.
6915 * common.opt (finline): Initialize to 1.
6916 * tree-inline.c (inlinable_function_p): Check flag_no_inline.
6918 2008-07-29 Jan Hubicka <jh@suse.cz>
6920 * predict.c (always_optimize_for_size_p): New function.
6921 (optimize_bb_for_size_p, optimize_bb_for_speed_p,
6922 optimize_edge_for_size_p, optimize_edge_for_speed_p,
6923 optimize_insn_for_size_p, optimize_insn_for_speed_p): New global
6925 (rtl_profile_for_bb, rtl_profile_for_edge, rtl_default_profile): New.
6926 * function.c (prepare_function_start): Set default profile.
6927 * function.h (rtl_data): Add maybe_hot_insn_p.
6928 * cfgexpand.c (expand_gimple_basic_block): Set RTL profile.
6929 (construct_exit_block): Likewise.
6930 (tree_expand_cfg): Likewise.
6932 (optimize_bb_for_size_p, optimize_bb_for_speed_p,
6933 optimize_edge_for_size_p, optimize_edge_for_speed_p,
6934 optimize_insn_for_size_p, optimize_insn_for_speed_p): Declare.
6935 (rtl_profile_for_bb, rtl_profile_for_edge, default_rtl_profile):
6938 2008-07-29 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
6941 * c-decl.c (merge_decls): Merge USED flags.
6943 2008-07-29 Kaz Kojima <kkojima@gcc.gnu.org>
6945 * config/sh/sh.c (sh_gimplify_va_arg_expr): Unshare the addr,
6946 valist, next_fp, next_fp_tmp, next_fp_limit, next_o, next_o_limit,
6947 next_stack, lab_false and lab_over trees.
6949 2008-07-28 Richard Guenther <rguenther@suse.de>
6951 PR tree-optimization/36957
6952 * tree-flow.h (tree_ssa_useless_type_conversion): Remove.
6953 (useless_type_conversion_p): Remove.
6954 (types_compatible_p): Remove.
6955 * gimple.h (tree_ssa_useless_type_conversion): Declare.
6956 (useless_type_conversion_p): Declare.
6957 (types_compatible_p): Declare.
6958 (gimple_expr_type): Return the base type only if it is
6959 trivially convertible to the subtype.
6961 2008-07-28 Andreas Tobler <a.tobler@schweiz.org>
6963 * configure.ac: Use the m4_do macro to concatenate the warnings into
6964 one string in ACX_PROG_CC_WARNING_OPTS,
6965 ACX_PROG_CC_WARNING_ALMOST_PEDANTIC and
6966 ACX_PROG_CC_WARNINGS_ARE_ERRORS.
6967 * configure: Regenerate.
6969 2008-07-28 Richard Guenther <rguenther@suse.de>
6971 * tree-ssa-pre.c (insert_into_preds_of_block): Remove dead code.
6972 (insert_fake_stores): Remove.
6973 (realify_fake_stores): Likewise.
6974 (execute_pre): Remove dead code.
6975 * tree-ssa-structalias.c (get_constraint_for_1): Remove tcc_unary case.
6976 (find_func_aliases): Deal with it here instead.
6977 Re-enable gcc_unreachable call.
6979 2008-07-28 Richard Guenther <rguenther@suse.de>
6981 Merge from gimple-tuples-branch.
6983 * ChangeLog.tuples: ChangeLog from gimple-tuples-branch.
6984 * gimple.def: New file.
6985 * gsstruct.def: Likewise.
6986 * gimple-iterator.c: Likewise.
6987 * gimple-pretty-print.c: Likewise.
6988 * tree-gimple.c: Removed. Merged into ...
6989 * gimple.c: ... here. New file.
6990 * tree-gimple.h: Removed. Merged into ...
6991 * gimple.h: ... here. New file.
6993 * Makefile.in: Add dependencies on GIMPLE_H and tree-iterator.h.
6994 * configure.ac: Added support for ENABLE_GIMPLE_CHECKING and the
6995 --enable-checking=gimple flag.
6996 * config.in: Likewise.
6997 * configure: Regenerated.
6999 * tree-ssa-operands.h: Tuplified.
7000 * tree-vrp.c: Likewise.
7001 * tree-loop-linear.c: Likewise.
7002 * tree-into-ssa.c: Likewise.
7003 * tree-ssa-loop-im.c: Likewise.
7004 * tree-dump.c: Likewise.
7005 * tree-complex.c: Likewise.
7006 * cgraphbuild.c: Likewise.
7007 * tree-ssa-threadupdate.c: Likewise.
7008 * tree-ssa-loop-niter.c: Likewise.
7009 * tree-pretty-print.c: Likewise.
7010 * tracer.c: Likewise.
7011 * gengtype.c: Likewise.
7012 * tree-loop-distribution.c: Likewise.
7013 * tree-ssa-loop-unswitch.c: Likewise.
7014 * cgraph.c: Likewise.
7015 * cgraph.h: Likewise.
7016 * tree-ssa-loop-manip.c: Likewise.
7017 * value-prof.c: Likewise.
7018 * tree-ssa-loop-ch.c: Likewise.
7019 * tree-tailcall.c: Likewise.
7020 * value-prof.h: Likewise.
7023 * tree-pass.h: Likewise.
7024 * ipa-cp.c: Likewise.
7025 * tree-scalar-evolution.c: Likewise.
7026 * tree-scalar-evolution.h: Likewise.
7027 * target.h: Likewise.
7028 * lambda-mat.c: Likewise.
7029 * tree-phinodes.c: Likewise.
7030 * diagnostic.h: Likewise.
7031 * builtins.c: Likewise.
7032 * tree-ssa-alias-warnings.c: Likewise.
7033 * cfghooks.c: Likewise.
7034 * fold-const.c: Likewise.
7035 * cfghooks.h: Likewise.
7036 * omp-low.c: Likewise.
7037 * tree-ssa-dse.c: Likewise.
7038 * ipa-reference.c: Likewise.
7039 * tree-ssa-uncprop.c: Likewise.
7040 * toplev.c: Likewise.
7041 * tree-gimple.c: Likewise.
7042 * tree-gimple.h: Likewise.
7043 * tree-chrec.c: Likewise.
7044 * tree-chrec.h: Likewise.
7045 * tree-ssa-sccvn.c: Likewise.
7046 * tree-ssa-sccvn.h: Likewise.
7047 * cgraphunit.c: Likewise.
7048 * tree-ssa-copyrename.c: Likewise.
7049 * tree-ssa-ccp.c: Likewise.
7050 * tree-ssa-loop-ivopts.c: Likewise.
7051 * tree-nomudflap.c: Likewise.
7052 * tree-call-cdce.c: Likewise.
7053 * ipa-pure-const.c: Likewise.
7054 * c-format.c: Likewise.
7055 * tree-stdarg.c: Likewise.
7056 * tree-ssa-math-opts.c: Likewise.
7057 * tree-ssa-dom.c: Likewise.
7058 * tree-nrv.c: Likewise.
7059 * tree-ssa-propagate.c: Likewise.
7060 * ipa-utils.c: Likewise.
7061 * tree-ssa-propagate.h: Likewise.
7062 * tree-ssa-alias.c: Likewise.
7063 * gimple-low.c: Likewise.
7064 * tree-ssa-sink.c: Likewise.
7065 * ipa-inline.c: Likewise.
7066 * c-semantics.c: Likewise.
7067 * dwarf2out.c: Likewise.
7069 * tree-ssa-loop-ivcanon.c: Likewise.
7070 * predict.c: Likewise.
7071 * tree-ssa-loop.c: Likewise.
7072 * tree-parloops.c: Likewise.
7073 * tree-ssa-address.c: Likewise.
7074 * tree-ssa-ifcombine.c: Likewise.
7075 * matrix-reorg.c: Likewise.
7076 * c-decl.c: Likewise.
7077 * tree-eh.c: Likewise.
7078 * c-pretty-print.c: Likewise.
7079 * lambda-trans.c: Likewise.
7080 * function.c: Likewise.
7081 * langhooks.c: Likewise.
7082 * ebitmap.h: Likewise.
7083 * tree-vectorizer.c: Likewise.
7084 * function.h: Likewise.
7085 * langhooks.h: Likewise.
7086 * tree-vectorizer.h: Likewise.
7087 * ipa-type-escape.c: Likewise.
7088 * ipa-type-escape.h: Likewise.
7089 * domwalk.c: Likewise.
7090 * tree-if-conv.c: Likewise.
7091 * profile.c: Likewise.
7092 * domwalk.h: Likewise.
7093 * tree-data-ref.c: Likewise.
7094 * tree-data-ref.h: Likewise.
7095 * tree-flow-inline.h: Likewise.
7096 * tree-affine.c: Likewise.
7097 * tree-vect-analyze.c: Likewise.
7098 * c-typeck.c: Likewise.
7099 * gimplify.c: Likewise.
7100 * coretypes.h: Likewise.
7101 * tree-ssa-phiopt.c: Likewise.
7102 * calls.c: Likewise.
7103 * tree-ssa-coalesce.c: Likewise.
7104 * tree.def: Likewise.
7105 * tree-dfa.c: Likewise.
7106 * except.c: Likewise.
7107 * except.h: Likewise.
7108 * cfgexpand.c: Likewise.
7109 * tree-cfgcleanup.c: Likewise.
7110 * tree-ssa-pre.c: Likewise.
7111 * tree-ssa-live.c: Likewise.
7112 * tree-sra.c: Likewise.
7113 * tree-ssa-live.h: Likewise.
7114 * tree-predcom.c: Likewise.
7115 * lambda.h: Likewise.
7116 * tree-mudflap.c: Likewise.
7117 * ipa-prop.c: Likewise.
7118 * print-tree.c: Likewise.
7119 * tree-ssa-copy.c: Likewise.
7120 * ipa-prop.h: Likewise.
7121 * tree-ssa-forwprop.c: Likewise.
7122 * ggc-page.c: Likewise.
7123 * c-omp.c: Likewise.
7124 * tree-ssa-dce.c: Likewise.
7125 * tree-vect-patterns.c: Likewise.
7126 * tree-ssa-ter.c: Likewise.
7127 * tree-nested.c: Likewise.
7128 * tree-ssa.c: Likewise.
7129 * lambda-code.c: Likewise.
7130 * tree-ssa-loop-prefetch.c: Likewise.
7131 * tree-inline.c: Likewise.
7132 * tree-inline.h: Likewise.
7133 * tree-iterator.c: Likewise.
7134 * tree-optimize.c: Likewise.
7135 * tree-ssa-phiprop.c: Likewise.
7136 * tree-vect-transform.c: Likewise.
7137 * tree-object-size.c: Likewise.
7138 * tree-outof-ssa.c: Likewise.
7139 * cfgloop.c: Likewise.
7140 * system.h: Likewise.
7141 * tree-profile.c: Likewise.
7142 * cfgloop.h: Likewise.
7143 * c-gimplify.c: Likewise.
7144 * c-common.c: Likewise.
7145 * tree-vect-generic.c: Likewise.
7146 * tree-flow.h: Likewise.
7147 * c-common.h: Likewise.
7148 * basic-block.h: Likewise.
7149 * tree-ssa-structalias.c: Likewise.
7150 * tree-switch-conversion.c: Likewise.
7151 * tree-ssa-structalias.h: Likewise.
7152 * tree-cfg.c: Likewise.
7153 * passes.c: Likewise.
7154 * ipa-struct-reorg.c: Likewise.
7155 * ipa-struct-reorg.h: Likewise.
7156 * tree-ssa-reassoc.c: Likewise.
7157 * cfgrtl.c: Likewise.
7158 * varpool.c: Likewise.
7160 * tree-ssanames.c: Likewise.
7161 * tree-ssa-threadedge.c: Likewise.
7162 * langhooks-def.h: Likewise.
7163 * tree-ssa-operands.c: Likewise.
7164 * config/alpha/alpha.c: Likewise.
7165 * config/frv/frv.c: Likewise.
7166 * config/s390/s390.c: Likewise.
7167 * config/m32c/m32c.c: Likewise.
7168 * config/m32c/m32c-protos.h: Likewise.
7169 * config/spu/spu.c: Likewise.
7170 * config/sparc/sparc.c: Likewise.
7171 * config/i386/i386.c: Likewise.
7172 * config/sh/sh.c: Likewise.
7173 * config/xtensa/xtensa.c: Likewise.
7174 * config/stormy16/stormy16.c: Likewise.
7175 * config/ia64/ia64.c: Likewise.
7176 * config/rs6000/rs6000.c: Likewise.
7177 * config/pa/pa.c: Likewise.
7178 * config/mips/mips.c: Likewise.
7180 2008-07-28 Simon Baldwin <simonb@google.com>
7182 * c-pragma.c (handle_pragma_message): New function.
7183 (init_pragma): Register handle_pragma_message.
7184 * doc/extend.texi (Diagnostic Pragmas): Added #pragma message
7187 2008-07-27 Victor Kaplansky <victork@il.ibm.com>
7189 PR tree-optimization/35252
7190 * tree-vect-analyze.c (vect_build_slp_tree): Make IMAGPART_EXPR and
7191 REALPART_EXPR to be considered as same load operation.
7193 2008-07-27 Eric Botcazou <ebotcazou@adacore.com>
7195 PR tree-optimization/36830
7196 * tree-ssa-sccvn.c (vn_reference_op_compute_hash): Hash operand #2.
7197 (expressions_equal_p): Return false if only one operand is null.
7199 2008-07-26 Gerald Pfeifer <gerald@pfeifer.com>
7201 * doc/install.texi (powerpc-*-netbsd*): Remove redundant texinfo
7202 version requirements.
7204 2008-07-26 Olivier Hainque <hainque@adacore.com>
7206 * collect2.c (symkind): New enum. Symbol kinds we care about.
7207 (is_ctor_dtor): Return symkind instead of int. Adjust prototype,
7208 code and head comment accordingly.
7209 (scan_prog_file): Use symkind names instead of bare integers.
7211 2008-07-25 Jan Hubicka <jh@suse.cz>
7213 * cgraph.c (cgraph_function_possibly_inlined_p): Do not rely on
7215 * cgraphunit.c (record_cdtor_fn): Do not initialize DECL_INLINE
7216 (cgraph_preserve_function_body_p): Do not rely on DECL_INLINE.
7217 * dojump.c (clear_pending_stack_adjust): Likewise.
7218 * print-tree.c (print_node): Ignore DECL_INLINE.
7219 * tree-inline.c (inlinable_function_p): Likewise.
7221 2008-07-25 Michael Meissner <gnu@the-meissners.org>
7223 * doc/extend.texi (hot attribute): Document that the hot attribute
7224 turns on -O3 for some ports.
7225 (cold attribute): Document that the cold attribute turns on -Os
7228 * doc/tm.texi (OPTIMIZATION_OPTIONS): Update documentation to
7229 reflect function specific option support.
7231 * target.h (struct target_option_hooks): Add fields to say whether
7232 the cold attribute implies -Os and the hot attribute implies -O3.
7234 * target-def.h (TARGET_OPTION_COLD_ATTRIBUTE_SETS_OPTIMIZATION):
7235 By default, do not turn on -Os for cold functions.
7236 (TARGET_OPTION_COLD_ATTRIBUTE_SETS_OPTIMIZATION): By default, do
7237 not turn on -O3 for hot functions.
7239 * c-common.c (handle_hot_attribute): Use target hook to determine
7240 if hot functions should enable -O3.
7241 (handle_cold_attribute): Use target hook to determine if cold
7242 functions should enable -Os.
7244 * config/i386/i386.c (ix86_target_string): Add -m3dnowa support.
7245 (override_options): Move disable scheduling to
7246 optimization_options.
7247 (optimization_options): Disable scheduling here, not
7249 (TARGET_OPTION_COLD_ATTRIBUTE_SETS_OPTIMIZATION): Define.
7250 (TARGET_OPTION_HOT_ATTRIBUTE_SETS_OPTIMIZATION): Define.
7252 * config/ia64/ia64.c (ia64_override_options): Move setting
7253 scheduling flags to ia64_optimization_options.
7254 (ia64_optimization_options): Disable scheduling options here, and
7255 not in ia64_override_options.
7256 (TARGET_OPTION_COLD_ATTRIBUTE_SETS_OPTIMIZATION): Define.
7257 (TARGET_OPTION_HOT_ATTRIBUTE_SETS_OPTIMIZATION): Define.
7259 2008-07-25 H.J. Lu <hongjiu.lu@intel.com>
7262 * config/i386/i386.c (override_options): Don't clear TARGET_CMOVE.
7264 2008-07-25 Martin Jambor <mjambor@suse.cz>
7266 PR tree-optimization/36926
7267 * ipa-prop.c (ipa_analyze_call_uses): Call
7268 ipa_is_ssa_with_stmt_def instead of SSA_NAME_IS_DEFAULT_DEF.
7270 2008-07-25 Joseph Myers <joseph@codesourcery.com>
7272 * config/arm/iwmmxt.md (movv8qi_internal, movv4hi_internal,
7273 movv2si_internal): Add mem = reg alternative.
7275 2008-07-25 Andreas Tobler <a.tobler@schweiz.org>
7278 * config/sparc/sparc.h (DEFAULT_PCC_STRUCT_RETURN): Define
7279 DEFAULT_PCC_STRUCT_RETURN to 127.
7281 2008-07-24 Jan Hubicka <jh@suse.cz>
7283 * cgraphbuild.c (record_reference): Drop non-unit-at-a-time code.
7284 (build_cgraph_edges): Likewise.
7285 * cgraph.c (cgraph_node): Do not update assembler hash.
7286 (cgraph_remove_node): Drop non-unit-at-a-time code.
7287 * tree-pass.h (pass_O0_always_inline): Remove.
7288 * ipa-reference.c (gate_reference): Remove unit-at-a-time check.
7289 * toplev.c (process_options): Flag unit-at-a-time does not imply
7291 * cgraphunit.c: Update comments.
7292 (decide_is_function_needed): Drop non-unit-at-a-time mode.
7293 (cgraph_assemble_pending_functions): Remove.
7294 (cgraph_reset_node): Drop non-unit-at-a-time code.
7295 (cgraph_finalize_function): Likewise.
7296 (cgraph_analyze_function): Likewise.
7297 (cgraph_finalize_compilation_unit): Likewise.
7298 (cgraph_expand_function): Likewise.
7299 (cgraph_optimize): Likesise.
7300 (save_inline_function_body): Likewise.
7301 * ipa-pure-const.c (gate_pure_const): Drop flag_unit_at_a_time check.
7302 * tree-ssa-alias.c (maybe_be_aliased): Likewise.
7303 * ipa-inline.c: Update comments.
7304 (enum inlining_mode): remove INLINE_SPEED.
7305 (cgraph_clone_inlined_nodes): Drop unit-at-a-time check.
7306 (cgraph_mark_inline_edge): Likewise.
7307 (try_inline): Likewise.
7308 (cgraph_decide_inlining_incrementally): Likewise.
7309 (cgraph_gate_inlining): Remove.
7310 (cgraph_early_inlining): Remove flag_unit_at_a_time checks.
7311 (cgraph_gate_early_inlining): Likewise.
7312 (gate_inline_passes): Remove.
7313 (pass_inline_parameters, pass_ipa_inline): Remove gates.
7314 (cgraph_gate_O0_always_inline, cgraph_O0_always_inline,
7315 pass_O0_always_inline): Remove.
7316 * c-pch.c (c_pch_matching): Remove -funit-at-a-time.
7317 * dwarf2out.c (reference_to_unused): Remove flag_unit_at_a_time check.
7318 * opts.c (no_unit_at_a_time_default): Remove.
7319 (decode_options): Remove flag_unit_at_a_time reset and warning.
7320 * opts.h (no_unit_at_a_time_default): Remove.
7321 * c-decl.c (diagnose_mismatched_decls): Do not require inline keyword
7322 early in GNU dialect.
7323 (merge_decls): Update comment; drop unit-at-a-time check.
7324 (finish_decl): Likewise.
7325 (grok_declaration): Remove flag_inline_trees code.
7326 (finish_functions): Return on function returning non-void on all
7328 * ipa-tye-escape.c (gate_type_escape_vars): Remove.
7329 * cfgexpand.c (expand_one_static_var): Remove.
7330 (expand_one_var): Remove expand_one_static_var call.
7331 (expand_used_vars_for_block): Remove flag_unit_a_time check.
7332 * c-opts.c (c_common_post_options): Remove flag_inline_trees code
7333 and flag_unit_at_a-time compatibility checks.
7334 * varasm.c (assemble_alias): Remove flag_unit_at_a_time check.
7335 * tree-inline.c (flag_inline_trees): Remove.
7336 (inlinable_function_p): Don't check it.
7337 (expand_call_inline): Remove non-unit-at-a-time code.
7338 * tree-inline.h (flag_inline_trees): Remove.
7339 * tree-optimize.c (execute_early_local_optimizations): Remove
7340 unit-at-a-time checks.
7341 (tree_rest_of_compilation): Likewise.
7342 * combine.c (setup_incoming_promotions): Likewise.
7343 * tree-profile.c (tree_gen_ic_func_profiler): Likewise.
7344 * tree-ssa-structalias.c (delete_points_to_sets): Likewise.
7345 * passes.c (pass_inline_parameters): Update comments; remove
7346 O0_alwaysinline pass.
7347 (execute_one_ipa_transform_pass): Do not reset in_gimple_form.
7348 (execute_one_pass): Likewise.
7349 * i386.c (ix86_function_regparm): Remove unit-at-a-time check.
7350 (ix86_function_sseregparm): Likewise.
7351 * arm.c (arm_function_in_section_p): Likewise.
7352 * bfin.c (bfin_load_pic_reg, bfin_function_ok_for_sibcall): Likewise.
7353 * varpool.c: Update comments.
7354 (decide_is_variable_needed): Remove unit-at-a-time checks.
7355 (varpool_finalize_decl): Likewise.
7357 2008-07-24 Kaz Kojima <kkojima@gcc.gnu.org>
7359 * config/sh/sh.h (OPTIMIZATION_OPTIONS): Set flag_omit_frame_pointer
7361 (OVERRIDE_OPTIONS): Check if flag_omit_frame_pointer is equal to 2.
7363 2008-07-24 Kai Tietz <kai.tietz@onevision.com>
7365 * config/i386/i386.c (get_dllimport_decl): Treat user_label_prefix for
7366 imp symbol extension.
7368 2008-07-23 Ian Lance Taylor <iant@google.com>
7370 * tree-vrp.c (infer_value_range): Ignore asm statements when
7371 looking for memory accesses for -fdelete-null-pointer-checks.
7373 2008-07-24 Ben Elliston <bje@au.ibm.com>
7375 * config/spu/spu-c.c (__vector_keyword): New variable.
7376 (vector_keyword): Likewise.
7377 (spu_categorize_keyword): New function.
7378 (spu_macro_to_expand): Likewise.
7379 (spu_cpu_cpp_builtins): Enable context-sensitive macros if not
7380 compiling an ISO C dialect.
7382 2008-07-24 Ben Elliston <bje@au.ibm.com>
7384 * config/rs6000/rs6000-c.c: Move GTY(()) markers to match
7387 2008-07-23 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
7389 * configure: Regenerate.
7390 * configure.ac: Require texinfo 4.7.
7391 * doc/install.texi: Document texinfo 4.7 requirement.
7393 2008-07-23 Martin Jambor <mjambor@suse.cz>
7395 * ipa-cp.c (ipcp_print_edge_profiles): Test for node->analyzed
7396 rather than for DECL_SAVED_TREE.
7397 * ipa-prop.c: Include diagnostic.h.
7398 (ipa_check_stmt_modifications): Check LHS of GIMPLE_MODIFY_EXPRs
7400 (ipa_detect_param_modifications): Function rewritten from scratch.
7401 (ipa_compute_jump_functions): Changed accesses to modification flags.
7402 (ipa_free_node_params_substructures): Update flags destruction.
7403 (ipa_node_duplication_hook): Update flags duplication.
7404 (ipa_print_all_params_modified): Updated flag access.
7405 * ipa-prop.h (struct ipa_param_flags): New structure.
7406 (struct ipa_node_params): New field modification_analysis_done,
7407 modified_flags changed into param_flags.
7408 (ipa_is_ith_param_modified): Changed to use new flags.
7409 * Makefile.in (ipa-prop.o): Add $(DIAGNOSTIC_H) to dependencies.
7411 * ipa-prop.c (ipa_print_all_jump_functions): Moved here from
7412 ipa-cp.c and split into two functions.
7413 (ipa_print_node_jump_functions): New function.
7414 (compute_scalar_jump_functions): New function.
7415 (type_like_member_ptr_p): New function.
7416 (compute_pass_through_member_ptrs): New function.
7417 (fill_member_ptr_cst_jump_function): New function.
7418 (determine_cst_member_ptr): New function.
7419 (compute_cst_member_ptr_arguments): New function.
7420 (ipa_compute_jump_functions): Complete rewrite.
7421 * ipa-prop.h (enum jump_func_type): Make explicit that we depend
7422 on IPA_UNKNOWN being zero. Added value IPA_CONST_MEMBER_PTR.
7423 (struct ipa_member_ptr_cst): New structure.
7424 (union jump_func_value): New field member_cst.
7425 * ipa-cp.c (ipcp_lat_is_insertable): New function.
7426 (ipcp_lattice_from_jfunc): Produces bottom lattices for unhandled
7427 jump function types.
7428 (ipcp_print_all_lattices): Slight fprintf rearrangement.
7429 (ipcp_print_all_structures): Call ipa_print_all_jump_functions
7430 instead of ipcp_print_all_jump_functions.
7431 (ipcp_insert_stage): Use ipcp_lat_is_insertable, create replace maps
7432 only for replacable scalars.
7434 * doc/invoke.texi (Optimize options): Add description of
7435 -findirect-inlining.
7436 * common.opt (flag_indirect_inlining): New flag.
7437 * opts.c (decode_options): Set flag_indirect_inlining when
7440 * ipa-inline.c: Include ipa-prop.h.
7441 (inline_indirect_intraprocedural_analysis): New function.
7442 (inline_generate_summary): Allocate parameter and argument info
7443 structures, call inline_indirect_intraprocedural_analysis on each
7444 node when doing indirect inlining and deallocate indirect inlining
7445 data structures in the end.
7446 * ipa-prop.c (ipa_create_param_decls_array): Return if already done.
7447 (free_all_ipa_structures_after_iinln): New function.
7448 (free_all_ipa_structures_after_ipa_cp): Checks whether iinln will be
7450 * Makefile.in (ipa-inline.o): Added $(IPA_PROP_H) to dependencies.
7452 * cgraphbuild.c (compute_call_stmt_bb_frequency): New function.
7453 (build_cgraph_edges): Call compute_call_stmt_bb_frequency instead
7454 of computing the frequency separately.
7455 (rebuild_cgraph_edges): Call compute_call_stmt_bb_frequency instead
7456 of computing the frequency separately.
7457 * ipa-cp.c (ipcp_print_all_structures): Replace a call to
7458 ipa_print_all_param_modified with a call to ipa_print_all_param_flags.
7459 * ipa-prop.c (ipa_get_member_ptr_load_param): New function.
7460 (ipa_get_stmt_member_ptr_load_param): New function.
7461 (ipa_is_ssa_with_stmt_def): New function.
7462 (ipa_note_param_call): New function.
7463 (ipa_analyze_call_uses): New function.
7464 (ipa_analyze_stmt_uses): New function.
7465 (ipa_analyze_params_uses): New function.
7466 (ipa_free_node_params_substructures): Also free the param_calls linked
7468 (ipa_node_duplication_hook): Also duplicate the param_calls
7470 (ipa_print_node_param_flags): New function.
7471 (ipa_print_all_params_modified): Renamed to ipa_print_all_param_flags.
7472 (ipa_print_all_param_flags): Calls ipa_print_node_param_flags.
7473 * ipa-prop.h (struct ipa_param_flags): New field called.
7474 (struct ipa_param_call_note): New structure.
7475 (struct ipa_node_params): New fields param_calls and
7477 (ipa_is_ith_param_called): New function.
7478 * ipa-inline.c (inline_indirect_intraprocedural_analysis): Call
7479 ipa_analyze_params_uses and dump parameter flags.
7481 * ipa-inline.c (cgraph_decide_recursive_inlining): Call
7482 ipa_propagate_indirect_call_infos if performing indirect inlining,
7483 pass a new parameter new_edges to it.
7484 (add_new_edges_to_heap): New fucntion.
7485 (cgraph_decide_inlining_of_small_functions): New vector
7486 new_indirect_edges for newly found indirect edges , call
7487 ipa_propagate_indirect_call_infos after inlining.
7488 (cgraph_decide_inlining): Call ipa_propagate_indirect_call_infos after
7489 inlining if performing indirect inlining. Call
7490 free_all_ipa_structures_after_iinln when doing so too.
7491 (inline_generate_summary): Do not call
7492 free_all_ipa_structures_after_iinln here.
7493 * ipa-prop.c (update_jump_functions_after_inlining): New function.
7494 (print_edge_addition_message): New function.
7495 (update_call_notes_after_inlining): New function.
7496 (propagate_info_to_inlined_callees): New function.
7497 (ipa_propagate_indirect_call_infos): New function.
7498 * ipa-prop.h: Include cgraph.h
7499 (struct ipa_param_call_note): Fields reordered, new field processed.
7500 * cgraph.h (cgraph_edge): Shrink loop_nest field to 31 bits, add a new
7502 * cgraphunit.c (verify_cgraph_node): Allow indirect edges not to have
7503 rediscovered call statements.
7504 * cgraph.c (cgraph_create_edge): Initialize indirect_call to zero.
7505 (dump_cgraph_node): Dump also the indirect_call flag.
7506 (cgraph_clone_edge): Copy also the indirect_call flag.
7507 * tree-inline.c (copy_bb): Do not check for fndecls from call
7508 expressions, check for edge availability when moving clones.
7509 (get_indirect_callee_fndecl): New function.
7510 (expand_call_inline): If callee declaration is not apprent from
7511 the statement, try calling get_indirect_callee_fndecl. Do not
7512 issue warnings or call sorry when not inlinings an indirect edge.
7513 * Makefile.in (IPA_PROP_H): Added $(CGRAPH_H) to dependencies.
7515 * ipa-prop.c (ipa_print_node_param_flags): Make the dump format a
7516 bit more frandly to matching.
7517 * testsuite/g++.dg/ipa/iinline-1.C: New testcase.
7518 * testsuite/gcc.dg/ipa/iinline-1.c: New testcase.
7519 * testsuite/gcc.dg/ipa/modif-1.c: New testcase.
7521 2008-07-23 Michael Meissner <gnu@the-meissners.org>
7524 * opth-gen.awk: Suppress function specific features when building
7526 * optc-gen.awk: Ditto.
7528 2008-07-23 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
7531 * diagnostic.c (pedwarn): Add opt parameter.
7533 * c-tree.h (pedwarn_init): Add opt parameter.
7534 (pedwarn_c90): Likewise.
7535 (pedwarn_c99): Likewise.
7536 * c-errors.c (pedwarn_c99): Likewise.
7537 (pedwarn_c90): Likewise.
7538 * toplev.h (pedwarn): Update declaration.
7539 (pedwarn0): Declare.
7540 * c-lex.c: All calls to pedwarn changed.
7541 * builtins.c: All calls to pedwarn changed.
7542 * toplev.c: All calls to pedwarn changed.
7543 * c-decl.c: All calls to pedwarn changed.
7544 * c-typeck.c: All calls to pedwarn changed.
7545 * c-common.c: All calls to pedwarn changed.
7546 * c-parser.c: All calls to pedwarn changed.
7548 2008-07-23 Michael Meissner <gnu@the-meissners.org>
7549 Karthik Kumar <karthikkumar@gmail.com>
7551 * attribs.c (file scope): Include c-common.h.
7552 (decl_attributes): Add support for #pragma GCC optimize and
7555 * targhooks.c (default_can_inline_p): New function that is the
7556 default for the TARGET_CAN_INLINE_P target hook.
7558 * targhooks.h (default_can_inline_p): Add declaration.
7560 * tree.c (cl_optimization_node): New static tree for building
7561 OPTIMIZATION_NODE tree.
7562 (cl_target_option_node): New static tree for building
7563 TARGET_OPTION_NODE tree.
7564 (cl_option_hash_table): New hash table for hashing
7565 OPTIMIZATION_NODE and TARGET_OPTION_NODE trees.
7566 (cl_option_hash_hash): New function to provide the hash value for
7567 OPTIMIZATION_NODE and TARGET_OPTION_NODE trees.
7568 (cl_option_hash_eq): New function to provide an equality test for
7569 OPTIMIZATION_NODE and TARGET_OPTION_NODE trees.
7570 (tree_code_size): Add support for OPTIMIZATION_NODE and
7571 TARGET_OPTION_NODE trees.
7572 (tree_code_structure): Add support for OPTIMIZATION_NODE and
7573 TARGET_OPTION_NODE trees.
7574 (build_optimization_node): Build a tree that has all of the
7575 current optimization options.
7576 (build_target_option_node): Build a tree that has the target
7577 options that might be changed on a per function basis.
7579 * tree.h (file scope): Include options.h.
7580 (DECL_FUNCTION_SPECIFIC_TARGET): New accessor macro.
7581 (DECL_FUNCTION_SPECIFIC_OPTIMIZATION): Ditto.
7582 (TREE_OPTIMIZATION): Ditto.
7583 (TREE_TARGET_SPECIFIC): Ditto.
7584 (struct tree_function_decl): Add fields for remembering the
7585 current optimization options and target specific options.
7586 (struct tree_optimization_option): New tree variant that remembers
7587 the optimization options.
7588 (struct tree_target_option): New tree variant that remembers the
7589 target specific flags that might change for compiling a particular
7591 (union tree_node): Include tree_optimization_option and
7592 tree_target_option fields.
7593 (enum tree_index): Add TI_OPTIMIZATION_DEFAULT,
7594 TI_OPTIMIZATION_CURRENT, TI_OPTIMIZATION_COLD,
7595 TI_OPTIMIZATION_HOT, TI_TARGET_OPTION_DEFAULT,
7596 TI_TARGET_OPTION_CURRENT, TI_CURRENT_OPTION_PRAGMA,
7597 TI_CURRENT_OPTIMIZE_PRAGMA entries for saving function specific
7598 optimization and target options.
7599 (optimization_default_node): New macro to refer to global_trees
7601 (optimization_current_node): Ditto.
7602 (optimization_cold_node): Ditto.
7603 (optimization_hot_node): Ditto.
7604 (target_option_default_node): Ditto.
7605 (target_option_current_node): Ditto.
7606 (current_option_pragma): Ditto.
7607 (current_optimize_pragma): Ditto.
7609 * target.h (struct gcc_target): Add valid_option_attribute_p,
7610 target_option_save, target_option_restore, target_option_print,
7611 target_option_pragma_parse, and can_inline_p hooks.
7613 * toplev.h (parse_optimize_options): Add declaration.
7614 (fast_math_flags_struct_set_p): Ditto.
7616 * c-cppbuiltin.c (c_cpp_builtins_optimize_pragma): New function to
7617 adjust the current __OPTIMIZE__, etc. macros when #pragma GCC
7620 * ipa-inline.c (cgraph_decide_inlining_of_small_function): Call
7621 tree_can_inline_p hook to see if one function can inline another.
7622 (cgraph_decide_inlining): Ditto.
7623 (cgraph_decide_inlining_incrementally): Ditto.
7625 * opts.c (decode_options): Add support for running multiple times
7626 to allow functions with different target or optimization options
7627 than was specified on the command line.
7628 (fast_math_flags_struct_set_p): New function that is similar to
7629 fast_math_flags_set_p, except it uses the values in the
7630 cl_optimization structure instead of global variables.
7632 * optc-gen.awk: Add support for TargetSave to allow a back end to
7633 declare new fields that need to be saved when using function
7634 specific options. Include flags.h and target.h in the options.c
7635 source. Add support for Save to indicate which options can be set
7636 for individual functions. Generate cl_optimize_save,
7637 cl_optimize_restore, cl_optimize_print, cl_target_option_save,
7638 cl_target_option_restore, cl_target_option_print functions to
7639 allow functions to use different optimization or target options.
7641 * opt-functions.awk (var_type_struct): Return the type used for
7642 storing the field in a structure.
7644 * opth-gen.awk: Add support for TargetSave to allow a back end to
7645 declare new fields that need to be saved when using function
7646 specific options. Add support for Save to indicate which options
7647 can be set for individual functions. Only generate one extern for
7648 Mask fields. Generate cl_optimization and cl_target_option
7649 structures to remember optimization and target options.
7651 * treestruct.def (TS_OPTIMIZATION): Add support for garbage
7652 collecting new tree nodes.
7653 (TS_TARGET_OPTION): Ditto.
7655 * c-decl.c (merge_decls): Merge function specific target and
7656 optimization options.
7658 * function.c (invoke_set_current_function_hook): If the function
7659 uses different optimization options, change the global variables
7662 * coretypes.h (struct cl_optimization): Add forward reference.
7663 (struct cl_target_option): Ditto.
7665 * c-pragma.c (option_stack): New static vector to remember the
7666 current #pragma GCC option stack.
7667 (handle_pragma_option): New function to support #pragma GCC option
7668 to change target options.
7669 (optimize_stack): New static vector to remember the current
7670 #pragma GCC optimize stack.
7671 (handle_pragma_optimize): New function to support #pragma GCC
7672 optimize to change optimization options.
7673 (init_pragma): Add support for #pragma GCC optimize and #pragma
7676 * tree.def (OPTIMIZATION_NODE): New tree code for remembering
7677 optimization options.
7678 (TARGET_OPTION_NODE): New tree code for remembering certain target
7681 * print-tree.c (print_node): Add support for OPTIMIZATION_NODE and
7682 TARGET_OPTION_NODE trees.
7684 * common.opt (-O): Add Optimization flag.
7686 (-fmath-errno): Ditto.
7687 (-falign-functions): Add UInteger flag to make sure flag gets full
7688 int in cl_optimization structure.
7689 (-falign-jumps): Ditto.
7690 (-falign-labels): Ditto.
7691 (-falign-loops): Ditto.
7692 (-fsched-stalled-insns): Ditto.
7693 (-fsched-stalled-insns-dep): Ditto.
7695 * target-def.h (TARGET_VALID_OPTION_ATTRIBUTE_P): Add default
7697 (TARGET_OPTION_SAVE): Ditto.
7698 (TARGET_OPTION_RESTORE): Ditto.
7699 (TARGET_OPTION_PRINT): Ditto.
7700 (TARGET_OPTION_PRAGMA_PARSE): Ditto.
7701 (TARGET_CAN_INLINE_P): Ditto.
7702 (TARGET_INITIALIZER): Add new hooks.
7704 * tree-inline.c (tree_can_inline_p): New function to determine
7705 whether one function can inline another. Check if the functions
7706 use compatible optimization options, and also call the backend
7709 * tree-inline.h (tree_can_inline_p): Add declaration.
7711 * c-common.c (c_common_attribute): Add support for option and
7712 optimize attributes.
7713 (handle_option_attribute): Add support for the option attribute to
7714 allow the user to specify different target options for compiling a
7716 (handle_optimize_attribute): Add support for the optimize
7717 attribute to allow the user to specify different optimization
7718 options for compiling a specific function.
7719 (handle_hot_attribute): Turn on -O3 optimization for this one
7720 function if it isn't the default optimization level.
7721 (handle_cold_attribute): Turn on -Os optimization for this one
7722 function if it insn't the default optimization.
7723 (const_char_p): New const char * typedef.
7724 (optimize_args): New static vector to remember the optimization
7726 (parse_optimize_options): New function to set up the optimization
7727 arguments from either the optimize attribute or #pragma GCC optimize.
7729 * c-common.h (c_cpp_builtins_optimize_pragma): Add declaration.
7730 (builtin_define_std): Ditto.
7732 * config.gcc (i[3467]86-*-*): Add i386-c.o to C/C++ languages.
7733 Add t-i386 Makefile fragment to add i386-c.o and i386.o dependencies.
7734 (x86_64-*-*): Ditto.
7736 * Makefile.in (TREE_H): Add options.h.
7737 (options.o): Add $(TARGET_H) $(FLAGS_H) dependencies.
7739 * doc/extend.texi (option attribute): Document new attribute.
7740 (optimize attribute): Ditto.
7741 (hot attribute): Document hot attribute sets -O3.
7742 (cold attribute): Document cold attribute sets -Os.
7743 (#pragma GCC option): Document new pragma.
7744 (#pragma GCC optimize): Ditto.
7746 * doc/options.texi (TargetSave): Document TargetSave syntax.
7747 (UInteger): Document UInteger must be used for certain flags.
7748 (Save): Document Save option to create target specific options
7749 that can be saved/restored on a function specific context.
7751 * doc/c-tree.texi (DECL_FUNCTION_SPECIFIC_TARGET): Document new macro.
7752 (DECL_FUNCTION_SPECIFIC_OPTIMIZATION): Ditto.
7754 * doc/tm.texi (TARGET_VALID_OPTION_ATTRIBUTE_P): Document new hook.
7755 (TARGET_OPTION_SAVE): Ditto.
7756 (TARGET_OPTION_RESTORE): Ditto.
7757 (TARGET_OPTION_PRINT): Ditto.
7758 (TARGET_OPTION_PRAGMA_PARSE): Ditto.
7759 (TARGET_CAN_INLINE_P): Ditto.
7761 * doc/invoke.texi (-mfpmath=sse+387): Document as an alias for
7763 (-mfpmath=both): Ditto.
7765 2008-07-23 Michael Meissner <gnu@the-meissners.org>
7766 Karthik Kumar <karthikkumar@gmail.com>
7768 * config/i386/i386.h (TARGET_ABM): Move switch into ix86_isa_flags.
7769 (TARGET_POPCNT): Ditto.
7770 (TARGET_SAHF): Ditto.
7771 (TARGET_AES): Ditto.
7772 (TARGET_PCLMUL): Ditto.
7773 (TARGET_CMPXCHG16B): Ditto.
7774 (TARGET_RECIP): Move switch into target_flags.
7775 (TARGET_FUSED_MADD): Ditto.
7776 (ix86_arch_features): Make an unsigned char type.
7777 (ix86_tune_features): Ditto.
7778 (OVERRIDE_OPTIONS): Add bool argument to override_options call.
7779 (TARGET_CPU_CPP_BUILTINS): Move into ix86_target_macros.
7780 (REGISTER_TARGET_PRAGMAS): Define, call ix86_register_pragmas.
7782 * config/i386/i386.opt (arch): New TargetSave field to define
7783 fields that need to be saved for function specific option support.
7786 (branch_cost): Ditto.
7787 (ix86_isa_flags_explicit): Ditto.
7788 (tune_defaulted): Ditto.
7789 (arch_specified): Ditto.
7790 (-m128-long-double): Add Save flag to save option for target
7791 specific option support.
7793 (-maccumulate-outgoing-args): Ditto.
7794 (-malign-double): Ditto.
7795 (-malign-stringops): Ditto.
7796 (-mfancy-math-387): Ditto.
7797 (-mhard-float): Ditto.
7799 (-minline-all-stringops): Ditto.
7800 (-minline-stringops-dynamically): Ditto.
7801 (-mms-bitfields): Ditto.
7802 (-mno-align-stringops): Ditto.
7803 (-mno-fancy-math-387): Ditto.
7804 (-mno-push-args): Ditto.
7805 (-mno-red-zone): Ditto.
7806 (-mpush-args): Ditto.
7807 (-mred-zone): Ditto.
7809 (-msseregparm): Ditto.
7810 (-mstack-arg-probe): Ditto.
7825 (-mrecip): Move flag into target_flags.
7827 (-mno-fused-madd): Ditto.
7828 (-mfused-madd): Ditto.
7829 (-mabm): Move flag into ix86_isa_flags.
7836 * config/i386/i386-c.c: New file for #pragma support.
7837 (ix86_target_macros_internal): New function to #define or #undef
7838 target macros based when the user uses the #pragma GCC option to
7839 change target options.
7840 (ix86_pragma_option_parse): New function to add #pragma GCC option
7842 (ix86_target_macros): Move defining the target macros here from
7843 TARGET_CPU_CPP_BUILTINS in i386.h.
7844 (ix86_register_pragmas): Register the #pragma GCC option hook. If
7845 defined, initialize any subtarget #pragmas.
7847 * config/i386/darwin.h (REGISTER_SUBTARGET_PRAGMAS): Rename from
7848 REGISTER_TARGET_PRAGMAS.
7850 * config/i386/t-i386: New file for x86 dependencies.
7851 (i386.o): Make dependencies mirror the include files used.
7852 (i386-c.o): New file, add dependencies.
7854 * config/i386/i386-protos.h (override_options): Add bool argument.
7855 (ix86_valid_option_attribute_tree): Add declaration.
7856 (ix86_target_macros): Ditto.
7857 (ix86_register_macros): Ditto.
7859 * config/i386/i386.c (ix86_tune_features): Move initialization of
7860 the target masks to initial_ix86_tune_features to allow functions
7861 to have different target options. Make type unsigned char,
7862 instead of unsigned int.
7863 (initial_ix86_tune_features): New static vector to hold processor
7864 masks for the tune variables.
7865 (ix86_arch_features): Move initialization of the target masks to
7866 initial_ix86_arch_features to allow functions to have different
7867 target options. Make type unsigned char, instead of unsigned int.
7868 (initial_ix86_arch_features): New static vector to hold processor
7869 masks for the arch variables.
7870 (enum ix86_function_specific_strings): New enum to describe the
7871 string options used for attribute((option(...))).
7872 (ix86_target_string): New function to return a string that
7873 describes the target options.
7874 (ix86_debug_options): New function to print the current options in
7876 (ix86_function_specific_save): New function hook to save the
7877 function specific global variables in the cl_target_option structure.
7878 (ix86_function_specific_restore): New function hook to restore the
7879 function specific variables from the cl_target_option structure to
7880 the global variables.
7881 (ix86_function_specific_print): New function hook to print the
7882 target specific options in the cl_target_option structure.
7883 (ix86_valid_option_attribute_p): New function hook to validate
7884 attribute((option(...))) arguments.
7885 (ix86_valid_option_attribute_tree): New function that is common
7886 code between attribute((option(...))) and #pragma GCC option
7887 support that parses the options and returns a tree holding the options.
7888 (ix86_valid_option_attribute_inner_p): New helper function for
7889 ix86_valid_option_attribute_tree.
7890 (ix86_can_inline_p): New function hook to decide if one function
7891 can inline another on a target specific basis.
7892 (ix86_set_current_function); New function hook to switch target
7893 options if the user used attribute((option(...))) or #pragma GCC
7895 (ix86_tune_defaulted): Move to static file scope from
7897 (ix86_arch_specified): Ditto.
7898 (OPTION_MASK_ISA_AES_SET): New macro for moving switches into
7900 (OPTION_MASK_ISA_PCLMUL_SET): Ditto.
7901 (OPTION_MASK_ISA_ABM_SET): Ditto.
7902 (OPTION_MASK_ISA_POPCNT_SET): Ditto.
7903 (OPTION_MASK_ISA_CX16_SET): Ditto.
7904 (OPTION_MASK_ISA_SAHF_SET): Ditto.
7905 (OPTION_MASK_ISA_AES_UNSET): Ditto.
7906 (OPTION_MASK_ISA_PCLMUL_UNSET): Ditto.
7907 (OPTION_MASK_ISA_ABM_UNSET): Ditto.
7908 (OPTION_MASK_ISA_POPCNT_UNSET): Ditto.
7909 (OPTION_MASK_ISA_CX16_UNSET): Ditto.
7910 (OPTION_MASK_ISA_SAHF_UNSET): Ditto.
7911 (struct ptt): Move to static file scope from override_options.
7912 (processor_target_table): Ditto.
7914 (ix86_handle_option): Add support for options that are now isa options.
7915 (override_options): Add support for declaring functions that
7916 support different target options than were specified on the
7917 command line. Move struct ptt, processor_target_table, cpu_names,
7918 ix86_tune_defaulted, ix86_arch_specified to static file scope.
7919 Add bool argument. Fix up error messages so the appropriate error
7920 is given for either command line or attribute.
7921 (ix86_previous_fndecl): New static to remember previous function
7922 declaration to see if we need to change target options.
7923 (ix86_builtins_isa): New array to record the ISA of each builtin
7925 (def_builtin): Always create the builtin function, even if the
7926 current ISA doesn't support it.
7927 (ix86_init_mmx_sse_builtins): Remove TARGET_AES and TARGET_PCLMUL
7928 tests for those builtins.
7929 (ix86_init_builtins): Remove TARGET_MMX test for calling
7930 ix86_init_mmx_sse_builtins.
7931 (ix86_expand_builtin): If the current ISA doesn't support a given
7932 builtin, signal an error.
7933 (TARGET_VALID_OPTION_ATTRIBUTE_P): Set target hook.
7934 (TARGET_SET_CURRENT_FUNCTION): Ditto.
7935 (TARGET_OPTION_SAVE): Ditto.
7936 (TARGET_OPTION_RESTORE): Ditto.
7937 (TARGET_OPTION_PRINT): Ditto.
7938 (TARGET_CAN_INLINE_P): Ditto.
7940 2008-07-22 Rafael Ávila de Espíndola <espindola@google.com>
7942 * c-typeck.c (build_external_ref): Don't call assemble_external.
7943 * final.c (output_operand): Call assemble_external.
7945 2008-07-21 DJ Delorie <dj@redhat.com>
7947 * config/h8300/h8300.c (h8300_hard_regno_scratch_ok): New.
7948 (TARGET_HARD_REGNO_SCRATCH_OK): Define.
7950 2008-07-21 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
7952 * config/spu/spu.md ("div<mode>3"): Convert into expander, move
7953 original insn and splitter contents into ...
7954 ("*div<mode>3_fast"): ... this new pattern. Enable only if
7955 flag_unsafe_math_optimizations. Add dummy scratch register.
7956 ("*div<mode>3_adjusted"): New insn and splitter. Enable only if
7957 !flag_unsafe_math_optimizations. Returns number with next
7958 highest magnitude if this is still less or equal to the true
7959 quotient in magnitude.
7961 2008-07-21 Rafael Ávila de Espíndola <espindola@google.com>
7963 * Makefile.in: Replace toplev.h with TOPLEV_H.
7964 * c-decl.c (merge_decls): Don't set DECL_IN_SYSTEM_HEADER.
7965 * c-lex.c (fe_file_change): Don't set in_system_header.
7966 * c-parser.c (c_token): Remove in_system_header.
7967 (c_lex_one_token): Don't set in_system_header.
7968 (c_parser_set_source_position_from_token): Don't set in_system_header.
7969 * diagnostic.c (diagnostic_report_diagnostic): Use location from
7972 * diagnostic.h (diagnostic_report_warnings_p): Add LOC argument.
7973 * flags.h (in_system_header): Remove.
7974 * function.c (saved_in_system_header): Remove.
7975 (push_cfun): Don't set in_system_header.
7976 (pop_cfun): Don't set in_system_header.
7977 (push_struct_function): Don't set in_system_header.
7978 * input.h (expanded_location): Add sysp.
7979 (in_system_header_at): New.
7980 (in_system_header): New.
7981 * toplev.c (in_system_header): Remove.
7982 * toplev.h: Include input.h
7984 * tree-cfg.c (execute_warn_function_return): Call warning_at.
7985 * tree-ssa.c (warn_uninit): Call warning_at.
7986 (warn_uninitialized_var): Update calls to warn_uninit.
7987 (warn_uninitialized_phi): Update calls to warn_uninit.
7988 * tree.c (make_node_stat): Don't set DECL_IN_SYSTEM_HEADER.
7989 (expand_location): Initialize xloc.sysp.
7990 * tree.h (DECL_IN_SYSTEM_HEADER): Use in_system_header_at.
7991 (tree_decl_with_vis): Remove in_system_header_flag.
7993 2008-07-21 Andreas Krebbel <krebbel1@de.ibm.com>
7996 * recog.c (asm_operand_ok): Change the order of the extra
7997 memory constraint checks.
7999 2008-07-20 Andrew Pinski <andrew_pinski@playstation.sony.com>
8002 * tree-switch-conversion.c (build_one_array): Call
8003 varpool_mark_needed_node and varpool_finalize_decl
8004 instead of assemble_variable.
8006 2008-07-19 Jan Hubicka <jh@suse.cz>
8008 * cgraph.c (cgraph_add_new_function): Do early local passes.
8009 * tree-nrv.c (gate_pass_return_slot): New gate.
8010 (pass_nrv): Add the gate.
8011 * tree-ssa-coalese.c (hash_ssa_name_by_var, eq_ssa_name_by_var): New
8013 (coalesce_ssa_name): Coalesce SSA names.
8014 * tree-ssa-live.c (remove_unused_locals): Be more conservative when
8015 not optimizing so unused user vars remains visible.
8016 * common.opt (flag_tree_ter): Always enable by default.
8017 * tree-ssa-ter.c: Include flags.h
8018 (is_replaceable_p): Check that locations match; when aliasing
8019 is missing be conservative about loads.
8020 * tree-optimize.c (gate_init_datastructures): Remove.
8021 (pass_init_datastructures): New.
8022 * passes.c: Reorder passes so we always go into SSA.
8024 2008-07-19 Jan Hubicka <jh@suse.cz>
8026 * doc/extend.texi (flatten attribute): Remove note about
8028 * doc/invoke.texi (--combine): Likewise.
8029 (-finline-functions-called-once): Update levels when enabled.
8030 (-funit-at-a-time): Document new behaviour.
8031 (-ftoplevel-reorder): Document that it is enabled -O0 and imply
8032 -fno-section-anchors when disabled explicitly.
8033 (inline params): They are not ignored now.
8034 (precompiled headers): Remove unit-at-a-time as being incompatible.
8035 * opts.c (decode_options): Handle unit-at-a-time as alias;
8036 imply -fno-section-anchors when toplevel reorder is disabled
8038 * common.opt (ftoplevel-reorder): Set default value to 2.
8039 (funit-at-a-time): Set default value to 1.
8040 * config/rs6000/rs6000.c (optimization_options): Set section anchors
8043 2008-07-19 Jan Hubicka <jh@suse.cz>
8045 * builtins.c (expand_builtin_int_roundingfn,
8046 expand_builtin_int_roundingfn_2): Do not take subtarget argument;
8049 2008-07-19 Richard Guenther <rguenther@suse.de>
8052 * tree-ssa-sccvn.h (get_constant_value_id): Declare.
8053 * tree-ssa-sccvn.c (get_constant_value_id): New function.
8054 * tree-ssa-pre.c (get_expr_value_id): For newly created
8055 constant value-ids make sure to add the expression to its
8058 2008-07-19 Jakub Jelinek <jakub@redhat.com>
8061 * omp-low.c (expand_omp_atomic_fetch_op): Make sure the
8062 return value of the builtin is ignored.
8064 2008-07-19 Olivier Hainque <hainque@adacore.com>
8066 * doc/tm.texi (MALLOC_ABI_ALIGNMENT): New macro. Alignment, in
8067 bits, a C conformant malloc implementation has to provide.
8068 * defaults.h (MALLOC_ABI_ALIGNMENT): Default to BITS_PER_WORD.
8070 2008-07-19 Joseph Myers <joseph@codesourcery.com>
8074 * reload.c (find_reloads_subreg_address): Only reload address if
8075 reloaded == 0, not for reloaded != 1.
8078 2008-07-16 Joseph Myers <joseph@codesourcery.com>
8079 * config/m32c/m32c.c (BIG_FB_ADJ): Move definition earlier.
8080 (m32c_legitimate_address_p): Handle "++rii" addresses created by
8081 m32c_legitimize_reload_address.
8083 2008-07-15 Kaz Kojima <kkojima@gcc.gnu.org>
8084 * config/sh/sh.h (GO_IF_LEGITIMATE_ADDRESS): Allow
8085 (plus (plus (reg) (const_int)) (const_int)) when reload_in_progress.
8087 2008-07-19 Olivier Hainque <hainque@adacore.com>
8089 * dwarf2out.c (add_subscript_info): New explicit COLLAPSE_P
8090 argument, saying whether nested array are to be collapsed
8091 into a single array type DIE with multiple subscripts.
8092 (gen_array_type_die): Factorize comments about the MIPS_DEBUG_INFO
8093 issues, centralize the nested array types collapsing control and
8094 disable the transformation for Ada.
8096 2008-07-18 Uros Bizjak <ubizjak@gmail.com>
8099 * config/i386/i386.md (x86_64_shift_adj_1): Rename from
8101 (x86_64_shift_adj_2): New expander.
8102 (x86_64_shift_adj_3): Ditto.
8103 * config/i386/i386.c (ix86_split_ashr): Use gen_x86_64_shift_adj_3
8104 to split TImode operands.
8105 (ix86_split_ashl): Use gen_x86_64_shift_adj_2 to split TImode operands.
8106 (ix86_split_lshr): Ditto.
8108 2008-07-18 Kris Van Hees <kris.van.hees@oracle.com>
8110 * c-common.c (c_stddef_cpp_builtins): Define __CHAR16_TYPE__
8111 and __CHAR32_TYPE__.
8112 * c-typeck.c (digest_init): Support char16_t and char32_t.
8113 (set_nonincremental_init_from_string): Idem.
8115 2008-07-18 H.J. Lu <hongjiu.lu@intel.com>
8118 * builtins.c (std_gimplify_va_arg_expr): Limit alignment to
8119 PREFERRED_STACK_BOUNDARY.
8120 * config/i386/i386.c (ix86_gimplify_va_arg): Likewise.
8122 2008-07-18 H.J. Lu <hongjiu.lu@intel.com>
8125 * function.c (locate_and_pad_parm): Cap boundary earlier.
8127 2008-07-17 Julian Brown <julian@codesourcery.com>
8129 * config/arm/arm.c (arm_cxx_determine_class_data_visibility): Make
8130 no-op for targets which don't use DLLs.
8132 2008-07-17 Martin Jambor <mjambor@suse.cz>
8134 * ipa-cp.c (ipcp_print_all_lattices): New variable info, check
8135 that nodes are relevant by examining the node->analyzed flag.
8136 (ipcp_init_stage): Check which nodes are relevant, assert that the
8137 relevant ones are also required.
8138 (ipcp_propagate_stage): Check on the side arrays are properly
8140 (ipcp_print_all_jump_functions): Make sure not to touch any node
8141 that is not analyzed or an edge that does not have a corresponding
8142 entry in the on-the-side vectors.
8143 (ipcp_function_scale_print): Likewise.
8144 (ipcp_update_callgraph): Check that the node is relevant.
8145 (ipcp_insert_stage): Check that the node is relevant. Check there is
8146 an info for every node and edge.
8147 * ipa-prop.c (ipa_init_func_list): Check the nodes are relevant.
8148 (ipa_print_all_tree_maps): Likewise and a new variable info.
8149 (ipa_print_all_params_modified): Likewise.
8150 * ipa-prop.h (ipa_edge_args_info_available_for_edge_p): New function.
8152 2008-07-17 Roman Zippel <zippel@linux-m68k.org>
8155 * config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for __mc68000__.
8157 2008-07-17 Paolo Bonzini <bonzini@gnu.org>
8159 PR rtl-optimization/36753
8160 * fwprop.c (use_killed_between): Don't shortcut
8161 single-definition global registers.
8163 2008-07-16 Jan Hubicka <jh@suse.cz>
8165 * cgraph.h (varpool_empty_needed_queue): Declare.
8166 * cgraphunit.c (output_in_order): Mark all variables as needed;
8168 * varpool.c (varpool_assemble_node): Update debug queue.
8169 (varpool_assemble_pending_decls): Don't do it here.
8170 (varpool_empty_needed_queue): New function.
8172 2008-07-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8174 * recog.c (peephole2_optimize): Fix formatting.
8176 2008-07-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8178 * c-pch.c (get_ident): Avoid C++ keywords.
8179 * combine-stack-adj.c (single_set_for_csa): Likewise.
8180 * final.c (asm_insn_count, final_scan_insn, alter_subreg,
8181 output_asm_insn): Likewise.
8182 * reload.c (push_secondary_reload, find_reusable_reload,
8183 push_reload, combine_reloads, find_reloads,
8184 debug_reload_to_stream): Likewise.
8185 * reload.h (struct reload): Likewise.
8186 * reload1.c (reload_reg_class_lower, find_reg, find_reload_regs,
8187 allocate_reload_reg, choose_reload_regs, emit_input_reload_insns,
8188 emit_output_reload_insns): Likewise.
8189 * targhooks.c (default_secondary_reload): Likewise.
8190 * varasm.c (section_entry_eq, object_block_entry_eq): Likewise.
8192 2008-07-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8194 * recog.c (validate_change_1, validate_change,
8195 validate_unshare_change, validate_replace_rtx_1, struct
8196 funny_match, constrain_operands, peephole2_optimize): Avoid C++
8198 * reload.c (push_secondary_reload, secondary_reload_class,
8199 scratch_reload_class, find_valid_class, find_reusable_reload,
8200 push_reload, find_dummy_reload, find_reloads_address_1,
8201 find_reloads_address_part, find_equiv_reg): Likewise.
8202 * reload1.c (spill_failure, eliminate_regs_1, allocate_reload_reg,
8203 choose_reload_regs): Likewise.
8204 * rtlanal.c (replace_rtx, nonzero_bits1, num_sign_bit_copies1):
8206 * rtlhooks.c (gen_lowpart_if_possible): Likewise.
8207 * sched-ebb.c (add_deps_for_risky_insns): Likewise.
8208 * sched-rgn.c (concat_INSN_LIST): Likewise.
8209 * stor-layout.c (mode_for_size, mode_for_size_tree,
8210 smallest_mode_for_size): Likewise.
8212 2008-07-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8214 * cfg.c (dump_reg_info): Avoid C++ keywords.
8215 * dwarf2asm.c (dw2_force_const_mem,
8216 dw2_asm_output_encoded_addr_rtx): Likewise.
8217 * except.c (gen_eh_region, add_action_record, output_ttype): Likewise.
8218 * expmed.c (expand_shift): Likewise.
8219 * global.c (find_reg): Likewise.
8220 * graph.c (draw_edge): Likewise.
8221 * local-alloc.c (reg_meets_class_p, find_free_reg): Likewise.
8222 * optabs.c (expand_binop, expand_twoval_unop, expand_twoval_binop,
8223 widen_clz, widen_bswap, expand_parity, expand_unop,
8224 emit_cmp_and_jump_insn_1): Likewise.
8225 * postreload.c (reload_cse_simplify_operands): Likewise.
8226 * ra.h (add_neighbor): Likewise.
8227 * reg-stack.c (remove_regno_note, change_stack): Likewise.
8228 * regclass.c (memory_move_secondary_cost, dump_regclass, regclass,
8229 record_reg_classes, copy_cost, record_address_regs,
8230 invalid_mode_change_p): Likewise.
8231 * regrename.c (regrename_optimize, scan_rtx_reg,
8232 dump_def_use_chain, find_oldest_value_reg,
8233 replace_oldest_value_reg, copyprop_hardreg_forward_1): Likewise.
8235 2008-07-16 David Edelsohn <edelsohn@gnu.org>
8237 * config/rs6000/rs6000.c (processor_target_table): Remove duplicate
8238 MASK_POWERPC64 for power4 in previous commit.
8240 2008-07-16 Olivier Hainque <hainque@adacore.com>
8242 * collect2.c (scan_prog_file, COFF version): Use CONST_CAST
8243 instead of bare conversion to cast const-ness away.
8245 2008-07-16 Anatoly Sokolov <aesok@post.ru>
8247 * config/xtensa/xtensa.h (FUNCTION_OUTGOING_VALUE,
8248 XTENSA_FUNCTION_VALUE, XTENSA_FUNCTION_VALUE): Remove.
8249 * config/xtensa/xtensa.c (xtensa_function_value): New function.
8250 (TARGET_FUNCTION_VALUE): Define.
8252 2008-07-16 David Edelsohn <edelsohn@gnu.org>
8254 * config/rs6000/rs6000.c (processor_target_table): Add
8255 MASK_PPC_GPOPT for power4, power5, power5+, power6, and power6x.
8257 2008-07-16 Joseph Myers <joseph@codesourcery.com>
8260 * config/m32c/m32c.c (BIG_FB_ADJ): Move definition earlier.
8261 (m32c_legitimate_address_p): Handle "++rii" addresses created by
8262 m32c_legitimize_reload_address.
8264 2007-07-16 Rafael Ávila de Espíndola <espindola@google.com>
8266 * c-decl.c (merge_decls): Keep DECL_SOURCE_LOCATION and
8267 DECL_IN_SYSTEM_HEADER in sync.
8269 2008-07-15 Daniel Berlin <dberlin@dberlin.org>
8271 * tree-ssa-sccvn.c (expressions_equal_p): Check type equality.
8272 * tree-ssa-pre.c (pre_expr_eq): Ditto
8273 (get_constant_for_value_id): Take a type as an argument.
8274 (fully_constant_expression): Pass in type.
8275 (find_or_generate_expression): Short circuit constant case.
8276 (create_expression_by_pieces): Remove special casing of
8278 (do_regular_insertion): Short circuit constant case.
8279 (do_partial_partial_insertion): Ditto.
8281 2008-07-15 Kaz Kojima <kkojima@gcc.gnu.org>
8284 * config/sh/sh.md (symGOT_load): Don't add REG_EQUAL note.
8286 2008-07-15 Bob Wilson <bob.wilson@acm.org>
8288 * config/xtensa/libgcc-xtensa.ver: New file.
8289 * config/xtensa/t-linux (SHLIB_MAPFILES): Append libgcc-xtensa.ver.
8291 2008-07-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8293 * df-problems.c (df_set_note): Avoid C++ keywords.
8294 * df-scan.c (df_ref_change_reg_with_loc_1): Likewise.
8295 * dse.c (record_store, remove_useless_values): Likewise.
8296 * emit-rtl.c (gen_reg_rtx, update_reg_offset, gen_rtx_REG_offset,
8297 gen_reg_rtx_offset, operand_subword, change_address_1,
8298 change_address, adjust_address_1, offset_address,
8299 widen_memory_access, emit_copy_of_insn_after): Likewise.
8300 * explow.c (round_push, allocate_dynamic_stack_space): Likewise.
8301 * fwprop.c (should_replace_address, propagate_rtx_1,
8302 propagate_rtx, try_fwprop_subst, forward_propagate_and_simplify):
8304 * gcse.c (cprop_jump, find_implicit_sets, bypass_block,
8305 gcse_emit_move_after, update_ld_motion_stores): Likewise.
8306 * lcm.c (compute_insert_delete, pre_edge_lcm,
8307 compute_rev_insert_delete, pre_edge_rev_lcm): Likewise.
8308 * lower-subreg.c (resolve_reg_notes): Likewise.
8309 * mode-switching.c (optimize_mode_switching): Likewise.
8311 2008-07-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8313 * bt-load.c (add_btr_def, migrate_btr_def,
8314 branch_target_load_optimize): Avoid C++ keywords.
8315 * caller-save.c (insert_restore, insert_save, insert_one_insn):
8317 * combine.c (subst, simplify_set, make_extraction,
8318 make_compound_operation, known_cond, simplify_shift_const_1): Likewise.
8319 * cse.c (make_regs_eqv, merge_equiv_classes, validate_canon_reg,
8320 fold_rtx, equiv_constant, cse_insn, cse_process_notes_1): Likewise.
8322 2008-07-15 Richard Guenther <rguenther@suse.de>
8325 * c-common.c (strict_aliasing_warning): Do not warn for
8326 TYPE_REF_CAN_ALIAS_ALL pointers.
8327 (c_common_get_alias_set): may_alias types are not special.
8328 * tree.c (build_pointer_type_for_mode): Look up the may_alias
8329 attribute and set can_ref_all accordingly.
8330 (build_reference_type_for_mode): Likewise.
8331 * doc/extend.texi (may_alias): Clarify.
8333 2008-07-15 Kaz Kojima <kkojima@gcc.gnu.org>
8336 * config/sh/sh.h (GO_IF_LEGITIMATE_ADDRESS): Allow
8337 (plus (plus (reg) (const_int)) (const_int)) when reload_in_progress.
8339 2008-07-15 Andrew Pinski <andrew_pinski@playstation.sony.com>
8342 * config/rs6000/rs6000.c (print_operand <case 'y'>): Don't use
8343 gcc_assert, instead call output_operand_lossage.
8345 2008-07-15 Kai Tietz <kai.tietz@onevision.com>
8347 * builtins.c (std_canonical_va_list): Treat structure based
8350 2008-07-15 Ben Elliston <bje@au.ibm.com>
8352 * emit-rtl.c (set_mem_attributes_minus_bitpos): Improve comment.
8354 2007-07-14 Rafael Ávila de Espíndola <espindola@google.com>
8356 * c-decl.c (diagnose_mismatched_decls): Don't warn if TREE_NO_WARNING
8359 2008-07-14 Jan Hubicka <jh@suse.cz>
8361 * i386.md (sse5 cmov pattern): Update call of ix86_sse5_valid_op_p
8362 * sse.md (sse5 patterns): Update call of ix86_sse5_valid_op_p;
8363 fix predicates and constraints.
8364 * i386.c (ix86_sse5_valid_op_p): Add commutative parameter.
8365 * i386-protos.h (ix86_sse5_valid_op_p): Update declaration.
8367 2008-07-14 Doug Kwan <dougkwan@google.com>
8369 * config.gcc (arm*-*-eabi*): Include arm/eabi.h and use
8370 additional option file arm/eabi.opt.
8371 * config/arm/eabi.h (File): New configuration file for EABI targets.
8372 * config/arm/elf.h (SUBTARGET_EXTRA_SPECS): Add
8373 SUBSUBTARGET_EXTRA_SPECS.
8374 (SUBSUBTARGET_EXTRA_SPECS): Provide empty default.
8375 * config/arm/unknown-elf.h (UNKNOWN_ELF_STARTFILE_SPEC): Renamed
8376 from STARTFILE_SPEC so that it can be referenced in an override.
8377 (STARTFILE_SPEC): Use UNKNOWN_ELF_STARTFILE_SPEC.
8378 (UNKNOWN_ELF_ENDFILE_SPEC): Renamed from ENDFILE_SPEC so that it
8379 can be referenced in an override.
8380 (ENDFILE_SPEC): Use UNKNOWN_ELF_ENDFILE_SPEC.
8381 * config/arm/bpabi.h (BPABI_LINK_SPEC): Renamed from LINK_SPEC
8382 so that it can be referenced in an override.
8383 (LINK_SPEC): Use BPABI_LINK_SPEC.
8384 * config/arm/eabi.opt (File): New.
8386 2008-07-14 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
8388 * Makefile.in (TARGET_DEF_H): Add targhooks.h.
8389 (FIXED_VALUE_H): New variable.
8390 (RTL_BASE_H): Use $(INPUT_H) and $(FIXED_VALUE_H) instead of
8391 input.h, fixed-value.h.
8392 (TREE_H): Use $(INPUT_H), add $(SYMTAB_H).
8393 (BASIC_BLOCK_H): Use $(BITMAP_H).
8394 (FUNCTION_H): Add varray.h.
8395 (IPA_REFERENCE_H): Use $(BITMAP_H).
8396 (CGRAPH_H): Add $(BASIC_BLOCK_H).
8397 (DF_H): Use $(BITMAP_H).
8398 (GGC_H): Add statistics.h.
8400 (INSN_ATTR_H): Use it.
8401 (SYSTEM_H): Add safe-ctype.h, filenames.h.
8403 (SYMTAB_H): Add $(OBSTACK_H).
8404 (CPP_INTERNAL_H): New.
8405 (TREE_DUMP_H): Add tree-pass.h.
8406 (TREE_FLOW_H): Use $(BITMAP_H)
8407 (PRETTY_PRINT_H): Use $(INPUT_H).
8408 (EBITMAP_H): Rename from typo-ed EBIMAP_H.
8411 (many object files): Fix lots of header dependencies throughout.
8413 2008-07-14 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
8415 * Makefile.in (write_entries_to_file, write_entries_to_file_split):
8417 (s-gtyp-input): Use them to write tmp-gi.list.
8418 (echo_to_gi.list): Remove.
8420 2008-07-14 Richard Guenther <rguenther@suse.de>
8422 * tree-ssa-sccvn.c (pre_info): Remove.
8423 (switch_to_PRE_table): Likewise.
8424 (free_scc_vn): Do not clear SSA_NAME_VALUE. Do not free pre_info.
8425 (set_hashtable_value_ids): Do not create value-ids for the
8427 (run_scc_vn): Remove double test. Remove bogus special-case
8428 in value-number printing.
8429 * tree-ssa-sccvn.h (switch_to_PRE_table): Remove.
8430 * tree-ssa-ccp.c (get_symbol_constant_value): Do not look at
8432 * tree-flow-inline.h (get_value_handle): Remove.
8433 * tree-flow.h (get_value_handle): Remove.
8435 2008-07-14 Martin Jambor <mjambor@suse.cz>
8437 * tree-switch-conversion.c (gen_inbound_check): Make sure the type
8438 in which we generate arithmetics is not a subrange.
8440 2008-07-14 Martin Jambor <mjambor@suse.cz>
8442 * Makefile.in (IPA_PROP_H): Added ipa-prop.h to IPA_PROP_H variable.
8444 2008-07-14 Richard Guenther <rguenther@suse.de>
8446 * tree-ssa-pre.c (insert_into_preds_of_block): Do not call convert.
8448 2008-07-14 Andreas Krebbel <krebbel1@de.ibm.com>
8451 * config/s390/s390.c: (s390_secondary_reload): Add a secondary
8452 reload for symbol refs moved to r0 with -fPIC.
8453 (legitimize_pic_address): Use the target register as temporary
8455 (emit_symbolic_move): Adjust comment.
8456 * config/s390/s390.md (reloadsi_PIC_addr, reloaddi_PIC_addr):
8459 2008-07-14 Ben Elliston <bje@au.ibm.com>
8461 * c-common.h (C_CPP_HASHNODE): New macro.
8462 * coretypes.h (struct cpp_token): Forward declare.
8463 * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document
8464 the context-sensitive keyword method.
8465 * config/rs6000/rs6000-c.c (__vector_keyword, vector_keyword,
8466 __pixel_keyword, pixel_keyword, __bool_keyword, bool_keyword,
8467 expand_bool_pixel): New.
8468 (altivec_categorize_keyword): New function.
8469 (init_vector_keywords): New function.
8470 (rs6000_macro_to_expand): Likewise.
8471 (rs6000_cpu_cpp_builtins): Enable context-sensitive macros if not
8472 compiling an ISO C dialect.
8474 2008-07-13 Daniel Berlin <dberlin@dberlin.org>
8476 * tree-ssa-pre.c (fully_constant_expression): Add fold_convert calls.
8477 (create_expression_by_pieces): Fix typo.
8478 (do_regular_insertion): Use debug counter here too.
8480 2008-07-14 Hans-Peter Nilsson <hp@axis.com>
8483 * config/cris/cris.h (CRIS_CONST_OK_FOR_LETTER_P): Renamed from
8484 CONST_OK_FOR_LETTER_P. All port-local users changed.
8485 (CONST_OK_FOR_CONSTRAINT_P): Define; implement Kc as old K,
8486 implement Kp matching power-of-two.
8487 (CONSTRAINT_LEN): Define to match.
8488 * config/cris/cris.md: Replace all use of constraint K with Kc.
8489 ("*btst*): Use Kp for operand 0 of last alternative.
8491 2008-07-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
8494 * tree-call-cdce.c (check_target_format): Accept MIPS single, double
8497 2008-07-13 Jan Hubicka <jh@suse.cz>
8499 * tree.c (decl_assembler_name_equal): Expect assembler name of decl
8502 2008-07-13 Richard Guenther <rguenther@suse.de>
8505 * langhooks.c (lhd_print_error_function): Deal with recursive
8508 2008-07-12 Jan Hubicka <jh@suse.cz>
8510 * cgraph.c (assembler_name_hash): New static var.
8511 (hash_node_by_assembler_name, eq_assembler_name): New.
8512 (cgraph_node_for_asm): Use hashtable.
8513 (cgraph_remove_node): Maintain hashtable.
8514 (change_decl_assembler_name): Sanity check that names are not changing
8515 after aliasing was processed.
8516 * cgraph.h (varpoon_node): Add next GGC marker.
8517 * tree.c (decl_assembler_name_equal): Constify.
8518 (decl_assembler_name_hash): New.
8519 * tree.h (decl_assembler_name_equal): Constify.
8520 (decl_assembler_name_hash): Update.
8522 2008-07-12 David Daney <ddaney@avtrex.com>
8524 * config/mips/driver-native.c (host_detect_local_cpu): Handle
8527 2008-07-12 Richard Sandiford <rdsandiford@googlemail.com>
8529 * doc/md.texi: Document the MIPS "v" constraint.
8530 * config/mips/mips.h (reg_class): Revert last change.
8531 (REG_CLASS_NAMES): Likewise.
8532 (REG_CLASS_CONTENTS): Likewise.
8533 * config/mips/mips.c (mips_regno_to_class): Likewise.
8534 * config/mips/constraints.md (v): Likewise, but add documentation.
8535 Add a comment to say that this constraint should not be used in
8538 2008-07-11 DJ Delorie <dj@redhat.com>
8540 * config/h8300/h8300.md (length): Fix branch offset limit.
8542 2008-07-11 Anatoly Sokolov <aesok@post.ru>
8544 * config/avr/avr-protos.h (avr_peep2_scratch_safe): Remove prototype.
8545 * config/avr/avr.c (avr_peep2_scratch_safe): Remove.
8546 (avr_hard_regno_scratch_ok): New function.
8547 (TARGET_HARD_REGNO_SCRATCH_OK): Define.
8548 * config/avr/avr.md (all peepholes that request a scratch register):
8549 Remove avr_peep2_scratch_safe use.
8551 2008-07-11 Tom Tromey <tromey@redhat.com>
8552 Ian Lance Taylor <iant@google.com>
8554 * c-common.h (enum rid): Add RID_CXX_COMPAT_WARN.
8555 (struct c_common_resword): Define.
8556 (D_CONLY, D_CXXONLY, D_C99, D_CXX0X, D_EXT, D_EXT89): Define.
8557 (D_ASM, D_OBJC, D_CXX_OBJC, D_CXXWARN): Define.
8558 (c_common_reswords, num_c_common_reswords): Declare.
8559 * c-common.c (c_common_reswords): New global const array.
8560 (num_c_common_reswords): New const int.
8561 * c-parser.c (struct resword, reswords): Don't define.
8562 (D_C89, D_EXT, D_EXT89, D_OBJC): Don't define.
8563 (c_parse_init): Clarify mask code. Use c_common_reswords rather
8564 than reswords. If warning about C++ keywords, give them a special
8566 (c_lex_one_token): Warn about C++ keywords. Call
8567 objc_is_reserved_word rather than OBJC_IS_AT_KEYWORD.
8568 (c_parser_external_declaration): Look for RID_xxx rather than
8569 RID_AT_xxx, for ObjC++ keywords which are also C++ keywords.
8570 (c_parser_statement_after_labels): Likewise.
8571 (c_parser_objc_class_instance_variables): Likewise.
8572 (c_parser_objc_class_declaration): Likewise.
8573 (c_parser_objc_try_catch_statement): Likewise.
8574 * c-decl.c (c_print_identifier): Ignore RID_CXX_COMPAT_WARN.
8575 (declspecs_add_type): Likewise.
8577 2008-07-11 Angelo Graziosi <angelo.graziosi@alice.it>
8579 * ggc-page.c (alloc_page):
8580 Substituting xmalloc, xcalloc with
8581 XNEWVEC and XCNEWVAR macros which add the
8584 2008-07-11 Richard Guenther <rguenther@suse.de>
8586 PR tree-optimization/36765
8587 * tree-ssa-alias.c (compute_flow_insensitive_aliasing): Add
8588 aliases from HEAP vars to SMTs.
8590 2008-07-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8592 * Makefile.in (LOOSE_WARN, STRICT_WARN): Update comments.
8593 * configure.ac (loose_warn): Move -Wc++-compat from here...
8594 (strict_warn): ...to here.
8595 * configure: Regenerate.
8597 2008-07-10 Joseph Myers <joseph@codesourcery.com>
8599 * config.gcc (arm-*-coff*, armel-*-coff*, h8300-*-*,
8600 i[34567]86-*-aout*, i[34567]86-*-coff*, m68k-*-aout*,
8601 m68k-*-coff*, sh-*-*, mips-sgi-irix[56]*, pdp11-*-bsd,
8602 rs6000-ibm-aix4.[12]*, powerpc-ibm-aix4.[12]*): Deprecate targets,
8603 excluding more specific h8300-*-* and sh-*-* targets.
8605 2008-07-10 Daniel Berlin <dberlin@dberlin.org>
8607 * tree-ssa-pre.c (create_expression_by_pieces): Add fold_convert calls.
8609 (execute_pre): Call loop_optimizer_finalize in early exit.
8611 2008-07-10 Jakub Jelinek <jakub@redhat.com>
8614 * omp-low.c (lower_omp_2): If task_shared_vars, test all DECL_P
8615 uids in the bitmap, not just VAR_DECL uids.
8617 PR rtl-optimization/36419
8618 * combine-stack-adj.c (adjust_frame_related_expr): New function.
8619 (combine_stack_adjustments_for_block): Call it if needed. Delete
8621 * dwarf2out.c (dwarf2out_frame_debug_expr): Adjust
8622 DW_CFA_GNU_args_size if CSA pass merged some adjustments into
8623 prologue sp adjustment.
8625 2008-07-10 Peter Maydell <pmaydell@chiark.greenend.org.uk>
8628 * opts.c (print_ignored_options): Report postponed diagnostics for
8629 unknown -Wno-* options as warnings, not errors.
8630 (postpone_unknown_option_error): Renamed to...
8631 (postpone_unknown_option_warning): ... this.
8633 2008-07-09 Doug Kwan <dougkwan@google.com>
8636 2008-07-08 Doug Kwan <dougkwan@google.com>
8638 * config/arm/arm.opt (mandroid): New option.
8639 * config/arm/bpabi.h (ANDROID_LINK_SPEC): New macro.
8640 (LINK_SPEC): Enable Android specific behaviour when -mandroid is used.
8642 (CC1PLUS_SPEC): Same.
8644 (STARTFILE_SPEC): Same.
8645 (ENDFILE_SPEC): Same.
8646 (TARGET_BPABI_CPP_BUILTINS): Define __ANDROID__ when -mandroid is
8649 2008-07-09 Richard Sandiford <rdsandiford@googlemail.com>
8652 * config/mips/mips.h (reg_class): Remove V1_REG.
8653 (REG_CLASS_NAMES, REG_CLASS_CONTENTS): Update accordingly.
8654 * config/mips/mips.c (mips_regno_to_class): Map $3 to M16_NA_REGS
8656 (mips_get_tp): New function.
8657 (mips_legitimize_tls_address): Use it.
8658 * config/mips/constraints.md (v): Delete.
8659 * config/mips/mips.md (TLS_GET_TP_REGNUM): New constant.
8660 (tls_get_tp_<mode>): Allow any GPR destination and clobber $3.
8661 After reload, split into a move and ...
8662 (*tls_get_tp_<mode>_split): ...this new instruction.
8664 2008-07-09 David Daney <ddaney@avtrex.com>
8666 * config/mips/driver-native.c: Include coretypes.h and tm.h.
8668 2008-07-09 Jakub Jelinek <jakub@redhat.com>
8670 * gimplify.c (struct gimplify_ctx): Move to tree-gimple.h.
8671 (push_gimplify_context): Don't allocate temp_htab nor c itself here.
8673 (pop_gimplify_context): Check c->temp_htab instead of optimize whether
8674 htab_delete should be called. Don't free c.
8675 (lookup_tmp_var): Create temp_htab lazily.
8676 (gimplify_scan_omp_clauses, gimplify_omp_parallel, gimplify_omp_task,
8677 gimplify_body, force_gimple_operand): Adjust push_gimplify_context
8679 * omp-low.c (lower_omp_sections, lower_omp_single, lower_omp_master,
8680 lower_omp_ordered, lower_omp_critical, lower_omp_for,
8681 create_task_copyfn, lower_omp_taskreg, execute_lower_omp):
8682 * tree-ssa-ccp.c (convert_to_gimple_builtin): Likewise.
8683 * tree-sra.c (generate_element_init): Likewise.
8684 * tree-mudflap.c (execute_mudflap_function_ops,
8685 execute_mudflap_function_decls): Likewise.
8686 * tree-inline.c (setup_one_parameter, optimize_inline_calls): Likewise.
8687 * tree-gimple.h (struct gimplify_ctx): New type.
8688 (push_gimplify_context): Adjust prototype.
8690 2008-07-09 Daniel Berlin <dberlin@dberlin.org>
8692 * tree-ssa-pre.c (phi_translate_1): Update placement of
8695 2008-07-09 Anatoly Sokolov <aesok@post.ru>
8697 * target.h (struct gcc_target): Add hard_regno_scratch_ok field.
8698 * target-def.h (TARGET_HARD_REGNO_SCRATCH_OK): New.
8699 (TARGET_INITIALIZER): Use TARGET_HARD_REGNO_SCRATCH_OK.
8700 * targhooks.c (default_hard_regno_scratch_ok): New function.
8701 * targhooks.h (default_hard_regno_scratch_ok): Declare function.
8702 * doc/tm.texi: Document TARGET_HARD_REGNO_SCRATCH_OK hook.
8703 * recog.c: Include "target.h".
8704 (peep2_find_free_register): Add check for global regs. Add target
8706 * Makefile.in (recog.o): Depend on target.h.
8708 2008-07-09 Kaz Kojima <kkojima@gcc.gnu.org>
8710 * config/sh/sh.c (sh_canonical_va_list_type): New.
8711 (TARGET_CANONICAL_VA_LIST_TYPE): Define.
8713 2008-07-09 Raksit Ashok <raksit@google.com>
8715 * doc/invoke.texi (Option Summary): Mention new option
8716 -Wdisallowed-function-list=...
8717 (Warning Options): Document -Wdisallowed-function-list=...
8718 * common.opt (Wdisallowed-function-list=): New flag.
8719 * flags.h (warn_disallowed_functions): External definition of new
8720 boolean warning flag.
8721 (warn_if_disallowed_function_p): Declare new function.
8722 * opts.c (warning_disallowed_functions): New static variable.
8723 (warn_disallowed_functions): New boolean warning flag.
8724 (warn_if_disallowed_function_p): New function.
8725 (add_comma_separated_to_vector): Rename
8726 add_instrument_functions_exclude_list to this.
8727 (common_handle_option): Handle new option. Rename calls to
8728 add_instrument_functions_exclude_list into calls to
8729 add_comma_separated_to_vector.
8730 * c-parser.c (c_parser_postfix_expression_after_primary): New warning
8731 based on flag warn_disallowed_functions.
8733 2008-07-09 Christian Bruel <christian.bruel@st.com>
8735 * final.c (get_attr_length_1): Call get_attr_length_1 with fallback_fn
8736 instead of get_attr_length.
8738 2008-07-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8740 * genattrtab.c (insert_right_side, evaluate_eq_attr): Avoid C++
8742 * genemit.c (gen_insn): Likewise.
8743 * gengtype.c (note_def_vec): Likewise.
8744 * gengtype.h (note_def_vec): Likewise.
8745 * genoutput.c (struct data, output_insn_data, process_template,
8746 gen_expand, gen_split, note_constraint): Likewise.
8747 * genrecog.c (new_decision, add_to_sequence, factor_tests,
8748 make_insn_sequence): Likewise.
8749 * gensupport.c (record_insn_name): Likewise.
8751 2008-07-08 Doug Kwan <dougkwan@google.com>
8753 * config/arm/arm.opt (mandroid): New option.
8754 * config/arm/bpabi.h (ANDROID_LINK_SPEC): New macro.
8755 (LINK_SPEC): Enable Android specific behaviour when -mandroid is used.
8757 (CC1PLUS_SPEC): Same.
8759 (STARTFILE_SPEC): Same.
8760 (ENDFILE_SPEC): Same.
8761 (TARGET_BPABI_CPP_BUILTINS): Define __ANDROID__ when -mandroid is
8764 2008-07-08 Raksit Ashok <raksit@google.com>
8766 * expr.c (emit_block_move_via_movmem): Fix expected_align parameter.
8767 (set_storage_via_setmem): Fix expected_align parameter.
8768 * doc/invoke.texi (i386 and x86-64 Options): Add a couple of options
8769 missing from the list.
8770 * doc/md.texi (movmem): Explicitly state that expected alignment is
8771 to be expressed in bytes.
8772 (setmem): Explicitly state that expected alignment is to be expressed
8775 2008-07-08 Joseph Myers <joseph@codesourcery.com>
8777 * reload.c (find_reloads_subreg_address): Do not require validity
8778 of address in original mode before reloading address.
8780 2008-07-07 Tianwei Sheng <tianweis@google.com>
8782 * df-core.c (df_remove_problem): Adjust the access to avoid out of
8783 bounds array access.
8785 2008-07-08 Jakub Jelinek <jakub@redhat.com>
8787 * tree-sra.c (sra_build_assignment): Handle CONVERT_EXPR_P dst.
8789 2008-07-05 Daniel Berlin <dberlin@dberlin.org>
8791 Fix PR tree-optimization/23455
8792 Fix PR tree-optimization/35286
8793 Fix PR tree-optimization/35287
8794 * Makefile.in (OBJS-common): Remove tree-vn.o.
8795 (tree-vn.o): Remove.
8796 * dbgcnt.def: Add treepre_insert debug counter.
8797 * gcc/tree-flow.h (add_to_value): Updated for other changes.
8798 (debug_value_expressions): Ditto.
8799 (print_value_expressions): Ditto.
8800 * tree-pretty-print.c (dump_generic_node): Updated for
8801 VALUE_HANDLE removal.
8802 * tree-ssa-dom.c (record_equality): Ditto.
8803 (cprop_operand): Ditto.
8804 (lookup_avail_expr): Ditto.
8805 * tree-ssa-threadedge.c
8806 (record_temporary_equivalences_from_stmts_at_dest): Ditto.
8807 (simplify_control_stmt_condition): Ditto.
8808 * tree.c (tree_code_size): Ditto.
8809 (tree_node_structure): Ditto.
8810 (iterative_hash_expr): Ditto.
8812 * tree.h (VALUE_HANDLE_ID): Ditto.
8813 (VALUE_HANDLE_EXPR_SET): Ditto.
8814 (struct tree_value_handle): Ditto.
8815 (union tree_node): Ditto.
8816 * treestruct.def: Ditto.
8817 * tree-vn.c: Removed.
8818 * tree-ssa-pre.c: Rewritten entirely.
8819 * tree-ssa-sccvn.c (constant_to_value_id): New hashtable.
8820 (constant_value_ids): Ditto.
8821 (vn_nary_op_t): Moved to header.
8823 (vn_reference_op_t): Ditto
8824 (vn_reference_t): Ditto.
8825 (next_value_id): New variable.
8826 (VN_INFO): Add an assert.
8827 (vn_constant_eq): New function.
8828 (vn_constant_hash): Ditto.
8829 (get_or_alloc_constant_value_id): Ditto.
8830 (value_id_constant_p): Ditto.
8831 (vn_reference_compute_hash): De-staticify.
8832 (copy_reference_ops_from_ref): Don't use get_callee_fndecl.
8833 Disable some code with a FIXME. Remove VALUE_HANDLE use.
8834 (valueize_refs): Update opcode if it changes from ssa name to constant.
8835 (vn_reference_lookup_1): Add new argument.
8836 (vn_reference_lookup): Ditto.
8837 (vn_reference_lookup_pieces): New function.
8838 (vn_reference_insert): Add return type. Modify to deal with value ids.
8839 (vn_reference_insert_pieces): New function.
8840 (vn_nary_op_compute_hash): De-staticify.
8841 (vn_nary_op_eq): Ditto.
8842 (vn_nary_op_lookup_pieces): New function.
8843 (vn_nary_op_lookup): Add new argument.
8844 (vn_nary_op_insert_pieces): New function.
8845 (vn_nary_op_insert): Add return type. Modify to deal with value ids.
8846 (vn_phi_insert): Ditto.
8847 (visit_unary_op): Update for callee changes.
8848 (visit_binary_op): Ditto.
8849 (visit_reference_op_load): Ditto.
8850 (visit_reference_op_store): Ditto.
8851 (init_scc_vn): Init next_value_id, constant_to_value_id and
8853 (free_scc_vn): Free them.
8854 (set_hashtable_value_ids): New function.
8855 (run_scc_vn): Use it.
8856 (get_max_value_id): New function.
8857 (get_next_value_id): Ditto.
8858 (expressions_equal_p): Moved from tree-vn.c
8859 (sort_vuses): Ditto.
8860 (sort_vuses_heap): Ditto.
8861 * tree-ssa-sccvn.h: Structures moved from tree-ssa-sccvn.c (noted
8863 * tree.c (iterative_hash_hashval_t): Made non-static
8864 * tree.h (iterative_hash_hashval_t): Declare it.
8866 2008-07-08 Martin Jambor <mjambor@suse.cz>
8868 * ipa-cp.c (ipcp_init_cloned_node): Call ipa_check_create_node_params
8869 instead of ipa_create_node_params.
8870 (ipcp_driver): Allocate infos with ipa_check_create_node_params and
8871 ipa_check_create_edge_args, free them with
8872 free_all_ipa_structures_after_ipa_cp, call ipa_register_cgraph_hooks.
8874 * ipa-prop.c: Include flags.h and tree-inline.h.
8875 (ipa_node_params_vector): New variable.
8876 (ipa_edge_args_vector): New variable.
8877 (edge_removal_hook_holder): New variable.
8878 (node_removal_hook_holder): New variable.
8879 (edge_duplication_hook_holder): New variable.
8880 (node_duplication_hook_holder): New variable.
8881 (ipa_detect_param_modifications): Check for presence of modified flags.
8882 (ipa_compute_jump_functions): Check for presence of jump functions.
8883 (ipa_free_edge_args_substructures): New function.
8884 (ipa_create_node_params): Removed.
8885 (ipa_free_all_edge_args): Changed to deallocate the on-the-side vector.
8886 (ipa_free_node_params_substructures): New function.
8887 (ipa_free_all_node_params): Changed to deallocate the on-the-side
8889 (ipa_edge_removal_hook): New function.
8890 (ipa_node_removal_hook): New function.
8891 (duplicate_array): New function.
8892 (ipa_edge_duplication_hook): New function.
8893 (ipa_node_duplication_hook): New function.
8894 (ipa_register_cgraph_hooks): New function.
8895 (ipa_unregister_cgraph_hooks): New function.
8896 (free_all_ipa_structures_after_ipa_cp): New function.
8898 * ipa-prop.h: Include vec.h.
8899 (ipa_node_params_t): New typedef with vector types for it.
8900 (ipa_edge_args_t): New typedef with vector types for it.
8901 (IPA_NODE_REF): Changed to access an on-the-side vector.
8902 (IPA_EDGE_REF): Changed to access an on-the-side vector.
8903 (ipa_check_create_node_params): New function.
8904 (ipa_check_create_edge_args): New function.
8906 * Makefile.in (IPA_PROP_H): New variable for ipa-prop.h. Converted
8909 2008-07-07 Tom Tromey <tromey@redhat.com>
8911 * configure, config.in: Rebuilt.
8912 * configure.ac: Don't check for scandir or alphasort.
8914 2008-07-07 Joseph Myers <joseph@codesourcery.com>
8916 * config/arm/arm.c (arm_init_neon_builtins): Register built-in
8917 types immediately after creating them.
8919 2008-07-07 Joseph Myers <joseph@codesourcery.com>
8921 * config/arm/aout.h (DOLLARS_IN_IDENTIFIERS): Remove.
8923 2008-07-07 Fernando Pereira <fernando@cs.ucla.edu>
8925 * tree-ssa-structalias.c (compute_points_to_sets): Add call to
8926 dump_constraint_graph.
8927 (dump_constraint_edge): New function.
8928 (dump_constraint_graph): New function.
8929 (debug_constraint_graph): New function.
8930 (dump_constraint): Removed useless comparison.
8931 * tree-ssa-structalias.h (dump_constraint_edge): Declare.
8932 (dump_constraint_graph): Declare.
8933 (debug_constraint_graph): Declare.
8934 * tree-dump.c (struct dump_option_value_info): Declare TDF_GRAPH.
8936 2008-07-07 Kai Tietz <kai.tietz@onevision.com>
8938 * config/i386/i386.c (is_va_list_char_pointer): New.
8939 (ix86_va_start): Replace compare with ms_va_list_type_node
8940 by is_va_list_char_pointer.
8941 (ix86_gimplify_va_arg): Likewise.
8943 2008-07-07 Martin Jambor <mjambor@suse.cz>
8945 * cgraph.c (cgraph_edge_max_uid): New variable.
8946 (struct cgraph_edge_hook_list): New type.
8947 (struct cgraph_node_hook_list): New type.
8948 (struct cgraph_2edge_hook_list): New type.
8949 (struct cgraph_2node_hook_list): New type.
8950 (first_cgraph_edge_removal_hook): New variable.
8951 (first_cgraph_node_removal_hook): New variable.
8952 (first_cgraph_edge_duplicated_hook): New variable.
8953 (first_cgraph_node_duplicated_hook): New variable.
8954 (cgraph_add_edge_removal_hook): New function.
8955 (cgraph_remove_edge_removal_hook): New function.
8956 (cgraph_call_edge_removal_hooks): New function.
8957 (cgraph_add_node_removal_hook): New function.
8958 (cgraph_remove_node_removal_hook): New function.
8959 (cgraph_call_node_removal_hooks): New function.
8960 (cgraph_add_edge_duplication_hook): New function.
8961 (cgraph_remove_edge_duplication_hook): New function.
8962 (cgraph_call_edge_duplication_hooks): New function.
8963 (cgraph_add_node_duplication_hook): New function.
8964 (cgraph_remove_node_duplication_hook): New function.
8965 (cgraph_call_node_duplication_hooks): New function.
8966 (cgraph_create_edge): Assign to edge uid.
8967 (cgraph_remove_edge): Call edge removal hooks.
8968 (cgraph_node_remove_callees): Call edge removal hooks.
8969 (cgraph_node_remove_callers): Call edge removal hooks.
8970 (cgraph_remove_node): Call node removal hooks.
8971 (cgraph_clone_edge): Call edge duplication hooks.
8972 (cgraph_clone_node): Call node duplication hooks.
8974 * cgraph.h (cgraph_edge): New field uid.
8975 (cgraph_edge_hook): New type.
8976 (cgraph_node_hook): New type.
8977 (cgraph_2edge_hook): New type.
8978 (cgraph_2node_hook): New type.
8980 2008-07-07 Andreas Tobler <a.tobler@schweiz.org>
8982 * config.in: Regenerate.
8984 2008-07-07 Vladimir Prus <vladimir@codesourcery.com>
8986 * gcc.c (print_sysroot): New.
8987 (option_map, display_help, process_command): Handle the
8988 -print-sysroot option.
8989 (main): Print the sysroot if requested.
8990 * doc/invoke.texi (Debugging Options): Document -print-sysroot.
8992 2008-07-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
8995 * unwind-pe.h (size_of_encoded_value): add attribute unused.
8997 2008-07-07 Daniel Jacobowitz <dan@codesourcery.com>
8999 * function.c (assign_parm_remove_parallels): Check mode of entry_parm.
9000 (assign_parm_setup_block_p): Also check mode of entry_parm.
9002 2008-07-07 Richard Guenther <rguenther@suse.de>
9004 * tree-ssa-structalias.h (set_used_smts): Remove.
9005 * tree-ssa-structalias.c (used_smts): Likewise.
9006 (set_used_smts): Likewise.
9007 * tree-ssa-alias.c (compute_flow_sensitive_aliasing): Remove
9008 call to set_used_smts.
9010 2008-07-07 Richard Guenther <rguenther@suse.de>
9012 * tree-ssa-structalias.c (struct variable_info): Add is_full_var flag.
9013 (new_var_info): Set it to false.
9014 (solution_set_add): Correctly handle pointers outside a var and
9016 (type_safe): Treat variables with is_full_var properly.
9017 (do_sd_constraint): Likewise.
9018 (do_ds_constraint): Likewise.
9019 (process_constraint): Remove zeroing offset for !use_field_sensitive.
9020 (get_constraint_for_ptr_offset): New function.
9021 (get_constraint_for_component_ref): For addresses at least include
9022 the last field of the variable. Handle is_full_vars properly.
9023 (get_constraint_for_1): Factor common code, handle POINTER_PLUS_EXPR.
9024 (handle_ptr_arith): Remove.
9025 (find_func_aliases): Simplify assignment handling.
9026 (create_function_info_for): For parameter and result varinfos set
9028 (create_variable_info_for): Set is_full_var flag whenever we
9029 just created a single varinfo for a decl.
9030 (init_alias_vars): Initialize use_field_sensitive from
9031 max-fields-for-field-sensitive parameter.
9033 2008-07-07 Richard Guenther <rguenther@suse.de>
9035 PR tree-optimization/36713
9036 * tree-flow-inline.h (is_call_used): New function.
9037 * tree-nrv.c (dest_safe_for_nrv_p): Use it.
9038 * tree-tailcall.c (suitable_for_tail_opt_p): Likewise.
9039 * tree-outof-ssa.c (create_temp): Set call-used flag if required.
9041 2008-07-07 Maxim Kuvyrkov <maxim@codesourcery.com>
9043 * config/m68k/m68k.c (m68k_return_in_memory): Fix arguments types.
9045 2008-07-07 Mark Shinwell <shinwell@codesourcery.com>
9047 * config/m68k/lb1sf68.asm: Add PIC macros for Linux targets.
9049 2008-07-07 Maxim Kuvyrkov <maxim@codesourcery.com>
9050 Nathan Sidwell <nathan@codesourcery.com>
9052 * config.gcc (m68k-*-linux*): Add with_arch. Add sysroot-suffix.h
9053 to tm_file. Add m68k/t-floatlib, m68k/t-linux & m68k/t-mlibs to
9055 * config/m68k/t-linux: New.
9056 * doc/install.texi: Document m68k-*-linux is now multilibbed by
9059 2008-07-07 Nathan Sidwell <nathan@codesourcery.com>
9061 * config/m68k/t-cf (MULTILIB_EXTRA_OPTS): Add no-mac.
9062 * config/m68k/m68k-devices.def: Remove multilibs that only differ
9065 2008-07-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9067 * gcc.c (execute): Fix -Wc++-compat warning.
9069 2008-07-06 H.J. Lu <hongjiu.lu@intel.com>
9072 * config/ia64/ia64.c (ia64_split_tmode): Fix typo in TImode
9073 constant for little endian.
9075 2008-07-06 Richard Sandiford <rdsandiford@googlemail.com>
9077 * config/mips/mips.h (TARGET_CPU_CPP_BUILTINS): Check
9078 mips_base_mips16 instead of TARGET_MIPS16.
9079 (mips_base_mips16): Declare.
9080 * config/mips/mips.c (mips_base_mips16): Make global.
9081 (was_mips16_p): Remove GTY marker.
9082 (was_mips16_pch_p): New variable.
9083 (mips_set_mips16_mode): Check both was_mips16_p and was_mips16_pch_p.
9084 (mips_override_options): Force to non-MIPS16 mode initially.
9085 Do not complain about MIPS16 PIC incompatibilities here.
9086 Only allow -mgpopt if -mexplicit-relocs is in force for
9089 2008-07-06 Andreas Tobler <a.tobler@schweiz.org>
9091 * configure.ac: Check for caddr_t, define to char * if not defined.
9092 * configure: Regenerate.
9093 * ggc-common.c (mmap_gt_pch_get_address): Fix -Wc++-compat warnings.
9094 (mmap_gt_pch_use_address): Likewise.
9095 * config/host-solaris.c (sol_gt_pch_use_address): Likewise.
9097 2008-07-06 Richard Guenther <rguenther@suse.de>
9099 * tree-ssa-structalias.c (struct variable_info): Remove has_union.
9100 (new_var_info): Deal with it.
9101 (solution_set_add): Likewise.
9102 (bitpos_of_field): Make signed, fix.
9103 (struct fieldoff): Remove type and decl fields. Make size field
9104 unsigned HOST_WIDE_INT. Add has_unknown_size and may_have_pointers
9106 (fieldoff_compare): Deal with it.
9107 (push_fields_onto_fieldstack): Remove has_union argument, glob
9108 adjacent non-pointer fields together.
9109 (create_function_info_for): Do not set has_union.
9110 (create_variable_info_for): Simplify.
9112 2008-07-06 Kai Tietz <kai.tietz@onevision.com>
9114 * config.gcc (extra_headers): Add cross-stdarg.h for target
9115 x86_64-*-* and i?86-*-*.
9116 * config/i386/cross-stdarg.h: New.
9117 * builtins.c (std_fn_abi_va_list): New.
9118 (std_canonical_va_list_type): New.
9119 (stabilize_va_list): Replace va_list_type_node use by
9120 mtarget.canonical_va_list_type.
9121 (gimplify_va_arg_expr): Likewise.
9122 (expand_builtin_va_copy): Replace va_list_type_node use by
9123 mtarget.fn_abi_va_list.
9124 * tree-sra.c (is_va_list_type): New helper.
9125 (decl_can_be_decomposed_p): Replace
9126 va_list_type_node use by is_va_list_type.
9127 * tree-ssa-ccp.c (optimize_stdarg_builtin): Likewise.
9128 * tree-stdarg.c (execute_optimize_stdarg): Likewise.
9129 * c-common.c (c_common_nodes_and_builtins): Use TARGET_ENUM_VA_LIST.
9130 * config/i386/i386-protos.h (ix86_get_valist_type): New.
9131 (ix86_enum_va_list): New.
9132 * config/i386/i386.c (sysv_va_list_type_node): New.
9133 (ms_va_list_type_node): New.
9134 (ix86_function_type_abi): Remove sorry.
9135 (ix86_build_builtin_va_list_abi): New.
9136 (ix86_build_builtin_va_list): Call ix86_build_builtin_va_list_abi
9138 (ix86_va_start): Replace va_list_type_node by sysv_va_list_type_node.
9139 (ix86_init_builtins_va_builtins_abi): New.
9140 (ix86_init_builtins): Use ix86_init_builtins_va_builtins_abi
9142 (ix86_handle_abi_attribute): New.
9143 (attribute_spec): Add sysv_abi and ms_abi.
9144 (ix86_fn_abi_va_list): New.
9145 (ix86_canonical_va_list_type): New.
9146 (ix86_enum_va_list): New.
9147 (TARGET_FN_ABI_VA_LIST): New.
9148 (TARGET_CANONICAL_VA_LIST_TYPE): New.
9149 * config/i386/i386.h (TARGET_ENUM_VA_LIST): New.
9150 * doc/tm.texi (TARGET_FN_ABI_VA_LIST): New.
9151 (TARGET_CANONICAL_VA_LIST_TYPE): New.
9152 (TARGET_ENUM_VA_LIST): New.
9153 * expr.h (std_fn_abi_va_list): New.
9154 (std_canonical_va_list_type): New.
9155 * target-def.h (TARGET_FN_ABI_VA_LIST): New.
9156 (TARGET_CANONICAL_VA_LIST_TYPE): New.
9157 (TARGET_INITIALIZER): Add TARGET_FN_ABI_VA_LIST and
9158 TARGET_CANONICAL_VA_LIST_TYPE.
9159 * target.h (struct gcc_target): Add fn_abi_va_list hook
9160 and canonical_va_list_type hook.
9162 2008-07-05 Andrew Pinski <andrew_pinski@playstation.sony.com>
9164 * fold-const.c (fold_convert_const): Treat OFFSET_TYPE the same as
9165 integral and pointer types.
9167 2008-07-04 Roger Sayle <roger@eyesopen.com>
9169 * config/rs6000/host-darwin.c (darwin_rs6000_extra_signals): Cast
9170 the "void*" result of xmalloc to "char*" to fix bootstrap breakage.
9172 2008-07-04 Kaz Kojima <kkojima@gcc.gnu.org>
9175 * config/sh/sh.h (OVERRIDE_OPTIONS): Disable -fschedule-insns for PIC.
9177 2008-07-04 Jakub Jelinek <jakub@redhat.com>
9179 * tree-switch-conversion.c (build_one_array, gen_def_assigns): Use
9180 build_gimple_modify_stmt.
9181 (build_arrays, gen_inbound_check): Likewise. Force RHS to be
9182 gimple operand. Use fold_build* instead of build*.
9184 2008-07-04 Richard Guenther <rguenther@suse.de>
9186 * tree-ssa-structalias.c (lookup_vi_for_tree): Declare.
9187 (do_sd_constraint): Handle a dereference of ESCAPED and CALLUSED
9188 properly to compute the reachability set if we do field-sensitive PTA.
9189 * invoke.texi (max-fields-for-field-sensitive): Document default.
9190 * opts.c (decode_options): Set max-fields-for-field-sensitive to
9191 100 for optimize >= 2.
9193 2008-07-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9195 * ggc-zone.c (lookup_page_table_if_allocated,
9196 set_page_table_entry, zone_find_object_size, alloc_small_page,
9197 alloc_large_page, ggc_free, gt_ggc_m_S, ggc_marked_p, init_ggc,
9198 new_ggc_zone, init_ggc_pch, ggc_pch_this_base, ggc_pch_read): Fix
9199 -Wc++-compat and/or -Wcast-qual warnings.
9201 2008-07-04 Alan Modra <amodra@bigpond.net.au>
9204 * config/rs6000/rs6000.md (call, call_value): Don't arrange for
9205 pic_offset_table_rtx to be marked as used here.
9206 (call_nonlocal_sysv, call_value_nonlocal_sysv): Add split for
9207 TARGET_SECURE_PLT to "use" pic_offset_table_rtx.
9208 (call_nonlocal_sysv_secure, call_value_nonlocal_sysv_secure): New insn.
9209 (sibcall_nonlocal_sysv, sibcall_value_nonlocal_sysv): Assert
9212 2008-07-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9214 * alloc-pool.c (hash_descriptor, eq_descriptor,
9215 alloc_pool_descriptor): Fix -Wc++-compat warnings.
9216 * bitmap.c (hash_descriptor, eq_descriptor, bitmap_descriptor):
9218 * ggc-common.c (hash_descriptor, eq_descriptor, hash_ptr, eq_ptr,
9219 loc_descriptor, ggc_prune_ptr, ggc_free_overhead,
9220 final_cmp_statistic, cmp_statistic, dump_ggc_loc_statistics): Likewise.
9221 * varray.c (hash_descriptor, eq_descriptor, varray_descriptor):
9224 2008-07-03 Eric Botcazou <ebotcazou@adacore.com>
9226 * tree-flow.h (loop_only_exit_p): Declare.
9227 * tree-ssa-loop-niter.c (loop_only_exit_p): Make public.
9228 * tree-ssa-loop-ivopts.c (may_eliminate_iv): Reinstate direct check on
9229 the number of iterations if it is constant. Otherwise, if this is the
9230 only possible exit of the loop, use the conservative estimate on the
9231 number of iterations of the entire loop if available.
9233 2008-07-03 Richard Sandiford <rdsandiford@googlemail.com>
9235 * Makefile.in (libgcc.mvars): Add LIBGCC_SYNC and LIBGCC_SYNC_CFLAGS.
9236 * libgcc-std.ver (GCC_4.4.0): New version, inherited from GCC_4.3.0.
9237 Add synchronization functions.
9238 * config/sync.c: New file.
9239 * config/mips/t-libgcc-mips16 (LIBGCC_SYNC): Define.
9240 (LIBGCC_SYNC_CFLAGS): Likewise.
9242 2008-07-03 Uros Bizjak <ubizjak@gmail.com>
9245 * config/i386/i386.md (mode): Add TF to "mode" attribute.
9246 (*pushtf_sse): New insn pattern.
9247 (pushtf splitters): New splitters.
9249 2008-07-03 Michael Meissner <gnu@the-meissners.org>
9252 * predict.c (build_predict_expr): Use void_type_node for the tree
9253 type, instead of NULL_TREE.
9255 2008-07-03 H.J. Lu <hongjiu.lu@intel.com>
9257 * config/i386/i386.c (contains_aligned_value_p): Return true
9259 (ix86_data_alignment): Align TCmode to 128bits.
9260 (ix86_local_alignment): Likewise.
9262 2008-07-03 Andrew Haley <aph@redhat.com>
9265 * vec.h (VEC_TA): New.
9266 (DEF_VEC_I, DEF_VEC_P, DEF_VEC_ALLOC_I, DEF_VEC_ALLOC_P,
9267 DEF_VEC_O, DEF_VEC_ALLOC_O: Use VEC_TA.
9268 * c-common.c (C_COMMON_FIXED_TYPES_SAT): New macro.
9269 (C_COMMON_FIXED_MODE_TYPES_SAT): New macro.
9270 (C_COMMON_FIXED_TYPES): Remove first arg.
9271 (C_COMMON_FIXED_MODE_TYPES): Likewise.
9272 * tree.c (MAKE_FIXED_TYPE_NODE): Break into two macros,
9273 MAKE_FIXED_TYPE_NODE and MAKE_FIXED_TYPE_NODE_WIDTH in order
9274 not to use empty macro arguments.
9276 2008-07-02 Joseph Myers <joseph@codesourcery.com>
9278 * config/alpha/vms_tramp.asm, config/arm/crti.asm,
9279 config/arm/crtn.asm, config/bfin/crti.s, config/bfin/crtlibid.s,
9280 config/bfin/crtn.s, config/fr30/crti.asm, config/fr30/crtn.asm,
9281 config/frv/lib1funcs.asm, config/i386/sol2-c1.asm,
9282 config/i386/sol2-ci.asm, config/i386/sol2-cn.asm,
9283 config/i386/sol2-gc1.asm, config/ia64/crti.asm,
9284 config/ia64/crtn.asm, config/m68hc11/larith.asm,
9285 config/m68hc11/m68hc11-crt0.S, config/m68k/crti.s,
9286 config/m68k/crtn.s, config/mcore/crti.asm, config/mcore/crtn.asm,
9287 config/rs6000/crtresfpr.asm, config/rs6000/crtresgpr.asm,
9288 config/rs6000/crtresxfpr.asm, config/rs6000/crtresxgpr.asm,
9289 config/rs6000/crtsavfpr.asm, config/rs6000/crtsavgpr.asm,
9290 config/rs6000/crtsavres.asm, config/rs6000/e500crtres32gpr.asm,
9291 config/rs6000/e500crtres64gpr.asm,
9292 config/rs6000/e500crtres64gprctr.asm,
9293 config/rs6000/e500crtrest32gpr.asm,
9294 config/rs6000/e500crtrest64gpr.asm,
9295 config/rs6000/e500crtresx32gpr.asm,
9296 config/rs6000/e500crtresx64gpr.asm,
9297 config/rs6000/e500crtsav32gpr.asm,
9298 config/rs6000/e500crtsav64gpr.asm,
9299 config/rs6000/e500crtsav64gprctr.asm,
9300 config/rs6000/e500crtsavg32gpr.asm,
9301 config/rs6000/e500crtsavg64gpr.asm,
9302 config/rs6000/e500crtsavg64gprctr.asm, config/rs6000/eabi-ci.asm,
9303 config/rs6000/eabi-cn.asm, config/rs6000/eabi.asm,
9304 config/rs6000/sol-ci.asm, config/rs6000/sol-cn.asm,
9305 config/rs6000/tramp.asm, config/sparc/sol2-ci.asm,
9306 config/sparc/sol2-cn.asm: Remove .file directives.
9308 2008-07-02 Richard Sandiford <rdsandiford@googlemail.com>
9310 * resource.c (mark_referenced_resources): Look inside
9311 UNSPEC_VOLATILEs and ASM_INPUTs.
9313 2008-07-02 Ian Lance Taylor <iant@google.com>
9315 * rtlanal.c (add_reg_note): New function.
9316 * rtl.h (add_reg_note): Declare.
9317 * auto-inc-dec.c (attempt_change): Use add_reg_note.
9318 * bb-reorder.c (add_reg_crossing_jump_notes): Likewise.
9319 * builtins.c (expand_builtin_longjmp): Likewise.
9320 (expand_builtin_nonlocal_goto): Likewise.
9321 * calls.c (emit_call_1, expand_call): Likewise.
9322 * cfgexpand.c (add_reg_br_prob_note): Likewise.
9323 * cfglayout.c (fixup_reorder_chain): Likewise.
9324 * cfgrtl.c (force_nonfallthru_and_redirect): Likewise.
9325 (commit_one_edge_insertion): Likewise.
9326 * combine.c (move_deaths, distribute_notes): Likewise.
9327 * df-problems.c (df_set_note): Likewise.
9328 * emit-rtl.c (link_cc0_insns, try_split): Likewise.
9329 (set_unique_reg_note): Likewise.
9330 (emit_copy_of_insn_after): Likewise.
9331 * expr.c (expand_expr_real): Likewise.
9332 * gcse.c (add_label_notes): Likewise.
9333 * haifa-sched.c (create_check_block_twin): Likewise.
9334 * jump.c (mark_jump_label_1): Likewise.
9335 * loop-doloop.c (add_test, doloop_modify): Likewise.
9336 * loop-unswitch.c (compare_and_jump_seq): Likewise.
9337 * lower-subreg.c (move_eh_region_note): Likewise.
9338 * optabs.c (emit_libcall_block): Likewise.
9339 * predict.c (predict_insn): Likewise.
9340 (combine_predictions_for_insn): Likewise.
9341 * recog.c (peephole2_optimize): Likewise.
9342 * regmove.c (try_auto_increment): Likewise.
9343 * reg-stack.c (emit_pop_insn, move_for_stack_reg): Likewise.
9344 * reload.c (find_reloads): Likewise.
9345 * reload1.c (fixup_eh_region_note): Likewise.
9346 (reload_as_needed, add_auto_inc_notes, copy_eh_notes): Likewise.
9347 * reorg.c (delete_prior_computation): Likewise.
9348 (delete_computation, dbr_schedule): Likewise.
9349 * config/pa/pa.c (legitimize_pic_address): Likewise.
9350 * config/sh/sh.c (sh_reorg): Likewise.
9352 2008-07-02 H.J. Lu <hongjiu.lu@intel.com>
9355 * config/libgcc-glibc.ver: Add %exclude.
9356 * config/m32r/libgcc-glibc.ver: Likwise.
9357 * config/s390/libgcc-glibc.ver: Likwise.
9358 * config/sh/libgcc-glibc.ver: Likwise.
9359 * config/sparc/libgcc-sparc-glibc.ver: Likwise.
9361 * config/i386/libgcc-glibc.ver: New.
9363 * config/i386/libgcc-x86_64-glibc.ver: Removed.
9365 2008-07-02 H.J. Lu <hongjiu.lu@intel.com>
9367 * config.gcc: Remove i386/t-fprules-softfp64 soft-fp/t-softfp
9368 from tmake_file from i[34567]86-*-darwin*, x86_64-*-darwin*,
9369 i[34567]86-*-linux*, x86_64-*-linux*. Add
9370 i386/t-fprules-softfp and soft-fp/t-softfp to tmake_file for
9371 i[34567]86-*-darwin*, x86_64-*-darwin*, i[34567]86-*-linux*,
9372 x86_64-*-linux*. Add i386/t-linux to tmake_file for
9373 i[34567]86-*-linux*, x86_64-*-linux*.
9375 * libgcc-std.ver: Add empty GCC_4.4.0.
9377 * mkmap-symver.awk: Support multiple versions per symbol.
9379 * config/i386/i386.c (ix86_init_builtins): Always define
9380 __builtin_fabsq and __builtin_copysignq with fallbacks.
9381 (ix86_expand_builtin): Emit normal call for __builtin_fabsq
9382 and __builtin_copysignq if SSE2 isn't available.
9384 * config/i386/linux.h (LIBGCC2_HAS_TF_MODE): Defined.
9385 (LIBGCC2_TF_CEXT): Likwise.
9388 * config/i386/linux64.h (LIBGCC2_HAS_TF_MODE): Defined as 1.
9390 * config/i386/sfp-machine.h: Moved to libgcc.
9392 * config/i386/sfp-machine.h: New.
9393 * config/i386/t-linux: Likwise.
9395 * config/i386/t-darwin: Remove softfp_wrap_start and
9397 * config/i386/t-darwin64: Likewise.
9399 * config/i386/t-fprules-softfp64: Renamed to ...
9400 * config/i386/t-fprules-softfp: This.
9402 * config/i386/t-linux64: Remove SHLIB_MAPFILES, softfp_wrap_start
9403 and softfp_wrap_end.
9405 2008-07-02 Jason Merrill <jason@redhat.com>
9407 * tree.c (ctor_to_list): Use FOR_EACH_CONSTRUCTOR_ELT.
9409 * tree.c (ctor_to_list): New fn.
9410 * tree.h: Declare it.
9411 (CONSTRUCTOR_ELT): New macro.
9412 (CONSTRUCTOR_NELTS): New macro.
9414 2008-07-02 Richard Guenther <rguenther@suse.de>
9416 * tree-ssa-structalias.c (struct variable_info): Reorder
9417 to fill padding on 64bit hosts. Make collapsed_to an int.
9418 (get_varinfo_fc): Deal with that.
9419 (new_var_info): Likewise.
9420 (collapse_rest_of_var): Likewise.
9422 2008-07-02 Joshua Sumali <jsumali@redhat.com>
9424 * doc/install.texi (--enable-java-home): Document.
9425 (--enable-aot-compile-rpm): Likewise.
9426 (--with-arch-directory): Likewise.
9427 (--with-os-directory): Likewise.
9428 (--with-origin-name): Likewise.
9429 (--with-arch-suffix): Likewise.
9430 (--with-jvm-root-dir): Likewise.
9431 (--with-jvm-jar-dir): Likewise.
9432 (--with-python-dir): Likewise.
9434 2008-07-02 Richard Guenther <rguenther@suse.de>
9436 * tree-ssa-forwprop.c (can_propagate_from): Exclude loads
9437 from decls explicitly. Merge operand checking from tuples.
9439 2008-07-02 Martin Jambor <mjambor@suse.cz>
9441 * tree-switch-conversion.c: Included timevar.h which I forgot before.
9443 2008-07-02 Martin Jambor <mjambor@suse.cz>
9445 * tree-switch-conversion.c: Included timevar.h
9446 (pass_convert_switch): Added a timevar id (TV_TREE_SWITCH_CONVERSION).
9448 * timevar.def: Added TV_TREE_SWITCH_CONVERSION.
9450 2008-07-02 Martin Jambor <mjambor@suse.cz>
9452 * tree-switch-conversion.c: Corrected various comments and
9454 (build_constructors): Fixed minor formatting mistakes.
9456 * invoke.texi (Optimize Options): Corrected the
9457 switch-conversion-max-branch-ratio parameter.
9459 2008-07-02 Mark Shinwell <shinwell@codesourcery.com>
9461 * final.c (asm_insn_count): Return zero for an empty asm body.
9463 2008-07-02 Richard Guenther <rguenther@suse.de>
9465 * bitmap.h (bitmap_set_bit): Return bool.
9466 (bitmap_clear_bit): Likewise.
9467 * bitmap.c (bitmap_set_bit): Return if the bit changed. Only
9468 write to the bitmap if it would.
9469 (bitmap_clear_bit): Likewise.
9470 * tree-ssa-structalias.c (add_implicit_graph_edge): Use
9471 bitmap_set_bit return value.
9472 (add_pred_graph_edge): Likewise.
9473 (add_graph_edge): Likewise.
9474 (do_sd_constraint): Likewise.
9475 (do_ds_constraint): Likewise.
9477 2008-07-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9479 * config/alpha/alpha.c (alpha_need_linkage, alpha_use_linkage):
9480 Fix -Wc++-compat and/or -Wcast-qual warnings.
9481 * config/i386/netware.c (gen_stdcall_or_fastcall_decoration,
9482 gen_regparm_prefix): Likewise.
9483 * vmsdbgout.c (write_modbeg, lookup_filename,
9484 vmsdbgout_source_line, vmsdbgout_init): Likewise.
9486 2008-07-02 Danny Smith <dannysmith@users.sourceforge.net>
9488 * config/i386/mingw32.h (TARGET_USE_JCR_SECTION): Undef to let
9489 defaults.h definition apply.
9491 2008-07-01 Daniel Jacobowitz <dan@codesourcery.com>
9493 * function.c (assign_parm_remove_parallels): New.
9494 (assign_parm_setup_block_p): Do not return true for non-BLKmode
9496 (assign_parm_setup_block): Do not handle them.
9497 (assign_parm_setup_reg, assign_parm_setup_stack): Call
9498 assign_parm_remove_parallels.
9500 2008-07-01 Daniel Jacobowitz <dan@codesourcery.com>
9502 * c-typeck.c (convert_for_assignment): Use
9503 vector_targets_convertible_p.
9504 * c-common.c (vector_targets_convertible_p): New.
9505 * c-common.h (vector_targets_convertible_p): New prototype.
9506 * config/rs6000/rs6000.c (rs6000_is_opaque_type): Do not check
9507 opaque_p_V2SI_type_node.
9509 2008-07-01 Steve Ellcey <sje@cup.hp.com>
9511 * config/ia64/ia64.c (ia64_cannot_force_const_mem): Do not allow
9514 2008-07-01 Uros Bizjak <ubizjak@gmail.com>
9516 * config/i386/i386.c (ix86_build_signbit_mask): Generate TImode and
9517 TFmode constants via two element DImode vector for hosts with
9518 HOST_BITS_PER_WIDE_INT < 64.
9519 (ix86_init_builtins): Define __builtin_fabsq and __builtin_copysignq
9520 also for HOST_BITS_PER_WIDE_INT < 64.
9522 2008-07-01 Richard Guenther <rguenther@suse.de>
9524 PR tree-optimization/36666
9525 * tree-ssa-structalias.c (get_constraint_for_1): Declare.
9526 (get_constraint_exp_from_ssa_var): Split into ...
9527 (get_constraint_exp_for_temp): ... this ...
9528 (get_constraint_for_ssa_var): ... and that.
9529 Return constraint expressions for all touched sub-fields
9530 if the results address is not taken.
9531 (process_constraint): Remove assertion that aggregate
9532 assignments do not happen at this place.
9533 (get_constraint_for_component_ref): Add address_p argument.
9534 Return constraint expressions for all touched sub-fields
9535 if the results address is not taken.
9536 (do_deref): Use get_constraint_exp_for_temp.
9537 (get_constraint_for_1): Rename from ...
9538 (get_constraint_for): ... this. Add the old function as wrapper.
9539 (do_structure_copy): Use get_constraint_for_1.
9541 2008-07-01 Martin Jambor <mjambor@suse.cz>
9543 * Makefile.in (tree-switch-conversion.o): Add.
9544 (OBJS-common): Add tree-swtch-conversion.o.
9545 * passes.c (init_optimization_passes): Add pass_convert_switch.
9546 * tree-pass.h: (pass_convert_switch): Add.
9547 * tree-switch-conversion.c: New file.
9548 * gcc.dg/tree-ssa/cswtch.c: New testcase.
9549 * common.opt (ftree-cswtch): New option.
9550 * params.h (PARAM_SWITCH_CONVERSION_BRANCH_RATIO): New parameter.
9551 * params.def (PARAM_SWITCH_CONVERSION_BRANCH_RATIO): New parameter.
9552 * opts.c (decode_options): Set flag_tree_switch_conversion when
9553 optimization level is >= 2.
9554 * doc/invoke.texi (Optimize Options): Added description of
9555 -ftree-swtch-conversion and switch-conversion-max-branch-ratio.
9557 2008-06-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9559 * config/darwin-driver.c (darwin_default_min_version): Fix
9560 -Wc++-compat warnings.
9562 2008-06-30 Uros Bizjak <ubizjak@gmail.com>
9564 * config/i386/i386.md (*movti_rex64): Add "!" to "r" constraint
9567 2008-06-30 Kenneth Zadeck <zadeck@naturalbridge.com>
9569 * ifcvt.c (cond_move_process_if_block): Free vectors on false return.
9571 2008-06-30 Kenneth Zadeck <zadeck@naturalbridge.com>
9573 PR rtl-optimization/34744
9574 * df-scan.c (df_scan_free_ref_vec, df_scan_free_mws_vec): New macros.
9575 (df_scan_free_internal): Free data structures not
9576 allocated in storage pools.
9577 (df_mw_hardreg_chain_delete_eq_uses): Use df_scan_free_mws_vec.
9578 (df_refs_add_to_chains): Use df_scan_free_ref_vec and
9579 df_scan_free_mws_vec.
9580 * dse.c (dse_step6): Free offset_map_p and offset_map_n
9583 2008-06-30 H.J. Lu <hongjiu.lu@intel.com>
9585 * config/i386/i386.c (contains_aligned_value_p): Return true
9587 (ix86_function_arg_boundary): Return its natural boundary
9589 (return_in_memory_32): Don't check TDmode.
9590 (ix86_split_to_parts): Support splitting into 4 parts and
9591 support TFmode for 32bit target.
9592 (ix86_split_long_move): Support splitting into 4 parts.
9593 (bdesc_args): Enable IX86_BUILTIN_FABSQ and IX86_BUILTIN_COPYSIGNQ
9595 (ix86_init_mmx_sse_builtins): Move __float80 and __float128 to ...
9596 (ix86_init_builtins): Here.
9597 (ix86_scalar_mode_supported_p): Always return true for TFmode.
9598 (ix86_c_mode_for_suffix): Always return TFmode and XFmode for
9599 'q' and 'w', respectively.
9601 * config/i386/i386.md (movtf): Check TARGET_SSE2 instead of
9603 (movtf_internal): Likewise.
9604 (<code>tf2): Likewise.
9605 (*absnegtf2_sse): Likewise.
9606 (copysign<mode>3): Likewise.
9607 (copysign<mode>3_const): Likewise.
9608 (copysign<mode>3_var): Likewise.
9609 (define_split UNSPEC_COPYSIGN): Likewise.
9610 * config/i386/sse.md (*nandtf3): Likewise.
9611 (<code>tf3): Likewise.
9612 (*<code>tf3): Likewise.
9614 2008-06-30 Joey Ye <joey.ye@intel.com>
9615 H.J. Lu <hongjiu.lu@intel.com>
9617 * global.c (compute_regsets): Set frame_pointer_needed here.
9618 * reload1.c (init_elim_table): Don't set frame_pointer_needed here.
9620 2008-06-30 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
9622 * doc/install.texi (specific): Expand Windows build notes.
9624 2008-06-30 Ira Rosen <irar@il.ibm.com>
9626 PR tree-optimization/36648
9627 * tree-vect-transform.c (vect_do_peeling_for_loop_bound): Divide
9628 number of prolog iterations by step. Fix the comment.
9630 2008-06-30 Richard Guenther <rguenther@suse.de>
9633 * tree-ssa-structalias.c (handle_lhs_call): Add flags argument,
9634 handle calls from ECF_MALLOC functions.
9635 (handle_pure_call): ECF_MALLOC functions do not return
9637 (find_func_aliases): Handle all calls, adjust calls to handle_lhs_call.
9639 2008-06-29 Andreas Schwab <schwab@suse.de>
9641 * config/m68k/m68k.c (print_operand): Always print a float
9643 * config/m68k/m68k.h (ASM_OUTPUT_FLOAT_OPERAND)
9644 (ASM_OUTPUT_DOUBLE_OPERAND, ASM_OUTPUT_LONG_DOUBLE_OPERAND):
9647 * config/rs6000/x-linux64: Remove never used file.
9649 2008-06-29 Richard Guenther <rguenther@suse.de>
9651 * tree-ssa-structalias.h (compute_points_to_sets): Adjust
9653 (struct alias_info): Move ...
9654 * tree-ssa-alias.c: ... here.
9655 (update_alias_info): Declare.
9656 (compute_may_aliases): Call it.
9657 (update_alias_info): New function.
9658 * tree-ssa-structalias.c (update_alias_info): Move ...
9659 * tree-ssa-alias.c (update_alias_info_1): ... here.
9660 * tree-ssa-structalias.c (process_constraint_1): Remove
9661 unused from_call argument. Rename to ...
9662 (process_constraint): ... this. Delete old wrapper.
9663 (make_constraint_to): Adjust callers.
9664 (handle_const_call): Likewise.
9665 (handle_pure_call): Likewise.
9666 (init_base_vars): Likewise.
9667 (handle_lhs_call): Likewise. Remove unnecessary constraint.
9668 (find_func_aliases): We don't need structure copies for
9670 (make_constraint_from_anything): Remove.
9671 (create_variable_info_for): For globals make constraints
9672 from escaped, not from anything.
9673 (compute_points_to_sets): Do not call update_alias_info.
9674 (ipa_pta_execute): Use make_constraint_from.
9676 2008-06-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9678 * Makefile.in (CXX_COMPAT_WARN, cxx_compat_warn): Delete.
9679 (bitmap.o-warn, dominance.o-warn): New.
9680 * configure.ac (cxx_compat_warn): Delete.
9681 (loose_warn): Add -Wcast-qual and -Wc++-compat.
9682 * system.h: Remove #pragma diagnostic for -Wcast-qual and
9684 * configure: Regenerate.
9686 * optabs.c (libfunc_decl_hash, libfunc_decl_eq): Fix -Wcast-qual
9689 2008-06-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9691 * alloc-pool.c (create_alloc_pool): Fix -Wc++-compat warnings.
9692 * df-scan.c (df_notes_rescan): Likewise.
9693 * ggc-page.c (set_page_table_entry): Likewise.
9694 * intl.c (gcc_gettext_width): Likewise.
9695 * varasm.c (get_unnamed_section, get_noswitch_section,
9696 get_section): Likewise.
9698 2008-06-28 Andrew Jenner <andrew@codesourcery.com>
9700 * regrename.c (build_def_use): Don't copy RTX.
9702 2008-06-28 Sandra Loosemore <sandra@codesourcery.com>
9704 * doc/extend.texi (Variable Attributes): Use @ref instead of @xref.
9705 (Type Attributes): Fix nesting of @table and @subsection. Adjust
9706 punctuation. Use @ref instead of @xref.
9707 (Function Names): Remove stray @display/@end display.
9708 (C++ Attributes): Use @ref instead of @xref.
9709 (Deprecated Features): Fix punctuation around @xref.
9710 (Backwards Compatibility): Likewise.
9711 * doc/rtl.texi (Incdec): Remove stray @table/@end table.
9713 2008-06-28 Joseph Myers <joseph@codesourcery.com>
9715 * config/rs6000/predicates.md (easy_fp_constant): Reject TFmode
9716 constants for E500 double.
9718 2008-06-28 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
9720 * doc/rtl.texi (const_vector): Document const_fixed as legitimate
9721 element type of const_vector.
9723 2008-06-28 Uros Bizjak <ubizjak@gmail.com>
9725 * config/i386/i386.md (addti3, adddi3, addsi3, addhi3, addqi3):
9726 Remove FLAGS_REG clobber from expander pattern.
9727 (subti3, subdi3, subsi3, subhi3, subqi3): Ditto.
9728 (anddi3, andsi3, andhi3, andqi3): Ditto.
9729 (iordi3, iorsi3, iorhi3, iorqi3): Ditto.
9730 (xordi3, xorsi3, xorhi3, xorqi3): Ditto.
9731 (negti2, negdi2, negsi2, neghi2, negqi2): Ditto.
9732 (ashlsi3, ashlhi3, ashlqi3): Ditto.
9733 (ashrsi3, ashrhi3, ashrqi3): Ditto.
9734 (lshrsi3, lshrhi3, lshrqi3): Ditto.
9735 (rotldi3, rotlsi3, rotlhi3, rotlqi3): Ditto.
9736 (rotrdi3, rotrsi3, rotrhi3, rotrqi3): Ditto.
9738 2008-06-28 Richard Guenther <rguenther@suse.de>
9740 * tree-ssa-structalias.c (callused_id, var_callused,
9741 callused_tree): Add.
9742 (handle_pure_call): New function.
9743 (find_func_aliases): Call it.
9744 (find_what_p_points_to): Handle the call-used set.
9745 (clobber_what_escaped): Likewise.
9746 (compute_call_used_vars): New function.
9747 (init_base_vars): Init the call-used variable.
9748 (do_sd_constraint): Do not propagate the solution from CALLUSED
9749 but use CALLUSED as a placeholder.
9750 (solve_graph): Likewise.
9751 * tree-flow-inline.h (gimple_call_used_vars): New function.
9752 * tree-flow.h (struct gimple_df): Add call_used_vars bitmap.
9753 (compute_call_used_vars): Declare.
9754 * tree-ssa-alias.c (set_initial_properties): Call
9755 compute_call_used_vars.
9756 (reset_alias_info): Clear call-used variables.
9757 (add_call_clobber_ops): Assert we are not called for const/pure
9758 functions. Remove handling of them.
9759 (add_call_read_ops): Handle pure functions by adding the
9760 call-used set of variables as VUSEs.
9761 * tree-ssa.c (init_tree_ssa): Allocate call-used bitmap.
9762 (delete_tree_ssa): Free it.
9763 * tree-dfa.c (remove_referenced_var): Clear the var from the
9766 2008-06-28 Kai Tietz <kai.tietz@onevision.com>
9768 * tree.c (build_varargs_function_type_list): New.
9769 (build_function_type_list_1): New.
9770 (build_function_type_list): Use build_function_type_list_1.
9771 * tree.h (build_varargs_function_type_list): New.
9773 2008-06-28 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
9776 * config/spu/spu.c (spu_builtin_splats): Do not generate
9777 invalid CONST_VECTOR expressions.
9778 (spu_expand_vector_init): Likewise.
9780 2008-06-28 Richard Sandiford <rdsandiford@googlemail.com>
9782 * optabs.c (libfunc_decls): New variable.
9783 (libfunc_decl_hash, libfunc_decl_eq): New functions.
9784 (init_one_libfunc): Reuse decls and SYMBOL_REFs when asked
9785 for the same function twice.
9787 2008-06-27 Uros Bizjak <ubizjak@gmail.com>
9789 * config/i386/i386.md (ashlti3, ashrti3, lshrti3): Expand using
9790 ix86_expand_binary_operator directly.
9791 (*ashlti3_1): Rename from ashlti3_1. Use nonmemory_operand predicate
9793 (*ashrti3_1): Ditto.
9794 (*lshrti3_1): Ditto.
9795 (*ashlti3_2, *ashrti3_2, *lshrti3_2): Remove insn patterns.
9796 (ashlti, ashrti and lshrti splitters): Handle nonmemory operand 2
9797 using only one splitter. Conditionaly execute splitter before or
9798 after peephole2 pass.
9799 (ashlti, ashrti and lshrti peephole2): Define peephole2 patterns.
9800 (x86_shld): Rename from x86_shld_1. Compress operand 2 constraints.
9801 Use only one alternative in asm template.
9802 (x86_64_shld): Compress operand 2 constraints. Use only one alternative
9804 (*ashldi3_cmp_rex64): Use const_1_to_63_operand operand predicate and
9805 "J" operand constraint for operand 2.
9806 (*ashldi3_cconly_rex64): Ditto.
9807 (*ashrdi3_cmp_rex64): Ditto.
9808 (*ashrdi3_cconly_rex64): Ditto.
9809 (*lshrdi3_cmp_rex64): Ditto.
9810 (*lshrdi3_cconly_rex64): Ditto.
9811 * config/i386/predicates.md (const_1_to_63_operand): New predicate.
9812 * config/i386/i386.md (print_operand) ['s']: Print ", " using fputs.
9813 (split_ashr, split_ashl, split_lshr): Use gen_x86_shrd instead of
9816 2008-06-27 Jakub Jelinek <jakub@redhat.com>
9818 * gimplify.c (omp_is_private): Don't return true if decl is not
9819 already private on #pragma omp for or #pragma omp parallel for.
9822 * tree-cfg.c (struct move_stmt_d): Replace block field with
9823 orig_block and new_block fields.
9824 (move_stmt_r): Only set TREE_BLOCK to p->new_block if
9825 if it used to be NULL, p->orig_block or if p->orig_block is NULL.
9826 (move_block_to_fn): Replace vars_map and new_label_map arguments
9827 with struct move_stmt_d pointer.
9828 (replace_block_vars_by_duplicates): New function.
9829 (move_sese_region_to_fn): Add ORIG_BLOCK argument. Adjust
9830 move_block_to_fn caller. If ORIG_BLOCK is non-NULL, move over
9831 all subblocks of ORIG_BLOCK to the new function. Call
9832 replace_block_vars_by_duplicates.
9833 * tree-flow.h (move_sese_region_to_fn): Adjust prototype.
9834 * omp-low.c (expand_omp_taskreg): Set TREE_USED on DECL_INITIAL
9835 BLOCK of the new function. Adjust move_sese_region_to_fn caller.
9836 Prune vars with original DECL_CONTEXT from child_cfun->local_decls.
9837 (expand_omp): Temporarily set input_location to the location of
9838 region's controlling stmt.
9839 (lower_omp_sections, lower_omp_for): Add a BLOCK into outermost
9840 BIND_EXPR, push ctx->block_vars and gimplification vars into
9841 the BIND_EXPR and its block's BLOCK_VARS instead of directly
9843 (lower_omp_single): Set TREE_USED on the BIND_EXPR's BLOCK if
9844 there are any BLOCK_VARS.
9845 (lower_omp_taskreg): Set BLOCK on a BIND_EXPR containing the
9846 OMP_PARALLEL or OMP_TASK stmt.
9847 (lower_omp): Save and restore input_location around the lower_omp_1
9850 2008-06-27 Richard Guenther <rguenther@suse.de>
9852 PR tree-optimization/36400
9853 PR tree-optimization/36373
9854 PR tree-optimization/36344
9855 * tree-ssa-structalias.c (var_escaped, escaped_tree, escaped_id,
9856 var_nonlocal, nonlocal_tree, nonlocal_id): New globals
9857 (update_alias_info): Remove call clobbering code.
9858 (make_constraint_to): New helper function.
9859 (make_escape_constraint): Likewise.
9860 (handle_rhs_call): Use it on all pointer containing arguments.
9861 Also mark the static chain escaped.
9862 (handle_lhs_call): Make constraints from NONLOCAL and ESCAPED
9863 instead of ANYTHING.
9864 (make_constraint_from): New helper split out from ...
9865 (make_constraint_from_anything): ... here.
9866 (find_func_aliases): Add constraints for escape sites.
9867 (intra_create_variable_infos): Make constraints from NONLOCAL
9869 (find_what_p_points_to): Interpret NONLOCAL and ESCAPED the same
9871 (clobber_what_p_points_to): Remove.
9872 (clobber_what_escaped): New function.
9873 (init_base_vars): Init NONLOCAL and ESCAPED.
9874 (do_sd_constraint): Do not propagate the solution from ESCAPED
9875 but use ESCAPED as a placeholder.
9876 (solve_graph): Likewise.
9877 * tree-flow.h (clobber_what_p_points_to): Remove.
9878 (clobber_what_escaped): Declare.
9879 * tree-ssa-alias.c (set_initial_properties): Call it.
9880 Remove code clobbering escaped pointers.
9882 2008-06-27 Richard Sandiford <rdsandiford@googlemail.com>
9884 * function.c (allocate_struct_function): Only allocate a unique
9885 funcdef_no if the decl is nonzero.
9887 2008-06-27 Richard Sandiford <rdsandiford@googlemail.com>
9889 * config/mips/mips-protos.h (mips_split_const_insns): Declare.
9890 * config/mips/mips.c (mips_split_const_insns): New function.
9891 * config/mips/mips.md (move_type): New attribute.
9892 (mode): Move attribute definition earlier in file. Add "TI" and "TF".
9893 (dword_mode): New attribute.
9894 (type): Avoid long line. Map "move_type"s to "type"s,
9895 choosing "multi" for doubleword moves if appropriate.
9896 Swap MTC/MFC comments to match their declaration order.
9897 (extended_mips16): Default to "yes" if "move_type" is "sll0",
9898 "type" is "branch" or "jal" is "direct".
9899 (length): Handle "extended_mips16" first. Make the default
9900 "0" for "ghost" instructions. Set the length from "move_type".
9901 (truncdisi2, truncdihi2, truncdiqi2): Use "move_type" instead
9902 of "type", with "sll0" for the register alternative. Remove the
9903 "extended_mips16" attribute.
9904 (zero_extendsidi2, *clear_upper32): Use "move_type" instead
9905 of "type", with "shift_shift" for the register alternative.
9906 Remove the "length" attribute.
9907 (*extend<SHORT:mode><GPR:mode>2, *extendqihi2): Likewise.
9908 (*zero_extend<SHORT:mode><GPR:mode>2): Use "move_type" instead
9909 of "type", with "andi" for the register alternative.
9910 (*zero_extendqihi2): Likewise.
9911 (*zero_extend<SHORT:mode><GPR:mode>2_mips16e): Use a "move_type"
9912 of "andi" instead of a "type" of "arith".
9913 (*zero_extend<SHORT:mode><GPR:mode>2_mips16): Use "move_type"
9915 (*zero_extendqihi2_mips16, mov_<load>l, mov_<load>r, mov_<store>l)
9916 (mov_<store>r, *mov<mode>_ra): Likewise.
9917 (extendsidi2): Use "move_type" instead of "type", with "move"
9918 for the register alternative.
9919 (*extend<SHORT:mode><GPR:mode>2_mips16e): Use "move_type" instead
9920 of "type", with "signext" for the register alternative.
9921 (*extend<SHORT:mode><GPR:mode>2_se<SHORT:size>): Likewise.
9922 (*extendqihi2_mips16e, *extendqihi2_seb): Likewise.
9923 (fix_truncdfsi2_insn, fix_truncsfsi2_insn, fix_truncdfdi2)
9924 (fix_truncsfdi2, floatsidf2, floatdidf2, floatsisf2, floatdisf2)
9925 (floatdisf2, *branch_equality<mode>_mips16): Likewise.
9926 (unnamed branch insn): Likewise.
9927 (*movdi_gp32_fp64): Fold into...
9928 (*movdi_32bit): ...here.
9929 (*movdf_hardfloat_64bit, *movdf_hardfloat_32bit): Combine into...
9930 (*movdf_hardfloat): ...this new pattern.
9931 (*movdf_softfloat): Remove redundant FPR alternatives.
9932 (*movti, *movti_mips16, *movtf, *movtf_mips16): Add "mode" attributes.
9933 (*movv2sf_hardfloat_64bit, *movv2sf_hardfloat_32bit): Combine into...
9934 (*movv2sf): ...this new pattern. Use "DF" rather than "SF" for
9935 the "move" attribute.
9936 (*movdi_32bit): Use "move_type" instead of "type" and remove the
9937 "length" attribute. Use "fpload" and "fpstore" instead of "load"
9938 and "store" for COP loads and stores.
9939 (*movdi_32bit_mips16, *movdi_64bit, *movsi_internal, movcc)
9940 (*movhi_internal, *movhi_mips16, *movqi_internal, *movqi_mips16)
9941 (*movsf_hardfloat, *movsf_softfloat, *movsi_mips16, *movdf_hardfloat)
9942 (*movdf_softfloat, *movdf_mips16, *movti, *movti_mips16, *movtf)
9943 (*movtf_mips16, *movv2sf): Likewise.
9944 (mfhi<GPR:mode>_<HILO:mode>, mflo<GPR:mode>_<HILO:mode>)
9945 (load_low<mode>, load_high<mode>, store_word<mode>, mthc1<mode>)
9946 (mfhc1<mode>): Use "move_type" instead of "move".
9947 (*low<mode>_mips16): Use "extended_mips16" instead of "length".
9948 (loadgp_blockage): Remove the "length" attribute.
9949 (blockage, set_got_version, update_got_version): Likewise.
9950 (call_internal): Remove the "extended_mips16" attribute.
9951 (call_value_internal, call_value_multiple_internal): Likewise.
9952 * config/mips/loongson.md (mov<mode>_internal): Use "move_type"
9954 * config/mips/mips-dsp.md (mips_lbux, mips_lhx, mips_lwx): Remove
9955 the "length" attribute.
9957 2008-06-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9959 * c-format.c (handle_format_attribute): Fix -Wc++-compat and/or
9960 -Wcast-qual warnings.
9961 * c-pragma.c (dpm_eq, handle_pragma_push_macro,
9962 handle_pragma_pop_macro): Likewise.
9963 * collect2.c (resolve_lib_name): Likewise.
9964 * config/arc/arc.c (arc_init): Likewise.
9965 * config/arm/arm.c (neon_builtin_compare,
9966 locate_neon_builtin_icode): Likewise.
9967 * config/arm/pe.c (arm_mark_dllexport, arm_pe_unique_section): Likewise.
9968 * config/bfin/bfin.c (bfin_init_machine_status,
9969 bfin_optimize_loop): Likewise.
9970 * config/bfin/bfin.h (TARGET_CPU_CPP_BUILTINS): Likewise.
9971 * config/cris/cris.c (cris_init_expanders): Likewise.
9972 * config/darwin-c.c (frameworks_in_use, add_framework): Likewise.
9973 * config/darwin.c (machopic_indirection_eq,
9974 machopic_indirection_name, machopic_output_indirection): Likewise.
9975 * config/frv/frv.c (frv_init_machine_status, frv_compare_insns,
9976 frv_io_check_address, frv_io_handle_set, frv_io_handle_use_1,
9977 frv_optimize_membar): Likewise.
9978 * config/i386/cygwin.h (mingw_scan,
9979 GCC_DRIVER_HOST_INITIALIZATION): Likewise.
9980 * config/i386/cygwin1.c (mingw_scan): Likewise.
9981 * config/i386/i386.c (machopic_output_stub): Likewise.
9982 * config/i386/winnt.c (gen_stdcall_or_fastcall_suffix,
9983 i386_pe_unique_section): Likewise.
9984 * config/ia64/ia64.c (ia64_init_machine_status,
9985 ia64_h_i_d_extended, get_free_bundle_state, bundling, ia64_reorg):
9987 * config/iq2000/iq2000.c, iq2000_init_machine_status): Likewise.
9988 * config/m68hc11/m68hc11.c (m68hc11_encode_label): Likewise.
9989 * config/m68k/m68k.c (m68k_handle_option,
9990 m68k_sched_md_init_global): Likewise.
9991 * config/mcore/mcore.c (mcore_mark_dllexport, mcore_mark_dllimport,
9992 mcore_unique_section): Likewise.
9993 * config/mips/mips.c (mips_block_move_straight,
9994 mips16_rewrite_pool_refs, mips_sim_wait_regs_2, mips_sim_record_set):
9996 * config/mmix/mmix.c (mmix_init_machine_status,
9997 mmix_encode_section_info): Likewise.
9998 * config/pa/pa.c (pa_init_machine_status, hppa_encode_label): Likewise.
9999 * config/rs6000/rs6000.c (rs6000_init_machine_status,
10000 print_operand_address, output_toc, redefine_groups,
10001 rs6000_elf_encode_section_info, machopic_output_stub): Likewise.
10002 * config/s390/s390.c (s390_init_machine_status): Likewise.
10003 * config/score/score.c (score_block_move_straight,
10004 score_block_move_loop_body): Likewise.
10005 * config/sparc/sparc.c (sparc_init_machine_status): Likewise.
10006 * config/xtensa/xtensa.c (xtensa_init_machine_status): Likewise.
10007 * emit-rtl.c (find_auto_inc): Likewise.
10008 * gcc.c (translate_options, process_command): Likewise.
10009 * reorg.c (dbr_schedule): Likewise.
10010 * sdbout.c (sdbout_start_source_file, sdbout_init): Likewise.
10011 * xcoffout.c (xcoffout_declare_function): Likewise.
10013 2008-06-27 Daniel Berlin <dberlin@dberlin.org>
10015 * tree-ssa-structalias.c (find_func_aliases): Trivial fix to get
10016 ipa-pta working again.
10018 2008-06-27 David Edelsohn <edelsohn@gnu.org>
10020 * config/rs6000/t-aix52: Append large data option to LDFLAGS for
10023 2008-06-27 Edmar Wienskoski <edmar@freescale.com>
10025 * config.gcc (powerpc*-*-*): Add new core e500mc.
10026 * config/rs6000/e500mc.md: New file.
10027 * config/rs6000/rs6000.c (processor_costs): Add new costs for
10029 (rs6000_override_options): Add e500mc case to
10030 processor_target_table. Altivec and Spe options not allowed
10031 with e500mc. Add isel instruction to e500mc by
10032 default. Initialize rs6000_cost for e500mc.
10033 (rs6000_issue_rate): Set issue rate for e500mc.
10034 * config/rs6000/rs6000.h (processor_type): Add
10035 PROCESSOR_PPCE500MC.
10036 (ASM_CPU_SPEC): Add e500mc.
10037 Set TARGET_ISEL to rs6000_isel.
10038 * config/rs6000/e500.h: Remove redefinition of TARGET_ISEL.
10039 (CHECK_E500_OPTIONS): Remove TARGET_ISEL.
10040 * config/rs6000/rs6000.md (define_attr "cpu"): Add ppce500mc.
10042 * doc/invoke.texi: Add e500mc to list of cpus.
10044 2008-06-27 Laurynas Biveinis <laurynas.biveinis@gmail.com>
10047 * c-lex.c (lex_charconst): Initialize unsignedp.
10049 2008-06-27 Olivier Hainque <hainque@adacore.com>
10051 * gimplify.c (gimplify_modify_expr_to_memset): Assert our
10052 documented assumptions.
10054 2008-06-26 H.J. Lu <hongjiu.lu@intel.com>
10056 * dwarf2out.c: Remove trailing white spaces. Break long line
10059 2008-06-26 Richard Sandiford <rdsandiford@googlemail.com>
10061 * libfuncs.h (LTI_synchronize): New libfunc_index.
10062 (synchronize_libfunc): Declare.
10063 * builtins.c (expand_builtin_synchronize): Consider using
10064 synchronize_libfunc before falling back on an asm blockage.
10065 * config/mips/mips.c: Include libfuncs.h
10066 (mips_init_libfuncs): Initialize synchronize_libfunc for TARGET_MIPS16.
10068 2008-06-26 Nathan Froyd <froydnj@codesourcery.com>
10070 * config/rs6000/rs6000.c (emit_allocate_stack): Add copy_r11
10071 parameter. Copy stack_reg to r11 where appropriate.
10072 (no_global_regs_above): Add gpr parameter.
10073 (rs6000_stack_info): Only add padding for SPE save area if we
10074 are saving SPE GPRs and CR.
10075 (saveres_routine_syms): New variable.
10076 (FIRST_SAVRES_REGISTER, LAST_SAVRES_REGISTER, N_SAVRES_REGISTERS):
10078 (rs6000_savres_routine_sym): New function.
10079 (rs6000_emit_stack_reset, rs6000_restore_saved_cr): New functions,
10081 (rs6000_emit_epilogue): ...here. Use rs6000_use_multiple_p and
10082 rs6000_savres_strategy. Restore GPRs out-of-line if appropriate.
10083 Tweak FPR out-of-line saving.
10084 (rs6000_make_savres_rtx): New function.
10085 (rs6000_use_multiple_p): New function.
10086 (rs6000_savres_strategy): New function.
10087 (rs6000_emit_prologue): Use rs6000_savres_strategy. Save GPRs
10088 out-of-line if appropriate.
10089 * config/rs6000/sysv4.h (FP_SAVE_INLINE): Save FPRs out-of-line
10090 if we are optimizing for size.
10091 (GP_SAVE_INLINE): Define.
10092 (SAVE_FP_SUFFIX, RESTORE_FP_SUFFIX): Only use _l on 64-bit targets.
10093 * config/rs6000/darwin.h (GP_SAVE_INLINE): Define.
10094 * config/rs6000/aix.h (GP_SAVE_INLINE): Define.
10095 * config/rs6000/rs6000.md (*save_gpregs_<mode>): New insn.
10096 (*save_fpregs_<mode>): Add use of r11.
10097 (*restore_gpregs_<mode>): New insn.
10098 (*return_and_restore_gpregs_<mode>): New insn.
10099 (*return_and_restore_fpregs_<mode>): Adjust to clobber LR and
10101 * config/rs6000/spe.md (*save_gpregs_spe): New insn.
10102 (*restore_gpregs_spe): New insn.
10103 (*return_and_restore_gpregs_spe): New insn.
10104 * config/rs6000/predicates.md (save_world_operation): Fix check.
10106 2008-06-26 Steven Bosscher <steven@gcc.gnu.org>
10108 * tree-into-ssa (insert_phi_nodes_for): 'var' must be a DECL at
10109 this point, so assert that.
10111 2008-06-26 Steven Bosscher <steven@gcc.gnu.org>
10113 * cfganal.c: Include vec.h and vecprim.h.
10114 (compute_idf): Import from...
10115 * tree-into-ssa (compute_idf): ...here.
10116 * basic-block.h (compute_idf): Export.
10118 2008-06-26 Joseph Myers <joseph@codesourcery.com>
10120 * c-decl.c (merge_decls): Use !current_function_decl to check for
10121 extern declaration of C99 inline function being at file scope.
10123 2008-06-25 John David Anglin <dave.anglin@gcc-cnrc.gc.ca>
10125 * config.gcc (hppa[12]*-*-hpux10*): Don't use fixproto.
10127 2008-06-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10129 * alias.c (record_alias_subset, init_alias_analysis): Fix
10130 -Wc++-compat and/or -Wcast-qual warnings.
10131 * attribs.c (lookup_attribute_spec): Likewise.
10132 * bb-reorder.c (find_traces, rotate_loop, find_traces_1_round,
10133 copy_bb, connect_traces,
10134 find_rarely_executed_basic_blocks_and_cr): Likewise.
10135 * bt-load.c (find_btr_def_group, add_btr_def, new_btr_user,
10136 note_btr_set, migrate_btr_defs): Likewise.
10137 * builtins.c (result_vector, expand_builtin_memcpy,
10138 expand_builtin_mempcpy_args, expand_builtin_strncpy,
10139 builtin_memset_read_str, expand_builtin_printf,
10140 fold_builtin_memchr, rewrite_call_expr, fold_builtin_printf):
10142 * caller-save.c (mark_set_regs): Likewise.
10143 * calls.c (expand_call, emit_library_call_value_1): Likewise.
10144 * cgraph.c (cgraph_edge): Likewise.
10145 * combine.c (likely_spilled_retval_1): Likewise.
10146 * coverage.c (htab_counts_entry_hash, htab_counts_entry_eq,
10147 htab_counts_entry_del, get_coverage_counts): Likewise.
10148 * cselib.c (new_elt_list, new_elt_loc_list, entry_and_rtx_equal_p,
10149 new_cselib_val): Likewise.
10150 * dbgcnt.c (dbg_cnt_process_opt): Likewise.
10151 * dbxout.c (dbxout_init, dbxout_type, output_used_types_helper):
10153 * df-core.c (df_compact_blocks): Likewise.
10154 * df-problems.c (df_grow_bb_info, df_chain_create): Likewise.
10155 * df-scan.c (df_grow_reg_info, df_ref_create,
10156 df_insn_create_insn_record, df_insn_rescan, df_notes_rescan,
10157 df_ref_compare, df_ref_create_structure, df_bb_refs_record,
10158 df_record_entry_block_defs, df_record_exit_block_uses,
10159 df_bb_verify): Likewise.
10160 * df.h (DF_REF_EXTRACT_WIDTH_CONST, DF_REF_EXTRACT_OFFSET_CONST,
10161 DF_REF_EXTRACT_MODE_CONST): New.
10162 * dominance.c (get_immediate_dominator, get_dominated_by,
10163 nearest_common_dominator, root_of_dom_tree,
10164 iterate_fix_dominators, first_dom_son, next_dom_son): Fix
10165 -Wc++-compat and/or -Wcast-qual warnings.
10166 * dse.c (clear_alias_set_lookup, get_group_info, gen_rtx_MEM,
10167 record_store, replace_read, check_mem_read_rtx, scan_insn,
10168 dse_step1, dse_record_singleton_alias_set): Likewise.
10169 * dwarf2asm.c (dw2_force_const_mem): Likewise.
10171 2008-06-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10173 * dwarf2out.c (new_cfi, queue_reg_save, dwarf2out_begin_prologue,
10174 dwarf2out_frame_init, new_loc_descr, new_die, lookup_decl_die,
10175 lookup_decl_loc, add_var_loc_to_decl, compute_section_prefix,
10176 assign_symbol_names, htab_cu_hash, htab_cu_eq, htab_cu_del,
10177 build_abbrev_table, new_loc_list, output_comp_unit, add_arange,
10178 add_ranges_num, add_ranges_by_labels, file_info_cmp,
10179 file_name_acquire, output_file_names, add_const_value_attribute,
10180 premark_used_types_helper, file_table_eq, file_table_hash,
10181 lookup_filename, dwarf2out_var_location, dwarf2out_source_line,
10182 dwarf2out_init, file_table_relative_p): Fix -Wc++-compat and/or
10183 -Wcast-qual warnings.
10184 * ebitmap.c (ebitmap_array_grow, ebitmap_array_init,
10185 ebitmap_alloc, ebitmap_ior, ebitmap_and_compl): Likewise.
10186 * emit-rtl.c (get_mem_attrs, get_reg_attrs, gen_rtvec,
10187 gen_reg_rtx, start_sequence, init_emit): Likewise.
10188 * et-forest.c (et_new_occ, et_new_tree): Likewise.
10189 * except.c (init_eh_for_function, gen_eh_region,
10190 remove_unreachable_regions, add_ehl_entry, duplicate_eh_regions_1,
10191 arh_to_landing_pad, arh_to_label, add_action_record,
10192 add_call_site, switch_to_exception_section): Likewise.
10193 * expmed.c (synth_mult): Likewise.
10194 * expr.c (gen_group_rtx, emit_group_load, emit_group_store,
10195 store_expr): Likewise.
10196 * final.c (shorten_branches, final_scan_insn, debug_queue_symbol):
10198 * function.c (assign_stack_temp_for_type,
10199 allocate_struct_function, match_asm_constraints_1): Likewise.
10200 * gcov-io.c (gcov_allocate): Likewise.
10201 * gcse.c (GNEW, GCNEW, GNEWVEC, GCNEWVEC, GRESIZEVEC, GNEWVAR,
10202 GCNEWVAR, GRESIZEVAR, GOBNEW, GOBNEWVAR): New.
10203 (gcse_main, alloc_gcse_mem, alloc_gcse_mem, alloc_reg_set_mem,
10204 record_one_set, insert_expr_in_table, insert_set_in_table,
10205 dump_hash_table, compute_hash_table_work, alloc_hash_table,
10206 pre_ldst_expr_hash, pre_ldst_expr_eq, find_rtx_in_ldst,
10207 reg_set_info, reg_clear_last_set): Fix -Wc++-compat and/or
10208 -Wcast-qual warnings.
10210 2008-06-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10212 * cse.c (approx_reg_cost_1, cse_insn): Fix -Wc++-compat and/or
10213 -Wcast-qual warnings.
10214 * gcc.c (process_command): Likewise.
10215 * genattrtab.c (oballoc): Use XOBNEW.
10216 (oballocvec): Define.
10217 (attr_hash_add_rtx, attr_hash_add_string, attr_string,
10218 get_attr_value, fill_attr, make_length_attrs, gen_attr, gen_insn,
10219 gen_delay, find_attr, gen_insn_reserv, gen_bypass_1): Fix
10220 -Wc++-compat and/or -Wcast-qual warnings.
10221 * genautomata.c (XCREATENODE, XCREATENODEVEC, XCREATENODEVAR,
10222 XCOPYNODE, XCOPYNODEVEC, XCOPYNODEVAR): New.
10223 (gen_cpu_unit, gen_query_cpu_unit, gen_bypass, gen_excl_set,
10224 gen_presence_absence_set, gen_automaton, gen_regexp_el,
10225 gen_regexp_repeat, gen_regexp_allof, gen_regexp_oneof,
10226 gen_regexp_sequence, gen_reserv, gen_insn_reserv, process_excls,
10227 add_excls, process_presence_absence_names,
10228 process_presence_absence_patterns, add_presence_absence,
10229 process_regexp, add_advance_cycle_insn_decl, get_free_alt_state,
10230 get_free_state, add_arc, get_free_automata_list_el,
10231 form_reserv_sets_list, copy_insn_regexp, transform_1, transform_2,
10232 transform_3, cache_presence, create_ainsns, create_automata,
10233 create_state_ainsn_table, dfa_insn_code_enlarge,
10234 output_trans_func, output_min_issue_delay_func,
10235 output_dead_lock_func, output_reset_func,
10236 output_get_cpu_unit_code_func, output_dfa_start_func,
10237 expand_automata): Likewise.
10238 * genextract.c (gen_insn): Likewise.
10239 * gengtype-lex.l: Likewise.
10240 * gengtype.c (read_input_list, adjust_field_type,
10241 process_gc_options): Likewise.
10242 * genoutput.c (note_constraint): Likewise.
10243 * genpreds.c (mangle, add_constraint): Likewise.
10244 * genrecog.c (process_define_predicate, new_decision,
10245 add_to_sequence): Likewise.
10246 * gensupport.c (record_insn_name): Likewise.
10248 2008-06-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10250 * config/i386/driver-i386.c (detect_caches_amd,
10251 detect_caches_intel, host_detect_local_cpu): Fix -Wc++-compat
10252 and/or -Wcast-qual warnings.
10253 *ggc-common.c (ggc_mark_roots, gt_pch_note_object,
10254 gt_pch_note_reorder, relocate_ptrs, write_pch_globals,
10255 gt_pch_save): Likewise.
10256 * ggc-page.c (push_depth, push_by_depth, alloc_anon, alloc_page,
10257 gt_ggc_m_S, clear_marks, ggc_pch_read): Likewise.
10258 * global.c (compute_regsets): Likewise.
10259 * graph.c (print_rtl_graph_with_bb, clean_graph_dump_file,
10260 finish_graph_dump_file): Likewise.
10261 * haifa-sched.c (schedule_block, extend_h_i_d, extend_ready,
10262 unlink_bb_notes): Likewise.
10263 * integrate.c (get_hard_reg_initial_val): Likewise.
10264 * ipa-prop.c (ipa_push_func_to_list): Likewise.
10265 * ipa-struct-reorg.c (gen_var_name, gen_cluster_name): Likewise.
10266 * local-alloc.c (update_equiv_regs): Likewise.
10267 * loop-invariant.c (check_invariant_table_size,
10268 hash_invariant_expr, eq_invariant_expr, find_or_insert_inv):
10270 * loop-iv.c (check_iv_ref_table_size, analyzed_for_bivness_p,
10271 altered_reg_used, mark_altered): Likewise.
10272 * loop-unroll.c (si_info_eq, ve_info_eq, allocate_basic_variable,
10273 insert_var_expansion_initialization,
10274 combine_var_copies_in_loop_exit, apply_opt_in_copies,
10275 release_var_copies): Likewise.
10276 * matrix-reorg.c (mat_acc_phi_hash, mat_acc_phi_eq, mtt_info_eq,
10277 analyze_matrix_decl, add_allocation_site, analyze_transpose,
10278 analyze_accesses_for_phi_node, check_var_notmodified_p,
10279 check_allocation_function, find_sites_in_func,
10280 record_all_accesses_in_func, transform_access_sites,
10281 transform_allocation_sites): Likewise.
10282 * omp-low.c (new_omp_region, create_omp_child_function_name,
10283 check_omp_nesting_restrictions, check_combined_parallel,
10284 lower_omp_2, diagnose_sb_1, diagnose_sb_2): Likewise.
10285 * optabs.c (no_conflict_move_test, gen_libfunc, gen_fp_libfunc,
10286 gen_intv_fp_libfunc, gen_interclass_conv_libfunc,
10287 gen_intraclass_conv_libfunc, set_optab_libfunc, set_conv_libfunc):
10289 * opts-common.c (prune_options): Likewise.
10290 * opts.c (add_input_filename, print_filtered_help,
10291 get_option_state): Likewise.
10292 * params.c (add_params): Likewise.
10293 * passes.c (set_pass_for_id, next_pass_1,
10294 do_per_function_toporder, pass_fini_dump_file): Likewise.
10295 * postreload.c (reload_cse_simplify_operands): Likewise.
10296 * predict.c (tree_predicted_by_p, tree_predict_edge,
10297 clear_bb_predictions, combine_predictions_for_bb): Likewise.
10299 2008-06-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10301 * ra.h (add_neighbor): Fix -Wc++-compat and/or -Wcast-qual
10303 * recog.c (check_asm_operands, validate_change_1): Likewise.
10304 * reg-stack.c (check_asm_stack_operands, subst_asm_stack_regs,
10305 subst_asm_stack_regs): Likewise.
10306 * regclass.c (regclass, som_hash, som_eq, record_subregs_of_mode,
10307 cannot_change_mode_set_regs, invalid_mode_change_p): Likewise.
10308 * regmove.c (reg_is_remote_constant_p): Likewise.
10309 * regrename.c (regrename_optimize, scan_rtx_reg,
10310 kill_clobbered_value, kill_set_value, kill_autoinc_value):
10312 * regstat.c (regstat_init_n_sets_and_refs, regstat_compute_ri,
10313 regstat_compute_calls_crossed): Likewise.
10314 * reload1.c (init_reload, new_insn_chain,
10315 has_nonexceptional_receiver, reload, copy_reloads,
10316 calculate_needs_all_insns, init_elim_table): Likewise.
10317 * rtl-factoring.c (compute_rtx_cost, fill_hash_bucket): Likewise.
10318 * rtl.c (shallow_copy_rtx_stat): Likewise.
10319 * rtlanal.c (parms_set): Likewise.
10320 * sbitmap.c (sbitmap_alloc, sbitmap_alloc_with_popcount,
10321 sbitmap_resize, sbitmap_vector_alloc): Likewise.
10322 * sched-ebb.c (earliest_block_with_similiar_load,
10323 add_deps_for_risky_insns): Likewise.
10324 * sched-rgn.c (find_rgns, gather_region_statistics, extend_rgns,
10325 schedule_region): Likewise.
10326 * see.c (eq_descriptor_pre_extension,
10327 hash_descriptor_pre_extension, hash_del_pre_extension,
10328 eq_descriptor_properties, hash_descriptor_properties,
10329 hash_del_properties, see_seek_pre_extension_expr,
10330 see_initialize_data_structures, see_print_register_properties,
10331 see_print_pre_extension_expr, see_delete_merged_def_extension,
10332 see_delete_unmerged_def_extension, see_emit_use_extension,
10333 see_pre_delete_extension, see_map_extension, see_commit_changes,
10334 see_analyze_merged_def_local_prop,
10335 see_analyze_merged_def_local_prop,
10336 see_analyze_unmerged_def_local_prop, see_analyze_use_local_prop,
10337 see_set_prop_merged_def, see_set_prop_unmerged_def,
10338 see_set_prop_unmerged_use, see_print_one_extension,
10339 see_merge_one_use_extension, see_merge_one_def_extension,
10340 see_store_reference_and_extension, see_update_uses_relevancy,
10341 see_update_defs_relevancy): Likewise.
10342 * statistics.c (hash_statistics_hash, hash_statistics_eq,
10343 hash_statistics_free, curr_statistics_hash): Likewise.
10344 * stmt.c (parse_output_constraint, decl_overlaps_hard_reg_set_p,
10345 expand_asm_operands, expand_return, case_bit_test_cmp,
10346 expand_case): Likewise.
10347 * stor-layout.c (start_record_layout): Likewise.
10348 * stringpool.c (ggc_alloc_string, gt_pch_n_S,
10349 gt_pch_save_stringpool): Likewise.
10350 * tree-data-ref.c (hash_stmt_vertex_info,
10351 have_similar_memory_accesses_1, ref_base_address_1): Likewise.
10352 * tree-ssa-phiopt.c (name_to_bb_hash): Likewise.
10354 2008-06-25 Uros Bizjak <ubizjak@gmail.com>
10357 * config/i386/i386.md : Change constraints of HImode and QImode
10358 immediate operands from "i" to "n". Change SImode "ni" constraint to
10359 "i" and SImode "rmi" constraint to "g". Remove all constraints
10360 from const0_operand and const1_operand predicated operands.
10361 (i): Change QImode and HImode attribute from "i" to "n".
10362 (*subqi_2): Change HImode operands to QImode.
10365 2008-06-25 Olivier Hainque <hainque@adacore.com>
10367 * Makefile.in (GTFILES_H): Use | instead of ; as separator in
10370 2008-06-25 Richard Guenther <rguenther@suse.de>
10372 * tree-ssa-structalias.c (fieldoff_compare): Make sure to
10373 not overflow the result type.
10375 2008-06-25 Richard Guenther <rguenther@suse.de>
10377 * tree-vn.c (vn_add): Handle TRUTH_*_EXPR.
10378 (vn_lookup): Likewise.
10380 2008-06-25 Richard Guenther <rguenther@suse.de>
10382 PR tree-optimization/35518
10383 * fold-const.c (fold_ternary): Strip trivial BIT_FIELD_REFs.
10384 * tree-sra.c (instantiate_element): Use fold_build3 to build
10386 (try_instantiate_multiple_fields): Likewise.
10388 2008-06-24 Andrew Pinski <andrew_pinski@playstation.sony.com>
10390 * config/rs6000/rs6000.md: Change all string instruction's clobber to
10393 2008-06-24 Andrew Pinski <andrew_pinski@playstation.sony.com>
10395 * config/rs6000/rs6000.c (rs6000_emit_epilogue): Set
10396 use_backchain_to_restore_sp to true
10397 if the offset of the link register save area would go over the 32k - 1
10398 offset limit of the load
10401 2008-06-25 Hans-Peter Nilsson <hp@axis.com>
10403 * doc/invoke.texi (Optimize Options) <fstrict-aliasing>: Add
10404 anchor for the type-punning blurb. Cross-reference "Structures
10405 unions enumerations and bit-fields implementation". Provide a
10406 cast-through-pointer example. Make final sentence self-contained.
10407 * doc/implement-c.texi (Structures unions enumerations and
10408 bit-fields implementation): Cross-reference the type-punning blurb
10409 in the -fstrict-aliasing documentation.
10411 2008-06-24 Andrew Pinski <andrew_pinski@playstation.sony.com>
10413 PR middle-end/36594
10414 * builtins.c (expand_builtin_nonlocal_goto): Stabilize the address of
10415 the memory instead of the memory itself for the save area.
10417 2008-06-24 Olivier Hainque <hainque@adacore.com>
10418 Nicolas Roche <roche@adacore.com>
10420 * gengtype.c (srcdir_len): size_t instead of int.
10421 (get_file_realbasename): New function. For F a filename, the real
10422 basename of F, with all the path components stripped.
10423 (get_file_srcdir_relative_path): New function. For F a filename, the
10424 relative path to F from $(srcdir).
10425 (get_file_basename): Rewrite using get_file_srcdir_relative_path and
10426 get_file_realbasename. Adjust the head comment.
10427 (get_prefix_langdir_index): New function. For F a filename, return the
10428 lang_dir_names[] relative index of the language directory that is
10430 (get_file_langdir): For F a filename, return the name of the language
10431 directory where F is located.
10432 (get_file_gtfilename): New function. The gt- output file name for an
10434 (get_output_file_with_visibility): Replace in-line computations with
10435 uses of get_file_gtfilename and get_prefix_langdir_index.
10436 * Makefile.in (GTFILES_H): Adjust to match what gengtype generates.
10438 2008-06-24 Jakub Jelinek <jakub@redhat.com>
10440 PR tree-optimization/36504
10441 * tree-ssa-loop-prefetch.c (gather_memory_references_ref): Skip
10442 references without base address.
10444 2008-06-23 Uros Bizjak <ubizjak@gmail.com>
10446 PR middle-end/36584
10447 * calls.c (expand_call): Increase alignment for recursive functions.
10449 2008-06-23 Anatoly Sokolov <aesok@post.ru>
10451 * config/avr/avr.c (avr_function_value): Add new 'outgoing' argument.
10452 (TARGET_FUNCTION_VALUE): New define.
10453 * config/avr/avr-protos.h (avr_function_value): Remove declaration.
10454 * config/avr/avr.h (FUNCTION_VALUE): Remove.
10456 2008-06-23 Uros Bizjak <ubizjak@gmail.com>
10458 * config/i386/i386.md (fmodxf3): Change sequence of move instructions.
10459 (fmod<mode>3): Ditto.
10460 (remainderxf3): Ditto.
10461 (remainder<mode>3): Ditto.
10463 2008-06-23 Jakub Jelinek <jakub@redhat.com>
10466 * emit-rtl.c (set_reg_attrs_from_value): Do nothing if
10467 REG is a hard register.
10469 PR tree-optimization/36508
10470 * tree-ssa-pre.c (compute_antic): Allow num_iterations up to
10471 499, don't check it at all in release compilers.
10473 2008-06-23 Uros Bizjak <ubizjak@gmail.com>
10475 * config/i386/i386.md (*fop_<mode>_1_i387): Use SSE_FLOAT_MODE_P
10476 together with SSE_TARGET_MATH to disable insn pattern.
10477 (*fop_<MODEF:mode>_2_i387): Ditto.
10478 (*fop_<MODEF:mode>_3_i387): Ditto.
10480 2008-06-22 Andy Hutchinson <hutchinsonandy@aim.com>
10482 * config/avr/avr.h (SUPPORTS_INIT_PRIORITY): Define.
10484 2008-06-22 Laurynas Biveinis <laurynas.biveinis@gmail.com>
10486 PR middle-end/34906
10487 * gimplify.c (gimplify_asm_expr): Check the return code of
10488 parse_output_constraint call, set function return and is_inout
10489 value if it failed.
10491 2008-06-22 Ian Lance Taylor <iant@google.com>
10493 * c-lex.c (narrowest_unsigned_type): Change itk to int.
10494 (narrowest_signed_type): Likewise.
10495 * c-typeck.c (c_common_type): Change local variable mclass to enum
10497 (parser_build_binary_op): Compare the TREE_CODE_CLASS with
10498 tcc_comparison, not the tree code itself.
10499 * c-common.c (def_fn_type): Pass int, not an enum, to va_arg.
10500 (c_expand_expr): Cast modifier to enum expand_modifier.
10501 * c-common.h (C_RID_CODE): Add casts.
10502 (C_SET_RID_CODE): Define.
10503 * c-parser.c (c_parse_init): Use C_SET_RID_CODE.
10504 (c_lex_one_token): Add cast to avoid warning.
10505 (c_parser_objc_type_name): Rename local typename to type_name.
10506 (check_no_duplicate_clause): Change code parameter to enum
10508 (c_parser_omp_var_list_parens): Change kind parameter to enum
10510 (c_parser_omp_flush): Pass OMP_CLAUSE_ERROR, not 0, to
10511 c_parser_omp_list_var_parens.
10512 (c_parser_omp_threadprivate): Likewise.
10513 * cp/lex.c (init_reswords): Use C_SET_RID_CODE.
10514 * cp/parser.c (cp_lexer_get_preprocessor_token): Likewise.
10515 * c-format.c (NO_FMT): Define.
10516 (printf_length_specs): Use NO_FMT.
10517 (asm_fprintf_length_specs): Likewise.
10518 (gcc_diag_length_specs): Likewise.
10519 (scanf_length_specs): Likewise.
10520 (strfmon_length_specs): Likewise.
10521 (gcc_gfc_length_specs): Likewise.
10522 (printf_flag_specs): Change 0 to STD_C89.
10523 (asm_fprintf_flag_specs): Likewise.
10524 (gcc_diag_flag_specs): Likewise.
10525 (gcc_cxxdiag_flag_specs): Likewise.
10526 (scanf_flag_specs): Likewise.
10527 (strftime_flag_specs): Likewise.
10528 (strfmon_flag_specs): Likewise.
10529 (print_char_table): Likewise.
10530 (asm_fprintf_char_table): Likewise.
10531 (gcc_diag_char_table): Likewise.
10532 (gcc_tdiag_char_table): Likewise.
10533 (gcc_cdiag_char_table): Likewise.
10534 (gcc_cxxdiag_char_table): Likewise.
10535 (gcc_gfc_char_table): Likewise.
10536 (scan_char_table): Likewise.
10537 (time_char_table): Likewis.
10538 (monetary_char_table): Likewise.
10539 * c-format.h (BADLEN): Likewise.
10541 2008-06-21 Ian Lance Taylor <iant@google.com>
10543 * tree.h (enum tree_code): Include all-tree.def, not tree.def.
10544 Define END_OF_BASE_TREE_CODES around inclusion.
10545 * tree.c (tree_code_type): New global array.
10546 (tree_code_length, tree_code_name): Likewise.
10547 * Makefile.in (TREE_H): Add all-tree.def, c-common.def, and
10548 $(lang_tree_files).
10549 (all-tree.def, s-alltree): New targets.
10550 (gencheck.h, s-gencheck): Remove.
10551 (tree.o): Depend upon all-tree.def.
10552 (build/gencheck.o): Remove gencheck.h dependency.
10553 (mostlyclean): Don't remove gencheck.h.
10554 * c-common.h (enum c_tree_code): Remove.
10555 * c-lang.c (tree_code_type): Remove.
10556 (tree_code_length, tree_code_name): Remove.
10557 * gencheck.c (tree_codes): Include all-tree.def, rather than
10558 tree.def, c-common.def, and gencheck.h. Undefined DEFTREECODE
10560 * tree-browser.c (tb_tree_codes): Include all-tree.def, rather
10562 * cp/cp-tree.h (enum cplus_tree_code): Remove.
10563 (operator_name_info): Size to MAX_TREE_CODES.
10564 (assignment_operator_name_info): Likewise.
10565 * cp/cp-lang.c (tree_code_type): Remove.
10566 (tree_code_length, tree_code_name): Remove.
10567 * cp/lex.c (operator_name_info): Size to MAX_TREE_CODES.
10568 (assignment_operator_name_info): Likewise.
10569 * cp/decl.c (grok_op_properties): Change LAST_CPLUS_TREE_CODE to
10571 * cp/mangle.c (write_expression): Likewise.
10572 * cp/Make-lang.in (CXX_TREE_H): Remove cp/cp-tree.def.
10573 * fortran/f95-lang.c (tree_code_type): Remove.
10574 (tree_code_length, tree_code_name): Remove.
10575 * java/java-tree.h (enum java_tree_code): Remove.
10576 * java/lang.c (tree_code_type): Remove.
10577 (tree_code_length, tree_code_name): Remove.
10578 * java/Make-lang.in (JAVA_TREE_H): Remove java/java-tree.def.
10579 * objc/objc-act.h (enum objc_tree_code): Remove.
10580 * objc/objc-lang.c (tree_code_type): Remove.
10581 (tree_code_length, tree_code_name): Remove.
10582 * objcp/objcp-lang.c (tree_code_type): Remove.
10583 (tree_code_length, tree_code_name): Remove.
10584 * ada/ada-tree.h (enum gnat_tree_code): Remove.
10585 * ada/Make-lang.in (ADA_TREE_H): Remove ada/ada-tre.def.
10586 * ada/misc.c (tree_code_type): Remove.
10587 (tree_code_length, tree_code_name): Remove.
10589 2008-06-21 Bernhard Fischer <aldot@gcc.gnu.org>
10591 * tree-ssa-pre.c (fini_antic): Bitmap_sets have to be freed before
10592 the grand_bitmap_obstack.
10594 2008-06-20 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10596 * ggc.h (GGC_RESIZEVAR): New, reorder macros.
10597 * tracer.c (tail_duplicate): Fix for -Wc++-compat.
10598 * tree-affine.c (aff_combination_expand, free_name_expansion): Likewise.
10599 * tree-cfg.c (replace_by_duplicate_decl, replace_ssa_name,
10600 move_stmt_r, new_label_mapper): Likewise.
10601 * tree-complex.c (cvc_lookup): Likewise.
10602 * tree-dfa.c (create_function_ann): Likewise.
10603 * tree-dump.c (dump_register): Likewise.
10604 * tree-if-conv.c (tree_if_conversion, add_to_predicate_list,
10605 find_phi_replacement_condition): Likewise.
10606 * tree-inline.c (copy_phis_for_bb, estimate_num_insns_1,
10607 tree_function_versioning): Likewise.
10608 * tree-into-ssa.c (cmp_dfsnum): Likewise.
10609 * tree-iterator.c (tsi_link_before, tsi_link_after): Likewise.
10610 * tree-nested.c (lookup_field_for_decl, lookup_tramp_for_decl,
10611 get_nonlocal_debug_decl, convert_nonlocal_reference,
10612 convert_nonlocal_omp_clauses, get_local_debug_decl,
10613 convert_local_reference, convert_local_omp_clauses,
10614 convert_nl_goto_reference, convert_nl_goto_receiver,
10615 convert_tramp_reference, convert_call_expr): Likewise.
10616 * tree-outof-ssa.c (contains_tree_r): Likewise.
10617 * tree-parloops.c (reduction_phi, initialize_reductions,
10618 eliminate_local_variables_1, add_field_for_reduction,
10619 add_field_for_name, create_phi_for_local_result,
10620 create_call_for_reduction_1, create_loads_for_reductions,
10621 create_stores_for_reduction, create_loads_and_stores_for_name):
10623 * tree-phinodes.c (allocate_phi_node): Likewise.
10624 * tree-predcom.c (order_drefs, execute_pred_commoning_cbck): Likewise.
10625 * tree-sra.c (sra_elt_hash, sra_elt_eq, lookup_element): Likewise.
10626 * tree-ssa-alias.c (get_mem_sym_stats_for): Likewise.
10627 * tree-ssa-coalesce.c (compare_pairs): Likewise.
10628 * tree-ssa-loop-im.c (mem_ref_in_stmt, memref_hash, memref_eq,
10629 memref_free, gather_mem_refs_stmt, vtoe_hash, vtoe_eq, vtoe_free,
10630 record_vop_access, get_vop_accesses, get_vop_stores): Likewise.
10631 * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Likewise.
10632 * tree-ssa-sccvn.c (VN_INFO_GET, free_phi, free_reference,
10633 vn_nary_op_insert): Likewise.
10634 * tree-ssa.c (redirect_edge_var_map_add,
10635 redirect_edge_var_map_clear, redirect_edge_var_map_dup): Likewise.
10636 * tree-vectorizer.c (vectorize_loops): Likewise.
10637 * tree.c (make_node_stat, copy_node_stat, build_int_cst_wide,
10638 build_fixed, build_real, make_tree_binfo_stat, make_tree_vec_stat,
10639 tree_cons_stat, build1_stat, build_variant_type_copy,
10640 decl_init_priority_lookup, decl_fini_priority_lookup,
10641 decl_priority_info, decl_restrict_base_lookup,
10642 decl_restrict_base_insert, decl_debug_expr_lookup,
10643 decl_debug_expr_insert, decl_value_expr_lookup,
10644 decl_value_expr_insert, type_hash_eq, type_hash_lookup,
10645 type_hash_add, get_file_function_name, tree_check_failed,
10646 tree_not_check_failed, tree_range_check_failed,
10647 omp_clause_range_check_failed, build_omp_clause,
10648 build_vl_exp_stat): Likewise.
10649 * value-prof.c (gimple_histogram_value,
10650 gimple_duplicate_stmt_histograms): Likewise.
10651 * var-tracking.c (attrs_list_insert, attrs_list_copy,
10652 unshare_variable, variable_union_info_cmp_pos, variable_union,
10653 dataflow_set_different_1, dataflow_set_different_2,
10654 vt_find_locations, variable_was_changed, set_variable_part,
10655 emit_notes_for_differences_1, emit_notes_for_differences_2): Likewise.
10656 * varasm.c (prefix_name, emutls_decl, section_entry_eq,
10657 section_entry_hash, object_block_entry_eq,
10658 object_block_entry_hash, create_block_symbol,
10659 initialize_cold_section_name, default_function_rodata_section,
10660 strip_reg_name, set_user_assembler_name, const_desc_eq,
10661 build_constant_desc, output_constant_def, lookup_constant_def,
10662 const_desc_rtx_hash, const_desc_rtx_eq, const_rtx_hash_1,
10663 create_constant_pool, force_const_mem, compute_reloc_for_rtx_1,
10664 default_internal_label): Likewise.
10665 * varray.c (varray_init, varray_grow): Likewise.
10666 * vec.c (vec_gc_o_reserve_1, vec_heap_o_reserve_1): Likewise.
10668 2008-06-20 Uros Bizjak <ubizjak@gmail.com>
10670 * config/i386/i386.md (*jcc_fused_1): Handle all valid compare
10671 operators for "test" insn. Macroize insn using SWI mode macro.
10672 (*jcc_fused_2): Ditto.
10673 (*jcc_fused_3): Macroize insn using SWI mode macro.
10674 (*jcc_fused_4): Ditto.
10676 2008-06-20 Bernhard Fischer <aldot@gcc.gnu.org>
10678 * tree-ssa-pre.c: Fix typo in comment.
10679 (init_antic, fini_antic): Add explicit funtions for
10680 initializing and deinitializing ANTIC and AVAIL sets.
10681 (create_expression_by_pieces): Fix typo in comment.
10682 Remove redundant set of new_stuff and use NULL_TREE instead of NULL.
10683 (execute_pre): Eventually dump details about ANTIC_IN.
10685 2008-06-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10687 * collect2.c (main, add_to_list): Fix for -Wc++-compat.
10688 * gcc.c (translate_options, init_spec, store_arg, read_specs,
10689 add_to_obstack, file_at_path, find_a_file, execute,
10690 add_preprocessor_option, add_assembler_option, add_linker_option,
10691 process_command, insert_wrapper, do_option_spec, do_self_spec,
10692 spec_path, do_spec_1, is_directory, main, used_arg,
10693 getenv_spec_function): Likewise.
10694 * tlink.c (symbol_hash_lookup, file_hash_lookup,
10695 demangled_hash_lookup, symbol_push, file_push, frob_extension):
10698 2008-06-19 Kenneth Zadeck <zadeck@naturalbridge.com>
10700 * doc/rtl.texi: Updated subreg section.
10702 2008-06-19 Jakub Jelinek <jakub@redhat.com>
10705 * cgraphunit.c (cgraph_process_new_functions): Don't clear
10706 node->needed and node->reachable.
10707 * cgraphbuild.c (record_reference): Handle OMP_PARALLEL and OMP_TASK.
10708 * omp-low.c (delete_omp_context): Call finalize_task_copyfn.
10709 (expand_task_call): Don't call expand_task_copyfn.
10710 (expand_task_copyfn): Renamed to...
10711 (finalize_task_copyfn): ... this.
10713 2008-06-19 Jan Hubicka <jh@suse.cz>
10715 * builtins.c (expand_builtin_nonlocal_goto): Stabilize r_sp before
10716 clobbering framepointer.
10718 2008-06-19 Jan Hubicka <jh@suse.cz>
10720 * tree-optimize.c (execute_early_local_optimizations): Set
10721 cgraph_state only at first invocation.
10723 2008-06-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10725 * system.h (-Wc++-compat): Activate as a warning, no an error.
10727 2008-06-19 Uros Bizjak <ubizjak@gmail.com>
10729 * config/i386/i386.md (*jcc_fused_1): Use ASM_COMMENT_START
10730 instead of "#" in insn asm template.
10731 (*jcc_fused_2): Ditto.
10733 2008-06-19 Uros Bizjak <ubizjak@gmail.com>
10735 * config/i386/i386.h (ix86_tune_indices)
10736 [X86_TUNE_FUSE_CMP_AND_BRANCH]: New.
10737 (TARGET_FUSE_CMP_AND_BRANCH): New define.
10738 * config/i386/i386.md (*jcc_fused_1): New insn pattern
10739 (*jcc_fused_2): Ditto.
10740 * config/i386/i386.c (ix86_tune_features): Add m_CORE2 to
10741 X86_TUNE_FUSE_CMP_AND_BRANCH targets.
10742 (print operand): Handle 'E' and 'e' code.
10744 2008-06-19 Anatoly Sokolov <aesok@post.ru>
10746 * config/avr/avr.c (avr_mcu_t): Add attiny13a.
10747 * config/avr/avr.h (LINK_SPEC, CRT_BINUTILS_SPECS): (Ditto.).
10748 * config/avr/t-avr (MULTILIB_MATCHES): (Ditto.).
10750 2008-06-19 Bernhard Fischer <aldot@gcc.gnu.org>
10752 * cgraphunit.c (cgraph_finalize_function): Remove redundant setting of
10754 (cgraph_expand_function): Use local copy of decl.
10755 (cgraph_expand_all_functions): Remove redundant initialization of
10757 (cgraph_optimize): Reword internal_error message.
10759 2008-06-19 Chung-Lin Tang <ctang@marvell.com>
10761 * arm-protos.h (arm_return_in_memory): Remove public
10762 arm_return_in_memory() prototype.
10763 * arm.c (arm_return_in_memory): Add static prototype, add target
10764 hook macro, change definition and comments.
10765 * arm.h (TARGET_RETURN_IN_MEMORY): Remove.
10767 2008-06-19 Ben Elliston <bje@au.ibm.com>
10769 * dfp.h, dfp.c, config/dfp-bit.h, config/dfp-bit.c, real.h,
10770 real.c: Remove references to IEEE 754R.
10771 * doc/install.texi (Configuration): IEEE 754R -> IEEE 754-2008.
10772 * doc/libgcc.texi (Decimal float library routines): Likewise.
10774 2008-06-18 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
10776 * targhooks.h (struct gcc_target): New member unwind_word_mode.
10777 (default_unwind_word_mode): Add prototype.
10778 * targhooks.c (default_unwind_word_mode): New function.
10779 (default_eh_return_filter_mode): Return targetm.unwind_word_mode ()
10780 instead of word_mode.
10781 * target-def.h (TARGET_UNWIND_WORD_MODE): New macro.
10782 (TARGET_INITIALIZER): Use it.
10784 * c-common.c (handle_mode_attribute): Support "unwind_word"
10786 * unwind-generic.h (_Unwind_Word, _Unwind_Sword): Use it.
10788 * except.c (init_eh): Use targetm.unwind_word_mode () instead of
10789 word_mode to access SjLj_Function_Context member "data".
10790 (sjlj_emit_dispatch_table): Likewise. Also, perform type
10791 conversion from targetm.eh_return_filter_mode () to
10792 targetm.unwind_word_mode () if they differ.
10794 * builtin-types.def (BT_UNWINDWORD): New primitive type.
10795 (BT_FN_UNWINDWORD_PTR): New function type.
10796 (BT_FN_WORD_PTR): Remove.
10797 * builtins.def (BUILT_IN_EXTEND_POINTER): Use BT_FN_UNWINDWORD_PTR.
10798 * except.c (expand_builtin_extend_pointer): Convert pointer to
10799 targetm.unwind_word_mode () instead of word_mode.
10801 * config/spu/spu-protos.h (spu_eh_return_filter_mode): Remove.
10802 * config/spu/spu.c (spu_eh_return_filter_mode): Remove.
10803 (spu_unwind_word_mode): New function.
10804 (TARGET_EH_RETURN_FILTER_MODE): Do not define.
10805 (TARGET_UNWIND_WORD_MODE): Define.
10806 * config/spu/t-spu-elf (TARGET_LIBGCC2_CFLAGS): Remove -D__word__=SI.
10808 2008-06-18 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
10810 * config/spu/spu.c (reg_align): Remove.
10811 (regno_aligned_for_load): Also accept ARG_POINTER_REGNUM.
10812 (spu_split_load): Use regno_aligned_for_load instead of reg_align.
10813 (spu_split_store): Likewise.
10815 2008-06-18 Bernhard Fischer <aldot@gcc.gnu.org>
10817 * gcc/tree-vn.c: Fix typo in comment.
10819 2008-06-18 Jan Hubicka <jh@suse.cz>
10821 * cgraphunit.c (cgraph_optimize): Output debug info when doing
10822 toplevel reorder too.
10824 2008-06-18 Jan Hubicka <jh@suse.cz>
10826 * c-opts.c (c_common_post_options): PCH is not compatible with
10828 * opts.c (handle_options): Enable unit-at-a-time at O0 along with
10829 -fno-toplevel-reorder by default now.
10831 2008-06-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
10833 PR documentation/30739
10834 * doc/install.texi (Prerequisites): Document dependency on awk.
10836 2008-06-18 Uros Bizjak <ubizjak@gmail.com>
10837 Ian Lance Taylor <iant@google.com>
10839 PR rtl-optimization/35604
10840 * jump.c (redirect_exp_1): Skip the condition of an IF_THEN_ELSE. We
10841 only want to change jump destinations, not eventual label comparisons.
10843 2008-06-16 Jan Hubicka <jh@suse.cz>
10845 * cgraphunit.c (cgraph_expand_pending_functions): Give up at
10847 (cgraph_analyze_function): Likewise.
10849 2008-06-16 Jan Hubicka <jh@suse.cz>
10851 * cgraph.h (cgraph_mark_if_needed): New function.
10852 * cgraphunit.c (cgraph_mark_if_needed): New function.
10853 * c-decl.c (duplicate_decl): Use it.
10855 2008-06-16 Jan Hubicka <jh@suse.cz>
10857 * cgraph.c (cgraph_add_new_function): When in expansion state, do
10860 2008-06-16 Jan Hubicka <jh@suse.cz>
10862 * tree-outof-ssa.c (pass_out_of_ssa): Do not depend on PROP_alias.
10864 2008-06-16 Daniel Jacobowitz <dan@codesourcery.com>
10865 Kazu Hirata <kazu@codesourcery.com>
10866 Maxim Kuvyrkov <maxim@codesourcery.com
10868 * config.gcc (mips64el-st-linux-gnu): Use mips/st.h and mips/t-st.
10869 * config.host: Use driver-native.o and mips/x-native for mips*-linux*.
10870 * config/mips/linux.h (host_detect_local_cpu): Declare, add to
10871 EXTRA_SPEC_FUNCTIONS.
10872 (MARCH_MTUNE_NATIVE_SPECS, BASE_DRIVER_SELF_SPECS): New macros.
10873 (DRIVER_SELF_SPECS): Adjust.
10874 * config/mips/linux64.h (DRIVER_SELF_SPECS): Update.
10875 * config/mips/st.h, config/mips/t-st: New.
10876 * config/mips/driver-native.c, config/mips/x-native: New.
10877 * doc/invoke.texi (MIPS): Document 'native' value for -march and
10880 2008-06-18 Maxim Kuvyrkov <maxim@codesourcery.com>
10882 * config/mips/mips.h (ISA_HAS_CONDMOVE): Slice ISA_HAS_FP_CONDMOVE
10884 (ISA_HAS_FP_CONDMOVE): New macro.
10885 (ISA_HAS_FP_MADD4_MSUB4, ISA_HAS_FP_MADD3_MSUB3): New macros.
10886 (ISA_HAS_NMADD_NMSUB): Rename to ISA_HAS_NMADD4_NMSUB4.
10887 (ISA_HAS_NMADD3_NMSUB3): New macro.
10888 * config/mips/mips.c (mips_rtx_costs): Update.
10889 * config/mips/mips.md (MOVECC): Don't use FP conditional moves when
10890 compiling for ST Loongson 2E/2F.
10891 (madd<mode>): Rename to madd4<mode>. Update.
10892 (madd3<mode>): New pattern.
10893 (msub<mode>): Rename to msub4<mode>. Update.
10894 (msub3<mode>): New pattern.
10895 (nmadd<mode>): Rename to nmadd4<mode>. Update.
10896 (nmadd3<mode>): New pattern.
10897 (nmadd<mode>_fastmath): Rename to nmadd4<mode>_fastmath. Update.
10898 (nmadd3<mode>_fastmath): New pattern.
10899 (nmsub<mode>): Rename to nmsub4<mode>. Update.
10900 (nmsub3<mode>): New pattern.
10901 (nmsub<mode>_fastmath): Rename to nmsub4<mode>_fastmath. Update.
10902 (nmsub3<mode>_fastmath): New pattern.
10903 (mov<SCALARF:mode>_on_<MOVECC:mode>, mov<mode>cc): Update.
10905 2008-06-18 Steven Bosscher <steven@gcc.gnu.org>
10907 * df.h (struct df_ref): Replace 'insn' field with 'insn_info' field.
10908 (DF_REF_INSN_INFO): New.
10909 (DF_REF_INSN, DF_REF_INSN_UID): Rewrite macros using DF_REF_INSN_INFO.
10910 (DF_REF_IS_ARTIFICIAL): Artificial refs are now identified as refs
10911 with a NULL DF_REF_INSN_INFO.
10912 (DF_INSN_INFO_GET, DF_INSN_INFO_SET): Renamed from DF_INSN_GET and
10914 (DF_INSN_INFO_LUID, DF_INSN_INFO_DEFS, DF_INSN_INFO_USES,
10915 DF_INSN_INFO_EQ_USES): New.
10916 (DF_INSN_LUID, DF_INSN_DEFS, DF_INSN_USES, DF_INSN_EQ_USES,
10917 DF_INSN_UID_LUID, DF_INSN_UID_DEFS, DF_INSN_UID_USES,
10918 DF_INSN_UID_EQ_USES): Rewrite using DF_INSN_INFO_* macros.
10919 * df-core.c: Update comment for above changes.
10920 (df_insn_debug_regno): Use DF_INSN_INFO_GET instead of INSN_UID and
10921 DF_INSN_UID_* macros.
10922 (df_ref_debug): Check for NULL DF_REF_INSN_INFO.
10923 * df-scan.c (df_ref_record): Take a df_insn_info instead of an
10924 insn rtx. Update all callers.
10925 (df_def_record_1, df_defs_record, df_uses_record, df_get_call_refs,
10926 df_ref_create_structure, df_insn_refs_collect): Likewise.
10927 (df_ref_equal_p): Compare DF_REF_INSN_INFO pointers for the refs.
10928 * df-problems.c (df_chain_dump): Test for non-NULL DF_REF_INSN_INFO.
10929 (df_live_bb_local_compute): Retrieve DF_INSN_INFO, use DF_INSN_INFO_*
10930 macros to access the insn refs.
10931 (df_chain_top_dump, df_chain_bottom_dump, df_byte_lr_alloc): Likewise.
10932 * fwprop.c (use_killed_between): Use DF_REF_INSN accessor macro.
10933 (all_uses_available): Retrieve DF_INSN_INFO for def_insn, and use it
10934 for accessing the refs.
10935 (try_fwprop_subst): Likewise.
10936 * ddg.c (add_cross_iteration_register_deps): Use DF_REF_INSN macro.
10937 * web.c (union_defs): Retrieve DF_INSN_INFO for def_insn, and use it
10938 for accessing the refs.
10939 * loop-invariant.c (invariant_for_use): Use DF_REF_BB macro.
10940 (check_dependencies): Use DF_INSN_INFO_GET, use DF_INSN_INFO_* macros
10941 to look at the insn refs.
10942 (record_uses): Likewise.
10943 * dce.c (deletable_insn_p): Don't tolerate artificial DEFs in this
10945 (mark_artificial_uses): Don't mark_insn for artificial refs.
10946 (mark_reg_rependencies): Likewise.
10948 * doc/rtl.texi: Remove documentation of ADDRESSOF.
10950 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
10952 * configure: Regenerate.
10954 2008-06-17 Eric B. Weddington <eric.weddington@atmel.com>
10956 * config/avr/avr.c (avr_mcu_t): Remove atmega32hvb.
10957 * config/avr/avr.h (LINK_SPEC, CRT_BINUTILS_SPECS): Likewise.
10958 * config/avr/t-avr (MULTILIB_MATCHES): Likewise.
10960 2008-06-17 Eric B. Weddington <eric.weddington@atmel.com>
10962 * config/avr/avr.c (avr_mcu_t): Add attiny167.
10963 * config/avr/avr.h (LINK_SPEC, CRT_BINUTILS_SPECS): Likewise.
10964 * gcc/config/avr/t-avr (MULTILIB_MATCHES): Likewise.
10966 2008-06-17 Eric B. Weddington <eric.weddington@atmel.com>
10968 * config/avr/avr.c (avr_mcu_t): Add atmega32u4.
10969 * config/avr/avr.h (LINK_SPEC, CRT_BINUTILS_SPECS): Likewise.
10970 * config/avr/t-avr (MULTILIB_MATCHES): Likewise.
10972 2008-06-17 Bernhard Fischer <aldot@gcc.gnu.org>
10974 * tree-ssa-sccvn.c: Fix format of comments.
10976 2008-06-17 Bernhard Fischer <aldot@gcc.gnu.org>
10978 * cgraph.c: Remove unneeded forward declarations of eq_node()
10981 2008-06-17 Steven Bosscher <steven@gcc.gnu.org>
10983 * see.c (see_analyse_one_def): Do not look for REG_LIBCALL and
10985 (see_update_relevancy): Likewise.
10986 * fwprop.c (try_fwprop_subst): Likewise.
10987 * rtlanal.c (noop_move_p): Likewise.
10988 * builtins.c (expand_buitlin_mathfn): Don't try to add REG_EQUAL
10989 notes to non-existing libcall blocks.
10990 * cse.c (cse_insn): Change prototype. Don't update libcall notes.
10992 (cse_extended_basic_block): Don't track libcall and no-conflict notes.
10993 (dead_libcall_p): Remove.
10994 (delete_trivially_dead_insns): Don't use it.
10995 * web.c (union_defs): Remove comment about keeping nops.
10996 * gcse.c (hash_scan_insn): Don't take libcall pointers.
10997 (compute_hash_table_work): Don't track libcall notes.
10998 (do_local_cprop): Don't take libcall pointers. Don't update
11000 (adjust_libcall_notes): Deleted.
11001 (local_cprop_pass): Remove stack for nested libcalls (which shouldn't
11002 ever have existed in the first place).
11003 (replace_store_insn): Don't try to remove libcall notes.
11004 * lower-subreg.c (move_libcall_note, move_retval_note): Deleted.
11005 (resolve_reg_notes): Don't call them.
11006 (resolve_simple_move): Likewise.
11007 (decompose_multiword_subregs): Remove block handling REG_RETVAL notes.
11008 Don't remove REG_RETVAL notes.
11009 * emit-rtl.c (try_split): Don't update libcall notes.
11010 (emit_copy_of_insn_after): Dito.
11011 * cselib.c (cselib_current_insn_in_libcall): Remove.
11012 (cselib_process_insn): Don't set/clear it.
11013 (new_elt_loc_list): Don't record it.
11014 (cselib_init): Don't initialize it.
11015 * cselib.c (struct elt_loc_list): Remove in_libcall field.
11016 * loop-invariant.c (find_invariant_insn): Don't look for libcall
11018 * sched-deps.c (sched_analyze_insn): Don't group libcall blocks.
11019 (sched_analyze): Don't set up deps->libcall_block_tail_insn.
11020 (init_deps): Don't initialize it.
11021 * sched-int.h (struct deps): Rremove libcall_block_tail_insn field.
11022 * combine.c (delete_noop_moves): Don't update libcall notes.
11023 (can_combine_p): Remove now pointless #if 0 block.
11024 (try_combine): Remove another obsolete #if 0 block.
11025 (distribute_notes): Don't distribute libcall notes.
11026 * reg-notes.def (REG_LIBCALL, REG_RETVAL): Remove.
11027 * dce.c (libcall_dead_p): Remove.
11028 (delete_unmarked_insns): Don't handle libcall blocks.
11029 (preserve_libcall_for_dce): Remove.
11030 (prescan_insns_for_dce): Don't special-case libcall block insns.
11031 * reload1 (reload): Don't handle libcall notes.
11032 * doc/rtl.texi (REG_LIBCALL, REG_RETVAL, REG_LIBCALL_ID): Remove
11035 2008-06-16 Eric B. Weddington <eric.weddington@atmel.com>
11037 * config/avr/avr.c (avr_mcu_t): Add atmega32c1.
11038 * config/avr/avr.h (LINK_SPEC, CRT_BINUTILS_SPECS): Likewise.
11039 * config/avr/t-avr (MULTILIB_MATCHES): Likewise.
11041 2008-06-16 Eric B. Weddington <eric.weddington@atmel.com>
11043 * config/avr/avr.c (avr_mcu_t): Add atmega32m1.
11044 * config/avr/avr.h (LINK_SPEC, CRT_BINUTILS_SPECS): Likewise.
11045 * config/avr/t-avr (MULTILIB_MATCHES): Likewise.
11047 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
11049 * Makefile.in (FLAGS_TO_PASS): Add $(datarootdir).
11051 2008-06-16 Ira Rosen <irar@il.ibm.com>
11053 PR tree-optimization/36493
11054 * tree-vect-transform.c (vect_create_data_ref_ptr): Remove TYPE from
11055 the arguments list. Use VECTYPE to create vector pointer.
11056 (vectorizable_store): Fail if accesses through a pointer to vectype
11057 do not alias the original memory reference operands.
11058 Call vect_create_data_ref_ptr without the removed argument.
11059 (vectorizable_load): Likewise.
11060 (vect_setup_realignment): Call vect_create_data_ref_ptr without the
11063 2008-06-015 Andy Hutchinson <hutchinsonandy@aim.com>
11066 * config/avr/avr.h (LEGITIMIZE_RELOAD_ADDRESS): Add check for
11067 reg_equiv_constant.
11069 2008-06-15 Maxim Kuvyrkov <maxim@codesourcery.com>
11071 * config/mips/loongson2ef.md: New file.
11072 * config/mips/mips.md (UNSPEC_LOONGSON_ALU1_TURN_ENABLED_INSN)
11073 (UNSPEC_LOONGSON_ALU2_TURN_ENABLED_INSN)
11074 (UNSPEC_LOONGSON_FALU1_TURN_ENABLED_INSN)
11075 (UNSPEC_LOONGSON_FALU2_TURN_ENABLED_INSN): New constants.
11076 (define_attr "cpu"): Rename loongson2e and loongson2f to loongson_2e
11078 (loongson2ef.md): New include.
11079 * config/mips/loongson.md (vec_pack_ssat_<mode>, vec_pack_usat_<mode>)
11080 (add<mode>3, paddd, ssadd<mode>3, usadd<mode>3)
11081 (loongson_and_not_<mode>, loongson_average_<mode>, loongson_eq_<mode>)
11082 (loongson_gt_<mode>, loongson_extract_halfword)
11083 (loongson_insert_halfword_0, loongson_insert_halfword_2)
11084 (loongson_insert_halfword_3, loongson_mult_add, smax<mode>3)
11085 (umax<mode>3, smin<mode>3, umin<mode>3, loongson_move_byte_mask)
11086 (umul<mode>3_highpart, smul<mode>3_highpart, loongson_smul_lowpart)
11087 (loongson_umul_word, loongson_pasubub, reduc_uplus_<mode>)
11088 (loongson_psadbh, loongson_pshufh, loongson_psll<mode>)
11089 (loongson_psra<mode>, loongson_psrl<mode>, sub<mode>3, psubd)
11090 (sssub<mode>3, ussub<mode>3, vec_interleave_high<mode>)
11091 (vec_interleave_low<mode>): Define type attribute.
11092 * config/mips/mips.c (mips_ls2): New static variable.
11093 (mips_issue_rate): Update to handle tuning for Loongson 2E/2F.
11094 (mips_ls2_init_dfa_post_cycle_insn, mips_init_dfa_post_cycle_insn)
11095 (sched_ls2_dfa_post_advance_cycle, mips_dfa_post_advance_cycle):
11096 Implement target scheduling hooks.
11097 (mips_multipass_dfa_lookahead): Update to handle tuning for
11099 (mips_sched_init): Initialize data for Loongson scheduling.
11100 (mips_ls2_variable_issue): New static function.
11101 (mips_variable_issue): Update to handle tuning for Loongson 2E/2F.
11103 (TARGET_SCHED_INIT_DFA_POST_CYCLE_INSN)
11104 (TARGET_SCHED_DFA_POST_ADVANCE_CYCLE): Override target hooks.
11105 * config/mips/mips.h (TUNE_LOONGSON_2EF): New macros.
11106 (ISA_HAS_XFER_DELAY, ISA_HAS_FCMP_DELAY, ISA_HAS_HILO_INTERLOCKS):
11107 Handle ST Loongson 2E/2F cores.
11108 (CPU_UNITS_QUERY): Define macro to enable querying of DFA units.
11110 2008-06-15 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
11112 * omp-low.c (extract_omp_for_data): Fix comment typo.
11115 2008-06-15 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
11117 * doc/sourcebuild.texi (Config Fragments): Remove obsolete
11118 FIXME note about gcc/config.guess.
11119 * doc/options.texi (Option file format): Remove non-ASCII bytes.
11120 * doc/cpp.texi: Expand TABs, drop indentation outside examples.
11121 * doc/cppopts.texi: Likewise.
11122 * doc/extend.texi: Likewise.
11123 * doc/gcc.texi: Likewise.
11124 * doc/gccint.texi: Likewise.
11125 * doc/gcov.texi: Likewise.
11126 * doc/gty.texi: Likewise.
11127 * doc/hostconfig.texi: Likewise.
11128 * doc/install.texi: Likewise.
11129 * doc/invoke.texi: Likewise.
11130 * doc/loop.texi: Likewise.
11131 * doc/makefile.texi: Likewise.
11132 * doc/md.texi: Likewise.
11133 * doc/passes.texi: Likewise.
11134 * doc/tm.texi: Likewise.
11135 * doc/tree-ssa.texi: Likewise.
11136 * doc/trouble.texi: Likewise.
11138 2008-06-15 Mark Shinwell <shinwell@codesourcery.com>
11139 Nathan Sidwell <nathan@codesourcery.com>
11140 Maxim Kuvyrkov <maxim@codesourcery.com>
11141 Richard Sandiford <rdsandiford@googlemail.com>
11143 * config/mips/mips-modes.def: Add V8QI, V4HI and V2SI modes.
11144 * config/mips/mips-protos.h (mips_expand_vector_init): New.
11145 * config/mips/mips-ftypes.def: Add function types for Loongson-2E/2F
11147 * config/mips/mips.c (mips_split_doubleword_move): Handle new modes.
11148 (mips_hard_regno_mode_ok_p): Allow 64-bit vector modes for Loongson.
11149 (mips_vector_mode_supported_p): Add V2SImode, V4HImode and
11151 (LOONGSON_BUILTIN, LOONGSON_BUILTIN_ALIAS): New.
11152 (CODE_FOR_loongson_packsswh, CODE_FOR_loongson_packsshb,
11153 (CODE_FOR_loongson_packushb, CODE_FOR_loongson_paddw,
11154 (CODE_FOR_loongson_paddh, CODE_FOR_loongson_paddb,
11155 (CODE_FOR_loongson_paddsh, CODE_FOR_loongson_paddsb)
11156 (CODE_FOR_loongson_paddush, CODE_FOR_loongson_paddusb)
11157 (CODE_FOR_loongson_pmaxsh, CODE_FOR_loongson_pmaxub)
11158 (CODE_FOR_loongson_pminsh, CODE_FOR_loongson_pminub)
11159 (CODE_FOR_loongson_pmulhuh, CODE_FOR_loongson_pmulhh)
11160 (CODE_FOR_loongson_biadd, CODE_FOR_loongson_psubw)
11161 (CODE_FOR_loongson_psubh, CODE_FOR_loongson_psubb)
11162 (CODE_FOR_loongson_psubsh, CODE_FOR_loongson_psubsb)
11163 (CODE_FOR_loongson_psubush, CODE_FOR_loongson_psubusb)
11164 (CODE_FOR_loongson_punpckhbh, CODE_FOR_loongson_punpckhhw)
11165 (CODE_FOR_loongson_punpckhwd, CODE_FOR_loongson_punpcklbh)
11166 (CODE_FOR_loongson_punpcklhw, CODE_FOR_loongson_punpcklwd): New.
11167 (mips_builtins): Add Loongson builtins.
11168 (mips_loongson_2ef_bdesc): New.
11169 (mips_bdesc_arrays): Add mips_loongson_2ef_bdesc.
11170 (mips_builtin_vector_type): Handle unsigned versions of vector modes.
11171 (MIPS_ATYPE_UQI, MIPS_ATYPE_UDI, MIPS_ATYPE_V2SI, MIPS_ATYPE_UV2SI)
11172 (MIPS_ATYPE_V4HI, MIPS_ATYPE_UV4HI, MIPS_ATYPE_V8QI, MIPS_ATYPE_UV8QI):
11174 (mips_expand_vector_init): New.
11175 * config/mips/mips.h (HAVE_LOONGSON_VECTOR_MODES): New.
11176 (TARGET_CPU_CPP_BUILTINS): Define __mips_loongson_vector_rev
11178 * config/mips/mips.md: Add unspec numbers for Loongson
11179 builtins. Include loongson.md.
11180 (MOVE64): Include Loongson vector modes.
11181 (SPLITF): Include Loongson vector modes.
11182 (HALFMODE): Handle Loongson vector modes.
11183 * config/mips/loongson.md: New.
11184 * config/mips/loongson.h: New.
11185 * config.gcc: Add loongson.h header for mips*-*-* targets.
11186 * doc/extend.texi (MIPS Loongson Built-in Functions): New.
11188 2008-06-14 Joseph Myers <joseph@codesourcery.com>
11190 * config.gcc (arc-*-elf*, avr-*-*, fr30-*-elf, frv-*-elf,
11191 h8300-*-elf*, h8300-*-*, i[34567]86-*-elf*, x86_64-*-elf*,
11192 i[34567]86-*-aout*, i[34567]86-*-coff*, ia64*-*-elf*,
11193 iq2000*-*-elf*, m32r-*-elf*, m32rle-*-elf*, m32r-*-linux*,
11194 m32rle-*-linux*, m68hc11-*-*|m6811-*-*, m68hc12-*-*|m6812-*-*,
11195 m68k-*-coff*, mcore-*-elf, mcore-*-pe*, mipsisa64sr71k-*-elf*,
11196 mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*, mips-*-elf* |
11197 mipsel-*-elf*, mips64-*-elf* | mips64el-*-elf*, mips64vr-*-elf* |
11198 mips64vrel-*-elf*, mips64orion-*-elf* | mips64orionel-*-elf*,
11199 mipstx39-*-elf* | mipstx39el-*-elf*, mn10300-*-*, pdp11-*-,
11200 powerpc-*-elf*, powerpcle-*-elf*, sh-*-elf* | sh[12346l]*-*-elf* |
11201 sh-*-symbianelf* | sh[12346l]*-*-symbianelf* | sh-*-linux* |
11202 sh[2346lbe]*-*-linux* | sh-*-netbsdelf* | shl*-*-netbsdelf* |
11203 sh5-*-netbsd* | sh5l*-*-netbsd* | sh64-*-netbsd* |
11204 sh64l*-*-netbsd*, sh-*-*, sparc-*-elf*, sparc64-*-elf*,
11205 v850e1-*-*, v850e-*-*, v850-*-*, xstormy16-*-elf, m32c-*-elf*):
11206 Remove use_fixproto=yes.
11207 (ia64*-*-hpux*): Remove comment about using fixproto.
11208 (m68k-*-uclinuxoldabi*, m68k-*-uclinux*): Remove use_fixproto=no.
11210 2008-06-14 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
11212 * configure.ac: Update gthr-default.h lazily, to avoid unneeded
11214 * configure: Regenerate.
11216 2008-06-13 Eric Botcazou <ebotcazou@adacore.com>
11218 PR middle-end/36520
11219 * builtins.c (get_memory_rtx): Test for the presence of DECL_SIZE_UNIT
11220 before evaluating it.
11222 2008-06-13 Jakub Jelinek <jakub@redhat.com>
11225 * c-decl.c (merge_decls): Don't clear DECL_EXTERNAL for
11226 nested inline functions.
11227 (start_decl, start_function): Don't invert DECL_EXTERNAL
11228 for nested inline functions.
11230 2008-06-13 Richard Sandiford <rdsandiford@googlemail.com>
11232 * config/mips/mips.md: Remove TARGET_DEBUG_D_MODE conditions from
11233 splits that must be made for correctness.
11235 2008-06-13 Richard Sandiford <rdsandiford@googlemail.com>
11237 * config/mips/mips.c (BUILTIN_AVAIL_NON_MIPS16): New macro.
11238 (AVAIL_NON_MIPS16): Likewise.
11239 (mips_builtin_description): Replace target_flags with a predicate.
11240 (paired_single, sb1_paired_single, mips3d, dsp, dspr2, dsp_32)
11241 (dspr2_32): New availability predicates.
11242 (MIPS_BUILTIN): New macro.
11243 (DIRECT_BUILTIN, CMP_SCALAR_BUILTINS, CMP_PS_BUILTINS)
11244 (CMP_4S_BUILTINS, MOVTF_BUILTINS, CMP_BUILTINS)
11245 (DIRECT_NO_TARGET_BUILTIN, BPOSGE_BUILTIN): Use it.
11246 Replace the TARGET_FLAGS parameters with AVAIL parameters.
11247 (mips_ps_bdesc, mips_sb1_bdesc, mips_dsp_bdesc)
11248 (mips_dsp_32only_bdesc): Merge into...
11249 (mips_builtins): ...this new array.
11250 (mips_bdesc_map, mips_bdesc_arrays): Delete.
11251 (mips_init_builtins): Update after above changes.
11252 (mips_expand_builtin_1): Merge into...
11253 (mips_expand_builtin): ...here and update after above changes.
11255 2008-06-12 Paul Brook <paul@codesourcery.com>
11257 * longlong.h (__arm__): Define count_leading_zeros.
11258 * config/arm/lib1funcs.asm (xxh, xxl, yyh, yyl): Define.
11259 (clzsi2, clzdi2): New functions.
11260 * config/arm/bpabi-v6m.S (xxh, xxl, yyh, yyl): Remove.
11261 * config/arm/bpabi.S (xxh, xxl, yyh, yyl): Remove.
11262 * config/arm/t-strongarm-elf (LIB1ASMFUNCS): Ditto.
11263 * config/arm/t-vxworks (LIB1ASMFUNCS): Ditto.
11264 * config/arm/t-pe (LIB1ASMFUNCS): Ditto.
11265 * config/arm/t-arm-elf (LIB1ASMFUNCS): Ditto.
11266 * config/arm/t-arm-coff (LIB1ASMFUNCS): Ditto.
11267 * config/arm/t-linux (LIB1ASMFUNCS): Ditto.
11268 * config/arm/t-symbian (LIB1ASMFUNCS): Ditto.
11269 * config/arm/t-wince-pe (LIB1ASMFUNCS): Ditto.
11271 2008-06-12 Kazu Hirata <kazu@codesourcery.com>
11273 * config/m68k/m68k.c (m68k_tune_flags): New.
11274 (override_options): Compute m68k_tune_flags.
11275 (MULL_COST, MULW_COST): Update for various variants of CFV2.
11276 * config/m68k/m68k.h (TUNE_MAC, TUNE_EMAC): New.
11278 2008-06-12 Jakub Jelinek <jakub@redhat.com>
11280 PR middle-end/36506
11281 * omp-low.c (expand_omp_sections): Initialize l2 to avoid bogus warning.
11283 2008-06-12 Eric Botcazou <ebotcazou@adacore.com>
11285 * tree-inline.c (copy_body_r): Copy TREE_SIDE_EFFECTS along with
11286 TREE_THIS_VOLATILE on INDIRECT_REF nodes.
11288 2008-06-12 Eric Botcazou <ebotcazou@adacore.com>
11290 * expr.c (store_field): Do a block copy from BLKmode to BLKmode-like.
11291 (get_inner_reference): Use BLKmode for byte-aligned BLKmode bitfields.
11293 2008-06-12 Jakub Jelinek <jakub@redhat.com>
11295 PR middle-end/36506
11296 * omp-low.c (expand_omp_sections): Handle #pragma omp sections with
11299 2008-06-12 Richard Guenther <rguenther@suse.de>
11301 PR tree-optimization/36345
11302 * tree-flow.h (struct ptr_info_def): Align escape_mask,
11303 add memory_tag_needed flag.
11304 (may_alias_p): Declare.
11305 * tree-ssa-alias.c (may_alias_p): Export.
11306 (set_initial_properties): Use memory_tag_needed flag.
11307 (update_reference_counts): Likewise.
11308 (reset_alias_info): Reset memory_tag_needed flag.
11309 (create_name_tags): Check memory_tag_needed flag.
11310 (dump_points_to_info_for): Dump it.
11311 * tree-ssa-structalias.c (struct variable_info): Remove
11312 directly_dereferenced flag.
11313 (new_var_info): Do not initialize it.
11314 (process_constraint_1): Do not set it.
11315 (update_alias_info): Set is_dereferenced flag.
11316 (set_uids_in_ptset): Use may_alias_p.
11317 (set_used_smts): Check memory_tag_needed flag.
11318 (find_what_p_points_to): Likewise. Pass is_dereferenced flag.
11319 * tree-ssa-alias.c (verify_flow_sensitive_alias_info): Check
11320 memory_tag_needed flag.
11321 * tree-ssa-alias-warnings.c (dsa_named_for): Try to recover
11322 from broken design.
11324 2008-06-12 Kai Tietz <kai.tietz@onevision.com>
11326 * config/i386/i386.c (ix86_compute_frame_layout): Disable
11327 red zone for w64 abi.
11328 (ix86_expand_prologue): Likewise.
11329 (ix86_force_to_memory): Likewise.
11330 (ix86_free_from_memory): Likewise.
11332 2008-06-11 Edmar Wienskoski <edmar@freescale.com>
11335 * config/rs6000/rs6000.c (rs6000_override_options): Set
11336 rs6000_isel conditionally to the absence of comand line override.
11337 * config/rs6000/linuxspe.h (SUBSUBTARGET_OVERRIDE_OPTIONS):
11338 Remove duplicate rs6000_isel setting.
11339 * config/rs6000/eabispe.h: Ditto.
11341 2008-06-11 Richard Guenther <rguenther@suse.de>
11343 * alias.c (get_alias_set): Use the element alias-set for arrays.
11344 (record_component_aliases): For arrays and vectors do nothing.
11345 * c-common.c (strict_aliasing_warning): Handle the cases
11346 of alias set zero explicitly.
11347 * Makefile.in (dfp.o-warn): Add -Wno-error.
11349 2008-06-11 Joseph Myers <joseph@codesourcery.com>
11351 * config.gcc (all_defaults): Add arch_32 arch_64 cpu_32 cpu_64
11353 (i[34567]86-*-* | x86_64-*-*): Add arch_32 arch_64 cpu_32 cpu_64
11354 tune_32 tune_64 to supported_defaults. Allow values not
11355 supporting 64-bit mode for arch_32, cpu_32 and tune_32 for
11356 x86_64. Do not override cpu_32 or cpu_64 values from target name.
11357 (i[34567]86-*-linux*, i[34567]86-*-solaris2.1[0-9]*): Only default
11358 with_cpu_64 to generic for 64-bit-supporting configurations, not
11359 with_cpu. Remove FIXMEs.
11360 * doc/install.texi (--with-cpu-32, --with-cpu-64, --with-arch-32,
11361 --with-arch-64, --with-tune-32, --with-tune-64): Document.
11362 * config/i386/i386.h (OPT_ARCH32, OPT_ARCH64): Define.
11363 (OPTION_DEFAULT_SPECS): Add tune_32, tune_64, cpu_32, cpu_64,
11364 arch_32 and arch_64.
11366 2008-06-11 Eric Botcazou <ebotcazou@adacore.com>
11367 Olivier Hainque <hainque@adacore.com>
11369 * builtins.c (get_memory_rtx): Accept byte-addressable bitfields.
11370 Use DECL_SIZE_UNIT to retrieve the size of the field.
11372 2008-06-11 Joseph Myers <joseph@codesourcery.com>
11374 * config/arm/arm.c (arm_init_neon_builtins): Move initialization
11375 with function calls after declarations. Lay out
11376 neon_float_type_node before further use.
11378 2008-06-11 Richard Guenther <rguenther@suse.de>
11380 * tree-flow.h (may_point_to_global_var): Declare.
11381 * tree-ssa-alias.c (may_point_to_global_var): New function.
11382 * tree-ssa-sink.c (is_hidden_global_store): Use it.
11384 2008-06-10 Kazu Hirata <kazu@codesourcery.com>
11386 * configure.ac: Teach that fido supports .debug_line.
11387 * configure: Regenerate.
11389 2008-06-10 Tom Tromey <tromey@redhat.com>
11391 * c-lex.c (fe_file_change): Pass SOURCE_LINE to start_source_file
11394 2008-06-10 Joseph Myers <joseph@codesourcery.com>
11396 * dfp.c (WORDS_BIGENDIAN): Define to 0 if not defined.
11397 (encode_decimal64, decode_decimal64, encode_decimal128,
11398 decode_decimal128): Reverse order of 32-bit parts of value if host
11399 and target endianness differ.
11401 2008-06-10 Vinodha Ramasamy <vinodha@google.com>
11403 * value_prob.c (tree_divmod_fixed_value_transform): Use gcov_type.
11404 Avoid division by 0.
11405 (tree_mod_pow2_value_transform): Likewise.
11406 (tree_ic_transform): Likewise.
11407 (tree_stringops_transform): Likewise.
11408 (tree_mod_subtract_transform): Likewise.
11409 * tree-inline-c (copy_bb): Corrected int type to gcov_type.
11410 (copy_edges_for_bb): Likewise.
11411 (initialize_cfun): Likewise.
11413 2008-06-10 Uros Bizjak <ubizjak@gmail.com>
11415 * config/i386/i386.md (*btdi_rex64): Change operand 1 predicate to
11416 nonmemory_operand. Add "N" operand constraint.
11418 (*jcc_btdi_mask_rex64): New instruction and split pattern.
11419 (*jcc_btsi_mask): Ditto.
11420 (*jcc_btsi_mask_1): Ditto.
11422 2008-06-10 Joseph Myers <joseph@codesourcery.com>
11424 * config/rs6000/rs6000.c (build_opaque_vector_type): Set
11425 TYPE_CANONICAL for copied element type.
11427 2008-06-10 Uros Bizjak <ubizjak@gmail.com>
11430 * config/i386/i386.c (ix86_tune_features) [TUNE_USE_BT]:
11431 Add m_CORE2 and m_GENERIC.
11432 * config/i386/predicates.md (bt_comparison_operator): New predicate.
11433 * config/i386/i386.md (*btdi_rex64): New instruction pattern.
11435 (*jcc_btdi_rex64): New instruction and split pattern.
11436 (*jcc_btsi): Ditto.
11437 (*jcc_btsi_1): Ditto.
11438 (*btsq): Fix Intel asm dialect operand order.
11442 2008-06-09 Andy Hutchinson <hutchinsonandy@aim.com>
11444 PR middle-end/36447
11445 * simplify-rtx.c (simplify_subreg): Add check for shift count
11448 2008-06-09 Richard Sandiford <rdsandiford@googlemail.com>
11450 * doc/md.texi: Synchronize with later constraints.md change.
11451 * longlong.h (umul_ppmm): Replace the MIPS asm implementation
11452 with a C implementation.
11453 * config/mips/mips.c (mips_legitimize_move): Remove MFHI and
11455 (mips_subword): Assume TImode for CONST_INTs if TARGET_64BIT.
11456 (mips_split_doubleword_move): Use special MTHI and MFHI instructions
11457 when moving to and from MD_REGNUM.
11458 (mips_output_move): Don't handle moves from GPRs to HI_REGNUM.
11459 Handle moves from LO_REGNUM to GPRs using MFLO, MACC or DMACC.
11460 Handle byte and halfword moves.
11461 (mips_hard_regno_mode_ok_p): Handle MD_REGS and DSP_ACC_REGS
11463 * config/mips/constraints.md (h): Turn into NO_REGS.
11464 (l, x): Update documentation.
11465 * config/mips/mips.md (UNSPEC_MFHILO): Delete.
11466 (UNSPEC_MFHI, UNSPEC_MTHI, UNSPEC_SET_HILO): New.
11467 (UNSPEC_TLS_LDM, UNSPEC_TLS_GET_TP): Renumber.
11468 (HILO): New mode iterator.
11470 (any_div): New code iterator.
11471 (u): Extend code attribute to div and udiv.
11472 (*add<mode>3_mips16, *movdi_64bit_mips16, *movsi_mips16): Use
11473 d_operand in the splitters. Remove redundant CONST_INT checks.
11474 (mulsi3_mult3, mul<mode>3_internal, mul<mode>3_r4000, *mul_acc_si)
11475 (*macc, *msac, *msac_using_macc, *macc2, *msac2, *mul_sub_si)
11476 (*muls): Remove "=h" clobbers. Adjust peephole2s and define_splits
11477 accordingly, using normal moves instead of unspecs to move LO into
11478 a GPR. Use d_operand and lo_operand instead of *_REG_P checks.
11479 (<u>mulsidi3): Handle expansion in C code.
11480 (<u>mulsidi3_32bit_internal): Rename to...
11481 (<u>mulsidi3_32bit): ...this.
11482 (<u>mulsidi3_32bit_r4000): Fix insn separator.
11483 (*<u>mulsidi3_64bit): Rename to...
11484 (<u>mulsidi3_64bit): ...this. Combine DImode "=h" and "=l" clobbers
11485 into a TImode "=x" clobber. In the split, use an UNSPEC_SET_HILO
11486 to set LO and HI to the multiplication result. Use a normal move
11487 for MFLO and an unspec for MFHI.
11488 (*<u>mulsidi3_64bit_parts): Replace with...
11489 (<u>mulsidi3_64bit_hilo): ...this new instruction.
11490 (<su>mulsi3_highpart): Extend to TARGET_FIX_R4000.
11491 (<su>mulsi3_highpart_internal): Turn into a define_insn_and_split
11492 and extend it to TARGET_FIX_R4000. Store the destination in a GPR
11493 instead of HI. Split the instruction into a separate multiplication
11494 and MFHI if !TARGET_FIX_R4000.
11495 (<su>muldi3_highpart): Likewise.
11496 (<su>mulsi3_highpart_mulhi_internal): Remove the first alternative
11497 and the "=h" clobber.
11498 (*<su>mulsi3_highpart_neg_mulhi_internal): Likewise.
11499 (<u>mulditi3): New expander.
11500 (<u>mulditi3_internal, <u>mulditi3_r4000): New patterns.
11501 (madsi): Remove "=h" clobber.
11502 (divmod<mode>4, udivmod<mode>4): Turn into define_insn_and_splits.
11503 Force the modulus result to be a GPR and split the instruction into
11504 a division followed by an MFHI after reload.
11505 (<u>divmod<GPR:mode>4_hilo_<HILO:mode>): New instruction.
11506 (*lea_high64): Use d_operand in the define_peephole2. Likewise
11507 the MIPS16 HIGH define_split.
11508 (*movdi_32bit, *movdi_gp32_fp64, *movdi_32bit_mips16): Change type
11509 of acc<->gpr moves to "multi".
11510 (*movdi_64bit): Replace the single "x" alternative with
11511 alternatives for moving into and out of "a".
11512 (*movhi_internal, *movqi_internal): Likewise. Use mips_output_move.
11513 (*movsi_internal): Extend the "d<-A" alternative to "d<-a".
11514 (*movdi_64bit_mips16, *movsi_mips16): Add d<-a alternatives.
11515 Use d_operand in the splitters. Remove redundant CONST_INT checks.
11516 (*movhi_mips16, *movqi_mips16): Likewise. Use mips_output_move.
11517 (movti): New expander.
11518 (*movti, *movti_mips16): New insns.
11519 (mfhilo_<mode>, *mfhilo_<mode>, *mfhilo_<mode>_macc): Delete.
11520 (mfhi<GPR:mode>_<HILO:mode>): New pattern.
11521 (mthi<GPR:mode>_<HILO:mode>): Likewise.
11522 * config/mips/predicates.md (fpr_operand): Delete.
11523 (d_operand): New predicate.
11525 2008-06-09 Michael Meissner <michael.meissner@amd.com>
11527 * config.gcc (i[34567]86-*-*): Put test in quotes to prevent
11528 failure on some Bourne shells.
11529 (x86_64-*-*): Ditto.
11531 2008-06-09 Kai Tietz <kai.tietz@onevision.com>
11533 * config/i386/cygming.h (TARGET_SUBTARGET64_DEFAULT): New.
11535 2008-06-09 Eric Botcazou <ebotcazou@libertysurf.fr>
11537 * doc/install.texi (*-*-solaris2*): Remove obsolete contents.
11538 (sparc-sun-solaris2*): Likewise.
11540 2008-06-09 Arnaud Charlet <charlet@adacore.com
11542 * doc/install.texi: Update requirements to build the Ada compiler.
11544 2008-06-08 Steven Bosscher <stevenb.gcc@gmail.com>
11546 * df-scan.c (struct df_scan_problem_data): Remove the
11547 mw_link_pool alloc pool.
11548 (df_scan_free_internal): Don't free it.
11549 (df_scan_alloc): Don't allocate it.
11550 * df.h (struct df_link): Update comment.
11552 2008-06-08 Nathan Sidwell <nathan@codesourcery.com>
11554 * except.h: Correct checks for when SJLJ exceptions must be used.
11556 2008-06-08 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
11558 * doc/invoke.texi (Wenum-compare): Mention that it is enabled by
11561 2008-06-08 Joseph Myers <joseph@codesourcery.com>
11563 PR tree-optimization/36218
11564 * configure.ac: Use LDFLAGS="${LDFLAGS_FOR_BUILD}" when running
11565 configure for the build system.
11566 (BUILD_LDFLAGS): Define.
11567 * configure: Regenerate.
11568 * Makefile.in (BUILD_LDFLAGS): Define to @BUILD_LDFLAGS@.
11570 2008-07-08 Anatoly Sokolov <aesok@post.ru>
11573 * config/avr/avr.h (HARD_REGNO_RENAME_OK): Define.
11574 * config/avr/avr.c (avr_hard_regno_rename_ok): New function.
11575 * config/avr/avr-protos.h (avr_hard_regno_rename_ok): New prototype.
11577 2008-06-07 Danny Smith <dannysmith@users.sourceforge.net>
11579 * config/i386/cygming.h (MAYBE_UWIN_CPP_BUILTINS): Remove.
11581 2008-06-07 Joseph Myers <joseph@codesourcery.com>
11583 * config.gcc (Obsolete configurations): Remove list of
11585 (Unsupported targets list): Add *-*-linux*aout*, *-*-linux*libc1*,
11586 *-*-solaris2.[0-6], *-*-solaris2.[0-6].*, *-*-sysv*. Remove other
11587 targets matched by those patterns.
11588 (strongarm*-*-*, ep9312*-*-*, xscale-*-*, parisc*-*-*,
11589 m680[012]0-*-*, *-*-linux*libc1*, *-*-linux*aout*,
11590 alpha*-*-unicosmk*, strongarm*-*-freebsd*, ep9312-*-elf,
11591 arm*-*-kaos*, cris-*-aout, parisc*64*-*-linux*, parisc*-*-linux*,
11592 hppa1.1-*-pro*, hppa1.1-*-osf*, hppa1.1-*-bsd*,
11593 i[34567]86-sequent-ptx4*, i[34567]86-sequent-sysv4*,
11594 i[34567]86-*-beoself*, i[34567]86-*-beos*, i[34567]86-*-sco3.2v5*,
11595 i[34567]86-*-sysv5*, i[34567]86-*-sysv4*, i[34567]86-*-uwin*,
11596 i[34567]86-*-kaos*, m68020-*-elf*, m68010-*-netbsdelf*,
11597 mips-wrs-windiss, mt-*-elf, powerpc-*-beos*, powerpc-*-chorusos*,
11598 powerpc-wrs-windiss*, powerpcle-*-sysv*, powerpc-*-kaos*,
11599 powerpcle-*-kaos*, sh*-*-kaos*, sparc-*-sysv4*, strongarm-*-elf*,
11600 strongarm-*-pe, strongarm-*-kaos*, vax-*-bsd*, vax-*-sysv*,
11601 vax-*-ultrix*, xscale-*-elf, xscale-*-coff,
11602 i[34567]86-*-linux*aout*, i[34567]86-*-linux*libc1): Remove.
11603 Make code for Solaris 7 and greater unconditional for Solaris.
11604 (ep9312-*-*, parisc1*, m680[012]0-*-*, parisc*-*-*, mt-*-*):
11605 Remove --with-* handling.
11606 * config/rs6000/sysv4.h (-mwindiss): Remove from all specs.
11607 (LIB_WINDISS_SPEC, CPP_OS_WINDISS_SPEC, STARTFILE_WINDISS_SPEC,
11608 ENDFILE_WINDISS_SPEC, LINK_START_WINDISS_SPEC,
11609 LINK_OS_WINDISS_SPEC): Remove.
11610 * config/rs6000/sysv4.opt (mwindiss): Remove.
11611 * configure.ac (strongarm*-*-*, xscale*-*-*): Remove.
11612 * configure: Regenerate.
11613 * doc/cpp.texi: Don't mention BeOS.
11614 * doc/extend.texi (interrupt): Don't mention MS1.
11615 * doc/install.texi: (i386-@var{any}-sysv, m68k-bull-sysv,
11616 m68k-hp-hpux, m68000-hp-hpux, m68000-att-sysv,
11617 alphaev5-cray-unicosmk*, xscale-*-*, i?86-*-linux*aout,
11618 i?86-*-sco3.2v5*, i?86-*-udk, m68k-hp-hpux, powerpc-*-sysv4,
11619 powerpc-*-sysv4, powerpcle-*-sysv4, *-*-sysv*, vax-dec-ultrix):
11621 * doc/invoke.texi (MT Options): Remove.
11622 (-mwindiss): Remove.
11623 (CRIS Options): Remove cris-axis-aout references.
11624 (HPPA Options): Don't mention hppa1.1-*-pro.
11625 * doc/md.texi: (MorphoTech family): Remove.
11626 * libgcc2.c: Don't handle UWIN.
11627 * config/alpha/t-unicosmk: Remove.
11628 * config/alpha/unicosmk.h: Remove.
11629 * config/arm/kaos-arm.h: Remove.
11630 * config/arm/kaos-strongarm.h: Remove.
11631 * config/arm/strongarm-coff.h: Remove.
11632 * config/arm/strongarm-elf.h: Remove.
11633 * config/arm/strongarm-pe.h: Remove.
11634 * config/arm/t-strongarm-pe: Remove.
11635 * config/arm/t-xscale-coff: Remove.
11636 * config/arm/t-xscale-elf: Remove.
11637 * config/arm/xscale-coff.h: Remove.
11638 * config/arm/xscale-elf.h: Remove.
11639 * config/chorus.h: Remove.
11640 * config/cris/aout.h: Remove.
11641 * config/cris/aout.opt: Remove.
11642 * config/cris/t-aout: Remove.
11643 * config/i386/beos-elf.h: Remove.
11644 * config/i386/kaos-i386.h: Remove.
11645 * config/i386/ptx4-i.h: Remove.
11646 * config/i386/sco5.h: Remove.
11647 * config/i386/sco5.opt: Remove.
11648 * config/i386/sysv4-cpp.h: Remove.
11649 * config/i386/sysv5.h: Remove.
11650 * config/i386/t-beos: Remove.
11651 * config/i386/t-sco5: Remove.
11652 * config/i386/t-uwin: Remove.
11653 * config/i386/uwin.asm: Remove.
11654 * config/i386/uwin.h: Remove.
11655 * config/kaos.h: Remove.
11656 * config/mips/windiss.h: Remove.
11657 * config/mt: Remove directory.
11658 * config/pa/pa-osf.h: Remove.
11659 * config/pa/pa-pro-end.h: Remove.
11660 * config/pa/t-pro: Remove.
11661 * config/ptx4.h: Remove.
11662 * config/rs6000/beos.h: Remove.
11663 * config/rs6000/kaos-ppc.h: Remove.
11664 * config/rs6000/t-beos: Remove.
11665 * config/rs6000/windiss.h: Remove.
11666 * config/sh/kaos-sh.h: Remove.
11667 * config/sol2-6.h: Remove.
11668 * config/sparc/sol26-sld.h: Remove.
11669 * config/sparc/sysv4-only.h: Remove.
11670 * config/vax/bsd.h: Remove.
11671 * config/vax/t-memfuncs: Remove.
11672 * config/vax/ultrix.h: Remove.
11673 * config/vax/vaxv.h: Remove.
11674 * config/windiss.h: Remove.
11676 2008-06-06 Uros Bizjak <ubizjak@gmail.com>
11678 PR rtl-optimization/36438
11679 * cse.c (fold_rtx) [ASHIFT, LSHIFTRT, ASHIFTRT]: Break out early
11680 for vector shifts with constant scalar shift operands.
11682 2008-06-06 Sandip Matte <sandip@rmicorp.com>
11684 * doc/invoke.texi: Document -march=xlr.
11685 * config/mips/xlr.md: New file.
11686 * config/mips/mips.md: Include it.
11688 * config/mips/mips.h (PROCESSOR_XLR): New processor_type.
11689 * config/mips/mips.c (mips_cpu_info_table): Add an XLR entry.
11690 (mips_rtx_cost_data): Likewise.
11692 2008-06-06 Nathan Froyd <froydnj@codesourcery.com>
11694 * config/rs6000/rs6000.c (rs6000_mode_dependent_address): Remove
11695 PRE_INC and PRE_DEC cases.
11697 2008-06-06 Jakub Jelinek <jakub@redhat.com>
11699 PR rtl-optimization/36419
11700 * except.c (expand_resx_expr): Call do_pending_stack_adjust () before
11701 the emitting jump insn.
11704 * gimplify.c (gimplify_expr) <case TRUTH_NOT_EXPR>: If *expr_p type
11705 is not bool, boolify the whole *expr_p and convert to the desired type.
11707 2008-06-06 Jakub Jelinek <jakub@redhat.com>
11709 * c-cppbuiltin.c (c_cpp_builtins): Change _OPENMP value to 200805.
11710 * langhooks.h (struct lang_hooks_for_decls): Add omp_finish_clause.
11711 Add omp_private_outer_ref hook, add another argument to
11712 omp_clause_default_ctor hook.
11713 * langhooks-def.h (LANG_HOOKS_OMP_FINISH_CLAUSE): Define.
11714 (LANG_HOOKS_OMP_PRIVATE_OUTER_REF): Define.
11715 (LANG_HOOKS_OMP_CLAUSE_DEFAULT_CTOR): Change to
11716 hook_tree_tree_tree_tree_null.
11717 (LANG_HOOKS_DECLS): Add LANG_HOOKS_OMP_FINISH_CLAUSE and
11718 LANG_HOOKS_OMP_PRIVATE_OUTER_REF.
11719 * hooks.c (hook_tree_tree_tree_tree_null): New function.
11720 * hooks.h (hook_tree_tree_tree_tree_null): New prototype.
11721 * tree.def (OMP_TASK): New tree code.
11722 * tree.h (OMP_TASK_COPYFN, OMP_TASK_ARG_SIZE, OMP_TASK_ARG_ALIGN,
11723 OMP_CLAUSE_PRIVATE_OUTER_REF, OMP_CLAUSE_LASTPRIVATE_STMT,
11724 OMP_CLAUSE_COLLAPSE_ITERVAR, OMP_CLAUSE_COLLAPSE_COUNT,
11725 OMP_TASKREG_CHECK, OMP_TASKREG_BODY, OMP_TASKREG_CLAUSES,
11726 OMP_TASKREG_FN, OMP_TASKREG_DATA_ARG, OMP_TASK_BODY,
11727 OMP_TASK_CLAUSES, OMP_TASK_FN, OMP_TASK_DATA_ARG,
11728 OMP_CLAUSE_COLLAPSE_EXPR): Define.
11729 (enum omp_clause_default_kind): Add OMP_CLAUSE_DEFAULT_FIRSTPRIVATE.
11730 (OMP_DIRECTIVE_P): Add OMP_TASK.
11731 (OMP_CLAUSE_COLLAPSE, OMP_CLAUSE_UNTIED): New clause codes.
11732 (OMP_CLAUSE_SCHEDULE_AUTO): New schedule kind.
11733 * tree.c (omp_clause_code_name): Add OMP_CLAUSE_COLLAPSE
11734 and OMP_CLAUSE_UNTIED entries.
11735 (omp_clause_num_ops): Likewise. Increase OMP_CLAUSE_LASTPRIVATE
11737 (walk_tree_1): Handle OMP_CLAUSE_COLLAPSE and OMP_CLAUSE_UNTIED.
11738 Walk OMP_CLAUSE_LASTPRIVATE_STMT.
11739 * tree-pretty-print.c (dump_omp_clause): Handle
11740 OMP_CLAUSE_SCHEDULE_AUTO, OMP_CLAUSE_UNTIED, OMP_CLAUSE_COLLAPSE,
11741 OMP_CLAUSE_DEFAULT_FIRSTPRIVATE.
11742 (dump_generic_node): Handle OMP_TASK and collapsed OMP_FOR loops.
11743 * c-omp.c (c_finish_omp_for): Allow pointer iterators. Remove
11744 warning about unsigned iterators. Change decl/init/cond/incr
11745 arguments to TREE_VECs, check arguments for all collapsed loops.
11746 (c_finish_omp_taskwait): New function.
11747 (c_split_parallel_clauses): Put OMP_CLAUSE_COLLAPSE clause to
11749 * c-parser.c (c_parser_omp_for_loop): Parse collapsed loops. Call
11750 default_function_array_conversion on init. Add par_clauses argument.
11751 If decl is present in parallel's lastprivate clause, change it to
11752 shared and add lastprivate clause for decl to OMP_FOR_CLAUSES.
11753 Add clauses argument, on success set OMP_FOR_CLAUSES to it. Look up
11754 collapse count in clauses.
11755 (c_parser_omp_for, c_parser_omp_parallel): Adjust
11756 c_parser_omp_for_loop callers.
11757 (OMP_FOR_CLAUSE_MASK): Add 1 << PRAGMA_OMP_CLAUSE_COLLAPSE.
11758 (c_parser_pragma): Handle PRAGMA_OMP_TASKWAIT.
11759 (c_parser_omp_clause_name): Handle collapse and untied clauses.
11760 (c_parser_omp_clause_collapse, c_parser_omp_clause_untied): New
11762 (c_parser_omp_clause_schedule): Handle schedule(auto).
11763 Include correct location in the error message.
11764 (c_parser_omp_all_clauses): Handle PRAGMA_OMP_CLAUSE_COLLAPSE
11765 and PRAGMA_OMP_CLAUSE_UNTIED.
11766 (OMP_TASK_CLAUSE_MASK): Define.
11767 (c_parser_omp_task, c_parser_omp_taskwait): New functions.
11768 (c_parser_omp_construct): Handle PRAGMA_OMP_TASK.
11769 * tree-nested.c (convert_nonlocal_omp_clauses,
11770 convert_local_omp_clauses): Handle OMP_CLAUSE_LASTPRIVATE_STMT,
11771 OMP_CLAUSE_REDUCTION_INIT, OMP_CLAUSE_REDUCTION_MERGE,
11772 OMP_CLAUSE_COLLAPSE and OMP_CLAUSE_UNTIED.
11773 Don't handle TREE_STATIC or DECL_EXTERNAL VAR_DECLs in
11775 (conver_nonlocal_reference, convert_local_reference,
11776 convert_call_expr): Handle OMP_TASK the same as OMP_PARALLEL. Use
11777 OMP_TASKREG_* macros rather than OMP_PARALLEL_*.
11778 (walk_omp_for): Adjust for OMP_FOR_{INIT,COND,INCR} changes.
11779 * tree-gimple.c (is_gimple_stmt): Handle OMP_TASK.
11780 * c-tree.h (c_begin_omp_task, c_finish_omp_task): New prototypes.
11781 * c-pragma.h (PRAGMA_OMP_TASK, PRAGMA_OMP_TASKWAIT): New.
11782 (PRAGMA_OMP_CLAUSE_COLLAPSE, PRAGMA_OMP_CLAUSE_UNTIED): New.
11783 * c-typeck.c (c_begin_omp_task, c_finish_omp_task): New functions.
11784 (c_finish_omp_clauses): Handle OMP_CLAUSE_COLLAPSE and
11786 * c-pragma.c (init_pragma): Init omp task and omp taskwait pragmas.
11787 * c-common.h (c_finish_omp_taskwait): New prototype.
11788 * gimple-low.c (lower_stmt): Handle OMP_TASK.
11789 * tree-parloops.c (create_parallel_loop): Create 1 entry
11790 vectors for OMP_FOR_{INIT,COND,INCR}.
11791 * tree-cfg.c (remove_useless_stmts_1): Handle OMP_* containers.
11792 (make_edges): Handle OMP_TASK.
11793 * tree-ssa-operands.c (get_expr_operands): Handle collapsed OMP_FOR
11794 loops, adjust for OMP_FOR_{INIT,COND,INCR} changes.
11795 * tree-inline.c (estimate_num_insns_1): Handle OMP_TASK.
11796 * builtin-types.def (BT_PTR_ULONGLONG, BT_PTR_FN_VOID_PTR_PTR,
11797 BT_FN_BOOL_ULONGLONGPTR_ULONGLONGPTR,
11798 BT_FN_BOOL_BOOL_ULL_ULL_ULL_ULLPTR_ULLPTR,
11799 BT_FN_BOOL_BOOL_ULL_ULL_ULL_ULL_ULLPTR_ULLPTR,
11800 BT_FN_VOID_OMPFN_PTR_OMPCPYFN_LONG_LONG_BOOL_UINT): New.
11801 * omp-builtins.def (BUILT_IN_GOMP_TASK, BUILT_IN_GOMP_TASKWAIT,
11802 BUILT_IN_GOMP_LOOP_ULL_STATIC_START,
11803 BUILT_IN_GOMP_LOOP_ULL_DYNAMIC_START,
11804 BUILT_IN_GOMP_LOOP_ULL_GUIDED_START,
11805 BUILT_IN_GOMP_LOOP_ULL_RUNTIME_START,
11806 BUILT_IN_GOMP_LOOP_ULL_ORDERED_STATIC_START,
11807 BUILT_IN_GOMP_LOOP_ULL_ORDERED_DYNAMIC_START,
11808 BUILT_IN_GOMP_LOOP_ULL_ORDERED_GUIDED_START,
11809 BUILT_IN_GOMP_LOOP_ULL_ORDERED_RUNTIME_START,
11810 BUILT_IN_GOMP_LOOP_ULL_STATIC_NEXT,
11811 BUILT_IN_GOMP_LOOP_ULL_DYNAMIC_NEXT,
11812 BUILT_IN_GOMP_LOOP_ULL_GUIDED_NEXT,
11813 BUILT_IN_GOMP_LOOP_ULL_RUNTIME_NEXT,
11814 BUILT_IN_GOMP_LOOP_ULL_ORDERED_STATIC_NEXT,
11815 BUILT_IN_GOMP_LOOP_ULL_ORDERED_DYNAMIC_NEXT,
11816 BUILT_IN_GOMP_LOOP_ULL_ORDERED_GUIDED_NEXT,
11817 BUILT_IN_GOMP_LOOP_ULL_ORDERED_RUNTIME_NEXT): New builtins.
11818 * gimplify.c (gimplify_omp_for): Allow pointer type for decl,
11819 handle POINTER_PLUS_EXPR. If loop counter has been replaced and
11820 original iterator is present in lastprivate clause or if
11821 collapse > 1, set OMP_CLAUSE_LASTPRIVATE_STMT. Handle collapsed
11822 OMP_FOR loops, adjust for OMP_FOR_{INIT,COND,INCR} changes.
11823 (gimplify_expr): Handle OMP_SECTIONS_SWITCH and OMP_TASK.
11824 (enum gimplify_omp_var_data): Add GOVD_PRIVATE_OUTER_REF.
11825 (omp_notice_variable): Set GOVD_PRIVATE_OUTER_REF if needed,
11826 if it is set, lookup var in outer contexts too. Handle
11827 OMP_CLAUSE_DEFAULT_FIRSTPRIVATE. Handle vars that are supposed
11828 to be implicitly determined firstprivate for task regions.
11829 (gimplify_scan_omp_clauses): Set GOVD_PRIVATE_OUTER_REF if needed,
11830 if it is set, lookup var in outer contexts too. Set
11831 OMP_CLAUSE_PRIVATE_OUTER_REF if GOVD_PRIVATE_OUTER_REF is set.
11832 Handle OMP_CLAUSE_LASTPRIVATE_STMT, OMP_CLAUSE_COLLAPSE and
11833 OMP_CLAUSE_UNTIED. Take region_type as last argument
11834 instead of in_parallel and in_combined_parallel.
11835 (gimplify_omp_parallel, gimplify_omp_for, gimplify_omp_workshare):
11837 (gimplify_adjust_omp_clauses_1): Set OMP_CLAUSE_PRIVATE_OUTER_REF if
11838 GOVD_PRIVATE_OUTER_REF is set. Call omp_finish_clause langhook.
11839 (new_omp_context): Set default_kind to
11840 OMP_CLAUSE_DEFAULT_UNSPECIFIED for OMP_TASK regions.
11841 (omp_region_type): New enum.
11842 (struct gimplify_omp_ctx): Remove is_parallel and is_combined_parallel
11843 fields, add region_type.
11844 (new_omp_context): Take region_type as argument instead of is_parallel
11845 and is_combined_parallel.
11846 (gimple_add_tmp_var, omp_firstprivatize_variable, omp_notice_variable,
11847 omp_is_private, omp_check_private): Adjust ctx->is_parallel and
11848 ctx->is_combined_parallel checks.
11849 (gimplify_omp_task): New function.
11850 (gimplify_adjust_omp_clauses): Handle OMP_CLAUSE_COLLAPSE and
11852 * omp-low.c (extract_omp_for_data): Use schedule(static)
11853 for schedule(auto). Handle pointer and unsigned iterators.
11854 Compute fd->iter_type. Handle POINTER_PLUS_EXPR increments.
11855 Add loops argument. Extract data for collapsed OMP_FOR loops.
11856 (expand_parallel_call): Assert sched_kind isn't auto,
11857 map runtime schedule to index 3.
11858 (struct omp_for_data_loop): New type.
11859 (struct omp_for_data): Remove v, n1, n2, step, cond_code fields.
11860 Add loop, loops, collapse and iter_type fields.
11861 (workshare_safe_to_combine_p): Disallow combined for if
11862 iter_type is unsigned long long. Don't combine collapse > 1 loops
11863 unless all bounds and steps are constant. Adjust extract_omp_for_data
11865 (expand_omp_for_generic): Handle pointer, unsigned and long long
11866 iterators. Handle collapsed OMP_FOR loops. Adjust
11867 for struct omp_for_data changes. If libgomp function doesn't return
11868 boolean_type_node, add comparison of the return value with 0.
11869 (expand_omp_for_static_nochunk, expand_omp_for_static_chunk): Handle
11870 pointer, unsigned and long long iterators. Adjust for struct
11871 omp_for_data changes.
11872 (expand_omp_for): Assert sched_kind isn't auto, map runtime schedule
11873 to index 3. Use GOMP_loop_ull*{start,next} if iter_type is
11874 unsigned long long. Allocate loops array, pass it to
11875 extract_omp_for_data. For collapse > 1 loops use always
11876 expand_omp_for_generic.
11877 (omp_context): Add sfield_map and srecord_type fields.
11878 (is_task_ctx, lookup_sfield): New functions.
11879 (use_pointer_for_field): Use is_task_ctx helper. Change first
11880 argument's type from const_tree to tree. Clarify comment.
11881 In OMP_TASK disallow copy-in/out sharing.
11882 (build_sender_ref): Call lookup_sfield instead of lookup_field.
11883 (install_var_field): Add mask argument. Populate both record_type
11884 and srecord_type if needed.
11885 (delete_omp_context): Destroy sfield_map, clear DECL_ABSTRACT_ORIGIN
11887 (fixup_child_record_type): Also remap FIELD_DECL's DECL_SIZE{,_UNIT}
11888 and DECL_FIELD_OFFSET.
11889 (scan_sharing_clauses): Adjust install_var_field callers. For
11890 firstprivate clauses on explicit tasks allocate the var by value in
11891 record_type unconditionally, rather than by reference.
11892 Handle OMP_CLAUSE_PRIVATE_OUTER_REF. Scan OMP_CLAUSE_LASTPRIVATE_STMT.
11893 Use is_taskreg_ctx instead of is_parallel_ctx.
11894 Handle OMP_CLAUSE_COLLAPSE and OMP_CLAUSE_UNTIED.
11895 (create_omp_child_function_name): Add task_copy argument, use
11896 *_omp_cpyfn* names if it is true.
11897 (create_omp_child_function): Add task_copy argument, if true create
11898 *_omp_cpyfn* helper function.
11899 (scan_omp_parallel): Adjust create_omp_child_function callers.
11900 Rename parallel_nesting_level to taskreg_nesting_level.
11901 (scan_omp_task): New function.
11902 (lower_rec_input_clauses): Don't run constructors for firstprivate
11903 explicit task vars which are initialized by *_omp_cpyfn*.
11904 Pass outer var ref to omp_clause_default_ctor hook if
11905 OMP_CLAUSE_PRIVATE_OUTER_REF or OMP_CLAUSE_LASTPRIVATE.
11906 Replace OMP_CLAUSE_REDUCTION_PLACEHOLDER decls in
11907 OMP_CLAUSE_REDUCTION_INIT.
11908 (lower_send_clauses): Clear DECL_ABSTRACT_ORIGIN if in task to
11909 avoid duplicate setting of fields. Handle
11910 OMP_CLAUSE_PRIVATE_OUTER_REF.
11911 (lower_send_shared_vars): Use srecord_type if non-NULL. Don't
11912 copy-out if TREE_READONLY, only copy-in.
11913 (expand_task_copyfn): New function.
11914 (expand_task_call): New function.
11915 (struct omp_taskcopy_context): New type.
11916 (task_copyfn_copy_decl, task_copyfn_remap_type, create_task_copyfn):
11918 (lower_omp_parallel): Rename to...
11919 (lower_omp_taskreg): ... this. Use OMP_TASKREG_* macros where needed.
11920 Call create_task_copyfn if srecord_type is needed. Adjust
11922 (task_shared_vars): New variable.
11923 (check_omp_nesting_restrictions): Warn if work-sharing,
11924 barrier, master or ordered region is closely nested inside OMP_TASK.
11925 Add warnings for barrier if closely nested inside of work-sharing,
11926 ordered, or master region.
11927 (scan_omp_1): Call check_omp_nesting_restrictions even for
11928 GOMP_barrier calls. Rename parallel_nesting_level to
11929 taskreg_nesting_level. Handle OMP_TASK.
11930 (lower_lastprivate_clauses): Even if some lastprivate is found on a
11931 work-sharing construct, continue looking for them on parent parallel
11933 (lower_omp_for_lastprivate): Add lastprivate clauses
11934 to the beginning of dlist rather than end. Adjust for struct
11935 omp_for_data changes.
11936 (lower_omp_for): Add rec input clauses before OMP_FOR_PRE_BODY,
11937 not after it. Handle collapsed OMP_FOR loops, adjust for
11938 OMP_FOR_{INIT,COND,INCR} changes, adjust extract_omp_for_data caller.
11939 (get_ws_args_for): Adjust extract_omp_for_data caller.
11940 (scan_omp_for): Handle collapsed OMP_FOR
11941 loops, adjust for OMP_FOR_{INIT,COND,INCR} changes.
11942 (lower_omp_single_simple): If libgomp function doesn't return
11943 boolean_type_node, add comparison of the return value with 0.
11944 (diagnose_sb_1, diagnose_sb_2): Handle collapsed OMP_FOR
11945 loops, adjust for OMP_FOR_{INIT,COND,INCR} changes. Handle OMP_TASK.
11946 (parallel_nesting_level): Rename to...
11947 (taskreg_nesting_level): ... this.
11948 (is_taskreg_ctx): New function.
11949 (build_outer_var_ref, omp_copy_decl): Use is_taskreg_ctx instead
11950 of is_parallel_ctx.
11951 (execute_lower_omp): Rename parallel_nesting_level to
11952 taskreg_nesting_level.
11953 (expand_omp_parallel): Rename to...
11954 (expand_omp_taskreg): ... this. Use OMP_TASKREG_* macros where needed.
11955 Call omp_task_call for OMP_TASK regions.
11956 (expand_omp): Adjust caller, handle OMP_TASK.
11957 (lower_omp_1): Adjust lower_omp_taskreg caller, handle OMP_TASK.
11959 * bitmap.c (bitmap_default_obstack_depth): New variable.
11960 (bitmap_obstack_initialize, bitmap_obstack_release): Do nothing
11961 if argument is NULL and bitmap_default_obstack is already initialized.
11962 * ipa-struct-reorg.c (do_reorg_1): Call bitmap_obstack_release
11964 * matrix-reorg.c (matrix_reorg): Likewise.
11966 2008-06-06 Uros Bizjak <ubizjak@gmail.com>
11968 * config/i386/i386.md (*indirect_jump): Macroize using P
11969 mode iterator. Remove !TARGET_64BIT from insn constraints.
11970 (*tablejump_1): Ditto.
11971 (*indirect_jump_rex64): Remove insn pattern.
11972 (*tablejump_1_rex64): Ditto.
11973 (eh_return_<mode>): Macroize using P mode iterator from eh_return_di
11974 and eh_return_si insn patterns.
11976 2008-06-06 Richard Guenther <rguenther@suse.de>
11978 * tree-ssa-structalias.c (merge_smts_into): Remove.
11979 (find_what_p_points_to): Do not bother to compute the
11980 points-to set for pt_anything pointers.
11981 * tree-ssa-operands.c (get_addr_dereference_operands): No NMT
11982 for pt_anything pointers is ok.
11984 2008-06-06 Jan Hubicka <jh@suse.cz>
11986 * passes.c (execute_ipa_pass_list): Do not regenerate summaries.
11988 2008-06-06 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
11990 * cgraph.c: Fix typos in comments.
11991 (cgraph_availability_names): Fix string typo.
11992 * fold-const.c: Fix typos in comments.
11993 (fold_binary): Fix typo in warning.
11994 * genautomata.c: Fix typos in comments.
11995 (check_presence_pattern_sets): Fix typo in local variable.
11996 (output_description): Fix typo in output.
11997 * ggc-zone.c (ggc_pch_finish): Fix typo in error message.
11998 * hwint.h: Likewise.
11999 * matrix-reorg.c (check_allocation_function): Likewise.
12000 * omega.c (smooth_weird_equations): Likewise.
12001 * auto-inc-dec.c: Fix typos in comments.
12002 * bb-reorder.c: Likewise.
12003 * builtins.c: Likewise.
12004 * c-common.c: Likewise.
12005 * c-cppbuiltin.c: Likewise.
12006 * c-parser.c: Likewise.
12007 * c-pretty-print.c: Likewise.
12008 * cfgcleanup.c: Likewise.
12009 * cfgexpand.c: Likewise.
12010 * cfghooks.c: Likewise.
12011 * cfglayout.c: Likewise.
12012 * cfgloopmanip.c: Likewise.
12013 * cgraphunit.c: Likewise.
12014 * coverage.c: Likewise.
12015 * dbxout.c: Likewise.
12016 * df-byte-scan.c: Likewise.
12017 * df-core.c: Likewise.
12018 * df-problems.c: Likewise.
12019 * df-scan.c: Likewise.
12021 * dominance.c: Likewise.
12022 * domwalk.c: Likewise.
12024 * dwarf2out.c: Likewise.
12025 * emit-rtl.c: Likewise.
12026 * et-forest.c: Likewise.
12027 * function.c: Likewise.
12028 * function.h: Likewise.
12030 * gcov-io.c: Likewise.
12031 * gcov.c: Likewise.
12032 * gcse.c: Likewise.
12033 * genattrtab.c: Likewise.
12034 * ggc-page.c: Likewise.
12035 * gimplify.c: Likewise.
12036 * gthr-lynx.h: Likewise.
12037 * haifa-sched.c: Likewise.
12038 * ipa-cp.c: Likewise.
12039 * ipa-inline.c: Likewise.
12040 * ipa-prop.h: Likewise.
12041 * ipa-pure-const.c: Likewise.
12042 * ipa-struct-reorg.c: Likewise.
12043 * ipa-struct-reorg.h: Likewise.
12044 * ipa-type-escape.c: Likewise.
12046 * loop-doloop.c: Likewise.
12047 * mips-tfile.c: Likewise.
12048 * mkmap-flat.awk: Likewise.
12049 * mkmap-symver.awk: Likewise.
12050 * modulo-sched.c: Likewise.
12051 * omp-low.c: Likewise.
12052 * optabs.c: Likewise.
12053 * optabs.h: Likewise.
12054 * opts.c: Likewise.
12055 * passes.c: Likewise.
12056 * postreload-gcse.c: Likewise.
12057 * postreload.c: Likewise.
12058 * predict.c: Likewise.
12059 * pretty-print.h: Likewise.
12060 * profile.c: Likewise.
12061 * protoize.c: Likewise.
12062 * ra-conflict.c: Likewise.
12063 * real.c: Likewise.
12064 * recog.c: Likewise.
12065 * regclass.c: Likewise.
12066 * regs.h: Likewise.
12067 * reload.c: Likewise.
12068 * rtl-error.c: Likewise.
12069 * rtlanal.c: Likewise.
12070 * scan.h: Likewise.
12071 * sched-rgn.c: Likewise.
12073 * stmt.c: Likewise.
12074 * target.h: Likewise.
12075 * tree-dfa.c: Likewise.
12076 * tree-eh.c: Likewise.
12077 * tree-flow-inline.h: Likewise.
12078 * tree-inline.c: Likewise.
12079 * tree-into-ssa.c: Likewise.
12080 * tree-loop-distribution.c: Likewise.
12081 * tree-nested.c: Likewise.
12082 * tree-parloops.c: Likewise.
12083 * tree-pass.h: Likewise.
12084 * tree-pretty-print.c: Likewise.
12085 * tree-profile.c: Likewise.
12086 * tree-scalar-evolution.c: Likewise.
12087 * tree-sra.c: Likewise.
12088 * tree-ssa-alias-warnings.c: Likewise.
12089 * tree-ssa-ccp.c: Likewise.
12090 * tree-ssa-coalesce.c: Likewise.
12091 * tree-ssa-dom.c: Likewise.
12092 * tree-ssa-dse.c: Likewise.
12093 * tree-ssa-forwprop.c: Likewise.
12094 * tree-ssa-live.c: Likewise.
12095 * tree-ssa-live.h: Likewise.
12096 * tree-ssa-loop-im.c: Likewise.
12097 * tree-ssa-loop-ivopts.c: Likewise.
12098 * tree-ssa-loop-niter.c: Likewise.
12099 * tree-ssa-loop-prefetch.c: Likewise.
12100 * tree-ssa-phiopt.c: Likewise.
12101 * tree-ssa-phiprop.c: Likewise.
12102 * tree-ssa-sccvn.c: Likewise.
12103 * tree-ssa-ter.c: Likewise.
12104 * tree-ssa-threadupdate.c: Likewise.
12105 * tree-ssa.c: Likewise.
12106 * tree-vect-analyze.c: Likewise.
12107 * tree-vect-transform.c: Likewise.
12108 * tree-vectorizer.c: Likewise.
12109 * tree-vn.c: Likewise.
12110 * tree-vrp.c: Likewise.
12111 * tree.c: Likewise.
12112 * tree.def: Likewise.
12113 * tree.h: Likewise.
12114 * unwind-dw2-fde.c: Likewise.
12115 * unwind.inc: Likewise.
12116 * value-prof.c: Likewise.
12117 * vmsdbgout.c: Likewise.
12119 2008-06-05 David Edelsohn <edelsohn@gnu.org>
12121 * config/rs6000/xcoff.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Do not
12122 always place FP constants in the TOC for TARGET_POWERPC64.
12123 * config/rs6000/linux64.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Same.
12125 2008-06-05 Joseph Myers <joseph@codesourcery.com>
12127 * config.gcc (powerpc-*-linux*spe*): Use t-dfprules.
12128 * config/rs6000/dfp.md (negdd2, absdd2, negtd2, abstd2): Do not
12129 enable for TARGET_E500_DOUBLE.
12130 (*movdd_softfloat32): Also enable for !TARGET_FPRS.
12131 * config/rs6000/rs6000.c (invalid_e500_subreg): Treat decimal
12132 floating-point modes like integer modes for E500 double.
12133 (rs6000_legitimate_offset_address_p): Likewise.
12134 (rs6000_legitimize_address): Likewise. Do not allow REG+REG
12135 addressing for DDmode for E500 double.
12136 (rs6000_hard_regno_nregs): Do not treat decimal floating-point
12137 modes as using 64-bits of registers for E500 double.
12138 (spe_build_register_parallel): Do not handle DDmode or TDmode.
12139 (rs6000_spe_function_arg): Do not handle DDmode or TDmode
12140 specially for E500 double.
12141 (function_arg): Do not call rs6000_spe_function_arg for DDmode or
12142 TDmode for E500 double.
12143 (rs6000_gimplify_va_arg): Only handle SDmode in registers
12144 specially if TARGET_HARD_FLOAT && TARGET_FPRS.
12145 (rs6000_split_multireg_move): Do not handle TDmode specially for
12147 (spe_func_has_64bit_regs_p): Do not treat DDmode or TDmode as
12148 using 64-bit registers for E500 double.
12149 (emit_frame_save): Do not handle DDmode specially for E500 double.
12150 (gen_frame_mem_offset): Likewise.
12151 (rs6000_function_value): Do not call spe_build_register_parallel
12152 for DDmode or TDmode.
12153 (rs6000_libcall_value): Likewise.
12154 * config/rs6000/rs6000.h (LOCAL_ALIGNMENT, MEMBER_TYPE_FORCES_BLK,
12155 DATA_ALIGNMENT, CLASS_MAX_NREGS): Do not handle DDmode specially
12158 2008-06-04 H.J. Lu <hongjiu.lu@intel.com>
12160 * config/i386/i386.c (setup_incoming_varargs_64): Fix a typo
12163 2008-06-04 Junjie Gu <jgu@tensilica.com>
12165 * config/xtensa/lib2funcs.S (__xtensa_nonlocal_goto): Use unsigned
12166 comparison for frame pointers.
12168 2008-06-04 Andy Hutchinson <hutchinsonandy@aim.com>
12171 * config/avr/avr.h (PUSH_ROUNDING): Remove.
12173 2008-06-04 Andy Hutchinson <hutchinsonandy@aim.com>
12176 * builtins.c (expand_builtin_signbit): Don't take lowpart when
12177 register is already smaller or equal to required mode.
12179 2008-06-04 Xinliang David Li <davidxl@google.com>
12181 * tree-call-cdce.c: New file.
12182 (cond_dead_built_in_calls): New static variable.
12183 (input_domain): New struct.
12184 (check_pow): New function.
12185 (check_builtin_call): Ditto.
12186 (check_target_format): Ditto.
12187 (is_call_dce_candidate): Ditto.
12188 (gen_one_condition): Ditto.
12189 (gen_conditions_for_domain): Ditto.
12190 (get_domain): Ditto.
12191 (gen_conditions_for_pow_cst_base): Ditto.
12192 (gen_conditions_for_pow_int_base): Ditto.
12193 (gen_conditions_for_pow): Ditto.
12194 (get_no_error_domain): Ditto.
12195 (gen_shrink_wrap_conditions): Ditto.
12196 (shrink_wrap_one_built_in_call): Ditto.
12197 (shink_wrap_conditional_dead_built_in_calls): Ditto.
12198 (tree_call_cdce): Ditto.
12199 (gate_call_cdce): Ditto.
12200 (pass_call_cdce): New gimple pass.
12201 * passes.c: (init_optimization_passes): New pass.
12202 * tree-pass.h: New pass declaration.
12203 * opts.c (decode_options): New flag setting.
12204 * common.opt: Add -ftree-builtin-call-dce flag.
12205 * Makefile.in: Add new source file.
12206 * tempvar.def: New tv_id.
12207 * doc/invoke.texi (-ftree-builtin-call-dce): New flag.
12209 2008-06-04 Richard Guenther <rguenther@suse.de>
12211 * tree-flow-inline.h (is_global_var): Do not check TREE_STATIC on MTAGs.
12212 (is_call_clobbered): Always check var_ann->call_clobbered.
12213 (mark_call_clobbered): Always set var_ann->call_clobbered.
12214 (clear_call_clobbered): Always clear var_ann->call_clobbered.
12215 * tree-ssa-alias.c (mark_non_addressable): Use clear_call_clobbered.
12216 (reset_alias_info): Clear call clobbering info on MTAGs and
12218 (set_pt_anything): Set pt_global_mem.
12219 (create_tag_raw): Adjust comment.
12220 (may_be_aliased): Do not check TREE_PUBLIC on MTAGs.
12222 2008-06-04 Joseph Myers <joseph@codesourcery.com>
12223 Maxim Kuvyrkov <maxim@codesourcery.com>
12225 * config/m68k/m68k.opt (mxgot): New option.
12226 * config/m68k/m68k.c (legitimize_pic_address): Handle -mxgot.
12227 (m68k_output_addr_const_extra): New.
12228 * config/m68k/m68k.h (OUTPUT_ADDR_CONST_EXTRA): New.
12229 * config/m68k/m68k-protos.h (m68k_output_addr_const_extra): Declare.
12230 * config/m68k/m68k.md (UNSPEC_GOTOFF): Define.
12231 * doc/invoke.texi (M680x0 Options): Document -mxgot.
12233 2008-06-04 Richard Guenther <rguenther@suse.de>
12235 * tree-ssa-structalias.c (handle_ptr_arith): Correctly handle
12236 negative or non-representable offsets.
12238 2008-06-03 H.J. Lu <hongjiu.lu@intel.com>
12240 * config/i386/i386.c (ix86_gen_leave): New.
12241 (ix86_gen_pop1): Likewise.
12242 (ix86_gen_add3): Likewise.
12243 (ix86_gen_sub3): Likewise.
12244 (ix86_gen_sub3_carry): Likewise.
12245 (ix86_gen_one_cmpl2): Likewise.
12246 (ix86_gen_monitor): Likewise.
12247 (override_options): Initialize ix86_gen_leave, ix86_gen_pop1,
12248 ix86_gen_add3, ix86_gen_sub3, ix86_gen_sub3_carry,
12249 ix86_gen_one_cmpl2 and ix86_gen_monitor.
12250 (ix86_file_end): Use mov%z0 instead of mov{q}/mov{l}.
12251 (output_set_got): Use mov%z0, pop%z0 and add%z0 instead of
12252 mov{q}/mov{l}, pop{q}/pop{l} and add{q}/add{l}.
12253 (ix86_expand_epilogue): Updated.
12254 (print_operand): Handle integer register operand for 'z'.
12255 (ix86_expand_strlensi_unroll_1): Likewise.
12256 (ix86_expand_strlen): Likewise.
12257 (ix86_expand_builtin): Likewise.
12258 (x86_output_mi_thunk): Use mov%z1 and add%z1 instead of
12259 mov{q}/mov{l} and add{q}/add{l}.
12261 2008-06-03 Kai Tietz <kai.tietz@onevision.com>
12263 * config/i386/i386.md (P): New mode iterator.
12264 (SFmode push_operand splitter): Macroize DImode and SImode pushes
12265 using P mode iterator.
12266 (DFmode push_operand splitter): Ditto.
12267 (XFmode push_operand splitter): Ditto.
12268 (DFmode float_extend SFmode push_operand splitter): Ditto.
12269 (XFmode float_extend SFmode push_operand splitter): Do not generate
12270 SImode pushes for 64bit target. Macroize Dimode and SImode
12271 pushes using P mode iterator.
12272 (XFmode float_extend DFmode push_operand splitter): Ditto.
12274 2008-06-03 Kai Tietz <kai.tietz@onevision.com>
12276 * config/i386/i386-protos.h (ix86_reg_parm_stack_space): New.
12277 * config/i386/i386.h (ix86_reg_parm_stack_space): Removed prototype.
12278 * config/i386/i386.c (ix86_reg_parm_stack_space): Changed
12279 return type to int.
12280 (ix86_call_abi_override): Remove check for call_used_regs.
12282 2008-06-03 Richard Guenther <rguenther@suse.de>
12284 * tree-ssa-structalias.c (find_func_aliases): Add constraints
12285 for the lhs of calls if the return type contains pointers.
12287 2008-06-03 Kai Tietz <kai.tietz@onevision.com>
12289 * doc/tm.texi (OVERRIDE_ABI_FORMAT): New.
12290 * doc/extend.texi (ms_abi,sysv_abi): New attribute description.
12291 * function.c (allocate_struct_function): Use of OVERRIDE_ABI_FORMAT.
12292 * config/i386/cygming.h (TARGET_64BIT_MS_ABI): Make use
12293 of cfun and DEFAULT_ABI to deceide abi mode.
12294 (DEFAULT_ABI): New.
12295 (REG_PARM_STACK_SPACE): Removed.
12296 (OUTGOING_REG_PARM_STACK_SPACE): Removed.
12297 (STACK_BOUNDARY): Use default target to deceide stack boundary.
12298 * config/i386/i386-protos.h (ix86_cfun_abi): New.
12299 (ix86_function_abi): Likewise.
12300 (ix86_function_type_abi): Likewise.
12301 (ix86_call_abi_override): Likewise.
12302 * confid/i386/i386.md (SSE_REGPARM_MAX): Replaced by abi
12303 specific define X86_64_SSE_REGPARM_MAX/X64_SSE_REGPARM_MAX.
12304 * config/i386/i386.c (override_options): Replace TARGET_64BIT_MS_ABI.
12305 (X86_64_VARARGS_SIZE): Replace REGPARM_MAX and SSE_REGPARM_MAX by abi
12307 (X86_64_REGPARM_MAX): New.
12308 (X86_64_SSE_REGPARM_MAX): New.
12309 (X64_REGPARM_MAX): New.
12310 (X64_SSE_REGPARM_MAX): New.
12311 (X86_32_REGPARM_MAX): New.
12312 (X86_32_SSE_REGPARM_MAX): New.
12313 (ix86_handle_cconv_attribute): Replace TARGET_64BIT_MS_ABI.
12314 (ix86_function_regparm): Handle user calling abi.
12315 (ix86_function_arg_regno_p): Replace TARGET_64BIT_MS_ABI
12316 by DEFAULT_ABI versus SYSV_ABI check.
12317 (ix86_reg_parm_stack_space): New.
12318 (ix86_function_type_abi): New.
12319 (ix86_call_abi_override): New.
12320 (ix86_function_abi): New.
12321 (ix86_cfun_abi): New.
12322 (init_cumulative_args): Call abi specific initialization.
12323 (function_arg_advance): Remove TARGET_64BIT_MS_ABI.
12324 (function_arg_64): Extend SSE_REGPARM_MAX check.
12325 (function_arg (): Remove TARGET_64BIT_MS_ABI.
12326 (ix86_pass_by_reference): Likewise.
12327 (ix86_function_value_regno_p): Likewise.
12328 (function_value_64): Replace REGPARM_MAX, and SSE_REGPARM_MAX.
12329 (ix86_function_value_1): Replace TARGET_64BIT_MS_ABI.
12330 (return_in_memory_ms_64): Replace TARGET_64BIT_MS_ABI.
12331 (ix86_build_builtin_va_list): Replace TARGET_64BIT_MS_ABI.
12332 (setup_incoming_varargs_64): Adjust regparm for call abi.
12333 (ix86_setup_incoming_varargs): Replace TARGET_64BIT_MS_ABI.
12334 (ix86_va_start): Likewise.
12335 (ix86_gimplify_va_arg): Likewise.
12336 (ix86_expand_prologue): Likewise.
12337 (output_pic_addr_const): Likewise.
12338 (ix86_init_machine_status): Initialize call_abi by DEFAULT_ABI.
12339 (x86_this_parameter): Replace TARGET_64BIT_MS_ABI.
12340 (x86_output_mi_thunk): Likewise.
12341 (x86_function_profiler): Likewise.
12342 * config/i386/i386.h (TARGET_64BIT_MS_ABI): Use ix64_cfun_abi.
12343 (SYSV_ABI, MS_ABI): New constants.
12344 (DEFAULT_ABI): New.
12345 (init_regs): Add prototype of function in regclass.c file.
12346 (OVERRIDE_ABI_FORMAT): New.
12347 (CONDITIONAL_REGISTER_USAGE): Remove TARGET_64BIT_MS_ABI part.
12348 (REG_PARM_STACK_SPACE): Use ix86_reg_parm_stack_space.
12349 (OUTGOING_REG_PARM_STACK_SPACE): New.
12350 (ix86_reg_parm_stack_space): New prototype.
12351 (CUMULATIVE_ARGS): Add call_abi member.
12352 (machine_function): Add call_abi member.
12353 * config/i386/mingw32.h (EXTRA_OS_CPP_BUILTINS): Replace
12354 TARGET_64BIT_MS_ABI by DEFAULT_ABI compare to MS_ABI.
12356 2008-06-02 Andy Hutchinson <hutchinsonandy@aim.com>
12359 * config/avr/avr.c (TARGET_BUILTIN_SETJMP_FRAME_VALUE): Redefine.
12360 (avr_builtin_setjmp_frame_value): New function.
12361 * config/avr/avr.md (nonlocal_goto_receiver): Define.
12362 (nonlocal_goto): Define.
12364 2008-06-02 Richard Sandiford <rdsandiford@googlemail.com>
12366 * config/mips/mips.c (mips_emit_loadgp): Return early if
12367 there is nothing do to, otherwise emit a blockage if
12368 !TARGET_EXPLICIT_RELOCS || crtl->profile.
12369 * config/mips/mips.md (loadgp_blockage): Use SI rather than DI.
12371 2008-06-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
12373 * configure.ac: Drop unneeded backslash ending up in config.in.
12374 * acinclude.m4: Likewise.
12375 * config.in: Regenerate.
12377 2008-05-26 Jan Hubicka <jh@suse.cz>
12379 * predict.c (maybe_hot_frequency_p): Break out of...
12380 (maybe_hot_bb_p): ... here.
12381 (maybe_hot_edge_p): New.
12382 * tree-ssa-coalesce.c (coalesce_cost_edge): Compute cost based on edge.
12383 * basic-block.h (maybe_hot_edge_p): Declare.
12385 2008-05-31 Uros Bizjak <ubizjak@gmail.com>
12387 * config/i386/i386.md (*cmpfp_<mode>): Enable for optimize_size.
12388 (*cmpfp_<mode>_cc): Ditto.
12389 (*fp_jcc_8<mode>_387): Ditto.
12390 (*fop_<MODEF:mode>_2_i387): Ditto.
12391 (*fop_<MODEF:mode>_3_i387): Ditto.
12392 (*fop_xf_2_i387): Ditto.
12393 (*fop_xf_3_i387): Ditto.
12395 2008-06-02 Tomas Bily <tbily@suse.cz>
12397 * tree-ssa-ifcombine.c (get_name_for_bit_test): Use CONVERT_EXPR_P.
12399 2008-06-01 Richard Sandiford <rdsandiford@googlemail.com>
12401 * config/mips/mips.c (mips_valid_offset_p): New function.
12402 (mips_valid_lo_sum_p): Likewise.
12403 (mips_classify_address): Use them.
12404 (mips_force_address): New function.
12405 (mips_legitimize_address): Use it.
12406 * config/mips/mips.md (MOVE128): New mode iterator.
12407 (movtf): Require TARGET_64BIT. Remove empty strings.
12408 (*movtf_internal): Rename to...
12409 (*movtf): ...this and require !TARGET_MIPS16. Use "m" instead
12410 of "R" and use {,fp}{load,store} attributes instead of "multi".
12411 Use a separate define_split.
12412 (*movtf_mips16): New pattern.
12414 2008-06-01 Richard Sandiford <rdsandiford@googlemail.com>
12416 * config/mips/mips-protos.h (mips_expand_before_return): Declare.
12417 * config/mips/mips.c (mips_expand_before_return): New function.
12418 (mips_expand_epilogue): Call it.
12419 * config/mips/mips.md (return): Turn into a define_expand.
12420 (*return): New insn.
12422 2008-06-01 Richard Sandiford <rdsandiford@googlemail.com>
12424 * rtl.h (emit_clobber, gen_clobber, emit_use, gen_use): Declare.
12425 * emit-rtl.c (emit_clobber, gen_clobber, emit_use, gen_use): New
12426 functions. Do not emit uses and clobbers of CONCATs; individually
12427 use and clobber their operands.
12428 * builtins.c (expand_builtin_setjmp_receiver): Use emit_clobber,
12429 gen_clobber, emit_use and gen_use.
12430 (expand_builtin_longjmp, expand_builtin_nonlocal_goto): Likewise.
12431 (expand_builtin_return): Likewise.
12432 * cfgbuild.c (count_basic_blocks): Likewise.
12433 * cfgrtl.c (rtl_flow_call_edges_add): Likewise.
12434 * explow.c (emit_stack_restore): Likewise.
12435 * expmed.c (extract_bit_field_1): Likewise.
12436 * expr.c (convert_move, emit_move_complex_parts): Likewise.
12437 (emit_move_multi_word, store_constructor): Likewise.
12438 * function.c (do_clobber_return_reg, do_use_return_reg): Likewise.
12439 (thread_prologue_and_epilogue_insns): Likewise.
12440 * lower-subreg.c (resolve_simple_move): Likewise.
12441 * optabs.c (widen_operand, expand_binop): Likewise.
12442 (expand_doubleword_bswap, emit_no_conflict_block): Likewise.
12443 * reload.c (find_reloads): Likewise.
12444 * reload1.c (eliminate_regs_in_insn): Likewise.
12445 * stmt.c (expand_nl_goto_receiver): Likewise.
12446 * config/alpha/alpha.md (builtin_longjmp): Likewise.
12447 * config/arc/arc.md (*movdi_insn, *movdf_insn): Likewise.
12448 * config/arm/arm.c (arm_load_pic_register): Likewise.
12449 (thumb1_expand_epilogue, thumb_set_return_address): Likewise.
12450 * config/arm/arm.md (untyped_return): Likewise.
12451 * config/arm/linux-elf.h (PROFILE_HOOK): Likewise.
12452 * config/avr/avr.c (expand_prologue): Likewise.
12453 * config/bfin/bfin.c (do_unlink): Likewise.
12454 * config/bfin/bfin.md (<optab>di3, adddi3, subdi3): Likewise.
12455 * config/cris/cris.c (cris_expand_prologue): Likewise.
12456 * config/darwin.c (machopic_indirect_data_reference): Likewise.
12457 (machopic_legitimize_pic_address): Likewise.
12458 * config/frv/frv.c (frv_frame_access, frv_expand_epilogue): Likewise.
12459 (frv_ifcvt_modify_insn, frv_expand_mdpackh_builtin): Likewise.
12460 * config/i386/i386.c (ix86_expand_vector_move_misalign): Likewise.
12461 (ix86_expand_convert_uns_didf_sse): Likewise.
12462 (ix86_expand_vector_init_general): Likewise.
12463 * config/ia64/ia64.md (eh_epilogue): Likewise.
12464 * config/iq2000/iq2000.c (iq2000_expand_epilogue): Likewise.
12465 * config/m32c/m32c.c (m32c_emit_eh_epilogue): Likewise.
12466 * config/m32r/m32r.c (m32r_reload_lr): Likewise.
12467 (config/iq2000/iq2000.c): Likewise.
12468 * config/mips/mips.md (fixuns_truncdfsi2): Likewise.
12469 (fixuns_truncdfdi2, fixuns_truncsfsi2, fixuns_truncsfdi2): Likewise.
12470 (builtin_longjmp): Likewise.
12471 * config/mn10300/mn10300.md (call, call_value): Likewise.
12472 * config/pa/pa.md (nonlocal_goto, nonlocal_longjmp): Likewise.
12473 * config/pdp11/pdp11.md (abshi2): Likewise.
12474 * config/rs6000/rs6000.c (rs6000_emit_move): Likewise.
12475 * config/s390/s390.c (s390_emit_prologue): Likewise.
12476 * config/s390/s390.md (movmem_long, setmem_long): Likewise.
12477 (cmpmem_long, extendsidi2, zero_extendsidi2, udivmoddi4): Likewise.
12478 (builtin_setjmp_receiver, restore_stack_nonlocal): Likewise.
12479 * config/sh/sh.c (prepare_move_operands): Likewise.
12480 (output_stack_adjust, sh_expand_epilogue): Likewise.
12481 (sh_set_return_address, sh_expand_t_scc): Likewise.
12482 * config/sparc/sparc.c (load_pic_register): Likewise.
12483 * config/sparc/sparc.md (untyped_return, nonlocal_goto): Likewise.
12484 * config/spu/spu.c (spu_expand_epilogue): Likewise.
12485 * config/v850/v850.c (expand_epilogue): Likewise.
12487 2008-05-31 Anatoly Sokolov <aesok@post.ru>
12489 * config/avr/avr.md (UNSPECV_WRITE_SP_IRQ_ON): New constants.
12490 (UNSPECV_WRITE_SP_IRQ_OFF): (Ditto.).
12491 (movhi_sp_r_irq_off, movhi_sp_r_irq_on): New insn.
12492 * config/avr/avr.c (expand_prologue, expand_epilogue): Use
12493 movhi_sp_r_irq_off and movhi_sp_r_irq_on insns for writing to the
12494 stack pointer register.
12495 (output_movhi): Remove code for interrupt specific writing to the
12496 stack pointer register.
12498 2008-05-31 Richard Guenther <rguenther@suse.de>
12500 PR tree-optimization/34244
12501 * fold-const.c (tree_expr_nonnegative_warnv_p): Do not ask VRP.
12502 (tree_expr_nonzero_warnv_p): Likewise.
12503 * tree-vrp.c (vrp_expr_computes_nonnegative): Call
12504 ssa_name_nonnegative_p.
12505 (vrp_expr_computes_nonzero): Call ssa_name_nonzero_p.
12506 (extract_range_from_unary_expr): Use vrp_expr_computes_nonzero,
12507 not tree_expr_nonzero_warnv_p.
12509 PR tree-optimization/36262
12511 2007-11-29 Zdenek Dvorak <ook@ucw.cz>
12513 PR tree-optimization/34244
12514 * tree-vrp.c (adjust_range_with_scev): Clear scev cache.
12515 (record_numbers_of_iterations): New function.
12516 (execute_vrp): Cache the numbers of iterations of loops.
12517 * tree-scalar-evolution.c (scev_reset_except_niters):
12519 (scev_reset): Use scev_reset_except_niters.
12520 * tree-scalar-evolution.h (scev_reset_except_niters): Declare.
12522 2008-05-31 Bernd Schmidt <bernd.schmidt@analog.com>
12524 * config/bfin/bfin.h (TARGET_CPU_CPP_BUILTINS): Define
12525 __WORKAROUND_RETS when appropriate.
12527 2008-05-31 Uros Bizjak <ubizjak@gmail.com>
12529 * config/i386/i386.md (*fop_<mode>_comm_mixed): Macroize from
12530 *fop_sf_comm_mixed and *fop_df_comm_mixed insn patterns using MODEF
12532 (*fop_<mode>_comm_sse): Macroize from *fop_sf_comm_sse and
12533 *fop_df_comm_sse insn patterns using MODEF mode iterator.
12534 (*fop_<mode>_comm_i387): Macroize from *fop_sf_comm_i387 and
12535 *fop_df_comm_i387 insn patterns using MODEF mode iterator.
12536 (*fop_<mode>_1_mixed): Macroize from *fop_sf_1_mixed and
12537 *fop_df_1_mixed insn patterns using MODEF mode iterator.
12538 (*fop_<mode>_1_sse): Macroize from *fop_sf_1_sse and
12539 *fop_df_1_sse insn patterns using MODEF mode iterator.
12540 (*fop_<mode>_1_i387): Macroize from *fop_sf_1_i387 and
12541 *fop_df_1_i387 insn patterns using MODEF mode iterator.
12542 (*fop_<MODEF:mode>_2_i387): Macroize from *fop_sf_2<mode>_i387 and
12543 *fop_df_2<mode>_i387 insn patterns using MODEF mode iterator.
12544 (*fop_<MODEF:mode>_3_i387): Macroize from *fop_sf_3<mode>_i387 and
12545 *fop_df_3<mode>_i387 insn patterns using MODEF mode iterator.
12546 (*fop_xf_2_i387): Rename from *fop_xf_2<mode>_i387.
12547 (*fop_xf_3_i387): Rename from *fop_xf_3<mode>_i387.
12548 (*fop_xf_4_i387): Use <MODE> for mode attribute.
12549 (*fop_xf_5_i387): Ditto.
12550 (*fop_xf_6_i387): Ditto.
12552 2008-05-30 Richard Guenther <rguenther@suse.de>
12554 * builtins.c (build_string_literal): Avoid generating
12555 a non-gimple_val result.
12557 2008-05-30 DJ Delorie <dj@redhat.com>
12559 * exec-tool.in: Use an environment variable (private) instead of a
12560 file (shared) as a semaphore, so as to not break parallel builds.
12562 2008-05-30 Steven Bosscher <stevenb.gcc@gmail.com>
12564 * optabs.c (maybe_encapsulate_block): Remove.
12565 (emit_libcall_block): Adjust accordingly.
12566 * optabs.h (maybe_encapsulate_block): Remove prototype.
12568 * config/rs6000/rs6000.c (rs6000_legitimize_tls_address):
12569 Don't use maybe_encapsulate_block.
12571 2008-05-30 Steven Bosscher <stevenb.gcc@gmail.com>
12573 * config/rs6000/rs6000.c (rs6000_legitimize_address,
12574 rs6000_legitimize_reload_address, rs6000_emit_move): Make sure an
12575 rtx is a SYMBOL_REF before calling get_pool_constant.
12577 2008-05-30 Eric Botcazou <ebotcazou@adacore.com>
12579 * fold-const.c (fold_unary) <CASE_CONVERT>: Add ??? comment.
12581 2008-05-30 Danny Smith <dannysmith@users.sourceforge.net>
12583 * incpath.c: Use HOST_LACKS_INODE_NUMBERS conditional
12584 rather than OS names to choose INO_T_EQ definition.
12585 (DIRS_EQ) [!INO_T_EQ]: Don't worry about case in comparison.
12586 (add_path) [!INO_T_EQ]: Use lrealpath to fill canonical_name field.
12588 2008-05-29 Daniel Franke <franke.daniel@gmail.com>
12591 * config/darwin-f.c: New.
12592 * config/t-darwin: Added rule to build darwin-f.o.
12593 * config.gcc: Defined new variable, fortran_target_objs.
12594 (*-*-darwin*): Set fortran_target_objs.
12595 * Makefile.in: Defined new variable FORTRAN_TARGET_OBJS.
12596 * configure.ac: Substitute fortran_target_objs, set FORTRAN_TARGET_OBJS.
12597 * configure: Regenerated.
12599 2008-05-29 H.J. Lu <hongjiu.lu@intel.com>
12602 * config/i386/i386.c (ix86_function_arg_boundary): Convert to
12603 canonical type if needed.
12605 2008-05-29 Eric Botcazou <ebotcazou@adacore.com>
12607 * tree-nested.c (check_for_nested_with_variably_modified): Fix typo.
12609 2008-05-29 Richard Guenther <rguenther@suse.de>
12611 PR tree-optimization/36343
12612 PR tree-optimization/36346
12613 PR tree-optimization/36347
12614 * tree-flow.h (clobber_what_p_points_to): Declare.
12615 * tree-ssa-structalias.c (set_uids_in_ptset): Whether the
12616 pointed-to variable is dereferenced is irrelevant to whether
12617 the pointer can access the pointed-to variable.
12618 (clobber_what_p_points_to): New function.
12619 * tree-ssa-alias.c (set_initial_properties): Use it.
12620 * tree-ssa.c (verify_flow_sensitive_alias_info): Adjust
12621 call clobber check for NMTs.
12623 2008-05-28 Seongbae Park <seongbae.park@gmail.com>
12625 * value-prof.c (tree_ic_transform): Use HOST_WIDEST_INT_PRINT_DEC
12626 for printing gcov_type.
12628 2008-05-28 Seongbae Park <seongbae.park@gmail.com>
12630 * tree-ssa-propagate.c (set_rhs): Preserve the histogram
12631 and the eh region information.
12632 * value-prof.c (gimple_move_stmt_histograms): New function.
12633 * value-prof.h (gimple_move_stmt_histograms): New function declaration.
12635 2008-05-28 Andreas Tobler <a.tobler@schweiz.org>
12637 * config/pa/pa.md: Remove extern frame_pointer_needed declaration.
12639 2008-05-28 Seongbae Park <seongbae.park@gmail.com>
12641 * value-prof.c (tree_ic_transform): Print counts.
12642 * tree-profile.c (tree_gen_ic_func_profiler):
12643 Clear __gcov_indreict_call_callee variable to avoid misattribution
12646 2008-05-28 Rafael Espíndola <espindola@google.com>
12648 * see.c (see_def_extension_not_merged): Use copy_rtx_if_shared to avoid
12651 2008-05-28 Richard Guenther <rguenther@suse.de>
12653 PR tree-optimization/36339
12654 * tree-ssa-alias.c (set_initial_properties): Move pt_anything
12655 and clobbering code out of the loop.
12657 2008-05-28 Andreas Krebbel <krebbel1@de.ibm.com>
12659 * config/s390/constraints.md ('b', 'C', 'D', 'e'): New constraint
12662 * config/s390/s390.c (s390_compare_and_branch_condition_mask,
12663 s390_contiguous_bitmask_p, s390_symref_operand_p,
12664 s390_check_symref_alignment, s390_reload_larl_operand,
12665 s390_reload_symref_address): New functions.
12666 (s390_branch_condition_mnemonic): Support compare and branch
12668 (s390_mem_constraint): Avoid symrefs to accepted by the 'T'
12669 and 'W' constraints.
12670 (s390_secondary_reload): Add secondary reloads for unaligned
12671 symbol refs or symbol refs to floating point or QI/TI mode
12673 (legitimate_address_p): Accept symbol references as addresses.
12674 (s390_expand_insv): Use rotate and insert selected bits
12675 instruction for insv when building for z10.
12676 (print_operand_address): Handle symbol ref addresses.
12677 (print_operand): Output modifier 'c' added for signed byte values.
12678 (s390_encode_section_info): Mark symbol refs with
12679 SYMBOL_FLAG_NOT_NATURALLY_ALIGNED if appropriate.
12681 * config/s390/s390.md (SIL,RRS,RIS): New instruction formats added.
12682 (length attribute): RRF, RRR have 4 byte length.
12683 (FPALL, INTALL): New mode iterators added.
12684 (*tstdi_sign, *cmpdi_ccs_sign, *cmpsi_ccs_sign,
12685 *cmp<mode>_ccs, *cmpdi_ccu_zero, *cmpdi_ccu, *cmpsi_ccu, *cmphi_ccu,
12686 *movdi_64, *movsi_zarch, *movhi, movmem<mode>, *movmem_short,
12687 *extendsidi2, *extendhidi2_extimm, *extendhisi2_extimm,
12688 *zero_extendsidi2, adddi3, *adddi3_31z, *adddi3_31, addsi3,
12689 *add<mode>3, *add<mode>3_carry1_cc, *add<mode>3_carry2_cc,
12690 *add<mode>3_cc, *add<mode>3_imm_cc, *muldi3_sign, muldi3,
12691 *mulsi3_sign, mulsi3, mulsidi3): Patterns enhanced with z10
12693 (*cmphi_ccs_z10, *cmpdi_ccs_signhi_rl, *cmpsi_ccu_zerohi_rlsi,
12694 *cmp<GPR:mode>_ccu_zerohi_rldi, *cmp_and_br_signed_<mode>,
12695 *cmp_and_br_unsigned_<mode>, reload<INTALL:mode><P:mode>_tomem_z10,
12696 reload<INTALL:mode><P:mode>_toreg_z10,
12697 reload<FPALL:mode><P:mode>_tomem_z10,
12698 reload<FPALL:mode><P:mode>_toreg_z10,
12699 reload<P:mode>_larl_odd_addend_z10, *execute_rl, *insv<mode>_z10,
12700 *insv<mode>_z10_noshift, *insv<mode>_or_z10_noshift,
12701 *zero_extendhi<mode>2_z10, *cmp_and_trap_signed_int<mode>,
12702 *cmp_and_trap_unsigned_int<mode>, prefetch): New pattern or expander
12704 (movmem, clrmem, cmpmem): New splitters added.
12706 * config/s390/predicates.md (larl_operand): Use
12707 SYMBOL_REF_FLAGS (op) & SYMBOL_FLAG_ALIGN1 replaced with
12708 SYMBOL_REF_ALIGN1_P.
12709 (s390_signed_integer_comparison,
12710 s390_unsigned_integer_comparison): New predicates.
12712 * config/s390/s390-protos.h (s390_check_symref_alignment,
12713 s390_contiguous_bitmask_p, s390_reload_larl_operand,
12714 s390_reload_symref_address,
12715 s390_compare_and_branch_condition_mask): Prototypes added.
12717 * config/s390/s390.h (TARGET_MEM_CONSTRAINT,
12718 SYMBOL_REF_ALIGN1_P, SYMBOL_FLAG_NOT_NATURALLY_ALIGNED,
12719 SYMBOL_REF_NOT_NATURALLY_ALIGNED_P): Macro definition added.
12721 2008-05-28 Andreas Krebbel <krebbel1@de.ibm.com>
12723 * config/s390/s390.c (z10_cost): New cost function for z10.
12724 (s390_handle_arch_option, override_options): Support -march=z10 switch.
12725 (s390_issue_rate): Adjust issue rate for z10.
12726 * config/s390/s390.h (processor_type): Add PROCESSOR_2097_Z10.
12727 (processor_flags): Add PF_Z10.
12728 (TARGET_CPU_Z10, TARGET_Z10): New macro definitions.
12729 * config/s390/s390.md (cpu, cpu_facility attributes): Add z10.
12730 * gcc/config.gcc: Add z10.
12732 2008-05-28 Richard Guenther <rguenther@suse.de>
12734 PR tree-optimization/36291
12735 * tree-flow. h (struct gimple_df): Remove var_anns member.
12736 * tree-flow-inline.h (gimple_var_anns): Remove.
12737 (var_ann): Simplify.
12738 * tree-dfa.c (create_var_ann): Simplify.
12739 (remove_referenced_var): Clear alias info from var_anns of globals.
12740 * tree-ssa.c (init_tree_ssa): Do not allocate var_anns.
12741 (delete_tree_ssa): Clear alias info from var_anns of globals.
12742 Do not free var_anns.
12743 (var_ann_eq): Remove.
12744 (var_ann_hash): Likewise.
12746 2008-05-28 Mark Shinwell <shinwell@codesourcery.com>
12748 * config/mips/mips.c (mips_cpu_info_table): Add loongson2e
12749 and loongson2f entries.
12750 (mips_rtx_cost_data): Add entries for Loongson-2E/2F.
12751 * config/mips/mips.h (processor_type): Add Loongson-2E
12752 and Loongson-2F entries.
12753 (TARGET_LOONGSON_2E, TARGET_LOONGSON_2F, TARGET_LOONGSON_2EF): New.
12754 (MIPS_ISA_LEVEL_SPEC): Handle Loongson-2E/2F.
12755 * config/mips/mips.md (define_attr cpu): Add loongson2e and loongson2f.
12756 * doc/invoke.texi (MIPS Options): Document loongson2e
12757 and loongson2f processor names.
12759 2008-05-27 H.J. Lu <hongjiu.lu@intel.com>
12763 * config/i386/i386.c (ix86_function_arg_boundary): Use
12764 alignment of canonical type.
12765 (ix86_expand_vector_move): Check unaligned memory access for
12768 2008-05-27 H.J. Lu <hongjiu.lu@intel.com>
12770 * dwarf2out.c (current_fde): Change return type to dw_fde_ref.
12771 Moved to the front of file.
12773 2008-05-27 Xuepeng Guo <xuepeng.guo@intel.com>
12774 H.J. Lu <hongjiu.lu@intel.com>
12776 * dwarf2out.c (current_fde): New.
12778 (lookup_cfa:): Likewise.
12779 (dwarf2out_end_epilogue): Likewise.
12780 (dwarf2out_note_section_used): Likewise.
12782 2008-05-27 Michael Matz <matz@suse.de>
12785 * c.opt (Wenum-compare): New warning option.
12786 * doc/invoke.texi (Warning Options): Document -Wenum-compare.
12788 2008-05-27 Michael Matz <matz@suse.de>
12790 PR middle-end/36326
12791 * tree-gimple.c (is_gimple_mem_rhs): Remove work-around for
12793 * tree-tailcall.c (find_tail_calls): Don't mark calls storing
12794 into memory as tail calls.
12796 2008-05-27 Richard Guenther <rguenther@suse.de>
12798 PR tree-optimization/36339
12799 * tree-ssa-alias.c (set_initial_properties): Escaped pt_anything
12800 pointers cause all addressable variables to be call clobbered.
12802 2008-05-27 Richard Guenther <rguenther@suse.de>
12804 PR tree-optimization/36245
12805 * tree-ssa-address.c (add_to_parts): Deal with non-pointer bases.
12807 2008-05-27 Andreas Krebbel <krebbel1@de.ibm.com>
12809 * config/s390/s390.md: Replace all occurences of the 'm'
12810 constraint with 'RT'.
12812 2008-05-27 Andreas Krebbel <krebbel1@de.ibm.com>
12814 * config/s390/s390.md ("cpu_facility", "enabled"): Attribute
12816 ("*movdi_64dfp", "*movdi_64extimm", "*movdi_64"): Merged into
12818 ("*anddi3_extimm", "*anddi3"): Merged into "*anddi3".
12819 ("*iordi3_extimm", "*iordi3"): Merged into "*iordi3".
12820 ("*xordi3_extimm", "*xordi3"): Merged into "*xordi3".
12822 2008-05-27 Andreas Krebbel <krebbel1@de.ibm.com>
12824 * reload.c: (find_reloads): Skip alternatives according to the
12825 "enabled" attribute. Constify the constraint variable.
12826 * recog.c (get_attr_enabled): Add default implementation.
12827 (extract_insn): Set the alternative_enabled_p array
12828 in the recog_data struct.
12829 (preprocess_constraints, constrain_operands): Skip
12830 alternatives according to the "enabled" attribute
12831 * recog.h (struct recog_data): New field alternative_enabled_p.
12832 (skip_alternative): New inline function.
12833 * regclass.c: (record_operand_costs): Check the "enabled" attribute.
12834 (record_reg_classes): Skip alternative according to the
12835 "enabled" attribute.
12837 * doc/md.texi: Add documention for the "enabled" attribute.
12839 2008-05-27 Andreas Krebbel <krebbel1@de.ibm.com>
12841 * defaults.h (TARGET_MEM_CONSTRAINT): New target macro added.
12842 * postreload.c (reload_cse_simplify_operands): Replace 'm'
12843 constraint with TARGET_MEM_CONSTRAINT.
12844 * recog.c (asm_operand_ok, preprocess_constraints,
12845 constrain_operands): Likewise.
12846 * regclass.c (record_reg_classes): Likewise.
12847 * reload.c (find_reloads, alternative_allows_const_pool_ref): Likewise.
12848 * reload1.c (maybe_fix_stack_asms): Likewise.
12849 * stmt.c (parse_output_constraint, parse_input_constraint): Likewise.
12850 * recog.h: Adjust comment.
12851 * genpreds.c (generic_constraint_letters): Remove 'm' constraint.
12852 * genoutput.c (note_constraint): Don't emit error for 'm' constraint.
12853 * doc/md.texi: Add a note to description of 'm' constraint.
12854 * doc/tm.texi: Document the new TARGET_MEM_CONSTRAINT macro.
12856 2008-05-27 Eric Botcazou <ebotcazou@adacore.com>
12858 * tree-sra.c (sra_type_can_be_decomposed_p) <RECORD_TYPE>: Make sure
12859 that the bitfield is of integral type before testing its precision.
12861 2008-05-27 Trevor Smigiel <trevor_smigiel@playstation.sony.com>
12862 Sa Liu <saliu@de.ibm.com>
12864 * config/spu/spu.c (spu_init_libfuncs): Add __multi3, __divti3,
12865 __modti3, __udivti3, __umodti3 and __udivmodti4.
12866 * config/spu/t-spu-elf (LIB2FUNCS_STATIC_EXTRA): Add files
12867 that implement TImode mul and div functions.
12868 * config/spu/multi3.c: New. Implement __multi3.
12869 * config/spu/divmodti4.c: New. Implement _udivmodti4 and others.
12870 * testsuite/gcc.target/spu/muldivti3.c: New. Test TImode mul and div
12873 2008-05-26 Steven Bosscher <stevenb.gcc@gmail.com>
12875 * config/rs6000/rs6000.c (rs6000_legitimize_tls_address): Generate
12876 new tls_gd_* and tls_ld_* insns instead of an insn sequence.
12877 * config/rs6000/rs6000.md (TLSmode, tls_abi_suffix, tls_insn_suffix,
12878 tls_sysv_suffix): New mode and mode attribute iterators.
12879 (tls_gd_32, tls_gd_64, tls_ld_32, tls_ld_64): Remove.
12880 (lts_gd_aix*, tls_gd_sysv*, tls_ld_aix*, tls_ld_sysv*): New patterns.
12881 (tls_dtprel_*, tls_dtprel_ha_*, tls_dtprel_lo_*, tls_got_dtprel_*,
12882 tls_tprel_*, tls_tprel_ha_*, tls_tprel_lo_*, tls_got_tprel_*,
12883 tls_tls_*): Merge 32 bit and 64 bit variants using aforementioned
12886 2008-05-26 Eric Botcazou <ebotcazou@adacore.com>
12888 PR tree-optimization/36329
12889 * tree.h (CALL_CANNOT_INLINE_P): Add access check.
12890 * tree-gimple.h (CALL_STMT_CANNOT_INLINE_P): New macro.
12891 * cgraphbuild.c (initialize_inline_failed): Use the latter
12892 macro in lieu of the former.
12893 * ipa-inline.c (cgraph_mark_inline): Likewise.
12894 (cgraph_decide_inlining_of_small_function): Likewise.
12895 (cgraph_decide_inlining): Likewise.
12896 (cgraph_decide_inlining_incrementally): Likewise.
12898 2008-05-26 Tristan Gingold <gingold@adacore.com>
12899 Anatoly Sokolov <aesok@post.ru>
12901 * config/avr/avr.md ("call_prologue_saves"): Use hi8(gs())/lo8(gs())
12902 instead of pm_lo8/pm_hi8 to makes this call working on avr6.
12903 * config/avr/avr.c (expand_prologue): Tune "call_prologue"
12904 optimization for 'avr6' architecture.
12906 2008-05-26 Andy Hutchinson <hutchinsonandy@aim.com>
12909 * config/avr/avr.md (*addhi3_zero_extend2): Remove.
12911 2008-05-26 Richard Guenther <rguenther@suse.de>
12913 * tree-ssa-sccvn.c (expr_has_constants): Declare.
12914 (visit_reference_op_load): Initialize VN_INFO->has_constants properly.
12916 2008-05-26 H.J. Lu <hongjiu.lu@intel.com>
12918 PR middle-end/36253
12919 * caller-save.c (insert_restore): Verify alignment of spill space.
12920 (insert_save): Likewise.
12921 * cfgexpand.c (LOCAL_ALIGNMENT): Removed.
12922 * defaults.h (LOCAL_ALIGNMENT): New. Provide default.
12923 (STACK_SLOT_ALIGNMENT): Likewise.
12924 * function.c (LOCAL_ALIGNMENT): Removed.
12925 (get_stack_local_alignment): New.
12926 (assign_stack_local): Use it. Set alignment on stack slot.
12927 (assign_stack_temp_for_type): Use get_stack_local_alignment.
12928 * config/i386/i386.h (LOCAL_ALIGNMENT): Updated.
12929 (STACK_SLOT_ALIGNMENT): New.
12930 * config/i386/i386.c (ix86_local_alignment): Handle caller-save
12931 stack slot in XFmode.
12933 * doc/tm.texi (STACK_SLOT_ALIGNMENT): New.
12935 2008-05-26 Kai Tietz <kai.tietz@onevision.com>
12938 * config/i386/i386.md (allocate_stack_worker_64): Make sure
12939 argument operand in rax isn't removed.
12941 2008-05-26 Richard Guenther <rguenther@suse.de>
12943 PR middle-end/36300
12944 * fold-const.c (extract_muldiv_1): Use TYPE_OVERFLOW_WRAPS,
12945 not TYPE_UNSIGNED. Use TYPE_PRECISION instead of GET_MODE_SIZE.
12947 2008-05-26 Daniel Franke <franke.daniel@gmail.com>
12950 * c-cppbuiltin.c (define__GNUC__): Re-add definition of __GNUG__.
12952 2008-05-26 Dominique Dhumieres <dominiq@lps.ens.fr>
12954 * config/darwin-c.c: Include "incpath.h" instead of "c-incpath.h".
12955 * config/t-darwin: Use "incpath.h" instead of "c-incpath.h".
12957 2008-05-25 Eric Botcazou <ebotcazou@adacore.com>
12959 * tree-nested.c (convert_tramp_reference) <ADDR_EXPR>: Do not
12960 build a trampoline if we don't want one.
12961 * varasm.c (initializer_constant_valid_p) <ADDR_EXPR>: Do not
12962 return zero for nested functions if we don't want a trampoline.
12964 2008-05-26 Daniel Franke <franke.daniel@gmail.com>
12966 * doc/invoke.texi: Added f77, f77-cpp-input to list of file types.
12968 2008-05-26 Daniel Franke <franke.daniel@gmail.com>
12971 * c.opt: Removed undocumented option '-lang-fortran'.
12972 * c-common.h: Removed global variable 'lang_fortran'.
12973 * c-opts.c (c_common_handle_option): Removed code to handle
12974 option '-lang-fortran'. Updated includes.
12975 * c-cppbuiltin.c (c_cpp_builtins): Removed conditional
12976 definition of '__GFORTRAN__'.
12977 (define__GNUC__): Reimplemented to use BASEVER and
12978 cpp_define_formatted.
12979 (builtin_define_with_value_n): Removed.
12980 * c-incpath.h: Renamed to ...
12981 * incpath.h: ... this.
12982 * c-incpath.c: Renamed to ...
12983 * incpath.c: ... this. Updated includes.
12984 * fix-header.c: Updated includes.
12985 * Makefile.in: Replaced c-incpath.[ch] by incpath.[ch].
12986 (c-cppbuiltin.o): Added dependency on and definition of BASEVER.
12987 (OBJ-archive): Added cppdefault.o, incpath.o and prefix.o.
12989 2008-05-25 Eric Botcazou <ebotcazou@adacore.com>
12991 * tree.h: Update the table of flags used on tree nodes.
12992 (TREE_NO_TRAMPOLINE): New accessor for static_flag.
12993 (SAVE_EXPR_RESOLVED_P): Use automatically-built access check.
12994 (FORCED_LABEL): Add access check.
12995 (CALL_EXPR_RETURN_SLOT_OPT): Likewise.
12996 (ASM_INPUT_P): Likewise.
12997 (ASM_VOLATILE_P): Likewise.
12998 (EH_FILTER_MUST_NOT_THROW): Access static_flag directly.
12999 (OMP_SECTION_LAST): Access private_flag directly.
13000 (OMP_RETURN_NOWAIT): Likewise.
13001 (OMP_PARALLEL_COMBINED): Likewise.
13002 (OMP_CLAUSE_PRIVATE_DEBUG): Access public_flag directly.
13003 (OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE): Likewise.
13004 * tree-ssa-propagate.c (STMT_IN_SSA_EDGE_WORKLIST): Access
13005 deprecated_flag directly.
13007 2008-05-25 H.J. Lu <hongjiu.lu@intel.com>
13009 * final.c (frame_pointer_needed): Removed.
13010 * flags.h (frame_pointer_needed): Likewise.
13012 * function.h (rtl_data): Add frame_pointer_needed.
13013 (frame_pointer_needed): New.
13015 2008-05-25 Arthur Loiret <arthur.loiret@u-psud.fr>
13017 * config.gcc (sh2[lbe]*-*-linux*): Allow target.
13019 2008-05-25 Steven Bosscher <stevenb.gcc@gmail.com>
13021 * gcse.c (hash_scan_set): Do not pick up a REG_EQUAL value if
13024 2008-05-25 Alan Modra <amodra@bigpond.net.au>
13026 * c-common.c (strip_array_types): Move function to..
13028 (get_inner_array_type): Delete.
13029 * c-common.h (strip_array_types): Move declaration to..
13031 (get_inner_array_type): Delete.
13032 * config/i386/i386.c (x86_field_alignment): Use strip_array_types.
13033 * config/rs6000/aix.h (ADJUST_FIELD_ALIGN): Likewise.
13034 * config/rs6000/linux64.h (ADJUST_FIELD_ALIGN): Likewise.
13035 * config/pa/pa.c (emit_move_sequence): Likewise.
13037 2008-05-24 H.J. Lu <hongjiu.lu@intel.com>
13039 * config/i386/i386.md (*sse_prologue_save_insn): Set length
13042 2008-05-24 Andy Hutchinson <hutchinsonandy@aim.com>
13044 * function.c: Include target hook for nonlocal_goto frame value.
13046 2008-05-24 Richard Guenther <rguenther@suse.de>
13048 * tree-dfa.c (refs_may_alias_p): Re-instantiate case that a scalar
13049 variable can be only accessed through a pointer or a union.
13051 2008-05-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13053 * builtins.c (fold_builtin_fpclassify): Fix spelling of FP_INFINITE.
13054 * doc/extend.texi: Likewise.
13056 2008-05-23 DJ Delorie <dj@redhat.com>
13058 * config/m32c/jump.md (untyped_call): Add.
13060 * config/m32c/m32c.c (m32c_return_addr_rtx): Change pointer type
13061 for A24 to PSImode.
13062 (m32c_address_cost): Detail costs for indirect offsets.
13064 2008-05-23 Rafael Espíndola <espindola@google.com>
13066 * see.c (see_get_extension_data): Don't use SUBREG_REG to test
13067 if a node is a SUBREG.
13068 (see_analyze_one_def): Don't use SUBREG_REG to test if a node
13071 2008-05-23 Paul Brook <paul@codesourcery.com>
13072 Carlos O'Donell <carlos@codesourcery.com>
13074 * doc/extend.texi: Clarify use of __attribute__((naked)).
13075 * doc/tm.texi: Document TARGET_ALLOCATE_STACK_SLOTS_FOR_ARGS.
13076 * target.h (gcc_target): Add allocate_stack_slots_for_args.
13077 * function.c (use_register_for_decl): Use
13078 targetm.calls.allocate_stack_slots_for_args.
13079 * target-def.h (TARGET_CALLS): Add TARGET_ALLOCATE_STACK_SLOTS_FOR_ARGS.
13080 * config/arm/arm.c (arm_allocate_stack_slots_for_args): New function.
13081 (TARGET_ALLOCATE_STACK_SLOTS_FOR_ARGS): Define.
13083 2008-05-23 Eric Botcazou <ebotcazou@adacore.com>
13085 * expr.c (highest_pow2_factor) <BIT_AND_EXPR>: New case.
13087 2008-05-23 Steven Munroe <sjmunroe@us.ibm.com>
13089 * config/rs6000/darwin-ldouble.c (fmsub): Eliminate the full
13090 PACK/UNPACK between FP_SUB_Q and FD_TRUNC so that the result
13091 is only rounded once.
13093 2008-05-23 Richard Guenther <rguenther@suse.de>
13095 * tree-ssa-operands.c (mark_difference_for_renaming): Use bitmap_xor.
13097 2008-05-23 Uros Bizjak <ubizjak@gmail.com>
13098 Jakub Jelinek <jakub@redhat.com>
13101 * configure.ac: Handle --enable-cld.
13102 * configure: Regenerated.
13103 * config.gcc: Add USE_IX86_CLD to tm_defines for x86 targets.
13104 * config/i386/i386.h (struct machine_function): Add needs_cld field.
13105 (ix86_current_function_needs_cld): New define.
13106 * config/i386/i386.md (UNSPEC_CLD): New unspec volatile constant.
13107 (cld): New isns pattern.
13108 (strmov_singleop, rep_mov, strset_singleop, rep_stos, cmpstrnqi_nz_1,
13109 cmpstrnqi_1, strlenqi_1): Set ix86_current_function_needs_cld flag.
13110 * config/i386/i386.opt (mcld): New option.
13111 * config/i386/i386.c (ix86_expand_prologue): Emit cld insn if
13112 TARGET_CLD and ix86_current_function_needs_cld.
13113 (override_options): Use -mcld by default for 32-bit code if
13116 * doc/install.texi (Options specification): Document --enable-cld.
13117 * doc/invoke.texi (Machine Dependent Options)
13118 [i386 and x86-64 Options]: Add -mcld option.
13119 (Intel 386 and AMD x86-64 Options): Document -mcld option.
13121 2008-05-23 Kai Tietz <kai.tietz@onevison.com>
13122 * config/i386/i386.c (return_in_memory_32): Add ATTRIBUTE_UNUSED.
13123 (return_in_memory_64): Likewise.
13124 (return_in_memory_ms_64): Likewise.
13126 2008-05-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13128 * builtin-types.def (BT_FN_INT_INT_INT_INT_INT_INT_VAR): New.
13129 * builtins.c (fold_builtin_fpclassify): New.
13130 (fold_builtin_varargs): Handle BUILT_IN_FPCLASSIFY.
13131 * builtins.def (BUILT_IN_FPCLASSIFY): New.
13132 * c-common.c (handle_type_generic_attribute): Adjust to accept
13133 fixed arguments before an elipsis.
13134 (check_builtin_function_arguments): Handle BUILT_IN_FPCLASSIFY.
13135 * doc/extend.texi: Document __builtin_fpclassify.
13137 2008-05-22 Aldy Hernandez <aldyh@redhat.com>
13139 * omp-low.c (gate_expand_omp_ssa): Remove.
13140 (pass_expand_omp_ssa): Remove.
13141 (gate_expand_omp): Do not check for flag_openmp_ssa.
13142 * common.opt (-fopenmp-ssa): Remove.
13143 * passes.c (init_optimization_passes): Remove pass_expand_omp_ssa.
13145 2008-05-22 Kaz Kojima <kkojima@gcc.gnu.org>
13147 * config/sh/sh.opt (mfixed-range): New option.
13148 * config/sh/sh-protos.h (sh_fix_range): Declare.
13149 * config/sh/sh.c (sh_fix_range): New function.
13150 * config/sh/sh.h (sh_fixed_range_str): Declare.
13151 (OVERRIDE_OPTIONS): Call sh_fix_range if sh_fixed_range_str
13153 * doc/invoke.texi (SH Options): Document -mfixed-range.
13155 2008-05-22 Kai Tietz <kai.tietz@onevision.com>
13157 * config/i386/sol2-10.h (SUBTARGET_RETURN_IN_MEMORY): Undefine
13158 it before the redeclaration.
13160 2008-05-22 Anatoly Sokolov <aesok@post.ru>
13162 * config/avr/avr.c (get_sequence_length): Add new function.
13163 (expand_prologue, expand_epilogue): Remove duplicate code.
13165 2008-05-22 Rafael Espíndola <espindola@google.com>
13167 * see.c (see_pre_insert_extensions): Use copy_rtx to avoid invalid rtx
13170 2008-05-22 H.J. Lu <hongjiu.lu@intel.com>
13172 * defaults.h (UNITS_PER_SIMD_WORD): Add scalar mode as argument.
13173 * doc/tm.texi (UNITS_PER_SIMD_WORD): Likewise.
13175 * tree-vect-analyze.c (vect_compute_data_ref_alignment): Replace
13176 UNITS_PER_SIMD_WORD with GET_MODE_SIZE (TYPE_MODE (vectype)).
13177 (vect_update_misalignment_for_peel): Likewise.
13178 (vector_alignment_reachable_p): Likewise.
13179 * tree-vect-transform.c (vectorizable_load): Likewise.
13180 * tree-vectorizer.c (vect_supportable_dr_alignment): Likewise.
13181 (get_vectype_for_scalar_type): Pass mode of scalar_type
13182 to UNITS_PER_SIMD_WORD.
13184 * config/arm/arm.h (UNITS_PER_SIMD_WORD): Updated.
13185 * config/i386/i386.h (UNITS_PER_SIMD_WORD): Likewise.
13186 * config/mips/mips.h (UNITS_PER_SIMD_WORD): Likewise.
13187 * config/rs6000/rs6000.h (UNITS_PER_SIMD_WORD): Likewise.
13188 * config/sparc/sparc.h (UNITS_PER_SIMD_WORD): Likewise.
13190 2008-05-22 Ira Rosen <irar@il.ibm.com>
13192 PR tree-optimization/36293
13193 * tree-vect-transform.c (vect_transform_strided_load): Don't check
13194 if the first load must be skipped because of a gap.
13196 2008-05-22 Richard Guenther <rguenther@suse.de>
13198 * tree-dfa.c (refs_may_alias_p): Exit early if possible. Handle
13199 more cases of offset disambiguation that is possible if
13200 strict-aliasing rules apply.
13201 * tree-ssa-loop-im.c (mem_refs_may_alias_p): Use refs_may_alias_p
13202 for basic offset and type-based disambiguation.
13204 2008-05-21 H.J. Lu <hongjiu.lu@intel.com>
13206 * config/i386/i386.c (ix86_expand_vector_init_one_var): Use
13207 ix86_expand_vector_set on V16QImode for SSE4.1.
13209 2008-05-21 Tom Tromey <tromey@redhat.com>
13211 * c.opt (Wimport): Mark as undocumented.
13212 * doc/invoke.texi (Option Summary): Don't mention -Wimport or
13214 (Warning Options): Likewise.
13215 * doc/cppopts.texi: Don't mention -Wimport.
13217 2008-05-21 Sebastian Pop <sebastian.pop@amd.com>
13219 PR tree-optimization/36287
13220 PR tree-optimization/36286
13221 * lambda-code.c (build_access_matrix): Do not use the loop->num
13222 for computing the number of induction variables: use the loop depth
13225 2008-05-21 Kai Tietz <kai.tietz@onevision.com>
13228 * config/i386/cygming.h (ASM_OUTPUT_LABELREF): Honor
13229 option -f(no-)leading-underscore.
13231 2008-05-21 H.J. Lu <hongjiu.lu@intel.com>
13233 * config/i386/i386.c (ix86_expand_vector_init_general): Use
13234 GET_MODE_NUNITS (mode).
13236 2008-05-21 Peter Bergner <bergner@vnet.ibm.com>
13238 * doc/invoke.texi: Add cpu_type's 464 and 464fp.
13239 (-mmulhw): Add 464 to description.
13240 (-mdlmzb): Likewise.
13241 * config.gcc: Handle --with-cpu=464 and --with-cpu=464fp.
13242 * config/rs6000/rs6000.c (processor_target_table): Add 464 and
13244 * config/rs6000/rs6000.h (ASM_CPU_SPEC): Add 464 and 464fp support.
13245 * config/rs6000/t-fprules (MULTILIB_MATCHES_FLOAT): Include -mcpu=464.
13246 * config/rs6000/rs6000.md: Update comments for 464.
13248 2008-05-21 Janis Johnson <janis187@us.ibm.com>
13250 * doc/sourcebuild.texi (Test Directives): Add dg-xfail-run-if.
13252 2008-05-21 H.J. Lu <hongjiu.lu@intel.com>
13254 * config/i386/sse.md (vec_extractv4sf): Removed.
13255 (vec_extractv2df): Likewise.
13256 (vec_extractv2di): Likewise.
13257 (vec_extractv4si): Likewise.
13258 (vec_extractv8hi): Likewise.
13259 (vec_extractv16qi): Likewise.
13260 (vec_extract<mode>): New.
13262 2008-05-21 H.J. Lu <hongjiu.lu@intel.com>
13264 * config/i386/sse.md (vec_setv4sf): Removed.
13265 (vec_setv2df): Likewise.
13266 (vec_setv2di): Likewise.
13267 (vec_setv4si): Likewise.
13268 (vec_setv8hi): Likewise.
13269 (vec_setv16qi): Likewise.
13270 (vec_set<mode>): New.
13272 2008-05-21 H.J. Lu <hongjiu.lu@intel.com>
13274 * config/i386/i386.c (ix86_expand_vector_init_general): Remove
13275 goto for vec_concat and vec_interleave.
13277 2008-05-21 H.J. Lu <hongjiu.lu@intel.com>
13279 * config/i386/sse.md (vec_initv4sf): Removed.
13280 (vec_initv2df): Likewise.
13281 (vec_initv2di): Likewise.
13282 (vec_initv4si): Likewise.
13283 (vec_initv8hi): Likewise.
13284 (vec_initv16qi): Likewise.
13285 (vec_init<mode>): New.
13287 2008-05-21 Joseph Myers <joseph@codesourcery.com>
13289 * collect2.c (find_a_file): Use IS_ABSOLUTE_PATH.
13291 2008-05-21 Tom Tromey <tromey@redhat.com>
13293 * ggc-zone.c (lookup_page_table_if_allocated): New function.
13294 (zone_find_object_offset): Likewise.
13295 (gt_ggc_m_S): Likewise.
13296 (highest_bit): Likewise.
13297 * ggc-page.c (gt_ggc_m_S): New function.
13298 * stringpool.c (string_stack): Remove.
13299 (init_stringpool): Update.
13300 (ggc_alloc_string): Use ggc_alloc.
13301 (maybe_delete_ident): New function.
13302 (ggc_purge_stringpool): Likewise.
13303 (gt_ggc_m_S): Remove.
13304 * ggc-common.c (ggc_protect_identifiers): New global.
13305 (ggc_mark_roots): Call ggc_purge_stringpool. Use
13306 ggc_protect_identifiers.
13307 * ggc.h (ggc_protect_identifiers): Declare.
13308 (gt_ggc_m_S): Update.
13309 (ggc_purge_stringpool): Declare.
13310 * toplev.c (compile_file): Set and reset ggc_protect_identifiers.
13311 * gengtype.c (write_types_process_field) <TYPE_STRING>: Remove
13313 (write_root): Cast gt_ggc_m_S to gt_pointer_walker.
13315 2008-05-21 David S. Miller <davem@davemloft.net>
13317 * config.gcc (sparc-*-linux*): Always include sparc/t-linux in
13320 2008-05-21 Eric Botcazou <ebotcazou@adacore.com>
13322 * cfgexpand.c (tree_expand_cfg): Zap the EH throw statement table
13325 2008-05-20 David Daney <ddaney@avtrex.com>
13327 * config/mips/mips.md (UNSPEC_SYNC_NEW_OP_12,
13328 UNSPEC_SYNC_OLD_OP_12, UNSPEC_SYNC_EXCHANGE_12): New define_constants.
13329 (UNSPEC_SYNC_EXCHANGE, UNSPEC_MEMORY_BARRIER, UNSPEC_SET_GOT_VERSION,
13330 UNSPEC_UPDATE_GOT_VERSION): Renumber.
13331 (optab, insn): Add 'plus' and 'minus' to define_code_attr.
13332 (atomic_hiqi_op): New define_code_iterator.
13333 (sync_compare_and_swap<mode>): Call mips_expand_atomic_qihi instead of
13334 mips_expand_compare_and_swap_12.
13335 (compare_and_swap_12): Use MIPS_COMPARE_AND_SWAP_12 instead of
13336 MIPS_COMPARE_AND_SWAP_12_0. Pass argument to MIPS_COMPARE_AND_SWAP_12.
13337 (sync_<optab><mode>, sync_old_<optab><mode>,
13338 sync_new_<optab><mode>, sync_nand<mode>, sync_old_nand<mode>,
13339 sync_new_nand<mode>): New define_expands for HI and QI mode operands.
13340 (sync_<optab>_12, sync_old_<optab>_12, sync_new_<optab>_12,
13341 sync_nand_12, sync_old_nand_12, sync_new_nand_12): New insns.
13342 (sync_lock_test_and_set<mode>): New define_expand for HI and QI modes.
13343 (test_and_set_12): New insn.
13344 (sync_old_add<mode>, sync_new_add<mode>, sync_old_<optab><mode>,
13345 sync_new_<optab><mode>, sync_old_nand<mode>,
13346 sync_new_nand<mode>, sync_lock_test_and_set<mode>): Add early
13347 clobber to operand 0 for SI and DI mode insns.
13348 * config/mips/mips-protos.h (mips_gen_fn_6, mips_gen_fn_5,
13349 mips_gen_fn_4): New typedefs.
13350 (mips_gen_fn_ptrs): Define new union type.
13351 (mips_expand_compare_and_swap_12): Remove declaration.
13352 (mips_expand_atomic_qihi): Declare function.
13353 * config/mips/mips.c (mips_expand_compare_and_swap_12): Rename to...
13354 (mips_expand_atomic_qihi): ... this. Use new generator function
13356 * config/mips/mips.h (MIPS_COMPARE_AND_SWAP_12): Add OPS parameter.
13357 (MIPS_COMPARE_AND_SWAP_12_0): Delete macro.
13358 (MIPS_COMPARE_AND_SWAP_12_ZERO_OP, MIPS_COMPARE_AND_SWAP_12_NONZERO_OP,
13359 MIPS_SYNC_OP_12, MIPS_SYNC_OP_12_NOT_NOP,
13360 MIPS_SYNC_OP_12_NOT_NOT, MIPS_SYNC_OLD_OP_12,
13361 MIPS_SYNC_OLD_OP_12_NOT_NOP, MIPS_SYNC_OLD_OP_12_NOT_NOP_REG,
13362 MIPS_SYNC_OLD_OP_12_NOT_NOT, MIPS_SYNC_OLD_OP_12_NOT_NOT_REG,
13363 MIPS_SYNC_NEW_OP_12, MIPS_SYNC_NEW_OP_12_NOT_NOP,
13364 MIPS_SYNC_NEW_OP_12_NOT_NOT, MIPS_SYNC_EXCHANGE_12,
13365 MIPS_SYNC_EXCHANGE_12_ZERO_OP, MIPS_SYNC_EXCHANGE_12_NONZERO_OP):
13368 2008-05-20 H.J. Lu <hongjiu.lu@intel.com>
13370 * config/i386/i386.c (ix86_expand_vector_init_one_nonzero): Add
13373 2008-05-20 Anatoly Sokolov <aesok@post.ru>
13375 * config/avr/avr.h (machine_function): Add 'is_OS_main' field.
13376 * config/avr/avr.c (avr_OS_main_function_p): Add new function.
13377 (avr_attribute_table): Add 'OS_main' function attribute.
13378 (avr_regs_to_save, expand_prologue, expand_epilogue): Handle
13379 functions with 'OS_main' attribute.
13381 2008-05-20 Richard Guenther <rguenther@suse.de>
13383 PR tree-optimization/35204
13384 * tree-ssa-sccvn.c (extract_and_process_scc_for_name): New
13385 helper, split out from ...
13386 (DFS): ... here. Make the DFS walk non-recursive.
13388 2008-05-20 Sebastian Pop <sebastian.pop@amd.com>
13389 Jan Sjodin <jan.sjodin@amd.com>
13391 PR tree-optimization/36181
13392 * tree-parloops.c (loop_has_vector_phi_nodes): New.
13393 (parallelize_loops): Don't parallelize when the loop has vector
13396 2008-05-20 Jan Sjodin <jan.sjodin@amd.com>
13397 Sebastian Pop <sebastian.pop@amd.com>
13399 * tree-loop-linear.c (gather_interchange_stats): Look in the access
13400 matrix, and never look at the tree representation of the memory
13402 (linear_transform_loops): Computes parameters and access matrices.
13403 * tree-data-ref.c (compute_data_dependences_for_loop): Returns false
13405 (access_matrix_get_index_for_parameter): New.
13406 * tree-data-ref.h (struct access_matrix): New.
13407 (AM_LOOP_NEST_NUM, AM_NB_INDUCTION_VARS, AM_PARAMETERS, AM_MATRIX,
13408 AM_NB_PARAMETERS, AM_CONST_COLUMN_INDEX, AM_NB_COLUMNS,
13409 AM_GET_SUBSCRIPT_ACCESS_VECTOR, AM_GET_ACCESS_MATRIX_ELEMENT,
13410 am_vector_index_for_loop): New.
13411 (struct data_reference): Add field access_matrix.
13412 (DR_ACCESS_MATRIX): New.
13413 (compute_data_dependences_for_loop): Update declaration.
13414 (lambda_collect_parameters, lambda_compute_access_matrices): Declared.
13415 * lambda.h (lambda_vector_vec_p): Declared.
13416 * lambda-code.c: Depend on pointer-set.h.
13417 (lambda_collect_parameters_from_af, lambda_collect_parameters,
13418 av_for_af_base, av_for_af, build_access_matrix,
13419 lambda_compute_access_matrices): New.
13420 * Makefile.in (lambda-code.o): Depend on pointer-set.h.
13422 2008-05-20 Joseph Myers <joseph@codesourcery.com>
13424 * doc/install.texi2html: Generate gcc-vers.texi in $DESTDIR not
13425 $SOURCEDIR/include.
13427 2008-05-20 Jan Sjodin <jan.sjodin@amd.com>
13428 Sebastian Pop <sebastian.pop@amd.com>
13430 PR tree-optimization/36206
13431 * tree-scalar-evolution.c: Remove enum INSERT_SUPERLOOP_CHRECS,
13433 (instantiate_scev_1): Rename flags to fold_conversions.
13434 Do not check for INSERT_SUPERLOOP_CHRECS, keep SSA_NAMEs defined
13435 outeside instantiation_loop.
13436 * tree-chrec.h (evolution_function_is_affine_in_loop): New.
13437 (evolution_function_is_affine_or_constant_p): Removed.
13438 * tree-data-ref.c (dr_analyze_indices): Replace resolve_mixers with
13440 (analyze_siv_subscript): Pass in the loop nest number.
13441 Call evolution_function_is_affine_in_loop instead of
13442 evolution_function_is_affine_p.
13443 (analyze_overlapping_iterations): Pass in the loop nest number.
13445 2008-05-20 Jan Sjodin <jan.sjodin@amd.com>
13446 Sebastian Pop <sebastian.pop@amd.com>
13448 PR tree-optimization/36206
13449 * tree-chrec.h (chrec_fold_op): New.
13450 * tree-data-ref.c (initialize_matrix_A): Traverse NOP_EXPR, PLUS_EXPR,
13453 2008-05-20 Nathan Sidwell <nathan@codesourcery.com>
13455 * c-incpath.c (INO_T_EQ): Do not define on non-inode systems.
13457 (remove_duplicates): Do not set inode on non-inode systems.
13460 2008-05-20 Sandra Loosemore <sandra@codesourcery.com>
13462 * config.gcc (tm_file): Update comments about relative pathnames.
13464 2008-05-20 Richard Guenther <rguenther@suse.de>
13466 * tree-ssa-reassoc.c (fini_reassoc): Use the statistics infrastructure.
13467 * tree-ssa-sccvn.c (process_scc): Likewise.
13468 * tree-ssa-sink.c (execute_sink_code): Likewise.
13469 * tree-ssa-threadupdate.c (thread_through_all_blocks): Likewise.
13470 * tree-vrp.c (process_assert_insertions): Likewise.
13471 * tree-ssa-dce.c (eliminate_unnecessary_stmts): Likewise.
13472 (perform_tree_ssa_dce): Likewise.
13473 * tree-ssa-dom.c (tree_ssa_dominator_optimize): Likewise.
13474 (dump_dominator_optimization_stats): Likewise.
13475 * tree-vectorizer.c (vectorize_loops): Likewise.
13477 2008-05-20 Richard Guenther <rguenther@suse.de>
13479 * tree-vn.c (vn_lookup_with_vuses): Do not use the alias oracle.
13481 2008-05-20 Kai Tietz <kai.tietz@onevision.com>
13483 * config/i386/i386-protos.h (ix86_return_in_memory): Removed.
13484 (ix86_i386elf_return_in_memory): Likewise.
13485 (ix86_i386interix_return_in_memory): Likewise.
13486 * config/i386/i386-interix.h (TARGET_RETURN_IN_MEMORY): Removed.
13487 (SUBTARGET_RETURN_IN_MEMORY): New.
13488 * config/i386/i386elf.h: Likewise.
13489 * config/i386/ptx4-i.h: Likewise.
13490 * config/i386/sol2-10.h: Likewise.
13491 * config/i386/sysv4.h: Likewise.
13492 * config/i386/vx-common.h: Likewise.
13493 * config/i386/i386.h (TARGET_RETURN_IN_MEMORY): Removed.
13494 * config/i386/i386.c (ix86_return_in_memory): Made static and
13495 make use of optional SUBTARGET_RETURN_IN_MEMORY macro.
13496 (ix86_i386elf_return_in_memory): Removed.
13497 (ix86_i386interix_return_in_memory): Removed.
13498 (TARGET_RETURN_IN_MEMORY): Declared within i386.c only.
13499 * target-def.h (TARGET_RETURN_IN_MEMORY): Remove protection #ifdef.
13501 2008-05-20 Alexandre Oliva <aoliva@redhat.com>
13503 * cselib.c (cselib_record_sets): Use correct mode for IF_THEN_ELSE.
13505 2008-05-19 Xinliang David Li <davidxl@google.com>
13507 * tree-ssa-dce.c: Revert patches of 2008-05-17 and 2008-05-18.
13509 * common.opt: Ditto.
13510 * doc/invoke.texi: Ditto.
13512 2008-05-19 Eric Botcazou <ebotcazou@adacore.com>
13514 * tree.c (substitute_in_expr) <tcc_vl_exp>: Fix thinko.
13515 (substitute_placeholder_in_expr) <tcc_vl_exp>: Minor tweak.
13517 2008-05-19 H.J. Lu <hongjiu.lu@intel.com>
13519 * config/i386/i386.c (ix86_expand_vector_init_concat): Change
13520 sizes of operand array from 8/4 to 4/2.
13521 (ix86_expand_vector_init_general): Change size of operand array
13522 from 32 to 16. Remove op0, op1 and half_mode.
13524 2008-05-19 H.J. Lu <hongjiu.lu@intel.com>
13526 * config/i386/i386.c (ix86_expand_vector_init_concat): New.
13527 (ix86_expand_vector_init_interleave): Likewise.
13528 (ix86_expand_vector_init_general): Use them. Assert
13529 word_mode == SImode when n_words == 4.
13531 2008-05-19 Uros Bizjak <ubizjak@gmail.com>
13533 * config/i386/i386.c (ix86_secondary_reload): New static function.
13534 (TARGET_SECONDARY_RELOAD): New define.
13535 * config/i386/i386.h (SECONDARY_OUTPUT_RELOAD_CLASS): Remove.
13536 * config/i386/i386.md (reload_outqi): Remove.
13538 2008-05-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13540 PR middle-end/35509
13541 * builtins.c (mathfn_built_in_1): Renamed from mathfn_built_in.
13542 Add `implicit' parameter. Handle BUILT_IN_SIGNBIT.
13543 (mathfn_built_in): Rewrite in terms of mathfn_built_in_1.
13544 (fold_builtin_classify): Handle BUILT_IN_ISINF_SIGN.
13545 (fold_builtin_1): Likewise.
13546 * builtins.def (BUILT_IN_ISINF_SIGN): New.
13547 c-common.c (check_builtin_function_arguments): Handle
13548 BUILT_IN_ISINF_SIGN.
13549 * doc/extend.texi: Document __builtin_isinf_sign.
13550 * fold-const.c (operand_equal_p): Handle COND_EXPR.
13552 2008-05-18 Eric Botcazou <ebotcazou@adacore.com>
13554 * tree-ssa-dom.c (tree_ssa_dominator_optimize): If some blocks need
13555 EH cleanup at the end of the pass, search for those that have been
13556 turned into forwarder blocks and do the cleanup on their successor.
13558 2008-05-18 Richard Guenther <rguenther@suse.de>
13560 * tree-cfg.c (verify_gimple_expr): Allow conversions from
13561 pointers to sizetype and vice versa.
13563 2008-05-18 Xinliang David Li <davidxl@google.com>
13565 * gcc/tree-ssa-dce.c: Coding style fix.
13566 (check_pow): Documentation comment.
13567 (check_log): Documenation comment. Coding style fix.
13568 (is_unnecessary_except_errno_call): Ditto.
13569 (gen_conditions_for_pow): Ditto.
13570 (gen_conditions_for_log): Ditto.
13571 (gen_shrink_wrap_conditions): Ditto.
13572 (shrink_wrap_one_built_in_calls): Ditto.
13573 * gcc/doc/invoke.texi: Better documentation string.
13574 * ChangeLog: Fix wrong change log entries from
13575 May 17 checkin on function call DCE.
13577 2008-05-17 Kaz Kojima <kkojima@gcc.gnu.org>
13579 * config/sh/sh.c (sh_output_mi_thunk): Update the use of init_flow.
13581 2008-05-17 Kenneth Zadeck <zadeck@naturalbridge.com>
13583 * doc/rtl.texi (RTL_CONST_CALL_P, RTL_PURE_CALL_P): Fixed typos.
13584 * df-problems.c (simulation routines): Fixed block comment to
13585 properly say how to add forwards scanning functions.
13587 2008-05-17 Eric Botcazou <ebotcazou@adacore.com>
13589 * tree-inline.c (setup_one_parameter): Remove dead code.
13591 2008-05-17 Eric Botcazou <ebotcazou@adacore.com>
13593 * fold-const.c (fold_unary) <CASE_CONVERT>: Fold the cast into
13594 a BIT_AND_EXPR only for an INTEGER_TYPE.
13596 2008-05-17 Xinliang David Li <davidxl@google.com>
13598 * gcc/tree-ssa-dce.c (cond_dead_built_in_calls): New static variable.
13599 (check_pow, check_log, is_unnecessary_except_errno_call): New
13600 functions to check for eliminating math functions that are pure
13601 except for setting errno.
13602 (gen_conditions_for_pow, gen_conditionas_for_log): New functions to
13603 general condition expressions for shrink-wrapping pow/log calls.
13604 (gen_shrink_wrap_conditions): Ditto.
13605 (shrink_wrap_one_built_in_call): Ditto.
13606 (shrink_wrap_conditional_dead_built_in_calls): Ditto.
13607 (mark_operand_necessary): If debugging, output if OP is necessary.
13608 (eliminate_unnecessary_stmts): Eliminate pow, log calls that are
13610 * gcc/opts.c (decode_options): set flag_tree_builtin_dce to 1 when
13612 * gcc/common.opt: New user flag -ftree-builtin-dce.
13613 * gcc/doc/invoke.texi (-ftree-builtin-dce): New option.
13615 2008-05-16 David S. Miller <davem@davemloft.net>
13617 * config/sparc/linux.h (NO_PROFILE_COUNTERS): Undef before overriding.
13618 * config/sparc/linux64.h (NO_PROFILE_COUNTERS): Likewise.
13620 2008-05-16 Uros Bizjak <ubizjak@gmail.com>
13623 * config/i386/i386.h (SECONDARY_MEMORY_NEEDED_MODE): New define.
13625 2008-05-16 Kenneth Zadeck <zadeck@naturalbridge.com>
13627 * ifcvt.c (dead_or_predicable): Rename
13628 df_simulate_one_insn_backwards to df_simulate_one_insn.
13629 * recog.c (peephole2_optimize): Ditto.
13630 * rtl-factoring.c (collect_pattern_seqs, clear_regs_live_in_seq):
13632 * df.h: Rename df_simulate_one_insn_backwards to
13633 df_simulate_one_insn. and delete df_simulate_one_insn_forwards.
13634 * df-problems.c (df_simulate_artificial_refs_at_top) Reversed
13635 scanning of defs and uses.
13636 (df_simulate_one_insn_backwards): Renamed to df_simulate_one_insn.
13637 (df_simulate_one_insn_forwards): Removed.
13639 2008-05-16 Doug Kwan <dougkwan@google.com>
13641 * real.c (real_to_decimal, real_to_hexadecimal): Distinguish
13643 (real_from_string): Handle NaNs and Inf as approriate.
13645 2008-05-16 Nathan Froyd <froydnj@codesourcery.com>
13647 * doc/gty.texi (Source Files Containing Type Information): Note
13648 that headers should appear first in the gtfiles list.
13650 2008-05-16 Kenneth Zadeck <zadeck@naturalbridge.com>
13652 * tree.def (COND_EXEC): Properly documented this code.
13654 2008-05-16 Diego Novillo <dnovillo@google.com>
13656 * dwarf2asm.c (dw2_assemble_integer): Clarify comment.
13657 * tree-nested.c (get_trampoline_type): Set DECL_CONTEXT for
13660 2008-05-16 Kenneth Zadeck <zadeck@naturalbridge.com>
13662 * tree-ssa-dse (max_stmt_uid): Removed.
13663 (get_stmt_uid, dse_possible_dead_store_p, dse_optimize_stmt,
13664 tree_ssa_dse): Encapsulate all uses of stmt_ann->uid.
13665 * tree-ssa-sccvn.c (compare_ops, init_scc_vn): Ditto.
13666 * function.h (cfun.last_stmt_uid): New field.
13667 * tree-flow-inline.h (set_gimple_stmt_uid, gimple_stmt_uid,
13668 gimple_stmt_max_uid, set_gimple_stmt_max_uid, inc_gimple_stmt_max_uid):
13670 * tree-dfa.c (renumber_gimple_stmt_uids): New function.
13671 (create_stmt_ann): Initialize the ann->uid field.
13672 * tree-ssa-pre.c (compute_avail): Encapsulate the stmt_ann->uid
13674 * tree-flow.h (renumber_gimple_stmt_uids): New function.
13676 2008-05-16 Nathan Froyd <froydnj@codesourcery.com>
13678 * tree-flow.h (init_empty_tree_cfg_for_function): Declare.
13679 * tree-cfg.c (init_empty_tree_cfg_for_function): Define.
13680 (init_empty_tree_cfg): Call it.
13682 2008-05-16 Kenneth Zadeck <zadeck@naturalbridge.com>
13684 * cfg.c (init_flow): Add argument THE_FUN. Use it instead of cfun.
13687 2008-05-16 Kenneth Zadeck <zadeck@naturalbridge.com>
13689 * doc/invoke.text (-fdump-tree-*-verbose): New option.
13690 * tree-dump.c (dump_options): New verbose option.
13691 * tree-pretty-print.c (dump_phi_nodes, dump_generic_bb_buff):
13693 * tree-pass.h (TDF_VERBOSE): New dump flag.
13694 * print-tree.c (print_node): Added code to be able to print PHI_NODES.
13695 (tree-flow.h): Added include.
13696 * Makefile.in (print-tree.o): Added TREE_FLOW_H.
13698 2008-05-16 Bernd Schmidt <bernd.schmidt@analog.com>
13700 * config/bfin/bfin.c (bfin_discover_loops): Delete empty loops.
13702 From Jie Zhang <jie.zhang@analog.com>
13703 * config/bfin/t-bfin-elf (MULTILIB_OPTIONS, MULTILIB_DIRNAMES,
13704 MULTILIB_MATCHES, MULTILIB_EXCEPTIONS): Remove mcpu=bf532-0.3,
13705 mcpu=bf561-none and mcpu=bf561-0.2.
13706 * config/bfin/t-bfin-uclinux (MULTILIB_OPTIONS, MULTILIB_DIRNAMES,
13707 MULTILIB_MATCHES, MULTILIB_EXCEPTIONS): Likewise.
13708 * config/bfin/t-bfin-linux (MULTILIB_OPTIONS, MULTILIB_DIRNAMES,
13709 MULTILIB_MATCHES, MULTILIB_EXCEPTIONS): Likewise.
13710 * config/bfin/bfin-protos.h (enum bfin_cpu_type): Add BFIN_CPU_UNKNOWN.
13711 * config/bfin/elf.h (STARTFILE_SPEC): Use specific CRT for BF561.
13712 (LIB_SPEC): Use proper linker script for bf561. Error if no mcpu
13714 * config/bfin/bfin.c (bfin_cpu_type): Set to BFIN_CPU_UNKNOWN.
13715 (cputype_selected): Remove.
13716 (bfin_handle_option): Don't use cputype_selected.
13717 (override_options): When no mcpu option, enable all workarounds.
13718 Don't use bfin_workarounds.
13719 * config/bfin/bfin.h (DRIVER_SELF_SPECS): Don't set default
13721 (DEFAULT_CPU_TYPE): Don't define.
13723 2008-05-16 Richard Guenther <rguenther@suse.de>
13725 * tree-ssa-propagate.c (substitute_and_fold): Fix stmt walking
13726 on deletion of the last stmt.
13728 2008-05-15 H.J. Lu <hongjiu.lu@intel.com>
13730 * config/i386/i386.c (ix86_expand_vector_init_general): Optimize
13731 V8HImode for SSE2 and V16QImode for SSE4.1.
13733 2008-05-15 Kenneth Zadeck <zadeck@naturalbridge.com>
13735 * cgraph.h (compute_inline_parameters): Made public.
13736 * tree-pass.h (ipa_opt_pass): Removed function_generate_summary,
13737 variable_generate_summary, function_write_summary,
13738 variable_write_summary, variable_read_summary. Added generate_summary,
13739 write_summary, read_summary.
13740 * cgraphunit.c (cgraph_process_new_functions): Changed call from
13741 pass_ipa_inline.function_generate_summary, to
13742 compute_inline_parameters.
13743 * ipa-inline.c (compute_inline_parameters): Made public and added
13745 (compute_inline_parameters_for_current): New function.
13746 (pass_inline_param): Now calls compute_inline_parameters_for_current.
13747 (inline_generate_summary): Removed parameter and made to loop over
13749 (pass_ipa_inline): Updated for new IPA_PASS structure.
13750 * passes.c (execute_ipa_summary_passes): Now is called once per
13751 pass rather than once per node*pass.
13753 2008-05-15 Anatoly Sokolov <aesok@post.ru>
13755 * config/avr/avr.c (avr_base_arch_macro, avr_have_movw_lpmx_p,
13756 avr_have_mul_p, avr_asm_only_p): Remove variables.
13757 (avr_override_options): Remove initialization of removed variables.
13758 (avr_file_start): Convert removed variables to fields of
13759 'struct base_arch_s *avr_current_arch'.
13760 * config/avr/avr.h (TARGET_CPU_CPP_BUILTINS): (Ditto.).
13761 (AVR_HAVE_MUL): (Ditto.).
13762 (AVR_HAVE_MOVW): (Ditto.).
13763 (AVR_HAVE_LPMX): (Ditto.).
13764 (avr_base_arch_macro, avr_have_movw_lpmx_p, avr_have_mul_p,
13765 avr_asm_only_p): Remove declaration.
13767 2008-05-15 Diego Novillo <dnovillo@google.com>
13769 * config/arm/arm.c (arm_return_in_memory): Fix return type.
13770 * config/arm/arm-protos.h (arm_return_in_memory): Likewise.
13772 2008-05-15 Adam Nemet <anemet@caviumnetworks.com>
13774 PR middle-end/36194
13775 * combine.c (check_conversion): Rename back to check_promoted_subreg.
13776 Don't call record_truncated_value from here.
13777 (record_truncated_value): Turn it into a for_each_rtx callback.
13778 (record_truncated_values): New function.
13779 (combine_instructions): Call note_uses with record_truncated_values.
13780 Change name of check_conversion to check_promoted_subreg.
13782 2008-05-15 Janis Johnson <janis187@us.ibm.com>
13784 * doc/sourcebuild.texi: Document support for torture tests.
13786 2008-05-15 Uros Bizjak <ubizjak@gmail.com>
13788 * config/i386/sse.md (*vec_concatv2sf_sse4_1): Add "m" constraint
13789 to alternative 4 of operand 2.
13791 2008-05-15 Richard Guenther <rguenther@suse.de>
13793 * tree-pass.h (current_pass): Declare.
13794 (get_pass_for_id): Likewise.
13795 * passes.c (passes_by_id, passes_by_id_size): New globals.
13796 (set_pass_for_id): New function.
13797 (get_pass_for_id): Likewise.
13798 (register_one_dump_file): Use set_pass_for_id to populate passes_by_id.
13799 (execute_function_todo): Flush per function statistics.
13800 * toplev.c (compile_file): Init statistics.
13801 (general_init): Do early statistics initialization.
13802 (finalize): Finish statistics.
13803 * statistics.h (statistics_early_init): Declare.
13804 (statistics_init): Likewise.
13805 (statistics_fini): Likewise.
13806 (statistics_fini_pass): Likewise.
13807 (statistics_counter_event): Likewise.
13808 (statistics_histogram_event): Likewise.
13809 * statistics.c: New file.
13810 * Makefile.in (OBJS-common): Add statistics.o.
13811 (statistics.o): Add dependencies.
13812 * doc/invoke.texi (-fdump-statistics): Document.
13814 * tree-ssa-pre.c (compute_antic): Use statistics_histogram_event.
13815 (insert): Likewise.
13816 (execute_pre): Use statistics_counter_event.
13817 * tree-ssa-propagate.c (struct prop_stats_d): Add num_dce field.
13818 (substitute_and_fold): Increment it. Use statistics_counter_event.
13820 2008-05-15 Diego Novillo <dnovillo@google.com>
13822 http://gcc.gnu.org/ml/gcc-patches/2008-05/msg00893.html
13824 * treestruct.def (TS_STRUCT_FIELD_TAG): Remove.
13825 * tree-ssa-alias.c (new_type_alias): Remove references to
13826 sub-variables from comment.
13827 * tree-ssa-operands.c (swap_tree_operands): Likewise.
13829 2008-05-15 H.J. Lu <hongjiu.lu@intel.com>
13831 * config/i386/sse.md (*vec_concatv2sf_sse4_1): Set prefix_extra
13832 attribute to 1 only for insertps alternative.
13834 2008-05-15 Bernd Schmidt <bernd.schmidt@analog.com>
13836 * config/bfin/bfin.md (loadbytes): New pattern.
13837 * config/bfin/bfin.c (enum bfin_builtins): Add BFIN_BUILTIN_LOADBYTES.
13838 (bfin_init_builtins): Initialize it.
13839 (bdesc_1arg): Add it.
13841 2008-05-15 Sa Liu <saliu@de.ibm.com>
13843 * testsuite/gfortran.dg/c_kind_int128_test1.f03: New.
13844 * testsuite/gfortran.dg/c_kind_int128_test2.f03: New.
13845 * testsuite/lib/target-supports.exp: Add
13846 check_effective_target_fortran_integer_16.
13848 2008-05-15 Bernd Schmidt <bernd.schmidt@analog.com>
13850 * config/bfin/bfin.h (TARGET_RETURN_IN_MEMORY): Don't define here.
13851 * config/bfin/bfin-protos.h (bfin_return_in_memory): Don't declare.
13852 * config/bfin/bfin.c (bfin_return_in_memory): Now static. Return bool.
13853 (TARGET_RETURN_IN_MEMORY): Define.
13855 2008-05-15 Richard Guenther <rguenther@suse.de>
13857 PR middle-end/36244
13858 * tree-ssa-alias.c (new_type_alias): Do not set TREE_READONLY.
13859 * tree-flow-inline.h (unmodifiable_var_p): Memory tags never
13860 represent unmodifiable vars.
13862 2008-05-15 Richard Guenther <rguenther@suse.de>
13864 * tree-dfa.c (refs_may_alias_p): Allow all kinds of
13865 INDIRECT_REF and TARGET_MEM_REF.
13866 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Handle
13869 2008-05-15 Uros Bizjak <ubizjak@gmail.com>
13870 H.J. Lu <hongjiu.lu@intel.com>
13872 * config/i386/sse.md (*vec_concatv2sf_sse4_1): New insn pattern.
13873 (*vec_concatv2si_sse4_1): Use vector_move_operand predicate
13874 for operand 2. Remove pinsr{q,d} with 0x0 immediate operand from
13875 insn alternatives. Add missing alternatives.
13876 (*vec_concatv2di_rex64_sse4_1): Likewise.
13877 (*vec_concatv2si_sse2): Use "x" register constraint instead of "Y2".
13878 (*vec_concatv2di_rex64_sse): Rename from *vec_concatv2di_rex64.
13879 Require TARGET_SSE.
13881 2008-05-15 Richard Guenther <rguenther@suse.de>
13883 PR tree-optimization/36009
13884 PR tree-optimization/36204
13885 * tree-ssa-loop-im.c (tree-ssa-propagate.h): Include.
13886 (determine_invariantness_stmt): Record the loop a store is
13887 always executed in.
13888 * Makefile.in (tree-ssa-loop-im.o): Add tree-ssa-propagate.h
13891 2008-05-15 Richard Guenther <rguenther@suse.de>
13893 PR tree-optimization/34330
13894 * tree-ssa-alias.c (get_smt_for): Only assert that accesses
13895 through the pointer will alias the SMT.
13897 2008-05-14 Andreas Tobler <a.tobler@schweiz.org>
13899 * config/sparc/sparc.h (NO_PROFILE_COUNTERS): Define as 0.
13901 2008-05-14 H.J. Lu <hongjiu.lu@intel.com>
13903 * config/i386/sse.md (*sse4_1_pinsrq): Make it 64bit only.
13905 2008-05-14 Michael Meissner <michael.meissner@amd.com>
13906 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
13908 * optabs.h (optab_index): Add OTI_vashl, OTI_vlshr, OTI_vashr,
13909 OTI_vrotl, OTI_vrotr to support vector/vector shifts.
13910 (vashl_optab): New optab for vector/vector shifts.
13911 (vashr_optab): Ditto.
13912 (vlshr_optab): Ditto.
13913 (vrotl_optab): Ditto.
13914 (vrotr_optab): Ditto.
13915 (optab_subtype): New enum for optab_for_tree_code call.
13916 (optab_for_tree_code): Add enum optab_subtype argument.
13918 * optabs.c (optab_for_tree_code): Take an additional argument to
13919 distinguish between a vector shift by a scalar and vector shift by
13920 a vector. Make lshr/ashr/ashl/rotl/rotr optabs just vector
13921 shifted by a scalar. Use vlshr/vashr/vashl/vrotl/vrotr for the
13922 vector shift by a vector.
13923 (expand_widen_pattern_expr): Pass additional argument to
13924 optab_for_tree_code.
13926 * genopinit.c (optabs): Add vashr_optab, vashl_optab, vlshr_optab,
13927 vrotl_optab, vrotr_optab.
13929 * expr.c (expand_expr_real_1): Update calls to
13930 optab_for_tree_code to distinguish between vector shifted by a
13931 scalar and vector shifted by a vector.
13932 * tree-vectorizer.c (supportable_widening_operation): Ditto.
13933 (supportable_narrowing_operation): Ditto.
13934 * tree-vect-analyze.c (vect_build_slp_tree): Ditto.
13935 * tree-vect-patterns.c (vect_pattern_recog_1): Ditto.
13936 * tree-vect-transform.c (vect_model_reduction_cost): Ditto.
13937 (vect_create_epilog_for_reduction): Ditto.
13938 (vectorizable_reduction): Ditto.
13939 (vectorizable_operation): Ditto.
13940 (vect_strided_store_supported): Ditto.
13941 (vect_strided_load_supported): Ditto.
13942 * tree-vect-generic.c (expand_vector_operations_1): Ditto.
13943 * expmed.c (expand_shift): Ditto.
13945 * doc/md.texi (ashl@var{m}3): Document that operand 2 is always a
13947 (ashr@var{m}3): Ditto.
13948 (vashl@var{m}3): Document new vector/vector shift standard name.
13949 (vashr@var{m}3): Ditto.
13950 (vlshr@var{m}3): Ditto.
13951 (vrotl@var{m}3): Ditto.
13952 (vrotr@var{m}3): Ditto.
13954 * config/i386/i386.md (PPERM_SRC): Move PPERM masks here from i386.c.
13955 (PPERM_INVERT): Ditto.
13956 (PPERM_REVERSE): Ditto.
13957 (PPERM_REV_INV): Ditto.
13958 (PPERM_ZERO): Ditto.
13959 (PPERM_ONES): Ditto.
13960 (PPERM_SIGN): Ditto.
13961 (PPERM_INV_SIGN): Ditto.
13962 (PPERM_SRC1): Ditto.
13963 (PPERM_SRC2): Ditto.
13965 * config/i386/sse.md (mulv2di3): Add SSE5 support.
13966 (sse5_pmacsdql_mem): New SSE5 define_and_split that temporarily
13967 allows a memory operand to be the value being added, and split it
13968 to improve vectorization.
13969 (sse5_pmacsdqh_mem): Ditto.
13970 (sse5_mulv2div2di3_low): SSE5 32-bit multiply and extend function.
13971 (sse5_mulv2div2di3_high): Ditto.
13972 (vec_pack_trunc_v8hi): Add SSE5 pperm support.
13973 (vec_pack_trunc_v4si): Ditto.
13974 (vec_pack_trunc_v2di): Ditto.
13975 (sse5_pcmov_<mode>): Remove code that tried to use use
13976 andps/andnps instead of pcmov.
13977 (vec_widen_smult_hi_v4si): If we have SSE5, use the pmacsdql and
13978 pmacsdqh instructions.
13979 (vec_widen_smult_lo_v4si): Ditto.
13981 * config/i386/i386.c (PPERM_SRC): Move PPERM masks to i386.md.
13982 (PPERM_INVERT): Ditto.
13983 (PPERM_REVERSE): Ditto.
13984 (PPERM_REV_INV): Ditto.
13985 (PPERM_ZERO): Ditto.
13986 (PPERM_ONES): Ditto.
13987 (PPERM_SIGN): Ditto.
13988 (PPERM_INV_SIGN): Ditto.
13989 (PPERM_SRC1): Ditto.
13990 (PPERM_SRC2): Ditto.
13991 (ix86_expand_sse_movcc): Move the SSE5 test after the if
13993 (ix86_expand_int_vcond): If SSE5 generate all possible integer
13995 (ix86_sse5_valid_op_p): Allow num_memory to be negative, which
13996 says ignore whether the last reference is a memory operand.
13998 2008-05-14 Michael Meissner <michael.meissner@amd.com>
13999 Paolo Bonzini <bonzini at gnu dot org>
14001 * config/rs6000/rs6000.c (bdesc_2arg): Change the names of vector
14004 * config/rs6000/altivec.md (vashl<mode>3): Rename from ashl<mode>3.
14005 (vlshr<mode>3): Rename from vlshr<mode>3.
14006 (vashr<mode>3): Rename from vashr<mode>3.
14007 (mulv4sf3): Change the names of vector shift patterns.
14011 * config/spu/spu.c (spu_initialize_trampoline): Rename vector
14014 * config/spu/spu-builtins.def (SI_SHLH): Rename vector shift insns.
14039 * config/spu/spu.md (v): New iterator macro to add v for vector types.
14040 (floatunssidf2_internal): Change vector/vector shift names.
14041 (floatunsdidf2_internal): Ditto.
14048 (vashl<mode>3): Rename from ashl<mode>3.
14049 (vashr<mode>3): Rename from ashr<mode>3.
14050 (vlshr<mode>3): Rename from lshr<mode>3.
14051 (vrotl<mode>3): Rename from rotl<mode>3.
14053 2008-05-14 Michael Meissner <michael.meissner@amd.com>
14056 * config/i386/sse.md (vec_widen_smult_hi_v4si): Delete, using unsigned
14057 multiply gives the wrong value when doing widening multiplies.
14058 (vec_widen_smult_lo_v4si): Ditto.
14060 2008-05-14 Kenneth Zadeck <zadeck@naturalbridge.com>
14062 * optabs.c (prepare_cmp_insn): Changed LCT_PURE_MAKE_BLOCK to
14063 LCT_PURE and LCT_CONST_MAKE_BLOCK to LCT_CONST in calls to
14064 emit_library_call_value.
14065 * builtins.c (expand_builtin_powi, expand_builtin_memcmp): Ditto.
14066 * tree.h (ECF_LIBCALL_BLOCK): Removed.
14067 * calls.c (initialize_argument_information, precompute_arguments,
14068 expand_call, emit_library_call_value_1): Remove ECF_LIBCALL_BLOCK.
14069 (precompute_arguments): Removed flags parameter.
14070 * rtl.h (LCT_CONST_MAKE_BLOCK, LCT_PURE_MAKE_BLOCK): Removed.
14072 2008-05-14 Richard Guenther <rguenther@suse.de>
14074 * tree-ssa-dse.c (dse_possible_dead_store_p): Remove dead code.
14075 Make sure to register the store if the use is a PHI_NODE.
14077 2008-05-14 Olivier Hainque <hainque@adacore.com>
14079 * expr.c (expand_expr_real_1) <normal_inner_ref>: Force op0 to
14080 memory if the component is to be referenced in BLKmode according
14081 to get_inner_reference.
14083 2008-05-14 Adam Nemet <anemet@caviumnetworks.com>
14085 * calls.c (emit_library_call_value_1): Restore code clearing
14086 ECF_LIBCALL_BLOCK to ensure that we only call end_sequence once.
14088 2008-05-14 Olivier Hainque <hainque@adacore.com>
14089 Nicolas Roche <roche@adacore.com>
14091 * configure.ac: Add support for a "gcc_subdir" variable in
14092 config-lang.in, to denote a subdirectory where the language/GCC
14093 integration files are to be found.
14094 * configure: Regenerate.
14096 2008-05-14 Ira Rosen <irar@il.ibm.com>
14098 PR tree-optimization/36098
14099 * tree-vect-analyze.c (vect_analyze_group_access): Set the gap
14100 value for the first load in the group in case of a gap.
14101 (vect_build_slp_tree): Check that there are no gaps in loads.
14103 2008-05-14 Kenneth Zadeck <zadeck@naturalbridge.com>
14105 * doc/rtl.texi: Removed reference to REG_NO_CONFLICT notes.
14106 * optabs.c (expand_binop, expand_absneg_bit, expand_unop,
14107 expand_copysign_bit, ): Change call to emit_no_conflict_block to
14108 emit_insn and remove unneeded code to construct extra args.
14109 (emit_no_conflict_block): Removed.
14110 * optabls.h: (emit_no_conflict_block): Removed.
14111 * cse.c (cse_extended_basic_block): Remove search for
14112 REG_NO_CONFLICT note.
14113 * global.c: Removed incorrect comment added in revision 117.
14114 * expr.c (convert_move): Change call to emit_no_conflict_block to
14116 * recog.c: Change comments so that they do not mention
14118 * local_alloc.c (combine_regs): Removed last parameter.
14119 (no_conflict_p): Removed.
14120 (block_alloc): Removed note, no_conflict_combined_regno and set
14121 local vars. Removed all code to process REG_NO_CONFLICT blocks.
14122 (combine_regs): Removed already_dead and code to look for
14123 REG_NO_CONFLICT notes.
14124 * lower_subreg (remove_retval_note): Removed code to look for
14125 REG_NO_CONFLICT block.
14126 (resolve_reg_notes): Removed REG_NO_CONFLICT case.
14127 (resolve_clobber): Remove code to process libcalls that have
14128 REG_NO_CONFLICT notes.
14129 * loop_invariant.c (find_invariant_insn): Removed REG_NO_CONFLICT
14131 * combine.c (can_combine_p, distribute_notes): Removed
14132 REG_NO_CONFLICT case.
14133 * config/cris/cris.md (movdi pattern): Changed emit_no_conflict_block
14135 * config/mn10300/mn10300.md (absdf2, negdf2 patterns): Ditto.
14136 * config/m68k/m68k.md (negdf2, negxf2, absdf2, absxf2 patterns):
14138 * reg-notes.def (NO_CONFLICT): Removed.
14140 2008-05-14 David S. Miller <davem@davemloft.net>
14142 * config/sparc/sparc.c (sparc_profile_hook): If
14143 NO_PROFILE_COUNTERS, don't generate and pass a label into mcount.
14144 * config/sparc/linux.h (NO_PROFILE_COUNTERS): Define as 1.
14145 * config/sparc/linux64.h (NO_PROFILE_COUNTERS): Likewise.
14147 2008-05-14 Andreas Krebbel <krebbel1@de.ibm.com>
14149 * cse.c (cse_cc_succs): Invoke delete_insn_and_edges.
14151 2008-05-13 Uros Bizjak <ubizjak@gmail.com>
14154 * config/i386/i386.c (ix86_expand_vector_init_general): Rearrange op0
14155 and op1 expansion before vector concat to have less live pseudos.
14157 2008-05-13 H.J. Lu <hongjiu.lu@intel.com>
14159 * config/i386/i386.c (ix86_expand_vector_init_one_nonzero): Use
14160 ix86_expand_vector_set if supported.
14162 2008-05-13 Diego Novillo <dnovillo@google.com>
14163 Kenneth Zadeck <zadeck@naturalbridge.com>
14165 http://gcc.gnu.org/ml/gcc-patches/2008-05/msg00748.html
14167 * tree.h (init_phinodes, fini_phinodes, release_phi_node,
14168 phinodes_print_statistics, init_ssanames, fini_ssanames,
14169 make_ssa_name, duplicate_ssa_name, duplicate_ssa_name_ptr_info,
14170 release_ssa_name, release_defs, replace_ssa_name_symbol,
14171 ssanames_print_statistics): Move ...
14172 * tree-flow.h: ... here.
14173 * tree-ssanames.c (init_ssanames): Add arguments FN and SIZE.
14174 Use FN instead of cfun.
14175 (make_ssa_name_fn): Rename from make_ssa_name.
14176 (pass_release_ssa_names): Add TODO_dump_func to finish flags.
14177 * tree-flow-inline.h (make_ssa_name): Move from
14178 tree-ssanames.c. Convert to static inline. Call make_ssa_name_fn.
14179 * omp-low.c (expand_omp_parallel):
14180 * tree-flow-inline.h (redirect_edge_var_map_result):
14181 * tree-ssa.c (init_tree_ssa): Add argument FN.
14182 Use it instead of cfun. Update all users.
14184 2008-05-13 Tom Tromey <tromey@redhat.com>
14186 PR preprocessor/22168:
14187 * doc/cpp.texi (Top): Update menu.
14188 (Alternatives to Wrapper #ifndef): New node.
14189 (Other Directives): Document deprecation.
14190 (Obsolete Features): Remove menu.
14191 (Assertions): Merge node into Obsolete Features.
14192 (Obsolete once-only headers): Move earlier; rename to Alternatives
14193 to Wrapper #ifndef.
14194 * doc/cppopts.texi: Update.
14195 * c.opt (Wdeprecated): Enable for C and ObjC.
14196 * doc/invoke.texi (Option Summary): Move -Wno-deprecated.
14197 (C++ Dialect Options): Move -Wno-deprecated from here to...
14198 (Warning Options): ... here.
14200 2008-05-13 Richard Guenther <rguenther@suse.de>
14202 PR middle-end/36227
14203 * fold-const.c (fold_sign_changed_comparison): Do not allow
14204 changes in pointer-ness.
14206 2008-05-12 Kaz Kojima <kkojima@gcc.gnu.org>
14209 * config/sh/sh.c (sh_expand_prologue): Don't clear
14210 RTX_FRAME_RELATED_P for push insns.
14212 2008-05-12 Andy Hutchinson <hutchinsonandy@aim.com>
14214 * config/avr/avr.h (MAX_OFILE_ALIGNMENT): Define.
14216 2008-05-12 Anatoly Sokolov <aesok@post.ru>
14218 * config/avr/avr.h (machine_function): Add 'is_leaf' field.
14219 * config/avr/avr.c (avr_regs_to_save): Compute 'machine->is_leaf'.
14220 Use 'machine->is_leaf' instead of 'leaf_func_p'.
14222 2008-05-12 H.J. Lu <hongjiu.lu@intel.com>
14224 * config/i386/sse.md (*sse_concatv4sf): Renamed to ...
14225 (*vec_concatv4sf_sse): This.
14226 (*sse2_concatv2si): Renamed to ...
14227 (*vec_concatv2si_sse2): This.
14228 (*sse1_concatv2si): Renamed to ...
14229 (*vec_concatv2si_sse): This.
14230 (*vec_concatv2di_rex): Renamed to ...
14231 (*vec_concatv2di_rex64): This.
14232 (*vec_concatv2si_sse4_1): New.
14233 (*vec_concatv2di_rex64_sse4_1): Likewise.
14235 2008-05-12 Uros Bizjak <ubizjak@gmail.com>
14237 PR rtl-optimization/36111
14238 * recog.c (validate_replace_rtx_1): Unshare new RTL expression
14239 that was created for swappable operands.
14241 2008-05-12 Samuel Tardieu <sam@rfc1149.net>
14244 * Makefile.in: Substitute GNATMAKE and GNATBIND.
14245 * configure.ac: Add call to ACX_PROG_GNAT.
14247 2008-05-11 Volker Reichelt <v.reichelt@netcologne.de>
14249 * optc-gen.awk: Fix comment typo.
14251 2008-05-11 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
14253 * pretty-print.c (pp_integer_with_precision): Use
14254 HOST_LONG_LONG_FORMAT.
14256 2008-05-10 Kenneth Zadeck <zadeck@naturalbridge.com>
14258 * gcse.c (store_killed_in_insn): Negated call to RTL_CONST_CALL_P.
14260 2008-05-10 H.J. Lu <hongjiu.lu@intel.com>
14262 * config/i386/i386.c (bdesc_ptest): Removed.
14263 (ix86_builtin_type): Add INT_FTYPE_V2DI_V2DI_PTEST.
14264 (bdesc_args): Add __builtin_ia32_ptestz128,
14265 __builtin_ia32_ptestc128 and __builtin_ia32_ptestnzc128.
14266 (ix86_init_mmx_sse_builtins): Updated.
14267 (ix86_expand_args_builtin): Handle INT_FTYPE_V2DI_V2DI_PTEST.
14268 (ix86_expand_builtin): Updated.
14270 2008-05-10 Richard Sandiford <rdsandiford@googlemail.com>
14272 * tree-cfg.c (valid_fixed_convert_types_p): New function.
14273 (verify_gimple_expr): Handle FIXED_CONVERT_EXPR.
14275 2008-05-10 Uros Bizjak <ubizjak@gmail.com>
14277 * value-prof.c (interesting_stringop_to_profile): Do not
14278 return early for BUILT_IN_MEMPCPY.
14280 2008-05-09 H.J. Lu <hongjiu.lu@intel.com>
14282 * calls.c (expand_call): Don't use callgraph to increase
14283 preferred_stack_boundary.
14285 * cgraph.h (cgraph_rtl_info): Use unsigned on
14286 preferred_incoming_stack_boundary.
14288 * final.c (rest_of_clean_state): Use unsigned on
14289 preferred_stack_boundary.
14291 2008-05-09 Tom Tromey <tromey@redhat.com>
14293 PR preprocessor/22231:
14294 * c-opts.c (sanitize_cpp_opts): Disallow -MG if compilation is
14297 2008-05-09 Uros Bizjak <ubizjak@gmail.com>
14299 PR tree-optimization/36129
14300 * tree-ssa-ccp.c: Include value-prof.h.
14301 (execute_fold_all_builtins): Call gimple_remove_stmt_histograms if
14302 built-in function was folded to a constant.
14303 * Makefile.in (tree-ssa-ccp.c): Depend on value-prof.h
14305 2008-05-09 Jan Sjodin <jan.sjodin@amd.com>
14306 Sebastian Pop <sebastian.pop@amd.com>
14308 * tree-scalar-evolution.c: Document instantiate_scev.
14309 (instantiate_parameters_1): Renamed instantiate_scev_1.
14310 Don't use the same loop for instantiation_loop and evolution_loop.
14311 (instantiate_scev): New.
14312 (instantiate_parameters): Moved...
14313 (resolve_mixers): Update call to instantiate_scev_1 to pass the
14314 same loop twice. Maintains the semantics for this function.
14315 * tree-scalar-evolution.h (instantiate_scev): Declare.
14316 (instantiate_parameters): ...here. Now static inline.
14317 * tree-data-ref.c (dr_analyze_indices): Call instantiate_scev
14318 instead of resolve_mixers.
14320 2008-05-09 Maxim Kuvyrkov <maxim@codesourcery.com>
14322 * rtl-factoring.c (collect_pattern_seqs): Fix typo.
14324 2008-05-09 Tomas Bily <tbily@suse.cz>
14326 * config/pa/pa.c (reloc_needed): Use CASE_CONVERT.
14327 * tree-cfg.c (verify_expr, verify_gimple_expr): Likewise.
14328 * tree-ssa-structalias.c (get_constraint_for): Likewise.
14329 * c-common.c (c_common_truthvalue_conversion): Likewise.
14330 * tree-object-size.c (compute_object_offset): Likewise.
14331 * tree-inline.c (estimate_num_insns_1): Likewise.
14332 * varasm.c (const_hash_1, compare_constant, copy_constant)
14333 (compute_reloc_for_constant, output_addressed_constants)
14334 (initializer_constant_valid_p): Likewise.
14335 * c-omp.c (check_omp_for_incr_expr): Likewise.
14336 * gimplify.c (gimplify_expr): Likewise.
14337 * c-typeck.c (c_finish_return): Likewise.
14338 * tree-vectorizer.c (supportable_widening_operation)
14339 (supportable_narrowing_operation): Likewise.
14340 * c-pretty-print.c (pp_c_cast_expression, pp_c_expression): Likewise.
14341 * matrix-reorg.c (can_calculate_expr_before_stmt): Likewise.
14342 * expr.c (highest_pow2_factor, expand_expr_real_1): Likewise.
14343 * dwarf2out.c (loc_descriptor_from_tree_1, add_bound_info)
14344 (descr_info_loc): Likewise.
14345 * tree-ssa-loop-ivopts.c (may_be_nonaddressable_p): Likewise.
14346 * fold-const.c (operand_equal_p, make_range, extract_muldiv_1)
14347 (fold_unary): Likewise.
14348 * builtins.c (get_pointer_alignment): Likewise.
14349 * tree-scalar-evolution.c (interpret_rhs_modify_stmt)
14350 (instantiate_parameters_1): Likewise.
14351 * tree.c (expr_align, stabilize_reference): Likewise.
14352 * tree-pretty-print.c (dump_generic_node, op_prio): Likewise.
14353 * tree-ssa-loop-niter.c (derive_constant_upper_bound): Likewise.
14354 * convert.c (strip_float_extensions): Use CONVERT_EXPR_P.
14355 * tree-ssa-threadedge.c (simplify_control_stmt_condition): Likewise.
14356 * config/alpha/alpha.c (va_list_skip_additions): Likewise.
14357 * c-common.c (c_alignof_expr, check_function_arguments_recurse):
14359 * tree-ssa.c (tree_ssa_useless_type_conversion): Likewise.
14360 * varasm.c (initializer_constant_valid_p, output_constant): Likewise.
14361 * tree-ssa-forwprop.c (get_prop_source_stmt, can_propagate_from)
14362 (forward_propagate_addr_expr_1, forward_propagate_addr_expr)
14363 (forward_propagate_comparison)
14364 (tree_ssa_forward_propagate_single_use_vars): Likewise.
14365 * cfgexpand.c (discover_nonconstant_array_refs_r): Likewise.
14366 * emit-rtl.c (component_ref_for_mem_expr)
14367 (set_mem_attributes_minus_bitpos): Likewise.
14368 * tree-ssa-phiopt.c (conditional_replacement): Likewise.
14369 * gimplify.c (gimplify_conversion, goa_lhs_expr_p, gimplify_expr):
14371 * c-typeck.c (default_function_array_conversion, build_indirect_ref)
14372 (build_function_call, pointer_diff, build_compound_expr)
14373 (c_finish_return): Likewise.
14374 * tree-vect-analyze.c (vect_determine_vectorization_factor): Likewise.
14375 * matrix-reorg.c (get_inner_of_cast_expr, may_flatten_matrices_1):
14377 * tree-ssa-ifcombine.c (recognize_single_bit_test): Likewise.
14378 * expr.c (is_aligning_offset): Likewise.
14379 * tree-ssa-alias.c (is_escape_site): Likewise.
14380 * tree-stdarg.c (va_list_counter_bump, check_va_list_escapes)
14381 (check_all_va_list_escapes): Likewise.
14382 * tree-ssa-loop-ivopts.c (determine_base_object)
14383 (determine_common_wider_type): Likewise.
14384 * dojump.c (do_jump): Likewise.
14385 * tree-ssa-sccvn.c (simplify_unary_expression): Likewise.
14386 * tree-gimple.c (is_gimple_cast): Likewise.
14387 * fold-const.c (decode_field_reference, )
14388 (fold_sign_changed_comparison, fold_unary, fold_comparison)
14389 (fold_binary): Likewise.
14390 * tree-ssa-alias-warnings.c (find_alias_site_helper)
14391 (already_warned_in_frontend_p): Likewise.
14392 * builtins.c (get_memory_rtx, fold_builtin_next_arg): Likewise.
14393 * tree.c (really_constant_p, get_unwidened): Likewise.
14394 * tree-ssa-loop-niter.c (expand_simple_operations): Likewise.
14395 * tree-ssa-loop-im.c (rewrite_bittest): Likewise.
14396 * tree-vrp.c (register_edge_assert_for_2, register_edge_assert_for_1):
14398 * tree.h (STRIP_NOPS, STRIP_SIGN_NOPS, STRIP_TYPE_NOPS): Use
14400 (CONVERT_EXPR_P): Define.
14401 (CASE_CONVERT): Define.
14403 2008-05-08 Kenneth Zadeck <zadeck@naturalbridge.com>
14405 PR middle-end/36117
14406 * dce.c (deletable_insn_p): Do not delete calls if df_in_progress.
14407 (delete_unmarked_insns): When deleting a call, call
14408 delete_unreachable_blocks.
14409 * rtl.texi (RTL_CONST_CALL_P, RTL_PURE_CALL_P,
14410 RTL_CONST_OR_PURE_CALL_P, RTL_LOOPING_CONST_OR_PURE_CALL_P): Fixed doc.
14412 2008-05-08 Richard Guenther <rguenther@suse.de>
14414 * doc/invoke.texi (-fdump-tree-salias): Remove documentation.
14415 (-ftree-salias): Likewise.
14416 (salias-max-implicit-fields): Remove param documentation.
14417 (salias-max-array-elements): Likewise.
14418 * tree-pass.h (pass_create_structure_vars): Remove.
14419 * params.h (SALIAS_MAX_IMPLICIT_FIELDS): Remove.
14420 (SALIAS_MAX_ARRAY_ELEMENTS): Likewise.
14421 * tree-ssa-alias.c (create_structure_vars): Remove.
14422 (gate_structure_vars): Likewise.
14423 (pass_create_structure_vars): Likewise.
14424 (gate_build_alias): Likewise.
14425 (pass_build_alias): Adjust to run always and dump the function.
14426 * common.opt (ftree-salias): Hide.
14427 * passes.c (init_optimization_passes): Remove
14428 pass_create_structure_vars, adjust comment.
14429 * params.def (PARAM_SALIAS_MAX_IMPLICIT_FIELDS): Remove.
14430 (PARAM_SALIAS_MAX_ARRAY_ELEMENTS): Likewise.
14431 * opts.c (decode_options): Do not set flag_tree_salias.
14432 (common_handle_option): Add OPT_ftree_salias to the backward
14433 compatibility section.
14435 2008-05-08 Richard Guenther <rguenther@suse.de>
14437 * tree-flow-inline.h (var_can_have_subvars): Move ...
14438 * tree-ssa-structalias.c (var_can_have_subvars): ... here.
14439 * tree-flow.h (var_can_have_subvars): Remove.
14440 (push_fields_onto_fieldstack): Remove.
14441 (sort_fieldstack): Likewise.
14442 (struct fieldoff): Move ...
14443 * tree-ssa-structalias.c (struct fieldoff): ... here. Remove
14444 alias_set and base_for_components fields.
14445 (sort_fieldstack): Make static.
14446 (push_fields_onto_fieldstack): Likewise. Remove code that
14447 handles anything but RECORD_TYPEs. Remove alias_set and
14448 base_for_components handling.
14449 (create_variable_info_for): Adjust.
14451 2008-05-08 Seongbae Park <seongbae.park@gmail.com>
14453 * common.opt (Wframe-larger-than=): Shorten the help message
14455 * doc/invoke.texi (Wframe-larger-than=): Add more description.
14457 2008-05-08 Rafael Espíndola <espindola@google.com>
14459 * tree-complex.c (expand_complex_div_wide): Don't create CONDs that
14461 * tree-gimple.c (is_gimple_condexpr): Check that the expression doesn't
14462 trap and that both operands are gimple values.
14463 (canonicalize_cond_expr_cond): Use is_gimple_condexpr.
14464 * gcc/tree-eh.c (tree_could_trap_p): Correctly detect if a comparison
14467 2008-05-08 Richard Sandiford <rsandifo@nildram.co.uk>
14469 * read-rtl.c (join_c_conditions): Return the first string if the
14470 two strings are equal.
14472 2008-05-08 Richard Sandiford <rsandifo@nildram.co.uk>
14474 * gensupport.h (pred_data): Add a "num_codes" field.
14475 (add_predicate_code): Declare.
14476 * gensupport.c (add_predicate_code): New function.
14477 (std_pred_table): Add an "allows_const_p" field.
14478 (std_preds): Set this field for predicates that allow RTX_CONST_OBJs.
14479 Remove the (incomplete) list of such codes from the codes field.
14480 (init_predicate_table): Use add_predicate_code. Add all
14481 RTX_CONST_OBJs if allows_const_p is true.
14482 * genrecog.c (process_define_predicate): Use add_predicate_code.
14484 2008-05-08 David Daney <ddaney@avtrex.com>
14485 Richard Sandiford <rsandifo@nildram.co.uk>
14487 * config/mips/mips.md (mips_expand_compare_and_swap_12): Handle
14488 special case of constant zero operands.
14489 * config/mips/mips.c (mips_expand_compare_and_swap_12): Zero extend
14490 old and new values. Special case constant zero values.
14491 * config/mips/mips.h (MIPS_COMPARE_AND_SWAP): Skip 'sync' if compare
14493 (MIPS_COMPARE_AND_SWAP_12): Handle constant zero operands.
14494 (MIPS_COMPARE_AND_SWAP_12_0): New macro.
14496 2008-05-08 Paolo Bonzini <bonzini@gnu.org>
14499 * simplify-rtx.c (simplify_plus_minus): Create CONST of
14500 similar RTX_CONST_OBJ before CONST_INT.
14502 2008-05-08 Steve Ellcey <sje@cup.hp.com>
14504 * stmt.c (expand_stack_restore): Change sa mode if needed.
14506 2008-05-08 Richard Guenther <rguenther@suse.de>
14508 * config/i386/i386-protos.h (ix86_return_in_memory): Adjust
14509 return type to bool.
14510 (ix86_sol10_return_in_memory): Likewise.
14511 (ix86_i386elf_return_in_memory): Likewise.
14512 (ix86_i386interix_return_in_memory): Likewise.
14513 * config/i386/i386.c (ix86_return_in_memory): Likewise.
14514 (ix86_sol10_return_in_memory): Likewise.
14515 (ix86_i386elf_return_in_memory): Likewise.
14516 (ix86_i386interix_return_in_memory): Likewise.
14518 2008-05-08 Kai Tietz <kai.tietz@onevision.com>
14521 * calls.c (compute_argument_block_size ): Add ATTRIBUTE_UNUSED to
14523 (emit_library_call_value_1): Add ATTRIBUTE_UNUSED to variable fndecl.
14524 * target-def.h: Check that TARGET_RETURN_IN_MEMORY isn't
14527 2008-05-08 Richard Guenther <rguenther@suse.de>
14529 * tree-data-ref.c (dr_analyze_alias): Do not set DR_SUBVARS.
14530 * tree-data-ref.h (struct dr_alias): Remove subvars field.
14531 (DR_SUBVARS): Remove.
14532 * tree-dfa.c (dump_subvars_for): Remove.
14533 (debug_subvars_for): Likewise.
14534 (dump_variable): Do not dump subvars.
14535 (remove_referenced_var): Do not remove subvars.
14536 * tree-flow-inline.h (clear_call_clobbered): SFTs no longer exist.
14537 (lookup_subvars_for_var): Remove.
14538 (get_subvars_for_var): Likewise.
14539 (get_subvars_at): Likewise.
14540 (get_first_overlapping_subvar): Likewise.
14541 (overlap_subvar): Likewise.
14542 * tree-flow.h (subvar_t): Remove.
14543 (struct var_ann_d): Remove subvars field.
14544 * tree-ssa-alias.c (mark_aliases_call_clobbered): Remove queued
14545 argument. Remove special handling of SFTs.
14546 (compute_tag_properties): Likewise.
14547 (set_initial_properties): Likewise.
14548 (compute_call_clobbered): Likewise.
14549 (count_mem_refs): Likewise.
14550 (compute_memory_partitions): Likewise.
14551 (compute_flow_insensitive_aliasing): Likewise.
14552 (setup_pointers_and_addressables): Likewise.
14553 (new_type_alias): Likewise.
14554 (struct used_part): Remove.
14555 (used_portions): Likewise.
14556 (struct used_part_map): Likewise.
14557 (used_part_map_eq): Likewise.
14558 (used_part_map_hash): Likewise.
14559 (free_used_part_map): Likewise.
14560 (up_lookup): Likewise.
14561 (up_insert): Likewise.
14562 (get_or_create_used_part_for): Likewise.
14563 (create_sft): Likewise.
14564 (create_overlap_variables_for): Likewise.
14565 (find_used_portions): Likewise.
14566 (create_structure_vars): Likewise.
14567 * tree.def (STRUCT_FIELD_TAG): Remove.
14568 * tree.h (MTAG_P): Adjust.
14569 (struct tree_memory_tag): Remove base_for_components and
14570 unpartitionable flags.
14571 (struct tree_struct_field_tag): Remove.
14572 (SFT_PARENT_VAR): Likewise.
14573 (SFT_OFFSET): Likewise.
14574 (SFT_SIZE): Likewise.
14575 (SFT_NONADDRESSABLE_P): Likewise.
14576 (SFT_ALIAS_SET): Likewise.
14577 (SFT_UNPARTITIONABLE_P): Likewise.
14578 (SFT_BASE_FOR_COMPONENTS_P): Likewise.
14579 (union tree_node): Remove sft field.
14580 * alias.c (get_alias_set): Remove special handling of SFTs.
14581 * print-tree.c (print_node): Remove handling of SFTs.
14582 * tree-dump.c (dequeue_and_dump): Likewise.
14583 * tree-into-ssa.c (mark_sym_for_renaming): Likewise.
14584 * tree-nrv.c (dest_safe_for_nrv_p): Remove special handling of SFTs.
14585 * tree-predcom.c (set_alias_info): Do not set subvars.
14586 * tree-pretty-print.c (dump_generic_node): Do not handle SFTs.
14587 * tree-ssa-loop-ivopts.c (get_ref_tag): Likewise.
14588 * tree-ssa-operands.c (access_can_touch_variable): Likewise.
14589 (add_vars_for_offset): Remove.
14590 (add_virtual_operand): Remove special handling of SFTs.
14591 (add_call_clobber_ops): Likewise.
14592 (add_call_read_ops): Likewise.
14593 (get_asm_expr_operands): Likewise.
14594 (get_modify_stmt_operands): Likewise.
14595 (get_expr_operands): Likewise.
14596 (add_to_addressable_set): Likewise.
14597 * tree-ssa.c (verify_ssa_name): Do not handle SFTs.
14598 * tree-tailcall.c (suitable_for_tail_opt_p): Likewise.
14599 * tree-vect-transform.c (vect_create_data_ref_ptr): Do not set subvars.
14600 * tree.c (init_ttree): Remove STRUCT_FIELD_TAG initialization.
14601 (tree_code_size): Remove STRUCT_FIELD_TAG handling.
14602 (tree_node_structure): Likewise.
14603 * tree-ssa-structalias.c (set_uids_in_ptset): Remove special
14605 (find_what_p_points_to): Likewise.
14607 2008-05-08 Sa Liu <saliu@de.ibm.com>
14609 * config/spu/spu.md: Fixed subti3 pattern.
14611 2008-05-08 Richard Guenther <rguenther@suse.de>
14613 PR middle-end/36154
14614 * tree-ssa-structalias.c (push_fields_onto_fieldstack): Make
14615 sure to create a representative for trailing arrays for PTA.
14617 2008-05-08 Richard Guenther <rguenther@suse.de>
14619 PR middle-end/36172
14620 * fold-const.c (operand_equal_p): Two objects which types
14621 differ in pointerness are not equal.
14623 2008-05-08 Kai Tietz <kai.tietz@onevision.com>
14625 * calls.c (compute_argument_block_size): Add argument tree fndecl.
14626 (OUTGOING_REG_PARM_STACK_SPACE): Add function type argument.
14627 (emit_library_call_value_1): Add new variable fndecl initialized by
14628 NULL_TREE. It should be the decl type of orgfun, but this information
14629 seems not to be available here, so it uses the default calling abi.
14630 * config/arm/arm.c (arm_return_in_memory): Add fntype argumen.
14631 * config/arm/arm.h (RETURN_IN_MEMORY): Replace RETURN_IN_MEMORY
14632 by TARGET_RETURN_IN_MEMORY.
14633 * config/i386/i386-interix.h: Likewise.
14634 * config/i386/i386.h: Likewise.
14635 * config/i386/i386elf.h: Likewise.
14636 * config/i386/ptx4-i.h: Likewise.
14637 * config/i386/sol2-10.h: Likewise.
14638 * config/i386/sysv4.h: Likewise.
14639 * config/i386/vx-common.h: Likewise.
14640 * config/cris/cris.h: Removed #if 0 clause.
14641 * config/arm/arm-protos.h (arm_return_in_memory): Add fntype argument.
14642 * config/i386/i386-protos.h (ix86_return_in_memory): Add fntype
14644 (ix86_sol10_return_in_memory): Likewise.
14645 (ix86_i386elf_return_in_memory): New.
14646 (ix86_i386interix_return_in_memory): New.
14647 * config/mt/mt-protos.h (mt_return_in_memory): New.
14648 * config/mt/mt.c: Likewise.
14649 * config/mt/mt.h (OUTGOING_REG_PARM_STACK_SPACE): Add FNTYPE argument.
14650 (RETURN_IN_MEMORY): Replace by TARGET_RETURN_IN_MEMORY.
14651 * config/bfin/bfin.h: Likewise.
14652 * config/bfin/bfin-protos.h (bfin_return_in_memory): Add fntype
14654 * config/bfin/bfin.c: Likewise.
14655 * config/pa/pa.h (OUTGOING_REG_PARM_STACK_SPACE): Add FNTYPE argument.
14656 * config/alpha/unicosmk.h: Likewise.
14657 * config/i386/cygming.h: Likewise.
14658 * config/iq2000/iq2000.h: Likewise.
14659 * config/mips/mips.h: Likewise.
14660 * config/mn10300/mn10300.h: Likewise.
14661 * config/rs6000/rs6000.h: Likewise.
14662 * config/score/score.h: Likewise.
14663 * config/spu/spu.h: Likewise.
14664 * config/v850/v850.h: Likewise.
14665 * defaults.h: Likewise.
14666 * doc/tm.texi (OUTGOING_REG_PARM_STACK_SPACE): Adjust documentation.
14667 * expr.c (emit_block_move): Adjust use of
14668 OUTGOING_REG_PARM_STACK_SPACE.
14669 * function.c (STACK_DYNAMIC_OFFSET): Adjust use of
14670 OUTGOING_REG_PARM_STACK_SPACE.
14671 * targhooks.c (default_return_in_memory): Remove RETURN_IN_MEMORY.
14673 2008-05-08 Jakub Jelinek <jakub@redhat.com>
14675 * tree-parloops.c (create_parallel_loop): Set OMP_RETURN_NOWAIT
14676 on OMP_RETURN for OMP_FOR.
14679 * dwarf2out.c (dw_expand_expr, common_check): Removed.
14680 (fortran_common): New function.
14681 (gen_variable_die): Call fortran_common instead of common_check,
14682 adjust for it returning tree instead of rtx. Formatting.
14684 2008-05-07 Kenneth Zadeck <zadeck@naturalbridge.com>
14688 * see.c (see_copy_insn): Copy new pure const attributes for new call.
14689 * c-decl.c (merge_decls): Ditto.
14690 * postreload.c (record_opr_changes): Change CONST_OR_PURE_CALL_P
14691 to RTL_CONST_OR_PURE_CALL_P.
14692 * tree.c (define_local_buitin): Rename DECL_IS_PURE to DECL_PURE_P.
14693 Initialized DECL_LOOPING_CONST_PURE.
14694 (process_call_operands): Set tree_side_effects properly.
14695 * tree.h (TREE_READONLY_DECL_P): Removed.
14696 (DECL_IS_PURE): Renamed to DECL_PURE_P.
14697 (DECL_LOOPING_OR_CONST_P): New macro.
14698 (struct tree_function_decl): Added looping_const_or_pure_p.
14699 (ECF_*) Renumbered.
14700 (ECF_LOOPING_OR_CONST_P): New macro.
14701 * rtlanal.c (pure_const_p): Removed.
14702 * builtins.c (expand_builtin): Rename DECL_IS_PURE to DECL_PURE_P.
14703 * reorg.c (delete_prior_computation) Changed CONST_OR_PURE_CALL_P
14704 to RTL_CONST_CALL_P.
14705 * ipa-pure-const.c (pure_const_state_e): Added looping field.
14706 (check_decl, check_tree, check_call, scan_function): Initialize
14708 (analyze_function): Rename DECL_IS_PURE to DECL_PURE_P.
14709 (static_execute): Set looping true for recursive functions.
14710 Undo setting state to IPA_NEITHER for recursive functions.
14711 * cse.c (cse_insn):
14712 * ifcvt.c (noce_can_store_speculate_p): Changed
14713 CONST_OR_PURE_CALL_P and pure_call_p to RTL_CONST_CALL_P or
14714 RTL_CONST_OR_PURE_CALL_P.
14715 * dse.c (scan_insn): Ditto.
14716 * local-alloc.c (validate_equiv_mem, memref_used_between_p): Ditto.
14717 * gcse.c (oprs_not_seen_p) Changed CONST_OR_PURE_CALL_P to
14718 RTL_CONST_OR_PURE_CALL_P.
14719 (store_killed_in_insn): Changed CONST_OR_PURE_CALL_P and
14720 pure_call_p to RTL_CONST_CALL_P.
14721 * gimplify.c (gimplify_call_expr): Clear side effects for
14722 non-looping pure and constant calls.
14723 * calls.c (emit_call_1): Set rtl flags from ecf flags.
14724 (flags_from_decl_or_type): Set ecf flags from decl flags.
14725 (initialize_argument_information): Turn off
14726 ECF_LOOPING_CONST_OR_PURE when turning off ECF_CONST.
14727 Change const to pure if callee_copies is true rather than just
14729 (expand_call): Turn off ECF_LOOPING_PURE_CONST_CALL and remove old
14730 way of marking pure calls.
14731 (emit_library_call_value_1): Turn off ECF_LOOPING_PURE_CONST_CALL.
14732 Remove hack that was supposed to fix pr7335 and remove old
14733 way of marking pure calls.
14734 * emit-rtl.c (emit_copy_of_insn_after): Copy RTL_CONST_CALL_P,
14735 RTL_PURE_CALL_P, RTL_LOOPING_CONST_OR_PURE_CALL_P.
14736 * cselib.c (cselib_process_insn): Changed CONST_OR_PURE_CALL_P to
14737 RTL_CONST_OR_PURE_CALL_P.
14738 * tree-ssa-pre.c (can_value_number_call): Fixed spacing.
14739 * loop-invariant.c (find_exits, find_invariant_bb): Changed
14740 CONST_OR_PURE_CALL_P to RTL_CONST_OR_PURE_CALL_P.
14741 * sched-deps.c (schedule_analyze): Ditto.
14742 * rtl.h (struct rtx_def): Use call field, unchanging field, and
14743 return_val field of calls to represent pure and const function info.
14744 (CONST_OR_PURE_CALL_P): Deleted macro.
14745 (RTL_CONST_CALL_P, RTL_PURE_CALL_P,
14746 RTL_LOOPING_CONST_OR_PURE_CALL_P, RTL_CONST_OR_PURE_P): New macros.
14747 * tree-inline.c (copy_body_r): Changed TREE_READONLY_DECL_P to
14749 * tree-optimize.c (execute_fixup_cfg): Added test for
14750 ECF_LOOPING_CONST_OR_PURE.
14751 * c-common.c (handle_pure_attribute): Changed DECL_IS_PURE to
14753 * tree-cfg.c (update_call_expr_flags): Do not clear tree side
14754 effects for looping pure or const calls.
14755 (verify_gimple_expr): Added verification code.
14756 * config/alpha/alpha.c (alpha_legitimize_address,
14757 alpha_emit_xfloating_libcall): Changed CONST_OR_PURE_CALL_P to
14759 * config/s390/s390.c (s390_emit_tls_call_insn): Ditto.
14760 * config/rs6000/rs6000.c (rs6000_legitimize_tls_address): Ditto.
14761 * config/mips/mips.c (mips_call_tls_get_addr): Ditto.
14762 * cfgrtl.c (need_fake_edge_p): Changed CONST_OR_PURE_CALL_P to
14763 RTL_CONST_OR_PURE_CALL_P.
14764 * dce.c (deletable_insn_p): Allow non looping, non sibling, pure
14765 and const calls to be deleted.
14767 2008-05-07 Uros Bizjak <ubizjak@gmail.com>
14770 * config/i386/mmx.md (mmx_subv2sf3): New expander.
14771 (*mmx_subv2sf3): Rename from mmx_subv2sf3 insn pattern.
14772 (*mmx_eqv2sf3): Rename from mmx_eqv2sf3 insn pattern.
14773 (mmx_eqv2sf3): New expander. Use ix86_fixup_binary_operands_no_copy
14774 to handle nonimmediate operands.
14775 (*mmx_paddwd): Rename from mmx_paddwd insn pattern.
14776 (mmx_paddwd): New expander. Use ix86_fixup_binary_operands_no_copy
14777 to handle nonimmediate operands.
14778 (*mmx_pmulhrwv4hi3): Rename from mmx_pmulhrwv4hi3 insn pattern.
14779 (mmx_pmulhrwv4hi3): New expander. Use
14780 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
14781 (*sse2_umulv1siv1di3): Rename from sse2_umulv1siv1di3 insn pattern.
14782 (sse2_umulv1siv1di3): New expander. Use
14783 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
14784 (*mmx_eq<mode>3): Rename from mmx_eq<mode>3 insn pattern.
14785 (mmx_eq<mode>3): New expander. Use
14786 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
14787 (*mmx_uavgv8qi3): Rename from mmx_uavgv8qi3 insn pattern.
14788 (mmx_uavgv8qi3): New expander. Use
14789 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
14790 (*mmx_uavgv4hi3): Rename from mmx_uavgv4hi3 insn pattern.
14791 (mmx_uavgv4hi3): New expander. Use
14792 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
14794 * config/i386/sse.md
14795 (sse_movhlps_exp): New expander. Use ix86_fixup_binary_operands
14796 to handle nonimmediate operands.
14797 (sse_movlhps_exp): New expander. Use ix86_fixup_binary_operands
14798 to handle nonimmediate operands.
14799 (sse_loadhps_exp): New expander. Use ix86_fixup_binary_operands
14800 to handle nonimmediate operands.
14801 (sse_loadlps_exp): New expander. Use ix86_fixup_binary_operands
14802 to handle nonimmediate operands.
14803 (sse2_unpckhpd_exp): New expander. Use
14804 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
14805 (sse2_unpcklpd_exp): New expander. Use
14806 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
14807 (sse_loadhpd_exp): New expander. Use ix86_fixup_binary_operands
14808 to handle nonimmediate operands.
14809 (sse_loadlpd): New expander. Use ix86_fixup_binary_operands
14810 to handle nonimmediate operands.
14811 (*sse2_<plusminus_insn><mode>3): Rename from
14812 sse2_<plusminus_insn><mode>3 insn pattern.
14813 (sse2_<plusminus_insn><mode>3): New expander. Use
14814 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
14815 (*sse2_umulv2siv2di3): Rename from sse2_umulv2siv2di3 insn pattern.
14816 (sse2_umulv2siv2di3): New expander. Use
14817 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
14818 (*sse4_1_mulv2siv2di3): Rename from sse4_1_mulv2siv2di3 insn pattern.
14819 (sse4_1_mulv2siv2di3): New expander. Use
14820 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
14821 (*sse2_pmaddwd): Rename from sse2_pmaddwd insn pattern.
14822 (sse2_pmaddwd): New expander. Use
14823 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
14824 (*sse2_eq<mode>3): Rename from sse2_eq<mode>3 insn pattern.
14825 (sse2_eq<mode>3): New expander. Use
14826 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
14827 (*sse4_1_eqv2di3): Rename from sse4_1_eqv2di3 insn pattern.
14828 (sse4_1_eqv2di3): New expander. Use
14829 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
14830 (*sse2_uavgv16qi3): Rename from sse2_uavgv16qi3 insn pattern.
14831 (sse2_uavgv16qi3): New expander. Use
14832 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
14833 (*sse2_uavgv16qi3): Rename from sse2_uavgv16qi3 insn pattern.
14834 (sse2_uavgv16qi3): New expander. Use
14835 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
14836 (*sse2_uavgv8hi3): Rename from sse2_uavgv8hi3 insn pattern.
14837 (sse2_uavgv8hi3): New expander. Use
14838 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
14839 (*ssse3_pmulhrswv8hi3): Rename from ssse3_pmulhrswv8hi3 insn pattern.
14840 (ssse3_pmulhrswv8hi3): New expander. Use
14841 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
14842 (*ssse3_pmulhrswv4hi3): Rename from ssse3_pmulhrswv4hi3 insn pattern.
14843 (ssse3_pmulhrswv4hi3): New expander. Use
14844 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
14846 (<sse>_vm<plusminus_insn><mode>3): Do not use ix86_binary_operator_ok.
14847 (<sse>_vmmul<mode>3): Ditto.
14848 (divv4sf3): Do not use ix86_fixup_binary_operands_no_copy.
14850 (ssse3_pmaddubsw128): Use register_operand for operand 1.
14851 (ssse3_pmaddubsw): Ditto.
14853 * config/i386/i386.c (struct_builtin_description)
14854 [IX86_BUILTIN_LOADHPS]: Use CODE_FOR_sse_loadhps_exp.
14855 [IX86_BUILTIN_STOREHPS]: Use CODE_FOR_sse_loadlps_exp.
14856 [IX86_BUILTIN_LOADHPD]: Use CODE_FOR_sse2_loadhpd_exp.
14857 [IX86_BUILTIN_LOADLPD]: Use CODE_FOR_sse2_loadlpd_exp.
14858 [IX86_BUILTIN_MOVHLPS]: Use CODE_FOR_sse_movhlps_exp.
14859 [IX86_BUILTIN_MOVLHPS]: Use CODE_FOR_sse_movlhps_exp.
14860 [IX86_BUILTIN_UNPCKHPD]: Use FOR_sse2_unpckhpd_exp.
14861 [IX86_BUILTIN_UNPCKLPD]: Use FOR_sse2_unpcklpd_exp.
14862 (ix86_fixup_binary_operands): Assert that src1
14863 and src2 must have the same mode when swapped.
14864 (ix86_expand_binop_builtin): Do not use ix86_fixup_binary_operands
14865 and ix86_binary_operator_ok. Do not force operands in registers
14868 2008-05-07 Jan Hubicka <jh@suse.cz>
14870 * cgraph.c (dump_cgraph_node): Update.
14871 * cgraph.h (cgraph_local_info): Break out inline summary.
14872 * cgraphunit.c (cgraph_process_new_functions): Use inliner analysis
14874 * ipa-inline (inline_summary): New accestor function.
14875 (cgraph_clone_inlined_nodes, cgraph_check_inline_limits,
14876 cgraph_decide_inlining, compute_inline_parameters): Update.
14877 * ipa.c (cgraph_remove_unreachable_nodes): Remove statistics.
14879 2008-05-07 Maxim Kuvyrkov <maxim@codesourcery.com>
14881 Cleanup ColdFire scheduling support and add V4 pipeline model.
14883 * config/m68k/m68k.md (UNSPEC_TIE): New constant.
14884 (define_attr cpu): Add cfv4 value.
14885 (define_attr type, define_attr type1): Merge into a single 'type'
14886 attribute. Update all uses.
14887 (define_attr opx_type, define_attr opy_type, define_attr opx_access):
14888 Rearrange and update. Rename value 'reg' to 'Rn', add value 'FPn'.
14890 (define_attr opx_mem, define_attr opy_mem): Remove.
14891 (define_attr op_mem): Clean up, update comment.
14892 (define_attr size): Use specific values instead of general int.
14893 (define_attr guess, define_attr split): Remove. Update all uses.
14894 (movdf_internal, tstsi_internal, tsthi_internal, tstqi_internal,
14895 tst<mode>_68881, pushexthisi_const, movsi_const0_68000_10,
14896 movsi_const0_68040_60, movsi_const0, movsi_cf, movstrictqi_cf,
14897 zero_extendhisi2_cf, zero_extendqisi2_cfv4, cfv4_extendhisi2,
14898 68k_extendhisi2, extendqihi2, cfv4_extendqisi2, 68k_extendqisi2,
14899 floatsi<mode>2_68881, ftrunc<mode>2_68881, ftrunc<mode>2_cf,
14900 fix<mode>qi2_68881, fix<mode>hi2_68881, fix<mode>si2_68881,
14901 adddi_dishl32, addsi3_5200, add<mode>3_floatsi_68881,
14902 add<mode>3_floathi_68881, add<mode>3_floatqi_68881,
14903 add<mode>3_68881, add<mode>3_cf, subdi_dishl32, subsi3,
14904 sub<mode>3_floatsi_68881, sub<mode>3_floathi_68881,
14905 sub<mode>3_floatqi_68881, sub<mode>3_68881, sub<mode>3_cf,
14906 mulhi3, mulhisi3, mulhisisi3_s, mulsi3_68020, mulsi3_cf,
14907 umulhisi3, mulhisisi3_z, mul<mode>3_floatsi_68881,
14908 mul<mode>3_floathi_68881, mul<mode>3_floatqi_68881, fmul<mode>3_cf,
14909 div<mode>3_cf, sqrt<mode>2_cf, abs<mode>2_cf, clzsi2,
14910 one_cmplsi2_5200, subreghi1ashrdi_const32, ashrsi3, lshrsi3,
14911 bsetmemqi, bsetmemqi_ext, bclrmemqi, bclrmemqi_ext,
14912 beq, bne, bgt, blt, bordered, bunordered, buneq, bunge, bungt, bunle,
14913 bunlt, bltgt, tablejump_internal, call, non_symbolic_call_value,
14914 symbolic_call_value_jsr, symbolic_call_value_bsr, link):
14915 Update or set attributes.
14916 (stack_tie): New fake instruction.
14918 * config/m68k/m68k.h (TUNE_CFV4): New macro.
14919 (m68k_sched_attr_size): Update declaration.
14920 (m68k_sched_attr_type2): Remove.
14921 (m68k_sched_address_bypass_p, m68k_sched_indexed_address_bypass_p):
14922 Declare new bypass predicates.
14924 * config/m68k/m68k.c (m68k_sched_issue_rate,
14925 m68k_sched_first_cycle_multipass_dfa_lookahead): Declare hook
14927 (TARGET_SCHED_ISSUE_RATE,
14928 TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD): Override hooks.
14929 (override_options): Handle scheduling for ColdFire V4 core.
14930 (m68k_expand_prologue): Emit stack_tie.
14931 (enum attr_op_type): Split value 'OP_TYPE_REG' to 'OP_TYPE_RN' and
14932 'OP_TYPE_FPN'. Update all uses.
14933 (sched_guess_p): Remove.
14934 (sched_address_type): Handle symbolic addresses.
14935 (sched_get_operand): New static function.
14936 (sched_operand_type): Merge into sched_attr_op_type.
14937 (sched_attr_op_type): Handle FP registers, handle quick constants,
14939 (m68k_sched_attr_opx_type, m68k_sched_attr_opy_type): Update.
14940 (m68k_sched_attr_size): Update. Move logic to ...
14941 (sched_get_attr_size_int): New static function.
14942 (sched_get_opxy_mem_type): New static function.
14943 (m68k_sched_attr_op_mem): Update.
14944 (m68k_sched_attr_type2): Remove.
14945 (sched_cfv4_bypass_data): New static variable.
14946 (m68k_sched_adjust_cost): Handle ColdFire V4 bypass.
14947 (m68k_sched_issue_rate): Implement scheduler hook.
14948 (struct _sched_ib: enabled_p): New field.
14949 (m68k_sched_variable_issue): Update. Handle V4.
14950 (SCHED_DUMP_TODO, SCHED_DUMP_DONE, SCHED_DUMP_NOTHING,
14951 sched_dump_class_func_t, sched_dump_split_class,
14952 sched_dump_dfa_guess_unit_code, sched_dump_dfa_state,
14953 sched_dump_dfa_class, m68k_sched_dump): Remove.
14954 (m68k_sched_first_cycle_multipass_dfa_lookahead): Implement scheduler
14956 (m68k_sched_init_global): Remove statisctics dumping, introduce
14957 sanity check that all instructions have pipeline reservations. Handle
14959 (m68k_sched_dfa_pre_advance_cycle, m68k_sched_dfa_post_advance_cycle):
14960 Handle ColdFire V4 core.
14961 (sched_mem_operand_p, sched_get_reg_operand, sched_get_mem_operand):
14962 New static functions.
14963 (m68k_sched_address_bypass_p): New bypass predicate.
14964 (sched_get_indexed_address_scale): New static function.
14965 (m68k_sched_indexed_address_bypass_p): New bypass predicate.
14967 * cf.md: Update comments.
14968 (define_attr type2): Remove. Use 'type' attribute instead.
14970 (cf_ib): Rename to cfv123_ib. Update all uses.
14971 (cf_oep): Rename to cfv123_oep. Update all uses.
14972 (cf_chr): Rename to cfv123_chr. Update all uses.
14973 (cf_mem): Rename to cfv123_mem. Update all uses.
14974 (cf_mac): Move to more appropriate place.
14975 (cfv123_guess): New automaton and cpu_unit.
14976 (cfv123_*, cfv12_*, cfv1_*, cfv2_*, cfv3_*): Use type attribute.
14977 Update uses of 'size' attribute. Handle before reload scheduling.
14978 (cfv123_guess): New dummy reservation for unhandled instructions.
14979 (cfv4_*): Pipeline description of ColdFire V4 core.
14980 (ignore): New reservation to handle 'ignore' type.
14982 2008-05-07 Ian Lance Taylor <iant@google.com>
14984 PR middle-end/36013
14985 * gimplify.c (find_single_pointer_decl_1): Don't look through
14987 (find_single_pointer_decl): Adjust comments.
14989 2008-05-07 Jakub Jelinek <jakub@redhat.com>
14991 PR middle-end/36137
14992 * fold-const.c (fold_binary): Use STRIP_SIGN_NOPS instead of
14993 STRIP_NOPS on arguments even for MIN_EXPR and MAX_EXPR.
14995 PR middle-end/36106
14996 * omp-low.c (expand_omp_atomic_pipeline): Load value using the
14997 integral type rather than floating point, then VIEW_CONVERT_EXPR
14998 to the floating point type.
15000 2008-05-07 Uros Bizjak <ubizjak@gmail.com>
15002 * config/i386/i386.c (ix86_expand_copysign): Force non-zero constant
15003 TFmode op0 to register.
15005 2008-05-07 Alan Modra <amodra@bigpond.net.au>
15007 * c-decl.c (grokdeclarator): Comment typo.
15009 2008-05-06 Aldy Hernandez <aldyh@redhat.com>
15011 * tree-flow.h: Remove prototype for computed_goto_p.
15012 * tree-cfg.c (computed_goto_p): Make static.
15014 2008-05-06 H.J. Lu <hongjiu.lu@intel.com>
15017 * config/i386/i386.c (contains_128bit_aligned_vector_p): Renamed to ...
15018 (contains_aligned_value_p): This. Handle _Decimal128.
15019 (ix86_function_arg_boundary): Only align _Decimal128 to its
15020 natural boundary and handle it properly.
15022 2008-05-06 Martin Jambor <mjambor@suse.cz>
15024 * ipa-cp.c (ipcp_method_orig_node): Renamed to ipcp_get_orig_node.
15025 (ipcp_method_is_cloned): Renamed to ipcp_node_is_clone
15026 (ipcp_method_set_orig_node): Removed.
15027 (ipcp_cval_get_cvalue_type): Removed.
15028 (ipcp_method_get_scale): Renamed to ipcp_get_node_scale.
15029 (ipcp_method_set_scale): Renamed to ipcp_set_node_scale.
15030 (ipcp_cval_set_cvalue_type): Removed.
15031 (ipcp_cval_get_cvalue): Removed.
15032 (ipcp_cval_set_cvalue): Removed.
15033 (ipcp_type_is_const): Renamed to ipcp_lat_is_const.
15034 (ipcp_cval_equal_cvalues): Renamed to ipcp_lats_are_equal
15035 (ipcp_lats_are_equal): Changed parameters to two ipcp_lattice's
15036 (ipcp_cval_meet): Renamed to ipa_lattice_meet
15037 (ipcp_cval_changed): Changed to use ipcp_lat_is_const
15038 (ipcp_method_cval): Renamed to ipcp_get_ith_lattice
15039 (ipcp_get_ith_lattice): Changed parameters.
15040 (ipcp_cval_compute): Renamed to ipcp_lattice_from_jfunc
15041 (ipcp_lattice_from_jfunc): Changed parameters.
15042 (ipcp_redirect): Local lattice pointer instead of lattice type variable.
15043 (ipcp_method_cval_print): Added temporary variable info.
15044 (ipcp_redirect): Removed already unused local variable caller.
15045 (ipcp_redirect): New temporary variable orig_callee_info
15046 (ipcp_redirect): Removed newly unused local variable callee.
15047 (ipcp_redirect): Removed (a bit confusing) local variable type.
15048 (ipcp_insert_stage): Added local variable info.
15049 (ipcp_cval_changed): Renamed to ipcp_lattice_changed, parameters
15051 (ipcp_formal_create): Removed.
15052 (ipcp_method_cval_set): Removed.
15053 (ipcp_propagate_stage): Renamed lattice variables.
15054 (ipcp_method_cval_set_cvalue_type): Removed.
15055 (ipcp_method_cval_print): Renamed to ipcp_print_all_lattices
15056 (ipcp_print_all_lattices): Changed printed strings to refer to
15057 lattices rather than cvals.
15058 (ipcp_method_cval_init): Renamed to ipcp_initialize_node_lattices
15059 (ipcp_propagate_const): Changed formal parameters.
15060 (build_const_val): Changed formal parameters.
15061 (ipcp_insert_stage): Removed useless variable cvalue
15062 (build_const_val): Changed formal parameters.
15063 (ipcp_method_compute_scale): Renamed to ipcp_compute_node_scale
15064 (ipcp_after_propagate): Renamed to ipcp_change_tops_to_bottom
15065 (ipcp_callsite_param_print): Renamed to ipcp_print_all_jump_functions
15066 (ipcp_profile_mt_count_print): Renamed to ipcp_print_func_profile_counts
15067 (ipcp_print_func_profile_counts): Changed string from "method" to
15069 (ipcp_profile_cs_count_print): Renamed to ipcp_print_call_profile_counts
15070 (ipcp_profile_edge_print): Renamed to ipcp_print_edge_profiles
15071 (ipcp_profile_bb_print): Renamed to ipcp_print_bb_profiles
15072 (ipcp_structures_print): Renamed to ipcp_print_all_structures
15073 (ipcp_profile_print): Renamed to ipcp_print_profile_data
15074 (ipcp_lat_is_const): Changed parameters and made inline.
15075 (ipcp_replace_map_create): Renamed to ipcp_create_replace_map
15076 (ipcp_redirect): Renamed to ipcp_need_redirect_p
15077 (ipcp_need_redirect_p): Calls ipcp_lat_is_const instead of using
15078 the predicate condition directly
15079 (ipcp_propagate_stage): Added local variable args. Removed local
15080 variable callee. (Both are mere code simplifications.)
15081 (ipcp_method_dont_insert_const): Renamed to
15082 ipcp_node_not_modifiable_p.
15083 (ipcp_node_not_modifiable_p): Made inline.
15084 (ipcp_cloned_create): Renamed to ipcp_init_cloned_node
15085 (ipcp_propagate_const): Renamed to ipcp_propagate_one_const
15086 (ipcp_print_all_lattices): Removed variable cvalue
15087 (ipcp_method_scale_print): Renamed to ipcp_function_scale_print
15090 2008-05-06 Olivier Hainque <hainque@adacore.com>
15092 * tree-sra.c (try_instantiate_multiple_fields): Early return
15093 if field has POINTER_TYPE.
15095 2008-05-06 Kai Tietz <kai.tietz@onevision.com>
15097 * config/i386/i386.c (output_set_got): Fix for x86_64 output_emit_asm
15098 by using 'q' specifier for instruction.
15099 (ix86_file_end): Replaced case TARGET_64BIT_MS_ABI by TARGET_64BIT.
15101 2008-05-06 Anatoly Sokolov <aesok@post.ru>
15103 * config/avr/avr.md (*sbrx_branch, *sbix_branch, *sbix_branch_tmp):
15104 Change mode of zero_extract from QImode to HImode.
15105 (sign bit tests peepholes): (Ditto.).
15107 2008-05-06 Uros Bizjak <ubizjak@gmail.com>
15109 * config/i386/mmx.md: Remove double backslashes from asm templates.
15110 (*mmx_addv2sf3): Rename from mmx_addv2sf3 insn pattern.
15111 (mmx_addv2sf3): New expander. Use ix86_fixup_binary_operands_no_copy
15112 to handle nonimmediate operands.
15113 (*mmx_mulv2sf3): Rename from mmx_mulv2sf3 insn pattern.
15114 (mmx_mulv2sf3): New expander. Use ix86_fixup_binary_operands_no_copy
15115 to handle nonimmediate operands.
15116 (*mmx_<code>v2sf3_finite): New insn pattern.
15117 (*mmx_<code>v2sf3): Rename from mmx_<code>v2sf3 insn pattern.
15118 (mmx_<code>v2sf3): New expander. Use
15119 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
15120 (mmx_<plusminus_insn><mode>3): New expander. Use
15121 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
15122 (*mmx_<plusminus_insn><mode>3): New insn pattern.
15123 (mmx_add<mode>3): Removed.
15124 (mmx_ssadd<mode>3): Ditto.
15125 (mmx_usadd<mode>3): Ditto.
15126 (mmx_sub<mode>3): Ditto.
15127 (mmx_sssub<mode>3): Ditto.
15128 (mmx_ussub<mode>3): Ditto.
15129 (*mmx_mulv4hi3): Rename from mmx_mulv4hi3 insn pattern.
15130 (mmx_mulv4hi3): New expander. Use ix86_fixup_binary_operands_no_copy
15131 to handle nonimmediate operands.
15132 (*mmx_smulv4hi3_highpart): Rename from mmx_smulv4hi3_highpart
15134 (mmx_smulv4hi3_highpart): New expander. Use
15135 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
15136 (*mmx_umulv4hi3_highpart): Rename from mmx_umulv4hi3_highpart
15138 (mmx_umulv4hi3_highpart): New expander. Use
15139 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
15140 (*mmx_<code>v4hi3): Rename from mmx_<code>v4hi3 insn pattern.
15141 (mmx_<code>v4hi3): New expander. Use
15142 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
15143 (*mmx_<code>v8qi3): Rename from mmx_<code>v8qi3 insn pattern.
15144 (mmx_<code>v8qi3): New expander. Use
15145 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
15146 (*mmx_<code><mode>3): Rename from mmx_<code><mode>3 insn pattern.
15147 (mmx_<code><mode>3): New expander. Use
15148 ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
15150 2008-05-05 Jan Hubicka <jh@suse.cz>
15152 PR tree-optimization/36118
15153 * passes.c (pass_init_dump_file): Fix dump header.
15155 2008-05-05 Andrew Pinski <andrew_pinski@playstation.sony.com>
15157 PR middle-end/36141
15158 * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Don't create
15159 VCE for function decls.
15161 2008-05-05 H.J. Lu <hongjiu.lu@intel.com>
15163 * config/i386/sse.md (sse2_<plusminus_insn><mode>3): Fix a typo.
15165 2008-05-05 H.J. Lu <hongjiu.lu@intel.com>
15167 * config/i386/i386.md (sat_plusminus): New.
15168 (plusminus_insn): Likewise.
15169 (plusminus_mnemonic): Likewise.
15171 (comm): Add ss_plus, us_plus, ss_minus and us_minus.
15172 (*<addsub><mode>3_cc_overflow): Renamed to ...
15173 (*<plusminus_insn><mode>3_cc_overflow): This.
15174 (*<addsub>si3_zext_cc_overflow): Renamed to ...
15175 (*<plusminus_insn>si3_zext_cc_overflow): This.
15177 * config/i386/sse.md (<addsub><mode>3): Renamed to ...
15178 (<plusminus_insn><mode>3): This.
15179 (*<addsub><mode>3): Renamed to ...
15180 (*<plusminus_insn><mode>3): This.
15181 (<sse>_vm<addsub><mode>3): Renamed to ...
15182 (<sse>_vm<plusminus_insn><mode>3): This.
15183 (sse3_h<addsub>v4sf3): Renamed to ...
15184 (sse3_h<plusminus_insn>v4sf3): This.
15185 (sse3_h<addsub>v2df3): Renamed to ...
15186 (sse3_h<plusminus_insn>v2df3): This.
15187 (<plusminus_insn><mode>3): New.
15188 (*<plusminus_insn><mode>3): Likewise.
15189 (sse2_<plusminus_insn><mode>3): Likewise.
15190 (add<mode>): Removed.
15191 (*add<mode>3): Likewise.
15192 (sse2_ssadd<mode>3): Likewise.
15193 (sse2_usadd<mode>3): Likewise.
15194 (sub<mode>3): Likewise.
15195 (*sub<mode>3): Likewise.
15196 (sse2_sssub<mode>3): Likewise.
15197 (sse2_ussub<mode>3): Likewise.
15199 2008-05-05 Benjamin Kosnik <bkoz@redhat.com>
15201 * gthr-single.h: Add in required interface elements as per gthr.h.
15202 Add stub types for __gthread_key_t, __gthread_once_t. Add defines
15203 for __GTHREAD_ONCE_INIT, __GTHREAD_RECURSIVE_MUTEX_INIT.
15204 Generalize UNUSED macro.
15205 (__gthread_once): Add.
15206 (__gthread_key_create): Add.
15207 (__gthread_key_delete): Add.
15208 (__gthread_getspecific): Add.
15209 (__gthread_setspecific): Add.
15211 2008-05-05 Andrew Pinski <Andrew.Pinski@playstation.sony.com>
15213 * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): If we have
15214 the same size types for the indirect reference on the rhs, then
15217 2008-05-05 Uros Bizjak <ubizjak@gmail.com>
15219 * config/i386/i386.md
15220 (*float<SSEMODEI24:mode><MODEF:mode>2_sse_interunit): Use only
15221 one insn template instead of template series.
15222 (*xordi_1_rex64): Ditto.
15223 (*xordi_2_rex64): Ditto.
15225 2008-05-05 Ira Rosen <irar@il.ibm.com>
15227 PR tree-optimization/36119
15228 * tree-vect-transform.c (vectorizable_assignment): Set NCOPIES to 1
15231 2008-06-04 Jan Hubicka <jh@suse.cz>
15233 tree-optimization/36100
15234 * tree-pass.h (pass_O0_always_inline): Declare.
15235 * ipa-inline.c (inline_transform): Remove dead code.
15236 (cgraph_gate_O0_always_inline, cgraph_O0_always_inline,
15237 pass_O0_always_inline): New.
15238 * passes.c (init_optimization_passes): Add pass_O0_always_inline.
15240 2008-05-04 Kai Tietz <kai.tietz@onevision.com>
15242 * config/i386/i386.c (x86_output_mi_thunk): Use movq alternative
15243 mnemonic in this_param move for TARGET_64BIT.
15245 2008-05-04 Uros Bizjak <ubizjak@gmail.com>
15247 * config/i386/i386.md (*strmovsi_1): Simplify asm alternatives.
15248 (*strmovsi_rex_1): Ditto.
15249 (*strsetsi_1): Ditto.
15250 (*strsetsi_rex_1): Ditto.
15252 (add<mode>cc): Macroize expander from addqicc, addhicc, addsicc and
15253 adddicc expanders using SWI mode iterator.
15255 2008-05-04 H.J. Lu <hongjiu.lu@intel.com>
15258 * config/i386/i386.c (ix86_expand_special_args_builtin): Remove three
15261 2008-05-04 David S. Miller <davem@davemloft.net>
15263 * config.gcc (sparc*-*-*): Always set need_64bit_hwint to yes.
15264 (sparc*-*-linux*): Use linux.h in tm_file.
15265 (sparc-*-linux*): If 'enabled_targets' is 'all', build a bi-arch
15266 compiler defaulting to 32-bit.
15267 (sparc*-*-*): Remove explicit target settings of need_64bit_hwint,
15269 * config/sparc/linux.h: Remove definitions now obtained
15270 properly from linux.h
15271 * config/sparc/linux64.h: Likewise.
15272 (ASM_CPU_DEFAULT_SPEC): Change this to ASM_CPU64_DEFAULT_SPEC, we
15273 don't want this setting for 32-bit builds in a biarch compiler.
15274 * doc/install.texi: Add sparc-linux to list of targets
15275 supporting --enable-targets=all.
15277 2008-05-03 Andrew Pinski <pinskia@gmail.com>
15279 * Makefile.in (tree-ssa-phiprop.o): Fix dependencies.
15281 2008-05-03 H.J. Lu <hongjiu.lu@intel.com>
15283 * config/i386/i386.c (ix86_builtin_type): Move V4SI_FTYPE_V4SF
15284 after V4SI_FTYPE_V8HI.
15285 (ix86_init_mmx_sse_builtins): Move case V4HI_FTYPE_V4HI after
15286 case V4SI_FTYPE_V2DF.
15288 2008-05-03 Kenneth Zadeck <zadeck@naturalbridge.com>
15290 * doc/invoke.texi (max-flow-memory-locations): Removed.
15291 * params.def (PARAM_MAX_FLOW_MEMORY_LOCATIONS): Removed.
15293 2008-05-03 Richard Guenther <rguenther@suse.de>
15295 PR middle-end/34973
15296 * opts.c (set_Wstrict_aliasing): Handle the turn-off case.
15298 2008-05-02 David S. Miller <davem@davemloft.net>
15300 * config.gcc (need_64bit_hwint): Document libcpp dependency.
15302 2008-05-02 Simon Baldwin <simonb@google.com>
15305 * c-common.h (warn_array_subscript_range): Removed.
15306 * c-common.c (warn_array_subscript_range): Ditto.
15307 * tree-vrp.c (check_array_ref): Revert to ignoring arrays with size 2.
15308 * c-typeck.c (build_array_ref): Remove warn_array_subscript_range.
15310 2008-05-02 H.J. Lu <hongjiu.lu@intel.com>
15312 * config/i386/i386.c (ix86_special_builtin_type): New.
15313 (bdesc_special_args): Likewise.
15314 (ix86_expand_special_args_builtin): Likewise.
15315 (ix86_init_mmx_sse_builtins): Updated.
15316 (ix86_expand_builtin): Updated.
15317 (ix86_expand_store_builtin): Removed.
15318 (ix86_expand_unop_builtin): Likewise.
15320 * config/i386/mm3dnow.h (__v2sf): Moved to ...
15321 * config/i386/mmintrin.h (__v2sf): Here.
15323 * config/i386/xmmintrin.h (_mm_loadh_pi): Replace __v2si with
15325 (_mm_loadl_pi): Likewise.
15326 (_mm_storeh_pi): Replace __v2si with __v2sf.
15327 (_mm_storel_pi): Likewise.
15329 * doc/extend.texi: Correct __builtin_ia32_loadhps,
15330 __builtin_ia32_loadlps, __builtin_ia32_storehps,
15331 __builtin_ia32_storelps, __builtin_ia32_loadhpd and
15332 __builtin_ia32_loadlpd.
15334 2008-05-02 H.J. Lu <hongjiu.lu@intel.com>
15336 * config/i386/i386.c (ix86_builtin_type): Add FLOAT_FTYPE_FLOAT,
15337 V4SF_FTYPE_V4SF_VEC_MERGE and V2DF_FTYPE_V2DF_VEC_MERGE.
15338 (bdesc_args): Updated. Add scalar SSE builtins with vec_merge.
15339 (ix86_init_mmx_sse_builtins): Updated.
15340 (ix86_expand_args_builtin): Likewise.
15341 (ix86_expand_builtin): Likewise.
15342 (ix86_expand_unop1_builtin): Renamed to ...
15343 (ix86_expand_unop_vec_merge_builtin): This.
15345 2008-05-01 Jan Hubicka <jh@suse.cz>
15348 * ipa-inline.c (inline_generate_summary): Make static.
15349 (inline_transform): Do not call inlining at -O0; make static.
15350 * passes.c (execute_todo): Add sanity check.
15351 (execute_one_ipa_transform_pass): Execute proper flags.
15353 2008-05-01 Eric Botcazou <ebotcazou@adacore.com>
15355 * tree.h (TYPE_NONALIASED_COMPONENT): Expand comment.
15356 (DECL_NONADDRESSABLE_P): Likewise.
15357 * alias.c (record_component_aliases): Fix comment.
15359 2008-05-01 Simon Baldwin <simonb@google.com>
15361 * c-common.h (warn_array_subscript_range): New function.
15362 * c-common.c (warn_array_subscript_range): Ditto.
15363 * tree-vrp.c (check_array_ref): Corrected code to agree with
15364 comment, ignoring only arrays of size 0 or size 1.
15365 * c-typeck.c (build_array_ref): Call warn_array_subscript_range.
15367 2008-05-01 H.J. Lu <hongjiu.lu@intel.com>
15369 * config/i386/i386.c (ix86_builtin_type): Replace
15370 DI_FTYPE_DI_DI_INT with V1DI2DI_FTYPE_V1DI_V1DI_INT.
15371 (bdesc_args): Updated.
15372 (ix86_init_mmx_sse_builtins): Likewise.
15373 (ix86_expand_args_builtin): Likewise.
15375 * config/i386/tmmintrin.h (_mm_alignr_pi8): Replace long long
15378 * doc/extend.texi: Correct __builtin_ia32_palignr.
15380 2008-05-01 H.J. Lu <hongjiu.lu@intel.com>
15383 * config/i386/i386.c (bdesc_crc32): Removed.
15384 (ix86_expand_crc32): Likewise.
15385 (ix86_builtin_type): Replace V2DI2TI_FTYPE_V2DI2TI_INT with
15386 V2DI2TI_FTYPE_V2DI_INT, V2DI2TI_FTYPE_V2DI2TI_V2DI2TI_INT with
15387 V2DI2TI_FTYPE_V2DI_V2DI_INT. Add UINT64_FTYPE_UINT64_UINT64,
15388 UINT_FTYPE_UINT_UINT, UINT_FTYPE_UINT_USHORT and
15389 UINT_FTYPE_UINT_UCHAR.
15390 (bdesc_args): Updated. Add crc32 builtins.
15391 (ix86_init_mmx_sse_builtins): Updated.
15392 (ix86_expand_args_builtin): Updated to support subreg.
15394 * doc/extend.texi: Correct __builtin_ia32_crc32di.
15396 2008-05-01 Jan Hubicka <jh@suse.cz>
15398 * tree-pass.h (opt_pass): Add IPA_PASS.
15399 (varpool_node, cgraph_node): Forward declare.
15400 (ipa_opt_pass): Define.
15401 (pass_ipa_inline): Turn into ipa_opt_pass.
15402 (pass_apply_inline): Remove.
15403 * ipa-inline.c (pass_ipa_inline): Turn into ipa_opt_pass.
15404 (apply_inline): Turn into ....
15405 (inline_transform): ... this one.
15406 (inline_generate_summary): New function.
15407 (pass_apply_inline): Remove.
15408 * function.h (ipa_opt_pass): Forward declare structure; typedef;
15410 (struct function): Add ipa_transforms_to_apply.
15411 * passes.c (register_one_dump_file): Work on IPA_PASS.
15412 (init_optimization_passes): Remove pass_inline_parameters and
15414 (pass_init_dump_file, pass_fini_dump_file): Break out from ....
15415 (execute_one_pass) ... here; apply transforms when possible.
15416 (add_ipa_transform_pass, execute_ipa_summary_asses,
15417 execute_one_ipa_transform_pass): New.
15418 (execute_ipa_pass_list): Update for IPA_PASS type.
15420 2008-05-01 H.J. Lu <hongjiu.lu@intel.com>
15422 * config/i386/i386.c (ix86_builtin_type): Add
15423 V2DI_FTYPE_V2DI_V16QI, V2DI_FTYPE_V2DI_UINT_UINT and
15424 V2DI_FTYPE_V2DI_V2DI_UINT_UINT.
15425 (bdesc_args): Add SSE4a builtins.
15426 (ix86_init_mmx_sse_builtins): Updated.
15427 (ix86_expand_args_builtin): Likewise.
15428 (ix86_expand_builtin): Likewise.
15430 2008-05-01 H.J. Lu <hongjiu.lu@intel.com>
15432 * config/i386/i386.c (ix86_builtin_type): Add
15433 V8HI_FTYPE_V8HI_V8HI_COUNT, V8HI_FTYPE_V8HI_SI_COUNT,
15434 V4SI_FTYPE_V4SI_V4SI_COUNT, V4SI_FTYPE_V4SI_SI_COUNT,
15435 V4HI_FTYPE_V4HI_V4HI_COUNT, V4HI_FTYPE_V4HI_SI_COUNT,
15436 V2DI_FTYPE_V2DI_V2DI_COUNT, V2DI_FTYPE_V2DI_SI_COUNT,
15437 V2SI_FTYPE_V2SI_V2SI_COUNT, V2SI_FTYPE_V2SI_SI_COUNT,
15438 V1DI_FTYPE_V1DI_V1DI_COUNT, V1DI_FTYPE_V1DI_SI_COUNT,
15439 V8HI_FTYPE_V8HI_INT, V4SI_FTYPE_V4SI_INT, V4HI_FTYPE_V4HI_INT,
15440 V2DI2TI_FTYPE_V2DI2TI_INT, V2DI2TI_FTYPE_V2DI2TI_V2DI2TI_INT
15441 and DI_FTYPE_DI_DI_INT.
15442 (bdesc_args): Add MMX/SSE shift, shuffle and palignr builtins.
15443 (ix86_init_mmx_sse_builtins): Updated.
15444 (ix86_expand_args_builtin): Likewise.
15445 (ix86_expand_builtin): Likewise.
15446 (ix86_expand_binop_imm_builtin): Removed.
15448 * doc/extend.texi: Correct __builtin_ia32_palignr128.
15450 2008-04-30 Richard Guenther <rguenther@suse.de>
15452 PR tree-optimization/32921
15453 * tree-ssa-loop-im.c (mem_refs_may_alias_p): Disambiguate with TBAA.
15455 2008-04-30 Richard Sandiford <rsandifo@nildram.co.uk>
15457 * config/arm/arm.c (arm_unwind_emit): Use
15458 crtl->all_throwers_are_sibcalls instead of
15459 cfun->all_throwers_are_sibcalls.
15460 (arm_output_fn_unwind): Likewise.
15461 * config/frv/frv.c (frv_stack_info): Use crtl->uses_pic_offset_table
15462 instead of cfun->uses_pic_offset_table.
15463 (frv_expand_prologue): Likewise.
15464 (frv_frame_pointer_required): Likewise.
15465 (frv_expand_fdpic_call): Likewise.
15466 (frv_emit_movsi): Likewise.
15467 * config/iq2000/iq2000.c (iq2000_expand_prologue): Use
15468 cfun->returns_pcc_struct instead of
15469 current_function_returns_pcc_struct.
15470 * config/m32c/m32c.c (need_to_save): Use crtl->calls_eh_return
15471 instead of cfun->calls_eh_return.
15472 (m32c_pushm_popm): Likewise.
15473 * config/xtensa/xtensa.h (cfun->calls_alloca): Remove bogus
15474 "extern" declaration.
15476 2008-04-30 Richard Guenther <rguenther@suse.de>
15478 PR tree-optimization/21636
15479 * tree-ssa-ccp.c (ccp_fold): Handle &p->x with p being a
15481 (evaluate_stmt): Print the likely value.
15482 (ccp_visit_stmt): Avoid excessive vertical spacing.
15484 2008-04-30 Rafael Espíndola <espindola@google.com>
15486 * builtins.c (fold_call_expr): Return realret.
15487 * tree-ssa-threadedge.c
15488 (record_temporary_equivalences_from_stmts_at_dest): Ignore calls to
15489 __builtin_object_size.
15491 2008-04-30 Seongbae Park <seongbae.park@gmail.com>
15493 * gcc.c (wrapper_string): New variable.
15494 (insert_wrapper): New function.
15495 (execute): New option -wrapper.
15496 * doc/invoke.texi (Overall Options): New driver option -wrapper.
15498 2008-04-30 Nathan Froyd <froydnj@codesourcery.com>
15500 * config/rs6000/crtresgpr.asm, config/rs6000/crtresxgpr.asm,
15501 config/rs6000/crtsavgpr.asm, config/rs6000/crtresfpr.asm,
15502 config/rs6000/crtresxfpr.asm, config/rs6000/crtsavfpr.asm: Break out
15504 * config/rs6000/crtsavres.asm: ...here. Remove unneeded file.
15505 * config/rs6000/e500crtres32gpr.asm, config/rs6000/e500crtres64gpr.asm,
15506 config/rs6000/e500crtres64gprctr.asm,
15507 config/rs6000/e500crtrest32gpr.asm, config/rs6000/e500crtrest64gpr.asm,
15508 config/rs6000/e500crtresx32gpr.asm, config/rs6000/e500crtresx64gpr.asm,
15509 config/rs6000/e500crtsav32gpr.asm, config/rs6000/e500crtsav64gpr.asm,
15510 config/rs6000/e500crtsav64gprctr.asm,
15511 config/rs6000/e500crtsavg32gpr.asm, config/rs6000/e500crtsavg64gpr.asm,
15512 config/rs6000/e500crtsavg64gprctr.asm: New files.
15513 * config/rs6000/t-ppccomm: Add build rules for new files.
15514 (LIB2FUNCS_STATIC_EXTRA): Add new files.
15515 * config/rs6000/t-netbsd: Add build rules for new files.
15516 (LIB2FUNCS_STATIC_EXTRA): New variable.
15517 * config/rs6000/sysv4.h (ENDFILE_SPEC): Don't include crtsavres.o
15518 (CRTSAVRES_DEFAULT_SPEC): Likewise.
15519 * config/rs6000/netbsd.h (ENDFILE_SPEC): Likewise.
15521 2008-04-30 H.J. Lu <hongjiu.lu@intel.com>
15523 * config/i386/i386.c (ix86_builtin_type): Add
15524 FLOAT128_FTYPE_FLOAT128_FLOAT128, V16QI_FTYPE_V16QI_V16QI,
15525 V16QI_FTYPE_V8HI_V8HI, V8QI_FTYPE_V8QI_V8QI,
15526 V8QI_FTYPE_V4HI_V4HI, V8HI_FTYPE_V8HI_V8HI,
15527 V8HI_FTYPE_V16QI_V16QI, V8HI_FTYPE_V4SI_V4SI,
15528 V4SI_FTYPE_V4SI_V4SI, V4SI_FTYPE_V8HI_V8HI,
15529 V4SI_FTYPE_V4SF_V4SF, V4SI_FTYPE_V2DF_V2DF,
15530 V4HI_FTYPE_V4HI_V4HI, V4HI_FTYPE_V8QI_V8QI,
15531 V4HI_FTYPE_V2SI_V2SI, V4SF_FTYPE_V4SF_V4SF,
15532 V4SF_FTYPE_V4SF_V4SF_SWAP, V4SF_FTYPE_V4SF_V2SI,
15533 V4SF_FTYPE_V4SF_V2DF, V4SF_FTYPE_V4SF_DI,
15534 V4SF_FTYPE_V4SF_SI, V2DI_FTYPE_V2DI_V2DI,
15535 V2DI_FTYPE_V16QI_V16QI, V2DI_FTYPE_V4SI_V4SI,
15536 V2DI_FTYPE_V2DF_V2DF, V2SI_FTYPE_V2SI_V2SI,
15537 V2SI_FTYPE_V4HI_V4HI, V2SI_FTYPE_V2SF_V2SF,
15538 V2DF_FTYPE_V2DF_V2DF, V2DF_FTYPE_V2DF_V2DF_SWAP,
15539 V2DF_FTYPE_V2DF_V4SF, V2DF_FTYPE_V2DF_DI,
15540 V2DF_FTYPE_V2DF_SI, V2SF_FTYPE_V2SF_V2SF,
15541 V1DI_FTYPE_V1DI_V1DI, V1DI_FTYPE_V8QI_V8QI and
15542 V1DI_FTYPE_V2SI_V2SI.
15543 (bdesc_2arg): Moved to ...
15544 (bdesc_args): Here.
15545 (ix86_init_mmx_sse_builtins): Updated.
15546 (ix86_expand_args_builtin): Updated. Take a pointer
15547 to const struct builtin_description. Handle comparison
15549 (ix86_expand_sse_compare): Take a new argument for swapping operands.
15550 (ix86_expand_builtin): Updated.
15552 * config/i386/sse.md (ssse3_pmaddubswv8hi3): Renamed to ...
15553 (ssse3_pmaddubsw128): This.
15554 (ssse3_pmaddubswv4hi3): Renamed to ...
15555 (ssse3_pmaddubsw): This.
15557 * doc/extend.texi (__builtin_ia32_packsswb128): Correct prototype.
15558 (__builtin_ia32_packssdw128): Likewise.
15559 (__builtin_ia32_packuswb128): Likewise.
15560 (__builtin_ia32_pmaddubsw): Likewise.
15561 (__builtin_ia32_pmaddubsw128): Likewise.
15563 2008-04-30 Richard Guenther <rguenther@suse.de>
15565 PR tree-optimization/14847
15566 * tree-ssa-ifcombine.c (get_name_for_bit_test): New helper function.
15567 (recognize_bits_test): Use it.
15568 (recognize_single_bit_test): Likewise.
15570 2008-04-30 Martin Jambor <mjambor@suse.cz>
15572 * ipa-cp.c (ipcp_init_stage): Calls ipa_set_called_with_variable_arg
15573 instead of setting number of formal parameters to zero.
15574 (ipcp_init_stage): Do not set the number of actual parameters to zero
15576 (ipcp_propagate_stage): Explicitly skipping all calls to nodes
15577 which are called with variable number of arguments.
15578 (ipcp_insert_stage): Explicitely skipping all nodes which are
15579 called with variable number of arguments.
15580 (ipcp_callsite_param_print): Skipps callsites to nodes with varaible
15581 number of parameters.
15583 * ipa-prop.h (struct ipa_node_params): Added flag
15584 called_with_var_arguments
15585 (ipa_set_param_count): Added. Changed sole setter to use it.
15586 (ipa_get_param_count): Added. All readers of param_count
15587 converted to use it instead.
15588 (ipa_set_called_with_variable_arg): Added.
15589 (ipa_is_called_with_var_arguments): Added.
15590 (ipa_get_ith_param): Added. All readers of param_decls converted
15592 (ipa_set_cs_argument_count): Added, sole writer to argument_count
15594 (ipa_get_cs_argument_count): Added, all readers of argument_count
15596 (ipa_get_ith_jump_func): Added. Accessors of jump values changed
15599 * ipa-prop.h (struct ipcp_formal): Renamed to ipcp_lattice
15600 (struct ipcp_lattice): Renamed cval_type to type
15601 (struct ipa_node_params): ipcp_cval renamed to ipcp_lattices
15603 * ipa-cp.c (ipcp_cval_get_cvalue): Changed return value to tree
15604 (ipcp_cval_set_cvalue): Changed type of parameter value to tree
15605 (ipcp_insert_stage): Changed the type of variable cvalue to tree
15606 (ipcp_replace_map_create): Changed the type of parameter cvalue to tree
15607 (build_const_val): Changed the type of parameter cvalue to tree
15608 (ipcp_propagate_const): Changed the type of parameter cvalue to tree
15609 (ipcp_method_cval_set_cvalue_type): Renamed parameter cval_type1 to type
15611 * ipa-prop.h (struct ipcp_formal): Replaced cvalue with tree called
15614 * ipa-prop.c (ipa_methodlist_init): Renamed to ipa_init_func_list
15615 (ipa_methodlist_not_empty): Removed, the sole user now checks directly
15616 (ipa_add_method): Renamed to ipa_push_func_to_list
15617 (ipa_remove_method): Renamed to ipa_pop_func_from_list
15618 (ipa_callsite_param_count): Removed.
15619 (ipa_callsite_param_count_set): Removed.
15620 (ipa_callsite_param): Removed.
15621 (ipa_callsite_callee): Removed.
15622 (ipa_callsite_compute_param): Renamed to ipa_compute_jump_functions
15623 (ipa_callsite_compute_count): Renamed to ipa_count_arguments
15624 (ipa_method_formal_count): Removed.
15625 (ipa_method_formal_count_set): Removed.
15626 (ipa_method_get_tree): Removed.
15627 (ipa_method_tree_map_create): Removed.
15628 (ipa_method_compute_tree_map): Renamed to ipa_create_param_decls_array
15629 (ipa_create_param_decls_array): Creates the array itself
15630 (ipa_create_param_decls_array): Temporary variable info instead of
15631 a few dereferences.
15632 (ipa_method_formal_compute_count): Renamed to ipa_count_formal_params
15633 (ipa_method_compute_modify): Renamed to ipa_detect_param_modifications
15634 (get_type): Removed.
15635 (ipa_jf_get_info_type): Removed.
15636 (ipa_node_create): Renamed to ipa_create_node_params
15637 (ipa_free): Renamed to ipa_free_all_node_params
15638 (ipa_nodes_create): Renamed to ipa_create_all_node_params
15639 (ipa_edges_create): Renamed to ipa_create_all_edge_args
15640 (ipa_edges_free): Renamed to ipa_free_all_edge_args
15641 (ipa_nodes_free): Integrated into ipa_free_all_node_params and removed
15642 (ipa_free_all_node_params): Deallocation to jump_functions moved to
15643 ipa_free_all_edge_args
15644 (ipa_method_tree_print): Renamed to ipa_print_all_tree_maps
15645 (ipa_method_modify_print): Renamed to ipa_print_all_params_modified
15646 (ipa_create_methodlist_node): Removed.
15647 (ipa_methodlist_method): Removed.
15648 (ipa_methodlist_method_set): Removed.
15649 (ipa_methodlist_next_method): Removed.
15650 (ipa_methodlist_next_method_set): Removed.
15651 (ipa_method_is_modified): Removed.
15652 (ipa_method_modify_create): Removed.
15653 (ipa_method_modify_init): Temporary variable info instead of a few
15655 (ipa_detect_param_modifications): Temporary variable info instead of
15656 a few dereferences.
15657 (ipa_compute_jump_functions): Temporary variable info instead of
15658 a few dereferences.
15659 (ipa_method_modify_set): Removed.
15660 (ipa_method_tree_map): Renamed to ipa_get_param_decl_index
15661 (ipa_get_param_decl_index): Now accepts struct ipa_node_params rather
15662 than craph_node as the first parameter.
15663 (ipa_method_modify_stmt): Renamed to ipa_check_stmt_modifications
15664 (ipa_method_modify_init): Removed.
15665 (ipa_compute_jump_functions): Added a temp variable instead of
15666 repeatadly dereferencing the cgraph_edge.aux pointer
15667 (ipa_callsite_param_set_type): Removed.
15668 (ipa_compute_jump_functions): i renamed to index and moved to
15670 (ipa_callsite_param_set_info_type_formal): Removed.
15671 (ipa_callsite_param_set_info_type): Removed.
15672 (ipa_callsite_param_map_create): Removed.
15673 (ipa_callsite_tree): Removed.
15674 (ipa_callsite_caller): Removed.
15675 (ipa_pop_func_from_list): return_method removed to return_func
15677 * ipa-prop.h (enum cvalue_type): Renamed to ipa_lattice_type,
15678 prefixed all values with IPA_. Changed all users.
15679 (enum jump_func_type): Rnamed UNKNOWN_IPATYPE to IPA_UNKNOWN,
15680 CONST_IPATYPE to IPA_CONST, CONST_IPATYPE_REF to IPA_CONST_REF
15681 and FORMAL_IPATYPE IPA_PASS_THROUGH.
15682 (union parameter_info): Renamed to jump_func_value.
15683 (union jump_func_value): Renamed value to constant
15684 (struct ipa_jump_func): Renamed info_type to value
15685 (struct ipa_node): Renamed to ipa_node_params
15686 (struct ipa_node_params): Renamed ipa_arg_num to param_count
15687 (struct ipa_node_params): Renamed ipa_param_tree to param_decls
15688 (struct ipa_node_params): Renamed ipa_mod to modified_flags
15689 (struct ipa_edge): Renamed to ipa_edge_args
15690 (struct ipa_edge_args): Renamed ipa_param_num to argument_count
15691 (struct ipa_edge_args): Renamed ipa_param_map to jump_functions
15692 (struct ipa_methodlist): Renamed to ipa_func_list
15693 (struct ipa_func_list): method_p renamed to node, next_method
15695 (ipa_methodlist_p): Removed, switched all users to struct pointer
15696 (IS_VALID_TREE_MAP_INDEX): Renamed to IS_VALID_JUMP_FUNC_INDEX
15698 2008-04-30 Alan Modra <amodra@bigpond.net.au>
15700 * config/rs6000/rs6000.c (ALWAYS_RESTORE_ALTIVEC_BEFORE_POP): Define.
15701 (rs6000_emit_epilogue): Use backchain to restore only when we
15702 have a large frame. Make use of frame pointer to restore if we
15703 have one. Handle ALWAYS_RESTORE_ALTIVEC_BEFORE_POP.
15705 2008-04-29 Paolo Bonzini <bonzini@gnu.org>
15707 * config/avr/avr.md (*sbrx_branch, *sbix_branch, *sbix_branch_tmp):
15708 Add mode to zero_extract.
15709 (sign bit tests peepholes): (Ditto.).
15711 2008-04-29 H.J. Lu <hongjiu.lu@intel.com>
15713 * config/i386/i386.c (ix86_builtins): Replace Prescott New
15714 Instructions in comments with SSE3.
15715 (ix86_builtin_type): This. Add FLOAT128_FTYPE_FLOAT128,
15716 INT64_FTYPE_V4SF, INT64_FTYPE_V2DF, INT_FTYPE_V16QI,
15717 INT_FTYPE_V8QI, INT_FTYPE_V4SF, INT_FTYPE_V2DF,
15718 V16QI_FTYPE_V16QI, V8HI_FTYPE_V8HI, V8HI_FTYPE_V16QI,
15719 V8QI_FTYPE_V8QI, V4SI_FTYPE_V4SI, V4SI_FTYPE_V16QI,
15720 V4SI_FTYPE_V4SF, V4SI_FTYPE_V8HI, V4SI_FTYPE_V2DF,
15721 V4HI_FTYPE_V4HI, V4SF_FTYPE_V4SF, V4SF_FTYPE_V4SI,
15722 V4SF_FTYPE_V2DF, V2DI_FTYPE_V2DI, V2DI_FTYPE_V16QI,
15723 V2DI_FTYPE_V8HI, V2DI_FTYPE_V4SI, V2DF_FTYPE_V2DF,
15724 V2DF_FTYPE_V4SI, V2DF_FTYPE_V4SF, V2DF_FTYPE_V2SI,
15725 V2SI_FTYPE_V2SI, V2SI_FTYPE_V4SF, V2SI_FTYPE_V2SF,
15726 V2SI_FTYPE_V2DF, V2SF_FTYPE_V2SF and V2SF_FTYPE_V2SI.
15727 (bdesc_sse_args): Renamed to ...
15728 (bdesc_args): This. Add IX86_BUILTIN_PF2ID, IX86_BUILTIN_PFRCP,
15729 IX86_BUILTIN_PFRSQRT, IX86_BUILTIN_PI2FD, IX86_BUILTIN_PF2IW,
15730 IX86_BUILTIN_PSWAPDSI, IX86_BUILTIN_PSWAPDSF and
15731 IX86_BUILTIN_FABSQ.
15732 (bdesc_1arg): Moved to ...
15733 (bdesc_args): Here.
15734 (ix86_init_mmx_sse_builtins): Updated. Replace Prescott New
15735 Instructions in comments with SSE3.
15736 (ix86_expand_sse_operands_builtin): Renamed to ...
15737 (ix86_expand_args_builtin): This. Updated.
15738 (ix86_expand_unop1_builtin): Update comments.
15739 (ix86_expand_builtin): Updated.
15741 2008-04-29 Richard Guenther <rguenther@suse.de>
15743 PR tree-optimization/36078
15744 * tree-ssa-loop-ivcanon.c (tree_unroll_loops_completely):
15745 Update virtual SSA form after cleaning up the CFG.
15747 2008-04-29 Richard Guenther <rguenther@suse.de>
15749 PR middle-end/15255
15750 * fold-const.c (fold_binary): Fold (A + A) * C to A * 2*C.
15752 2008-04-29 Richard Guenther <rguenther@suse.de>
15754 * tree-ssa-alias.c (finalize_ref_all_pointers): Remove.
15755 (compute_may_aliases): Do not call finalize_ref_all_pointers.
15756 (compute_flow_insensitive_aliasing): Do not treat
15757 PTR_IS_REF_ALL pointers special.
15758 (get_smt_for): Likewise.
15759 (may_alias_p): Re-structure.
15760 (is_escape_site): A ref-all pointer conversion is not an escape site.
15761 * tree-ssa-structalias.c (find_what_p_points_to): Do not treat
15762 PTR_IS_REF_ALL pointers special.
15763 * tree-ssa-structalias.h (struct alias_info): Remove
15764 ref_all_symbol_mem_tag field.
15765 (PTR_IS_REF_ALL): Remove.
15767 2008-04-29 Richard Guenther <rguenther@suse.de>
15769 PR middle-end/36077
15770 * fold-const.c (extract_muldiv_1): In combining division constants
15771 make sure to never overflow.
15773 2008-04-29 Nick Clifton <nickc@redhat.com>
15775 * doc/tm.texi (RETURN_ADDR_RTX): Fix typo.
15777 2008-04-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
15780 * optc-gen.awk: Work around HP-UX/IA awk bug.
15782 2008-04-28 Danny Smith <dannysmith@users.sourceforge.net>
15784 * config/i386/cygming-crtend.c (register_frame_ctor): Revert my
15787 2008-04-28 Uros Bizjak <ubizjak@gmail.com>
15790 * config/i386/i386.md
15791 (*float<SSEMODEI24:mode><MODEF:mode>2_mixed_interunit):
15792 Change operand 1 predicate to nonimmediate_operand.
15794 2008-04-28 Jakub Jelinek <jakub@redhat.com>
15797 * dwarf2out.c (struct die_struct): Mark as chain_circular through
15799 * gengtype.c (walk_type, write_func_for_structure): Handle
15801 * doc/gty.texi: Document chain_circular.
15803 2008-04-28 Richard Guenther <rguenther@suse.de>
15805 PR tree-optimization/36066
15806 * tree-vrp.c (execute_vrp): Cleanup the CFG only after finalizing
15809 2008-04-28 Uros Bizjak <ubizjak@gmail.com>
15812 * config/i386/i386.md
15813 (floatdi<X87MODEF:mode>2_i387_with_xmm splitters):
15814 Use match_scratch instead of match_operand for operands 3 and 4.
15816 2008-04-27 Richard Guenther <rguenther@suse.de>
15818 PR tree-optimization/18754
15819 PR tree-optimization/34223
15820 * tree-pass.h (pass_complete_unrolli): Declare.
15821 * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely): Print
15822 loop size before and after unconditionally of UL_NO_GROWTH in effect.
15823 Rewrite loop into loop closed SSA form if it is not already.
15824 (tree_unroll_loops_completely): Re-structure to iterate over
15825 innermost loops with intermediate CFG cleanups.
15826 Unroll outermost loops only if requested or the code does not grow
15828 * tree-ssa-loop.c (gate_tree_vectorize): Don't shortcut if no
15829 loops are available.
15830 (tree_vectorize): Instead do so here.
15831 (tree_complete_unroll): Also unroll outermost loops.
15832 (tree_complete_unroll_inner): New function.
15833 (gate_tree_complete_unroll_inner): Likewise.
15834 (pass_complete_unrolli): New pass.
15835 * tree-ssa-loop-manip.c (find_uses_to_rename_use): Only record
15836 uses outside of the loop.
15837 (tree_duplicate_loop_to_header_edge): Only verify loop-closed SSA
15838 form if it is available.
15839 * tree-flow.h (tree_unroll_loops_completely): Add extra parameter.
15840 * passes.c (init_optimization_passes): Schedule complete inner
15841 loop unrolling pass before the first CCP pass after final inlining.
15843 2008-04-27 Nathan Sidwell <nathan@codesourcery.com>
15845 * targhooks.h (default_emutls_var_fields,
15846 default_emutls_var_init): Declare.
15847 * tree.h (DECL_THREAD_LOCAL): Compare against TLS_MODEL_REAL.
15848 * target.h (struct gcc_target): Add struct emutls member.
15849 * target-def.h (TARGET_EMUTLS_GET_ADDRESS,
15850 TARGET_EMUTLS_REGISTER_COMMON, TARGET_EMUTLS_VAR_SECTION,
15851 TARGET_EMUTLS_TMPL_SECTION, TARGET_EMUTLS_VAR_PREFIX,
15852 TARGET_EMUTLS_TMPL_PREFIX, TARGET_EMUTLS_VAR_FIELDS,
15853 TARGET_EMUTLS_VAR_INIT, TARGET_EMUTLS_DEBUG_FORM_TLS_ADDRESS,
15854 TARGET_EMUTLS_VAR_ALIGN_FIXED, TARGET_EMUTLS): New.
15855 (TARGET_INITIALIZER): Add TARGET_EMUTLS.
15856 * builtins.def (BUILT_IN_EMUTLS_GET_ADDRESS,
15857 BUILT_IN_EMUTLS_REGISTER_COMMON): Get name from targetm structure.
15858 * dwarf2out.c (loc_descriptor_from_tree_1): Check if emutls can
15859 emit debug information.
15860 * coretypes.h (tls_model): Add TLS_MODEL_EMULATED, TLS_MODEL_REAL.
15861 * varasm.c: Include targhooks.h.
15862 (emutls_object_section, emutls_tmpl_section): New.
15863 (EMUTLS_VAR_PREFIX, EMUTLS_TMPL_PREFIX): Remove.
15864 (EMUTLS_SEPARATOR): New.
15865 (prefix_name): New.
15866 (get_emutls_object_name): New.
15867 (default_emutls_var_fields): New, broken out of ...
15868 (get_emutls_object_type): ... here. Adjust to use target hooks.
15869 (get_emutls_init_templ_addr): Adjust to use target hooks.
15870 (emutls_decl): Adjust to use target hooks.
15871 (emutls_finish): Likewise.
15872 (default_emutls_var_init): New, broken out of ...
15873 (assemble_variable): ... here. Adjust to use target hooks.
15874 * output.h (enum section_category): Add SECCAT_EMUTLS_VAR,
15875 SECCAT_EMUTLS_TMPL.
15876 * c-common.c (handle_section_attribute): Prevent overriding
15877 sections for emulated tls with special sections.
15878 * config/i386/i386.c (x86_64_elf_select_section): Add
15879 SECCAT_EMUTLS_VAR and SECCAT_EMUTLS_TMPL.
15880 (x86_64_elf_unique_section): Likewise.
15881 * config/vxworks.c: Include tree.h.
15882 (vxworks_emutls_var_fields, vxworks_emutls_var_init): New.
15883 (vxworks_override_options): Set TLS scheme.
15884 * doc/tm.texi (Emulated TLS): New node.
15886 2008-04-26 Simon Baldwin <simonb@google.com>
15889 * builtins.c (c_strlen): Suppressed multiple warnings that can occur
15890 with propagated string constants.
15892 2008-04-26 Uros Bizjak <ubizjak@gmail.com>
15894 * config/i386/i386.md (fix_trunc<mode>_i387_fisttp_with_temp): Use 'X'
15895 constraint for operand 2 when operand 0 is memory operand.
15896 (fix_truncdi_i387_with_temp): : Use 'X' constraint for operand 4 when
15897 operand 0 is memory operand.
15898 (fix_trunc<mode>_i387_with_temp): Ditto.
15899 (*floatsi<mode>2_vector_mixed_with_temp): Use 'X' constraint for
15900 operand 2 when operand 1 is memory operand.
15901 (*float<SSEMODEI24:mode><MODEF:mode>2_mixed_with_temp): Ditto.
15902 (*floatsi<mode>2_vector_sse_with_temp): Ditto.
15903 (*float<SSEMODEI24:mode><MODEF:mode>2_sse_with_temp): Ditto.
15904 (*float<SSEMODEI24:mode><X87MODEF:mode>2_i387_with_temp): Ditto.
15905 (floatdi<X87MODEF:mode>2_i387_with_xmm): Use 'X' constraint for
15906 operands 2,3 and 4 when operand 1 is memory operand.
15907 (fistdi2_with_temp): Use 'X' constraint for operand 2 when operand 0
15909 (fistdi2_floor_with_temp): Ditto.
15910 (fist<mode>2_floor_with_temp): Ditto.
15911 (fistdi2_ceil_with_temp): Ditto.
15912 (fist<mode>2_ceil_with_temp): Ditto.
15913 (*truncdfsf_fast_mixed): Merge alternatives 0 and 1.
15915 2008-04-26 David Daney <ddaney@avtrex.com>
15917 * config/mips/mips.md (UNSPEC_COMPARE_AND_SWAP_12): New
15919 (UNSPEC_SYNC_OLD_OP, UNSPEC_SYNC_NEW_OP, UNSPEC_SYNC_EXCHANGE,
15920 UNSPEC_MEMORY_BARRIER, UNSPEC_SET_GOT_VERSION,
15921 UNSPEC_UPDATE_GOT_VERSION): Renumber.
15922 (sync_compare_and_swap<mode>): New expand for QI and HI modes.
15923 (compare_and_swap_12): New insn.
15924 * config/mips/mips-protos.h (mips_expand_compare_and_swap_12): Declare.
15925 * config/mips/mips.c (mips_force_binary): New function.
15926 (mips_emit_int_order_test, mips_expand_synci_loop): Use it.
15927 (mips_expand_compare_and_swap_12): New function.
15928 * config/mips/mips.h (MIPS_COMPARE_AND_SWAP_12): New macro.
15930 2008-04-25 Jan Hubicka <jh@suse.cz>
15933 * cfgexpand.c (pass_expand): Turn into RTL pass.
15934 * passes.c (execute_one_pass): Do pass typechecking after execution.
15935 * tree-pass.h (pass_expand): Turn into RTL pass.
15937 * function.h (struct rtl_data): Move here fields
15938 accesses_prior_frames, calls_eh_return, saves_all_registers,
15939 has_nonlocal_goto, has_asm_statement, is_thunk,
15940 all_throwers_are_sibcalls, limit_stack, profile, uses_const_pool,
15941 uses_pic_offset_table, uses_eh_lsda, tail_call_emit,
15942 arg_pointer_save_area_init from struct function; turn into bool.
15943 (struct function): Move
15944 calls_eh_return, saves_all_registers, has_nonlocal_goto,
15945 has_asm_statement, is_thunk, all_throwers_are_sibcalls, limit_stack,
15946 profile, uses_const_pool, uses_pic_offset_table, uses_eh_lsda,
15947 tail_call_emit, arg_pointer_save_area_init
15948 into struct rtl_data. Remove recursive_call_emit and gimplified flags.
15949 (current_function_returns_struct, current_function_returns_pcc_struct,
15950 current_function_calls_setjmp, current_function_calls_alloca,
15951 current_function_accesses_prior_frames,
15952 current_function_calls_eh_return, current_function_is_thunk,
15953 current_function_stdarg, current_function_profile,
15954 current_function_limit_stack, current_function_uses_pic_offset_table,
15955 current_function_uses_const_pool, current_function_has_nonlocal_label,
15956 current_function_saves_all_registers,
15957 current_function_has_nonlocal_goto,
15958 current_function_has_asm_statement): Remove accesor macros.
15959 * ra-conflict.c (global_conflicts): Update.
15960 * tree-tailcall.c (suitable_for_tail_opt_p): Update.
15961 (suitable_for_tail_call_opt_p): Update.
15962 * builtins.c (expand_builtin_return_addr): Update.
15963 (expand_builtin_setjmp_setup): Update.
15964 (expand_builtin_nonlocal_goto): Update.
15965 * final.c (final_start_function): Update.
15966 (profile_function): Update.
15967 (leaf_function_p): Update.
15968 (only_leaf_regs_used): Update.
15969 * df-scan.c (df_get_exit_block_use_set): Update.
15970 * dojump.c (clear_pending_stack_adjust): Update.
15971 * tree-stdarg.c (gate_optimize_stdarg): Update.
15972 * gimple-low.c (lower_function_body): Update.
15973 * global.c (compute_regsets): Update.
15974 (global_alloc): Update.
15975 * dwarf2out.c (dwarf2out_begin_prologue): Update.
15976 * expr.c (expand_assignment): Update.
15977 * dse.c (dse_step0): Update.
15978 (dse_step1): Update.
15979 * c-decl.c (store_parm_decls): Update.
15980 * local-alloc.c (combine_regs): Update.
15981 (find_free_reg): Update.
15982 * function.c (assign_parms_augmented_arg_list): Update.
15983 (assign_parm_find_data_types): Update.
15984 (assign_parms): Update.
15985 (allocate_struct_function): Update.
15986 (expand_function_start): Update.
15987 (expand_function_end): Update.
15988 (get_arg_pointer_save_area): Update.
15989 (thread_prologue_and_epilogue_insns): Update.
15990 (rest_of_match_asm_constraints): Update.
15991 * stor-layout.c (variable_size): Update.
15992 * gcse.c (gcse_main): Update.
15993 (bypass_jumps): Update.
15994 * gimplify.c (gimplify_function_tree): Update.
15995 * calls.c (emit_call_1): Update.
15996 (expand_call): Update.
15997 * bt-load.c (compute_defs_uses_and_gen): Update.
15998 * except.c (sjlj_assign_call_site_values): Update.
15999 (sjlj_emit_function_enter): Update.
16000 (can_throw_external): Update.
16001 (set_nothrow_function_flags): Update.
16002 (expand_builtin_unwind_init): Update.
16003 (expand_eh_return): Update.
16004 (convert_to_eh_region_ranges): Update.
16005 (output_function_exception_table): Update.
16006 * emit-rtl.c (gen_tmp_stack_mem): Update.
16007 * cfgexpand.c (expand_used_vars): Update.
16008 (tree_expand_cfg): Update.
16009 * cfgcleanup.c (rest_of_handle_jump): Update.
16010 * explow.c (allocate_dynamic_stack_space): Update.
16011 * varasm.c (assemble_start_function): Update.
16012 (force_const_mem): Update.
16013 (mark_constant_pool): Update.
16014 * tree-optimize.c (tree_rest_of_compilation): Update.
16015 * stack-ptr-mod.c (notice_stack_pointer_modification): Update.
16016 * tree-cfg.c (notice_special_calls): Update.
16017 (is_ctrl_altering_stmt): Update.
16018 (tree_can_make_abnormal_goto): Update.
16019 (tree_purge_dead_abnormal_call_edges): Update.
16020 * config/alpha/predicates.md: Update.
16021 * config/alpha/alpha.c (alpha_sa_mask): Update.
16022 (alpha_sa_size): Update.
16023 (alpha_does_function_need_gp): Update.
16024 (alpha_expand_prologue): Update.
16025 (alpha_start_function): Update.
16026 (alpha_output_function_end_prologue): Update.
16027 (alpha_expand_epilogue): Update.
16028 * config/frv/frv.c (frv_stack_info): Update.
16029 (frv_expand_epilogue): Update.
16030 * config/s390/s390.c (s390_regs_ever_clobbered): Update.
16031 (s390_register_info): Update.
16032 (s390_frame_info): Update.
16033 (s390_init_frame_layout): Update.
16034 (s390_can_eliminate): Update.
16035 (save_gprs): Update.
16036 * config/spu/spu.c (spu_split_immediate): Update.
16037 (need_to_save_reg): Update.
16038 (spu_expand_prologue): Update.
16039 (spu_expand_epilogue): Update.
16040 * config/sparc/sparc.md: Update.
16041 * config/sparc/sparc.c (eligible_for_return_delay): Update.
16042 (sparc_tls_got): Update.
16043 (legitimize_pic_address): Update.
16044 (sparc_emit_call_insn): Update.
16045 (sparc_expand_prologue): Update.
16046 (output_return): Update.
16047 (print_operand): Update.
16048 (sparc_function_ok_for_sibcall): Update.
16049 * config/sparc/sparc.h (EXIT_IGNORE_STACK): Update.
16050 * config/m32r/m32r.md: Update.
16051 * config/m32r/m32r.c (MUST_SAVE_RETURN_ADDR): Update.
16052 (m32r_compute_frame_size): Update.
16053 (m32r_expand_prologue): Update.
16054 (m32r_expand_epilogue): Update.
16055 (m32r_legitimize_pic_address): Update.
16056 * config/m32r/m32r.h (FRAME_POINTER_REQUIRED): Update.
16057 * config/i386/linux.h (SUBTARGET_FRAME_POINTER_REQUIRED): Update.
16058 * config/i386/i386.c (ix86_frame_pointer_required): Update.
16059 (gen_push): Update.
16060 (ix86_save_reg): Update.
16061 (ix86_compute_frame_layout): Update.
16062 (ix86_expand_prologue): Update.
16063 (ix86_expand_epilogue): Update.
16064 * config/sh/sh.c (output_stack_adjust): Update.
16065 (calc_live_regs): Update.
16066 (sh5_schedule_saves): Update.
16067 (sh_expand_prologue): Update.
16068 (sh_expand_epilogue): Update.
16069 (sh_setup_incoming_varargs): Update.
16070 (sh_allocate_initial_value): Update.
16071 (sh_get_pr_initial_val): Update.
16072 * config/sh/sh.h (SHMEDIA_REGS_STACK_ADJUST): Update.
16073 * config/sh/sh.md (label:): Update.
16074 * config/avr/avr.c (out_movhi_mr_r): Update.
16075 * config/crx/crx.h (enum): Update.
16076 * config/xtensa/xtensa.h (along): Update.
16077 * config/stormy16/stormy16.c Update.
16078 (xstormy16_compute_stack_layout): Update.
16079 * config/fr30/fr30.c (MUST_SAVE_RETURN_POINTER): Update.
16080 (fr30_expand_prologue): Update.
16081 * config/cris/cris.c (cris_conditional_register_usage): Update.
16082 (cris_reg_saved_in_regsave_area): Update.
16083 (cris_initial_frame_pointer_offset): Update.
16084 (cris_simple_epilogue): Update.
16085 (cris_expand_prologue): Update.
16086 (cris_expand_epilogue): Update.
16087 (cris_expand_pic_call_address): Update.
16088 (cris_asm_output_symbol_ref): Update.
16089 (cris_asm_output_label_ref): Update.
16090 * config/cris/cris.md Update.
16091 * config/iq2000/iq2000.c (compute_frame_size): Update.
16092 (iq2000_expand_epilogue): Update.
16093 * config/mt/mt.h (save_direction): Update.
16094 * config/mn10300/mn10300.c (mn10300_function_value): Update.
16095 * config/ia64/ia64.c (ia64_compute_frame_size): Update.
16096 (ia64_secondary_reload_class): Update.
16097 * config/m68k/m68k.c (m68k_save_reg): Update.
16098 (m68k_expand_prologue): Update.
16099 (m68k_expand_epilogue): Update.
16100 (legitimize_pic_address): Update.
16101 * config/rs6000/rs6000.c (rs6000_got_register): Update.
16102 (first_reg_to_save): Update.
16103 (first_altivec_reg_to_save): Update.
16104 (compute_vrsave_mask): Update.
16105 (compute_save_world_info): Update.
16106 (rs6000_stack_info): Update.
16107 (spe_func_has_64bit_regs_p): Update.
16108 (rs6000_ra_ever_killed): Update.
16109 (rs6000_emit_eh_reg_restore): Update.
16110 (rs6000_emit_allocate_stack): Update.
16111 (rs6000_emit_prologue): Update.
16112 (rs6000_emit_epilogue): Update.
16113 (rs6000_output_function_epilogue): Update.
16114 (output_profile_hook): Update.
16115 (rs6000_elf_declare_function_name): Update.
16116 * config/rs6000/rs6000.h (rs6000_args): Update.
16117 * config/rs6000/rs6000.md: Update.
16118 * config/mcore/mcore.c (mcore_expand_prolog): Update.
16119 * config/arc/arc.c (arc_output_function_epilogue): Update.
16120 * config/arc/arc.h (FRAME_POINTER_REQUIRED): Update.
16121 * config/darwin.c (machopic_function_base_name): Update.
16122 * config/score/score3.c (score3_compute_frame_size): Update.
16125 (score3_epilogue): Update.
16126 * config/score/score7.c (score7_compute_frame_size): Update.
16127 (score7_prologue): Update.
16128 (score7_epilogue): Update.
16129 * config/score/score.h (FRAME_POINTER_REQUIRED): Update.
16130 * config/arm/linux-elf.h (SUBTARGET_FRAME_POINTER_REQUIRED): Update.
16131 * config/arm/arm.c (use_return_insn): Update.
16132 (require_pic_register): Update.
16133 (arm_load_pic_register): Update.
16134 (arm_compute_save_reg0_reg12_mask): Update.
16135 (arm_compute_save_reg_mask): Update.
16136 (thumb1_compute_save_reg_mask): Update.
16137 (output_return_instruction): Update.
16138 (arm_output_function_prologue): Update.
16139 (arm_output_epilogue): Update.
16140 (arm_get_frame_offsets): Update.
16141 (arm_expand_prologue): Update.
16142 (thumb_pushpop): Update.
16143 (thumb_exit): Update.
16144 (thumb1_expand_prologue): Update.
16145 (thumb1_expand_epilogue): Update.
16146 (arm_unwind_emit): Update.
16147 (arm_output_fn_unwind): Update.
16148 * config/arm/arm.h (FRAME_POINTER_REQUIRED): Update.
16149 * config/arm/arm.md: Update.
16150 * config/pa/pa.md: Update.
16151 * config/pa/pa.c (legitimize_pic_address): Update.
16152 (compute_frame_size): Update.
16153 (hppa_expand_prologue): Update.
16154 (hppa_expand_epilogue): Update.
16155 (borx_reg_operand): Update.
16156 * config/pa/pa.h (FRAME_POINTER_REQUIRED): Update.
16157 (HARD_REGNO_RENAME_OK): Update.
16158 * config/mips/mips.c (mips_global_pointer): Update.
16159 (mips_save_reg_p): Update.
16160 (mips_compute_frame_info): Update.
16161 (mips_frame_pointer_required): Update.
16162 (mips_expand_prologue): Update.
16163 (mips_expand_epilogue): Update.
16164 (mips_can_use_return_insn): Update.
16165 (mips_reorg_process_insns): Update.
16166 * config/v850/v850.c (compute_register_save_size): Update.
16167 * config/mmix/mmix.h (FRAME_POINTER_REQUIRED): Update.
16168 * config/mmix/mmix.c (along): Update.
16169 (mmix_expand_epilogue): Update.
16170 * config/bfin/bfin.c (legitimize_pic_address): Update.
16171 (must_save_p): Update.
16172 (stack_frame_needed_p): Update.
16173 (add_to_reg): Update.
16174 (bfin_expand_prologue): Update.
16175 * stmt.c (expand_asm_operands): Update.
16176 * reload1.c (reload): Update.
16177 (init_elim_table): Update.
16179 2008-04-25 Bob Wilson <bob.wilson@acm.org>
16181 * optabs.c (expand_float): Fix REG_EQUAL for UNSIGNED_FLOAT libcall.
16183 2008-04-25 H.J. Lu <hongjiu.lu@intel.com>
16185 * config/i386/sse.md (mov<mode>): Replace SSEMODEI with SSEMODE.
16186 (*mov<mode>_internal): Likewise. Support V4SF and V2DF.
16187 (mov<mode>): Removed.
16188 (*movv4sf_internal): Likewise.
16189 (*movv2df_internal): Likewise.
16191 2008-04-25 Pompapathi V Gadad <Pompapathi.V.Gadad@nsc.com>
16193 * config.gcc (crx-*-elf): Remove deprecation.
16195 2008-04-25 Danny Smith <dannysmith@users.sourceforge.net>
16197 * config/i386/cygming-crtend.c (register_frame_ctor): Register
16198 __gcc_deregister_frame with atexit.
16199 (deregister_frame_dtor): Remove.
16201 2008-04-24 Nathan Froyd <froydnj@codesourcery.com>
16202 Nathan Sidwell <nathan@codesourcery.com>
16204 * config/rs6000/rs6000.opt (mspe): Remove Var property.
16206 * config/rs6000/rs6000.h (rs6000_spe): Declare.
16207 (rs6000_isel): Likewise.
16208 * config/rs6000/rs6000.c (rs6000_spe): New variable.
16209 (rs6000_isel): New variable.
16210 (rs6000_handle_option): Handle OPT_mspe and OPT_misel.
16212 2008-04-24 Jakub Jelinek <jakub@redhat.com>
16215 * c-common.c (handle_vector_size_attribute): Call
16216 lang_hooks.types.reconstruct_complex_type instead of
16217 reconstruct_complex_type.
16218 * config/rs6000/rs6000.c (rs6000_handle_altivec_attribute): Likewise.
16219 * config/spu/spu.c (spu_handle_vector_attribute): Likewise.
16220 * langhooks.h (struct lang_hooks_for_types): Add
16221 reconstruct_complex_type hook.
16222 * langhooks-def.h (LANG_HOOKS_RECONSTRUCT_COMPLEX_TYPE): Define.
16223 (LANG_HOOKS_FOR_TYPES_INITIALIZER): Add it.
16225 2008-04-24 Richard Guenther <rguenther@suse.de>
16227 * c-common.h (check_builtin_function_arguments): Declare.
16228 * c-common.c (validate_nargs): New function.
16229 (check_builtin_function_arguments): Likewise.
16230 * c-typeck.c (build_function_call): Call
16231 check_builtin_function_arguments.
16232 * builtins.c (fold_builtin_classify): Remove error reporting code.
16233 (fold_builtin_unordered_cmp): Likewise.
16234 (fold_builtin_1): Likewise.
16235 (fold_builtin_n): Likewise.
16237 2008-04-24 Jakub Jelinek <jakub@redhat.com>
16239 PR tree-optimization/36008
16240 * fold-const.c (try_move_mult_to_index): If s == NULL, divide
16241 the original op1, rather than delta by step.
16243 2008-04-22 Antoniu Pop <antoniu.pop@gmail.com>
16244 Sebastian Pop <sebastian.pop@amd.com>
16246 * tree-parloops.c (take_address_of, eliminate_local_variables_1,
16247 eliminate_local_variables_stmt, eliminate_local_variables,
16248 separate_decls_in_loop_name, separate_decls_in_loop_stmt,
16249 separate_decls_in_loop, gen_parallel_loop): Make them work on a region
16250 of code delimited by two edges in the CFG.
16251 (separate_decls_in_loop_name): Renamed separate_decls_in_region_name.
16252 (separate_decls_in_loop_stmt): Renamed separate_decls_in_region_stmt.
16253 (separate_decls_in_loop): Renamed separate_decls_in_region. Isolate
16254 the case of parallelisation of reductions.
16255 (expr_invariant_in_region_p): New.
16257 * tree-flow.h (gather_blocks_in_sese_region): Declared.
16258 * tree-cfg.c (gather_blocks_in_sese_region): Extern.
16260 2008-04-24 Ira Rosen <irar@il.ibm.com>
16261 Richard Guenther <rguenther@suse.de>
16263 PR tree-optimization/36034
16264 * tree-vect-analyze.c (vect_analyze_group_access): SLP is
16265 incapable of dealing with loads with gaps.
16267 2008-04-24 Rafael Espíndola <espindola@google.com>
16269 * tree-flow.h (vrp_evaluate_conditional): Change signature.
16270 * tree-ssa-propagate.c (fold_predicate_in): Update call to
16271 vrp_evaluate_conditional.
16272 * tree-vrp.c (vrp_evaluate_conditional_warnv): Remove.
16273 (vrp_evaluate_conditional): Split the cond argument.
16274 (vrp_visit_cond_stmt): Use vrp_evaluate_conditional_warnv_with_ops.
16275 (simplify_stmt_for_jump_threading): Update call to
16276 vrp_evaluate_conditional.
16278 2008-04-24 Ira Rosen <irar@il.ibm.com>
16280 PR tree-optimization/35982
16281 * tree-vect-analyze.c (vect_check_interleaving): Check that the
16282 interleaved data-refs are of the same type.
16284 2008-04-24 Danny Smith <dannysmith@users.net>
16286 * c-format.c (check_format_info_main): Use strncmp rather than a
16287 magic prefix to handle multichar length specs.
16288 * config/i386/msformat-c.c (format_length_info ms_printf_length_specs):
16289 Don't prefix "I64" and "I32" with '\0'.
16291 2008-04-24 Jakub Jelinek <jakub@redhat.com>
16294 * config/i386/i386.c (init_cumulative_args): Don't pass anything
16295 in registers for -m32 only if stdarg_p (fntype).
16297 2008-04-24 Uros Bizjak <ubizjak@gmail.com>
16299 PR rtl-optimization/36006
16300 * expmed.c (store_fixed_bit_field): Copy op0 rtx before moving
16301 temp to op0 in order to avoid invalid rtx sharing.
16303 2008-04-23 Paolo Bonzini <bonzini@gnu.org>
16305 * tree-cfg.c (verify_expr): Check with is_gimple_address. Don't
16306 check TREE_INVARIANT.
16307 * tree-gimple.c (is_gimple_address): New.
16308 (is_gimple_invariant_address): Simplify using decl_address_invariant_p.
16309 * tree-gimple.h (is_gimple_address): New.
16310 * tree.h (decl_address_invariant_p): New.
16311 * tree.c (make_node_stat): Don't set TREE_INVARIANT.
16312 (build_string): Likewise.
16313 (decl_address_invariant_p): New, from is_gimple_invariant_address.
16314 (tree_invariant_p_1): Likewise.
16315 (save_expr): Use it.
16316 (tree_invariant_p): New.
16317 (skip_simple_arithmetic): Use it.
16318 (stabilize_reference_1): Use it.
16319 (recompute_tree_invariant_for_addr_expr): Don't update TREE_INVARIANT,
16321 (build1_stat): Drop code to compute TREE_INVARIANT.
16322 (build2_stat): Drop code to compute TREE_INVARIANT.
16323 (build3_stat): Drop code to compute TREE_INVARIANT.
16324 (build4_stat): Drop code to compute TREE_INVARIANT.
16325 (build5_stat): Drop code to compute TREE_INVARIANT.
16326 (build7_stat): Drop code to compute TREE_INVARIANT.
16327 (merge_dllimport_decl_attributes): Don't mention TREE_INVARIANT.
16328 * tree.h (struct tree_base): Remove invariant_flag.
16329 (TREE_INVARIANT): Remove.
16330 * builtins.c (build_string_literal): Don't set TREE_INVARIANT.
16331 (fold_builtin_expect): Check TREE_CONSTANT.
16332 * tree-ssa-ccp.c (fold_stmt_r): Adjust comment.
16333 * c-tree.h (c_expr_to_decl): Drop third parameter.
16334 * c-typeck.c (build_external_ref): Don't set TREE_INVARIANT.
16335 (build_c_cast): Don't set TREE_INVARIANT.
16336 (pop_init_level): Don't set TREE_INVARIANT.
16337 (c_objc_common_truthvalue_conversion): Don't set TREE_INVARIANT.
16338 * gimplify.c (gimplify_init_ctor_preeval): Add assertion, test
16340 (gimplify_init_constructor): Don't set TREE_INVARIANT.
16341 (gimplify_addr_expr): Adjust comment.
16342 * tree-mudflap.c (mf_build_string):
16343 * print-tree.c (print_node): Don't print TREE_INVARIANT.
16344 * tree-nested.c (convert_nonlocal_reference): Adjust comment.
16345 * c-common.c (fix_string_type): Don't set TREE_INVARIANT.
16346 * langhooks-def.h (lhd_expr_to_decl): Drop third parameter.
16347 * langhooks.c (lhd_expr_to_decl): Drop third parameter.
16348 * langhooks.h (struct lang_hooks): Drop third parameter from
16351 2008-04-23 Richard Guenther <rguenther@suse.de>
16353 PR tree-optimization/27799
16354 PR tree-optimization/32921
16355 PR tree-optimization/32624
16356 * tree-ssa-structalias.c (merge_smts_into): Only merge the
16357 SMTs aliases and the tag itself into the solution.
16358 * tree-ssa-alias.c (compute_flow_sensitive_aliasing): Do not
16359 merge the points-to solution back into the SMT aliases.
16360 (may_alias_p): Use alias_set_subset_of instead of
16361 aliases_conflict_p. A pointer which points to
16362 memory with alias set zero may access any variable.
16364 2008-04-23 Richard Guenther <rguenther@suse.de>
16366 * alias.c (alias_set_subset_of): Correctly handle asking
16367 if zero is a subset of an alias set with zero child.
16368 * tree-ssa-alias.c (have_common_aliases_p): Simplify logic.
16369 (compute_flow_insensitive_aliasing): Correctly walk all
16370 pointers. Do not unnecessarily union sets.
16372 2008-04-23 Richard Guenther <rguenther@suse.de>
16374 PR middle-end/36021
16375 * c-common.c (handle_alloc_size_attribute): Use type_num_arguments.
16377 2008-04-22 Tomas Bily <tbily@suse.cz>
16379 * tree-cfg.c (verify_expr): Check for NON_LVALUE_EXPR as
16381 * tree-vrp.c (extract_range_from_unary_expr): Removed unused
16383 * tree-ssa-threadedge.c (simplify_control_stmt_condition): Likewise.
16384 * tree-ssa-structalias.c (get_constraint_for): Likewise.
16385 * tree-inline.c (estimate_num_insns_1): Likewise.
16386 * varasm.c (const_hash_1, compare_constant, copy_constant)
16387 (compute_reloc_for_constant, output_addressed_constants): Likewise.
16388 * emit-rtl.c (component_ref_for_mem_expr)
16389 (set_mem_attributes_minus_bitpos): Likewise.
16390 * expr.c (highest_pow2_factor, expand_expr_real_1, )
16391 (is_aligning_offset): Likewise.
16392 * dwarf2out.c (loc_descriptor_from_tree_1, add_bound_info): Likewise.
16393 * tree-ssa-loop-ivopts.c (may_be_nonaddressable_p): Likewise.
16394 * dojump.c (do_jump): Likewise.
16395 * builtins.c (get_pointer_alignment, get_memory_rtx)
16396 (integer_valued_real_p, fold_builtin_next_arg): Likewise.
16397 * tree-scalar-evolution.c (instantiate_parameters_1): Likewise.
16399 2008-04-23 Jakub Jelinek <jakub@redhat.com>
16401 PR rtl-optimization/36017
16402 * builtins.c (expand_errno_check): Clear CALL_EXPR_TAILCALL before
16403 expanding the library call.
16405 2008-04-22 Ian Lance Taylor <iant@google.com>
16407 * fold-const.c (pointer_may_wrap_p): Call int_size_in_bytes rather
16408 than size_in_bytes.
16410 2008-04-22 Pat Haugen <pthaugen@us.ibm.com>
16412 * config/rs6000/rs6000.c (rs6000_register_move_cost): Increase cost
16413 of LR/CTR moves for Power6.
16415 2008-04-22 Kenneth Zadeck <zadeck@naturalbridge.com>
16417 PR middle-end/36003
16418 * passes.c (init_optimization_passes): Remove
16419 pass_fast_rtl_byte_dce.
16421 2008-04-22 Uros Bizjak <ubizjak@gmail.com>
16424 * config/i386/xmmintrin.h (_mm_cvtpi16_ps): Rearrange calls to
16425 builtin functions to generate faster code.
16426 (_mm_cvtpu16_ps): Ditto.
16427 (_mm_cvtpi32x2_ps): Ditto.
16429 2008-04-22 Nick Clifton <nickc@redhat.com>
16431 * common.opt (ftree-loop-distribution): Add Optimization
16434 * config/frv/frv.c (frv_stack_info): Use crtl instead of cfun.
16435 (frv_expand_builtin_va_start): Likewise.
16437 * config/arm/arm.c (thumb_find_work_register): Fix location of
16438 argument register count.
16440 2008-04-22 Maxim Kuvyrkov <maxim@codesourcery.com>
16442 Support scheduling for ColdFire V1 and V3 microarchitecture.
16443 Improve scheduling of multiplication instructions.
16445 * config/m68k/m68k.md (cpu): Add cfv1 and cfv3. Rename cf_v2 to cfv1.
16446 (mac): New instruction attribute.
16447 * config/m68k/m68k.c (override_options): Handle cfv1, cfv3 and mac.
16448 (m68k_sched_mac): New variable.
16449 (m68k_sched_attr_type2, m68k_sched_md_init_global): Update.
16450 Handle cfv1 and cfv3.
16451 (max_insn_size): New static variable.
16452 (struct _sched_ib): New type.
16453 (sched_ib): New static variable.
16454 (sched_ib_size, sched_ib_filled, sched_ib_insn): Convert variables
16455 to fields of 'struct _sched_ib sched_ib'. Update all uses.
16456 (m68k_sched_variable_issue): Add modeling of cfv3 instruction buffer.
16458 (m68k_sched_md_init_global, m68k_sched_md_finish_global,
16459 m68k_sched_md_init, m68k_sched_md_finish): Handle cfv1 and cfv3. Init
16460 new variables. Update.
16461 (m68k_sched_dfa_pre_advance_cycle, m68k_sched_dfa_post_advance_cycle):
16462 Add modeling of cfv3 instruction buffer. Update.
16463 * config/m68k/m68k-protos.h (m68k_sched_mac): Declare.
16464 * config/m68k/m68k.h (TUNE_CFV3): New macro.
16465 * config/m68k/cf.md: Change substrings 'cf_v2' to 'cfv12' or 'cfv123'.
16466 (cf_* reservations): Rename to cfv12 or cfv123 to indicate cores
16467 a particular reservation applies to.
16468 (type2): Reorganize attribute values. Rename alu to alu_reg,
16469 alu_l to alu, move_l to omove. Join move to alu. Split mul
16470 to mul_l and mul_w.
16471 (cf_ib_*): Simplify description of instruction buffer.
16472 (cf_ib_w0, cf_ib_w4, cf_ib_w5, cf_ib_w6): Remove.
16473 (cf_mem): Split into cf_mem1 and cf_mem2.
16474 (cf_v2_move_??): Rename to cfv12_alu_??.
16475 (cf_v2_move_l_??): Rename to cfv12_omove_??.
16476 (cf_v2_mul_??): Remove reservations.
16477 (cfv12_mul_l_??, cfv12_mul_w_??, cfv12_mac_w_??, cfv12_mac_l_??,
16478 cfv12_emac_??, cfv12_emac_w_i0): New reservations.
16479 (cfv12_rts, cfv12_call, cfv12_bcc, cfv12_bra, cfv12_jmp): Move to
16481 (cfv3_alu_10, cfv3_omove_10, cfv3_alu_i0, cfv3_omove_i0, cfv3_alu_01,
16482 cfv3_alu_0i, cfv3_alu_11, cfv3_omove_11, cfv3_alu_i1, cfv3_omove_i1,
16483 cfv3_alu_1i, cfv3_omove_1i, cfv3_pea_11, cfv3_pea_i1, cfv3_mul_w_10,
16484 cfv3_mul_l_10, cfv3_mul_w_i0, cfv3_mac_w_10, cfv3_mac_l_10,
16485 cfv3_mac_w_i0, cfv3_emac_10, cfv3_emac_w_i0, cfv3_rts, cfv3_call,
16486 cfv3_bcc, cfv3_bra, cfv3_jmp): New reservations.
16487 (cfv3_*_1, cfv3_*_2, cfv3_*_3): New instruction reservations that are
16488 expansions of the above reservations for instructions of sizes
16491 2008-04-22 Maxim Kuvyrkov <maxim@codesourcery.com>
16493 * rtl-factoring.c (collect_patterns_seqs): Handle CC0 targets.
16495 2008-04-21 Adam Nemet <anemet@caviumnetworks.com>
16497 * coverage.c: Include tree-pass.h.
16498 (coverage_counter_alloc): Print da_file_name to the dump file.
16500 2008-04-21 Kenneth Zadeck <zadeck@naturalbridge.com>
16502 * sbitmap.c (sbitmap_range_empty_p): New function.
16503 * sbitmap.h (sbitmap_range_empty_p): New function.
16504 * bitmap.h: Now includes obstack.h.
16506 2008-04-21 Richard Sandiford <rsandifo@nildram.co.uk>
16507 Kenneth Zadeck <zadeck@naturalbridge.com>
16509 * dbgcnt.def (ra_byte_scan): Added.
16510 * dbgcnt.c (dbg_cnt): Added code to print message to dump_file
16511 when the last hit happens for a counter.
16512 * timevar.def (TV_DF_BYTE_LR): New variable.
16513 * tree-pass.h (pass_fast_rtl_byte_dce): New pass.
16514 * passes.c (pass_fast_rtl_byte_dce): New pass.
16515 * fwprop.c (update_df): Added mode to call df_ref_create.
16516 Renamed DF_REF_WIDTH and DF_REF_OFFSET to DF_REF_EXTRACT_WIDTH and
16517 DF_REF_EXTRACT_OFFSET.
16518 * df.h (DF_BYTE_LR, DF_BYTE_LR_BB_INFO, DF_BYTE_LR_IN,
16519 DF_BYTE_LR_OUT, df_byte_lr): New macro.
16521 (df_ref_extract): Added mode field.
16522 (DF_REF_WIDTH, DF_REF_OFFSET) Renamed to DF_REF_EXTRACT_WIDTH and
16523 DF_REF_EXTRACT_OFFSET.
16524 (DF_REF_EXTRACT_MODE): New macro.
16525 (df_byte_lr_bb_info): New structure.
16526 (df_print_byte_regset, df_compute_accessed_bytes,
16527 df_byte_lr_add_problem, df_byte_lr_get_regno_start,
16528 df_byte_lr_get_regno_len, df_byte_lr_simulate_defs,
16529 df_byte_lr_simulate_uses,
16530 df_byte_lr_simulate_artificial_refs_at_top,
16531 df_byte_lr_simulate_artificial_refs_at_end,
16532 df_compute_accessed_bytes): New function.
16533 (df_ref_create): Add parameter.
16534 (df_byte_lr_get_bb_info): New inline function.
16535 * df-scan.c (df_ref_record, df_uses_record,
16536 df_ref_create_structure): Added mode parameter.
16537 (df_ref_create, df_notes_rescan, df_ref_record, df_def_record_1,
16538 df_defs_record, df_uses_record, df_get_conditional_uses,
16539 df_get_call_refs, df_insn_refs_collect, df_bb_refs_collect,
16540 df_entry_block_defs_collect, df_exit_block_uses_collect):
16541 Added mode parameter to calls to df_ref_record, df_uses_record,
16542 df_ref_create_structure.
16543 (df_ref_equal_p, df_ref_compare): Added test for modes.
16544 (df_ref_create_structure): Added code to set mode. Renamed
16545 DF_REF_WIDTH and DF_REF_OFFSET to DF_REF_EXTRACT_WIDTH and
16546 DF_REF_EXTRACT_OFFSET.
16547 * df-core.c (df_print_byte_regset): New function.
16548 * df-byte-scan.c: New file.
16549 * df-problems.c (df_rd_transfer_function): Removed unnecessary
16550 calls to BITMAP_FREE.
16551 (df_byte_lr_problem_data, df_problem problem_BYTE_LR): New structure.
16552 (df_byte_lr_get_regno_start, df_byte_lr_get_regno_len,
16553 df_byte_lr_set_bb_info, df_byte_lr_free_bb_info,
16554 df_byte_lr_check_regs, df_byte_lr_expand_bitmap,
16555 df_byte_lr_alloc, df_byte_lr_reset, df_byte_lr_bb_local_compute,
16556 df_byte_lr_local_compute, df_byte_lr_init,
16557 df_byte_lr_confluence_0, df_byte_lr_confluence_n,
16558 df_byte_lr_transfer_function, df_byte_lr_free,
16559 df_byte_lr_top_dump, df_byte_lr_bottom_dump,
16560 df_byte_lr_add_problem, df_byte_lr_simulate_defs,
16561 df_byte_lr_simulate_uses,
16562 df_byte_lr_simulate_artificial_refs_at_top,
16563 df_byte_lr_simulate_artificial_refs_at_end): New function.
16564 * dce.c (byte_dce_process_block): New function.
16565 (dce_process_block): au is now passed in rather than computed
16566 locally. Changed loops that look at artificial defs to not look
16567 for conditional or partial ones, because there never are any.
16568 (fast_dce): Now is able to drive byte_dce_process_block or
16569 dce_process_block depending on the kind of dce being done.
16570 (rest_of_handle_fast_dce): Add parameter to fast_dce.
16571 (rest_of_handle_fast_byte_dce): New function.
16572 (rtl_opt_pass pass_fast_rtl_byte_dce): New pass.
16573 * Makefile.in (df-byte-scan.o, debugcnt.o): Added dependencies.
16575 2008-04-21 Daniel Franke <franke.daniel@gmail.com>
16578 * gcc.h: Added fortran options that take arguments to
16579 DEFAULT_SWITCH_TAKES_ARG and DEFAULT_WORD_SWITCH_TAKES_ARG
16582 2008-04-20 Eric Botcazou <ebotcazou@adacore.com>
16584 * tree-sra.c (sra_walk_expr) <VIEW_CONVERT_EXPR>: Disable
16585 scalarization if on the LHS and not a full access.
16587 2008-04-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
16589 * Makefile.in (s-gtyp-input): Remove tmp-gi.list before writing it.
16591 2008-04-18 Rafael Espíndola <espindola@google.com>
16593 * tree-vrp.c (find_case_label_index): Fix the binary search.
16594 (find_case_label_range): New.
16595 (vrp_visit_switch_stmt): Use find_case_label_range.
16596 (simplify_switch_using_ranges): Use find_case_label_range.
16598 2008-04-18 Eric Botcazou <ebotcazou@adacore.com>
16600 * gimplify.c (gimplify_modify_expr_rhs) <COND_EXPR>: Gimplify the LHS
16601 using the is_gimple_lvalue predicate instead of is_gimple_min_lval.
16603 2008-04-18 Tom Tromey <tromey@redhat.com>
16606 * doc/cpp.texi (Implementation-defined behavior): Mention
16609 2008-04-18 Ian Lance Taylor <iant@google.com>
16611 * fold-const.c (pointer_may_wrap_p): New static function.
16612 (fold_comparison): Add another test for pointer overflow. Use
16613 pointer_may_wrap_p to disable some false positives.
16615 2008-04-18 Kris Van Hees <kris.van.hees@oracle.com>
16617 * c-common.c (CHAR16_TYPE, CHAR32_TYPE): New macros.
16618 (fname_as_string): Match updated cpp_interpret_string prototype.
16619 (fix_string_type): Support char16_t* and char32_t*.
16620 (c_common_nodes_and_builtins): Add char16_t and char32_t (and
16621 derivative) nodes. Register as builtin if C++0x.
16622 (c_parse_error): Support CPP_CHAR{16,32}.
16623 * c-common.h (RID_CHAR16, RID_CHAR32): New elements.
16624 (enum c_tree_index) <CTI_CHAR16_TYPE, CTI_SIGNED_CHAR16_TYPE,
16625 CTI_UNSIGNED_CHAR16_TYPE, CTI_CHAR32_TYPE, CTI_SIGNED_CHAR32_TYPE,
16626 CTI_UNSIGNED_CHAR32_TYPE, CTI_CHAR16_ARRAY_TYPE,
16627 CTI_CHAR32_ARRAY_TYPE>: New elements.
16628 (char16_type_node, signed_char16_type_node, unsigned_char16_type_node,
16629 char32_type_node, signed_char32_type_node, char16_array_type_node,
16630 char32_array_type_node): New defines.
16631 * c-lex.c (cb_ident): Match updated cpp_interpret_string prototype.
16632 (c_lex_with_flags): Support CPP_CHAR{16,32} and CPP_STRING{16,32}.
16633 (lex_string): Support CPP_STRING{16,32}, match updated
16634 cpp_interpret_string and cpp_interpret_string_notranslate prototypes.
16635 (lex_charconst): Support CPP_CHAR{16,32}.
16636 * c-parser.c (c_parser_postfix_expression): Support CPP_CHAR{16,32}
16637 and CPP_STRING{16,32}.
16639 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
16642 * aclocal.m4: Regenerate.
16643 * configure: Regenerate.
16645 2008-04-18 Jan Hubicka <jh@suse.cz>
16647 * except.c (dw2_size_of_call_site_table,
16648 sjlj_size_of_call_site_table): Use vector API for call_site_record.
16650 * cgraphbuild.c (build_cgraph_edges): Update.
16651 * tree-pass.h: Update comment.
16652 * final.c (leaf_function_p): Update.
16653 (leaf_renumber_regs): Update.
16654 (rest_of_clean_state): Update.
16655 * omp-low.c (expand_omp_parallel): Update.
16656 * ipa-reference.c (analyze_function): Update.
16657 * reorg.c (find_end_label): Update.
16658 (optimize_skip): Update.
16659 (fill_simple_delay_slots): Update.
16660 (fill_simple_delay_slots): Update.
16661 (make_return_insns): Update.
16662 (dbr_schedule): Update.
16663 * gimple-low.c (record_vars_into): Update.
16664 * cfgbuild.c (make_edges): Update.
16665 * function.c (assign_stack_local): Update.
16666 (assign_parm_adjust_stack_rtl): Update.
16667 (locate_and_pad_parm): Update.
16668 (allocate_struct_function): Do not initialize stack_alignment_needed
16669 and preferred_stack_boundary here.
16670 (stack_protect_prologue): Update.
16671 (stack_protect_epilogue): Update.
16672 (expand_function_start): Initialize stack_alignment_needed,
16673 preferred_stack_boundary and max_jumptable_ents.
16674 (expand_function_end): Update.
16675 (free_after_compilation): Do not NULLify epilogue_delay_list.
16676 * function.h (struct rtl_data): Add stack_protect_guard,
16677 stack_alignment_needed,
16678 preferred_stack_boundary, epilogue_delay_list.
16679 (struct function): Remove value_histograms, stack_alignment_needed,
16680 preferred_stack_boundary, epilogue_delay_list, max_jumptable_ents,
16682 unexpanded_var_list, stack_protect_guard.
16683 (current_function_epilogue_delay_list): Remove.
16684 * ipa-type-escape.c (analyze_function): Update.
16685 * gimplify.c (pop_gimplify_context): Update comment.
16686 * calls.c (expand_call): Update.
16687 (emit_library_call_value_1): Update.
16688 * except.c (set_nothrow_function_flags): Update.
16689 * cfgexpand.c (get_decl_align_unit): Update.
16690 (create_stack_guard): Update.
16691 (estimated_stack_frame_size): Update.
16692 (expand_used_vars): Update.
16693 (tree_expand_cfg): Free histogram earliers, init expansion variables.
16694 * explow.c (allocate_dynamic_stack_space): Update.
16695 * tree-ssa-live.c (remove_unused_locals): Update.
16696 * varasm.c (mark_constant_pool): Update.
16697 * tree-inline.c (remap_decls): Update.
16698 (initialize_cfun): Update.
16699 (declare_return_variable): Update.
16700 (inline_forbidden_p): Update.
16701 (expand_call_inline): Update.
16702 (declare_inline_vars): Update.
16703 (tree_function_versioning): Update.
16704 * tree-flow.h (value_histograms): New.
16705 (VALUE_HISTOGRAMS): New macro.
16706 * basic-block.h (control_flow_graph): Add max_jumptable_ents,
16708 * tree-cfg.c (set_bb_for_stmt): Update.
16709 (replace_by_duplicate_decl): Update.
16710 (move_block_to_fn): Update.
16711 (new_label_mapper): Update.
16712 (dump_function_to_file): Update.
16713 * ipa-struct-reorg.c (build_data_structure): Update.
16714 * cfgrtl.c (print_rtl_with_bb): Update.
16715 * reload1.c (reload): Update.
16717 * config/i386/i386.c (setup_incoming_varargs_64,
16718 ix86_compute_frame_layout): Update.
16719 * config/arc/arc.c (arc_output_function_epilogue): Update.
16721 2008-04-18 Marius Strobl <marius@FreeBSD.org>
16723 * gthr-posix.h (__gthread_active_p): Use the Solaris implementation
16724 for FreeBSD as well.
16725 * gthr-posix95.h: Likewise.
16727 2008-04-17 Richard Sandiford <rsandifo@nildram.co.uk>
16729 PR rtl-optimization/35838
16730 * dse.c (find_shift_sequence): Use subreg_lowpart_offset to work
16731 out the byte offset of the first subreg.
16733 2008-04-17 Uros Bizjak <ubizjak@gmail.com>
16735 * config/i386/i386.md (addti3 splitter): Pass arrays of 3 operands
16736 to split_ti instead of three separate calls with single member arrays.
16737 (subti3 splitter): Ditto.
16738 (adddi3 splitter): Ditto with split_di.
16739 (subdi3 splitter): Ditto.
16740 (negti2 splitter): Pass arrays of 2 operands to split_ti instead of
16741 two separate calls with single member arrays. Swap match_dup
16742 operands 1 and 2 to better fit into the array.
16743 (negdi2 splitter): Ditto with split_di.
16744 (movdfcc splitter): Pass arrays of 2 operands to split_di instead of
16745 two separate calls with single member arrays. Swap match_dup operands
16746 6 and 7 to better fit into the array.
16748 2008-04-17 H.J. Lu <hongjiu.lu@intel.com>
16750 * config/i386/i386.c (sse_builtin_type): New.
16751 (bdesc_sse_args): Likewise.
16752 (bdesc_sse_3arg): Removed.
16753 (bdesc_2arg): Remove IX86_BUILTIN_AESKEYGENASSIST128.
16754 (bdesc_1arg): Remove IX86_BUILTIN_ROUNDPD and
16755 IX86_BUILTIN_ROUNDPS.
16756 (ix86_init_mmx_sse_builtins): Handle bdesc_sse_args. Remove
16757 bdesc_sse_3arg. Remove IX86_BUILTIN_ROUNDPD and
16758 IX86_BUILTIN_ROUNDPS.
16759 (ix86_expand_sse_4_operands_builtin): Removed.
16760 (ix86_expand_sse_operands_builtin): New.
16761 (ix86_expand_unop_builtin): Remove CODE_FOR_sse4_1_roundpd
16762 and CODE_FOR_sse4_1_roundps.
16763 (ix86_expand_builtin): Remove IX86_BUILTIN_AESKEYGENASSIST128.
16764 Handle bdesc_sse_args. Remove bdesc_sse_3arg.
16766 2008-04-17 Alan Modra <amodra@bigpond.net.au>
16769 * config/rs6000/rs6000.c (rs6000_emit_epilogue): Restore vr and vrsave
16770 regs before frame pop when needed. If use_backchain_to_restore_sp
16771 then load backchain into a temp reg to restore vr and vrsave. Add
16772 code to restore vr after frame pop if possible.
16774 2008-04-17 Richard Guenther <rguenther@suse.de>
16776 * tree-vn.c (expressions_equal_p): Do not check type
16777 equality or compatibility before calling operand_equal_p.
16778 * fold-const.c (operand_equal_p): Check equivalence of
16779 integer constants before bailing out due to signedness or
16780 precision differences.
16781 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Ignore
16782 spurious differences in type qualification. Ignore types
16783 for COMPONENT_REFs at all.
16785 2008-04-17 Christian Bruel <christian.bruel@st.com>
16787 * config/sh/sh.c (expand_cbranchdi4): Use original operands for
16788 msw_skip comparison.
16790 2008-04-16 Jakub Jelinek <jakub@redhat.com>
16793 * tree-nrv.c (tree_nrv): Don't optimize if result_type is GIMPLE
16796 PR tree-optimization/35899
16797 * tree-inline.c (expand_call_inline): Use GIMPLE_STMT_OPERAND
16798 rather than TREE_OPERAND.
16800 2008-04-16 Uros Bizjak <ubizjak@gmail.com>
16803 * config/i386/i386.md (fmodxf3): Copy operand 1 and operand 2 into
16804 temporary registers. Change operand predicate to general_operand.
16805 (remainderxf3): Ditto.
16807 2008-04-16 Richard Guenther <rguenther@suse.de>
16809 * Makefile.in (tree-affine.o): Add $(FLAGS_H) dependency.
16810 * tree-affine.c (aff_combination_expand): Look through some
16813 2008-04-15 Doug Kwan <dougkwan@google.com>
16815 * dwarf2asm.c (dw2_assemble_integer): Cast to unsigned HOST_WIDE_INT
16817 * tree-pretty-print.c (dump_generic_node): Ditto.
16818 * final.c (output_addr_const): Ditto.
16819 * dwarf2out.c (output_cfi): Ditto.
16820 * c-pretty-print.c (pp_c_integer_constant): Ditto.
16821 * print-rtl.c (print_rtx): Ditto.
16822 * print-tree.c (print_node_brief, print_node): Ditto.
16823 * c-common.c (match_case_to_enum_1): Ditto.
16824 * sched-vis.c (print_value): Ditto.
16825 * config/i386/i386.c (print_operand): Cast to long unsigned int
16828 2008-04-15 Danny Smith <dannysmith@users.sourceforge.net>
16829 * libgcc2.c [L_trampoline]: Remove unnecessary prototype for
16830 MS Windows VirtualProtect function.
16832 2008-04-15 Jan Hubicka <jh@suse.cz>
16834 * gengtype.c (write_root): Param_is argument is OK.
16835 * expr.c (expand_expr_real_1): Update call of get_exception_*.
16836 * function.h: Include varray.h
16837 (rtl_eh): New stucture based on except.c one.
16838 (call_site_record): New forward declaration and vector type.
16839 * calls.c (emit_call_1): Do not call
16840 note_current_region_may_contain_throw.
16841 * except.c (eh_status): Remove cur_region, try_region since they are
16843 Move filter, exc_ptr, ttype_data, ehspec_data, action_record_data and
16844 exception_handler_label_map, ehr_stackadj, ehr_handler, ehr_label,
16845 sjlj_fc, sjlj_exit_after to rth_eh in function.h.
16846 Remove call_site_data_used, call_site_data_size.
16847 Turn call_site_record into vector in function.h.
16848 (note_current_region_may_contain_throw): Remove.
16849 (get_exception_pointer, get_exception_filter): Do not take struct
16850 function argument; update.
16851 (add_ehl_entry, find_exception_handler_labels, ehspec_filter_hash,
16852 add_ttypes_entry, add_ehspec_entry, assign_filter_values,
16853 build_post_landing_pads, dw2_build_landing_pads,
16854 sjlj_assign_call_site_values, sjlj_mark_call_sites,
16855 sjlj_emit_function_enter, sjlj_emit_function_enter,
16856 sjlj_emit_function_exit, sjlj_emit_dispatch_table,
16857 sjlj_build_landing_pads, finish_eh_generation,
16858 remove_exception_handler_label, remove_eh_handler,
16859 maybe_remove_eh_handler, add_reachable_handler,
16860 reachable_handlers, expand_builtin_eh_return, expand_eh_return,
16861 add_action_record, collect_one_action_chain, add_call_site,
16862 convert_to_eh_region_ranges, sjlj_size_of_call_site_table,
16863 sjlj_output_call_site_table, output_function_exception_table,
16864 * except.h (note_current_region_may_contain_throw): Remove
16865 (get_exception_pointer, get_exception_filter): Do not take struct
16867 * Makefile.in (GTFILES): Put varargs before struct function.
16869 2008-04-15 Eric Botcazou <ebotcazou@adacore.com>
16871 * tree-ssa-structalias.c (get_constraint_for_component_ref): Do not
16872 punt for STRING_CST.
16873 (get_constraint_for): Deal with STRING_CST here instead.
16875 2008-04-15 Richard Guenther <rguenther@suse.de>
16877 * tree-ssa-propagate.c (substitute_and_fold): Substitute
16878 statements in a basic-block with a backward walk. Do not
16879 substitute into dead statements but instead remove those.
16881 2008-04-15 Richard Guenther <rguenther@suse.de>
16883 * params.def (PARAM_MAX_FIELDS_FOR_FIELD_SENSITIVE): Set default
16884 to zero, thus disable creation of SFTs.
16886 2008-04-15 Eric Botcazou <ebotcazou@adacore.com>
16888 * tree-predcom.c (suitable_reference_p): Return false if the
16889 reference can throw.
16891 2008-04-15 Jakub Jelinek <jakub@redhat.com>
16894 * c-decl.c (finish_decl): If extern or static var has variable
16895 size, set TREE_TYPE (decl) to error_mark_node.
16897 2008-04-15 Rafael Espíndola <espindola@google.com>
16899 * fold-const.c (tree_call_nonnegative_warnv_p): Remove local
16902 2008-04-15 Richard Guenther <rguenther@suse.de>
16904 * tree-ssa-sccvn.h (vn_reference_lookup): Adjust prototype.
16905 * tree-ssa-sccvn.c (vn_reference_lookup): New parameter maywalk.
16906 (visit_reference_op_load): Do walk vuse-vdef chains on
16907 vn_reference_lookup.
16908 (visit_reference_op_store): But do not here.
16909 * tree-vn.c (vn_lookup): Do not walk vuse-vdef chains on
16910 vn_reference_lookup.
16911 (vn_lookup_with_vuses): But do so here.
16913 2008-04-14 Ian Lance Taylor <iant@google.com>
16915 * fold-const.c (fold_overflow_warning): Remove assertion.
16917 2008-04-15 Ben Elliston <bje@au.ibm.com>
16919 * config/alpha/alpha.c (alpha_initialize_trampoline): Remove temp,
16920 temp1 local variables.
16922 2008-04-15 Zuxy Meng <zuxy.meng@gmail.com>
16925 * config/i386/winnt.c (i386_pe_section_type_flags): Mark
16926 ".text.unlikely" section as executable.
16928 2008-04-14 James E. Wilson <wilson@tuliptree.org>
16930 * config/ia64/ia64.c (rtx_needs_barrier): Handle
16931 UNSPEC_FR_SQRT_RECIP_APPROX_RES.
16932 * config/ia64/ia64.c (UNSPEC_FR_SQRT_RECIP_APPROX_RES): Define.
16933 (divsi3_internal, divdi3_internal_lat, divdi3_internal_thr,
16934 divsf3_internal_lat, sqrt_approx, sqrtsf2_internal_thr,
16935 divdf3_internal_lat, sqrtdf2_internal_thr, divxf3_internal_lat,
16936 divxf3_internal_thr, sqrtxf2_internal_thr, recip_approx): Use it.
16938 2008-04-14 Ian Lance Taylor <iant@google.com>
16940 * flags.h (POINTER_TYPE_OVERFLOW_UNDEFINED): Define.
16941 * fold-const.c (fold_comparison): If appropriate, test
16942 POINTER_TYPE_OVERFLOW_UNDEFINED, and issue an overflow warning.
16943 (fold_binary): Test POINTER_TYPE_OVERFLOW_UNDEFINED when
16944 reassociating a pointer type.
16945 * doc/invoke.texi (Optimize Options): Document that
16946 -fstrict-overflow applies to pointer wraparound.
16948 2008-04-13 Jan Hubicka <jh@suse.cz>
16950 * m32.c (m32c_pushm_popm): Use crtl->retrun_rtx.
16952 2008-04-12 Andrew Pinski <pinskia@gmail.com>
16954 * config/rs6000/rs6000.c (compute_save_world_info): Set lr_save_p if
16955 we are going to "save the world".
16957 2008-04-13 Hans-Peter Nilsson <hp@axis.com>
16959 * config/cris/cris.md ("*andhi_lowpart_non_v32", "*andhi_lowpart_v32")
16960 ("*andqi_lowpart_non_v32", "*andqi_lowpart_v32"): Use "+" for the
16961 operand 0 constraint, not "=".
16963 2008-04-11 James E. Wilson <wilson@tuliptree.org>
16965 * system.h: Change ASSERT_CHECKING to ENABLE_ASSERT_CHECKING.
16967 2008-04-11 H.J. Lu <hongjiu.lu@intel.com>
16969 * dse.c (record_store): Use HOST_BITS_PER_WIDE_INT instead
16970 of size of positions_needed * CHAR_BIT.
16972 2008-04-11 H.J. Lu <hongjiu.lu@intel.com>
16974 PR middle-end/35897
16975 * dse.c (store_info): Change positions_needed to unsigned
16977 (lowpart_bitmask): New.
16978 (record_store): Cast to unsigned HOST_WIDE_INT for
16979 positions_needed. Assert width <= size of positions_needed *
16980 CHAR_BIT. Call lowpart_bitmask to initialize positions_needed.
16981 (check_mem_read_rtx): Use unsigned HOST_WIDE_INT on mask. Call
16982 lowpart_bitmask to set mask.
16984 2008-04-11 Bernd Schmidt <bernd.schmidt@analog.com>
16986 * config/bfin/constraints.md: New file.
16987 * config/bfin/bfin.md: Include it.
16988 (adddi3): Use satisfies_constraint functions instead of the old macros.
16989 * config/bfin/bfin.h (REG_CLASS_FROM_LETTER, CONSTRAINT_LEN,
16990 CONST_18UBIT_IMM_P, CONST_16BIT_IMM_P, CONST_16UBIT_IMM_P,
16991 CONST_7BIT_IMM_P, CONST_7NBIT_IMM_P, CONST_5UBIT_IMM_P,
16992 CONST_4BIT_IMM_P, CONST_4UBIT_IMM_P, CONST_3BIT_IMM_P,
16993 CONST_3UBIT_IMM_P, CONST_OK_FOR_K, CONST_OK_FOR_P, CONST_OK_FOR_M,
16994 CONST_OK_FOR_CONSTRAINT_P, CONST_DOUBLE_OK_FOR_LETTER,
16995 EXTRA_CONSTRAINT): Delete.
16996 * config/bfin/predicates.md (highbits_operand, reg_or_7bit_operand,
16997 reg_or_neg7bit_operand): Use satisfies_constraint functions instead
16999 * config/bfin/bfin.c: Include "tm-constrs.h".
17000 (bfin_secondary_reload, split_load_immediate, bfin_rtx_costs):
17001 Use satisfies_constraint functions instead of the old macros.
17002 * doc/md.texi (Blackfin Constraints): Update file name reference.
17004 2008-04-11 Richard Guenther <rguenther@suse.de>
17006 PR tree-optimization/35869
17007 * tree-vrp.c (execute_vrp): Move switch statement update after
17008 jump threading. Schedule another cfg cleanup run.
17010 2008-04-11 Volker Reichelt <v.reichelt@netcologne.de>
17013 * attribs.c (decl_attributes): Return early on errorneous node.
17015 2008-04-10 Oleg Ryjkov <olegr@google.com>
17017 * tree.h (struct tree_base): Added a new flag default_def_flag.
17018 (SSA_NAME_IS_DEFAULT_DEF): Changed to use the new flag.
17020 2008-04-11 Kaz Kojima <kkojima@gcc.gnu.org>
17022 * config.gcc (need_64bit_hwint): Need 64bit hwint for sh-*-*.
17024 2008-04-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
17027 * pa.md: Define mode iterator P. Define mode attribute dwc.
17028 (dcacheflush): Update pattern to use iterator P and attribute dwc.
17029 (icacheflush): Likewise.
17030 * pa.h (INITIALIZE_TRAMPOLINE): Use dcacheflushsi/icacheflushsi if
17031 !TARGET_64BIT, and dcacheflushdi/icacheflushdi if TARGET_64BIT.
17033 2008-04-11 Ben Elliston <bje@au.ibm.com>
17035 * config/spu/spu.c (spu_init_builtins): Mark builtins as nothrow.
17037 2008-04-10 Rafael Espíndola <espindola@google.com>
17039 * tree-vrp.c (extract_range_from_binary_expr): Don't handle
17040 TRUTH_ANDIF_EXPR or TRUTH_ORIF_EXPR.
17041 (extract_range_from_expr): The same.
17043 2008-04-10 Adam Nemet <anemet@caviumnetworks.com>
17045 * config/mips/mips.md (GPR2): New mode iterator.
17046 (seq): Add comment.
17047 (*seq_<mode>, *seq_<mode>_mips16, *sne_<mode>, *sgt<u>_<mode>,
17048 *sgt<u>_<mode>_mips16, *sge<u>_<mode>, *slt<u>_<mode>,
17049 *slt<u>_<mode>_mips16 *sle<u>_<mode>, *sle<u>_<mode>_mips16):
17050 Rewrite these to take two modes, the mode of comparison and the
17051 mode of the destination.
17052 * config/mips/mips.c (mips_expand_scc): Instead of having
17053 paradoxical subreg as destination, expand "narrowing" scc if mode
17054 of comparison is SI and target is requested in DI mode.
17055 (mips_emit_int_order_test): Update comment. Make mode of
17056 comparison match CMP0 rather than TARGET. When creating inverse
17057 target use mode of TARGET.
17059 2008-04-10 Adam Nemet <anemet@caviumnetworks.com>
17061 * gcov-dump.c (tag_summary): Only print summaries for the first
17062 GCOV_COUNTERS_SUMMABLE counters.
17064 2008-04-10 Uros Bizjak <ubizjak@gmail.com>
17066 * config/i386/i386.md (absneg): New code iterator.
17067 (absnegprefix): New code attribute.
17068 (<code><mode>2): Macroize expander from abs<mode>2 and neg<mode>2
17069 patterns using absneg code iterator.
17070 (<code>tf2): Macroize expander from abstf2 and negtf2 patterns
17071 using absneg code iterator.
17072 (*<code><mode>2_1): Macroize insn pattern from *abs<mode>2_1 and
17073 *neg<mode>2 patterns using absneg code iterator.
17074 (*<code>extendsfdf2): Macroize insn pattern from *absextendsfdf2 and
17075 *negextendsfdf2 patterns using absneg code iterator.
17076 (*<code>extendsfxf2): Macroize insn pattern from *absextendsfxf2 and
17077 *negextendsfxf2 patterns using absneg code iterator.
17078 (*<code>extendsfdf2): Macroize insn pattern from *absextendsfdf2 and
17079 *negextendsfdf2 patterns using absneg code iterator.
17080 * config/i386/sse.md (<code><mode>2): Macroize expander from
17081 abs<mode>2 and neg<mode>2 patterns using absneg code iterator.
17083 2008-04-10 Andreas Krebbel <krebbel1@de.ibm.com>
17085 * config/s390/s390.h: Remove the remains of the recent search
17086 & replace action of current_function_outgoing_args_size.
17088 2008-04-10 Ira Rosen <irar@il.ibm.com>
17090 PR tree-optimization/35821
17091 * tree-vect-transform.c (vect_create_data_ref_ptr): Add check that
17092 NEW_STMT_LIST is not NULL.
17094 2008-04-09 David Edelsohn <edelsohn@gnu.org>
17097 * toplev.c (process_options): Remove -ffunction-sections debugging
17100 2008-04-09 Peter Bergner <bergner@vnet.ibm.com>
17102 PR middle-end/PR28690
17103 * explow.c (break_out_memory_refs): Use simplify_gen_binary rather
17104 than gen_rtx_fmt_ee to perform more canonicalizations.
17106 2008-04-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
17109 * collect2.c (write_c_file): Don't wrap in "#ifdef __cplusplus".
17111 2008-04-09 Richard Guenther <rguenther@suse.de>
17113 * tree-cfg.c (verify_stmt): Print complete bogus stmt.
17114 (dump_function_to_file): Dump function arguments with types.
17116 2008-04-08 Richard Guenther <rguenther@suse.de>
17118 * fold-const.c (fold_widened_comparison): Do not allow
17119 sign-changes that change the result.
17121 2008-04-08 Janis Johnson <janis187@us.ibm.com>
17124 * config/rs6000/rs6000.c (rs6000_check_sdmode): Handle additional
17125 kinds of indirect references.
17127 2008-04-08 David Edelsohn <edelsohn@gnu.org>
17129 * config/rs6000/rs6000.c (rs6000_output_function_epilogue): Update
17130 GNU Fortran language string.
17132 2008-04-08 Rafael Espíndola <espindola@google.com>
17134 * fold-canst.c (tree_call_nonnegative_warnv_p): New.
17135 (tree_invalid_nonnegative_warnv_p): Use tree_call_nonnegative_warnv_p.
17136 * tree.h (tree_call_nonnegative_warnv_p): New.
17138 2008-04-08 Jan Hubicka <jh@suse.cz>
17140 * function.c (free_after_compilation): Clear out regno_reg_rtx
17143 2008-04-08 Peter Bergner <bergner@vnet.ibm.com>
17146 2008-04-07 Peter Bergner <bergner@vnet.ibm.com>
17148 PR middle-end/PR28690
17149 * rtlanal.c: (commutative_operand_precedence): Give SYMBOL_REF's the
17150 same precedence as REG_POINTER and MEM_POINTER operands.
17152 2008-04-08 Richard Guenther <rguenther@suse.de>
17154 PR middle-end/35834
17155 * tree-ssa-address.c (create_mem_ref): Use POINTER_PLUS_EXPR
17156 for adding index to base.
17158 2008-04-08 Kai Tietz <kai.tietz@onevision.com>
17160 * config/i386/mingw32.h (ENABLE_EXECUTE_STACK): New.
17161 (MINGW_ENABLE_EXECUTE_STACK): New.
17162 (IN_LIBGCC2): For libgcc include windows.h file for
17163 function declarations.
17165 2008-04-08 Hans-Peter Nilsson <hp@axis.com>
17167 * config/cris/cris.c (cris_address_cost): For a PLUS, swap tem1
17168 and tem2 if tem1 is not a REG or MULT.
17170 2008-04-08 Jan Hubicka <jh@suse.cz>
17172 * function.h (incomming_args): Break out of struct function.
17173 (function_subsections): Break out of struct function.
17174 (rtl_data): Add args, subsections fields. Break out outgoing_args_size,
17175 return_rtx and hard_reg_initial_vals from struct function.
17176 Kill inl_max_label_num.
17177 (current_function_pops_args, current_function_args_info,
17178 current_function_args_size, current_function_args_size,
17179 current_function_pretend_args_size,
17180 current_function_outgoing_args_size,
17181 current_function_internal_arg_pointer, current_function_return_rtx):
17182 Kill compatibility accestor macros.
17183 * builtins.c (expand_builtin_apply_args_1): Update.
17184 (expand_builtin_next_arg): Update.
17185 * df-scan.c (df_get_call_refs): Update.
17186 * dbxout.c (dbxout_function_end): Update.
17187 * dwarf2out.c (dwarf2out_switch_text_section): Update.
17188 (output_line_info): Update.
17189 (secname_for_decl): Update.
17190 (dwarf2out_var_location): Update.
17191 * function.c (free_after_compilation): Update.
17192 (assign_parm_find_stack_rtl): Update.
17193 (assign_parms): Update.
17194 (expand_dummy_function_end): Update.
17195 (expand_function_end): Update.
17196 * calls.c (mem_overlaps_already_clobbered_arg_p): Update.
17197 (expand_call): Update.
17198 (emit_library_call_value_1): Update.
17199 (store_one_arg): Update.
17200 * varasm.c (initialize_cold_section_name): Update.
17201 (unlikely_text_section): Update.
17202 (unlikely_text_section_p): Update.
17203 (assemble_start_function): Update.
17204 (assemble_end_function): Update.
17205 (default_section_type_flags): Update.
17206 (switch_to_section): Update.
17207 * integrate.c (set_decl_abstract_flags): Update.
17208 (get_hard_reg_initial_val): Update.
17209 (has_hard_reg_initial_val): Update.
17210 (allocate_initial_values): Update.
17211 * resource.c (init_resource_info): Update.
17212 * config/alpha/alpha.c (NUM_ARGS): Update.
17213 (direct_return): Update.
17214 (alpha_va_start): Update.
17215 (alpha_sa_size): Update.
17216 (alpha_initial_elimination_offset): Update.
17217 (alpha_expand_prologue): Update.
17218 (alpha_start_function): Update.
17219 (alpha_expand_epilogue): Update.
17220 (unicosmk_initial_elimination_offset):
17221 * config/alpha/alpha.md (call expander): Update.
17222 * config/s390/s390.c (s390_register_info): Update.
17223 (s390_register_info): Update.
17224 (s390_frame_info): Update.
17225 (s390_initial_elimination_offset): Update.
17226 (s390_build_builtin_va_list): Update.
17227 (s390_va_start): Update.
17228 * config/spu/spu.c (direct_return): Update.
17229 (spu_expand_prologue): Update.
17230 (spu_initial_elimination_offset): Update.
17231 (spu_build_builtin_va_list): Update.
17232 (spu_va_start): Update.
17233 * config/sparc/sparc.c (sparc_init_modes): Update.
17234 (sparc_compute_frame_size): Update.
17235 (function_value): Update.
17236 * config/m32r/m32r.c (m32r_compute_frame_size): Update.
17237 * config/i386/i386.md (return expander): Update.
17238 * config/i386/i386.c (ix86_va_start): Update.
17239 (ix86_can_use_return_insn_p): Update.
17240 (ix86_compute_frame_layout): Update.
17241 (ix86_expand_epilogue): Update.
17242 * config/sh/sh.c (output_stack_adjust): Update.
17243 (calc_live_regs): Update.
17244 (sh_expand_prologue): Update.
17245 (sh_builtin_saveregs): Update.
17246 (sh_va_start): Update.
17247 (initial_elimination_offset): Update.
17248 (sh_allocate_initial_value): Update.
17249 (sh_function_ok_for_sibcall): Update.
17250 (sh_get_pr_initial_val): Update.
17251 * config/sh/sh.md (return expander): Update.
17252 * config/avr/avr.c (frame_pointer_required_p): UPdate.
17253 * config/crx/crx.c (crx_compute_frame): UPdate.
17254 (crx_initial_elimination_offset): UPdate.
17255 * config/xtensa/xtensa.c (compute_frame_size): Update
17256 (xtensa_builtin_saveregs): Update.
17257 (xtensa_va_start): Update.
17258 (order_regs_for_local_alloc): Update.
17259 * config/stormy16/stormy16.c (xstormy16_compute_stack_layout): Update.
17260 (xstormy16_expand_builtin_va_start): Update.
17261 * config/fr30/fr30.c (fr30_compute_frame_size): Update.
17262 * config/m68hc11/m68hc11.md (return expanders): Update.
17263 * config/m68hc11/m68hc11.c (expand_prologue): Update.
17264 (expand_epilogue): Update.
17265 * config/cris/cris.c (cris_initial_frame_pointer_offset): Update.
17266 (cris_simple_epilogue): Update.
17267 (cris_expand_prologue): Update.
17268 (cris_expand_epilogue): Update.
17269 * config/iq2000/iq2000.c (iq2000_va_start): Update.
17270 (compute_frame_size): Update.
17271 * config/mt/mt.c (mt_compute_frame_size): Update.
17272 * config/mn10300/mn10300.c (expand_prologue): Update.
17273 (expand_epilogue): Update.
17274 (initial_offset): Update.
17275 (mn10300_builtin_saveregs):
17276 * config/mn10300/mn10300.md (return expander): Update.
17277 * config/ia64/ia64.c (ia64_compute_frame_size): Update.
17278 (ia64_initial_elimination_offset): Update.
17279 (ia64_initial_elimination_offset): Update.
17280 (ia64_expand_prologue): Update.
17281 * config/m68k/m68k.md (return expander): Update.
17282 * config/rs6000/rs6000.c (rs6000_va_start): Update.
17283 (rs6000_stack_info): Update.
17284 * config/mcore/mcore.c (layout_mcore_frame): Update.
17285 (mcore_expand_prolog): Update.
17286 * config/arc/arc.c (arc_compute_frame_size): Update.
17287 * config/score/score3.c (score3_compute_frame_size): Update.
17288 * config/score/score7.c (score7_compute_frame_size): Update.
17289 * config/arm/arm.c (use_return_insn): Update.
17290 (thumb_find_work_register): Update.
17291 (arm_compute_save_reg_mask): Update.
17292 (arm_output_function_prologue): Update.
17293 (arm_output_epilogue): Update.
17294 (arm_size_return_regs): Update.
17295 (arm_get_frame_offsets): Update.
17296 (arm_expand_prologue): Update.
17297 (thumb_exit): Update.
17298 (thumb_unexpanded_epilogue): Update.
17299 (thumb1_output_function_prologue): Update.
17300 * config/pa/pa.md (return expander): Update.
17301 * config/pa/pa.c (compute_frame_size): Update.
17302 (hppa_builtin_saveregs): Update.
17303 * config/mips/mips.c (mips_va_start): Update.
17304 (mips16_build_function_stub): Update.
17305 (mips_compute_frame_info): Update.
17306 (mips_restore_gp): Update.
17307 (mips_output_function_prologue): Update.
17308 (mips_expand_prologue): Update.
17309 * config/v850/v850.c (compute_frame_size): Update.
17310 (expand_prologue): * config/mmix/mmix.c (along): update.
17311 (mmix_initial_elimination_offset): update.
17312 (mmix_reorg): update.
17313 (mmix_use_simple_return): update.
17314 (mmix_expand_prologue): update.
17315 (mmix_expand_epilogue): Update.
17316 * config/bfin/bfin.c (bfin_initial_elimination_offset): Update.
17317 (emit_link_insn): Update.
17319 2008-04-08 Anatoly Sokolov <aesok@post.ru>
17321 * config/avr/avr.h (TARGET_CPU_CPP_BUILTINS): Define
17322 __AVR_HAVE_EIJMP_EICALL__ macro if device have EIJMP and EICALL
17324 * config/avr/avr.c (avr_mcu_types): Set AVR31 architecture for
17327 2008-04-07 Jan Hubicka <jh@suse.cz>
17329 * function.h (rtl): Rename to x_rtl.
17330 (crtl): New define.
17331 (return_label, naked_return_label, stack_slot_list, parm_birth_insn,
17332 frame_offset, stack_check_probe_note, arg_pointer_save_area,
17333 used_temp_slots avail_temp_slots, temp_slot_level,
17334 nonlocal_goto_handler_labels): Update accesstors.
17335 (rtl): New global variable.
17336 (struct function): Move some fileds to rtl_data.
17337 (get_arg_pointer_save_area): Update prototype.
17338 * builtins.c (expand_builtin_setjmp_receiver): Update call of
17339 get_arg_pointer_save_area.
17340 * expr.c (init_expr): Update
17341 * function.c (get_frame_size): Update
17342 (assign_stack_local): Update
17343 (expand_function_end): Update.
17344 (get_art_pointer_save_area): Update
17346 * emit-rtl.c (rtl): Declare.
17347 (regno_reg_rtx): Declare.
17348 (first_insn, last_insn, cur_insn_uid, last_location, first_label_num):
17350 (gen_reg_rtx): Update.
17351 * varasm.c (n_deferred_constatns): Update accestor.
17352 (init_varasm_status): Do not allocate varasm_status.
17353 (force_const_mem, get_pool_size, output_constant_pool): Update.
17354 * stmt.c (force_label_rtx): Do not use x_ prefixes.
17355 (expand_nl_goto_receiver): Update get_arg_pointer_save_area.
17356 * m32c/m32.c (m32c_leaf_function_p, m32c_function_needs_enter): Update.
17357 * sparc/sparc.h (INIT_EXPANDERS): Update.
17358 * ia64/ia64.h (INIT_EXPANDERS): Update.
17360 2008-04-07 James E. Wilson <wilson@tuliptree.org>
17362 * reload.c (push_secondary_reload): Add missing break to for loop.
17364 2008-04-07 Peter Bergner <bergner@vnet.ibm.com>
17366 PR middle-end/PR28690
17367 * rtlanal.c: Update copyright years.
17368 (commutative_operand_precedence): Give SYMBOL_REF's the same precedence
17369 as REG_POINTER and MEM_POINTER operands.
17370 * emit-rtl.c (gen_reg_rtx_and_attrs): New function.
17371 (set_reg_attrs_from_value): Call mark_reg_pointer as appropriate.
17372 * rtl.h (gen_reg_rtx_and_attrs): Add prototype for new function.
17373 * gcse.c: Update copyright years.
17374 (pre_delete): Call gen_reg_rtx_and_attrs.
17375 (hoist_code): Likewise.
17376 (build_store_vectors): Likewise.
17377 (delete_store): Likewise.
17378 * loop-invariant.c (move_invariant_reg): Likewise.
17379 Update copyright years.
17381 2008-04-07 Uros Bizjak <ubizjak@gmail.com>
17383 * config/i386/i386.md ("*sse_prologue_save_insn"): Use braced output
17384 control string instead of quoted.
17386 2008-04-07 Kenneth Zadeck <zadeck@naturalbridge.com>
17388 * doc/rtl.texi: Rewrite of subreg section.
17390 2008-04-07 Kai Tietz <kai.tietz@onevision.com>
17393 * config/i386/i386.c (legitimize_pic_address): Add treating
17394 of dllimport SYM_REF's.
17395 (legitimize_dllimport_symbol): Add prototype.
17397 2008-04-07 Eric Botcazou <ebotcazou@adacore.com>
17399 * fold-const.c (fold) <ARRAY_REF>: New case. Try to fold constant
17400 reference in constructor with non self-referential type.
17402 2008-04-07 Eric Botcazou <ebotcazou@adacore.com>
17404 Removal of Return with Depressed Stack Pointer support
17405 * tree.h (TYPE_RETURNS_STACK_DEPRESSED): Delete.
17406 (ECF_SP_DEPRESSED): Likewise.
17407 (ECF_LIBCALL_BLOCK, ECF_NOVOPS): Adjust.
17408 * calls.c (emit_call_1): Do not test ECF_SP_DEPRESSED.
17409 (flags_from_decl_or_type): Do not test TYPE_RETURNS_STACK_DEPRESSED.
17410 (expand_call): Do not test ECF_SP_DEPRESSED.
17411 * dse.c (dse_step0): Do not test TYPE_RETURNS_STACK_DEPRESSED.
17412 * function.c (keep_stack_depressed): Delete.
17413 (handle_epilogue_set): Likewise.
17414 (update_epilogue_consts): Likewise.
17415 (emit_equiv_load): Likewise.
17416 (thread_prologue_and_epilogue_insns): Remove support for Return with
17417 Depressed Stack Pointer.
17418 * print-tree.c (print_node): Do not test TYPE_RETURNS_STACK_DEPRESSED.
17420 2008-04-06 Richard Guenther <rguenther@suse.de>
17422 PR tree-optimization/35400
17423 * tree-vrp.c (vrp_evaluate_conditional): Only query value-range
17424 information from SSA_NAMEs.
17426 2008-04-06 Anatoly Sokolov <aesok@post.ru>
17428 * config/avr/avr.h (avr_mega_p): Remove declaration.
17429 (AVR_MEGA): Remove macro.
17430 * config/avr/avr.c (avr_mega_p): Remove variable.
17431 (avr_override_options): Remove inicializion of avr_mega_p.
17432 Use AVR_HAVE_JMP_CALL instead of AVR_MEGA.
17433 (print_operand): Use AVR_HAVE_JMP_CALL instead of AVR_MEGA.
17434 (avr_jump_mode): (Ditto.).
17435 (avr_output_progmem_section_asm_op): (Ditto.).
17436 (avr_asm_init_sections): (Ditto.).
17437 (avr_asm_init_sections): (Ditto.).
17438 (avr_rtx_costs): (Ditto.).
17439 * config/avr/avr.md: (Ditto.).
17440 * config/avr/avr.h: Use '__AVR_HAVE_JMP_CALL__' instead of
17443 2008-04-06 Richard Guenther <rguenther@suse.de>
17445 PR tree-optimization/35842
17446 * tree-ssa-address.c (fixed_address_object_p): Adjust to match
17447 is_gimple_invariant_address.
17449 2008-04-06 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
17451 * gcc.c (default_compilers): Sync Fortran extensions list with
17452 that in fortran/lang-specs.h.
17453 * doc/invoke.texi: Likewise.
17454 * dbxout.c (get_lang_number): Use "GNU Fortran" in "GNU F95".
17455 * dwarf2out.c (gen_compile_unit_die): Likewise.
17457 2008-04-06 Tom G. Christensen <tgc@jupiterrise.com>
17459 * gthr-posix95.h (__gthread_cond_wait_recursive): Add missing &.
17461 2008-04-05 Uros Bizjak <ubizjak@gmail.com>
17464 * config/i386/i386.c (ix86_function_regparm): Error if regparm(3)
17465 attribute is used for nested functions.
17467 2008-04-05 Jan Hubicka <jh@suse.cz>
17469 * emit-rtl.c (init_emit): xcalloc regno_pointer_align.
17471 * tree-dump.c (dump_enable_all): Remove prototype; do not accept
17473 (dump_files): Update.
17474 (enable_rtl_dump_file): Do not accept letter argument.
17475 * tree-pass.h (dump_file_info): Remove letter argument.
17476 * toplev.c (decode_d_option): Update -da handling.
17477 * toplev.h (enable_rtl_dump_file): Update prototype.
17478 * passes.c (register_one_dump_file): Do not accept IPA argument; work
17479 it out based on pass type.
17480 (register_dump_files_1): Likewise.
17481 (init_optimization_passes): Update register_one_dump_file calls.
17482 (execute_one_pass): Sanity check that IPA passes are called at IPA
17483 level and RTL passes at RTL level.
17484 (execute_pass_list): IPA pass can not be after or subpass of
17486 (execute_ipa_pass_list): Handle IPA subpasses of IPA subpasses and
17487 disallov RTL subpasses of IPA subpasses.
17489 2008-04-05 Ben Elliston <bje@au.ibm.com>
17491 * tree-cfg.c (need_fake_edge_p): Return false for calls to
17492 builtins that return exactly once and do not throw. Cache call to
17495 2008-04-04 Andy Hutchinson <hutchinsonandy@aim.com>
17497 PR rtl-optimization/34916
17498 PR middle-end/35519
17499 * combine.c (create_log_links): Do not create duplicate LOG_LINKS
17500 between instruction pairs.
17502 2008-04-04 Naveen.H.S <naveen.hs@kpitcummins.com>
17504 * doc/invoke.texi: Document -mbitops for SH.
17505 * config/sh/constraints.md (K03, K12, Sbv, Sbw): New constraints.
17506 * config/sh/predicates.md (bitwise_memory_operand): New predicate.
17507 * config/sh/sh.c (print_operand): Add %t operand code.
17508 * config/sh/sh.h (GO_IF_LEGITIMATE_INDEX): Add condition for SH2A.
17509 * config/sh/sh.md (*iorsi3_compact): Fix condition for SH2A.
17510 (extendqisi2_compact): Add the alternative for SH2A 4-byte mov.b.
17511 (extendqihi2): Likewise.
17512 (movqi_i): Likewise.
17513 (insv): Use bset, bclr and bst instructions for SH2A if possible.
17514 (extv): Use bld instruction for SH2A if possible.
17516 (bclr_m2a, bclrmem_m2a, bset_m2a, bsetmem_m2a, bst_m2a, bld_m2a,
17517 bldsign_m2a, bld_reg, *bld_regqi, band_m2a, bandreg_m2a,
17518 bor_m2a, borreg_m2a, bxor_m2a, bxorreg_m2a): New insns.
17519 (bset.b, bclr.b): Define peepholes.
17520 * config/sh/sh.opt (mbitops): New option.
17522 2008-04-04 Janis Johnson <janis187@us.ibm.com>
17525 * config/rs6000/rs6000.c (rs6000_check_sdmode): Handle indirect ref
17526 and view convert expression.
17528 2008-04-04 Jakub Jelinek <jakub@redhat.com>
17531 * tree-cfg.c (remove_useless_stmts_1): Handle OMP_* containers.
17533 2008-04-04 H.J. Lu <hongjiu.lu@intel.com>
17535 * config.gcc (extra_headers): Add wmmintrin.h for x86 and x86-64.
17537 * config/i386/cpuid.h (bit_AES): New.
17538 (bit_PCLMUL): Likewise.
17540 * config/i386/i386.c (pta_flags): Add PTA_AES and PTA_PCLMUL.
17541 (override_options): Handle PTA_AES and PTA_PCLMUL. Enable
17542 SSE2 if AES or PCLMUL is enabled.
17543 (ix86_builtins): Add IX86_BUILTIN_AESENC128,
17544 IX86_BUILTIN_AESENCLAST128, IX86_BUILTIN_AESDEC128,
17545 IX86_BUILTIN_AESDECLAST128, IX86_BUILTIN_AESIMC128,
17546 IX86_BUILTIN_AESKEYGENASSIST128 and IX86_BUILTIN_PCLMULQDQ128.
17547 (bdesc_sse_3arg): Add IX86_BUILTIN_PCLMULQDQ128.
17548 (bdesc_2arg): Add IX86_BUILTIN_AESENC128,
17549 IX86_BUILTIN_AESENCLAST128, IX86_BUILTIN_AESDEC128,
17550 IX86_BUILTIN_AESDECLAST128 and IX86_BUILTIN_AESKEYGENASSIST128.
17551 (bdesc_1arg): Add IX86_BUILTIN_AESIMC128.
17552 (ix86_init_mmx_sse_builtins): Define __builtin_ia32_aesenc128,
17553 __builtin_ia32_aesenclast128, __builtin_ia32_aesdec128,
17554 __builtin_ia32_aesdeclast128,__builtin_ia32_aesimc128,
17555 __builtin_ia32_aeskeygenassist128 and
17556 __builtin_ia32_pclmulqdq128.
17557 * config/i386/i386.c (ix86_expand_binop_imm_builtin): New.
17558 (ix86_expand_builtin): Use it for IX86_BUILTIN_PSLLDQI128 and
17559 IX86_BUILTIN_PSRLDQI128. Handle IX86_BUILTIN_AESKEYGENASSIST128.
17561 * config/i386/i386.h (TARGET_AES): New.
17562 (TARGET_PCLMUL): Likewise.
17563 (TARGET_CPU_CPP_BUILTINS): Handle TARGET_AES and TARGET_PCLMUL.
17565 * config/i386/i386.md (UNSPEC_AESENC): New.
17566 (UNSPEC_AESENCLAST): Likewise.
17567 (UNSPEC_AESDEC): Likewise.
17568 (UNSPEC_AESDECLAST): Likewise.
17569 (UNSPEC_AESIMC): Likewise.
17570 (UNSPEC_AESKEYGENASSIST): Likewise.
17571 (UNSPEC_PCLMUL): Likewise.
17573 * config/i386/i386.opt (maes): New.
17574 (mpclmul): Likewise.
17576 * config/i386/sse.md (aesenc): New pattern.
17577 (aesenclast): Likewise.
17578 (aesdec): Likewise.
17579 (aesdeclast): Likewise.
17580 (aesimc): Likewise.
17581 (aeskeygenassist): Likewise.
17582 (pclmulqdq): Likewise.
17584 * config/i386/wmmintrin.h: New.
17586 * doc/extend.texi: Document AES and PCLMUL built-in function.
17588 * doc/invoke.texi: Document -maes and -mpclmul.
17590 2008-04-04 Paolo Bonzini <bonzini@gnu.org>
17592 * function.c (free_after_parsing): Replace with
17593 cxx_push_function_context from C++ front-end.
17594 (allocate_struct_function): Don't call langhook.
17595 * langhooks.h (struct lang_hooks_for_functions): Delete.
17596 (struct lang_hooks): Add back missing_noreturn_ok_p here, delete
17598 * langhooks-def.h (LANG_HOOKS_MISSING_NORETURN_OK_P): Add.
17599 (LANG_HOOKS_FUNCTION_INIT, LANG_HOOKS_FUNCTION_FINAL,
17600 LANG_HOOKS_FUNCTION_MISSING_NORETURN_OK_P,
17601 LANG_HOOKS_FUNCTION_INITIALIZER): Delete.
17602 (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_MISSING_NORETURN_OK_P,
17603 remove LANG_HOOKS_FUNCTION_INITIALIZER.
17604 * tree-cfg.c: Adjust call to missing_noreturn_ok_p langhook.
17606 * c-objc-common.h (LANG_HOOKS_FUNCTION_MISSING_NORETURN_OK_P):
17607 Rename to LANG_HOOKS_MISSING_NORETURN_OK_P.
17609 2008-04-04 Jakub Jelinek <jakub@redhat.com>
17612 * c-pretty-print.c (pp_c_initializer_list): Handle CONSTRUCTOR
17615 2008-04-04 Richard Guenther <rguenther@suse.de>
17617 PR middle-end/35823
17618 * fold-const.c (optimize_minmax_comparison): Use the correct
17619 type for the constant in the simplified comparison.
17621 2008-04-04 Zuxy Meng <zuxy.meng@gmail.com>
17623 * config/i386/driver-i386.c (describe_cache): Add l2_sizekb argument.
17624 Pass L2 size as "--param l2-cache-size" to the compiler.
17625 (decode_l2_cache): New function to decode L2 cache parameters using
17626 0x8000006 extended cpuid function.
17627 (detect_caches_amd): Determine parameters of L2 cache using
17628 decode_l2_caches function.
17629 (decode_caches_intel): Decode L2 cache parameters.
17630 (detect_caches_intel): Determine L2 cache parameters using
17631 decode_caches_intel and decode_l2_caches functions.
17633 2008-04-03 Bob Wilson <bob.wilson@acm.org>
17635 * config/xtensa/xtensa.c (xtensa_secondary_reload_class): Use a
17636 secondary input reload for subword loads from the constant pool.
17638 2008-04-03 Janis Johnson <janis187@us.ibm.com>
17641 * config/rs6000/rs6000.c (rs6000_gimplify_va_arg): Use integer
17642 constants of the appropriate size for runtime calculations.
17645 * dfp.c (decimal_from_decnumber): Retain trailing zeroes for
17646 decimal-float literal constant zero.
17648 2008-04-03 Jakub Jelinek <jakub@redhat.com>
17651 * c-parser.c (c_parser_omp_atomic): Call
17652 default_function_array_conversion on the RHS.
17654 PR middle-end/35818
17655 * omp-low.c (scan_sharing_clauses) <case OMP_CLAUSE_SHARED>: Don't
17656 call is_variable_sized if decl has incomplete type.
17658 2008-04-03 H.J. Lu <hongjiu.lu@intel.com>
17660 * config/i386/i386-protos.h (ix86_aligned_p): Removed.
17662 2008-04-03 Adam Nemet <anemet@caviumnetworks.com>
17664 * config/mips/mips.md (any_gt, any_ge, any_lt, any_le): New code
17666 (u): Add attribute values for gt, gtu, ge, geu, lt, ltu, le and leu.
17667 (sgt<u>): Merge sgt and sgtu into new expander.
17668 (sgt, sgtu): Remove expanders.
17669 (*sgt<u>_<mode>): Merge *sgt_<mode> and *sgtu_<mode> into new pattern.
17670 (*sgt_<mode>, *sgtu_<mode>): Remove patterns.
17671 (*sgt<u>_<mode>_mips16): Merge *sgt_<mode>_mips16 and
17672 *sgtu_<mode>_mips16 into new pattern.
17673 (*sgt_<mode>_mips16, *sgtu_<mode>_mips16): Remove patterns.
17674 (sge<u>): Merge sge and sgeu into new expander.
17675 (sge, sgeu): Remove expanders.
17676 (*sge<u>_<mode>): Merge *sge_<mode> and second *sge_<mode> into
17678 (*sge_<mode>, second *sge_<mode>): Remove patterns.
17679 (slt<u>): Merge slt and sltu into new expander.
17680 (slt, sltu): Remove expanders.
17681 (*slt<u>_<mode>): Merge *slt_<mode> and *sltu_<mode> into new pattern.
17682 (*slt_<mode>, *sltu_<mode>): Remove patterns.
17683 (*slt<u>_<mode>_mips16): Merge *slt_<mode>_mips16 and
17684 *sltu_<mode>_mips16 into new pattern.
17685 (*slt_<mode>_mips16, *sltu_<mode>_mips16): Remove patterns.
17686 (sle<u>): Merge sle and sleu into new expander.
17687 (sle, sleu): Remove expanders.
17688 (*sle<u>_<mode>): Merge *sle_<mode> and *sleu_<mode> into new pattern.
17689 (*sle_<mode>, *sleu_<mode>): Remove patterns.
17690 (*sle<u>_<mode>_mips16): Merge *sle_<mode>_mips16 and
17691 *sleu_<mode>_mips16 into new pattern.
17692 (*sle_<mode>_mips16, *sleu_<mode>_mips16): Remove patterns.
17694 2008-04-03 Jan Hubicka <jh@suse.cz>
17696 PR tree-optimization/35795
17697 * alpha/alpha.c (alpha_output_mi_thunk_osf): Free after compilation.
17698 * sparc/sparc.c (sparc_output_mi_thunk): Likewise.
17699 * ia64/ia64.c (ia64_output_mi_thunk): Likewise.
17700 * m68k/m68k.c (m68k_output_mi_thunk): Likewise.
17701 * score/score3.c (score3_output_mi_thunk): Likewise.
17702 * score/score7.c (score7_output_mi_thunk): Likewise.
17703 * mips/mips.c (mips_output_mi_thunk): Likewise.
17705 2008-04-03 Richard Guenther <rguenther@suse.de>
17707 * tree-vrp.c (extract_range_from_unary_expr): Handle all
17708 conversions. Simplify code.
17710 2008-04-03 Kaz Kojima <kkojima@gcc.gnu.org>
17712 * config/sh/sh.c (sh_output_mi_thunk): Free cfun.
17714 2008-04-03 Tom Tromey <tromey@redhat.com>
17715 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
17717 * config/m68k/t-uclinux (generated_files): Add sysroot-suffix.h.
17718 * config/bfin/t-bfin-linux (generated_files): Add
17719 linux-sysroot-suffix.h.
17720 * doc/install.texi (Prerequisites): Require make 3.80.
17721 * doc/sourcebuild.texi (Front End Directory): Document new
17723 * Makefile.in (generated_files): New variable.
17724 (ALL_HOST_OBJS): New variable.
17725 ($(ALL_HOST_OBJS)): New target.
17727 2008-04-03 Paolo Bonzini <bonzini@gnu.org>
17729 * tree-inline.c (copy_generic_body, copy_decl_no_change): Export.
17730 (remap_block): Call id->transform_lang_insert_block instead
17732 (optimize_inline_calls, unsave_expr_now, tree_function_versioning):
17733 Set id.transform_lang_insert_block to NULL.
17734 (clone_body): Move to cp/optimize.c
17735 * tree-inline.h (struct copy_body_data): Change
17736 transform_lang_insert_block to function pointer.
17737 (copy_generic_body, copy_decl_no_change): Export.
17738 * langhooks.h (struct lang_hooks_for_decls): Kill insert_block.
17739 * langhooks-def.h (LANG_HOOKS_INSERT_BLOCK): Kill.
17740 (LANG_HOOKS_DECLS): Remove LANG_HOOKS_INSERT_BLOCK.
17742 * c-tree.h (insert_block): Kill.
17743 * c-decl.c (insert_block): Kill.
17745 2008-04-03 Paolo Bonzini <bonzini@gnu.org>
17747 * c-objc-common.h (LANG_HOOKS_FUNCTION_ENTER_NESTED,
17748 LANG_HOOKS_FUNCTION_LEAVE_NESTED): Delete.
17749 * c-tree.h (c_push_function_context, c_pop_function_context): Remove
17751 * c-decl.c (c_push_function_context, c_pop_function_context): Remove
17752 argument, call {push,pop}_function_context from here.
17753 * c-parser.c: Use c_{push,pop}_function_context.
17755 * function.c (push_function_context_to): Move meat ...
17756 (push_function_context): ... here. Simplify.
17757 * function.c (pop_function_context_from): Move meat ...
17758 (pop_function_context): ... here. Simplify.
17759 * langhooks.h (struct lang_hooks_for_functions): Remove enter_nested,
17761 * langhooks-def.h (LANG_HOOKS_FUNCTION_ENTER_NESTED,
17762 LANG_HOOKS_FUNCTION_LEAVE_NESTED): Delete.
17763 (LANG_HOOKS_FUNCTION_INITIALIZER): Delete them from here.
17764 * tree.h (push_function_context_to, pop_function_context_from): Remove.
17766 2008-04-03 Ben Elliston <bje@au.ibm.com>
17768 * expmed.c (extract_force_align_mem_bit_field): Remove.
17770 2008-04-03 Richard Guenther <rguenther@suse.de>
17772 PR middle-end/35800
17773 * expr.h (try_casesi): Adjust prototype.
17774 * expr.c (try_casesi): Take fallback label as extra parameter.
17775 Use that for gen_casesi if default_label is NULL.
17776 * stmt.c (expand_case): Pass fallback label to try_casesi,
17777 make sure to fill gaps with a fallback label if default_label
17780 2008-04-03 Dominique d'Humières <dominiq@lps.ens.fr>
17783 * config/rs6000/rs6000.c (rs6000_output_mi_thunk): Free cfun.
17785 2008-04-03 Ben Elliston <bje@au.ibm.com>
17787 * expmed.c (extract_split_bit_field): Remove if (0) code.
17788 * tree-ssa-structalias.c (do_sd_constraint): Likewise.
17789 (do_ds_constraint): Likewise.
17791 2008-04-02 Joseph Myers <joseph@codesourcery.com>
17793 * doc/cppopts.texi (-dU): Document.
17794 * c-common.h (flag_dump_macros): Update comment.
17795 * c-opts.c (handle_OPT_d): Handle -dU.
17796 * c-ppoutput.c (macro_queue, define_queue, undef_queue,
17797 dump_queued_macros, cb_used_define, cb_used_undef): New.
17798 (init_pp_output): Handle -dU.
17799 (cb_line_change): Call dump_queued_macros.
17800 * toplev.c (decode_d_option): Accept -dU as preprocessor option.
17802 2008-04-02 Anatoly Sokolov <aesok@post.ru>
17804 * config/avr/predicates.md (io_address_operand): New predicate.
17805 * config/avr/avr-protos.h (avr_io_address_p): Remove declaration.
17806 * config/avr/avr.c (avr_io_address_p): Remove function.
17807 (out_movqi_r_mr): Use 'io_address_operand' predicate instead of
17808 'avr_io_address_p' function.
17809 (out_movhi_r_mr): (Ditto.).
17810 (out_movqi_mr_r): (Ditto.).
17811 (out_movhi_mr_r): (Ditto.).
17812 (avr_address_cost): (Ditto.).
17814 2008-04-02 Uros Bizjak <ubizjak@gmail.com>
17816 * config/i386/i386.md (*float<SSEMODEI24:mode><X87MODEF:mode>2_1):
17817 Emit gen_floatdi<X87MODEF:mode>2_i387_with_xmm for DImode values
17818 in 32bit mode when XMM registers are available to avoid store
17820 (floatdi<X87MODEF:mode>2_i387_with_xmm): New insn pattern and
17821 corresponding post-reload splitters.
17823 2008-04-02 H.J. Lu <hongjiu.lu@intel.com>
17825 * config/i386/i386.c (bdesc_sse_3arg): Add __builtin_ia32_shufps
17826 and __builtin_ia32_shufpd. Provide __builtin_ia32_roundsd and
17827 __builtin_ia32_roundss.
17828 (ix86_init_mmx_sse_builtins): Remove __builtin_ia32_shufps,
17829 __builtin_ia32_shufpd, __builtin_ia32_roundsd and
17830 __builtin_ia32_roundss.
17831 (ix86_expand_builtin): Don't handle IX86_BUILTIN_SHUFPS and
17832 IX86_BUILTIN_SHUFPD here.
17834 2008-04-02 H.J. Lu <hongjiu.lu@intel.com>
17836 * config/i386/i386.md (plogic): New.
17837 (plogicprefix): Likewise.
17839 * config/i386/mmx.md (mmx_<code><mode>3): New.
17840 (mmx_and<mode>3): Removed.
17841 (mmx_ior<mode>3): Likewise.
17842 (mmx_xor<mode>3): Likewise.
17844 * config/i386/sse.md (<code><mode>3): New.
17845 (*<code><mode>3): Likewise.
17846 (*<code><mode>3): Likewise.
17847 (<code><mode>3): Likewise.
17848 (*sse_<code><mode>3): Likewise.
17849 (*sse2_<code><mode>3): Likewise.
17850 (<code>tf3): Likewise.
17851 (*<code>tf3): Likewise.
17852 (and<mode>3): Likewise.
17853 (*and<mode>3): Likewise.
17854 (ior<mode>3): Removed.
17855 (*ior<mode>3): Likewise.
17856 (xor<mode>3): Likewise.
17857 (*xor<mode>3): Likewise.
17858 (*and<mode>3): Likewise.
17859 (*ior<mode>3): Likewise.
17860 (*xor<mode>3): Likewise.
17861 (and<mode>3): Likewise.
17862 (*sse_and<mode>3): Likewise.
17863 (*sse2_and<mode>3): Likewise.
17864 (andtf3): Likewise.
17865 (*andtf3): Likewise.
17866 (ior<mode>3): Likewise.
17867 (*sse_ior<mode>3): Likewise.
17868 (*sse2_ior<mode>3): Likewise.
17869 (iortf3): Likewise.
17870 (*iortf3): Likewise.
17871 (xor<mode>3): Likewise.
17872 (*sse_xor<mode>3): Likewise.
17873 (*sse2_xor<mode>3): Likewise.
17874 (xortf3): Likewise.
17875 (*xortf3): Likewise.
17877 2008-04-02 Richard Guenther <rguenther@suse.de>
17879 PR tree-optimization/14495
17880 PR tree-optimization/34793
17881 * tree-vrp.c (struct switch_update): New structure.
17882 (to_remove_edges, to_update_switch_stmts): New VECs.
17883 (simplify_switch_using_ranges): New function. Remove not taken
17884 case labels and edges.
17885 (simplify_stmt_using_ranges): Call it.
17886 (identify_jump_threads): Mark edges we have queued for removal
17887 so we don't thread them.
17888 (execute_vrp): Remove edges queued for removal, update SWITCH_STMT
17890 * tree-cfg.c (group_case_labels): Deal with missing default label.
17891 (tree_verify_flow_info): Allow missing default label.
17892 * stmt.c (emit_case_bit_tests): Deal with NULL default_label.
17893 (emit_case_nodes): Likewise.
17894 (expand_case): Do not rely on the default label to be present.
17895 * expr.c (try_casesi): Deal with NULL default_label.
17896 (do_tablejump): Likewise.
17898 2008-04-02 Richard Guenther <rguenther@suse.de>
17900 PR tree-optimization/14495
17901 * tree-vrp.c (vrp_visit_cond_stmt): Do not handle
17902 SWITCH_EXPR here ...
17903 (vrp_visit_switch_stmt): ... but here (new function).
17904 (find_case_label_index): New helper function.
17905 (vrp_visit_stmt): Dispatch to vrp_visit_switch_stmt.
17907 2008-04-02 Paolo Bonzini <bonzini@gnu.org>
17909 * fwprop.c: Fix ISO-C99ism.
17911 2008-04-02 Paolo Bonzini <bonzini@gnu.org>
17914 * Makefile.in (objdir): Set it here.
17915 * configure.ac: Not here. Find dynamic linker characteristics.
17916 * exec-tool.in: Use them.
17917 * aclocal.m4: Regenerate.
17918 * configure: Regenerate.
17920 2008-04-02 Paolo Bonzini <bonzini@gnu.org>
17922 * expr.c (expand_var): Delete it.
17923 * expr.h (expand_var): Delete prototype.
17924 * function.c (expand_function_start): Use expand_decl instead.
17925 * cfgexpand.c (expand_one_static_var, expand_one_var): Don't call
17928 2008-04-02 Andy Hutchinson <hutchinsonamdy@aim.com>
17930 PR rtl-optimization/35542
17931 * fwprop.c (forward_propagate_and_simplify): Replace
17932 loc_reg_mentioned_in_p with reg_mentioned_p.
17934 2008-04-02 Paolo Bonzini <bonzini@gnu.org>
17936 PR rtl-optimization/35281
17937 * fwprop.c (PR_CAN_APPEAR, PR_HANDLE_MEM): New.
17938 (propagate_rtx_1): Handle PR_HANDLE_MEM.
17939 (propagate_rtx): Pass PR_HANDLE_MEM if appropriate.
17940 (varying_mem_p): Move above propagate_rtx.
17941 (all_uses_available_at): Do not check MEMs.
17943 2008-04-02 Rafael Espíndola <espindola@google.com>
17945 * tree-vrp.c (extract_code_and_val_from_cond): Remove.
17946 (register_edge_assert_for_2): Split the cond argument.
17947 (register_edge_assert_for_1): Adjust for the change in
17948 register_edge_assert_for_2.
17949 (register_edge_assert_for): Split the cond argument.
17950 (find_switch_asserts): Adjust for the change in
17951 register_edge_assert_for.
17953 2008-04-02 Kai Tietz <kai.tietz@onevision.com>
17955 * config.gcc: Add for x86_64-*-mingw* the t-crtfm to tbuild.
17956 * config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Add 8 byte
17957 offsets for 64-bit mingw.
17958 * config/i386/i386.c (ix86_pass_by_reference): Correct calling
17959 abi for x86_64-pc-mingw.
17961 2008-04-02 Richard Guenther <rguenther@suse.de>
17963 * tree-vrp.c (extract_range_from_assert): Make sure to not
17964 produce range min/max with TREE_OVERFOW set.
17965 If merging a anti-range and a range keep the anti-range if
17966 the range covers all values of the type.
17967 (register_edge_assert_for_2): Only allow sign-changing
17968 conversions in detecting canonical range checks. Also
17969 register an assert for the unsigned name if useful.
17971 PR tree-optimization/35787
17972 * tree-vrp.c (vrp_val_max): New function.
17973 (vrp_val_min): Likewise.
17974 (vrp_val_is_max): Move earlier, use vrp_val_{min,max}.
17975 (vrp_val_is_min): Likewise.
17976 (supports_overflow_infinity): Use vrp_val_{min,max}.
17977 (negative_overflow_infinity): Likewise.
17978 (positive_overflow_infinity): Likewise.
17979 (is_negative_overflow_infinity): Use vrp_val_is_{min,max}.
17980 (is_positive_overflow_infinity): Likewise.
17981 (is_overflow_infinity): Likewise.
17982 (avoid_overflow_infinity): Use vrp_val_{min,max} and
17983 vrp_val_is_{min,max}.
17984 (set_and_canonicalize_value_range): Canonicalize anti-ranges
17985 to ranges if possible. Avoid empty ranges.
17987 2008-04-01 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
17989 PR middle-end/35705
17990 * fold-const.c (get_pointer_modulus_and_residue): Return modulus 1 if
17991 the expression is a function address.
17993 2008-04-01 George Helffrich <george@gcc.gnu.org>
17995 PR fortran/35154, fortran/23057
17996 * dbxout.c: Emit .stabs debug info for Fortran COMMON block
17997 variables as base symbol name + offset using N_BCOMM/N_ECOMM.
17998 (is_fortran, dbxout_common_name, dbxout_common_check): New functions.
17999 (dbxout_symbol_location): Transform N_LCSYM to N_GSYM for storage
18001 (dbxout_syms): Check for COMMON-based symbol and wrap in
18002 N_BCOMM/N_ECOMM stab bracket, including as many symbols as possible
18003 in bracket for efficiency.
18005 * dwarf2out.c: Emit DWARF debug info for Fortran COMMON block
18006 using DW_TAG_common_block + member offset.
18007 (add_pubname_string): New function.
18008 (dw_expand_expr): New function to find block name and offset for
18010 (common_check): New function to check whether symbol in Fortran COMMON.
18011 (gen_variable_die): If COMMON, use DW_TAG_common_block.
18013 2008-04-01 Volker Reichelt <v.reichelt@netcologne.de>
18016 * c-format.c (init_dynamic_gfc_info): Ignore invalid locus type.
18018 2008-04-02 Ben Elliston <bje@au.ibm.com>
18020 * config/v850/v850.md (casesi): Remove if (0) code.
18021 * config/i386/uwin.h (ASM_DECLARE_FUNCTION_NAME): Likewise.
18022 * config/alpha/alpha.c (alpha_initialize_trampoline): Likewise.
18024 2008-04-01 Uros Bizjak <ubizjak@gmail.com>
18026 * config/i386/i386.md (rex64suffix): New mode attribute.
18027 (floathi<mode>2): Disable expander for SSE math.
18028 (*floathi<mode>2_1): New insn insn_and_split pattern.
18029 (*floathi<mode>2_i387_with_temp): New macroized instruction pattern and
18030 corresponding post-reload splitters.
18031 (*floathi<mode>2_i387): New macroized insn pattern.
18032 (float<SSEMODEI24:mode><X87MODEF:mode>2): New macroized expander.
18033 (*float<SSEMODEI24:mode><X87MODEF:mode>2_1): New macroized
18034 insn_and_split pattern.
18035 (*floatsi<mode>2_vector_mixed_with_temp, *floatsi<mode>2_vector_mixed):
18036 New macroized instruction patterns and corresponding post-reload
18038 (*floatsi<mode>2_mixed_with_temp): New macroized instruction pattern
18039 and corresponding post-reload splitters.
18040 (*floatsi<mode>2_mixed_interunit, *floatsi<mode>2_mixed_nointerunit):
18041 New macroized instruction patterns.
18042 (*floatsi<mode>2_vector_sse_with_temp, *floatsi<mode>2_vector_sse): New
18043 macroized instruction patterns and corresponding post-reload splitters.
18044 (*floatsi<mode>2_sse_with_temp): New macroized instruction pattern and
18045 corresponding post-reload splitters.
18046 (*floatsi<mode>2_sse_interunit, *floatsi<mode>2_mixed_nointerunit):
18047 New macroized instruction patterns.
18048 (*floatsi<mode>2_i387_with_temp): New macroized instruction pattern and
18049 corresponding post-reload splitters.
18050 (*floatsi<mode>2_i387): New macroized instruction patterns.
18052 2008-04-01 H.J. Lu <hongjiu.lu@intel.com>
18054 * config/i386/i386.md (smaxmin): New.
18055 (umaxmin): Likewise.
18056 (maxminiprefix): Likewise.
18057 (maxminfprefix): Likewise.
18058 (<code><mode>3): Likewise.
18059 (smin<mode>3): Removed.
18060 (smax<mode>3): Likewise.
18062 * config/i386/mmx.md (mmx_<code>v2sf3): New.
18063 (mmx_<code>v4hi3): Likewise.
18064 (mmx_<code>v8qi3): Likewise.
18065 (mmx_smaxv2sf3): Removed.
18066 (mmx_sminv2sf3): Likewise.
18067 (mmx_umaxv8qi3): Likewise.
18068 (mmx_smaxv4hi3): Likewise.
18069 (mmx_uminv8qi3): Likewise.
18070 (mmx_sminv4hi3): Likewise.
18072 * config/i386/sse.md (<addsub><mode>3): New.
18073 (*<addsub><mode>3): Likewise.
18074 (<sse>_vm<addsub><mode>3): Likewise.
18075 (<maxmin><mode>3): Likewise.
18076 (*<maxmin><mode>3_finite): Likewise.
18077 (*<maxmin><mode>3): Likewise.
18078 (<sse>_vm<maxmin><mode>3): Likewise.
18079 (sse3_h<addsub>v4sf3): Likewise.
18080 (sse3_h<addsub>v2df3): Likewise.
18081 (<maxmin>v16qi3): Likewise.
18082 (*<maxmin>v16qi3): Likewise.
18083 (<maxmin>v8hi3): Likewise.
18084 (*<maxmin>v8hi3): Likewise.
18085 (*sse4_1_<maxmin><mode>3): Likewise.
18086 (*sse4_1_<maxmin><mode>3): Likewise.
18087 (add<mode>3): Removed.
18088 (*add<mode>3): Likewise.
18089 (<sse>_vmadd<mode>3): Likewise.
18090 (sub<mode>3): Likewise.
18091 (*sub<mode>3): Likewise.
18092 (<sse>_vmsub<mode>3): Likewise.
18093 (smin<mode>3): Likewise.
18094 (*smin<mode>3_finite): Likewise.
18095 (*smin<mode>3): Likewise.
18096 (<sse>_vmsmin<mode>3): Likewise.
18097 (smax<mode>3): Likewise.
18098 (*smax<mode>3_finite): Likewise.
18099 (*smax<mode>3): Likewise.
18100 (<sse>_vmsmax<mode>3): Likewise.
18101 (sse3_haddv4sf3): Likewise.
18102 (sse3_haddv2df3): Likewise.
18103 (sse3_hsubv4sf3): Likewise.
18104 (sse3_hsubv2df3): Likewise.
18105 (umaxv16qi3): Likewise.
18106 (*umaxv16qi3): Likewise.
18107 (smaxv8hi3): Likewise.
18108 (*smaxv8hi3): Likewise.
18109 (*sse4_1_smax<mode>3): Likewise.
18110 (*sse4_1_umax<mode>3): Likewise.
18111 (uminv16qi3): Likewise.
18112 (*uminv16qi3): Likewise.
18113 (sminv8hi3): Likewise.
18114 (*sminv8hi3): Likewise.
18115 (*sse4_1_smin<mode>3): Likewise.
18116 (*sse4_1_umin<mode>3): Likewise.
18118 2008-04-01 Rafael Espíndola <espindola@google.com>
18120 * tree-cfg.c (verify_expr): remove in_phi.
18121 (verify_stmt): Don't call walk_tree with verify_expr. Use
18122 is_gimple_min_invariant instead of is_gimple_val.
18124 2008-04-01 Joseph Myers <joseph@codesourcery.com>
18126 * doc/include/gpl_v3.texi: Update for manpage generation.
18127 * doc/gcc.texi, doc/gccint.texi: Include gpl_v3.texi instead of
18129 * doc/sourcebuild.texi: Document gpl_v3.texi as well as gpl.texi.
18130 * Makefile.in (TEXI_GCC_FILES, TEXI_GCCINT_FILES): Include
18131 gpl_v3.texi instead of gpl.texi.
18134 2008-04-01 Jakub Jelinek <jakub@redhat.com>
18137 * c-pch.c (c_common_read_pch): On error close (fd) resp. fclose (f).
18139 2008-04-01 Rafael Espíndola <espindola@google.com>
18141 * tree-vrp.c (extract_code_and_val_from_cond_with_ops): New.
18142 (extract_code_and_val_from_cond): Use
18143 extract_code_and_val_from_cond_with_ops.
18145 2008-04-01 Jan Hubicka <jh@suse.cz>
18147 * function.c (free_after_compilation): Free epilogue_delay_list.
18148 (prepare_function_start): Assert that previous compilation was freed.
18150 2008-04-01 Jan Hubicka <jh@suse.cz>
18151 Jim Wilson <wilson@tuliptree.org>
18152 Andreas Tobler <andreast@gcc.gnu.org>
18154 PR middle-end/35781
18155 * m32c/m32.c (m32c_leaf_function_p, m32c_function_needs_enter): Use
18156 rtl.emit instead cfun->emit.
18157 * sparc/sparc.h (INIT_EXPANDERS): Likewise.
18158 * ia64/ia64.h (INIT_EXPANDERS): Likewise.
18160 2008-04-01 Ben Elliston <bje@au.ibm.com>
18162 * doc/c-tree.texi (Function Basics): Fix grammatical error.
18164 2008-03-31 Seongbae Park <seongbae.park@gmail.com>
18166 * common.opt (fprofile-dir=, fprofile-use=, fprofile-generate=):
18168 (fprofile-use): Add var flag_profile_use
18169 * coverage.c (coverage_begin_output): Do not open a gcno file for
18170 output only if -ftest-coverage is set.
18171 Do not add getpwd() to gcda file path.
18172 (build_gcov_info): Check the new flag
18173 flag_profile_datafile_relative_path.
18174 (coverage_init): Use profile_data_prefix.
18175 Read profile counter only if flag_profile_use is set.
18176 * opts.c (common_handle_option): New option fprofile-use=,
18177 fprofile-dir=, fprofile-generate=.
18178 * toplev.c (profile_data_prefix): New variable definition.
18179 * toplev.h (profile_data_prefix): New declaration.
18180 * doc/invoke.tex (Option Summary, Optimization Options):
18183 2008-03-31 James E. Wilson <wilson@tuliptree.org>
18185 * varasm.c (output_constant_pool_1): In LABEL_REF check,
18186 use tmp consistently.
18189 * config/ia64/div.md (recip_approx_rf): Use UNSPEC not DIV.
18190 * config/ia64/ia64.c (rtx_needs_barrier): Handle
18191 UNSPEC_FR_RECIP_APPROX_RES.
18192 * config/ia64/ia64.md (UNSPEC_FR_RECIP_APPROX_RES): Define.
18194 2008-03-31 Volker Reichelt <v.reichelt@netcologne.de>
18197 * c-decl.c (store_parm_decls_oldstyle): Skip invalid parameters.
18199 2008-03-31 Andrew Pinski <andrew_pinski@playstation.sony.com>
18201 PR middle-end/30186
18202 * fold-const.c (fold_indirect_ref_1): Support accessing non first
18203 element of the vector via a pointer.
18205 2008-03-31 Ian Lance Taylor <iant@google.com>
18207 * tlink.c (scan_linker_output): Look for symbol name in single quotes.
18209 2008-03-31 Jan Hubicka <jh@suse.cz>
18211 * builtins.c (expand_builtin_setjmp_receiver): Update call of
18212 get_arg_pointer_save_area.
18213 * expr.c (init_expr): Just clear out rtl.expr.
18214 * function.c (free_after_compilation): Clear out whole RTL structure.
18215 (get_func_frame_size): Merge into ...
18216 (get_frame_size): ... this one.
18217 (assign_stack_local_1): Merge into ...
18218 (assign_stack_local): ... this one.
18219 (expand_function_end): Update call of get_arg_pointer_save_area.
18220 (get_art_pointer_save_area): Remove cfun argument.
18221 * function.h (emit_status): regno_pointer_align does not need length
18222 attribute. Move x_regno_reg_rtx to ...
18223 (regno_reg_rtx): ... new global array.
18224 (reg_rtx_no, seq_stack, REGNO_POINTER_ALIGN): Update accestors.
18225 (pending_stack_adjust, inhibit_defer_pop, saveregs_value,
18226 apply_args_value, forced_labels, stack_pointer_delta):
18228 (struct varasm_status): Move here from varasm.c
18229 (struct rtl_data): New. Move here some fields from struct function.
18230 (return_label, naked_return_label, stack_slot_list, parm_birth_insn,
18231 frame_offset, stack_check_probe_note, arg_pointer_save_area,
18232 used_temp_slots avail_temp_slots, temp_slot_level,
18233 nonlocal_goto_handler_labels): Update accesstors.
18234 (rtl): New global variable.
18235 (struct function): Move some fileds to rtl_data.
18236 (get_arg_pointer_save_area): Update prototype.
18237 * emit-rtl.c (rtl): Declare.
18238 (regno_reg_rtx): Declare.
18239 (first_insn, last_insn, cur_insn_uid, last_location, first_label_num):
18241 (gen_reg_rtx): Update.
18242 (init_virtual_regs): Do not tate emit_status argument.
18243 (init_emit): Do not allocate emit.
18244 * varasm.c (varasm_statuc): Move to function.h.
18245 (n_deferred_constatns): Update accestor.
18246 (init_varasm_status): Do not allocate varasm_status.
18247 (force_const_mem, get_pool_size, output_constant_pool): Update.
18248 * stmt.c (force_label_rtx): Do not use x_ prefixes.
18249 (expand_nl_goto_receiver): Update get_arg_pointer_save_area.
18251 2008-03-31 Zdenek Dvorak <ook@ucw.cz>
18253 PR rtl-optimization/35729
18254 * loop-invariant.c (check_maybe_invariant): Disallow volatile memory
18257 2008-03-31 H.J. Lu <hongjiu.lu@intel.com>
18260 * config/i386/i386.md (*movti_internal): Emit unaligned SSE
18261 load/store if memory is unaligned.
18262 (*movti_rex64): Likewise.
18264 * config/i386/predicates.md (misaligned_operand): New.
18266 2008-03-31 Andrew Pinski <pinskia@gmail.com>
18269 * tree-ssa-phiopt.c (conditional_replacement): Return early for
18272 2008-03-31 Jan Beulich <jbeulich@novell.com>
18274 * config/ia64/constraints.md: Add 'j' constraint.
18275 * config/ia64/ia64.md (movsi_internal): Add addp4 case.
18276 (movdi_internal): Likewise.
18278 2008-03-30 Volker Reichelt <v.reichelt@netcologne.de>
18281 * c-typeck.c (build_c_cast): Skip invalid fields in unions.
18283 2008-03-30 H.J. Lu <hongjiu.lu@intel.com>
18286 * config/i386/i386.c (ix86_expand_sse_4_operands_builtin): Issue
18287 proper error message for the third argument on blendpd and
18290 * config/i386/sse.md (blendbits): New.
18291 (sse4_1_blendp<ssemodesuffixf2c>): Use it.
18293 2008-03-30 Eric Botcazou <ebotcazou@adacore.com>
18295 * fold-const.c (fold_binary) <BIT_IOR_EXPR>: Add missing conversions.
18297 2008-03-30 Richard Guenther <rguenther@suse.de>
18299 PR middle-end/31023
18300 * fold-const.c (fold_sign_changed_comparison): Do leave
18301 conversions to base-types alone.
18303 2008-03-29 Andrew Pinski <andrew_pinski@playstation.sony.com>
18305 * config/rs6000/rs6000.c (rs6000_stack_info): Don't force saving of
18306 the link register if one altivec register is be saved.
18308 2008-03-30 Ben Elliston <bje@au.ibm.com>
18310 * final.c (final_scan_insn): Remove if (0) code.
18312 2008-03-28 Volker Reichelt <v.reichelt@netcologne.de>
18314 * c-parser.c (c_parser_next_token_is_keyword): Simplify.
18316 2008-03-28 H.J. Lu <hongjiu.lu@intel.com>
18318 * config/i386/sse.md (*and<mode>3): Pass <MODE>mode instead
18319 of V4SFmode to ix86_binary_operator_ok.
18321 2008-03-28 Uros Bizjak <ubizjak@gmail.com>
18323 * config/i386/i386.c (override_options): Initialize
18324 ix86_veclib_handler to ix86_veclibabi_svml when
18325 -mveclibabi=svml is used.
18326 (ix86_veclibabi_svml): New function for SVML ABI style
18327 vectorization support.
18328 * doc/invoke.texi (-mveclibabi) [svml]: Document new target option.
18330 2008-03-28 Rafael Espíndola <espindola@google.com>
18332 * fold-const.c (tree_unary_nonnegative_warnv_p): Make it public.
18333 (tree_binary_nonnegative_warnv_p): Make it public.
18334 (tree_single_nonnegative_warnv_p): Make it public.
18335 (tree_invalid_nonnegative_warnv_p): Make it public.
18336 (tree_unary_nonzero_warnv_p): Make it public.
18337 (tree_binary_nonzero_warnv_p): Make it public
18338 (tree_single_nonzero_warnv_p): Make it public.
18339 * tree-vrp.c (vrp_evaluate_conditional_warnv_with_ops): New function.
18340 (extract_range_from_binary_expr): Split the expr argument.
18341 (extract_range_from_unary_expr): Split the expr argument.
18342 (extract_range_from_comparison): Split the expr argument.
18343 (extract_range_from_expr): Use the new aux functions.
18344 (vrp_evaluate_conditional_warnv): Use
18345 vrp_evaluate_conditional_warnv_with_ops.
18346 * tree.h (tree_unary_nonzero_warnv_p): Declare.
18347 (tree_binary_nonzero_warnv_p): Declare.
18348 (tree_single_nonzero_warnv_p): Declare.
18349 (tree_expr_nonzero_warnv_p): Declare.
18350 (tree_unary_nonnegative_warnv_p): Declare.
18351 (tree_binary_nonnegative_warnv_p): Declare.
18352 (tree_single_nonnegative_warnv_p): Declare.
18353 (tree_invalid_nonnegative_warnv_p): Declare.
18355 2008-03-28 Richard Guenther <rguenther@suse.de>
18357 PR tree-optimization/30317
18358 PR tree-optimization/30911
18359 PR tree-optimization/34793
18360 * tree-vrp.c (set_and_canonicalize_value_range): New function.
18361 (struct assert_locus_d): New member EXPR.
18362 (register_new_assert_for): Add EXPR parameter to support
18363 ASSERT_EXPR <name, expr OP limit>.
18364 (register_edge_assert_for_1): Adjust callers.
18365 (find_assert_locations): Likewise.
18366 (process_assert_insertions_for): Build condition from expression.
18367 (extract_range_from_assert): Handle ASSERT_EXPRs
18368 of the form ASSERT_EXPR <name, expr OP limit>.
18369 (register_edge_assert_for_2): New helper registering
18370 asserts for comparisons. Recognize range tests of the form
18371 (unsigned)i - CST1 OP CST2.
18372 (register_edge_assert_for_1): Use it.
18373 (register_edge_assert_for): Likewise.
18374 (needs_overflow_infinity): Integer sub-types
18375 do not need overflow infinities.
18376 (vrp_val_is_max): The extreme values of integer sub-types
18377 are those of the base type.
18378 (vrp_val_is_min): Likewise.
18379 * tree.def (ASSERT_EXPR): Document extra allowed conditional
18382 2008-03-28 Nick Clifton <nickc@redhat.com>
18385 * config/mn10300/mn10300.c (mn10300_secondary_reload_class):
18386 Return GENERAL_REGS for stack adjustment reloads.
18388 2008-03-28 Andrew Pinski <andrew_pinski@playstation.sony.com>
18391 * config/rs6000/rs6000.c (rs6000_expand_vector_init): Create a
18392 const_vector when all the vectors are constant.
18394 2008-03-27 Bob Wilson <bob.wilson@acm.org>
18396 * config/xtensa/xtensa.c (gen_float_relational): Handle unordered
18398 * config/xtensa/xtensa.md (any_cond): Add unordered comparisons.
18399 (any_scc_sf): Add uneq, unlt, unle and unordered operators.
18401 (s<code>_sf): Use new scc_sf attribute for opcode names.
18403 2008-03-27 Tom Tromey <tromey@redhat.com>
18405 * doc/sourcebuild.texi, doc/install.texi, configure, aclocal.m4,
18406 configure.ac, Makefile.in, config/t-darwin, config/m32c/t-m32c,
18407 config/spu/t-spu-elf, config/i386/t-interix,
18408 config/i386/t-cygming, config/i386/x-i386, config/i386/t-cygwin,
18409 config/i386/x-darwin, config/i386/x-mingw32,
18410 config/i386/t-netware, config/i386/x-cygwin, config/i386/t-nwld,
18411 config/sh/t-sh, config/sh/t-symbian, config/x-linux,
18412 config/t-sol2, config/x-hpux, config/x-darwin, config/ia64/t-ia64,
18413 config/x-solaris, config/t-vxworks, config/m68k/t-uclinux,
18414 config/rs6000/x-rs6000, config/rs6000/x-darwin64,
18415 config/rs6000/x-darwin, config/rs6000/t-rs6000,
18416 config/score/t-score-elf, config/arm/t-strongarm-pe,
18417 config/arm/t-pe, config/arm/t-arm, config/arm/t-wince-pe,
18418 config/v850/t-v850, config/v850/t-v850e, config/bfin/t-bfin-linux:
18419 Revert automatic dependency patch.
18421 2008-03-27 H.J. Lu <hongjiu.lu@intel.com>
18424 * config/i386/i386.c (ix86_function_arg_boundary): Align
18425 decimal floating point to its natural boundary.
18427 2008-03-27 Richard Guenther <rguenther@suse.de>
18429 PR middle-end/35716
18430 * fold-const.c (fold_comparison): Restrict distinct decl
18431 comparison folding to VAR_DECLs and PARM_DECLs. Do not
18432 solely rely on operand_equal_p.
18434 2008-03-27 Richard Guenther <rguenther@suse.de>
18437 * c-common.c (handle_weak_attribute): Reject combination of
18440 2008-03-27 Richard Guenther <rguenther@suse.de>
18442 PR tree-optimization/32810
18443 * tree-ssa-ccp.c (get_symbol_constant_value): Strip useless
18444 conversions from DECL_INITIAL.
18445 (fold_const_aggregate_ref): Likewise from constructor elements.
18447 2008-03-27 Zdenek Dvorak <ook@ucw.cz>
18449 * tree-affine.h (aff_combination_expand): Declare.
18450 (get_inner_reference_aff): Likewise.
18451 * tree-affine.c (aff_combination_expand): Split out from
18452 tree_to_aff_combination_expand.
18453 (get_inner_reference_aff): New function.
18454 * tree-parloops.c (loop_parallel_p): Free vectorizer info.
18455 * tree-ssa-loop-im.c: Include tree-affine.h and pointer-set.h.
18456 (struct lim_aux_data): sm_done field removed.
18457 (mem_ref_loc_p, mem_ref_locs_p): New types.
18458 (struct mem_ref): Added id, stored, accesses_in_loop,
18459 indep_loop, dep_loop, indep_ref, dep_ref fields.
18460 Removed is_stored, locs and next fields.
18461 (memory_accesses): New variable.
18462 (movement_possibility): Do not allow moving statements
18463 that store to memory.
18464 (outermost_indep_loop, simple_mem_ref_in_stmt, mem_ref_in_stmt):
18466 (determine_max_movement): For statements with memory references,
18467 find the outermost loop in that the reference is independent.
18468 (move_computations_stmt): Mark the virtual operands for renaming.
18469 (memref_free, mem_ref_alloc, mem_ref_locs_alloc, mark_ref_stored,
18470 gather_mem_refs_stmt, gather_mem_refs_in_loops, vtoe_hash, vtoe_eq,
18471 vtoe_free, record_vop_access, get_vop_accesses, get_vop_stores,
18472 add_vop_ref_mapping, create_vop_ref_mapping_loop,
18473 create_vop_ref_mapping, analyze_memory_references,
18474 cannot_overlap_p, mem_refs_may_alias_p, rewrite_mem_ref_loc,
18475 get_all_locs_in_loop, ref_always_accessed_p,
18476 refs_independent_p, record_indep_loop, ref_indep_loop_p_1,
18477 ref_indep_loop_p, can_sm_ref_p, find_refs_for_sm,
18478 store_motion_loop, store_motion): New functions.
18479 (struct vop_to_refs_elt): New type.
18480 (record_mem_ref_loc, free_mem_ref_locs, rewrite_mem_refs,
18481 memref_hash, memref_eq, hoist_memory_references): Rewritten.
18482 (schedule_sm): Replaced by...
18483 (execute_sm): ... this.
18484 (determine_lsm_ref, hoist_memory_references,
18485 loop_suitable_for_sm, gather_mem_refs_stmt, gather_mem_refs,
18486 find_more_ref_vops, free_mem_ref, free_mem_refs,
18487 determine_lsm_loop, determine_lsm): Removed.
18488 (tree_ssa_lim_finalize): Free data structures used by store motion.
18489 (tree_ssa_lim): Call analyze_memory_references. Use
18490 store_motion instead of determine_lsm.
18492 2008-03-27 Paolo Bonzini <bonzini@gnu.org>
18494 * config.cc (m68hc11, m6811, m68hc12, m6812): Add usegas.h,
18495 rename tmake_file to m68hc11/t-m68hc11.
18496 (mcore): Set inhibit_libc to true.
18497 * config.host (alpha*-dec-*vms*): Set extra_programs.
18498 (interix3*): Don't use host_xmake_file.
18499 * configure.ac: Let config.gcc override inhibit_libc.
18500 * configure: Regenerate.
18502 * config/alpha/x-vms (EXTRA_PROGRAMS): Remove.
18503 * config/t-openbsd-thread: Remove commented out lines.
18505 * config/x-interix: Remove.
18507 * config/m68hc11/t-m68hc11-gas: Rename to...
18508 * config/m68hc11/t-m68hc11: ... this. Remove T_CPPFLAGS.
18510 * config/mcore/t-mcore: Remove T_CFLAGS.
18511 * config/mcore/t-mcore-pe: Likewise.
18513 2008-03-27 Paolo Bonzini <bonzini@gnu.org>
18515 * configure.ac: Replace custom __GNU_SOURCE test with
18516 AC_USE_SYSTEM_EXTENSIONS. Move it earlier.
18517 * aclocal.m4: Regenerate.
18518 * configure: Regenerate.
18519 * config.in: Regenerate.
18521 2008-03-27 Richard Guenther <rguenther@suse.de>
18523 * fold-const.c (target.h): Include.
18524 (fold_comparison): Fold comparison of addresses of decls
18525 that bind locally or of constants. Consolidate address folding code.
18526 * tree-vrp.c (operand_less_p): Deal with non-INTEGER_CST
18527 results from fold_binary_to_constant.
18528 (compare_values_warnv): Likewise.
18530 2008-03-27 Andrew Pinski <pinskia@gmail.com>
18532 PR middle-end/35429
18533 * fold-const.c (fold_truthop): Check for integeral types when folding
18534 a == 0 && b == 0 and a != 0 || b != 0 .
18536 2008-03-26 Eric Botcazou <ebotcazou@adacore.com>
18538 * tree.c (get_unwidened): Remove code fiddling with COMPONENT_REF.
18540 2008-03-26 Andreas Schwab <schwab@suse.de>
18542 * doc/invoke.texi: Fix use of @item vs. @itemx.
18544 2008-03-26 Tom Tromey <tromey@redhat.com>
18546 * Makefile.in (build/gensupport.o, build/print-rtl.o,
18547 build/read-rtl.o, build/rtl.o, build/gencondmd.o, build/genattr.o,
18548 build/genattrtab.o, build/genautomata.o, build/gencheck.o,
18549 build/gencodes.o, build/genconditions.o, build/genconfig.o,
18550 build/genconstants.o, build/genemit.o, build/genextract.o,
18551 build/genflags.o, build/genmddeps.o, build/genopinit.o,
18552 build/genoutput.o, build/genpeep.o, build/genrecog.o): Depend on
18555 2008-03-26 Richard Guenther <rguenther@suse.de>
18558 2008-03-26 Richard Guenther <rguenther@suse.de>
18560 * fold-const.c (target.h): Include.
18561 (fold_comparison): Fold comparison of addresses of two decls
18562 that bind locally. Consolidate address folding code.
18564 2008-03-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
18566 * builtins.c (expand_builtin_pow, fold_builtin_cabs,
18567 fold_builtin_sqrt, fold_builtin_cbrt, fold_builtin_logarithm,
18568 fold_builtin_hypot, fold_builtin_pow): Remove uses of dconst3,
18569 dconstsqrt2, dconstthird, dconste and/or dconst10.
18570 * config/i386/i386.c (ix86_emit_swsqrtsf): Likewise.
18571 * emit-rtl.c (dconst3, dconst10, dconstm2, dconstthird,
18572 dconstsqrt2, dconste): Delete.
18573 (init_emit_once): Likewise. Simplify initializing dconstm1.
18575 * real.c (get_real_const): New.
18576 * real.h (dconst3, dconst10, dconstm2, dconstthird,
18577 dconstsqrt2, dconste): Delete.
18578 (real_value_const, get_real_const): New.
18580 2008-03-26 H.J. Lu <hongjiu.lu@intel.com>
18582 * config/i386/cygming.h (BIGGEST_ALIGNMENT): Removed.
18584 * config/i386/i386.c (ix86_function_arg_boundary): Check
18585 BIGGEST_ALIGNMENT instead of 128.
18586 (setup_incoming_varargs_64): Likewise.
18588 2008-03-26 Tom Tromey <tromey@redhat.com>
18590 * Makefile.in (DEPFILES): Add missing '/'.
18592 2008-03-26 Richard Guenther <rguenther@suse.de>
18594 * fold-const.c (target.h): Include.
18595 (fold_comparison): Fold comparison of addresses of two decls
18596 that bind locally. Consolidate address folding code.
18598 2008-03-26 Nick Clifton <nickc@redhat.com>
18601 * config/stormy16/stormy16.c (xstormy16_legitimate_address_p): Do
18602 not allow INT+INT as a legitimate addressing mode.
18604 2008-03-26 Richard Guenther <rguenther@suse.de>
18606 * tree-flow.h (widen_bitfield): Remove declaration.
18607 * tree-ssa-ccp.c (visit_assignment): Remove unneeded code.
18608 (widen_bitfield): Remove function.
18609 * tree-ssa-dom.c (record_equivalences_from_stmt): Remove unneeded
18612 2008-03-25 Andrew Pinski <andrew_pinski@playstation.sony.com>
18615 * config/rs6000/rs6000-c.c (rs6000_builtin_type_compatible): Handle
18618 2008-03-25 Richard Sandiford <rsandifo@nildram.co.uk>
18620 PR rtl-optimization/35232
18621 * reload1.c (reg_reloaded_call_part_clobbered): Clarify comment.
18622 (forget_old_reloads_1, forget_marked_reloads): Don't clear
18623 reg_reloaded_call_part_clobbered here.
18624 (reload_regs_reach_end_p): New function.
18625 (reload_reg_rtx_for_input): New variable.
18626 (reload_reg_rtx_for_output): Likewise.
18627 (emit_input_reload_insns): Use reloadreg rather than rl->reg_rtx
18628 when reassigning a pseudo register. Load reloadreg from
18629 reload_reg_rtx_for_input, moving the mode and register
18631 (do_input_reload): ...here. Use the mode-adjusted reg_rtx
18632 instead of the original when deciding whether an input reload
18633 would be a no-op or whether an output reload can be deleted.
18634 (emit_output_reload_insns): Use the mode-adjusted reg_rtx
18635 when setting up new_spill_reg_store. Load it from
18636 reload_reg_rtx_for_output, moving the mode and register
18638 (do_output_reload): ...here. Use the mode-adjusted reg_rtx
18639 instead of the original when deciding whether an output reload
18640 would be a no-op. Do the same when modifying insn notes.
18641 Use rtx_equal_p instead of == to compare the registers.
18642 (inherit_piecemeal_p): Take a mode and two register numbers
18644 (emit_reload_insns): Clear new_spill_reg_store for every hard
18645 register in the reload register. Remove spill registers
18646 from reg_reloaded_valid before considering whether to record
18647 inheritance information for them. Use reload_reg_rtx_for_output
18648 instead of reg_rtx when recording output reloads. Use
18649 reload_reg_rtx_for_input instead of reg_rtx when recording
18650 input reloads. Set or clear reg_reloaded_call_part_clobbered
18651 at the same time as setting reg_reloaded_valid.
18652 (delete_output_reload): Add a new_reload_reg parameter and use it
18653 instead of rld[j].reg_rtx.
18654 (emit_input_reload_insns, do_input_reload, do_output_reload): Adjust
18657 2008-03-25 Tom Tromey <tromey@redhat.com>
18659 * Makefile.in (build/gensupport.o): Depend on insn-modes.h.
18660 (build/genattr.o): Likewise.
18661 (build/genattrtab.o): Likewise.
18662 (build/gencodes.o): Likewise.
18663 (build/genconfig.o): Likewise.
18664 (build/genconstants.o): Likewise.
18665 (build/genemit.o): Likewise.
18666 (build/genextract.o): Likewise.
18667 (build/genflags.o): Likewise.
18669 2008-03-25 Bob Wilson <bob.wilson@acm.org>
18671 * config/xtensa/xtensa.c (xtensa_va_start): Use build_int_cst
18672 instead of size_int for integer types.
18673 (xtensa_gimplify_va_arg_expr): Likewise. Convert index to sizetype
18674 to match type of MINUS_EXPR.
18676 2008-03-25 Tom Tromey <tromey@redhat.com>
18678 * configure: Rebuilt.
18679 * configure.ac (BUILD_DEPMODE): Extract CCDEPMODE from temporary
18682 2008-03-25 Tom Tromey <tromey@redhat.com>
18684 * config/x-solaris (host-solaris.o): Update.
18685 * config/x-linux (host-linux.o): Update.
18686 * config/x-hpux (host-hpux.o): Update.
18687 * config/x-darwin (host-darwin.o): Update.
18688 * config/v850/t-v850e (v850-c.o): Update.
18689 * config/v850/t-v850 (v850-c.o): Update.
18690 * config/t-vxworks (vxworks.o): Update.
18691 * config/t-sol2 (sol2-c.o, sol2.o): Update.
18692 * config/t-darwin (darwin.o, darwin-c.o, darwin-driver.o): Update.
18693 * config/spu/t-spu-elf (spu-c.o): Update.
18695 * config/sh/t-symbian (sh-c.o): Update.
18696 (symbian.o): Update.
18697 * config/sh/t-sh (sh-c.o): Update.
18698 * config/score/t-score-elf (score7.o, score3.o): Update.
18699 * config/rs6000/x-rs6000 (driver-rs6000.o): Update.
18700 * config/rs6000/x-darwin64 (host-ppc64-darwin.o): Update.
18701 * config/rs6000/x-darwin (host-ppc-darwin.o): Update.
18702 * config/rs6000/t-rs6000 (rs6000-c.o): Update.
18703 (rs6000.o): Remove.
18704 * config/m68k/t-uclinux (generated_files): Add sysroot-suffix.h.
18705 * config/m32c/t-m32c (m32c-pragma.o): Update.
18706 * config/ia64/t-ia64 (ia64-c.o): Update.
18707 * config/i386/x-mingw32 (host-mingw32.o): Update.
18708 * config/i386/x-i386 (driver-i386.o): Update.
18709 * config/i386/x-darwin (host-i386-darwin.o): Update.
18710 * config/i386/x-cygwin (host-cygwin.o): Update.
18711 * config/i386/t-nwld (nwld.o): Update.
18712 * config/i386/t-netware (netware.o): Update.
18713 * config/i386/t-interix (winnt.o): Update.
18714 * config/i386/t-cygwin (cygwin1.o, cygwin2.o): Update.
18715 * config/i386/t-cygming (winnt.o, winnt-cxx.o, winnt-stubs.o,
18716 msformat-c.o): Update.
18717 * config/bfin/t-bfin-linux (generated_files): Add
18718 linux-sysroot-suffix.h.
18719 * config/arm/t-wince-pe (pe.o): Update.
18720 * config/arm/t-strongarm-pe (pe.o): Update.
18721 * config/arm/t-pe (pe.o): Update.
18722 * config/arm/t-arm (arm-c.o): Update.
18723 * doc/install.texi (Prerequisites): Require make 3.80.
18724 * Makefile.in: Remove .o targets.
18725 (CCDEPMODE, DEPDIR, depcomp, BUILD_DEPMODE): New variables.
18726 (OBSTACK_H, FIBHEAP_H, PARTITION_H, MD5_H, BCONFIG_H): Remove.
18727 (simple_generated_h, simple_generated_c): Move earlier.
18728 (generated_files): New variable.
18729 (TARGET_H, MACHMODE_H, HOOKS_H, HOSTHOOKS_DEF_H, LANGHOOKS_DEF_H,
18730 TARGET_DEF_H, RTL_BASE_H, RTL_H, PARAMS_H, BUILTINS_DEF, TREE_H,
18731 BASIC_BLOCK_H, GCOV_IO_H, COVERAGE_H, DEMANGLE_H, RECOG_H,
18732 ALIAS_H, EMIT_RTL_H, FLAGS_H, FUNCTION_H, EXPR_H, OPTABS_H,
18733 REGS_H, RA_H, RESOURCE_H, SCHED_INT_H, INTEGRATE_H, CFGLAYOUT_H,
18734 CFGLOOP_H, IPA_UTILS_H, IPA_REFERENCE_H, IPA_TYPE_ESCAPE_H,
18735 CGRAPH_H, DF_H, RESOURCE_H, DDG_H, GCC_H, GGC_H, TIMEVAR_H,
18736 INSN_ATTR_H, C_COMMON_H, C_PRAGMA_H, C_TREE_H, SYSTEM_H,
18737 PREDICT_H, DECNUM_H, MKDEPS_H, SYMTAB_H, TREE_DUMP_H,
18738 TREE_GIMPLE_H, TREE_FLOW_H, TREE_SSA_LIVE_H, PRETTY_PRINT_H,
18739 DIAGNOSTIC_H, C_PRETTY_PRINT_H, SCEV_H, LAMBDA_H, TREE_DATA_REF_H,
18740 VARRAY_H, TREE_INLINE_H, REAL_H, DBGCNT_H, EBIMAP_H): Remove.
18742 (COMPILE.base, COMPILE): New variables.
18743 (%.o): New pattern rule.
18744 (ALL_HOST_OBJS): New variable.
18745 (xgcc$(exeext), cpp$(exeext)): Remove extra version.o.
18746 (dummy-checksum.o, cc1-checksum.o): Remove.
18747 (DRIVER_SHLIB): New variable.
18748 (DRIVER_DEFINES): Use it.
18749 (gencondmd.c): Move out of build/.
18750 (s-conditions): Update.
18751 (BUILDCOMPILE.base, BUILDCOMPILE): New variables.
18752 (ALL_BUILD_OBJS): Likewise.
18753 (build/%.o): Use BUILDCOMPILE.
18754 (build/ggc-none.o, build/ggc-none.o, build/min-insn-modes.o,
18755 build/print-rtl.o, build/read-rtl.o, build/rtl.o, build/vec.o,
18756 build/gencondmd.o, build/genattrtab.o, build/genautomata.o,
18757 build/gencheck.o, build/gencodes.o, build/genconditions.o,
18758 build/genconfig.o, build/genconstants.o, build/genemit.o,
18759 build/genextract.o, build/genflags.o, build/genmddeps.o,
18760 build/genopinit.o, build/genoutput.o, build/genpeep.o,
18761 build/genpreds.o, build/genrecog.o, build/gcov-iov.o,
18762 build/gen-protos.o, build/scan.o, build/fix-header.o,
18763 build/scan-decls.o): Simplify.
18764 (collect2.o, c-opts.o, gcc.o, gccspec.o, gcc-options.o,
18765 cppdefault.o, protoize.o, unprotoize.o, intl.o, version.o,
18766 prefix.o, toplev.o): Reduce to variable setting.
18767 (libbackend.o): Use COMPILE. Remove most dependencies. Move later.
18768 ($(out_object_file), gcc-options.o): New targets.
18769 ($(ALL_HOST_OBJS)): New target. Include dependency files.
18770 * configure: Rebuilt.
18771 * configure.ac: Call ZW_CREATE_DEPDIR, ZW_PROG_COMPILER_DEPENDENCIES.
18772 * doc/sourcebuild.texi (Front End Directory): Document new variable.
18774 2008-03-25 Douglas Gregor <doug.gregor@gmail.com>
18776 * c-common.c (c_sizeof_or_alignof_type): If we're not allowed to
18777 complain when we hit an error, return ERROR_MARK_NODE.
18779 2008-03-25 Naveen.H.S <naveen.hs@kpitcummins.com>
18781 * config/sh/constraints.md (Pso, Psz): New constraints.
18782 * config/sh/sh.c (print_operand): Add %V and %W operand codes.
18783 * config/sh/sh.md (*andsi3_bclr, *iorsi3_bset): New insns.
18785 2008-03-25 Naveen.H.S <naveen.hs@kpitcummins.com>
18787 * config/sh/sh.c (sh_expand_t_scc): Emit movrt for SH2A if possible.
18788 * config/sh/sh.md (xorsi3_movrt, movrt): New insns.
18790 2008-03-25 Naveen.H.S <naveen.hs@kpitcummins.com>
18792 * config/sh/sh.md (prefetch): Add condition for SH2A target.
18793 (prefetch_sh2a): New.
18795 2008-03-25 Jayant Sonar <Jayant.sonar@kpitcummins.com>
18796 Naveen.H.S <naveen.hs@kpitcummins.com>
18798 * config/sh/constraints.md (I28): New constraint.
18799 * config/sh/sh.c (broken_move): Add support for movi20s.
18800 * config/sh/sh.md (movsi_ie): Add the alternative for movi20s.
18802 2008-03-25 Anil Paranjape <anil.paranjape@kpitcummins.com>
18803 Jayant Sonar <Jayant.sonar@kpitcummins.com>
18804 Naveen.H.S <naveen.hs@kpitcummins.com>
18806 * config/sh/sh.c (SH_ATTRIBUTES): Define.
18807 (SYMBOL_FLAG_FUNCVEC_FUNCTION): Define.
18808 (print_operand): Handle resbank in %@ operand code.
18809 (sh_encode_section_info): New.
18810 (push_regs): Add conditions for resbank.
18811 (sh_expand_epilogue): Likewise.
18812 (sh_insert_attributes): Likewise.
18813 (sh_attribute_table): Likewise.
18814 (sh_handle_resbank_handler_attribute): New.
18815 (sh2a_handle_function_vector_handler_attribute): New.
18816 (sh2a_is_function_vector_call): New.
18817 (sh2a_get_function_vector_number): New.
18818 (sh2a_function_vector_p): New.
18819 (sh_cfun_resbank_handler_p): New.
18820 * config/sh/sh.md (calli): Emit jsr/n if possible.
18821 (calli_tbr_rel): New.
18822 (calli_pcrel): Emit jsr/n if possible.
18823 (return_i): Emit rts/n if possible.
18824 (call_valuei_tbr_rel): New.
18825 (call_valuei_pcrel): Add condition for SH2A target.
18826 (call_value): Likewise.
18827 * config/sh/sh-protos.h (sh_cfun_resbank_handler_p): Declare.
18828 (sh2a_get_function_vector_number): Likewise.
18829 (sh2a_is_function_vector_call): Likewise.
18830 * doc/extend.texi: Document TBR relative addressing of SH2A.
18831 (resbank): Add description for SH2A.
18833 2008-03-24 Richard Guenther <rguenther@suse.de>
18836 * gimplify.c (gimplify_modify_expr): For frontend type-correct
18837 pointer assignments change conversions according to middle-end rules.
18838 (gimplify_modify_expr_rhs): Deal with NULL TARGET_EXPR_INITIAL.
18839 * configure.ac: Include type checking in yes.
18840 * configure: Regenerate.
18842 2008-03-24 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
18844 * diagnostic.c (diagnostic_count_diagnostic): Delete.
18845 (diagnostic_report_diagnostic): Update. Handle ICEs here.
18847 2008-03-24 Nathan Sidwell <nathan@codesourcery.com>
18849 * gthr-vxworks.h (UNUSED): Define.
18851 2008-03-23 H.J. Lu <hongjiu.lu@intel.com>
18853 * config/i386/i386.h (STATIC_CHAIN_REGNUM): Use R10_REG and CX_REG.
18855 2008-03-23 Zuxy Meng <zuxy.meng@gmail.com>
18857 * doc/extend.texi (Function Attributes): Add missing comma in the
18858 example of the "alloc_size" attribute.
18860 2008-03-23 Uros Bizjak <ubizjak@gmail.com>
18863 2008-03-05 H.J. Lu <hongjiu.lu@intel.com>
18865 * config/i386/i386-modes.def: Use 4 byte alignment on DI for
18868 2008-03-19 Uros Bizjak <ubizjak@gmail.com>
18871 * stor-layout.c (update_alignment_for_field): Set minimum alignment
18872 of the underlying type of a MS bitfield layout to the natural
18873 alignment of the type.
18875 2008-03-22 Uros Bizjak <ubizjak@gmail.com>
18877 * config/i386/i386.c (assign_386_stack_local): Align DImode slots
18878 to their natural alignment to avoid store forwarding stalls.
18880 2008-03-22 Richard Guenther <rguenther@suse.de>
18882 * tree-cfg.c (verify_expr): Recurse again for invariant addresses.
18883 For PHI nodes verify the address is invariant.
18884 * tree-ssa-ccp.c (ccp_decl_initial_min_invariant): Remove.
18885 (get_symbol_constant_value): Use is_gimple_min_invariant.
18886 (maybe_fold_stmt_indirect): Likewise.
18888 2008-03-22 Richard Sandiford <rsandifo@nildram.co.uk>
18890 PR rtl-optimization/33927
18891 * Makefile.in (dse.o): Depend on $(TM_P_H).
18892 * expr.h (extract_low_bits): Declare.
18893 * expmed.c (extract_low_bits): New function.
18894 * rtlhooks.c (gen_lowpart_general): Generalize SUBREG handling.
18895 * dse.c: Include tm_p.h.
18896 (find_shift_sequence): Remove the read_reg argument and return the
18897 read value. Emit the instructions instead of returning them.
18898 Iterate on new_mode rather than calculating it each time.
18899 Check MODES_TIEABLE_P. Use simplify_gen_subreg to convert the
18900 source to NEW_MODE and extract_low_bits to convert the shifted
18901 value to READ_MODE.
18902 (replace_read): Allow the load and store to have different mode
18903 classes. Use extract_low_bits when SHIFT == 0. Create the shift
18904 or extraction instructions before trying the replacement. Update
18905 dump-file code accordingly, avoiding use of REGNO (store_info->rhs).
18907 2008-03-22 Uros Bizjak <ubizjak@gmail.com>
18909 * config/i386/i386.c (assign_386_stack_local): Align DImode slots
18910 to their natural alignment to avoid store forwarding stalls.
18912 2008-03-21 Andrew Pinski <andrew_pinski@playstation.sony.com>
18915 * config/rs6000/rs6000.md (floatdidf2): Discouraging fprs and
18916 encouraging but not allowing gprs for input;
18917 change the input constraint to !f#r.
18918 (fix_truncdfdi2): Discouraging fprs and encouraging but not allowing
18920 change the output constraint to !f#r.
18922 2008-03-21 Uros Bizjak <ubizjak@gmail.com>
18925 * config/i386/i386.md ("*floatunssi<mode2>_1"): New pattern with
18926 corresponding post-reload splitters.
18927 ("floatunssi<mode>2"): Expand to unsigned_float x87 insn pattern
18928 when x87 FP math is selected.
18929 * config/i386/i386-protos.h (ix86_expand_convert_uns_sixf_sse):
18930 New function prototype.
18931 * config/i386/i386.c (ix86_expand_convert_uns_sixf_sse): New
18932 unreachable function to ease macroization of insn patterns.
18934 2008-03-21 Martin Jambor <mjambor@suse.cz>
18936 * tree-data-ref.c (dump_data_dependence_relation): Avoid data
18937 reference dumps if ddr is NULL or dependence is unknown.
18939 2008-03-20 Kaz Kojima <kkojima@gcc.gnu.org>
18941 * config/sh/linux-atomic.asm (ATOMIC_TEST_AND_SET): Take
18942 unsigned extension into account.
18943 (ATOMIC_COMPARE_AND_SWAP): Likewise.
18944 (ATOMIC_FETCH_AND_OP, ATOMIC_FETCH_AND_COMBOP): Likewise.
18945 Do computations on a scratch register.
18947 2008-03-21 Richard Guenther <rguenther@suse.de>
18949 * tree-scalar-evolution.c (chrec_contains_symbols_defined_in_loop):
18950 Use is_gimple_min_invariant instead of TREE_INVARIANT.
18951 * tree-ssa-loop-ivopts.c (force_expr_to_var_cost): Likewise.
18952 * tree-ssa-dom.c (record_equality): Likewise.
18953 * tree-inline.c (copy_body_r): Likewise.
18954 * tree-ssa-pre.c (make_values_for_stmt): Remove test for
18957 2008-03-20 Kaz Kojima <kkojima@gcc.gnu.org>
18959 * config/sh/sh.c (split_branches): Pass zero to redirect_jump
18960 as 'delete_unused' argument.
18962 2008-03-20 Richard Guenther <rguenther@suse.de>
18964 * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Remove
18965 special casing of constant qualifiers.
18966 * tree-ssa.c (useless_type_conversion_p_1): Instead do not
18967 care about them in general.
18968 * tree-ssa-ccp.c (ccp_fold): Addresses are constant or not
18969 regardless of their type.
18970 (fold_stmt_r): Forcefully fold *& if we end up with that.
18972 2008-03-20 Paul Brook <paul@codesourcery.com>
18974 * config.gcc (arm*-*-uclinux*): Remove duplicate arm/uclinux-elf.h.
18975 * config/arm/uclinux-eabi.h (SUBTARGET_EXTRA_LINK_SPEC): Add extra
18977 * config/arm/bpabi.h (SUBTARGET_EXTRA_LINK_SPEC): Provide default
18979 (LINK_SPEC): Use SUBTARGET_EXTRA_LINK_SPEC.
18980 * config/arm/unwind-arm.h (_Unwind_decode_target2): Add uClinux.
18982 2008-03-20 Volker Reichelt <v.reichelt@netcologne.de>
18984 * common.opt (Wmudflap): New option.
18985 * tree-mudflap.c (mf_xform_derefs_1): Guard warning by OPT_Wmudflap.
18986 (mx_register_decls): Likewise.
18987 (mudflap_finish_file): Likewise.
18988 * doc/invoke.texi: Document -Wno-mudflap.
18990 2008-03-20 Kai Tietz <kai.tietz@onevision.com>
18992 * c-format.c (replace_format_name_to_system_name): New.
18993 (cmp_attribs): New.
18994 (convert_format_name_to_system_name): New.
18995 (decode_format_attr): Add use of convert_format_name_to_system_name.
18996 (format_types_orig): Add gnu_ prefix to names.
18997 (check_format_info_main): Special treating of \0 escaped names for
18998 supporting multi-character format specifiers as I32, I64.
18999 (TARGET_OVERRIDES_FORMAT_ATTRIBUTES): Use of user defined attributes.
19000 (gnu_target_overrides_format_attributes): New.
19001 * c-format.h: Add structure target_ovr_attr to hold
19002 system specific formatter names.
19003 * config.gcc: Add for x86&x86_64 cygwin and mingw32 targets the
19004 msformat-c.o file to c_target_objs and cxx_target_objs.
19005 * config/i386/mingw32.h (TARGET_OVERRIDES_FORMAT_ATTRIBUTES): New.
19006 (TARGET_OVERRIDES_FORMAT_ATTRIBUTES_COUNT): New.
19007 (TARGET_N_FORMAT_TYPES): New.
19008 * config/i386/msformat-c.c: New.
19009 * config/i386/t-cygming: Add build rule for msformat-c.o.
19010 * doc/extend.texi: Add new format names gnu_* and ms_* and
19012 * doc/tm.texi: (TARGET_OVERRIDES_FORMAT_ATTRIBUTES): New.
19014 2008-03-20 Ira Rosen <irar@il.ibm.com>
19016 * doc/invoke.texi (-O3): Add -ftree-vectorize to the list of
19017 optimizations turned on under -O3.
19018 (ftree-vectorize): Add that the flag is turned on with -O3.
19020 2008-03-20 Ben Elliston <bje@au.ibm.com>
19022 * regmove.c (try_auto_increment): Fix spelling error in comment.
19023 * final.c (final_scan_insn): Likewise.
19025 2008-03-20 Uros Bizjak <ubizjak@gmail.com>
19028 * config/i386/mmx.md (*mov<mode>_internal_rex64"): Adjust register
19029 allocator preferences for "y" and "r" class registers.
19030 ("*mov<mode>_internal"): Ditto.
19031 ("*movv2sf_internal_rex64"): Ditto.
19032 ("*movv2sf_internal"): Ditto.
19034 2008-03-19 Michael Matz <matz@suse.de>
19036 PR middle-end/35616
19037 * calls.c (expand_call): Check overlap of arguments with call
19038 address for sibcalls.
19040 2008-03-19 Uros Bizjak <ubizjak@gmail.com>
19043 * stor-layout.c (update_alignment_for_field): Set minimum alignment
19044 of the underlying type of a MS bitfield layout to the natural
19045 alignment of the type.
19047 2008-03-19 Jan Hubicka <jh@suse.cz>
19050 * toplev.c (decode_d_option): Handle all CPP flags.
19051 * tree-vrp.c: Update tree_pass descriptors.
19052 * regrename.c: Update tree_pass descriptors.
19053 * fwprop.c: Update tree_pass descriptors.
19054 * doc/invoke.texi: Remove documentation of dropped -d? flags.
19055 * tree-into-ssa.c: Update tree_pass descriptors.
19056 * tree-dump.c: Update tree_pass descriptors.
19057 * tree-complex.c: Update tree_pass descriptors.
19058 * tree-dump.h: Update tree_pass descriptors.
19059 * see.c: Update tree_pass descriptors.
19060 * cgraphbuild.c: Update tree_pass descriptors.
19061 * tracer.c: Update tree_pass descriptors.
19062 * tree-loop-distribution.c: Update tree_pass descriptors.
19063 * cgraph.c: Update tree_pass descriptors.
19064 * postreload-gcse.c: Update tree_pass descriptors.
19065 * postreload.c: Update tree_pass descriptors.
19066 * tree-ssa-loop-ch.c: Update tree_pass descriptors.
19067 * tree-tailcall.c: Update tree_pass descriptors.
19068 * tree-pass.h (tree_opt_pass): Rename to ...
19069 (opt_pass) ... this one; add "type" field and remove letter field.
19070 (gimple_opt_pass, rtl_opt_pass, simple_ipa_opt_pass): New.
19071 (execute_pass_list, execute_ipa_pass_list, all_passes, all_ipa_passes,
19072 all_lowering_passes): Update declaration.
19073 * ipa-cp.c: Update tree_pass descriptors.
19074 * final.c: Update tree_pass descriptors.
19075 * omp-low.c: Update tree_pass descriptors.
19076 * tree-ssa-dse.c: Update tree_pass descriptors.
19077 * ipa-reference.c: Update tree_pass descriptors.
19078 * tree-ssa-uncprop.c: Update tree_pass descriptors.
19079 * auto-inc-dec.c: Update tree_pass descriptors.
19080 * reorg.c: Update tree_pass descriptors.
19081 * cgraphunit.c: Update tree_pass descriptors.
19082 * tree-ssa-copyrename.c: Update tree_pass descriptors.
19083 * tree-ssa-ccp.c: Update tree_pass descriptors.
19084 * df-core.c: Update tree_pass descriptors.
19085 * mode-switching.c: Update tree_pass descriptors.
19086 * tree-nomudflap.c: Update tree_pass descriptors.
19087 * modulo-sched.c: Update tree_pass descriptors.
19088 * ipa-pure-const.c: Update tree_pass descriptors.
19089 * cse.c: Update tree_pass descriptors.
19090 * web.c: Update tree_pass descriptors.
19091 * tree-stdarg.c: Update tree_pass descriptors.
19092 * tree-ssa-math-opts.c: Update tree_pass descriptors.
19093 * tree-ssa-dom.c: Update tree_pass descriptors.
19094 * tree-nrv.c: Update tree_pass descriptors.
19095 * tree-ssa-alias.c: Update tree_pass descriptors.
19096 * loop-init.c: Update tree_pass descriptors.
19097 * gimple-low.c: Update tree_pass descriptors.
19098 * ipa-inline.c: Update tree_pass descriptors.
19099 * tree-ssa-sink.c: Update tree_pass descriptors.
19100 * global.c: Update tree_pass descriptors.
19101 * ifcvt.c: Update tree_pass descriptors.
19102 * jump.c: Update tree_pass descriptors.
19103 * predict.c: Update tree_pass descriptors.
19104 * tree-ssa-loop.c: Update tree_pass descriptors.
19105 * recog.c: Update tree_pass descriptors.
19106 * dse.c: Update tree_pass descriptors.
19107 * tree-ssa-ifcombine.c: Update tree_pass descriptors.
19108 * tree-eh.c: Update tree_pass descriptors.
19109 * regmove.c: Update tree_pass descriptors.
19111 * function.c: Update tree_pass descriptors.
19112 * tree-vectorizer.c: Update tree_pass descriptors.
19113 * gcse.c: Update tree_pass descriptors.
19114 * ipa-type-escape.c: Update tree_pass descriptors.
19115 * tree-if-conv.c: Update tree_pass descriptors.
19116 * init-regs.c: Update tree_pass descriptors.
19117 * ipa.c: Update tree_pass descriptors.
19118 * tree-ssa-phiopt.c: Update tree_pass descriptors.
19119 * rtl-factoring.c: Update tree_pass descriptors.
19120 * lower-subreg.c: Update tree_pass descriptors.
19121 * bt-load.c: Update tree_pass descriptors.
19122 * tree-dfa.c: Update tree_pass descriptors.
19123 * except.c: Update tree_pass descriptors.
19124 * emit-rtl.c: Update tree_pass descriptors.
19125 * cfgexpand.c: Update tree_pass descriptors.
19126 * tree-cfgcleanup.c: Update tree_pass descriptors.
19127 * cfgcleanup.c: Update tree_pass descriptors.
19128 * tree-ssa-pre.c: Update tree_pass descriptors.
19129 * tree-sra.c: Update tree_pass descriptors.
19130 * tree-mudflap.c: Update tree_pass descriptors.
19131 * tree-ssa-copy.c: Update tree_pass descriptors.
19132 * cfglayout.c: Update tree_pass descriptors.
19133 * tree-ssa-forwprop.c: Update tree_pass descriptors.
19134 * tree-ssa-dce.c: Update tree_pass descriptors.
19135 * tree-ssa.c: Update tree_pass descriptors.
19136 * regclass.c: Update tree_pass descriptors.
19137 * integrate.c: Update tree_pass descriptors.
19138 * tree-optimize.c: Update tree_pass descriptors.
19139 * tree-ssa-phiprop.c: Update tree_pass descriptors.
19140 * tree-object-size.c: Update tree_pass descriptors.
19141 * combine.c: Update tree_pass descriptors.
19142 * tree-outof-ssa.c: Update tree_pass descriptors.
19143 * bb-reorder.c: Update tree_pass descriptors.
19144 * stack-ptr-mod.c: Update tree_pass descriptors.
19145 * var-tracking.c: Update tree_pass descriptors.
19146 * tree-profile.c: Update tree_pass descriptors.
19147 * tree-vect-generic.c: Update tree_pass descriptors.
19148 * reg-stack.c: Update tree_pass descriptors.
19149 * sched-rgn.c: Update tree_pass descriptors.
19150 * tree-ssa-structalias.c: Update tree_pass descriptors.
19151 * tree-cfg.c: Update tree_pass descriptors.
19152 * passes.c (current_pass): Update declaration.
19153 (finish_optimization_passes): Update.
19154 (all_passes, all_ipa_passes, all_lowering_passes): Update declaration.
19155 (register_one_dump_file, register_dump_files_1, next_pass_1):
19157 (init_optimization_passes): Update handling of new types.
19158 (execute_one_pass, execute_pass_list, execute_ipa_pass_list): Update.
19159 * ipa-struct-reorg.c: Update tree_pass descriptors.
19160 * tree-ssa-reassoc.c: Update tree_pass descriptors.
19161 * combine-stack-adj.c: Update tree_pass descriptors.
19162 * cfgrtl.c: Update tree_pass descriptors.
19163 * dce.c: Update tree_pass descriptors.
19164 * tree-ssanames.c: Update tree_pass descriptors.
19166 2008-03-19 Richard Guenther <rguenther@suse.de>
19168 PR middle-end/35609
19169 * tree-ssa.c (walk_data): New structure.
19170 (warn_uninitialized_var): If not always_executed warn with "maybe"
19172 (execute_early_warn_uninitialized): Compute post-dominators.
19173 Initialize always_executed before processing each basic block.
19175 2008-03-18 Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
19178 * config/i386/i386.c (x86_this_parameter): Calculate correct location
19179 of "this" pointer when "regparm = N" or "fastcall" is in effect.
19181 2008-03-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
19183 * doc/include/texinfo.tex: Update to version 2008-03-17.10.
19185 2008-03-18 Paolo Bonzini <bonzini@gnu.org>
19187 * expr.c (store_expr): Assume lang_hooks.reduce_bit_field_operations
19189 (expand_expr_real_1) <REDUCE_BIT_FIELD>: Don't look at ignore.
19190 (expand_expr_real_1): Assume lang_hooks.reduce_bit_field_operations
19191 is true. Add "&& !ignore" condition to reduce_bit_field. Modify
19192 target after ignore has been set, and move there also the commputation
19193 of subtarget and original_target.
19194 * langhooks-def.h (LANG_HOOKS_REDUCE_BIT_FIELD_OPERATIONS): Delete.
19195 (LANG_HOOKS_INITIALIZER): Remove it.
19196 * langhooks.h (struct lang_hooks): Remove reduce_bit_field_operations.
19198 2008-03-18 Richard Guenther <rguenther@suse.de>
19200 * tree-ssa-sccvn.c (visit_reference_op_load): If the lookup
19201 found an expression with constants, note that in the VN for the lhs.
19202 * tree-ssa-pre.c (eliminate): Visit COND_EXPR statements and
19203 fold them to constants if possible. Run cleanup_cfg if done so.
19204 (execute_pre): Return todo.
19205 (do_pre): Likewise.
19206 (execute_fre): Likewise.
19207 * tree-ssa-forwprop.c (can_propagate_from): Allow propagation
19209 (get_prop_source_stmt): Look through pointer conversions.
19211 2008-03-18 Jan Hubicka <jh@suse.cz>
19213 * tree-pretty-print.c: Include predict.h.
19214 (dump_generic_node): Dump predictor.
19215 * tree.h (PREDICT_EXPR_OUTCOME, PREDICT_EXPR_PREDICTION): Update.
19216 * tree-gimple.c (is_gimple_stmt): Add PREDICT_EXPR.
19217 * gimple-low.c (lower_stmt): Likewise.
19218 * expr.c (expand_expr_real): Likewise.
19219 * predict.c (tree_bb_level_predictions): Use PREDICT_EXPRs and remove
19221 (build_predict_expr, build_predict_expr): New.
19222 * predict.h (predictor_name, build_predict_expr): Update.
19223 * c-typeck.c (c_finish_bc_stmt): Add prediction.
19224 * gimplify.c (gimplify_expr): Add PREDICT_EXPR.
19225 * predict.def (PRED_CONTINUE): Update hitrate.
19226 * tree.def (PREDICT_EXPR): Define.
19227 * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Mark PREDICT_EXPR;
19228 do not handle BIND_EXPR.
19229 * tree-inline.c (estimate_num_insns_1): PREDICT_EXPR is free.
19230 * tree-cfg.c (verify_gimple_stmt): PREDICT_EXPR is valid.
19231 * tree-ssa-operands.c (get_expr_operands): PREDICT_EXPR takes no
19234 2008-03-18 Michael Matz <matz@suse.de>
19236 * gcov-io.h (__gcov_merge_ior, __gcov_fork): Mark hidden.
19238 2008-03-18 Richard Guenther <rguenther@suse.de>
19240 * tree-gimple.h (is_gimple_invariant_address): Declare.
19241 (is_gimple_constant): Likewise.
19242 * tree-gimple.c (is_gimple_constant): New function.
19243 (is_gimple_invariant_address): Likewise.
19244 (is_gimple_min_invariant): Implement in terms of is_gimple_constant
19245 and is_gimple_invariant_address.
19246 * tree-ssa-loop-niter.c (expand_simple_operations): Revert
19248 * tree-data-ref.c (get_references_in_stmt): A SSA_NAME is not
19249 an addressable base.
19251 2008-03-18 Jakub Jelinek <jakub@redhat.com>
19253 PR middle-end/35611
19254 * gimplify.c (gimplify_expr): Gimplify second operand of
19257 2008-03-17 Richard Guenther <rguenther@suse.de>
19259 PR tree-optimization/19637
19260 * fold-const.c (fold_unary): Remove restrictions of removing
19261 intermediate pointer-conversions (P2)(P1)P0.
19262 * tree-ssa-ccp.c (maybe_fold_stmt_addition): Recover from
19263 conversion to void pointer.
19264 (get_maxval_strlen): Handle addresses of the form &(*p)[0].
19266 2008-03-16 James E. Wilson <wilson@tuliptree.org>
19269 * dbxout.c (dbxout_expand_expr, case VAR_DECL): Return NULL for
19270 emulated thread local variables.
19272 2008-03-16 Richard Guenther <rguenther@suse.de>
19274 PR middle-end/35607
19275 * tree-ssa-loop-niter.c (expand_simple_operations): Do not
19276 expand TREE_INVARIANT operations that are not gimple invariant.
19278 2008-03-16 Hans-Peter Nilsson <hp@axis.com>
19280 * doc/extend.texi (Alignment): Say that the ABI controls
19281 the __alignof__ for non-strict-alignment targets rather
19282 than being a recommendation.
19284 2008-03-15 Paul Brook <paul@codesourcery.com>
19286 * config/arm/arm.c (arm_unwind_emit): Suppress unused unwinding
19288 (arm_output_fn_unwind): Mark functions that can not be unwound.
19290 2008-03-15 Paul Brook <paul@codesourcery.com>
19292 * config/arm/arm.c (arm_rtx_costs_1): Add costs for ARMv6 value
19293 extension instructions.
19295 2008-03-15 Richard Guenther <rguenther@suse.de>
19297 * tree-ssa-ccp.c (ccp_fold): Also read from constant values
19298 and fold constant aggregate refs.
19299 (fold_const_aggregate_ref): Handle string constants
19300 and constructors in ARRAY_REFs. Handle INDIRECT_REF.
19301 (evaluate_stmt): Simplify now that ccp_fold folds constant
19304 2008-03-15 Paul Brook <paul@codesourcery.com>
19306 * config/arm/arm.md (insv): Use gen_insv_t2 and gen_insv_zero.
19307 (extzv): Use gen_extzv_t2.
19308 (insv_t2, insv_zero, extv, extzv_t2): New patterns.
19310 2008-03-15 Richard Guenther <rguenther@suse.de>
19312 * tree-ssa-ccp.c (get_symbol_constant_value): Export.
19313 (fold_const_aggregate_ref): Likewise.
19314 (get_value): Return NULL if we don't have any values.
19315 (ccp_finalize): Set const_val to NULL after freeing it.
19316 * tree-flow.h (get_symbol_constant_value): Declare.
19317 (fold_const_aggregate_ref): Likewise.
19318 * tree-ssa-sccvn.c (try_to_simplify): Use them.
19320 2008-03-15 Richard Guenther <rguenther@suse.de>
19322 PR middle-end/35593
19323 * tree-ssa-ccp.c (maybe_fold_offset_to_array_ref): Make sure
19324 to not produce negative array indices if not allowed. Add
19325 parameter to indicate that.
19326 (maybe_fold_offset_to_component_ref): Allow negative array
19327 indices only for the first member of a structure.
19328 (maybe_fold_offset_to_reference): Allow negative array indices.
19329 (maybe_fold_stmt_addition): Likewise.
19331 2008-03-15 Bjoern Haase <bjoern.m.haase@web.de>
19332 Anatoly Sokolov <aesok@post.ru>
19334 * config/avr/avr.c (avr_arch_types): Add avr6 entry.
19335 (avr_arch): Add ARCH_AVR6.
19336 (avr_mcu_types): Add 'atmega2560' and 'atmega2561' entry.
19337 (initial_elimination_offset): Initialize and use 'avr_pc_size'
19338 instead of fixed value 2.
19339 (print_operand_address): Use gs() asm specifier instead of pm().
19340 (avr_assemble_integer): (Ditto.).
19341 (avr_output_addr_vec_elt): (Ditto.).
19342 (print_operand): Handle "!" code.
19343 * config/avr/avr.h (TARGET_CPU_CPP_BUILTINS): Add
19344 __AVR_3_BYTE_PC__, __AVR_2_BYTE_PC__ and __AVR_HAVE_JMP_CALL__.
19345 (AVR_HAVE_EIJMP_EICALL): Define.
19346 (AVR_3_BYTE_PC): Redefine.
19347 (AVR_2_BYTE_PC): (Ditto.).
19348 (PRINT_OPERAND_PUNCT_VALID_P): Add '!' code.
19349 (LINK_SPEC): Add atmega2560 and atmega2561.
19350 (CRT_BINUTILS_SPEC): Add atmega2560 (crtm2560.o) and atmega2561
19352 * config/avr/avr.md (call_insn): Use eicall instead of icall
19353 for 3 byte PC devices.
19354 (call_value_insn): (Ditto.).
19355 (*tablejump_enh): Use eijmp instead of ijmp for 3 byte PC devices.
19356 (indirect_jump): Use only for for 2 byte PC devices.
19357 (*tablejump): (Ditto.).
19358 (*indirect_jump_avr6): Add insn.
19359 (*tablejump_rjmp): Don't use for 3 byte PC devices.
19360 * config/avr/libgcc.S (__prologue_saves__): Use eijmp
19361 instead of ijmp for 3 byte PC devices.
19362 (__tablejump2__): (Ditto.).
19363 * config/avr/t-avr (MULITLIB_OPTIONS): Add avr6 architecture.
19364 (MULITLIB_DIRNAMES): (Ditto.).
19365 (MULTILIB_MATCHES): Add atmega2560 and atmega2561 to list.
19367 2008-03-15 Uros Bizjak <ubizjak@gmail.com>
19369 * config/i386/mmx.md ("sse2_umulv1siv2di3"): Rename from
19370 "sse2_umulsidi3". Use V1DI mode for operand 0.
19371 ("mmx_psadbw"): Use V1DI mode for operand 0.
19372 * config/i386/i386-modes.def (V1SI): New vector mode.
19373 * config/i386/i386.c (struct builtin_description)
19374 [IX86_BUILTIN_PMULUDQ]: Use CODE_FOR_sse2_umulv1siv1di3.
19375 (v1di_ftype_v8qi_v8qi): Rename from di_ftype_v8qi_v8qi.
19376 (v1di_ftype_v2si_v2si): Rename from di_ftype_v2si_v2si.
19377 (ix86_init_mmx_sse_builtins) [__builtin_ia32_psadbw]: Use
19378 v1di_ftype_v8qi_v8qi type.
19379 [__builtin_ia32_pmuludq]: Use v1di_ftype_v2si_v2si type.
19381 * doc/extend.texi (X86 Built-in Functions) [__builtin_ia32_psadbw,
19382 __builtin_ia32_pmuludq]: Fix the mode of return value.
19384 2008-03-15 Richard Guenther <rguenther@suse.de>
19386 PR middle-end/35595
19387 * tree-ssa-pre.c (bitmap_find_leader): Handle expression
19390 2008-03-14 Bob Wilson <bob.wilson@acm.org>
19392 * doc/invoke.texi (Option Summary, Xtensa Options): Document
19393 -mserialize-volatile and -mno-serialize-volatile Xtensa options.
19394 * config/xtensa/xtensa.c (print_operand): Do not emit MEMW instructions
19395 unless TARGET_SERIALIZE_VOLATILE is enabled.
19396 * config/xtensa/xtensa.md (*lsiu, *ssiu): Likewise.
19397 * config/xtensa/xtensa.h (TARGET_DEFAULT): Add MASK_SERIALIZE_VOLATILE.
19398 * config/xtensa/xtensa.opt (mserialize_volatile): New option.
19400 2008-03-14 Richard Guenther <rguenther@suse.de>
19402 PR tree-optimization/34172
19403 * tree-flow.h (refs_may_alias_p): Declare.
19404 (get_single_def_stmt): Likewise.
19405 (get_single_def_stmt_from_phi): Likewise.
19406 (get_single_def_stmt_with_phi): Likewise.
19407 * tree-dfa.c (refs_may_alias_p): New function.
19408 (get_single_def_stmt): Likewise.
19409 (get_single_def_stmt_from_phi): Likewise.
19410 (get_single_def_stmt_with_phi): Likewise.
19411 * tree-ssa-sccvn.c (get_def_ref_stmt_vuses): New function.
19412 (vn_reference_lookup_1): New helper function.
19413 (vn_reference_lookup): Walk the virtual use-def chain to
19414 continue searching for a match if the def does not alias the
19415 reference we are looking for.
19417 2008-03-14 David Edelsohn <edelsohn@gnu.org>
19419 * doc/install.texi (Binaries): Remove UCLA archive. Add HVCC
19420 archive and Perzl. Update The Written Word listing.
19422 2008-03-14 Richard Guenther <rguenther@suse.de>
19424 PR tree-optimization/34043
19425 PR tree-optimization/33989
19426 * tree-ssa-pre.c (execute_pre): Allow SCCVN to do insertion
19428 (bitmap_find_leader): Use extra argument to verify dominance
19429 relationship inside a basic-block.
19430 (can_PRE_operation): Add VIEW_CONVERT_EXPR.
19431 (find_leader_in_sets): Adjust.
19432 (create_component_ref_by_pieces): Take extra argument for
19433 dominance check, handle lookup failures.
19434 (find_or_generate_expression): Likewise.
19435 (create_expression_by_pieces): Likewise.
19436 (insert_into_preds_of_block): Adjust.
19437 (create_value_expr_from): If asked for, verify all operands
19438 are in the blocks AVAIL_OUT set.
19439 (make_values_for_stmt): Check for SSA_NAMEs that are life
19440 over an abnormal edge.
19441 (compute_avail): Remove such check.
19442 (do_SCCVN_insertion): New function.
19443 (eliminate): If we do not find a leader suitable for replacement
19444 insert a replacement expression from SCCVN if available.
19445 * tree-ssa-sccvn.h (run_scc_vn): Update prototype.
19446 (struct vn_ssa_aux): Add needs_insertion flag.
19447 * tree-ssa-sccvn.c (may_insert): New global flag.
19448 (copy_reference_ops_from_ref): Value-number union member access
19449 based on its size, not type and member if insertion is allowed.
19450 (visit_reference_op_load): For a weak match from union type
19451 punning lookup a view-converted value and insert a SSA_NAME
19452 for that value if that is not found.
19453 (visit_use): Make dumps shorter. Do not disallow value numbering
19454 SSA_NAMEs that are life over an abnormal edge to constants.
19455 (free_scc_vn): Release inserted SSA_NAMEs.
19456 (run_scc_vn): New flag to specify whether insertion is allowed.
19457 Process SSA_NAMEs in forward order.
19458 * tree-ssa-loop-im.c (for_each_index): Handle invariant
19459 ADDR_EXPRs inside VIEW_CONVERT_EXPR.
19460 * fold-const.c (fold_unary): Fold VIEW_CONVERT_EXPRs from/to
19461 pointer type to/from integral types that do not change the
19462 precision to regular conversions.
19464 2008-03-13 Uros Bizjak <ubizjak@gmail.com>
19466 * doc/extend.texi (X86 Built-in Functions) [__builtin_ia32_psll?,
19467 __builtin_ia32_psrl?, __builtin_ia32_psra?, __builtin_ia32_psll?i,
19468 __builtin_ia32_psrl?i, __builtin_ia32_psra?i, __builtin_ia32_psll?128,
19469 __builtin_ia32_psrl?128, __builtin_ia32_psra?128]: Fix the mode of
19470 input arguments and the mode of return value. Built-in functions
19471 that operate on whole 64-bit MMX register now use V1DI mode.
19473 2008-03-13 Alon Dayan <alond@il.ibm.com>
19474 Olga Golovanevsky <olga@il.ibm.com>
19476 PR tree-optimization/35041
19477 * ipa-struct-reorg.c (find_pos_in_stmt_1): Add another option
19478 to locate the right position in a statement.
19480 2008-03-13 Uros Bizjak <ubizjak@gmail.com>
19484 * config/i386/xmmintrin.h: Change all static inline functions to
19485 extern inline and add __gnu_inline__ attribute.
19486 * config/i386/bmintrin.h: Ditto.
19487 * config/i386/smmintrin.h: Ditto.
19488 * config/i386/tmmintrin.h: Ditto.
19489 * config/i386/mmintrin-common.h: Ditto.
19490 * config/i386/ammintrin.h: Ditto.
19491 * config/i386/emmintrin.h: Ditto.
19492 * config/i386/pmmintrin.h: Ditto.
19493 * config/i386/mmintrin.h: Ditto.
19494 * config/i386/mm3dnow.h: Ditto.
19496 2008-03-13 Jakub Jelinek <jakub@redhat.com>
19498 PR middle-end/35185
19499 * omp-low.c (lower_regimplify, init_tmp_var, save_tmp_var): Removed.
19500 (lower_omp_2): New function.
19501 (lower_omp_1, lower_omp): Rewritten.
19503 2008-03-13 Danny Smith <dannysmith@users.sourceforge.net>
19506 * doc/extend.texi (Structure-Packing Pragmas): Replace "Win32"
19507 with the phrase "Microsoft Windows compilers".
19508 (Push/Pop Macro Pragmas): New subsection. Document
19509 #pragma push_macro and pragma pop_macro.
19511 2008-03-12 Paul Brook <paul@codesourcery.com>
19513 * config/arm/arm.c (output_move_double): Prefer LDRD to LDM.
19515 2008-03-12 Paul Brook <paul@codesourcery.com>
19517 * config/arm/thumb2.md: Extend peephole to cover 3-arg subs.
19518 (thumb2_alusi3_short): Exclude PLUS and MINUS.
19519 (thumb2_addsi_shortim): Rename ...
19520 (thumb2_addsi_short): ... to this. Allow register operands.
19521 (thumb2_subsi_short): New pattern.
19522 (thumb2_one_cmplsi2_short,
19523 thumb2_negsi2_short): New patterns and peepholes.
19525 2008-03-12 Paul Brook <paul@codesourcery.com>
19527 * config/arm/arm.c (arm_size_rtx_costs): Use ARM costs for Thumb-2.
19529 2008-03-12 Uros Bizjak <ubizjak@gmail.com>
19531 * config/i386/i386.md (int_cond): New code iterator.
19533 ("s<code>"): Macroize expander from seq, sne, sgt, sgtu, slt, sltu,
19534 sge, sgeu, sle and sleu expanders usign int_cond code iterator.
19535 ("s<code>"): Macroize expander from sunordered, sordered, suneq, sunge,
19536 sungt, sunle, sunlt and sltgt expanders usign fp_cond code iterator.
19537 ("b<code>"): Macroize expander from beq, bne, bgt, bgtu, blt, bltu,
19538 bge, bgeu, ble and bleu expanders usign int_cond code iterator.
19539 ("b<code>"): Macroize expander from bunordered, bordered, buneq, bunge,
19540 bungt, bunle, bunlt and bltgt expanders usign fp_cond code iterator.
19542 2008-03-12 Paul Brook <paul@codesourcery.com>
19544 * config/arm/arm.c (use_return_insn): Use offsets->saved_regs_mask
19545 instead of {arm,thumb}_compute_save_reg_mask.
19546 (output_return_instruction): Ditto.
19547 (thumb_unexpanded_epilogue): Ditto.
19548 (thumb1_expand_prologue): Ditto.
19549 (thumb1_output_function_prologue): Ditto.
19550 (arm_set_return_address): Ditto.
19551 (thumb_set_return_address): Ditto.
19552 (arm_get_frame_offsets): Set offsets->saved_regs_mask. Push extra
19553 regs to achieve stack alignment.
19554 (thumb1_compute_save_reg_mask): Fix compiler warning.
19555 (arm_output_epilogue): Use offsets->saved_regs_mask.
19556 Adjust stack pointer by poping call clobered registers.
19557 (arm_expand_prologue): Use offsets->saved_regs_mask.
19558 Adjust stack pointer by pushing extra registers.
19559 * config/arm.h (arm_stack_offsets): Add saved_regs_mask.
19561 2008-03-12 Paolo Bonzini <bonzini@gnu.org>
19564 * fold-const.c (fold_unary) <NOP_EXPR>: Distribute a narrowing
19565 conversion to the operands of a multiplication.
19567 2008-03-12 Richard Guenther <rguenther@suse.de>
19569 * Makefile.in (OBJS-common): Add tree-ssa-phiprop.o
19570 (tree-ssa-phiprop.o): Copy dependencies from tree-ssa-forwprop.o.
19571 * timevar.def (TV_TREE_PHIPROP): Add.
19572 * tree-ssa-phiprop.c: Split from tree-ssa-forwprop.c, added
19573 pass description. Use TV_TREE_PHIPROP.
19574 * tree-ssa-forwprop.c: Remove phiprop code.
19576 2008-03-12 Jakub Jelinek <jakub@redhat.com>
19578 PR middle-end/35549
19579 * omp-low.c (maybe_lookup_decl): Constify first argument.
19580 (use_pointer_for_field): Change last argument from bool to
19581 omp_context *. Disallow shared copy-in/out in nested
19582 parallel if decl is shared in outer parallel too.
19583 (build_outer_var_ref, scan_sharing_clauses,
19584 lower_rec_input_clauses, lower_copyprivate_clauses,
19585 lower_send_clauses, lower_send_shared_vars): Adjust callers.
19587 2008-03-12 Victor Kaplansky <victork@il.ibm.com>
19588 Ira Rosen <irar@il.ibm.com>
19590 * tree-vectorizer.c (free_stmt_vec_info): New function.
19591 (destroy_loop_vec_info): Move code to free_stmt_vec_info().
19592 Call free_stmt_vec_info(). Free LOOP_VINFO_STRIDED_STORES..
19593 * tree-vectorizer.h (free_stmt_vec_info): Declare.
19594 * tree-vect-transform.c (vectorizable_conversion): Free
19595 vec_oprnds0 if it was allocated.
19596 (vect_permute_store_chain): Remove unused VECs.
19597 (vectorizable_store): Free VECs that are allocated in the..
19599 (vect_transform_strided_load, vectorizable_load): Likewise.
19600 (vect_remove_stores): Simplify the code.
19601 (vect_transform_loop): Move code to vect_remove_stores().
19602 Call vect_remove_stores() and free_stmt_vec_info().
19604 2008-03-11 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
19606 * pa.h (TARGET_LONG_PIC_SDIFF_CALL): Conditionalize define on
19607 TARGET_HPUX. Revise comment.
19608 (TARGET_LONG_PIC_PCREL_CALL): Revise comment.
19609 * pa.c (output_call): Update for revised TARGET_LONG_PIC_SDIFF_CALL.
19610 Use sr4 variant of `be' instruction when not generating PIC code.
19611 (attr_length_call): Adjust for above change.
19613 2008-03-11 Andrew Pinski <andrew_pinski@playstation.sony.com>
19615 * ipa-reference.c (static_execute): Remove module_statics_const and
19616 associated setting code.
19618 2008-03-11 Uros Bizjak <ubizjak@gmail.com>
19621 * config/i386/i386.md (paritysi2, paritydi2): Use register_operand
19622 predicate for operand 1.
19623 (paritysi2_cmp): Use register_operand predicate for operand 2.
19624 Use earlyclobber modifier for operand 1. Remove support for
19626 (paritydi2_cmp): Use register_operand predicate for operand 3.
19627 Use earlyclobber modifier for operand 1. Remove support for
19630 2008-03-11 Paul Brook <paul@codesourcery.com>
19631 Vladimir Prus <vladimir@codesourcery.com>
19633 * config/arm/arm.c (use_return_insn): Check TARGET_APCS_FRAME.
19634 (arm_compute_save_reg0_reg12_mask): Always
19635 check if register 11 must be saved. Always safe hard frame pointer
19636 when frame_pointer_needeed.
19637 (arm_compute_save_reg_mask): Save IP and PC
19638 only with apcs frames.
19639 (arm_output_epilogue): Adjust Thumb2 codepath to
19640 be also invoked and work for ARM non-apcs frames.
19641 (arm_expand_prologue): Don't bother saving IP
19642 for non-apcs frame, since it's not clobbered by
19643 prologue code. Implement non-apcs frame
19646 2008-03-11 Paolo Bonzini <bonzini@gnu.org>
19648 PR rtl-optimization/35281
19649 * expr.c (convert_move): Use a new pseudo for the intermediate
19650 from_mode->word_mode result.
19652 2008-03-11 Paolo Bonzini <bonzini@gnu.org>
19654 * langhooks-def.h (LANG_HOOKS_CLEAR_BINDING_STACK): Delete.
19655 * langhooks.h (struct lang_hooks): Delete clear_binding_stack member.
19656 * toplev.c (compile_file): Don't call it.
19658 2008-03-11 Uros Bizjak <ubizjak@gmail.com>
19660 PR middle-end/35526
19661 * expr.c (store_expr): Call emit_block_move if the mode
19662 of "temp" RTX is BLKmode.
19664 2008-03-11 Andrew Pinski <andrew_pinski@playstation.sony.com>
19665 Richard Guenther <rguenther@suse.de>
19667 PR tree-optimization/31358
19668 * tree-ssa-loop-manip.c (create_iv): Call force_gimple_operand for
19669 the step with a NULL_TREE.
19670 * tree-ssa-loop-ivopts.c (find_bivs): Convert the step
19671 to sizetype if type is a pointer type.
19672 (add_candidate_1): Don't convert the base and step to
19673 the generic type if the orginal type is a pointer type.
19674 (add_iv_value_candidates): Use sizetype for the step
19675 if type is a pointer type.
19676 (cand_value_at): Likewise.
19677 * tree-ssa-address.c (add_to_parts): Use POINTER_PLUS_EXPR
19679 * tree-affine.c (tree_to_aff_combination <POINTER_PLUS_EXPR>):
19680 Don't convert the tem affine to the type.
19681 (add_elt_to_tree): Use sizetype for the step if a pointer.
19682 Use POINTER_PLUS_EXPR for pointers.
19683 (aff_combination_to_tree): Use sizetype for the step if a
19686 2008-03-10 Vladimir Makarov <vmakarov@redhat.com>
19688 * config/i386/sse.md (ssse3_pmaddubswv8hi3, ssse3_pmaddubswv4hi3):
19689 Remove commutativity hint.
19691 2008-03-10 Jakub Jelinek <jakub@redhat.com>
19695 * c-parser.c (c_parser_omp_threadprivate): Don't add vars with
19696 errorneous type. Check that v is a VAR_DECL.
19698 PR middle-end/35099
19699 * tree-cfg.c (new_label_mapper): Update cfun->last_label_uid.
19701 2008-03-10 H.J. Lu <hongjiu.lu@intel.com>
19703 PR tree-optimization/35494
19704 * tree-ssa-ccp.c (get_symbol_constant_value): Check if value
19705 may be overriden at link and run time.
19707 2008-03-10 Richard Guenther <rguenther@suse.de>
19709 PR tree-optimization/34677
19710 * tree-ssa-pre.c (modify_expr_node_pool): Remove.
19711 (poolify_tree): Likewise.
19712 (modify_expr_template): Likewise.
19713 (poolify_modify_stmt): Likewise.
19714 (insert_fake_stores): Handle all component-ref style stores
19715 in addition to INDIRECT_REF. Also handle complex types.
19716 Do not poolify the inserted load.
19717 (realify_fake_stores): Do not rebuild the tree but only
19718 make it a SSA_NAME copy.
19719 (init_pre): Remove initialzation of modify_expr_template.
19720 Do not allocate modify_expr_node_pool.
19721 (fini_pre): Do not free modify_expr_node_pool.
19723 2008-03-10 Paul Brook <paul@codesourcery.com>
19725 * config/arm/arm.md (UNSPEC_STACK_ALIGN, UNSPEC_PIC_OFFSET): Renumber
19726 to avoid conflicts.
19728 2008-03-10 Paul Brook <paul@codesourcery.com>
19729 Mark Shinwell <shinwell@codesourcery.com>
19731 * config/arm/cortex-r4.md: New.
19732 * config/arm/thumb2.md (divsi3, udivsi3): Annotate with
19734 * config/arm/arm.md: Include cortex-r4.md.
19735 (insn): Add smmls, sdiv and udiv values.
19736 (generic_sched): Don't use generic scheduling for Cortex-R4.
19737 (arm_issue_rate): New function.
19738 (TARGET_SCHED_ISSUE_RATE): Define.
19740 2008-03-10 Sebastian Pop <sebastian.pop@amd.com>
19742 * doc/invoke.texi (-ftree-loop-distribution): Add an example.
19744 2008-03-10 Richard Guenther <rguenther@suse.de>
19746 * tree-ssa-pre.c (get_sccvn_value): Simplify.
19747 (compute_avail): Do not add stmt uses to AVAIL_OUT.
19749 2008-03-10 Paolo Bonzini <bonzini@gnu.org>
19751 * langhooks-def.h (LANG_HOOKS_REDUCE_BIT_FIELD_OPERATIONS):
19752 Set default to true.
19754 2008-03-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
19756 * c.opt (Wsynth): Deprecate.
19757 * doc/invoke.texi (Option Summary, Warning Options): Document
19758 -Wno-format-contains-nul.
19760 2008-03-09 Uros Bizjak <ubizjak@gmail.com>
19763 * config/i386/i386.c (ix86_constant_alignment): Compute alignment using
19764 ALIGN_MODE_128 for VECTOR_CST and INTEGER_CST in addition to REAL_CST.
19766 2008-03-09 Ira Rosen <irar@il.ibm.com>
19768 * config/rs6000/rs6000.c (builtin_description): Rename vector
19769 left shift operations.
19770 * config/rs6000/altivec.md (UNSPEC_VSL): Remove.
19771 (altivec_vsl<VI_char>): Rename to ...
19772 (ashl<mode>3): ... new name.
19773 (mulv4sf3, mulv4si3, negv4sf2): Replace gen_altivec_vslw with
19775 (absv4sf2): Convert to use ashift:V4SI instead of UNSPEC_VSL.
19777 2008-03-08 Richard Guenther <rguenther@suse.de>
19779 * coverage.h (tree_coverage_counter_addr): Declare.
19780 * coverage.c (tree_coverage_counter_addr): New function.
19781 * tree-profile.c (tree_gen_edge_profiler): Unshare counter
19782 before using again.
19783 (tree_gen_pow2_profiler): Use tree_coverage_counter_addr.
19784 (tree_gen_one_value_profiler): Likewise.
19785 (tree_gen_ic_profiler): Likewise.
19786 (tree_gen_average_profiler): Likewise.
19787 (tree_gen_ior_profiler): Likewise.
19789 2008-03-08 Richard Guenther <rguenther@suse.de>
19791 * tree-ssa-sccvn.h (vn_binary_op_lookup): Remove.
19792 (vn_binary_op_insert): Likewise.
19793 (vn_unary_op_lookup): Likewise.
19794 (vn_unary_op_insert): Likewise.
19795 (vn_nary_op_lookup): Declare.
19796 (vn_nary_op_insert): Likewise.
19797 * tree-ssa-sccvn.c (struct vn_tables_s): Merge unary
19798 and binary hashes, use a single obstack for unary_op_pool
19799 and binary_op_pool.
19800 (struct vn_binary_op_s, struct vn_unary_op_s): Replace with
19801 a single struct vn_nary_op_s. Store tree code length and
19802 a variable number of operands.
19803 (struct vn_reference_op_struct): Remove unused op2.
19804 (vn_reference_op_eq): Do not compare op2.
19805 (vn_reference_op_compute_hash): Do not compute hash of op2.
19806 (vn_unary_op_hash, vn_binary_op_hash): Replace with vn_nary_op_hash.
19807 (vn_unary_op_compute_hash, vn_binary_op_compute_hash): Replace
19808 with vn_nary_op_compute_hash.
19809 (vn_unary_op_eq, vn_binary_op_eq): Replace with vn_nary_op_eq.
19810 (vn_unary_op_lookup, vn_binary_op_lookup): Replace with
19812 (vn_unary_op_insert, vn_binary_op_insert): Replace with
19814 (visit_unary_op): Call nary functions.
19815 (visit_binary_op): Likewise.
19816 (process_scc): Adjust for struct vn_tables_s changes.
19817 (allocate_vn_table): Likewise.
19818 (free_vn_table): Likewise.
19819 * tree-vn.c (vn_add): Call nary functions.
19820 (vn_lookup): Likewise.
19822 2008-03-08 Jakub Jelinek <jakub@redhat.com>
19825 * config/rs6000/rs6000.c (rs6000_expand_compare_and_swapqhi): Shift
19826 wdst back after sync_compare_and_swapqhi_internal.
19828 2008-03-08 Uros Bizjak <ubizjak@gmail.com>
19831 * config/i386/i386-modes.def (V1DI): New vector mode.
19832 * config/i386/i386.h (VALID_MMX_REG_MODE): Add V1DImode.
19833 * config/i386/mmx.md (MMXMODEI8): New mode iterator.
19834 (MMXMODE248): Ditto.
19835 (MMXMODE): Add V1DI mode.
19836 (mmxvecsize): Change DI mode to V1DI mode.
19837 ("mov<mode>): Use MMXMODEI8 mode iterator.
19838 ("*mov<mode>_internal_rex64"): Ditto.
19839 ("*mov<mode>_internal"): Ditto.
19840 ("mmx_add<mode>3"): Ditto. Handle V1DImode for TARGET_SSE2.
19841 ("mmx_sub<mode>3"): Ditto.
19842 ("mmx_adddi3"): Remove insn pattern.
19843 ("mmx_subdi3"): Ditto.
19844 ("mmx_ashr<mode>3"): Use SImode and "yN" constraint for operand 2.
19845 ("mmx_lshr<mode>3"): Ditto. Use MMXMODE248 mode iterator.
19846 ("mmx_ashl<mode>3"): Ditto.
19847 ("mmx_lshrdi3"): Remove insn pattern.
19848 ("mmx_ashldi3"): Ditto.
19849 * config/i386/i386.c (classify_argument): Handle V1DImode.
19850 (function_arg_advance_32): Ditto.
19851 (function_arg_32): Ditto.
19852 (struct builtin_description) [IX86_BUILTIN_PADDQ]: Use
19853 mmx_addv1di3 insn pattern.
19854 [IX86_BUILTIN_PSUBQ]: Use mmx_subv1di3 insn pattern.
19855 [IX86_BUILTIN_PSLL?, IX86_BUILTIN_PSRL?, IX86_BUILTIN_PSRA?,
19856 IX86_BUILTIN_PSLL?I, IX86_BUILTIN_PSRL?I, IX86_BUILTIN_PSRA?I,
19857 IX86_BUILTIN_PSLL?I128, IX86_BUILTIN_PSRL?I128, IX86_BUILTIN_PSRA?I128]:
19858 Remove definitions of built-in functions.
19859 (V1DI_type_node): New node.
19860 (v1di_ftype_v1di_int): Ditto.
19861 (v1di_ftype_v1di_v1di): Ditto.
19862 (v2si_ftype_v2si_si): Ditto.
19863 (v4hi_ftype_v4hi_di): Remove node.
19864 (v2si_ftype_v2si_di): Ditto.
19865 (ix86_init_mmx_sse_builtins): Handle V1DImode.
19866 (__builtin_ia32_psll?, __builtin_ia32_psrl?, __builtin_ia32_psra?):
19867 Redefine builtins using def_builtin_const with *_ftype_*_int node.
19868 (__builtin_ia32_psll?i, __builtin_ia32_psrl?i, __builtin_ia32_psra?i):
19869 Add new builtins using def_builtin_const.
19870 (ix86_expand_builtin) [IX86_BUILTIN_PSLL?, IX86_BUILTIN_PSRL?,
19871 IX86_BUILTIN_PSRA?, IX86_BUILTIN_PSLL?I, IX86_BUILTIN_PSRL?I,
19872 IX86_BUILTIN_PSRA?I]: Handle builtin definitions.
19873 * config/i386/mmintrin.h (__v1di): New typedef.
19874 (_mm_add_si64): Cast arguments to __v1di type.
19875 (_mm_sub_si64): Ditto.
19876 (_mm_sll_pi16): Cast __count to __v4hi type.
19877 (_mm_sll_pi32): Cast __count to __v2si type.
19878 (_mm_sll_si64): Cast arguments to __v1di type.
19879 (_mm_srl_pi16): Cast __count to __v4hi type.
19880 (_mm_srl_pi32): Cast __count to __v2si type.
19881 (_mm_srl_si64): Cast arguments to __v1di type.
19882 (_mm_sra_pi16): Cast __count to __v4hi type.
19883 (_mm_sra_pi32): Cast __count to __v2si type.
19884 (_mm_slli_pi16): Use __builtin_ia32_psllwi.
19885 (_mm_slli_pi32): Use __builtin_ia32_pslldi.
19886 (_mm_slli_si64): Use __builtin_ia32_psllqi. Cast __m to __v1di type.
19887 (_mm_srli_pi16): Use __builtin_ia32_psrlwi.
19888 (_mm_srli_pi32): Use __builtin_ia32_psrldi.
19889 (_mm_srli_si64): Use __builtin_ia32_psrlqi. Cast __m to __v1di type.
19890 (_mm_srai_pi16): Use __builtin_ia32_psrawi.
19891 (_mm_srai_pi32): Use __builtin_ia32_psradi.
19892 * config/i386/i386.md (UNSPEC_NOP): Remove unspec definition.
19893 * doc/extend.texi (X86 Built-in Functions) [__builtin_ia32_psll?,
19894 __builtin_ia32_psrl?, __builtin_ia32_psra?, __builtin_ia32_psll?i,
19895 __builtin_ia32_psrl?i, __builtin_ia32_psra?i]: Add new builtins.
19897 2008-03-07 Joseph Myers <joseph@codesourcery.com>
19899 * doc/include/texinfo.tex: Update to version 2008-03-07.10.
19901 2008-03-07 Peter Bergner <bergner@vnet.ibm.com>
19904 * config/rs6000/rs6000.c (rs6000_legitimize_address): Don't generate
19905 reg+const addressing for Altivec modes. Don't generate reg+reg
19906 addressing for TFmode or TDmode quantities.
19908 2008-03-07 Paolo Bonzini <bonzini@gnu.org>
19910 * c-common.c (vector_types_convertible_p): Call langhook
19911 instead of comptypes.
19913 2008-03-06 Andrew Pinski <andrew_pinski@playstation.sony.com>
19916 * tree-ssa-ccp.c (get_symbol_constant_value): Handle
19917 integral and scalar float variables which have a
19920 2008-03-06 Nathan Froyd <froydnj@codesourcery.com>
19922 * dwarf2out.c (dwarf2out_frame_debug_expr): Consult the
19923 dwarf_register_span hook when emitting unwind information for
19924 register-to-memory saves.
19925 * config/rs6000/rs6000.c (spe_synthesize_frame): Delete.
19926 (rs6000_frame_related): Remove call to spe_synthesize_frame.
19928 2008-03-06 Jakub Jelinek <jakub@redhat.com>
19930 * gimplify.c (goa_lhs_expr_p): Allow different ADDR_EXPR nodes
19931 for the same VAR_DECL.
19933 2008-03-06 Tom Tromey <tromey@redhat.com>
19935 * treelang: Delete.
19936 * doc/standards.texi (Standards): Don't mention treelang.
19937 * doc/invoke.texi (Overall Options): Don't mention treelang.
19938 * doc/install.texi (Prerequisites): Don't mention bison or
19940 (Configuration): Don't mention treelang.
19941 (Building): Likewise.
19942 * doc/frontends.texi (G++ and GCC): Don't mention treelang.
19944 2008-03-06 Paolo Bonzini <bonzini@gnu.org>
19946 * simplify-rtx.c (simplify_subreg): Remove useless shifts from
19947 word-extractions out of a multi-word object.
19949 2008-03-06 Richard Guenther <rguenther@suse.de>
19951 * tree.def (BIT_FIELD_REF): Constrain result type and its precision.
19952 * tree-cfg.c (verify_expr): Verify BIT_FIELD_REF constraints on
19953 result type and precision.
19954 * expr.c (get_inner_reference): Set unsignedp based on the result
19955 type of BIT_FIELD_REF.
19956 * tree.h (BIT_FIELD_REF_UNSIGNED): Remove.
19957 * tree-sra.c (instantiate_element): Do not set BIT_FIELD_REF_UNSIGNED.
19958 (try_instantiate_multiple_fields): Likewise. Use the correct type
19960 (sra_build_assignment): Likewise.
19961 (sra_build_elt_assignment): Likewise.
19962 (sra_explode_bitfield_assignment): Likewise.
19963 * print-tree.c (print_node): Do not check BIT_FIELD_REF_UNSIGNED.
19964 * tree-vect-transform.c (vect_create_epilog_for_reduction): Do not
19965 set BIT_FIELD_REF_UNSIGNED.
19966 (vectorizable_load): Likewise.
19968 2008-03-06 Andreas Krebbel <krebbel1@de.ibm.com>
19970 * cse.c (cse_extended_basic_block): Invalidate artificial defs
19973 2008-03-06 Richard Guenther <rguenther@suse.de>
19975 * alias.c (struct alias_set_entry): Move has_zero_child field
19976 to pack with alias_set.
19978 2008-03-05 H.J. Lu <hongjiu.lu@intel.com>
19980 * config/i386/i386-modes.def: Use 4 byte alignment on DI for
19983 2008-03-05 Ian Lance Taylor <iant@google.com>
19985 * alias.h (alias_set_type): Change from HOST_WIDE_INT to int.
19987 2008-03-05 Kenneth Zadeck <zadeck@naturalbridge.com>
19989 * fwprop.c (update_df): Support width and offset parameters of
19991 * ra-conflict.c (mark_reg_store, clear_reg_in_live,
19992 global_conflicts): Change DF_REF_EXTRACT to either
19993 DF_REF_ZERO_EXTRACT or DF_REF_SIGN_EXTRACT. Change
19994 DF_REF_STRICT_LOWER_PART to DF_REF_STRICT_LOW_PART.
19995 * df-scan.c (df_ref_record, df_defs_record,
19996 df_ref_create_structure, df_def_record_1, df_uses_record,
19997 df_get_conditional_uses, df_get_call_refs, df_insn_refs_collect,
19998 df_bb_refs_collect, df_entry_block_defs_collect,
19999 df_exit_block_uses_collect): Support new width and offset fields.
20000 (ref_extract_pool): New storage pool.
20001 (df_free_ref): New function.
20002 (df_reg_chain_unlink, df_free_collection_rec,
20003 df_sort_and_compress_refs): Call df_free_ref.
20004 (df_ref_equal_p, df_ref_compare): Compare offset and width fields
20006 (df_ref_create_structure): Allocate df_ref_extract if offset and
20007 width fields are used.
20008 (df_def_record_1): Get offset and width from ZERO_EXTRACT.
20009 (df_uses_record): Get offset and width from ZERO_EXTRACT
20011 * global.c (build_insn_chain): Change DF_REF_EXTRACT to either
20012 DF_REF_ZERO_EXTRACT or DF_REF_SIGN_EXTRACT. Change
20013 DF_REF_STRICT_LOWER_PART to DF_REF_STRICT_LOW_PART.
20014 * df.h (df_ref_flags): Change DF_REF_EXTRACT to either
20015 DF_REF_ZERO_EXTRACT or DF_REF_SIGN_EXTRACT. Change
20016 DF_REF_STRICT_LOWER_PART to DF_REF_STRICT_LOW_PART.
20017 (df_ref_extract): New structure.
20018 (DF_REF_WIDTH, DF_REF_OFFSET): New macros.
20019 (df_ref_create): Add width and offset parameters.
20021 2008-03-05 Richard Guenther <rguenther@suse.de>
20023 * tree-ssa-structalias.c (get_constraint_for_component_ref):
20024 Use ranges_overlap_p.
20025 (offset_overlaps_with_access): Rename
20026 to ranges_overlap_p and move ...
20027 * tree-flow-inline.h (ranges_overlap_p): ... here.
20029 * tree.h (get_inner_reference, handled_component_p): Update
20032 * tree.h (record_component_aliases, get_alias_set,
20033 alias_sets_conflict_p, alias_sets_must_conflict_p,
20034 objects_must_conflict_p): Move declarations ...
20035 * alias.h (record_component_aliases, get_alias_set,
20036 alias_sets_conflict_p, alias_sets_must_conflict_p,
20037 objects_must_conflict_p): ... here.
20038 Include coretypes.h.
20039 * Makefile.in (ALIAS_H): Add coretypes.h dependency.
20041 2008-03-05 Aldy Hernandez <aldyh@redhat.com>
20043 * cfg.c: Include tree-flow.h.
20044 (remove_edge_raw): Call redirect_edge_var_map_clear.
20045 (redirect_edge_succ_nodup): Call redirect_edge_var_map_dup.
20046 * tree-flow-inline.h (redirect_edge_var_map_def): New.
20047 (redirect_edge_var_map_result): New.
20048 * tree-cfgcleanup.c (remove_forwarder_block_with_phi): Replace
20049 PENDING_STMT use with redirect_edge_var_map_*.
20050 * tree-ssa.c (edge_var_maps): New definition.
20051 (redirect_edge_var_map_add): New.
20052 (redirect_edge_var_map_clear): New.
20053 (redirect_edge_var_map_dup): New.
20054 (redirect_edge_var_map_vector): New.
20055 (redirect_edge_var_map_destroy): New.
20056 (ssa_redirect_edge): Replace PENDING_STMT use with
20057 redirect_edge_var_map_*.
20058 (flush_pending_stmts): Same.
20059 (delete_tree_ssa): Destroy edge var map.
20060 * tree-flow.h (struct _edge_var_map): New.
20061 Define edge_var_map vector type.
20062 Declare redirect_edge_var_map_* prototypes.
20063 * Makefile.in (cfg.o): Depend on TREE_FLOW_H.
20064 * tree-cfg.c (reinstall_phi_args): Replace
20065 PENDING_STMT use with redirect_edge_var_map_*.
20067 2008-03-05 Richard Guenther <rguenther@suse.de>
20069 PR tree-optimization/35472
20070 * tree-ssa-dse.c (dse_optimize_stmt): Do not delete a store
20071 whose single use_stmt has a overlapping set of loaded and
20072 stored symbols as that use_stmt might be a noop assignment then.
20074 2008-03-05 Joel Sherrill <joel.sherrill@oarcorp.com>
20076 * gthr-rtems.h: Implement __gthread_mutex_destroy.
20078 2008-03-05 Richard Guenther <rguenther@suse.de>
20081 * tree.def (BIT_FIELD_REF): Document that operands 1 and 2
20082 should be constants.
20083 * tree-cfg.c (verify_expr): Verify it.
20084 * fold-const.c (fold_truthop): Remove code generating
20085 BIT_FIELD_REFs of structure bases.
20086 (fold_binary): Likewise.
20087 (fold_ternary): Position and size of BIT_FIELD_REFs are
20088 always host integers.
20089 (make_bit_field_ref): Remove.
20090 (optimize_bit_field_compare): Remove.
20091 (all_ones_mask_p): Remove.
20093 2008-03-05 Gabor Loki <loki@gcc.gnu.org>
20096 * rtl-factoring.c (clear_regs_live_in_seq): Fix backward steps.
20097 (split_block_and_df_analyze): New. Split basic block and rebuild
20099 (block_label_after): Use SPLIT_BLOCK_AND_DF_ANALYZE instead of
20101 (split_pattern_seq): Likewise.
20102 (erase_matching_seqs): Likewise.
20103 (split_pattern_seq): Skip return insn in case of REG_NORETURN note.
20105 2008-03-04 Geoff Keating <geoffk@apple.com>
20107 * fold-const.c (tree_single_nonnegative_warnv_p): Fix mixed
20108 declaration and code.
20109 (tree_invalid_nonnegative_warnv_p): Likewise.
20111 2008-03-05 Serge Belyshev <belyshev@depni.sinp.msu.ru>
20113 * doc/install.texi (Testing): Correct quoting for the RUNTESTFLAGS
20114 examples. Truncate option-names then causing overfull hbox.
20116 2008-03-04 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
20119 * configure.ac (CONFIG_SJLJ_EXCEPTIONS): Force SJLJ exceptions
20121 * configure: Rebuilt.
20123 2008-03-04 Rafael Espíndola <espindola@google.com>
20125 * fold-const.c (tree_simple_nonnegative_warnv_p): New.
20126 (tree_unary_nonnegative_warnv_p): New.
20127 (tree_binary_nonnegative_warnv_p): New.
20128 (tree_single_nonnegative_warnv_p): New.
20129 (tree_invalid_nonnegative_warnv_p): New.
20130 (tree_expr_nonnegative_warnv_p): Redefine in term of the new functions.
20132 2008-03-04 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
20135 * opts.c (handle_option): Postpone 'unknown option' errors only for
20138 2008-03-04 H.J. Lu <hongjiu.lu@intel.com>
20141 * config/i386/smmintrin.h (SIDD_XXX): Renamed to ...
20144 2008-03-04 Rafael Espíndola <espindola@google.com>
20146 * fold-const.c (tree_unary_nonzero_warnv_p): New.
20147 (tree_binary_nonzero_warnv_p): New.
20148 (tree_single_nonzero_warnv_p): New.
20149 (tree_expr_nonzero_warnv_p): Redefine using the new functions.
20151 2008-03-04 Uros Bizjak <ubizjak@gmail.com>
20153 PR middle-end/35456
20154 * fold-const.c (fold_cond_expr_with_comparison): Prevent
20155 transformations for modes that have signed zeros.
20156 * ifcvt.c (noce_try_abs): Ditto.
20158 2008-03-04 Joseph Myers <joseph@codesourcery.com>
20160 * config/i386/i386.c (override_options): Force
20161 -maccumulate-outgoing-args on if TARGET_STACK_PROBE.
20163 2008-03-04 Jan Hubicka <jh@suse.cz>
20166 * ipa-inline.c (cgraph_decide_inlining_of_small_function): Fix typo
20169 2008-03-04 Danny Smith <dannysmith@users.sourceforge.net>
20171 * config/i386/i386.md (allocate_stack_worker_32): Use __chkstk
20172 label to probe the stack.
20174 2008-03-04 Danny Smith <dannysmith@users.sourceforge.net>
20176 * gthr-win32.h [__GTHREAD_HIDE_WIN32API]
20177 (__gthr_win32_mutex_destroy): Declare.
20178 [__GTHREAD_HIDE_WIN32API] (__gthread_mutex_destroy): Use
20179 __gthr_win32_mutex_destroy.
20180 * config/i386/gthr-win32.c (__gthr_win32_mutex_destroy): Define.
20182 2008-03-03 Jan Hubicka <jh@suse.cz>
20185 * ipa-inline.c (cgraph_decide_inlining_of_small_function): Be more
20186 aggressive on inlining cold calls.
20188 2008-03-03 Richard Guenther <rguenther@suse.de>
20190 * tree-ssa-sccvn.c (visit_reference_op_store): Do not insert
20191 struct copies into the expression table.
20192 (simplify_unary_expression): Handle VIEW_CONVERT_EXPR.
20193 (try_to_simplify): Likewise.
20194 * fold-const.c (fold_unary): Fold VIEW_CONVERT_EXPR of
20195 integral and pointer arguments which do not change the
20196 precision to NOP_EXPRs.
20197 * tree-ssa-loop-ivopts.c (may_be_nonaddressable_p): Adjust
20198 VIEW_CONVERT_EXPR case.
20200 2008-03-02 Sebastian Pop <sebastian.pop@amd.com>
20202 * tree-scalar-evolution.c (instantiate_parameters_1): An SSA_NAME
20203 defined in a loop at depth 0 is invariant.
20204 * tree-chrec.c (evolution_function_is_invariant_rec_p): Ditto.
20205 * tree-ssa-loop-ivopts.c (expr_invariant_in_loop_p): Should never
20206 be called at loop depth 0.
20208 2008-03-02 Jakub Jelinek <jakub@redhat.com>
20211 * gcc.c (process_command): Update copyright notice dates.
20212 * gcov.c (print_version): Likewise.
20213 * gcov-dump.c (print_version): Likewise.
20214 * mips-tfile.c (main): Likewise.
20215 * mips-tdump.c (main): Likewise.
20217 2008-03-02 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
20220 * c-common.c (flag_permissive): Delete.
20221 (constant_expression_warnings): Check flags first.
20222 (constant_expression_error): New.
20223 * c-common.h (flag_permissive): Delete.
20224 (constant_expression_error): Declare.
20225 * flags.h (flag_permissive): Declare. Update description.
20226 * diagnostic.c (pedwarn): Update.
20228 * diagnostic.h: (pedantic_error_kind): Rename as pedantic_warning_kind.
20229 (permissive_error_kind): New.
20230 * toplev.c (flag_permissive): Define. Update description.
20231 * toplev.h (permissive_error_kind): Declare.
20232 * c-errors.c (pedwarn_c99): Use pedantic_warning_kind.
20233 (pedwarn_c90): Use pedantic_warning_kind.
20234 * c-opts.c (c_common_post_options): flag_permissive does not affect
20235 flag_pedantic_errors.
20237 2008-03-02 Joseph Myers <joseph@codesourcery.com>
20239 * libgcc2.c (__addvSI3, __addvsi3, __addvDI3, __subvSI3,
20240 __subvsi3, __subvDI3, __negvSI2, __negvsi2, __negvDI2, __absvSI2,
20241 __absvsi2, __absvDI2): Use unsigned arithmetic.
20243 2008-03-02 Andi Kleen <ak@suse.de>
20244 Richard Guenther <rguenther@suse.de>
20246 * struct-equiv.c: Remove file.
20247 * cfg_cleanup.c (condjump_equiv_p): Remove.
20248 * Makefile.in (OBJS-common): Remove struct-equiv.o.
20249 (struct-equiv.o): Remove rule.
20250 * basic-block.h (struct_equiv_checkpoint, STRUCT_EQUIV_*,
20251 insns_match_p, struct_equiv_block_eq, struct_equiv_init,
20252 rtx_equiv_p, condjump_equiv_p): Remove prototypes.
20254 2008-03-01 Alexandre Oliva <aoliva@redhat.com>
20256 * ifcvt.c (noce_process_if_block): Try to handle only the then
20257 block if the else block exists but isn't suitable.
20259 2008-03-01 Janne Blomqvist <jb@gcc.gnu.org>
20262 * gthr-posix.h (__gthread_mutex_destroy): Remove extra declarations.
20263 * gthr-posix95.h (__gthread_mutex_destroy): Likewise. Note this fixes
20264 regression from previous patch.
20266 2008-03-01 Janne Blomqvist <jb@gcc.gnu.org>
20269 * gthr.h: Add __gthread_mutex_destroy as a function that must be
20271 * gthr-vxworks.h (__gthread_mutex_destroy): Null implementation.
20272 * gthr-single.h (__gthread_mutex_destroy): Likewise.
20273 * gthr-rtems.h (__gthread_mutex_destroy): Likewise.
20274 * gthr-mipssde.h (__gthread_mutex_destroy): Likewise.
20275 * gthr-nks.h (__gthread_mutex_destroy): Likewise.
20276 * gthr-solaris.h (__gthread_mutex_destroy): Call mutex_destroy.
20277 * gthr-win32.h (__GTHREAD_MUTEX_DESTROY_FUNCTION): Remove.
20278 (__gthread_mutex_destroy_function): Rename to
20279 __gthread_mutex_destroy.
20280 * gthr-dce.h (__gthread_mutex_destroy): Call
20281 pthread_mutex_destroy.
20282 * gthr-tpf.h (__gthread_mutex_destroy): Likewise.
20283 * gthr-posix.h (__gthread_mutex_destroy): Likewise.
20284 * gthr-posix95.h (__gthread_mutex_destroy): Likewise.
20286 2008-03-01 Alexandre Oliva <aoliva@redhat.com>
20288 * df-scan.c (df_ref_chain_change_bb): Simplify.
20289 (df_insn_change_bb): Add new_bb argument. Simplify. Call
20290 set_block_for_insn if there's any change.
20291 * df.h ((df_insn_change_bb): Fix prototype.
20292 * cfgrtl.c (update_bb_for_insn_chain): Pass bb to
20293 df_insn_change_bb, don't call set_block_for_insn.
20294 * emit-rtl.c (reorder_insns): Likewise.
20295 * haifa-sched.c (move_insn): Likewise.
20297 2008-03-01 Alexandre Oliva <aoliva@redhat.com>
20299 * rtlanal.c (loc_mentioned_in_p): Test XVECEXPs correctly.
20301 2008-03-01 Alexandre Oliva <aoliva@redhat.com>
20303 * tree-flow-inline.h (next_readonly_imm_use): Return
20304 NULL_USE_OPERAND_P after the end.
20306 2008-03-01 Richard Guenther <rguenther@suse.de>
20308 PR tree-optimization/35411
20309 * tree-sra.c (sra_build_assignment): Split conversion to
20310 final type to a separate statement if we are not assigning
20313 2008-02-29 Francois-Xavier Coudert <coudert@clipper.ens.fr>
20315 * fold-const.c (fold_convertible_p): Correct the logic to follow
20316 that in fold_convert().
20318 2008-02-29 Douglas Gregor <doug.gregor@gmail.com>
20321 * tree-inline.c (build_duplicate_type): When we make a
20322 duplicate type, make it unique in the canonical types system.
20324 2008-02-29 Tom Tromey <tromey@redhat.com>
20326 * toplev.c (input_file_stack, input_file_stack_tick, fs_p,
20327 input_file_stack_history, input_file_stack_restored): Remove.
20328 (push_srcloc, pop_srcloc, restore_input_file_stack): Likewise.
20329 * input.h (struct file_stack): Remove.
20330 (push_srcloc, pop_srcloc, restore_input_file_stack): Likewise.
20331 (input_file_stack, input_file_stack_tick, INPUT_FILE_STACK_BITS):
20333 * diagnostic.h (struct diagnostic_context) <last_module>: Change
20335 (diagnostic_last_module_changed): Add 'map' argument.
20336 (diagnostic_set_last_function): Likewise.
20337 * diagnostic.c (undiagnostic_report_current_module): Iterate using
20338 line map, not input_file_stack.
20339 * c-lex.c (fe_file_change): Don't use push_srcloc or pop_srcloc.
20341 2008-02-29 Paul Brook <paul@codesourcery.com>
20343 * config/arm/arm.md (arm_addsi3): Add r/k/n alternative.
20345 2008-02-29 Paul Brook <paul@codesourcery.com>
20347 * config/arm/ieee754-df.S (muldf3): Use RET macros.
20349 2008-02-29 Richard Guenther <rguenther@suse.de>
20351 * tree-ssa-pre.c (get_sccvn_value): Create missing VNs via
20353 * tree-ssa-sccnv.c (visit_reference_op_store): Use the rhs
20354 value for comparing for a store match.
20355 (simplify_unary_expression): Do nothing for SSA_NAMEs.
20356 (try_to_simplify): Do not do a full-blown reference lookup.
20358 2008-02-29 Kaz Kojima <kkojima@gcc.gnu.org>
20360 * config/sh/sh.c (sh_scalar_mode_supported_p): New function.
20361 (TARGET_SCALAR_MODE_SUPPORTED_P): Define.
20363 * config/sh/sh.h (OVERRIDE_OPTIONS): Don't warn for profiling.
20365 2008-02-29 Sebastian Pop <sebastian.pop@amd.com>
20367 * tree-loop-linear.c (try_interchange_loops): Compare memory access
20368 strides against cache sizes.
20370 2008-02-29 Kaz Kojima <kkojima@gcc.gnu.org>
20372 * config/sh/sh.c (sh_secondary_reload): Handle loading a float
20375 2008-02-28 Richard Sandiford <rsandifo@nildram.co.uk>
20377 * simplify-rtx.c (simplify_unary_operation_1): Extend the handling
20378 of SUBREG_PROMOTED_VAR_P to cope with cases where the extended value
20379 is smaller than the original promoted value.
20380 (simplify_subreg): If OP is a SUBREG, try to preserve its
20381 SUBREG_PROMOTED_VAR_P information.
20383 2008-02-28 Steven Bosscher <stevenb.gcc@gmail.com>
20385 * tree-ssa-sccvn (vn_ssa_aux_obstack): New obstack.
20386 (VN_INFO_GET): Allocate new objects on the obstack.
20387 (init_scc_vn): Initialize the obstack. Use XDELETE instead of free
20388 for rpo_numbers_temp, for consistency.
20389 (free_scc_vn): Free the obstack.
20391 2008-02-28 Sebastian Pop <sebastian.pop@amd.com>
20393 * doc/invoke.texi: Document -ftree-loop-distribution.
20394 * tree-loop-distribution.c: New.
20395 * tree-pass.h (pass_loop_distribution): New.
20396 * graphds.h (struct graph): Add htab_t indices.
20397 * timevar.def (TV_TREE_LOOP_DISTRIBUTION): New.
20398 * tree-vectorizer.c (rename_variables_in_loop): Extern.
20399 (slpeel_tree_duplicate_loop_to_edge_cfg): Init PENDING_STMT to NULL.
20400 * tree-vectorizer.h (tree_duplicate_loop_on_edge): Declared.
20401 * tree-data-ref.c (debug_data_dependence_relations): New.
20402 (dump_data_dependence_relation): Also print data references.
20403 (free_data_ref): Extern.
20404 (same_access_functions): Moved...
20405 (find_vertex_for_stmt): Renamed rdg_vertex_for_stmt.
20406 (dump_rdg_vertex, debug_rdg_vertex, dump_rdg_component,
20407 debug_rdg_component, dump_rdg, debug_rdg, dot_rdg_1, dot_rdg,
20408 struct rdg_vertex_info, rdg_vertex_for_stmt): New.
20409 (create_rdg_edge_for_ddr, create_rdg_vertices): Cleaned up.
20410 (stmts_from_loop): Skip LABEL_EXPR.
20411 (hash_stmt_vertex_info, eq_stmt_vertex_info, hash_stmt_vertex_del):
20413 (build_rdg): Initialize rdg->indices htab.
20414 (free_rdg, stores_from_loop, ref_base_address,
20415 rdg_defs_used_in_other_loops_p, have_similar_memory_accesses,
20416 have_similar_memory_accesses_1, ref_base_address_1,
20417 remove_similar_memory_refs): New.
20418 * tree-data-ref.h: Depend on tree-chrec.h.
20419 (debug_data_dependence_relations, free_data_ref): Declared.
20420 (same_access_functions): ... here.
20421 (ddr_is_anti_dependent, ddrs_have_anti_deps, ddr_dependence_level):
20423 (struct rdg_vertex): Add has_mem_write and has_mem_reads.
20424 (RDGV_HAS_MEM_WRITE, RDGV_HAS_MEM_READS, RDG_STMT,
20425 RDG_MEM_WRITE_STMT, RDG_MEM_READS_STMT): New.
20426 (dump_rdg_vertex, debug_rdg_vertex, dump_rdg_component,
20427 debug_rdg_component, dump_rdg, debug_rdg, dot_rdg,
20428 rdg_vertex_for_stmt): Declared.
20429 (struct rdg_edge): Add level.
20431 (free_rdg, stores_from_loop, remove_similar_memory_refs,
20432 rdg_defs_used_in_other_loops_p, have_similar_memory_accesses):
20434 (rdg_has_similar_memory_accesses): New.
20435 * tree-vect-analyze.c: Remove unused static decls.
20436 * lambda.h (dependence_level): New.
20437 * common.opt (ftree-loop-distribution): New.
20438 * tree-flow.h (mark_virtual_ops_in_bb,
20439 slpeel_tree_duplicate_loop_to_edge_cfg,
20440 rename_variables_in_loop): Declared.
20441 * Makefile.in (TREE_DATA_REF_H): Depend on tree-chrec.h.
20442 (OBJS-common): Add tree-loop-distribution.o.
20443 (tree-loop-distribution.o): New rule.
20444 * tree-cfg.c (mark_virtual_ops_in_bb): New.
20445 (mark_virtual_ops_in_region): Use mark_virtual_ops_in_bb.
20446 * passes.c (init_optimization_passes): Schedule pass_loop_distribution.
20448 2008-02-28 Joseph Myers <joseph@codesourcery.com>
20451 * tree.c (handle_dll_attribute): Disallow TYPE_DECLs for types
20452 other than structures and unions.
20454 2008-02-28 Richard Guenther <rguenther@suse.de>
20457 2008-02-26 Richard Guenther <rguenther@suse.de>
20459 * tree-flow.h (uid_decl_map_hash, uid_decl_map_eq): Move ...
20460 * tree.h (uid_decl_map_hash, uid_decl_map_eq): ... here.
20461 (lookup_decl_from_uid): Declare.
20462 (remove_decl_from_map): Likewise.
20463 * tree-ssa.c (uid_decl_map_eq, uid_decl_map_hash): Move ...
20464 * tree.c (uid_decl_map_eq, uid_decl_map_hash): ... here.
20465 (decl_for_uid_map): New global hashtable mapping DECL_UID
20467 (init_ttree): Allocate it.
20468 (insert_decl_to_uid_decl_map): New helper function.
20469 (make_node_stat): Insert new decls into the map.
20470 (copy_node_stat): Likewise.
20471 (lookup_decl_from_uid): New function.
20472 (remove_decl_from_map): Likewise.
20473 (print_decl_for_uid_map_statistics): New helper.
20474 (dump_tree_statistics): Call it.
20476 * tree-flow.h (struct gimple_df): Make referenced_vars a bitmap.
20477 (referenced_var_iterator): Adjust.
20478 (FOR_EACH_REFERENCED_VAR): Adjust.
20479 (FOR_EACH_REFERENCED_VAR_IN_BITMAP): New iterator.
20480 (num_referenced_vars): Adjust.
20481 * tree-flow-inline.h (gimple_referenced_vars): Adjust.
20482 (first_referenced_var): Remove.
20483 (end_referenced_vars_p): Likewise.
20484 (next_referenced_var): Likewise.
20485 (referenced_var_iterator_set): New helper function.
20486 * tree-dfa.c (referenced_var_lookup): Adjust.
20487 (referenced_var_check_and_insert): Likewise.
20488 (remove_referenced_var): Likewise.
20489 * tree-ssa.c (verify_flow_insensitive_alias_info): Use
20490 FOR_EACH_REFERENCED_VAR_IN_BITMAP.
20491 (verify_call_clobbering): Likewise.
20492 (verify_memory_partitions): Likewise.
20493 (init_tree_ssa): Allocate bitmap instead of hashtable for
20495 (delete_tree_ssa): Adjust.
20496 * tree-ssa-alias.c (mark_aliases_call_clobbered): Use
20497 FOR_EACH_REFERENCED_VAR_IN_BITMAP.
20498 (compute_tag_properties): Likewise.
20499 (set_initial_properties): Likewise.
20500 (find_partition_for): Likewise.
20501 (update_reference_counts): Likewise.
20502 (dump_may_aliases_for): Likewise.
20503 * tree-ssa-operands.c (add_virtual_operand): Likewise.
20504 (add_call_clobber_ops): Likewise.
20505 (add_call_read_ops): Likewise.
20506 (get_asm_expr_operands): Likewise.
20507 * tree-into-ssa.c (dump_decl_set): Likewise.
20508 (update_ssa): Likewise.
20509 * tree-sra.c (scan_function): Likewise.
20510 (decide_instantiations): Likewise.
20511 (scalarize_parms): Likewise.
20512 * tree-ssa-alias-warnings.c (build_reference_table): Likewise.
20513 (dsa_named_for): Likewise.
20514 * tree-ssa-structalias.c (update_alias_info): Likewise.
20515 (merge_smts_into): Likewise.
20517 2008-02-27 David Daney <ddaney@avtrex.com>
20520 * config/mips/iris.h (MIPS_DEBUGGING_INFO): Define.
20521 * config/mips/openbsd.h (MIPS_DEBUGGING_INFO): Same.
20522 * config/mips/sde.h (MIPS_DEBUGGING_INFO): Remove undef.
20523 * config/mips/vxworks.h (MIPS_DEBUGGING_INFO): Same.
20524 * config/mips/mips.h (MIPS_DEBUGGING_INFO): Remove define.
20526 2008-02-27 Uros Bizjak <ubizjak@gmail.com>
20529 * config/darwin-ppc-ldouble-patch.def (BUILT_IN_NANL): Add.
20530 (BUILT_IN_NEXTTOWARD): Remove.
20531 (BUILT_IN_NEXTTOWARDF): Ditto.
20532 * config/darwin.c (darwin_patch_builtin): Use ACONCAT instead of
20533 alloca/strcpy/strcat. Remove commented-out code. Fix whitespace.
20535 2008-02-27 Tom Tromey <tromey@redhat.com>
20537 * tree-dump.c (dequeue_and_dump) <FUNCTION_DECL>: Check
20538 DECL_SAVED_TREE, not DECL_LANG_SPECIFIC, when dumping body.
20540 2008-02-27 Jan Beulich <jbeulich@novell.com>
20542 * c-decl.c (merge_decls): Use DECL_USER_ALIGN() on olddecl to
20543 update the respective field on newdecl.
20545 2008-02-27 Revital Eres <eres@il.ibm.com>
20547 PR rtl-optimization/34999
20548 * bb-reorder.c (add_labels_and_missing_jumps): Do not handle
20549 crossing edges that ends with a call insn.
20550 (fix_up_fall_thru_edges): Handle crossing edges that ends with a
20551 call insn and clear the EDGE_CROSSING flag of the crossing edge
20552 when fixing fallthru edges.
20554 2008-02-27 Richard Guenther <rguenther@suse.de>
20556 PR middle-end/35390
20557 * fold-const.c (fold_unary): Return the correct argument,
20558 converted to the result type.
20560 2008-02-27 Richard Guenther <rguenther@suse.de>
20562 PR middle-end/34971
20563 * expr.c (expand_expr_real_1): Assert on rotates that operate
20565 * fold-const.c (fold_binary): Use the types precision, not the
20566 bitsize of the mode if folding rotate expressions. Build rotates
20567 only for full modes.
20569 2008-02-27 Jakub Jelinek <jakub@redhat.com>
20571 * c-ppoutput.c (scan_translation_unit): Handle CPP_PRAGMA
20572 and CPP_PRAGMA_EOL.
20573 * c-pragma.c (pragma_ns_name): New typedef.
20574 (registered_pp_pragmas): New variable.
20575 (c_pp_lookup_pragma): New function.
20576 (c_register_pragma_1): If flag_preprocess_only, do nothing
20577 for non-expanded pragmas, for expanded ones push pragma's
20578 namespace and name into registered_pp_pragmas vector.
20579 (c_invoke_pragma_handler): Register OpenMP pragmas even when
20580 flag_preprocess_only, don't register GCC pch_preprocess
20581 pragma if flag_preprocess_only.
20582 * c-opts.c (c_common_init): Call init_pragma even if
20583 flag_preprocess_only.
20584 * c-pragma.c (c_pp_lookup_pragma): New prototype.
20585 * config/darwin.h (DARWIN_REGISTER_TARGET_PRAGMAS): Don't call
20586 cpp_register_pragma if flag_preprocess_only.
20588 2008-02-26 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
20591 * c-parser.c (c_parser_translation_unit): Warn for empty
20592 translation unit, not empty source file.
20594 2008-02-26 Paul Brook <paul@codesourcery.com>
20596 * config/arm/arm.c (thumb_set_frame_pointer): Ensure SP is first
20597 operand for Thumb-2.
20598 * config/arm/arm.h (reg_class): Add CORE_REGS.
20599 (REG_CLASS_NAMES, REG_CLASS_CONTENTS): Ditto.
20600 (BASE_REG_CLASS): Use CORE_REGS.
20601 (PREFERRED_RELOAD_CLASS): Add STACK_REG.
20602 (REGNO_MODE_OK_FOR_REG_BASE_P): Use REGNO_MODE_OK_FOR_BASE_P.
20603 (REGNO_OK_FOR_INDEX_P): Exclude SP.
20604 (ARM_REG_OK_FOR_INDEX_P): Always define. Use
20605 ARM_REGNO_OK_FOR_INDEX_P.
20606 (ARM_PRINT_OPERAND_ADDRESS): Swap operands for [reg, sp].
20607 * config/arm/arm.md (arm_addsi3, thumb1_addsi3, arm_subsi3_insn,
20608 arm_movsi_insn, thumb1_movsi_insni, stack_tie): Add "k" alternatives.
20609 (ldm/stm peepholes): Ditto.
20610 * config/arm/thumb2.md (thumb2_movdi): Add "k" alternatives.
20611 * config/arm/vfp.md (arm_movsi_vfp, thumb2_movsi_vfp): Ditto.
20612 * config/arm/iwmmxt.md (iwmmxt_movsi_insn): Ditto.
20613 * config/arm/constraints.md: Enable "k" constraint on ARM.
20615 2008-02-27 Ben Elliston <bje@au.ibm.com>
20617 * config/rs6000/rs6000.c: Annotate cache line size field in all
20618 instances of struct processor_costs.
20620 2008-02-26 David Edelsohn <edelsohn@gnu.org>
20622 * dbgcnt.def (cfg_cleanup, cprop1, cprop2, dce_fast, dce_ud, dse1,
20623 dse2, gcse, if_conversion, if_after_combine, if_after_reload,
20624 jump_bypass): New counters.
20625 * cfgcleanup.c (cleanup_cfg): Add dbg_cnt.
20626 * dce.c (gate_ud_dce): Same.
20627 (gate_fast_dce): Same.
20628 * dse.c (gate_dse1): New function.
20629 (gate_dse2): New function.
20630 (gate_dse): Merge results of new gate functions.
20631 * gcse.c (gcse_main): Bracket cprop1 and cprop2 with dbg_cnt.
20632 (gate_handle_jump_bypass): Add dbg_cnt.
20633 (gate_handle_gcse): Add dbg_cnt.
20634 * ifcvt.c (gate_handle_if_conversion): Same.
20635 (gate_handle_if_after_combine): Same.
20636 (gate_handle_if_after_reload): Same.
20637 * Makefile.in: Add DBGCNT_H to cfgcleanup.o and ifcvt.o.
20639 2008-02-26 Edmar Wienskoski <edmar@freescale.com>
20641 * config/rs6000/rs6000.c (processor_costs): Update e300 cache
20643 * doc/invoke.texi: Add e300c2 and e300c3 to list of cpus.
20645 2008-02-26 Jason Merrill <jason@redhat.com>
20648 * attribs.c (decl_attributes): Leave ATTR_FLAG_TYPE_IN_PLACE
20649 alone if it's the naming decl for the type's main variant.
20651 2008-02-26 Tom Tromey <tromey@redhat.com>
20653 * system.h (USE_MAPPED_LOCATION): Poison.
20654 * Makefile.in (GTFILES): Put CPP_ID_DATA_H first.
20655 * tree-cfg.c (make_cond_expr_edges): Remove old location code.
20656 (make_goto_expr_edges): Likewise.
20657 (remove_bb): Likewise.
20658 (execute_warn_function_return): Likewise.
20659 * basic-block.h (struct edge_def) <goto_locus>: Change type to
20661 * c-common.c (fname_decl): Remove old location code.
20662 * tree-vect-transform.c (vect_finish_stmt_generation): Remove old
20664 * rtl.h (ASM_OPERANDS_SOURCE_LOCATION): Remove old-location
20666 (ASM_INPUT_SOURCE_LOCATION): Likewise.
20667 (gen_rtx_ASM_INPUT): Likewise.
20668 (gen_rtx_ASM_INPUT_loc): Likewise.
20669 (get_rtx_asm_OPERANDS): Remove.
20670 * cfglayout.c (insn_locators_alloc): Remove old location code.
20671 (set_curr_insn_source_location): Likewise.
20672 (curr_insn_locator): Likewise.
20673 * print-tree.c (print_node): Remove old location code.
20674 * tree-mudflap.c (mf_varname_tree): Remove old location code.
20675 (mf_file_function_line_tree): Remove test of USE_MAPPED_LOCATION.
20676 * cfgexpand.c (expand_gimple_cond_expr): Don't use
20677 location_from_locus.
20678 (construct_exit_block): Remove old location code.
20679 * emit-rtl.c (force_next_line_note): Remove old location code.
20680 * profile.c (branch_prob): Remove old location code.
20681 * tree-vectorizer.h (LOC, UNKNOWN_LOC, EXPR_LOC, LOC_FILE,
20682 LOC_LINE): Remove old-location variants.
20683 * langhooks.c (lhd_print_error_function): Remove old location
20685 * configure, config.in: Rebuilt.
20686 * configure.ac (--enable-mapped-location): Remove.
20687 * c-decl.c (c_init_decl_processing): Remove old location code.
20688 (finish_function): Likewise.
20689 * recog.c (decode_asm_operands): Remove old location code.
20690 * c-pch.c (c_common_read_pch): Remove old location code.
20691 * rtl.def (ASM_INPUT, ASM_OPERANDS): Remove old location
20693 * gimple-low.c (lower_function_body): Remove old location code.
20694 * toplev.c (unknown_location): Remove.
20695 (push_srcloc): Remove old-location variant.
20696 (process_options): Remove old location code.
20697 (lang_dependent_init): Likewise.
20698 * input.h (UNKNOWN_LOCATION): Move definition.
20699 (location_t): Undeprecate.
20700 (source_locus): Remove.
20701 (location_from_locus): Remove.
20702 (struct location_s): Remove.
20703 Remove all old-location code.
20704 (input_line, input_filename): Remove.
20705 * final.c (final_scan_insn): Remove old location code.
20706 * diagnostic.c (diagnostic_build_prefix): Remove
20707 USE_MAPPED_LOCATION test.
20708 * tree.h (gimple_stmt) <locus>: Now a location_t.
20709 (tree_exp) <locus>: Likewise.
20710 (DECL_IS_BUILTIN): Remove old-location variant.
20711 (annotate_with_file_line, annotate_with_locus): Likewise.
20712 (expr_locus, set_expr_locus): Update.
20713 * tree.c (build1_stat): Remove old location code.
20714 (last_annotated_node): Remove.
20715 (annotate_with_file_line): Remove old-location variant.
20716 (annotate_with_locus): Likewise.
20717 (expr_location): Remove old location code.
20718 (set_expr_location): Likewise.
20719 (expr_has_location): Likewise.
20720 (expr_locus): Likewise.
20721 (set_expr_locus): Likewise.
20722 (expr_filename): Don't use location_from_locus.
20723 (expr_lineno): Likewise.
20724 * rtl-error.c (location_for_asm): Remove old location code.
20725 * c-lex.c (cb_line_change): Remove old location code.
20726 (fe_file_change): Likewise.
20727 (cb_def_pragma): Likewise.
20728 (c_lex_with_flags): Likewise.
20729 * gengtype.c (do_typedef): Don't special-case location types.
20730 (define_location_structures): Remove.
20731 (main): Don't call define_location_structures.
20732 * tree-pretty-print.c (dump_implicit_edges): Remove old location
20735 2008-02-26 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
20738 * builtins.def (BUILT_IN_STDARG_START): Remove.
20739 * builtins.c (expand_builtin): Remove BUILT_IN_STDARG_START.
20740 * tree-stdarg.c (execute_optimize_stdarg): Likewise.
20741 * tree-inline.c (inline_forbidden_p_1): Likewise.
20743 2008-02-26 Richard Guenther <rguenther@suse.de>
20745 * tree-flow.h (uid_decl_map_hash, uid_decl_map_eq): Move ...
20746 * tree.h (uid_decl_map_hash, uid_decl_map_eq): ... here.
20747 (lookup_decl_from_uid): Declare.
20748 (remove_decl_from_map): Likewise.
20749 * tree-ssa.c (uid_decl_map_eq, uid_decl_map_hash): Move ...
20750 * tree.c (uid_decl_map_eq, uid_decl_map_hash): ... here.
20751 (decl_for_uid_map): New global hashtable mapping DECL_UID
20753 (init_ttree): Allocate it.
20754 (insert_decl_to_uid_decl_map): New helper function.
20755 (make_node_stat): Insert new decls into the map.
20756 (copy_node_stat): Likewise.
20757 (lookup_decl_from_uid): New function.
20758 (remove_decl_from_map): Likewise.
20759 (print_decl_for_uid_map_statistics): New helper.
20760 (dump_tree_statistics): Call it.
20762 * tree-flow.h (struct gimple_df): Make referenced_vars a bitmap.
20763 (referenced_var_iterator): Adjust.
20764 (FOR_EACH_REFERENCED_VAR): Adjust.
20765 (FOR_EACH_REFERENCED_VAR_IN_BITMAP): New iterator.
20766 (num_referenced_vars): Adjust.
20767 * tree-flow-inline.h (gimple_referenced_vars): Adjust.
20768 (first_referenced_var): Remove.
20769 (end_referenced_vars_p): Likewise.
20770 (next_referenced_var): Likewise.
20771 (referenced_var_iterator_set): New helper function.
20772 * tree-dfa.c (referenced_var_lookup): Adjust.
20773 (referenced_var_check_and_insert): Likewise.
20774 (remove_referenced_var): Likewise.
20775 * tree-ssa.c (verify_flow_insensitive_alias_info): Use
20776 FOR_EACH_REFERENCED_VAR_IN_BITMAP.
20777 (verify_call_clobbering): Likewise.
20778 (verify_memory_partitions): Likewise.
20779 (init_tree_ssa): Allocate bitmap instead of hashtable for
20781 (delete_tree_ssa): Adjust.
20782 * tree-ssa-alias.c (mark_aliases_call_clobbered): Use
20783 FOR_EACH_REFERENCED_VAR_IN_BITMAP.
20784 (compute_tag_properties): Likewise.
20785 (set_initial_properties): Likewise.
20786 (find_partition_for): Likewise.
20787 (update_reference_counts): Likewise.
20788 (dump_may_aliases_for): Likewise.
20789 * tree-ssa-operands.c (add_virtual_operand): Likewise.
20790 (add_call_clobber_ops): Likewise.
20791 (add_call_read_ops): Likewise.
20792 (get_asm_expr_operands): Likewise.
20793 * tree-into-ssa.c (dump_decl_set): Likewise.
20794 (update_ssa): Likewise.
20795 * tree-sra.c (scan_function): Likewise.
20796 (decide_instantiations): Likewise.
20797 (scalarize_parms): Likewise.
20798 * tree-ssa-alias-warnings.c (build_reference_table): Likewise.
20799 (dsa_named_for): Likewise.
20800 * tree-ssa-structalias.c (update_alias_info): Likewise.
20801 (merge_smts_into): Likewise.
20803 2008-02-26 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
20806 * doc/invoke.texi (-Wall): Add -Wvolatile-register-var.
20807 * c-opts.c (c_common_handle_option): Wall enables
20808 Wvolatile-register-var.
20809 * common.opt: Move Wvolatile-register-var to...
20812 2008-02-26 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
20814 * common.opt (Wlarger-than=): New.
20815 * doc/invoke.texi (Warning Options): Replace -Wlarger-than- with
20817 * opts.c (common_handle_option): Handle -Wlarger-than=.
20818 * optc-gen.awk: Likewise.
20819 * opth-gen.awk: Likewise.
20820 * stor-layout.c (layout_decl): Use -Wlarger-than= for warning.
20821 * tree-optimize.c (tree_rest_of_compilation): Likewise.
20823 2008-02-26 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
20825 * c-common.c (match_case_to_enum_1): Add appropriate
20826 OPT_W* parameter to warning.
20827 (c_do_switch_warnings): Likewise.
20828 * c-typeck.c (warning_init): Add one more parameter following
20829 'warning' function.
20830 (push_init_level): Update call to warning_init.
20831 (pop_init_level): Likewise.
20832 (add_pending_init): Likewise.
20833 (output_init_element: Likewise.
20835 2008-02-26 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
20838 * toplev.c (toplev_main): If there are warnings or error, print
20839 errors for ignored options.
20840 * opts.c (ignored_options): New static variable.
20841 (postpone_unknown_option_error): New.
20842 (print_ignored_options): New.
20843 (handle_option): Postpone errors for unknown -Wno-* options.
20844 * opts.h (print_ignored_options): Declare.
20846 2008-02-25 Richard Sandiford <rsandifo@nildram.co.uk>
20848 * config/mips/mips.md (loadgp_blockage, blockage): Change type
20851 2008-02-25 Richard Guenther <rguenther@suse.de>
20854 2008-02-25 Richard Guenther <rguenther@suse.de>
20856 * tree-flow.h (uid_decl_map_hash, uid_decl_map_eq): Move ...
20857 * tree.h (uid_decl_map_hash, uid_decl_map_eq): ... here.
20858 (lookup_decl_from_uid): Declare.
20859 * tree-ssa.c (uid_decl_map_eq, uid_decl_map_hash): Move ...
20860 * tree.c (uid_decl_map_eq, uid_decl_map_hash): ... here.
20861 (decl_for_uid_map): New global hashtable mapping DECL_UID
20863 (init_ttree): Allocate it.
20864 (insert_decl_to_uid_decl_map): New helper function.
20865 (make_node_stat): Insert new decls into the map.
20866 (copy_node_stat): Likewise.
20867 (lookup_decl_from_uid): New function.
20868 (print_decl_for_uid_map_statistics): New helper.
20869 (dump_tree_statistics): Call it.
20871 * tree-flow.h (struct gimple_df): Make referenced_vars a bitmap.
20872 (referenced_var_iterator): Adjust.
20873 (FOR_EACH_REFERENCED_VAR): Adjust.
20874 (FOR_EACH_REFERENCED_VAR_IN_BITMAP): New iterator.
20875 (num_referenced_vars): Adjust.
20876 * tree-flow-inline.h (gimple_referenced_vars): Adjust.
20877 (first_referenced_var): Remove.
20878 (end_referenced_vars_p): Likewise.
20879 (next_referenced_var): Likewise.
20880 (referenced_var_iterator_set): New helper function.
20881 * tree-dfa.c (referenced_var_lookup): Adjust.
20882 (referenced_var_check_and_insert): Likewise.
20883 (remove_referenced_var): Likewise.
20884 * tree-ssa.c (verify_flow_insensitive_alias_info): Use
20885 FOR_EACH_REFERENCED_VAR_IN_BITMAP.
20886 (verify_call_clobbering): Likewise.
20887 (verify_memory_partitions): Likewise.
20888 (init_tree_ssa): Allocate bitmap instead of hashtable for
20890 (delete_tree_ssa): Adjust.
20891 * tree-ssa-alias.c (mark_aliases_call_clobbered): Use
20892 FOR_EACH_REFERENCED_VAR_IN_BITMAP.
20893 (compute_tag_properties): Likewise.
20894 (set_initial_properties): Likewise.
20895 (find_partition_for): Likewise.
20896 (update_reference_counts): Likewise.
20897 (dump_may_aliases_for): Likewise.
20898 * tree-ssa-operands.c (add_virtual_operand): Likewise.
20899 (add_call_clobber_ops): Likewise.
20900 (add_call_read_ops): Likewise.
20901 (get_asm_expr_operands): Likewise.
20902 * tree-into-ssa.c (dump_decl_set): Likewise.
20903 (update_ssa): Likewise.
20904 * tree-sra.c (scan_function): Likewise.
20905 (decide_instantiations): Likewise.
20906 (scalarize_parms): Likewise.
20907 * tree-ssa-alias-warnings.c (build_reference_table): Likewise.
20908 (dsa_named_for): Likewise.
20909 * tree-ssa-structalias.c (update_alias_info): Likewise.
20910 (merge_smts_into): Likewise.
20912 2008-02-25 Janne Blomqvist <jb@gcc.gnu.org>
20915 * doc/invoke.texi (-fcx-limited-range): Document new option.
20916 * toplev.c (process_options): Handle -fcx-fortran-rules.
20917 * common.opt: Add documentation for -fcx-fortran-rules.
20919 2008-02-25 Janne Blomqvist <jb@gcc.gnu.org>
20922 * doc/invoke.texi (-fcx-limited-range): Correct to be in line with
20923 actual behaviour and C99.
20925 2008-02-26 Ben Elliston <bje@au.ibm.com>
20927 * config/rs6000/rs6000.h (ASM_CPU_POWER5_SPEC): Define.
20928 (ASM_CPU_POWER6_SPEC): Likewise.
20929 (ASM_CPU_SPEC): Pass %(asm_cpu_power5) for -mcpu=power5.
20930 Likewise, pass %(asm_cpu_power6) for -mcpu=power6.
20931 (EXTRA_SPECS): Add asm_cpu_power5, asm_cpu_power6 spec strings.
20933 2008-02-25 Richard Guenther <rguenther@suse.de>
20935 * tree-flow.h (uid_decl_map_hash, uid_decl_map_eq): Move ...
20936 * tree.h (uid_decl_map_hash, uid_decl_map_eq): ... here.
20937 (lookup_decl_from_uid): Declare.
20938 * tree-ssa.c (uid_decl_map_eq, uid_decl_map_hash): Move ...
20939 * tree.c (uid_decl_map_eq, uid_decl_map_hash): ... here.
20940 (decl_for_uid_map): New global hashtable mapping DECL_UID
20942 (init_ttree): Allocate it.
20943 (insert_decl_to_uid_decl_map): New helper function.
20944 (make_node_stat): Insert new decls into the map.
20945 (copy_node_stat): Likewise.
20946 (lookup_decl_from_uid): New function.
20947 (print_decl_for_uid_map_statistics): New helper.
20948 (dump_tree_statistics): Call it.
20950 * tree-flow.h (struct gimple_df): Make referenced_vars a bitmap.
20951 (referenced_var_iterator): Adjust.
20952 (FOR_EACH_REFERENCED_VAR): Adjust.
20953 (FOR_EACH_REFERENCED_VAR_IN_BITMAP): New iterator.
20954 (num_referenced_vars): Adjust.
20955 * tree-flow-inline.h (gimple_referenced_vars): Adjust.
20956 (first_referenced_var): Remove.
20957 (end_referenced_vars_p): Likewise.
20958 (next_referenced_var): Likewise.
20959 (referenced_var_iterator_set): New helper function.
20960 * tree-dfa.c (referenced_var_lookup): Adjust.
20961 (referenced_var_check_and_insert): Likewise.
20962 (remove_referenced_var): Likewise.
20963 * tree-ssa.c (verify_flow_insensitive_alias_info): Use
20964 FOR_EACH_REFERENCED_VAR_IN_BITMAP.
20965 (verify_call_clobbering): Likewise.
20966 (verify_memory_partitions): Likewise.
20967 (init_tree_ssa): Allocate bitmap instead of hashtable for
20969 (delete_tree_ssa): Adjust.
20970 * tree-ssa-alias.c (mark_aliases_call_clobbered): Use
20971 FOR_EACH_REFERENCED_VAR_IN_BITMAP.
20972 (compute_tag_properties): Likewise.
20973 (set_initial_properties): Likewise.
20974 (find_partition_for): Likewise.
20975 (update_reference_counts): Likewise.
20976 (dump_may_aliases_for): Likewise.
20977 * tree-ssa-operands.c (add_virtual_operand): Likewise.
20978 (add_call_clobber_ops): Likewise.
20979 (add_call_read_ops): Likewise.
20980 (get_asm_expr_operands): Likewise.
20981 * tree-into-ssa.c (dump_decl_set): Likewise.
20982 (update_ssa): Likewise.
20983 * tree-sra.c (scan_function): Likewise.
20984 (decide_instantiations): Likewise.
20985 (scalarize_parms): Likewise.
20986 * tree-ssa-alias-warnings.c (build_reference_table): Likewise.
20987 (dsa_named_for): Likewise.
20988 * tree-ssa-structalias.c (update_alias_info): Likewise.
20989 (merge_smts_into): Likewise.
20991 2008-02-25 Andreas Krebbel <krebbel1@de.ibm.com>
20994 * cse.c (cse_insn): Avoid creation of overlapping MEMs.
20995 * alias.c (nonoverlapping_memrefs_p): Export for use in other modules.
20996 * alias.h (nonoverlapping_memrefs_p): Likewise.
20998 2008-02-25 Jan Beulich <jbeulich@novell.com>
21000 * Makefile.in: Also prefix uses of crt0.o and mcrt0.o with $(T).
21001 * config/i386/netware-libgcc.exp: Add __bswap?i2,
21002 __emultls_get_address, __emultls_register_common,
21003 __floatundi?f, and _Unwind_GetIPInfo.
21004 * config/i386/netware.c (gen_stdcall_or_fastcall_decoration):
21005 Sync with config/i386/winnt.c:gen_stdcall_or_fastcall_suffix().
21006 (gen_regparm_prefix): Likewise.
21007 (i386_nlm_encode_section_info): Sync with
21008 config/i386/winnt.c:i386_pe_encode_section_info().
21009 (i386_nlm_maybe_mangle_decl_assembler_name): New.
21010 i386_nlm_mangle_decl_assembler_name): New.
21011 (netware_override_options): New.
21012 * config/i386/netware.h (netware_override_options): Declare.
21013 (OVERRIDE_OPTIONS): Re-define to netware_override_options.
21014 (i386_nlm_mangle_decl_assembler_name): Declare.
21015 (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Define.
21017 2008-02-25 Ben Elliston <bje@au.ibm.com>
21020 * c-decl.c (grokdeclarator): Remove unused local variables
21021 `typedef_type' and `type_as_written'.
21023 (find_rarely_executed_basic_blocks_and_crossing_edges): Remove
21024 unused local variable `has_hot_blocks'.
21025 (fix_crossing_conditional_branches): Remove unused local variable
21028 2008-02-25 Uros Bizjak <ubizjak@gmail.com>
21030 PR middle-end/19984
21031 * builtins.def (BUILT_IN_NAN): Define as c99 builtin
21032 using DEF_C99_BUILTIN.
21033 (BUILT_IN_NANF): Ditto.
21034 (BUILT_IN_NANL): Ditto.
21036 2008-02-25 Ayal Zaks <zaks@il.ibm.com>
21037 Revital Eres <eres@il.ibm.com>
21039 * modulo-sched.c (calculate_must_precede_follow): Address TODO
21040 regarding the order of two dependent insns in the same row.
21042 2008-02-25 Eric Botcazou <ebotcazou@adacore.com>
21044 * stor-layout.c (layout_decl): Do not bump the alignment of a
21045 bit-field to more than byte alignment if it is packed.
21047 2008-02-24 David Edelsohn <edelsohn@gnu.org>
21049 * config/rs6000/rs6000.c (processor_costs): Add cache costs for
21052 2008-02-24 Diego Novillo <dnovillo@google.com>
21054 http://gcc.gnu.org/ml/gcc-patches/2008-02/msg01094.html
21057 * tree-vrp.c (vrp_evaluate_conditional): With
21058 -Wtype-limits, emit a warning when comparing against a
21059 constant outside the natural range of OP0's type.
21060 * c.opt (Wtype-limits): Move ...
21061 * common.opt (Wtype-limits): ... here.
21063 2008-02-24 Edmar Wienskoski <edmar@freescale.com>
21065 * config.gcc (powerpc*-*-*): Add new cores e300c2 and e300c3.
21066 * config/rs6000/e300c2c3.md: New file.
21067 * config/rs6000/rs6000.c (processor_costs): Add new costs for
21069 (rs6000_override_options): Add e300c2 and e300c3 cases to
21070 processor_target_table. Do not allow usage of Altivec or Spe
21071 with e300 cores. Initialize rs6000_cost for e300c2 and e300c3.
21072 (rs6000_issue_rate): Set issue rate for e300c2 and e300c3.
21073 * config/rs6000/rs6000.h (processor_type): Add
21074 PROCESSOR_PPCE300C2 and PROCESSOR_PPCE300C3.
21075 (ASM_CPU_SPEC): Add e300c2 and e300c3.
21076 * config/rs6000/rs6000.md (define_attr "cpu"): Add ppce300c2
21077 and ppce300c3. Include e300c2c3.md.
21079 2008-02-23 David Edelsohn <edelsohn@gnu.org>
21081 * config/rs6000/rs6000.h (CONSTANT_ALIGNMENT): Use STRICT_ALIGNMENT
21082 instead of TARGET_STRICT_ALIGN.
21084 2008-02-23 Joseph Myers <joseph@codesourcery.com>
21086 * explow.c (memory_address): Assert that the generated address is
21089 2008-02-23 Francois-Xavier Coudert <coudert@clipper.ens.fr>
21092 * config/darwin-protos.h: Add darwin_patch_builtins prototype.
21093 * config/darwin-ppc-ldouble-patch.def: New file.
21094 * config/rs6000/darwin.h (SUBTARGET_INIT_BUILTINS): New macro.
21095 * config/rs6000/rs6000.c (rs6000_init_builtins): Call
21096 SUBTARGET_INIT_BUILTINS if defined.
21097 * config/darwin.c (darwin_patch_builtin, darwin_patch_builtins):
21100 2008-02-23 Andrew Pinski <andrew_pinski@playstation.sony.com>
21103 * simplify-rtx.c (simplify_binary_operation_1): Add simplification
21104 of (and X (ior (not X) Y) and (and (ior (not X) Y) X).
21106 2008-02-23 Andrew Pinski <andrew_pinski@playstation.sony.com>
21109 * c-pch.c (c_common_valid_pch): Make the "too short to be a PCH
21110 file" warning condtional on -Winvalid-PCH.
21112 2008-02-23 Daniel Jacobowitz <dan@codesourcery.com>
21114 * expmed.c (extract_bit_field): Always use adjust_address for MEM.
21116 2008-02-23 Uros Bizjak <ubizjak@gmail.com>
21120 * config/i386/mmx.md (*mov<mode>_internal_rex64): Use "!y" to
21121 prevent reload from using MMX registers.
21122 (*mov<mode>_internal): Ditto.
21123 (*movv2sf_internal_rex64): Ditto.
21124 (*movv2sf_internal): Ditto.
21126 2008-02-23 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
21128 PR documentation/31569
21129 * doc/install.texi2html: Use makeinfo --no-number-sections.
21131 2008-02-22 Nathan Froyd <froydnj@codesourcery.com>
21133 * config/rs6000/rs6000.c (rs6000_legitimize_address): Check to
21134 ensure that we can address an entire entity > 8 bytes. Don't
21135 generate reg+reg addressing for such data.
21137 2008-02-22 Nathan Froyd <froydnj@codesourcery.com>
21139 * config/rs6000/rs6000.h (CONSTANT_ALIGNMENT): Don't overalign
21140 strings when optimizing for size, unless the target cares about
21143 2008-02-22 Tom Tromey <tromey@redhat.com>
21145 * regclass.c (current_pass): Remove declaration.
21147 2008-02-22 Anatoly Sokolov <aesok@post.ru>
21149 * config/avr/libgcc.S (__RAMPZ__): Define.
21150 (__do_copy_data): Add for devices with 128KB code memory.
21152 2008-02-22 Nathan Froyd <froydnj@codesourcery.com>
21154 * config/rs6000/linuxspe.h (SUBSUBTARGET_OVERRIDE_OPTIONS):
21156 * config/rs6000/eabispe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Likewise.
21158 2008-02-22 Hans-Peter Nilsson <hp@axis.com>
21160 * config/cris/cris.h (REG_CLASS_FROM_LETTER): Recognize 'b' for
21163 2008-02-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
21166 * c-typeck.c (build_binary_op): Warn about floating point
21167 comparisons if FLOAT_TYPE_P, not only for REAL_TYPE.
21169 2008-02-21 Janis Johnson <janis187@us.ibm.com>
21172 * config/rs6000/rs6000.c (rs6000_altivec_abi): Clarify comment.
21173 (rs6000_explicit_options): Split abi into spe_abi and altivec_abi,
21175 (rs6000_override_options): Set altivec_abi as default, not override,
21176 for 64-bit GNU/Linux; for 32-bit GNU/Linux default to altivec_abi for
21177 TARGET_ALTIVEC; default to TARGET_ALTIVEC_VRSAVE when AltiVec ABI
21178 is used; use new member spe_abi.
21179 (rs6000_handle_option): Set rs6000_explicit_options.vrsave; use
21180 spe_abi and altivec_abi.
21182 2008-02-22 Tomas Bily <tbily@suse.cz>
21184 * tree-vectorizer.c (vect_is_simple_reduction): Fix comment typo.
21186 2008-02-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
21189 * config.build (build_file_translate): Set to `CMD //c' only if
21191 * Makefile.in (build_file_translate): Improve comment.
21193 2008-02-21 Jan Hubicka <jh@suse.cz>
21195 * predict.def (PRED_TREE_OPCODE_POSITIVE, PRED_TREE_OPCODE_NONEQUAL,
21196 PRED_TREE_OPCODE_POSITIVE, PRED_TREE_OPCODE_NONEQUAL, PRED_CALL,
21197 PRED_TREE_EARLY_RETURN, PRED_NULL_RETURN): Update.
21199 2008-02-21 Michael Matz <matz@suse.de>
21202 * config/i386/i386.c (ix86_expand_branch): Add missing breaks.
21204 2008-02-21 Uros Bizjak <ubizjak@gmail.com>
21206 * config/i386/i386.md (mov<mode>cc): Macroize expander from movsfcc,
21207 movdfcc and movxfcc using X87MODEF mode iterator and SSE_FLOAT_MODE_P
21208 as insn constraint.
21209 * config/i386/sse.md (<sse>_movup<ssemodesuffixf2c>): Macroize insn
21210 from sse_movups adn sse2_movupd using SSEMODEF2P mode iterator and
21211 SSE_VEC_FLOAT_MODE_P as insn constraint.
21212 (<sse>_movmskp<ssemodesuffixf2c>): Ditto from similar patterns.
21213 (sse4a_movnt<mode>): Macroize insn from sse4a_movntsf and
21214 sse4a_movntdf using MODEF mode iterator.
21215 (sse4a_vmmovnt<mode>): Macroize insn form sse4a_vmmovntv2df and
21216 sse4a_vmmovntv4sf using SSEMODEF2P mode iterator.
21217 (sse4_1_blendp<ssemodesuffixf2c>): Ditto from similar patterns.
21218 (sse4_1_blendvp<ssemodesuffixf2c>): Ditto.
21219 (sse4_1_dpp<ssemodesuffixf2c>): Ditto.
21220 (sse4_1_roundp<ssemodesuffixf2c>): Ditto.
21221 (sse4_1_rounds<ssemodesuffixf2c>): Ditto.
21223 2008-02-21 Richard Guenther <rguenther@suse.de>
21225 * tree.def (PAREN_EXPR): New tree code.
21226 * fold-const.c (fold_unary): Remove PAREN_EXPR around constants
21228 * tree-pretty-print.c (dump_generic_node): Handle PAREN_EXPR.
21229 * expr.c (expand_expr_real_1): Likewise.
21230 * tree-inline.c (estimate_num_insns_1): Likewise.
21231 * tree-complex.c (expand_complex_move): Likewise.
21232 * tree-vectorizer.c (vect_is_simple_use): Treat PAREN_EXPR (x)
21235 2008-02-20 Kaz Kojima <kkojima@gcc.gnu.org>
21238 * config/sh/sh.c (find_barrier): Don't go past 'from' argument.
21240 2008-02-20 Kaz Kojima <kkojima@gcc.gnu.org>
21243 * config/sh/sh.md (jump_compact): Disable for crossing jumps.
21245 * config/sh/sh.c (find_barrier): Don't go past
21246 NOTE_INSN_SWITCH_TEXT_SECTIONS note.
21248 2008-02-20 DJ Delorie <dj@redhat.com>
21250 * config/h8300/h8300.md (insv): Force source operand to be a register.
21252 * config/h8300/h8300.c (h8300_expand_epilogue): Emit return insn
21253 as a jump, not as a plain insn.
21255 2008-02-20 Seongbae Park <seongbae.park@gmail.com>
21257 * doc/invoke.texi (Warning Options): Add new option
21258 -Wframe-larger-than=.
21259 (-Wframe-larger-than): Document.
21261 * flags.h (warn_frame_larger_than, frame_larger_than_size):
21262 Add declarations for new option variables.
21264 * final.c (final_start_function): Check the frame size
21265 before emission and issue a Wframe-larger-than warning.
21267 * opts.c (warn_frame_larger_than, frame_larger_than_size):
21268 Add definitions for new option variables.
21269 (common_handle_option): Handle new option OPT_Wframe_larger_than_.
21271 * common.opt (Wframe-larger-than=): New option.
21273 2008-02-20 Uros Bizjak <ubizjak@gmail.com>
21275 * config/i386/sse.md (<sse>_vmmul<mode>3): Fix typo in asm template.
21276 (<sse>_div<mode>3): Ditto.
21277 (<sse>_vmdiv<mode>3): Ditto.
21278 (<sse>_vmsqrt<mode>2): Ditto.
21279 (*smax<mode>3): Ditto.
21280 (sse5_frcz<mode>2): Ditto.
21281 (sse5_vmfrcz<mode>2): Ditto. Use TARGET_SSE5 instead of TARGET_ROUND
21282 as insn constraint.
21284 2008-02-20 Richard Guenther <rguenther@suse.de>
21286 PR middle-end/35265
21287 * builtins.c (validate_arg): If we want an INTEGER_TYPE,
21288 be happy with INTEGRAL_TYPE_P.
21290 2008-02-20 Richard Guenther <rguenther@suse.de>
21292 * fold-const.c (split_tree): Associate floatig-point expressions
21293 if flag_associative_math is set.
21295 2008-02-20 Richard Guenther <rguenther@suse.de>
21297 * tree.h (fold_real_zero_addition_p): Declare.
21298 * fold-const.c (fold_real_zero_addition_p): Export.
21299 * tree-ssa-reassoc.c (eliminate_using_constants): Also handle
21300 floating-point operations with zero and one.
21302 2008-02-20 Paolo Bonzini <bonzini@gnu.org>
21304 * doc/install.texi: Correct references to CFLAGS, replacing them
21305 with BOOT_CFLAGS. Document flags used during bootstrap for
21308 2008-02-20 Uros Bizjak <ubizjak@gmail.com>
21310 * config/i386/i386.h (SSE_VEC_FLOAT_MODE_P): New define.
21311 * config/i386/i386.md (*sse_setcc<mode>): Macroize from *sse_setccsf
21312 and *sse_setccdf using MODEF mode iterator and SSE_FLOAT_MODE_P as
21314 (smin<mode>3): Ditto from similar patterns.
21315 (smax<mode>3): Ditto.
21316 (*ieee_smin<mode>3): Ditto.
21317 (*ieee_smax<mode>3): Ditto.
21318 * config/i386/sse.md (sse): New mode attribute.
21319 (mov<mode>): Macroize expander from movv4sf and movv2df using
21320 SSEMODEF2P mode iterator.
21321 (<sse>_movnt<mode>): Ditto from similar patterns. Use
21322 SSE_VEC_FLOAT_MODE_P as insn constraint.
21323 (storent<mode>): Ditto.
21324 (storent<mode>): Macroize expander from storentsf and storentdf using
21325 MODEF mode iterator.
21326 (neg<mode>2): Macroize from negv4sf2 and negv2df2 using SSEMODEF2P
21327 mode iterator and SSE_VEC_FLOAT_MODE_P as insn constraint.
21328 (abs<mode>2): Ditto from similar patterns.
21329 (add<mode>3, *add<mode>3, <sse>_vmadd<mode>3): Ditto.
21330 (sub<mode>3, *sub<mode>3, <sse>_vmsub<mode>3): Ditto.
21331 (<sse>_div<mode>3, <sse>_vmdiv<mode>3): Ditto.
21332 (<sse>_vmsqrt<mode>2): Ditto.
21333 (smin<mode>3, *smin<mode>3_finite, *smin<mode>3)
21334 (<sse>_vmsmin<mode>3, *ieee_smin<mode>3): Ditto.
21335 (smax<mode>3, *smax<mode>3_finite, *smax<mode>3)
21336 (<sse>_vmsmax<mode>3, *ieee_smax<mode>3): Ditto.
21337 (<sse>_maskcmp<mode>3): Macroize from sse_maskcmpv4sf3,
21338 sse_maskcmpsf3, sse2_maskcmpv2df3 and sse2_maskcmpdf3 using SSEMODEF4
21339 mode iterator. Use SSE_FLOAT_MODE_P with SSE_VEC_FLOAT_MODE_P as
21341 (<sse>_comi): Macroize from sse_comi and sse2_comi using MODEF mode
21342 iterator and SSE_FLOAT_MODE_P as insn constraint.
21343 (<sse>_ucomi): Ditto from similar patterns.
21344 (<sse>_vmmaskcmp<mode>3): Macroize from sse_vmmaskcmpv4sf3 and
21345 sse2_vmmaskcmpv2df3 using SSEMODEF2P mode iterator and
21346 SSE_VEC_FLOAT_MODE_P as insn constraint.
21347 (vcond<mode>): Ditto from similar patterns.
21348 (and<mode>3, *and<mode>3): Ditto.
21349 (<sse>_nand<mode>3): Ditto.
21350 (ior<mode>3, *ior<mode>3): Ditto.
21351 (xor<mode>3, *xor<mode>3): Ditto.
21352 (*and<mode>3): Macroize from *andsf3 and *anddf3 using MODEF mode
21353 iterator and SSE_FLOAT_MODE_P as insn constraint.
21354 (*nand<mode>3): Ditto from similar patterns.
21355 (*ior<mode>3): Ditto.
21356 (*xor<mode>3): Ditto.
21358 2008-02-20 Ira Rosen <irar@il.ibm.com>
21360 * config/spu/spu.md (vec_unpacku_hi_v8hi, vec_unpacku_lo_v8hi,
21361 vec_unpacks_hi_v8hi, vec_unpacks_lo_v8hi, vec_unpacku_hi_v16qi,
21362 vec_unpacku_lo_v16qi, vec_unpacks_lo_v16qi): Implement.
21364 2008-02-19 Jan Hubicka <jh@suse.cz>
21366 * predict.c (tree_bb_level_predictions): Remove variable next
21367 mistakely introduced by previous commit.
21369 2008-02-19 Jan Hubicka <jh@suse.cz>
21371 * predict.c (predict_paths_leading_to): Rewrite.
21372 (predict_paths_for_bb): New.
21373 (tree_bb_level_predictions): Update call of predict_paths_leading_to.
21375 2008-02-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
21378 * Makefile.in (build_file_translate): New.
21379 (gcc-vers.texi): Use it for translating $(abs_srcdir).
21380 * config.build (build_file_translate): Set to `CMD //c' on MinGW.
21381 * configure.ac (build_file_translate): Substitute it.
21382 * configure: Regenerate.
21384 2008-02-19 Jan Hubicka <jh@suse.cz>
21386 PR rtl-optimization/34408
21387 * see.c (see_def_extension_not_merged): Copy subreg so we don't have
21390 2008-02-19 Jan Hubicka <jh@suse.cz>
21392 PR middle-end/28779
21393 * tree-inline.c (estimate_num_insns_1): Fix counting of cost of
21396 2008-02-19 H.J. Lu <hongjiu.lu@intel.com>
21399 * config/i386/i386-modes.def: Revert the last DI alignment
21400 change until Ada people can look into it.
21402 2008-02-19 Nick Clifton <nickc@redhat.com>
21404 * opts.c (print_specific_help): Fix typo in --help text.
21406 2008-02-19 Jakub Jelinek <jakub@redhat.com>
21409 * config/i386/cpuid.h (__cpuid, __get_cpuid_max): Use special
21410 32-bit inline asm without asm alternatives for host GCC < 3.0.
21412 2008-02-19 Richard Guenther <rguenther@suse.de>
21414 PR tree-optimization/34989
21415 * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Re-structure.
21416 Allow propagation to INDIRECT_REF if we can simplify only.
21418 2008-02-19 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
21420 * c-common.c (warn_for_collisions_1): Use appropriate option when
21423 2008-02-19 Nick Clifton <nickc@redhat.com>
21426 * opts.c (undocumented_msg): Leave blank unless checking is enabled.
21427 (handle_options): Fix indentation.
21428 (print_filtered_help): If no language-specific options were
21429 displayed tell the user how to list all the options supported by
21430 the language's front-end.
21431 (print_specific_help): Fix indentation and remove duplicate line.
21432 (common_handle_option): Handle the -v option.
21433 For --help enable the display of undocumented options if the -v
21434 switch has been included on the command line.
21435 For --help= check for overlaps in the arguments between the option
21436 classes and the language names and issue a warning when they
21437 cannot be disambiguated.
21438 * c.opt (v): Pass on to the common option handler.
21440 2008-02-19 Revital Eres <eres@il.ibm.com>
21442 * modulo-sched.c (sms_schedule): Change dump message when
21443 create_ddg function fails.
21444 (try_scheduling_node_in_cycle): Rename row to cycle.
21445 (print_partial_schedule): Rename CYCLE to ROW.
21447 2008-02-19 Christian Bruel <christian.bruel@st.com>
21448 Zdenek Dvorak <ook@ucw.cz>
21450 * tree-ssa-loop-ivopts.c (may_be_unaligned_p): Check step alignment.
21452 2008-02-19 Uros Bizjak <ubizjak@gmail.com>
21455 * config/i386/i386.md (*x86_movsicc_0_m1_se): New insn pattern.
21456 (*x86_movdicc_0_m1_se): Ditto.
21458 2008-02-19 Uros Bizjak <ubizjak@gmail.com>
21460 * config/i386/sfp-machine.h (__gcc_CMPtype): New typedef.
21461 (CMPtype): Define as __gcc_CMPtype.
21462 * config/rs6000/sfp-machine.h (__gcc_CMPtype): New typedef.
21463 (CMPtype): Define as __gcc_CMPtype.
21465 2008-02-19 Hans-Peter Nilsson <hp@axis.com>
21467 Support valgrind 3.3 for --enable-checking=valgrind.
21468 * system.h: Consolidate ENABLE_VALGRIND_CHECKING-dependent defines
21470 [!VALGRIND_MAKE_MEM_NOACCESS]: Define as VALGRIND_MAKE_NOACCESS.
21471 [!VALGRIND_MAKE_MEM_DEFINED]: Define as VALGRIND_MAKE_READABLE.
21472 [!VALGRIND_MAKE_MEM_UNDEFINED]: Define as VALGRIND_MAKE_WRITABLE.
21473 * ggc-common.c: Remove ENABLE_VALGRIND_CHECKING-dependent defines.
21474 Replace use of VALGRIND_MAKE_READABLE, VALGRIND_MAKE_WRITABLE, and
21475 VALGRIND_MAKE_NOACCESS with VALGRIND_MAKE_MEM_DEFINED,
21476 VALGRIND_MAKE_MEM_UNDEFINED, and VALGRIND_MAKE_MEM_NOACCESS
21478 * ggc-zone.c: Similar.
21479 * ggc-page.c: Similar.
21481 2008-02-19 Paul Brook <paul@codesourcery.com>
21484 * config/arm/ieee754-df.S: Fix do_it typo.
21485 * config/arm/ieee754-sf.S: Fix do_it typo.
21487 2008-02-18 H.J. Lu <hongjiu.lu@intel.com>
21490 * config/i386/i386.c (OPTION_MASK_ISA_MMX_SET): New.
21491 (OPTION_MASK_ISA_3DNOW_SET): Likewise.
21492 (OPTION_MASK_ISA_SSE_SET): Likewise.
21493 (OPTION_MASK_ISA_SSE2_SET): Likewise.
21494 (OPTION_MASK_ISA_SSE3_SET): Likewise.
21495 (OPTION_MASK_ISA_SSSE3_SET): Likewise.
21496 (OPTION_MASK_ISA_SSE4_1_SET): Likewise.
21497 (OPTION_MASK_ISA_SSE4_2_SET): Likewise.
21498 (OPTION_MASK_ISA_SSE4_SET): Likewise.
21499 (OPTION_MASK_ISA_SSE4A_SET): Likewise.
21500 (OPTION_MASK_ISA_SSE5_SET): Likewise.
21501 (OPTION_MASK_ISA_3DNOW_A_UNSET): Likewise.
21502 (OPTION_MASK_ISA_MMX_UNSET): Updated.
21503 (OPTION_MASK_ISA_3DNOW_UNSET): Updated.
21504 (OPTION_MASK_ISA_SSE_UNSET): Likewise.
21505 (OPTION_MASK_ISA_SSE3_UNSET): Likewise.
21506 (OPTION_MASK_ISA_SSSE3_UNSET): Likewise.
21507 (OPTION_MASK_ISA_SSE4_1_UNSET): Likewise.
21508 (OPTION_MASK_ISA_SSE4_2_UNSET): Likewise.
21509 (OPTION_MASK_ISA_SSE4A_UNSET): Likewise.
21510 (OPTION_MASK_ISA_SSE5_UNSET): Likewise.
21511 (OPTION_MASK_ISA_SSE4): Removed.
21512 (ix86_handle_option): Turn on bits in ix86_isa_flags and
21513 ix86_isa_flags_explicit with OPTION_MASK_ISA_XXX_SET for -mXXX.
21514 (override_options): Don't turn on implied SSE/MMX bits in
21517 2008-02-18 H.J. Lu <hongjiu.lu@intel.com>
21519 * config/i386/i386-modes.def: Use 4 byte alignment on DI for
21522 2008-02-18 Joey Ye <joey.ye@intel.com>
21524 PR middle-end/34921
21525 * tree-nested.c (insert_field_into_struct): Set type alignment
21526 to field alignment if the former is less than the latter.
21528 2008-02-18 Jakub Jelinek <jakub@redhat.com>
21530 * BASE-VER: Set to 4.4.0.
21532 2008-02-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
21534 * doc/c-tree.texi: Use @dots{} and @enddots{} where appropriate.
21535 * doc/cfg.texi: Likewise.
21536 * doc/extend.texi: Likewise.
21537 * doc/gty.texi: Likewise.
21538 * doc/invoke.texi: Likewise.
21539 * doc/loop.texi: Likewise.
21540 * doc/md.texi: Likewise.
21541 * doc/passes.texi: Likewise.
21542 * doc/rtl.texi: Likewise.
21543 * doc/sourcebuild.texi: Likewise.
21544 * doc/tm.texi: Likewise.
21545 * doc/tree-ssa.texi: Likewise.
21547 2008-02-17 Richard Guenther <rguenther@suse.de>
21549 PR middle-end/35227
21550 * tree-complex.c (init_parameter_lattice_values): Handle parameters
21551 without default definition.
21553 2008-02-17 Richard Guenther <rguenther@suse.de>
21555 PR tree-optimization/35231
21556 * tree-vrp.c (register_edge_assert_for): Do not assume A == 0
21559 2008-02-17 Uros Bizjak <ubizjak@gmail.com>
21562 2008-02-15 Uros Bizjak <ubizjak@gmail.com>
21563 * config/i386/sfp-machine.h (CMPtype): Define as typedef using
21564 libgcc_cmp_return mode.
21566 2008-02-16 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
21569 * doc/invoke.texi (-std): Clarify description of -std= and -ansi.
21571 2008-02-16 Ralf Corsepius <ralf.corsepius@rtems.org>
21573 * config/m68k/t-rtems (M68K_MLIB_CPU): Add 5208, 5307, 5407, 5475
21576 2008-02-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
21578 * doc/c-tree.texi: Use `@.' where appropriate.
21579 * doc/extend.texi: Likewise.
21580 * doc/install.texi: Likewise.
21581 * doc/invoke.texi: Likewise.
21582 * doc/loop.texi: Likewise.
21583 * doc/makefile.texi: Likewise.
21584 * doc/md.texi: Likewise.
21585 * doc/passes.texi: Likewise.
21586 * doc/standards.texi: Likewise.
21587 * doc/tm.texi: Likewise.
21589 2008-02-15 Jakub Jelinek <jakub@redhat.com>
21591 PR middle-end/35196
21592 * omp-low.c (expand_omp_for_generic): Don't initialize fd->v
21594 (expand_omp_for_static_nochunk): Initialize fd->v in seq_start_bb
21595 rather than in entry_bb.
21597 2008-02-15 Uros Bizjak <ubizjak@gmail.com>
21599 * config/i386/sfp-machine.h (CMPtype): Define as typedef using
21600 libgcc_cmp_return mode.
21602 2008-02-15 Jakub Jelinek <jakub@redhat.com>
21604 PR middle-end/35130
21605 * tree-nested.c (convert_call_expr): Put FRAME.* vars into
21606 OMP_CLAUSE_SHARED rather than OMP_CLAUSE_FIRSTPRIVATE clause.
21608 2008-02-15 Richard Guenther <rguenther@suse.de>
21609 Zdenek Dvorak <ook@ucw.cz>
21611 PR tree-optimization/35164
21612 * tree-flow.h (stmt_references_abnormal_ssa_name): Declare.
21613 * tree-dfa.c (stmt_references_abnormal_ssa_name): New function.
21614 * tree-ssa-forwprop.c (tree_ssa_forward_propagate_single_use_vars):
21615 Only propagate addresses which do not have abnormal SSA_NAMEs
21618 2008-02-15 Joseph Myers <joseph@codesourcery.com>
21621 * config/m68k/m68k.h (DWARF_CIE_DATA_ALIGNMENT): Define.
21623 2008-02-15 Jan Hubicka <jh@suse.cz>
21625 PR middle-end/35149
21626 * ipa.c (cgraph_remove_unreachable_nodes): Clear local.inlinable flag.
21628 2008-02-15 Uros Bizjak <ubizjak@gmail.com>
21630 PR middle-end/34621
21631 * function.c (pad_to_arg_alignment): Remove test for STACK_BOUNDARY
21632 when calculating alignment_pad.
21634 2008-02-15 Uros Bizjak <ubizjak@gmail.com>
21636 * config/i386/i386.h (CLEAR_RATIO): Use MIN macro.
21637 (WIDEST_HARDWARE_FP_SIZE): Use LONG_DOUBLE_TYPE_SIZE define.
21638 * config/i386/darwin.h (PREFERRED_STACK_BOUNDARY): Use MAX macro
21639 and STACK_BOUNDARY define.
21641 2008-02-14 Danny Smith <dannysmith@users.sourceforge.net>
21643 PR preprocessor/35061
21644 * c-pragma.c (handle_pragma_pop_macro): Check that
21645 pushed_macro_table has been allocated.
21647 2008-02-14 Eric Botcazou <ebotcazou@adacore.com>
21649 PR middle-end/35136
21650 * gimplify.c (force_gimple_operand_bsi): Revert 2008-02-12 change.
21651 (force_gimple_operand): Likewise.
21652 * tree-ssa-loop-ivopts.c (may_be_nonaddressable_p): Add new cases
21653 for TARGET_MEM_REF and CONVERT_EXPR/NON_LVALUE_EXPR/NOP_EXPR.
21654 Also recurse on the operand for regular VIEW_CONVERT_EXPRs.
21655 (find_interesting_uses_address): Check addressability and alignment
21656 of the base expression only after substituting bases of IVs into it.
21658 2008-02-14 Michael Matz <matz@suse.de>
21661 * function.c (instantiate_virtual_regs_in_insn): Reload address
21662 before falling back to reloading the whole operand.
21664 2008-02-14 Andreas Krebbel <krebbel1@de.ibm.com>
21666 * config/s390/s390.c (s390_mainpool_start): Emit the pool
21667 before the first section switch note.
21669 2008-02-14 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
21671 * doc/bugreport.texi: Update copyright years.
21672 * doc/c-tree.texi: Likewise.
21673 * doc/cfg.texi: Likewise.
21674 * doc/cpp.texi: Likewise.
21675 * doc/cppinternals.texi: Likewise.
21676 * doc/fragments.texi: Likewise.
21677 * doc/frontends.texi: Likewise.
21678 * doc/gcc.texi: Likewise.
21679 * doc/gty.texi: Likewise.
21680 * doc/hostconfig.texi: Likewise.
21681 * doc/implement-c.texi: Likewise.
21682 * doc/libgcc.texi: Likewise.
21683 * doc/loop.texi: Likewise.
21684 * doc/makefile.texi: Likewise.
21685 * doc/options.texi: Likewise.
21686 * doc/passes.texi: Likewise.
21687 * doc/rtl.texi: Likewise.
21688 * doc/sourcebuild.texi: Likewise.
21689 * doc/standards.texi: Likewise.
21690 * doc/tree-ssa.texi: Likewise.
21691 * doc/trouble.texi: Likewise.
21693 * doc/extend.texi: Use @: or add comma where appropriate.
21694 * doc/invoke.texi: Likewise.
21695 * doc/tm.texi: Likewise.
21697 2008-02-14 Alan Modra <amodra@bigpond.net.au>
21700 * config/rs6000/rs6000.md (restore_stack_block): Force operands[1]
21703 2008-02-14 Jesper Nilsson <jesper.nilsson@axis.com>
21705 * doc/md.texi (clz, ctz): Add reference.
21706 * doc/rtl.texi (clz, ctz): Likewise.
21708 2008-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
21711 * Makefile.in (gcc-vers.texi): Use abs_srcdir for the value of
21714 2008-02-13 Andreas Krebbel <krebbel1@de.ibm.com>
21716 * config/s390/s390.c (struct constant_pool): New field
21717 emit_pool_after added.
21718 (s390_mainpool_start): Set the emit_pool_after flag according
21719 to the section switch notes.
21720 (s390_mainpool_finish): Consider emit_pool_after when emitting
21721 the literal pool at the end of the function.
21722 (s390_chunkify_start): Force literal pool splits at section
21725 2008-02-13 Michael Matz <matz@suse.de>
21728 * var-tracking.c (clobber_variable_part): Correctly traverse the
21731 2008-02-13 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
21734 * doc/invoke.texi (Debugging Options): Remove -fdump-tree-inlined.
21735 Add -fdump-ipa-inline.
21736 * tree-dump.c (dump_files): Remove tree-inlined dump.
21737 * tree-pass.h (tree_dump_index): Remove TDI_inlined.
21739 2008-02-12 Richard Guenther <rguenther@suse.de>
21741 PR tree-optimization/35171
21742 * tree-vect-patterns.c (vect_recog_dot_prod_pattern): Deal with
21745 2008-02-12 Richard Guenther <rguenther@suse.de>
21747 PR middle-end/35163
21748 * fold-const.c (fold_widened_comparison): Use get_unwidened in
21749 value-preserving mode. Disallow final truncation.
21751 2008-02-12 Eric Botcazou <ebotcazou@adacore.com>
21753 PR middle-end/35136
21754 * gimplify.c (force_gimple_operand_bsi): Move SSA renaming
21755 code from here to...
21756 (force_gimple_operand): ...here.
21758 2008-02-12 Jakub Jelinek <jakub@redhat.com>
21761 * tree-sra.c (sra_build_assignment): fold_convert SRC if copying
21762 non-compatible pointers.
21763 (generate_element_copy): If SRC and DST are RECORD_TYPEs with
21764 different FIELD_DECLs, try harder by comparing field offsets, sizes
21767 PR inline-asm/35160
21768 * function.c (match_asm_constraints_1): Don't replace the same input
21771 2008-02-12 Anatoly Sokolov <aesok@post.ru>
21773 * config/avr/avr.h (AVR_HAVE_RAMPZ): Define.
21774 * config/avr/avr.c (expand_prologue): Save RAMPZ register.
21775 (expand_epilogue): Restore RAMPZ register.
21776 * config/avr/avr.md (RAMPZ_ADDR): New constant.
21778 2008-02-11 Kai Tietz <kai.tietz@onevision.com>
21780 * config/i386/cygwin.asm: (__alloca): Correct calling
21781 convention and alignment.
21782 (__chkstk): Force 8 byte stack alignment.
21784 2008-02-11 Uros Bizjak <ubizjak@gmail.com>
21785 Richard Guenther <rguenther@suse.de>
21787 PR tree-optimization/33992
21788 * tree-ssa-loop-im.c (rewrite_bittest): Fixup the type of
21789 the zero we compare against.
21791 2008-02-10 Danny Smith <dannysmith@users.sourceforge.net>
21793 PR libfortran/35063
21794 * gthr-win32.h (__gthread_mutex_destroy_function): New function
21795 to CloseHandle after unlocking to prevent accumulation of handle
21798 2008-02-09 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
21800 PR middle_end/34150
21801 * pa.c (legitimize_pic_address): Add REG_EQUAL note on sets with a
21802 pic_label_operand source. Similarly, add a REG_LABEL_OPERAND note
21803 and update LABEL_NUSES during and after reload.
21805 2008-02-08 Steven Bosscher <stevenb.gcc@gmail.com>
21807 PR middle-end/34627
21808 * combine.c (simplify_if_then_else): Make sure the comparison is
21809 against const0_rtx when simplifying to (abs x) or (neg (abs X)).
21811 2008-02-08 Richard Sandiford <rsandifo@nildram.co.uk>
21814 * double-int.h: Don't include gmp.h for GENERATOR_FILEs.
21815 (mpz_set_double_int, mpz_get_double_int): Hide from GENERATOR_FILEs.
21816 * real.h: Don't include gmp.h or mpfr.h for GENERATOR_FILEs.
21817 (real_from_mpfr, mpfr_from_real): Hide from GENERATOR_FILEs.
21818 * tree.h (get_type_static_bounds): Likewise.
21820 2008-02-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
21822 * doc/invoke.texi (Option Summary, C++ Dialect Options)
21823 (Objective-C and Objective-C++ Dialect Options, Warning Options):
21824 Make -Wfoo language annotations match what the compiler outputs.
21826 2008-02-08 Sa Liu <saliu@de.ibm.com>
21828 * config/spu/spu-builtins.def: Fixed wrong parameter type in spu
21829 intrinsics spu_convts, spu_convtu, spu_convtf.
21831 2008-02-08 Hans-Peter Nilsson <hp@axis.com>
21833 * doc/extend.texi (Function Attributes) <noinline>: Mention
21834 asm ("") as method to keep calls.
21836 2008-02-07 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
21839 * doc/options.texi (Options): Replace references to opts.sh with
21841 * opts-common.c: Likewise.
21842 * optc-gen.awk: Likewise.
21844 2008-02-07 Andreas Krebbel <krebbel1@de.ibm.com>
21846 * config/s390/s390.h (FUNCTION_ARG_REGNO_P): Fix fprs for 64 bit.
21848 2008-02-07 Richard Henderson <rth@redhat.com>
21851 * config/alpha/alpha.c (alpha_emit_xfloating_compare): Use an
21852 EXPR_LIST for the REG_EQUAL instead of a comparison with a
21855 2008-02-07 Uros Bizjak <ubizjak@gmail.com>
21857 PR tree-optimization/35085
21858 * tree-ssa-reassoc.c (rewrite_expr_tree): Enable destructive update
21859 for operand entry oe2 in addition to operand entry oe3 in order to
21860 expose more opportunities for vectorizer sum reduction.
21862 2008-02-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
21865 * Makefile.in (LIBS): Remove $(GMPLIBS).
21866 (cc1-dummy, cc1): Add $(GMPLIBS).
21868 2008-02-06 Jan Hubicka <jh@suse.cz>
21871 * i386.md (moddf_integer): Do not produce partial memory stalls for
21872 targets where it hurts.
21874 2008-02-06 Uros Bizjak <ubizjak@gmail.com>
21877 * optabs.c (expand_float): Do not check for decimal modes when
21878 expanding unsigned integer through signed conversion.
21880 2008-02-06 Nick Clifton <nickc@redhat.com>
21882 * config/stormy16/stormy16.md (eqbranchsi): Replace a match_dup
21883 inside the clobber with a match_operand and duplicated operand
21884 number in the constraint.
21885 (ineqbranchsi): Delete redundant comment.
21887 2008-02-06 Ralf Corsepius <ralf.corsepius@rtems.org>
21889 * config/arm/rtems-elf.h (TARGET_OS_CPP_BUILTINS): Add
21890 builtin_define ("__USE_INIT_FINI__").
21891 * config/h8300/t-rtems (MULTILIB_OPTION,MULTILIB_DIRNAMES): Add
21893 * gthr-rtems.h: Remove __GTHREAD_MUTEX_INIT.
21895 2008-02-06 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
21897 PR documentation/30330
21898 * doc/invoke.texi (C++ Dialect Options)
21899 (Objective-C and Objective-C++ Dialect Options, Warning Options):
21900 For each warning option -Wfoo that allows -Wno-foo, ensure both
21901 -Wfoo and -Wno-foo are listed in the option index. Fix index
21902 entry of -Wswitch-default, index -Wnormalized= including the
21903 `=', and -Wlarger-than-@var{len} including @var{len}.
21905 2008-02-05 Uros Bizjak <ubizjak@gmail.com>
21907 * config/i386/i386.md (floatunssisf2): Use
21908 ix86_expand_convert_uns_sisf_sse also for TARGET_SSE.
21909 (floatunssi<mode>2): Rename from floatunssisf2 and floatunssidf2.
21910 Macroize expander using MODEF mode iterator.
21912 2008-02-05 Diego Novillo <dnovillo@google.com>
21914 http://gcc.gnu.org/ml/gcc-patches/2008-02/msg00140.html
21917 * tree-vrp.c (vrp_evaluate_conditional): Revert fix for PR 33738.
21919 2008-02-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
21922 * toplev.c (print_version): Honor `indent' for GMP/MPFR warnings.
21924 2008-02-05 H.J. Lu <hongjiu.lu@intel.com>
21927 * config/i386/i386.c (ix86_function_sseregparm): Add an arg
21928 to indicate if a message should be generated.
21929 (init_cumulative_args): Updated.
21930 (function_value_32): Likewise.
21932 2008-02-05 Joseph Myers <joseph@codesourcery.com>
21934 * doc/include/texinfo.tex: Update to version 2008-02-04.16.
21936 2008-02-05 Uros Bizjak <ubizjak@gmail.com>
21939 * config/i386/i386.md (floatunsisf2): Enable for TARGET_SSE_MATH only.
21940 Call ix86_expand_convert_uns_sisf_sse for TARGET_SSE2.
21942 2008-02-04 Diego Novillo <dnovillo@google.com>
21944 http://gcc.gnu.org/ml/gcc-patches/2008-02/msg00110.html
21947 * tree-vrp.c (vrp_evaluate_conditional): With
21948 -Wtype-limits, emit a warning when comparing against a
21949 constant outside the natural range of OP0's type.
21951 2008-02-04 Richard Guenther <rguenther@suse.de>
21953 PR middle-end/33631
21954 * expr.c (count_type_elements): Give for unions instead of
21957 2008-02-04 Richard Guenther <rguenther@suse.de>
21959 PR middle-end/35043
21960 * gimplify.c (gimplify_init_ctor_eval): Convert array indices
21961 to TYPE_DOMAINs base type instead of using bitsizetype here.
21963 2008-02-03 Jason Merrill <jason@redhat.com>
21965 * print-tree.c (print_node) [CONSTRUCTOR]: Print elements.
21967 2008-02-04 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
21970 * doc/invoke.texi (C++ Dialect Options, Optimize Options)
21971 (HPPA Options, i386 and x86-64 Options, IA-64 Options)
21972 (RS/6000 and PowerPC Options): Fix typos and markup.
21973 * doc/passes.texi (Tree-SSA passes): Likewise.
21975 2008-02-02 Michael Matz <matz@suse.de>
21978 * postreload-gcse.c (record_last_reg_set_info_regno): Renamed
21979 from record_last_reg_set_info.
21980 (record_last_reg_set_info): Take an RTX argument, iterate over all
21981 constituent hardregs.
21982 (record_last_set_info, record_opr_changes): Change calls to
21983 new signature or to record_last_reg_set_info_regno.
21985 2008-02-02 Gerald Pfeifer <gerald@pfeifer.com>
21987 * doc/extend.texi (X86 Built-in Functions): Fix grammar.
21989 2008-02-01 Hans-Peter Nilsson <hp@axis.com>
21991 PR rtl-optimization/34773
21992 * reg-notes.def (EQUAL): Mention significance of combination of
21993 REG_EQUAL and REG_RETVAL.
21994 * fwprop.c (try_fwprop_subst): Don't add REG_EQUAL to an
21995 insn that has a REG_RETVAL.
21997 2008-02-01 Roger Sayle <roger@eyesopen.com>
22000 * configure.ac (--enable-fixed-point): Disable unless explicitly
22002 * configure: Regenerate.
22004 2008-02-01 Richard Guenther <rguenther@suse.de>
22007 * invoke.texi (-finline-limit): Remove no longer true parts
22008 of the documentation. Note that there is no default value.
22010 2008-02-01 Andrew Pinski <pinskia@gmail.com>
22011 Mark Mitchell <mark@codesourcery.com>
22012 Ben Elliston <bje@au.ibm.com>
22015 * doc/extend.texi (Other Builtins): Document.
22017 2008-01-31 Tom Browder <tom.browder@gmail.com>
22019 * doc/c-tree.texi (Types): Fix grammar.
22020 (Expression trees): Ditto.
22021 * doc/passes.texi (Tree-SSA passes): Ditto.
22023 * doc/configterms.texi (Configure Terms): Fix typo.
22024 * doc/cpp.texi (Common Predefined Macros): Ditto.
22025 * doc/md.texi (Machine Constraints): Ditto.
22027 * doc/makefile.texi (Makefile): Add comma.
22029 2008-01-31 Tom Browder <tom.browder@gmail.com>
22030 Gerald Pfeifer <gerald@pfeifer.com>
22032 * doc/sourcebuild.texi (Front End): Remove references to CVS
22033 and CVSROOT/modules.
22034 (Texinfo Manuals): Replace reference to CVS by one to SVN.
22035 (Back End): Remove reference to CVS.
22037 2008-01-31 Richard Sandiford <rsandifo@nildram.co.uk>
22040 * config/mips/mips.c (gen_load_const_gp): New function, taking a
22042 (mips16_gp_pseudo_reg): ...here.
22043 * config/mips/mips.md (load_const_gp): Replace with...
22044 (load_const_gp_<mode>): ...this :P-based insn.
22046 2008-01-31 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
22048 * doc/invoke.texi (-ansi): Mention explicitly corresponding -std=
22049 options. Minor fixes.
22050 (-std): Move reference to standards closer to where language
22051 standards are first mentioned.
22053 2008-01-31 Richard Sandiford <rsandifo@nildram.co.uk>
22055 PR rtl-optimization/34995
22056 * reload.c (alternative_allows_const_pool_ref): Take an rtx
22057 parameter and return a bool. If the rtx parameter is nonnull,
22058 check that it satisfies an EXTRA_MEMORY_CONSTRAINT.
22059 (find_reloads): Update call accordingly. Pass the new operand
22060 if it needed no address reloads, otherwise pass null.
22062 2008-01-30 Richard Henderson <rth@redhat.com>
22065 * tree.c (build_type_attribute_qual_variant): Skip TYPE_DOMAIN
22066 for unbounded arrays.
22068 2008-01-30 Silvius Rus <rus@google.com>
22070 * config/i386/xmmintrin.h (_mm_prefetch): Add const to first arg.
22072 2008-01-30 Jan Hubicka <jh@suse.cz>
22075 * i386.c (init_cumulative_args): Use real function declaration when
22078 2008-01-30 Richard Sandiford <rsandifo@nildram.co.uk>
22080 PR rtl-optimization/34998
22081 * global.c (build_insn_chain): Treat non-subreg_lowpart
22082 SUBREGs of pseudos as clobbering all the words covered by the
22083 SUBREG, not just all the bytes.
22084 * ra-conflict.c (clear_reg_in_live): Likewise. Take the
22085 original df_ref rather than an extract parameter.
22086 (global_conflicts): Update call accordingly.
22088 2008-01-30 Andreas Krebbel <krebbel1@de.ibm.com>
22090 * config/s390/fixdfdi.h (__fixunstfdi, __fixtfdi): Rearrange
22091 the overflow check to make it easier to read.
22092 (__fixtfdi): Change the type of the ll member in union
22093 long_double to UDItype_x.
22095 2008-01-30 Jakub Jelinek <jakub@redhat.com>
22097 PR middle-end/34969
22098 * cgraph.h (cgraph_update_edges_for_call_stmt): New prototype.
22099 * cgraph.c (cgraph_update_edges_for_call_stmt): New function.
22100 * tree-inline.c (fold_marked_statements): Call
22101 cgraph_update_edges_for_call_stmt if folding a call statement.
22102 * cgraphunit.c (verify_cgraph_node): Set cfun to this_cfun for
22103 debug_generic_stmt calls, reset it back afterwards.
22106 * c-decl.c (start_decl): Don't pedwarn about TREE_READONLY
22108 * c-typeck.c (build_external_ref): Don't pedwarn about
22109 static vars in current function's scope.
22111 2008-01-29 Joseph Myers <joseph@codesourcery.com>
22113 * config.gcc (i[34567]86-*-nto-qnx*): Remove deprecation.
22115 2008-01-29 Bernhard Fischer <aldot@gcc.gnu.org>
22118 * ipa-struct-reorg.c: Fix spelling.
22119 * params.def: Ditto.
22121 2008-01-29 Richard Guenther <rguenther@suse.de>
22123 PR middle-end/35006
22124 * tree-inline.h (struct copy_body_data): Add remapping_type_depth
22126 * tree-inline.c (remap_type): Increment remapping_type_depth
22127 around remapping types.
22128 (copy_body_r): Only add referenced variables if they are referenced
22129 from code, not types.
22131 2008-01-29 Douglas Gregor <doug.gregor@gmail.com>
22142 * c-pretty-print.c (pp_c_type_qualifier_list): Don't try to print
22143 qualifiers for an ERROR_MARK_NODE or a NULL_TREE.
22145 2008-01-28 Andy Hutchinson <hutchinsonandy@netscape.net>
22148 * config/avr/avr.c (expand_prologue): Use correct QI mode frame
22149 pointer for tiny stack.
22151 2008-01-28 Bernhard Fischer <aldot@gcc.gnu.org>
22153 * doc/tree-ssa.texi: Add cindex PHI nodes and improve wording.
22155 2008-01-28 Bernhard Fischer <aldot@gcc.gnu.org>
22157 * config/vx-common.h: Fix typo in comment.
22159 2008-01-28 Ian Lance Taylor <iant@google.com>
22163 * tree-ssa-copyrename.c (copy_rename_partition_coalesce): Don't
22164 coalesce pointers if they have different DECL_NO_TBAA_P values.
22165 * tree-ssa-copy.c (may_propagate_copy): Don't propagate copies
22166 between variables with different DECL_NO_TBAA_P values.
22168 2008-01-28 Nathan Froyd <froydnj@codesourcery.com>
22171 * config/rs6000/rs6000.c (small_data_operand): Vectors and floats
22172 are not legitimate small data references on SPE targets.
22174 2008-01-28 David Daney <ddaney@avtrex.com>
22176 * doc/install.texi (mips-*-*): Recommend binutils 2.18.
22178 2008-01-28 David Daney <ddaney@avtrex.com>
22180 * doc/install.texi (--disable-libgcj-bc): Reword documentation.
22182 2008-01-27 Joseph Myers <joseph@codesourcery.com>
22184 * config.gcc (strongarm*-*, ep9312*-*, xscale*-*, parisc*-*,
22185 m680[012]0-*, *-*-beos*, *-*-kaos*, *-*-linux*aout*,
22186 *-*-linux*libc1*, *-*-solaris2.[0-6], *-*-solaris2.[0-6].*,
22187 *-*-sysv*, *-*-windiss*, alpha*-*-unicosmk*, cris-*-aout,
22188 hppa1.1-*-pro*, hppa1.1-*-osf*, hppa1.1-*-bsd*,
22189 i[34567]86-sequent-ptx4*, i[34567]86-*-nto-qnx*,
22190 i[34567]86-*-sco3.2v5*, i[34567]86-*-uwin*, powerpc-*-chorusos*,
22191 vax-*-bsd*, vax-*-ultrix*): Mark obsolete.
22193 2008-01-27 Bernhard Fischer <aldot@gcc.gnu.org>
22195 * basic-block.h (condjump_equiv_p): Fix comment.
22197 2008-01-27 Bernhard Fischer <aldot@gcc.gnu.org>
22199 * tree-pretty-print.c (print_generic_decl, print_generic_stmt,
22200 print_generic_stmt_indented): Fix comment.
22202 2008-01-27 Bernhard Fischer <aldot@gcc.gnu.org>
22204 * configure.ac (__stack_chk_fail): Add detecion for availability
22205 of SSP in uClibc by checking if __UCLIBC_HAS_SSP__ is defined.
22206 * configure: Regenerate.
22208 2008-01-26 Maxim Kuvyrkov <maxim@codesourcery.com>
22210 PR middle-end/34688
22211 * final.c (output_addr_const): Handle TRUNCATE.
22213 2008-01-26 Zdenek Dvorak <ook@ucw.cz>
22216 * tree-ssa-loop-ivopts.c (comp_cost): New type.
22217 (zero_cost, infinite_cost): New constants.
22218 (struct cost_pair): Change type of cost to comp_cost.
22219 (struct iv_ca): Change type of cand_use_cost and cost to comp_cost.
22220 (new_cost, add_costs, sub_costs, compare_costs, infinite_cost_p):
22222 (set_use_iv_cost, force_expr_to_var_cost, force_var_cost,
22223 split_address_cost, ptr_difference_cost, difference_cost,
22224 get_computation_cost_at, get_computation_cost,
22225 determine_use_iv_cost_generic, determine_use_iv_cost_address,
22226 determine_use_iv_cost_condition, determine_use_iv_costs,
22227 cheaper_cost_pair, iv_ca_recount_cost, iv_ca_set_no_cp,
22228 iv_ca_set_cp, iv_ca_cost, iv_ca_new, iv_ca_dump, iv_ca_extend,
22229 iv_ca_narrow, iv_ca_prune, try_improve_iv_set, find_optimal_iv_set):
22230 Change type of cost to comp_cost.
22231 (determine_iv_cost): Increase cost of non-original ivs, instead
22232 of decreasing the cost of original ones.
22233 (get_address_cost): Indicate the complexity of the addressing mode
22235 (try_add_cand_for): Prefer using ivs not specific to some object.
22236 * tree-flow.h (force_expr_to_var_cost): Declaration removed.
22238 2008-01-26 Peter Bergner <bergner@vnet.ibm.com>
22239 Janis Johnson <janis187@us.ibm.com>
22242 * doc/tm.texi (TARGET_EXPAND_TO_RTL_HOOK): Document.
22243 (TARGET_INSTANTIATE_DECLS): Likewise.
22244 * target.h (expand_to_rtl_hook): New target hook.
22245 (instantiate_decls): Likewise.
22246 * function.c (instantiate_decl): Make non-static. Rename to...
22247 (instantiate_decl_rtl): ... this.
22248 (instantiate_expr): Use instantiate_decl_rtl.
22249 (instantiate_decls_1): Likewise.
22250 (instantiate_decls): Likewise.
22251 (instantiate_virtual_regs: Call new instantiate_decls taget hook.
22252 * function.h (instantiate_decl_rtl): Add prototype.
22253 * cfgexpand.c (target.h): New include.
22254 (tree_expand_cfg): Call new expand_to_rtl_hook target hook.
22255 * target-def.h (TARGET_EXPAND_TO_RTL_HOOK): New define.
22256 (TARGET_INSTANTIATE_DECLS): Likewise.
22257 (TARGET_INITIALIZER): New target hooks added.
22258 * config/rs6000/rs6000-protos.h (rs6000_secondary_memory_needed_rtx):
22260 * config/rs6000/rs6000.c (tree-flow.h): New include.
22261 (machine_function): Add sdmode_stack_slot field.
22262 (rs6000_alloc_sdmode_stack_slot): New function.
22263 (rs6000_instantiate_decls): Likewise.
22264 (rs6000_secondary_memory_needed_rtx): Likewise.
22265 (rs6000_check_sdmode): Likewise.
22266 (TARGET_EXPAND_TO_RTL_HOOK): Target macro defined.
22267 (TARGET_INSTANTIATE_DECLS): Likewise.
22268 (rs6000_hard_regno_mode_ok): Allow SDmode.
22269 (num_insns_constant): Likewise. Handle _Decimal32 constants.
22270 (rs6000_emit_move): Handle SDmode.
22271 (function_arg_advance): Likewise.
22272 (function_arg): Likewise.
22273 (rs6000_gimplify_va_arg): Likewise. Add special handling of
22274 SDmode var args for 32-bit compiles.
22275 (rs6000_secondary_reload_class): Handle SDmode.
22276 (rs6000_output_function_epilogue): Likewise.
22277 (rs6000_function_value): Simplify if statement.
22278 (rs6000_libcall_value): Likewise.
22279 * config/rs6000/rs6000.h (SLOW_UNALIGNED_ACCESS): Handle SDmode.
22280 (SECONDARY_MEMORY_NEEDED_RTX): Add define.
22281 * config/rs6000/dfp.md (movsd): New define_expand and splitter.
22282 (movsd_hardfloat): New define_insn.
22283 (movsd_softfloat): Likewise.
22284 (movsd_store): Likewise.
22285 (movsd_load): Likewise.
22286 (extendsddd2): Likewise.
22287 (extendsdtd2): Likewise.
22288 (truncddsd2): Likewise.
22289 (movdd_hardfloat64): Fixup comment.
22290 (UNSPEC_MOVSD_LOAD): New constant.
22291 (UNSPEC_MOVSD_STORE): Likewise.
22293 2008-01-26 Jakub Jelinek <jakub@redhat.com>
22296 * c-pretty-print.c (pp_c_exclusive_or_expression): Handle
22298 (pp_c_logical_and_expression): Handle TRUTH_AND_EXPR.
22299 (pp_c_logical_or_expression): Handle TRUTH_OR_EXPR.
22300 (pp_c_expression): Handle TRUTH_AND_EXPR, TRUTH_OR_EXPR
22301 and TRUTH_XOR_EXPR.
22303 2008-01-26 David Edelsohn <edelsohn@gnu.org>
22306 * config.gcc: Separate AIX 5.3 from AIX 6.1.
22307 * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Define
22308 __LONGDOUBLE128 too.
22309 * config/rs6000/aix61.h: New file.
22311 2008-01-26 Richard Sandiford <rsandifo@nildram.co.uk>
22313 PR rtl-optimization/34959
22314 * optabs.c (expand_unop): In libcall notes, give ffs, clz, ctz,
22315 popcount and parity rtxes the same mode as their operand.
22316 Truncate or extend the result to the return value's mode
22319 2008-01-26 Richard Sandiford <rsandifo@nildram.co.uk>
22322 * config/mips/mips-protos.h (mips_expand_call): Return an rtx.
22323 * config/mips/mips.h (FIRST_PSEUDO_REGISTER): Rename FAKE_CALL_REGNO
22324 to GOT_VERSION_REGNUM.
22325 (CALL_REALLY_USED_REGISTERS): Set the GOT_VERSION_REGNUM entry to 0.
22326 (EPILOGUE_USES): Include GOT_VERSION_REGNUM if TARGET_USE_GOT.
22327 * config/mips/mips.c (mips_emit_call_insn): New function.
22328 (mips_call_tls_get_addr): Call mips_expand_call directly.
22329 (mips16_copy_fpr_return_value): Use mips_emit_call_insn rather than
22331 (mips16_build_call_stub): Likewise. Return the call insn or null.
22332 (mips_expand_call): Update the call to mips16_build_call_stub
22333 accordingly and a remove redundant condition. Assert that MIPS16
22334 stubs do not use lazy binding. Use mips_emit_call_insn and return
22336 (mips_extra_live_on_entry): Include GOT_VERSION_REGNUM if
22338 (mips_hard_regno_mode_ok_p): Allow SImode for GOT_VERSION_REGNUM.
22339 (mips_avoid_hazard): Remove hazard_set handling.
22340 * config/mips/mips.md (UNSPEC_EH_RECEIVER): Rename to...
22341 (UNSPEC_RESTORE_GP): ...this.
22342 (UNSPEC_SET_GOT_VERSION, UNSPEC_UPDATE_GOT_VERSION): New constants.
22343 (FAKE_CALL_REGNO): Rename to...
22344 (GOT_VERSION_REGNUM): ...this.
22345 (type): Add "ghost" value. Add an associated insn reservation.
22346 (hazard_set): Remove.
22347 (exception_receiver): Rename to...
22348 (restore_gp): ...this and update the unspec identifier accordingly.
22349 (exception_receiver, nonlocal_got_receiver): New expanders.
22350 (load_call<mode>): Use GOT_VERSION_REGNUM. Don't set
22351 FAKE_CALL_REGNO. Remove hazard_set attribute.
22352 (set_got_version, update_got_version): New patterns.
22354 2008-01-26 Danny Smith <dannysmith@users.sourceforge.net>
22357 * config/i386/cygming.h (ASM_OUTPUT_LABELREF): Define.
22359 2008-01-25 Joseph Myers <joseph@codesourcery.com>
22362 * doc/install.texi2html: Generate gcc-vers.texi.
22364 2008-01-25 DJ Delorie <dj@redhat.com>
22366 * config/m32c/m32c.h (ASM_PREFERRED_EH_DATA_FORMAT): Define.
22368 2008-01-25 Joseph Myers <joseph@codesourcery.com>
22370 * config/c4x: Remove directory.
22371 * config.gcc (crx-*, mt-*): Mark obsolete.
22372 (c4x-*, tic4x-*, c4x-*-rtems*, tic4x-*-rtems*, c4x-*, tic4x-*,
22373 h8300-*-rtemscoff*, ns32k-*-netbsdelf*, ns32k-*-netbsd*,
22374 sh-*-rtemscoff*): Remove cases.
22375 * defaults.h (C4X_FLOAT_FORMAT): Remove.
22376 * real.c (encode_c4x_single, decode_c4x_single,
22377 encode_c4x_extended, decode_c4x_extended, c4x_single_format,
22378 c4x_extended_format): Remove.
22379 * real.h (c4x_single_format, c4x_extended_format): Remove.
22380 * doc/extend.texi (interrupt, naked): Remove mention of attributes
22382 (Pragmas): Remove comment about c4x pragmas.
22383 * doc/install.texi (c4x): Remove target-specific instructions.
22384 * doc/invoke.texi (TMS320C3x/C4x Options): Remove.
22385 * doc/md.texi (Machine Constraints): Remove C4x documentation.
22386 * doc/tm.texi (MEMBER_TYPE_FORCES_BLK, c_register_pragma): Do not
22387 refer to C4x source files as examples.
22388 (C4X_FLOAT_FORMAT): Remove documentation.
22390 2008-01-25 Bernd Schmidt <bernd.schmidt@analog.com>
22392 * config/bfin/bfin.c (override_options): Reorder tests so that
22393 flag_pic gets enabled for -msep-data.
22395 2008-01-25 Richard Guenther <rguenther@suse.de>
22397 PR middle-end/32244
22398 * expr.c (expand_expr_real_1): Reduce result of LSHIFT_EXPR
22399 to its bitfield precision if required.
22401 2008-01-25 Jakub Jelinek <jakub@redhat.com>
22403 PR middle-end/33880
22404 * tree-nested.c (walk_omp_for): New function.
22405 (convert_nonlocal_reference, convert_local_reference): Call
22406 walk_omp_for on OMP_FOR.
22407 (convert_call_expr): Call walk_body on OMP_FOR's
22408 OMP_FOR_PRE_INIT_BODY.
22410 2008-01-25 Richard Guenther <rguenther@suse.de>
22412 PR tree-optimization/34966
22413 * tree-ssa-math-opts.c (execute_cse_sincos_1): For all but
22414 default defs and PHI_NODEs we have to insert after the
22415 defining statement.
22417 2008-01-24 Nick Clifton <nickc@redhat.com>
22419 * config/stormy16/stormy16-lib2.c (MIN_UNITS_PER_WORD):
22420 Provide a default definition.
22421 (LIBGCC2_UNITS_PER_WORD): Likewise.
22423 * config/stormy16/stormy16.c: Include df.h for the prototype
22424 for df_regs_ever_live_p.
22425 (xstormy16_expand_builtin_va_start): Convert the stack offset
22426 into a component_ref and then use POINTER_PLUS_EXPR to add it
22427 to the incoming_virtual_args_rtx.
22428 (xstormy16_gimplify_va_arg_expr): Rename to
22429 xstormy16_gimplify_va_arg_expr.
22430 Use POINTER_PLUS_EXPR when performing pointer arithmetic.
22431 (TARGET_GIMPLIFY_VA_ARG_EXPR): Use renamed
22432 xstormy16_gimplify_va_arg_expr.
22433 Fix up some formatting issues.
22435 * config/stormy16/stormy16.c: (xstormy16_carry_plus_operand):
22436 Move to predicates.md.
22437 (xs_hi_general_operand): Likewise.
22438 (xs_hi_nonmemory_operand): Likewise.
22439 * config/stormy16/predicates.md:
22440 (xstormy16_carry_plus_operand): New predicate.
22441 (xs_hi_general_operand): New predicate.
22442 (xs_hi_nonmemory_operand): New predicate.
22443 * config/stormy16/stormy16-protos.h:
22444 (xstormy16_carry_plus_operand): Delete prototype.
22445 (xs_hi_general_operand): Likewise.
22446 (xs_hi_nonmemory_operand): Likewise.
22448 * config/storm16/stormy16.md (addhi3): Remove earlyclobber
22449 modifiers as they are no longer needed and they can trigger
22450 reload spill failures.
22452 * config/storm16/stormy16.md (ineqbranchsi): Replace match_dup
22453 with a match_operand in order to help reload.
22455 * config/storm16/stormy16.md (movhi_internal): Replace 'r'
22456 constraint with 'e' for the 8th alternative as this version of
22457 the mov.w instruction only accepts the lower 8 registers.
22459 2008-01-25 Uros Bizjak <ubizjak@gmail.com>
22462 * simplifx-rtx.c (simplify_const_binary_operation) [VEC_CONCAT]:
22463 Consider only CONST_INT, CONST_DOUBLE and CONST_FIXED as constant
22466 2008-01-25 Jakub Jelinek <jakub@redhat.com>
22468 PR middle-end/33333
22469 * gimplify.c (gimplify_omp_for): Gimplify OMP_FOR_PRE_BODY.
22471 2008-01-25 Golovanevsky Olga <olga@il.ibm.com>
22473 * ipa-struct-reorg.c (remove_str_allocs_in_func, remove_str_allocs):
22475 (remove_structure): Update allocations list before removing structure.
22477 2008-01-25 Golovanevsky Olga <olga@il.ibm.com>
22479 * ipa-struct-reorg.c (is_safe_cond_expr,
22480 create_new_stmts_for_cond_expr): Use integer_zerop function,
22481 that recognize not only zero-pointer, but zero-integer too.
22483 2008-01-25 Ben Elliston <bje@au.ibm.com>
22486 * fixproto: Escape "." in sed expression that strips leading "./".
22488 2008-01-24 H.J. Lu <hongjiu.lu@intel.com>
22491 * gcc.c (SWITCH_OK): Removed.
22492 (SWITCH_LIVE): Changed to bit.
22493 (SWITCH_FALSE): Likewise.
22494 (SWITCH_IGNORE): Likewise.
22495 (switchstr): Change live_cond to unsigned int.
22496 (process_command): Replace SWITCH_OK with 0.
22497 (do_self_spec): Likewise.
22498 (set_collect_gcc_options): Check the SWITCH_IGNORE bit.
22499 (give_switch): Likewise.
22500 (used_arg): Likewise.
22501 (do_spec_1): Set the SWITCH_IGNORE bit.
22502 (check_live_switch): Check both SWITCH_LIVE and SWITCH_FALSE
22503 bits. Set the SWITCH_LIVE bit.
22505 2008-01-24 Andreas Krebbel <krebbel1@de.ibm.com>
22507 * config/s390/s390.h (MOVE_RATIO): Define new target macro.
22509 2008-01-24 Richard Sandiford <rsandifo@nildram.co.uk>
22511 PR tree-optimization/34472
22512 * ipa-struct-reorg.c (safe_cond_expr_check): Change the DATA
22513 parameter to a "bool *" and set *DATA to false if there is
22514 an unsafe access. Do not delete the structure here.
22515 (check_cond_exprs): Delete it here instead.
22516 (check_cond_exprs, exclude_cold_structs): Do not increase
22517 I when removing a structure.
22519 2008-01-24 Uros Bizjak <ubizjak@gmail.com>
22522 * config/i386/i386.c (ix86_expand_vector_init): Consider only
22523 CONST_INT, CONST_DOUBLE and CONST_FIXED as constant vector elements.
22525 2008-01-24 Jakub Jakub Jelinek <jakub@redhat.com>
22527 PR middle-end/34934
22528 * tree-stdarg.c (reachable_at_most_once): Use VEC vector instead of
22529 a fixed vector for stack.
22531 2008-01-24 Ben Elliston <bje@au.ibm.com>
22534 * doc/gcc.texi (Software development): Add a direntry for g++.
22536 2008-01-23 Hans-Peter Nilsson <hp@axis.com>
22538 * config/cris/cris.h (CC1PLUS_SPEC, OPTIMIZATION_OPTIONS): Drop
22539 stale and straggling -fforce-addr comments above.
22541 * config/cris/cris.h (CRIS_SUBTARGET_VERSION, TARGET_VERSION): Don't
22543 * config/cris/linux.h (CRIS_SUBTARGET_VERSION): Don't define.
22544 * config/cris/aout.h (CRIS_SUBTARGET_VERSION): Don't define.
22546 2008-01-23 Michael Matz <matz@suse.de>
22549 * dwarf2out.c (force_type_die): Use modified_type_die instead of
22552 2008-01-23 Andreas Krebbel <krebbel1@de.ibm.com>
22554 * ipa-struct-reorg.c (create_new_malloc): Use pointer type as
22555 malloc result type.
22557 2008-01-23 Anatoly Sokolov <aesok@post.ru>
22559 * config/avr/avr.c (avr_current_arch): New variable.
22560 (avr_arch_types): Add 'avr31' and 'avr51' entries.
22561 (avr_arch): Add 'ARCH_AVR31' and 'ARCH_AVR51'.
22562 (avr_mcu_types): Add 'avr31' and 'avr51' architectures.
22563 (avr_override_options): Init 'avr_current_arch'.
22564 (base_arch_s): Move from here...
22565 * config/avr/avr.h (base_arch_s): ... here. Add new members
22566 'have_elpm', 'have_elpmx', 'have_eijmp_eicall', 'reserved'. Rename
22567 'mega' to 'have_jmp_call'.
22568 (TARGET_CPU_CPP_BUILTINS): Define "__AVR_HAVE_JMP_CALL__",
22569 "__AVR_HAVE_RAMPZ__", "__AVR_HAVE_ELPM__" and "__AVR_HAVE_ELPMX__"
22571 (LINK_SPEC, CRT_BINUTILS_SPECS, ASM_SPEC): Add 'avr31' and 'avr51'
22573 * config/avr/t-avr (MULTILIB_OPTIONS, MULTILIB_DIRNAMES,
22574 MULTILIB_MATCHES): Ditto.
22576 2008-01-23 Richard Guenther <rguenther@suse.de>
22578 PR middle-end/31529
22579 * cgraphunit.c (cgraph_reset_node): Always mark the node
22580 not reachable if it is not queued already.
22582 2008-01-23 Bernd Schmidt <bernd.schmidt@analog.com>
22584 * config/bfin/bfin-protos.h (WA_RETS, ENABLE_WA_RETS): New macros.
22585 * config/bfin/bfin.c (bfin_cpus): Add WA_RETS everywhere.
22586 (cputype_selected): New static variable.
22587 (bfin_handle_option): Set it if -mcpu is used.
22588 (override_option): Select default set of workarounds if no cpu type
22589 selected on the command line.
22590 (workaround_rts_anomaly): Only run if ENABLE_WA_RETS.
22592 From Michael Frysinger <michael.frysinger@analog.com>
22593 * config/bfin/bfin-protos.h (enum bfin_cpu_type): Add
22594 BFIN_CPU_BF547, BFIN_CPU_BF523, BFIN_CPU_BF524, and BFIN_CPU_BF526.
22596 * config/bfin/elf.h (LIB_SPEC): Use proper linker script
22597 for bf547, bf523, bf524, and bf526.
22598 * config/bfin/bfin.c (bfin_cpus[]): Add bf547, bf523, bf524, and
22600 * config/bfin/bfin.h (TARGET_CPU_CPP_BUILTINS): Define
22601 __ADSPBF523__ for bf523, __ADSPBF524__ for bf524,
22602 __ADSPBF526__ for bf526, __ADSPBF52x__ for all three, as well as
22603 __ADSPBF547__ and __ADSPBF54x__ for bf547.
22604 * doc/invoke.texi (Blackfin Options): Document that
22605 -mcpu now accept bf547, bf523, bf524, and bf526.
22607 2008-01-22 Eric Botcazou <ebotcazou@adacore.com>
22609 PR rtl-optimization/34628
22610 * combine.c (try_combine): Stop and undo after the first combination
22611 if an autoincrement side-effect on the first insn has effectively
22614 2008-01-22 David Edelsohn <edelsohn@gnu.org>
22617 * config/rs6000/rs6000.c (rs6000_legitimate_offset_address_p):
22618 Offset addresses are not valid for Altivec or paired float modes.
22620 2008-01-22 Jakub Jelinek <jakub@redhat.com>
22623 * c-parser.c (c_parser_omp_for_loop): Don't call c_finish_omp_for
22624 if DECL_INITIAL (decl) is error_mark_node.
22627 * c-common.c (handle_vector_size_attribute): Only allow
22628 integral, scalar float and fixed point types. Handle OFFSET_TYPE
22629 the same way as pointer, array etc. types.
22630 * tree.c (reconstruct_complex_type): Handle OFFSET_TYPE.
22633 * tree.c (build_type_attribute_qual_variant): Call
22634 build_qualified_type if attributes are equal, but quals are not.
22636 2008-01-22 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
22639 * doc/invoke.texi (-Wall): -Wall enables -Wstrict-overflow=1.
22640 * flags.h (warn_strict_aliasing): Remove.
22641 (warn_strict_overflow): Remove.
22642 * opts.c (warn_strict_aliasing): Remove.
22643 (warn_strict_overflow): Remove.
22644 * c-opts.c (c_common_handle_option): -Wall only sets
22645 -Wstrict-aliasing or -Wstrict-overflow if they are uninitialized.
22646 (c_common_post_options): Give default values to -Wstrict-aliasing
22647 and -Wstrict-overflow if they are uninitialized.
22648 * common.opt (Wstrict-aliasing): Specify Var and Init.
22649 (Wstrict-overflow): Likewise.
22651 2008-01-22 Kenneth Zadeck <zadeck@naturalbridge.com>
22653 PR rtl-optimization/26854
22654 PR rtl-optimization/34400
22655 PR rtl-optimization/34884
22656 * ddg.c (create_ddg_dep_from_intra_loop_link): Use
22658 * df.h (df_changeable_flags.DF_RD_NO_TRIM): Deleted
22659 (df_rd_bb_info.expanded_lr_out): Deleted
22660 * loop_invariant.c (find_defs): Deleted DF_RD_NO_TRIM flag.
22661 * loop_iv.c (iv_analysis_loop_init): Ditto. * df-problems.c
22662 (df_rd_free_bb_info, df_rd_alloc, df_rd_confluence_n,
22663 df_rd_bb_local_compute, df_rd_transfer_function, df_rd_free):
22664 Removed code to allocate, initialize or free expanded_lr_out.
22665 (df_rd_bb_local_compute_process_def): Restructured to make more
22667 (df_rd_confluence_n): Removed code to no apply invalidate_by_call
22668 sets if the sets are being trimmed.
22670 2008-01-22 H.J. Lu <hongjiu.lu@intel.com>
22673 * configure.ac (ld_vers): Support GNU linker version xx.xx.*
22674 (as_vers): Likewise.
22675 * configure: Regenerated.
22677 2008-01-22 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
22679 PR middle-end/33092
22680 * tree-pass.h (pass_build_alias): New pass.
22681 * tree-ssa-alias.c (gate_build_alias): New.
22682 (pass_build_alias): New.
22683 * passes.c (init_optimization_passes): Add pass_build_alias after
22684 pass_create_structure_vars.
22686 2008-01-22 Wolfgang Gellerich <gellerich@de.ibm.com>
22688 * config/s390/s390.h (S390_TDC_POSITIVE_NORMALIZED_NUMBER):
22689 Renamed to S390_TDC_POSITIVE_NORMALIZED_BFP_NUMBER.
22690 (S390_TDC_NEGATIVE_NORMALIZED_NUMBER): Renamed to
22691 S390_TDC_NEGATIVE_NORMALIZED_BFP_NUMBER.
22692 (S390_TDC_POSITIVE_DENORMALIZED_NUMBER): Renamed to
22693 S390_TDC_POSITIVE_DENORMALIZED_BFP_NUMBER.
22694 (S390_TDC_NEGATIVE_DENORMALIZED_NUMBER): Renamed to
22695 S390_TDC_NEGATIVE_DENORMALIZED_BFP_NUMBER.
22696 (S390_TDC_POSITIVE_NORMALIZED_BFP_NUMBER): New constant.
22697 (S390_TDC_NEGATIVE_NORMALIZED_BFP_NUMBER): New constant.
22698 (S390_TDC_POSITIVE_DENORMALIZED_BFP_NUMBER): New constant.
22699 (S390_TDC_NEGATIVE_DENORMALIZED_BFP_NUMBER): New constant.
22700 * config/s390/s390.md (FP_ALL): New mode iterator.
22701 (_d): New mode attribute.
22702 ("*signbit<mode>2>"): Changed mode of first operand.
22703 ("isinf<mode>2"): Changed mode of first operand.
22704 ("*TDC_insn"): Adaptation for DFP modes.
22706 2008-01-22 Ben Elliston <bje@au.ibm.com>
22708 * tree.c (check_qualified_type): Improve function description.
22710 2008-01-21 Jason Merrill <jason@redhat.com>
22713 * tree.h (TRY_CATCH_IS_CLEANUP): New macro.
22714 * tree-eh.c (honor_protect_cleanup_actions): Strip TRY_CATCH_EXPR
22717 2008-01-21 DJ Delorie <dj@redhat.com>
22719 * doc/tm.texi (HARD_REGNO_NREGS): Note that this macro must not
22722 2008-01-21 Richard Guenther <rguenther@suse.de>
22724 PR middle-end/34856
22725 * tree-cfg.c (verify_expr): Allow all invariant expressions
22726 instead of just constant class ones as reference argument.
22727 * tree-ssa-loop-im.c (for_each_index): Handle CONSTRUCTOR
22728 like any other constant.
22729 * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Likewise.
22731 2008-01-21 H.J. Lu <hongjiu.lu@intel.com>
22733 * regmove.c (fixup_match_1): Update call crossed frequencies.
22735 2008-01-21 Richard Guenther <rguenther@suse.de>
22738 * tree-inline.c (setup_one_parameter): Deal with mismatched
22739 types using a VIEW_CONVERT_EXPR.
22741 2008-01-21 Alon Dayan <alond@il.ibm.com>
22742 Olga Golovanevsky <olga@il.ibm.com>
22744 PR tree-optimization/34701
22745 * ipa-struct-reorg.c (gen_size): Fix the malloc parameter calculation
22746 when the structure size is not a power of 2.
22748 2008-01-20 Kenneth Zadeck <zadeck@naturalbridge.com>
22750 * doc/install.texi: Add doc for --enable-checking=df.
22752 2008-01-20 Kaz Kojima <kkojima@gcc.gnu.org>
22754 PR rtl-optimization/34808
22755 * emit-rtl.c (try_split): Handle REG_RETVAL notes.
22757 2008-01-20 Richard Sandiford <rsandifo@nildram.co.uk>
22759 * global.c (find_reg): Only compute EH_RETURN_DATA_REGNO once per
22762 2008-01-19 Kenneth Zadeck <zadeck@naturalbridge.com>
22764 PR rtl-optimization/26854
22765 PR rtl-optimization/34400
22766 * ddg.c (create_ddg_dep_from_intra_loop_link): Do not use
22768 * df.h (df_changeable_flags.DF_RD_NO_TRIM): New.
22769 (df_rd_bb_info.expanded_lr_out): New.
22770 * loop_invariant.c (find_defs): Added DF_RD_NO_TRIM flag.
22771 * loop_iv.c (iv_analysis_loop_init): Ditto.
22772 * df-problems.c (df_rd_free_bb_info, df_rd_alloc, df_rd_confluence_n,
22773 df_rd_bb_local_compute, df_rd_transfer_function, df_rd_free):
22774 Added code to allocate, initialize or free expanded_lr_out.
22775 (df_rd_bb_local_compute_process_def): Restructured to make
22776 more understandable.
22777 (df_rd_confluence_n): Add code to do nothing with fake edges and
22778 code to no apply invalidate_by_call sets if the sets are being trimmed.
22779 (df_lr_local_finalize): Renamed to df_lr_finalize.
22780 (df_live_local_finalize): Renamed to df_live_finalize.
22782 2008-01-20 Richard Sandiford <rsandifo@nildram.co.uk>
22785 * config/mips/mips.md (div<mode>3): Use <recip_condition> when
22786 deciding whether to use reciprocal instructions.
22788 2008-01-19 Uros Bizjak <ubizjak@gmail.com>
22790 * dwarf2out.c (dwarf2out_switch_text_section): Do not call
22791 dwarf2out_note_section_used if cold_text_section is NULL.
22793 2008-01-19 Jakub Jelinek <jakub@redhat.com>
22795 PR gcov-profile/34610
22796 * tree-cfg.c (make_edges): Mark both outgoing edges from
22797 OMP_CONTINUE and from OMP_FOR as EDGE_ABNORMAL.
22798 * omp-low.c (expand_omp_for): Clear EDGE_ABNORMAL bits
22799 from OMP_FOR and OMP_CONTINUE outgoing edges.
22801 * tree-profile.c (tree_profiling): Return early if
22802 cfun->after_tree_profile != 0. Set cfun->after_tree_profile
22804 * omp-low.c (expand_omp_parallel): Copy after_tree_profile
22805 from cfun to child_cfun.
22806 * function.h (struct function): Add after_tree_profile bit.
22808 2008-01-19 Anatoly Sokolov <aesok@post.ru>
22810 * config/avr/avr.S (_exit): Disable interrupt.
22812 2008-01-18 Kenneth Zadeck <zadeck@naturalbridge.com>
22813 Steven Bosscher <stevenb.gcc@gmail.com>
22815 PR rtl-optimization/26854
22816 PR rtl-optimization/34400
22817 * df-problems.c (df_live_scratch): New scratch bitmap.
22818 (df_live_alloc): Allocate df_live_scratch when doing df_live.
22819 (df_live_reset): Clear the proper bitmaps.
22820 (df_live_bb_local_compute): Only process the artificial defs once
22821 since the order is not important.
22822 (df_live_init): Init the df_live sets only with the variables
22823 found live by df_lr.
22824 (df_live_transfer_function): Use the df_lr sets to prune the
22825 df_live sets as they are being computed.
22826 (df_live_free): Free df_live_scratch.
22828 2008-01-18 Ian Lance Taylor <iant@google.com>
22830 * common.opt: Add fmerge-debug-strings.
22831 * dwarf2out.c (DEBUG_STR_SECTION_FLAGS): Test
22832 flag_merge_debug_strings rather than flag_merge_constants.
22833 * doc/invoke.texi (Option Summary): Mention
22834 -fmerge-debug-strings.
22835 (Debugging Options): Document -fmerge-debug-strings.
22837 2008-01-18 Ian Lance Taylor <iant@google.com>
22840 * tree.h (DECL_IS_OPERATOR_NEW): Define.
22841 (struct tree_function_decl): Add new field operator_new_flag.
22842 * tree-inline.c (expand_call_inline): When inlining a call to
22843 operator new, force the return value to go into a variable, and
22844 set DECL_NO_TBAA_P on that variable.
22845 * c-decl.c (merge_decls): Merge DECL_IS_OPERATOR_NEW flag.
22847 2008-01-18 Uros Bizjak <ubizjak@gmail.com>
22850 * dwarf2out.c (dwarf2out_switch_text_section): Do not guard with
22851 DWARF2_DEBUGGING_INFO.
22852 (dwarf2out_note_section_used): Ditto. Add prototype.
22853 (have_multiple_function_sections, text_section_used,
22854 cold_text_section_used, *cold_text_sections): Move declarations
22857 2008-01-17 Bob Wilson <bob.wilson@acm.org>
22859 * config/xtensa/unwind-dw2-xtensa.h (_Unwind_FrameState): Remove pc
22860 field and add signal_ra.
22861 * config/xtensa/unwind-dw2-xtensa.c (uw_frame_state_for): Remove
22862 assignments to frame state pc. Move end of stack check after
22863 MD_FALLBACK_FRAME_STATE_FOR.
22864 (uw_update_context_1): Use frame state signal_regs if set, instead
22865 of checking signal_frame flag.
22866 (uw_update_context): Use frame state signal_ra if set.
22867 * config/xtensa/linux.h (MD_UNWIND_SUPPORT): Define.
22868 * config/xtensa/linux-unwind.h: New file.
22870 2008-01-18 Bernhard Fischer <aldot@gcc.gnu.org>
22872 * modulo-sched.c (get_sched_window): Fix comment typo.
22874 2008-01-17 Andrew MacLeod <amacleod@redhat.com>
22876 PR tree-optimization/34648
22877 * tree-ssa-sccvn.c (visit_use): Expressions which can throw are varying.
22879 2008-01-17 Anatoly Sokolov <aesok@post.ru>
22881 * config/avr/avr.h (LINK_SPEC): Support -mrelax and -mpmem-wrap-around.
22882 * config/avr/avr.opt (mrelax, mpmem-wrap-around): Add.
22884 2008-01-17 Seongbae Park <seongbae.park@gmail.com>
22886 PR rtl-optimization/34400
22887 * df-core.c (df_worklist_dataflow_overeager,
22888 df_worklist_dataflow_doublequeue): New functions.
22889 (df_worklist_dataflow): Two different worklist solvers.
22890 * params.def (PARAM_DF_DOUBLE_QUEUE_THRESHOLD_FACTOR):
22893 2008-01-16 Sebastian Pop <sebastian.pop@amd.com>
22896 * doc/invoke.texi: Document the dependence on pthread for fopenmp
22897 and ftree-parallelize-loops.
22899 2008-01-17 Mircea Namolaru <namolaru@il.ibm.com>
22901 PR rtl-optimization/34826
22902 * loop-doloop (doloop_modify): Update the REG_BR_PROB note.
22904 2008-01-17 Andreas Krebbel <krebbel1@de.ibm.com>
22906 * global.c (find_reg): Mark the eh regs as used if necessary.
22907 * ra-conflict.c (global_conflicts): Set no_eh_reg flag.
22908 * ra.h (struct allocno): no_eh_reg field added. Changed
22909 no_stack_reg type to bitfield.
22911 2008-01-17 Eric Botcazou <ebotcazou@adacore.com>
22913 * tree.c (substitute_in_expr): Add missing 'break'.
22915 2008-01-17 Richard Guenther <rguenther@suse.de>
22917 PR tree-optimization/34825
22918 * tree-ssa-math-opts.c (is_division_by): Do not recognize
22919 x / x as division to handle.
22921 2008-01-16 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
22923 * pa64-hpux.h (LIB_SPEC): Add "-lpthread" in shared links if "-mt" or
22924 "-pthread" is specified.
22925 * pa-hpux11.h (LIB_SPEC): Likewise.
22927 2008-01-16 Janis Johnson <janis187@us.ibm.com>
22928 Peter Bergner <bergner@vnet.ibm.com>
22930 PR rtl-optimization/33796
22931 * sparseset.c (sparseset_alloc): Use xcalloc rather than xmalloc.
22933 2008-01-16 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
22935 PR libgfortran/34699
22936 * pa-hpux.h (LINK_SPEC): Only search /lib/pa1.1 and /usr/lib/pa1.1 on
22938 * pa-hpux10.h (LINK_SPEC): Likewise.
22939 * pa-hpux11.h (LINK_SPEC): Don't search /lib/pa1.1 and /usr/lib/pa1.1.
22941 2008-01-16 Richard Guenther <rguenther@suse.de>
22943 PR middle-end/32628
22944 * fold-const.c (fold_convert_const_int_from_int): Do not
22945 set overflow if that occured only because of a sign extension
22946 change when converting from/to a sizetype with the same
22947 precision and signedness.
22949 2008-01-16 Uros Bizjak <ubizjak@gmail.com>
22952 * dwarf2out.c (output_call_frame_info): Move output of FDE initial
22953 location address to the correct place. Update copyright year.
22955 2008-01-16 Sebastian Pop <sebastian.pop@amd.com>
22957 * lambda-code.c (lambda_transform_legal_p): Handle the case of
22958 no dependences in the dependence_relations vector.
22960 2008-01-16 Jan Hubicka <jh@suse.cz>
22962 PR rtl-optimization/31396
22963 * regstat.c (regstat_bb_compute_ri): Compute FREQ_CALLS_CROSSED.
22964 * cfg.c (dump_reg_info): Print it.
22965 * regs.h (struct reg_info_t): add freq_calls_crossed.
22966 (REG_FREQ_CALLS_CROSSED): New macro.
22967 * global.c (global_alloc): Compute freq_calls_crossed for allocno.
22968 (find_reg): Update call of CALLER_SAVE_PROFITABLE.
22969 * regmove.c (optimize_reg_copy_1, optimize_reg_copy_2, fixup_match_2,
22970 regmove_optimize): Update call crossed frequencies.
22971 * local-alloc.c (struct qty): Add freq_calls_crossed.
22972 (alloc_qty): Copute freq_calls_crossed.
22973 (update_equiv_regs, combine_regs): Update REG_FREQ_CALLS_CROSSED.
22974 (find_free_reg): Update call of CALLER_SAVE_PROFITABLE.
22975 * ra.h (struct allocno): Add freq_calls_crossed.
22977 2008-01-16 Sebastian Pop <sebastian.pop@amd.com>
22979 * gcc.c (LINK_COMMAND_SPEC): Add includes and link options for
22980 libgomp when compiling with ftree-parallelize-loops.
22981 (GOMP_SELF_SPECS): Add -pthread for ftree-parallelize-loops.
22983 2008-01-16 Richard Guenther <rguenther@suse.de>
22985 PR tree-optimization/34769
22986 * tree-data-ref.c (initialize_matrix_A): Revert fix for PR34458.
22987 * tree.c (int_cst_value): Instead make this function more
22988 permissive in what it accepts as valid input. Document this
22989 function always sign-extends the value.
22991 2008-01-16 Jakub Jelinek <jakub@redhat.com>
22992 Richard Guenther <rguenther@suse.de>
22995 * gimplify.c (fold_indirect_ref_rhs): Rename to ...
22996 (gimple_fold_indirect_ref_rhs): ... this.
22997 (gimple_fold_indirect_ref): New function with foldings
22998 that preserve lvalueness.
22999 (gimplify_modify_expr_rhs): Call gimple_fold_indirect_ref_rhs.
23000 * tree-flow.h (gimple_fold_indirect_ref): Declare.
23001 * tree-inline.c (copy_body_r): Use gimple_fold_indirect_ref
23002 to fold an INDIRECT_REF, fall back to the old use of
23003 fold_indirect_ref_1.
23005 2008-01-16 Sebastian Pop <sebastian.pop@amd.com>
23007 * tree-data-ref.c (subscript_dependence_tester_1): Call
23008 free_conflict_function.
23009 (compute_self_dependence): Same.
23011 2008-01-16 Uros Bizjak <ubizjak@gmail.com>
23014 * debug.h (dwarf2out_switch_text_section): Move declaration from ...
23015 * dwarf2out.c (dwarf2out_switch_text_section): ... here. Make
23017 * final.c (final_scan_insn) [NOTE_INSN_SWITCH_TEXT_SECTIONS]:
23018 Depending on dwarf2out_do_frame, call dwarf2out_switch_text_section
23019 for DWARF2_UNWIND_INFO targets.
23021 2008-01-16 Richard Guenther <rguenther@suse.de>
23024 * c-typeck.c (common_pointer_type): Do not merge inconsistent
23025 type qualifiers for function types.
23027 2008-01-15 Jerry DeLisle <jvdelisle@gcc.gnu.org>
23029 * tree-parloops.c (gen_parallel_loop): Fix ommision of declaration for
23030 loop_iterator li from previous commit.
23032 2008-01-15 Sebastian Pop <sebastian.pop@amd.com>
23034 * tree-parloops.c (gen_parallel_loop): Free loop bound estimations.
23036 2008-01-12 Sebastian Pop <sebastian.pop@amd.com>
23038 * tree-parloops.c (loop_has_blocks_with_irreducible_flag): New.
23039 (parallelize_loops): Don't parallelize irreducible components.
23041 2008-01-14 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
23044 * c-opts (c_common_post_options): Do not enable CPP
23045 flag_pedantic_errors by default.
23047 2008-01-14 Eric Botcazou <ebotcazou@adacore.com>
23049 PR rtl-optimization/31944
23050 * cse.c (remove_pseudo_from_table): New function.
23051 (merge_equiv_classes): Use above function to remove pseudo-registers.
23052 (invalidate): Likewise.
23054 2008-01-13 Richard Guenther <rguenther@suse.de>
23056 PR middle-end/34601
23057 * emit-rtl.c (set_reg_attrs_for_decl_rtl): Use DECL_MODE
23058 instead of TYPE_MODE to deal with calls from expand_one_error_var.
23060 2008-01-13 Uros Bizjak <ubizjak@gmail.com>
23062 * gcse.c (cprop_jump): Call validate_unshare_change instead of
23063 validate_change to unshare the source of the PC set.
23065 2008-01-12 Jan Hubicka <jh@suse.cz>
23067 PR middle-end/32135
23068 * tree-ssa-ccp.c (maybe_fold_offset_to_array_ref): Do not construct
23069 references above array bounds. This might trigger bounds checks for
23070 pointers to arrays.
23072 2008-01-12 Sebastian Pop <sebastian.pop@amd.com>
23074 * tree-ssa-ter.c (free_temp_expr_table): Free num_in_part and
23075 new_replaceable_dependencies.
23077 2008-01-12 Doug Kwan <dougkwan@google.com>
23079 * c-decl.c: (grokdeclarator): Use OPT_Wignored_qualifiers
23080 instead of OPT_Wreturn_type in warning due to ignored return type
23082 * c-opt.c (c_common_post_option): Add -Wignored-qualifiers to
23083 options included in -Wextra.
23084 * c.opt: New option -Wignored_qualifiers.
23085 * doc/invoke.texi (Warning Options, -Wextra): Add new option
23086 -Wignore_qualifiers.
23087 (-Wignored-qualifiers): Document.
23088 (-Wreturn-type): Remove description of functionality now handled
23089 by -Wignored-qualifiers.
23091 2008-01-12 Eric Botcazou <ebotcazou@adacore.com>
23094 * fold-const.c (fold_unary) <VIEW_CONVERT_EXPR>: Fold an existing
23095 NOP_EXPR if it is between integral types with the same precision.
23097 2008-01-12 Jan Hubicka <jh@suse.cz>
23100 * invoke.texi (max-inline-recursive-depth): Fix default value.
23102 2008-01-12 Zdenek Dvorak <ook@ucw.cz>
23104 * tree-parloops.c (transform_to_exit_first_loop): Cast nit to the
23107 2008-01-11 Bob Wilson <bob.wilson@acm.org>
23109 * config/xtensa/xtensa.c (override_options): Set flag_shlib.
23111 2008-01-11 James E. Wilson <wilson@specifix.com>
23114 * config/vax/elf.h (FRAME_POINTER_CFA_OFFSET): Define.
23116 2008-01-11 Anatoly Sokolov <aesok@post.ru>
23118 * config/avr/avr.c (expand_prologue, expand_epilogue): Don't
23119 save/restore frame pointer register and don't use 'call-prologues'
23120 optimization in function with "OS_task" attribute.
23122 2008-01-11 Eric Botcazou <ebotcazou@adacore.com>
23124 PR middle-end/31309
23125 * expr.c (copy_blkmode_from_reg): Use a mode suited to the size
23126 when copying to memory.
23128 2008-01-11 Steven Bosscher <stevenb.gcc@gmail.com>
23130 PR rtl-optimization/30905
23131 * cfgcleanup.c: Include dce.h
23132 (crossjumps_occured): New global variable.
23133 (try_crossjump_bb): Exit loop after finding a fallthru edge.
23134 If something changed, set crossjumps_occured to true.
23135 (try_optimize_cfg): Clear crossjumps_occured at the beginning.
23136 Don't add/remove fake edges to exit here...
23137 (cleanup_cfg): ...but do it here, when crossjumping.
23138 Run a fast DCE when successful crossjumps occured in the latest
23139 iteration of try_optimize_cfg.
23141 2008-01-11 Richard Guenther <rguenther@suse.de>
23143 * tree-ssa-sccvn.c (struct vn_binary_op_s): Move hashcode near opcode.
23144 (struct vn_unary_op_s): Likewise.
23145 (vn_reference_insert): Free old reference on hash collision.
23147 2008-01-10 Raksit Ashok <raksit@google.com>
23149 PR rtl-optimization/27971
23150 * combine.c (find_split_point): Split PLUS expressions which are
23151 inside a MEM rtx, and whose first operand is complex.
23153 2008-01-10 DJ Delorie <dj@redhat.com>
23155 * config/m32c/m32c.c (m32c_hard_regno_nregs_1): Renamed from...
23156 (m32c_hard_regno_nregs): ...this, which is now a wrapper.
23157 (m32c_hard_regno_ok): Call the underlying function.
23159 2008-01-10 Richard Guenther <rguenther@suse.de>
23161 PR middle-end/34683
23162 * tree-cfg.c (tree_merge_blocks): Do not go through the
23163 full-blown folding and stmt updating path if we just deal
23164 with virtual operands.
23165 * tree-ssa-copy.c (may_propagate_copy): Do not short-cut
23166 test for abnormal SSA_NAMEs.
23168 2008-01-10 Andreas Krebbel <krebbel1@de.ibm.com>
23170 PR middle-end/34641
23171 * reload.c (push_reload): Add assertions. All constants from
23172 reg_equiv_constant should have been used for replacing the respective
23174 (find_reloads_address): Invoke find_reloads_address_part for
23175 constant taken from the reg_equiv_constant array.
23177 2008-01-10 Steven Bosscher <stevenb.gcc@gmail.com>
23179 * tree-ssa-sccvn.h (struct vn_ssa_aux): Make the most accessed
23180 field (valnum) the first in the struct. Replace bools with
23183 2008-01-10 Richard Guenther <rguenther@suse.de>
23185 PR tree-optimization/34651
23186 * tree-sra.c (sra_build_assignment): Sanitize. Use the correct
23187 types and ordering for masking and converting.
23189 2008-01-09 Sebastian Pop <sebastian.pop@amd.com>
23191 PR tree-optimization/34017
23192 * lambda-code.c (lambda_loopnest_to_gcc_loopnest): Generate code
23193 also for PHI_NODE expressions.
23195 2008-01-09 Jan Hubicka <jh@suse.cz>
23197 PR tree-optimization/34708
23198 * tree-inline.c (estimate_num_insns_1): Compute cost of SWITCH_EXPR
23199 based on number of case labels.
23200 (init_inline_once): Remove switch_cost.
23201 * tree-inline.h (eni_weights_d): Remove switch_cost.
23203 2008-01-09 Richard Guenther <rguenther@suse.de>
23204 Andrew Pinski <andrew_pinski@playstation.sony.com>
23206 PR middle-end/30132
23207 * gimplify.c (gimplify_cond_expr): Do not create an addressable
23208 temporary if an rvalue is ok or an lvalue is not required.
23210 2008-01-09 Richard Guenther <rguenther@suse.de>
23212 PR middle-end/34458
23213 * tree-data-ref.c (initialize_matrix_A): Use tree_low_cst,
23214 adjust return type.
23216 2008-01-09 Richard Guenther <rguenther@suse.de>
23218 PR middle-end/34679
23219 * tree.c (host_integerp): Check for sizetype only if the
23220 type is an integer type.
23222 2008-01-09 Steven Bosscher <stevenb.gcc@gmail.com>
23225 * opts.c (decode_options): Disable inlining of functions called
23226 once if not in unit-at-a-time mode.
23228 2008-01-09 Alexandre Oliva <aoliva@redhat.com>
23230 * Makefile.in (dse.o): Remove duplicate $(RECOG_H) dependency.
23232 2008-01-08 Richard Guenther <rguenther@suse.de>
23234 PR middle-end/31863
23235 * tree-ssa-structalias.c (push_fields_onto_fieldstack): Bail
23236 out early if the result will be unused.
23238 2008-01-08 Uros Bizjak <ubizjak@gmail.com>
23243 2008-01-05 Uros Bizjak <ubizjak@gmail.com>
23244 * config/i386/i386.c (ix86_builtin_reciprocal): Remove check
23247 2008-01-08 Jan Sjodin <jan.sjodin@amd.com>
23249 * config/i386/i386.c (k8_cost, amdfam10_cost): Branch costs
23250 for vectorization tuned.
23252 2008-01-08 Richard Guenther <rguenther@suse.de>
23254 PR tree-optimization/34683
23255 * tree-ssa-operands.c (operand_build_cmp): Export.
23256 * tree-ssa-operands.h (operand_build_cmp): Declare.
23257 * tree-vn.c (vuses_compare): Remove.
23258 (sort_vuses): Use operand_build_cmp.
23259 (sort_vuses_heap): Likewise.
23260 * tree-ssa-sccvn.c (vuses_to_vec): Use VEC_reserve, not VEC_alloc
23261 to re-use old VEC if available. Do not sort already sorted VUSEs.
23262 (vdefs_to_vec): Do not sort already sorted VDEFs.
23264 2008-01-08 Jakub Jelinek <jakub@redhat.com>
23266 PR middle-end/34694
23267 * omp-low.c (copy_var_decl): Copy also DECL_SOURCE_LOCATION.
23269 2008-01-08 Uros Bizjak <ubizjak@gmail.com>
23272 * doc/invoke.texi (i386 and x86-64 Options) [mrecip]: Document
23273 limitations of reciprocal sequences on x86 targets.
23275 2008-01-08 Richard Guenther <rguenther@suse.de>
23277 PR tree-optimization/34683
23278 * tree-flow-inline.h (var_ann): Remove overzealous asserts.
23280 2008-01-07 Jakub Jelinek <jakub@redhat.com>
23283 * config/darwin.c (darwin_mergeable_string_section): Don't use
23284 .cstring if int_size_in_bytes != TREE_STRING_LENGTH.
23286 2008-01-07 Uros Bizjak <ubizjak@gmail.com>
23289 * config/i386/i386.md (neg<mode>2): Rename from negsf2, negdf2 and
23290 negxf2. Macroize expander using X87MODEF mode iterator. Change
23291 predicates of op0 and op1 to register_operand.
23292 (abs<mode>2): Rename from abssf2, absdf2 and negxf2. Macroize
23293 expander using X87MODEF mode iterator. Change predicates of
23294 op0 and op1 to register_operand.
23295 ("*absneg<mode>2_mixed", "*absneg<mode>2_sse"): Rename from
23296 corresponding patterns and macroize using MODEF macro. Change
23297 predicates of op0 and op1 to register_operand and remove
23298 "m" constraint. Disparage "r" alternative with "!".
23299 ("*absneg<mode>2_i387"): Rename from corresponding patterns and
23300 macroize using X87MODEF macro. Change predicates of op0 and op1
23301 to register_operand and remove "m" constraint. Disparage "r"
23302 alternative with "!".
23303 (absneg splitter with memory operands): Remove.
23304 ("*neg<mode>2_1", "*abs<mode>2_1"): Rename from corresponding
23305 patterns and macroize using X87MODEF mode iterator.
23306 * config/i386/sse.md (negv4sf2, absv4sf2, neg2vdf2, absv2df2):
23307 Change predicate of op1 to register_operand.
23308 * config/i386/i386.c (ix86_expand_fp_absneg_operator): Remove support
23309 for memory operands.
23311 2008-01-07 Nathan Froyd <froydnj@codesourcery.com>
23313 * config/rs6000/rs6000.h (ASM_CPU_SPEC): Add clause for mcpu=8548.
23315 2008-01-07 Richard Guenther <rguenther@suse.de>
23317 * basic-block.h (struct edge_def): Pair dest_idx with goto_locus
23320 2008-01-07 Richard Guenther <rguenther@suse.de>
23322 PR tree-optimization/34683
23323 * tree-ssa-sccvn.c (vuses_to_vec): Pre-allocate the vector of
23324 VOPs of the needed size to save memory. Use VEC_quick_push
23325 to save compile-time.
23326 (vdefs_to_vec): Likewise.
23328 2008-01-07 Sa Liu <saliu@de.ibm.com>
23330 * config/spu/spu.md (divdf3): Genetate inline code for double
23331 division. The implementation doesn't handle INF or NAN, therefore it
23332 only applies when -ffinite-math-only is given.
23334 2008-01-06 Paolo Carlini <pcarlini@suse.de>
23337 * c-cppbuiltin.c (c_cpp_builtins): Define __GXX_RTTI, if appropriate.
23338 * doc/cpp.texi ([Common Predefined Macros]): Document.
23340 2008-01-06 Uros Bizjak <ubizjak@gmail.com>
23342 * config/i386/i386.c (ix86_emit_swsqrtsf): Use negative constants in
23343 order to use commutative addition instead of subtraction.
23345 2008-01-06 Andrew Pinski <andrew_pinski@playstation.sony.com>
23346 Mircea Namolaru <namolaru@il.ibm.com>
23347 Vladimir Yanovsky <yanov@il.ibm.com>
23348 Revital Eres <eres@il.ibm.com>
23350 PR tree-optimization/34263
23351 * tree-outof-ssa.c (process_single_block_loop_latch,
23352 contains_tree_r): New functions.
23353 (analyze_edges_for_bb): Call process_single_block_loop_latch
23354 function to empty single-basic-block latch block if possible.
23356 2008-01-05 Uros Bizjak <ubizjak@gmail.com>
23358 * config/i386/i386.c (ix86_builtin_reciprocal): Remove check
23360 (ix86_emit_swsqrtsf): Do not filter out infinity for rsqrt expansion.
23362 2008-01-05 Richard Sandiford <rsandifo@nildram.co.uk>
23364 * c-omp.c (check_omp_for_incr_expr): Handle CONVERT_EXPR.
23366 2008-01-05 Richard Sandiford <rsandifo@nildram.co.uk>
23368 * config/mips/mips.c (mips_in_small_data_p): Reinstate size > 0 check.
23370 2008-01-05 Jakub Jelinek <jakub@redhat.com>
23372 PR tree-optimization/34618
23373 * tree-outof-ssa.c (create_temp): Copy over DECL_GIMPLE_REG_P
23376 2008-01-05 Uros Bizjak <ubizjak@gmail.com>
23379 * config/i386/i386.c (ix86_emit_swsqrtsf): Swap input operands
23380 in the call to gen_rtx_NE. Remove unneeded VECTOR_MODE_P check.
23381 Update copyright year.
23383 * config/i386/i386.md (rsqrtsf2): Enable for TARGET_SSE_MATH.
23384 Update copyright year.
23385 * config/i386/sse.md (rsqrtv4sf2): Ditto. Unconditionally expand
23388 2008-01-05 Zhouyi Zhou <zhouzhouyi@FreeBSD.org>
23390 * tree-vrp.c (find_conditional_asserts): Remove redundant check that
23391 edge does not point to current bb before changing need_assert.
23393 2008-01-04 Richard Guenther <rguenther@suse.de>
23395 PR middle-end/34029
23396 * tree-cfg.c (verify_expr): Do not look inside ADDR_EXPRs
23397 for verifying purposes if they are is_gimple_min_invariant.
23399 2008-01-04 Aldy Hernandez <aldyh@redhat.com>
23401 PR tree-optimization/34448
23402 PR tree-optimization/34465
23403 * gimplify.c (gimplify_init_constructor): Add new parameter
23404 notify_temp_creation. Use it.
23405 (gimplify_modify_expr_rhs): Take volatiles into account when
23406 optimizing constructors.
23407 Do not optimize constructors if gimplify_init_constructor will dump to
23409 * gcc.dg/tree-ssa/pr32901.c: Tests const volatiles.
23410 * gcc.c-torture/compile/pr34448.c: New.
23412 2008-01-04 Jakub Jelinek <jakub@redhat.com>
23414 PR gcov-profile/34609
23415 * tree-inline.c (declare_return_variable): Set TREE_ADDRESSABLE on
23416 return_slot if result is TREE_ADDRESSABLE.
23418 2008-01-04 Richard Sandiford <rsandifo@nildram.co.uk>
23420 * config/mips/mips.md (sqrt_condition): Tweak comment.
23421 (recip_condition): Likewise. Require TARGET_FLOAT64 for DFmode.
23423 2008-01-03 Tom Tromey <tromey@redhat.com>
23426 * c-common.c (c_type_hash): Handle VLAs.
23428 2008-01-03 Jan Hubicka <jh@suse.cz>
23430 PR tree-optimization/31081
23431 * tree-inline.c (remap_ssa_name): Initialize uninitialized SSA vars to
23432 0 when inlining and not inlining to first basic block.
23433 (remap_decl): When var is initialized to 0, don't set default_def.
23434 (expand_call_inline): Set entry_bb.
23435 * tree-inline.h (copy_body_data): Add entry_bb.
23437 2008-01-03 Jakub Jelinek <jakub@redhat.com>
23440 * cgraphunit.c (cgraph_build_static_cdtor): set_cfun back to NULL
23443 PR tree-optimization/29484
23444 * tree-inline.c (inline_forbidden_p_2): New function.
23445 (inline_forbidden_p): Disallow inlining if some static var
23446 has an address of a local LABEL_DECL in its initializer.
23447 * doc/extend.texi (Labels as Values): Document &&foo behaviour
23450 2008-01-03 Sebastian Pop <sebastian.pop@amd.com>
23452 PR tree-optimization/34635
23453 * tree-data-ref.c (add_other_self_distances): Make sure that the
23454 evolution step is constant.
23456 2008-01-03 Jakub Jelinek <jakub@redhat.com>
23458 PR middle-end/34608
23459 * omp-low.c (expand_omp_parallel): Purge dead EH edges in the child fn.
23461 2008-01-02 Richard Sandiford <rsandifo@nildram.co.uk>
23463 * tree-sra.c (scalarize_init): Insert the generate_element_init
23464 statements after the generate_element_zero statements.
23466 2008-01-02 Richard Guenther <rguenther@suse.de>
23468 PR middle-end/34093
23469 PR middle-end/31976
23470 * tree-ssa-operands.c (ssa_operand_alloc): Also allocate a buffer
23471 for very large number of operands instead of ICEing.
23473 2008-01-02 Arthur Norman <acn1@cam.ac.uk>
23476 * config/i386/i386.c (ix86_expand_prologue): Save red-zone
23477 while stack probing.
23479 2008-01-01 Douglas Gregor <doug.gregor@gmail.com>
23481 * c-opts.c (sanitize_cpp_opts): Don't warn about "long long" when
23484 2008-01-01 Volker Reichelt <v.reichelt@netcologne.de>
23486 PR libmudflap/26442
23487 * tree-mudflap.c (mx_register_decls): Guard warning by
23488 !DECL_ARTIFICIAL check.
23490 2008-01-01 Jakub Jelinek <jakub@redhat.com>
23492 * config/i386/sse.md (sse5_pperm, sse5_pperm_pack_v2di_v4si,
23493 sse5_pperm_pack_v4si_v8hi, sse5_pperm_pack_v8hi_v16qi,
23494 sse5_perm<mode>): Fix constraints.