Fix to expose more LIM when creating mem_ref
[official-gcc.git] / gcc / ChangeLog
blob1d0b5356c662b0f3a7f1b9ea8a7bafd1d4ccf435
1 2010-07-27  Xinliang David Li <davidxl@google.com>
2         * tree-flow.h (create_mem_ref): Add one new parameter.
3         * tree-ssa-address.c (create_mem_ref): New parameter.
4         (addr_to_parts): Ditto.
5         (move_variant_to_index): New function.
6         * tree-ssa-loop-ivopts.c (rewrite_use_address): Pass new argument.
8 2010-07-27  Bernd Schmidt  <bernds@codesourcery.com>
10         * rtl.def (DEBUG_INSN, INSN, JUMP_INSN, CALL_INSN, NOTE): Swap operands
11         4 and 5.
12         * rtl.h (PATTERN, INSN_LOCATOR, NOTE_DATA, NOTE_DELETED_LABEL_NAME,
13         NOTE_BLOCK, NOTE_EH_HANDLER, NOTE_BASIC_BLOCK, NOTE_VAR_LOCATION,
14         NOTE_KIND, LABEL_NUSES, LABEL_REFS): Adjust accordingly.
15         * gengtype.c (adjust_field_rtx_def): Swap operands 4 and 5 of
16         CODE_LABELs and NOTEs.
17         * caller-save.c (init_caller_save): Fix up gen_rtx_INSN call.
18         * combine.c (try_combine): Likewise.
19         * ira.c (setup_prohibited_mode_move_regs): Likewise.
20         * print-rtl.c (print_rtx): Start REG_NOTES on a new line.
22 2010-07-27  Joseph Myers  <joseph@codesourcery.com>
24         * coretypes.h (struct cl_option_handlers): Declare.
25         * hooks.c (hook_int_size_t_constcharptr_int_0): Remove.
26         * hooks.h (hook_int_size_t_constcharptr_int_0): Remove.
27         * langhooks-def.h (lhd_handle_option): Declare.
28         (LANG_HOOKS_HANDLE_OPTION): Use lhd_handle_option.
29         * langhooks.c (lhd_handle_option): New.
30         * langhooks.h (struct lang_hooks): Update prototype and return
31         value type of handle_option hook.
32         * optc-gen.awk: Generate target_flags_explicit definition for the
33         driver.
34         * opts-common.c: Include diagnostic.h.
35         (handle_option): Move from opts.c.  Update prototype and return
36         value type.  Use handlers structure.
37         (read_cmdline_option): Move from opts.c.  Update prototype.  Use
38         handlers structure.
39         (set_option): Move from opts.c.
40         * opts.c (common_handle_option): Update prototype and return value
41         type.  Update calls to handle_option and enable_warning_as_error.
42         (unknown_option_callback, post_handling_callback,
43         lang_handle_option, target_handle_option): New.
44         (handle_option, read_cmdline_option): Move to opts-common.c.
45         (read_cmdline_options): Update prototype.  Update call to
46         read_cmdline_option.
47         (decode_options): Initialize and use handlers structure.
48         (set_option): Move to opts-common.c.
49         (enable_warning_as_error): Update prototype.  Update call to
50         handle_option.
51         * opts.h (struct cl_option_handler_func, struct
52         cl_option_handlers): New.
53         (handle_option, enable_warning_as_error): Update prototypes.
54         (read_cmdline_option): Declare.
55         * Makefile.in (opts-common.o): Update dependencies.
57 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
59         * config/arm/arm.c (params.h): Include.
60         (arm_override_options): Tune gcse-unrestricted-cost.
61         * config/arm/t-arm (arm.o): Define dependencies.
63 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
65         PR target/42495
66         PR middle-end/42574
67         * basic-block.h (get_dominated_to_depth): Declare.
68         * dominance.c (get_dominated_to_depth): New function, use
69         get_all_dominated_blocks as a base.
70         (get_all_dominated_blocks): Use get_dominated_to_depth.
72         * gcse.c (occr_t, VEC (occr_t, heap)): Define.
73         (hoist_exprs): Remove.
74         (alloc_code_hoist_mem, free_code_hoist_mem): Update.
75         (compute_code_hoist_vbeinout): Add debug print outs.
76         (hoist_code): Partially rewrite, simplify.  Use get_dominated_to_depth.
78         * params.def (PARAM_MAX_HOIST_DEPTH): New parameter to avoid
79         quadratic behavior.
80         * params.h (MAX_HOIST_DEPTH): New macro.
81         * doc/invoke.texi (max-hoist-depth): Document.
83 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
85         PR rtl-optimization/40956
86         * config/arm/arm.c (thumb1_size_rtx_costs): Fix cost of simple
87         constants.
89 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
91         PR target/42495
92         PR middle-end/42574
93         * config/arm/arm.c (legitimize_pic_address): Use
94         gen_calculate_pic_address pattern to emit calculation of PIC address.
95         (will_be_in_index_register): New function.
96         (arm_legitimate_address_outer_p, thumb2_legitimate_address_p,)
97         (thumb1_legitimate_address_p): Use it provided !strict_p.
98         * config/arm/arm.md (calculate_pic_address): New expand and split.
100 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
102         PR target/42495
103         PR middle-end/42574
104         * config/arm/arm.c (thumb1_size_rtx_costs): Add cost for "J" constants.
105         * config/arm/arm.md (define_split "J", define_split "K"): Make
106         IRA/reload friendly.
108 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
110         * gcse.c (insert_insn_end_basic_block): Update signature, remove
111         unused checks.
112         (pre_edge_insert, hoist_code): Update.
114 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
116         PR target/42495
117         PR middle-end/42574
118         * gcse.c (hoist_expr_reaches_here_p): Remove excessive check.
120 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
122         * gcse.c (hoist_code): Generate new pseudo for every new set insn.
124 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
126         PR rtl-optimization/40956
127         PR target/42495
128         PR middle-end/42574
129         * gcse.c (compute_code_hoist_vbeinout): Consider more expressions
130         for hoisting.
131         (hoist_code): Count occurences in current block too.
133 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
135         * gcse.c (struct expr:max_distance): New field.
136         (doing_code_hoisting_p): New static variable.
137         (want_to_gcse_p): Change signature.  Allow constrained hoisting of
138         simple expressions, don't change behavior for PRE.  Set max_distance.
139         (insert_expr_in_table): Set new max_distance field.
140         (hash_scan_set): Update.
141         (hoist_expr_reaches_here_p): Stop search after max_distance
142         instructions.
143         (find_occr_in_bb): New static function.  Use it in ...
144         (hoist_code): Calculate sizes of basic block before any changes are
145         done.  Pass max_distance to hoist_expr_reaches_here_p.
146         (one_code_hoisting_pass): Set doing_code_hoisting_p.
148         * params.def (PARAM_GCSE_COST_DISTANCE_RATIO,)
149         (PARAM_GCSE_UNRESTRICTED_COST): New parameters.
150         * params.h (GCSE_COST_DISTANCE_RATIO, GCSE_UNRESTRICTED_COST): New
151         macros.
152         * doc/invoke.texi (gcse-cost-distance-ratio, gcse-unrestricted-cost):
153         Document.
155 2010-07-27  Jeff Law  <law@redhat.com>
156             Maxim Kuvyrkov  <maxim@codesourcery.com>
158         * gcse.c (compute_transpout, transpout): Remove, move logic
159         to prune_expressions.
160         (compute_pre_data): Move pruning of trapping expressions ...
161         (prune_expressions): ... here.  New static function.
162         (compute_code_hoist_data): Use it.
163         (alloc_code_hoist_mem, free_code_hoist_mem, hoist_code): Update.
165 2010-07-27  Xinliang David Li  <davidxl@google.com>
167         * tree-ssa-loop-ivopts.c (adjust_iv_update_pos): New function.
168         (rewrite_use_address): Adjust iv update position when needed.
170 2010-07-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
172         * dbgcnt.def (hoist_insn): New debug counter.
173         * gcse.c (hoist_code): Use it.
175 2010-07-27  Xinliang David Li  <davidxl@google.com>
177         * tree-ssa-loop-ivopts.c (niter_for_exit): New parameter.
178         (niter_for_single_dom_exit): Passes additional parameter.
179         (iv_period): Fix comments.
180         (may_eliminate_iv): Handles multiple exit loops properly.
181         (free_tree_niter_desc): New function.
182         (free_loop_data): Frees up loop iteration descriptors.
184 2010-07-27  Jakub Jelinek  <jakub@redhat.com>
186         PR target/44542
187         * cfgexpand.c (expand_one_stack_var_at): Limit align to maximum
188         of max_used_stack_slot_alignment and PREFERRED_STACK_BOUNDARY
189         instead of MAX_SUPPORTED_STACK_ALIGNMENT.
190         (expand_one_var): Don't consider DECL_ALIGN for variables for
191         which expand_one_stack_var_at has been already called.
193         PR testsuite/44701
194         * doc/md.texi: Clarify m and es constraints on PowerPC and m and S
195         constraints on IA-64.
197 2010-07-27  Jie Zhang  <jie@codesourcery.com>
199         PR target/44290
200         Revert
201         2010-07-23  Jie Zhang  <jie@codesourcery.com>
202         * tree-sra.c (ipa_sra_preliminary_function_checks): Return
203         false if ! tree_versionable_function_p.
205 2010-07-27  Jakub Jelinek  <jakub@redhat.com>
207         * dwarf2out.c (add_data_member_location_attribute): Use
208         add_AT_unsigned instead of add_AT_int if offset is non-negative.
210 2010-07-27  Bernd Schmidt  <bernds@codesourcery.com>
212         * postreload.c (try_replace_in_use): New static function.
213         (reload_combine_recognize_const_pattern): Use it here.  Allow
214         substituting into a final add insn, and substituting into a memory
215         reference in an insn that sets the reg.
217 2010-07-27  Joseph Myers  <joseph@codesourcery.com>
219         * common.opt (o): Add MissingArgError.
220         * doc/options.texi (MissingArgError): Document.
221         * hooks.c (hook_bool_constcharptr_size_t_false): Remove.
222         * hooks.h (hook_bool_constcharptr_size_t_false): Remove.
223         * langhooks-def.h (LANG_HOOKS_MISSING_ARGUMENT): Remove.
224         (LANG_HOOKS_INITIALIZER): Remove missing_argument hook
225         initializer.
226         * langhooks.h (struct lang_hooks): Remove missing_argument.
227         * optc-gen.awk: Handle MissingArgError and output new structure
228         field initializers.
229         * opts.c (read_cmdline_option): Use missing_argument_error field
230         instead of missing_argument langhook.
231         * opts.h (struct cl_option): Add missing_argument_error field.
232         * system.h (LANG_HOOKS_MISSING_ARGUMENT): Poison.
234 2010-07-27  Iain Sandoe  <iains@gcc.gnu.org>
236         PR target/29090
237         * config/rs6000/rs6000.c (rs6000_gimplify_va_arg): Special-case the
238         Darwin64 ABI, for zero-sized objects.
240 2010-07-27  Iain Sandoe  <iains@gcc.gnu.org>
242         PR target/35491
243         PR target/29090
245         Merge from Apple local 4.2.1.
246         2005-05-11  Stan Shebs  <shebs@apple.com>
247         Fix 64-bit varargs for Darwin (Radar 4028089).
248         * config/rs6000/rs6000.h (rs6000_args): New field floats_in_gpr.
249         * config/rs6000/rs6000.c (rs6000_darwin64_record_arg_advance_flush):
250         Add argument, add case for 8-byte register half-filled with a float.
251         (rs6000_darwin64_record_arg_advance_recurse): Detect and handle
252         single-precision floats specially.
254 2010-07-27  Ira Rosen  <irar@il.ibm.com>
256         PR tree-optimization/44152
257         * tree-vect-slp.c (vect_build_slp_tree): Collect nodes with
258         complex numbers for further check.
259         (vect_supported_load_permutation_p): Check nodes with 
260         complex numbers.
262 2010-07-27  Joseph Myers  <joseph@codesourcery.com>
264         * langhooks-def.h (lhd_init_options, LANG_HOOKS_OPTION_LANG_MASK,
265         LANG_HOOKS_COMPLAIN_WRONG_LANG_P): New.
266         (LANG_HOOKS_INIT_OPTIONS): Update default definition.
267         (LANG_HOOKS_INITIALIZER): Add new hooks.
268         * langhooks.c (lhd_init_options, lhd_complain_wrong_lang_p): New.
269         * langhooks.h (struct lang_hooks): Add new hooks option_lang_mask
270         and complain_wrong_lang_p.  Update init_options prototype.
271         * c-objc-common.c (c_initialize_diagnostics): First call
272         c_common_initialize_diagnostics.
273         * c-objc-common.h (LANG_HOOKS_OPTION_LANG_MASK,
274         LANG_HOOKS_COMPLAIN_WRONG_LANG_P): Define.
275         * coretypes.h (struct cl_option, struct cl_decoded_option): Declare.
276         * hooks.c (hook_uint_uint_constcharptrptr_0): Remove.
277         (hook_uint_void_0): New.
278         * hooks.h (hook_uint_uint_constcharptrptr_0): Remove.
279         (hook_uint_void_0): New.
280         * opts-common.c (decode_cmdline_option,
281         decode_cmdline_options_to_array): Also fill in canonical_option field.
282         * opts.c (complain_wrong_lang): Use langhook to determine whether
283         to complain instead of special-casing LTO.
284         (decode_options): Separate lang_mask determination with
285         option_lang_mask hook from call of init_options hook.
286         * opts.h (struct cl_decoded_option): Add canonical_option.
288 2010-07-27  Jakub Jelinek  <jakub@redhat.com>
290         PR tree-optimization/45083
291         * tree-inline.c (add_local_variables): Also remap DECL_DEBUG_EXPR.
293 2010-07-27  Bernd Schmidt  <bernds@codesourcery.com>
295         * postreload.c (reload_combine_recognize_const_pattern): Move test
296         for limiting the insn movement to the right scope.
298         PR rtl-optimization/45051
299         * reload1.c (delete_output_reload): Use refers_to_regno_p rather
300         than reg_mentioned_p.
302 2010-07-26  Richard Henderson  <rth@redhat.com>
304         PR target/44132
305         * tree-emutls.c: New file.
306         * Makefile.in (OBJS-common): Add it.
307         * tree-pass.h (pass_ipa_lower_emutls): Declare.
308         * passes.c (init_optimization_passes): Add it.
310         * dwarf2out.c (loc_list_from_tree): If emutls.debug_form_tls_address,
311         pull the control variable from DECL_VALUE_EXPR, not emutls_decl.
312         * expr.c (emutls_var_address): Delete.
313         (expand_expr_addr_expr_1, expand_expr_real_1): Don't use it.
314         * output.h (SECCAT_EMUTLS_VAR, SECCAT_EMUTLS_TMPL): Delete.
315         (emutls_finish): Delete.
316         * toplev.c (compile_file): Don't call it.
317         * tree.h (emutls_decl): Delete.
318         * varasm.c (emutls_htab, DECL_EMUTLS_VAR_P): Delete.
319         (emutls_finish, emutls_finalize_control_var): Delete.
320         (emutls_object_type): Move to tree-emutls.c.
321         (EMUTLS_SEPARATOR, prefix_name, get_emutls_object_name,
322         default_emutls_var_fields, get_emutls_object_type,
323         get_emutls_init_templ_addr, emutls_decl, emutls_common_1
324         default_emutls_var_init): Likewise.
325         (get_variable_section): Don't special case emutls.
326         (assemble_variable, do_assemble_alias, categorize_decl_for_section,
327         default_elf_select_section, default_unique_section,
328         default_encode_section_info): Likewise.
329         * varpool.c (decide_is_variable_needed): Likewise.
330         * gimple-iterator.c (update_call_edge_frequencies): New
331         (gsi_insert_on_edge_immediate): Use it.
332         (gsi_insert_seq_on_edge_immediate): Likewise.
333         (gsi_commit_one_edge_insert): Likewise.
335         * config/i386/i386.c (x86_64_elf_select_section): Don't handle
336         SECCAT_EMUTLS_VAR, SECCAT_EMUTLS_TMPL.
337         (x86_64_elf_unique_section): Likewise.
339 2010-07-26  Jan Hubicka  <jh@suse.cz>
341         * lto-streamer.h (struct lto_file_decl_data): Mark resolutions with
342         GTY((skip)).
344 2010-07-26  Anatoly Sokolov  <aesok@post.ru>
346         * target.def (output_source_filename): New hook.
347         * doc/tm.texi.in (TARGET_ASM_OUTPUT_SOURCE_FILENAME): Document.
348         * doc/tm.texi: Regenerate.
349         * toplev.c (output_file_directive) Remove function.
350         * toplev.h (output_file_directive) Remove.
351         * output.h (default_asm_output_source_filename,
352         output_file_directive): Declare.
353         * varasm.h (default_asm_output_source_filename,
354         output_file_directive): New functions.
356         * config/mips/mips.h (ASM_OUTPUT_SOURCE_FILENAME): Remove macro.
357         * config/mips/mips-protos.h (mips_output_filename): Remove.
358         * config/mips/mips.c (mips_output_filename): Make Static.
359         (TARGET_ASM_OUTPUT_SOURCE_FILENAME): Define.
361 2010-07-26  Richard Guenther  <rguenther@suse.de>
363         PR tree-optimization/43784
364         * tree-nrv.c (dest_safe_for_nrv_p): It's not safe to NRV
365         if the destination is used by the call.
367 2010-07-26  Richard Guenther  <rguenther@suse.de>
369         PR middle-end/45073
370         * gimple-fold.c (gimplify_and_update_call_from_tree): Conditionalize
371         SSA updating on being in SSA form.
373 2010-07-26  Richard Guenther  <rguenther@suse.de>
375         PR middle-end/45056
376         * gimple-fold.c (fold_stmt_1): Also fold references in debug stmts.
378 2010-07-26  Richard Guenther  <rguenther@suse.de>
380         PR tree-optimization/45071
381         * tree-ssa-sccvn.c (vn_reference_maybe_forwprop_address): Always
382         adjust op->opcode.
384 2010-07-26  Naveen.H.S  <naveen.S@kpitcummins.com>
386         * config/v850/lib1funcs.asm (save_r2_r31, return_r2_r31,
387         save_r20_r31, return_r20_r31, save_r21_r31, return_r21_r31,
388         save_r22_r31, return_r22_r31, save_r23_r31, return_r23_r31,
389         save_r24_r31, return_r24_r31, save_r25_r31, return_r25_r31,
390         save_r26_r31, return_r26_r31, save_r27_r31, return_r27_r31,
391         save_r28_r31, return_r28_r31, save_r29_r31, return_r29_r31,
392         save_r31, return_r31, save_interrupt, return_interrupt,
393         save_all_interrupt, return_all_interrupt, L_save_r2_r31,
394         L_return_interrupt, callt_return_interrupt, L_restore_all_interrupt,
395         L_save_##START##_r31c, L_callt_save_r31c): Updated as per the
396         new ABI requirements.
397         (save_r6_r9, L_callt_save_r6_r9): Remove.
398         * config/v850/predicates.md (even_reg_operand, disp23_operand,
399         const_float_1_operand const_float_0_operand): New Predicates.
400         (pattern_is_ok_for_prepare, pattern_is_ok_for_prologue,
401         pattern_is_ok_for_epilogue): Update as per the ABI requirements.
402         * config/v850/t-v850: Update multilibs for new target variants.
403         (save_varargs, callt_save_varargs, callt_save_r6_r9): Remove.
404         * config/v850/t-v850e: Likewise.
405         * config/v850/v850.c (v850_issue_rate): New.
406         (v850_strict_argument_naming): New.
407         (function_arg): Modify to generate a different ABI.
408         (print_operand): Update case 'z' to support float modes.
409         (output_move_single): Modify to generate appropriate and better
410         assembly.
411         (v850_float_z_comparison_operator, v850_select_cc_mode,
412         v850_float_nz_comparison_operator,  v850_gen_float_compare,
413         v850_gen_compare): New functions to support comparison of float values.
414         (ep_memory_offset): Add support for V850E2 targets.
415         (INTERRUPT_FIXED_NUM, INTERRUPT_ALL_SAVE_NUM): Update.
416         (INTERRUPT_REGPARM_NUM): Remove.
417         (compute_register_save_size): Add extra case to save/restore long call.
418         (use_prolog_function): New function to support prologue.
419         (expand_prologue): Add support for V850E2 targets and modified
420         as per the current ABI requirements.
421         (expand_epilogue): Likewise.
422         (construct_restore_jr): Modify based on TARGET_LONG_CALLS.
423         (construct_save_jarl): Likewise.
424         (construct_dispose_instruction): Update as per the current ABI
425         requirements.
426         (construct_prepare_instruction): Likewise.
427         * config/v850/v850.h (TARGET_CPU_DEFAULT): Add target predefines.
428         (TARGET_CPU_v850e2, TARGET_CPU_v850e2v3): Define
429         (CPP_SPEC): Updated to support v850e2 targets.
430         (STRICT_ALIGNMENT): Modified.
431         (FIRST_PSEUDO_REGISTER): Updated to add even registers.
432         (FIXED_REGISTERS): Likewise.
433         (CALL_USED_REGISTERS): Likewise.
434         (CONDITIONAL_REGISTER_USAGE): Updated.
435         (HARD_REGNO_MODE_OK): Updated.
436         (reg_class): Updated to add even registers.
437         (REG_CLASS_NAMES): Likewise.
438         (REG_CLASS_CONTENTS): Likewise.
439         (REGNO_REG_CLASS): Updated for CC registers.
440         (REG_CLASS_FROM_LETTER): Added support for even registers.
441         (REGNO_OK_FOR_BASE_P): Updated for CC registers.
442         (STACK_POINTER_REGNUM, FRAME_POINTER_REGNUM, LINK_POINTER_REGNUM,
443         ARG_POINTER_REGNUM): Updated.
444         (FUNCTION_ARG_ADVANCE): Define.
445         (REG_PARM_STACK_SPACE): Update as per the current ABI requirements.
446         (OUTGOING_REG_PARM_STACK_SPACE): Remove.
447         (EXTRA_CONSTRAINT): Add new constraint 'W' for 23-bit displacement.
448         (GO_IF_LEGITIMATE_ADDRESS): Updated.
449         (SELECT_CC_MODE): Define.
450         (REGISTER_NAMES): Updated to add psw and fcc registers.
451         (ADDITIONAL_REGISTER_NAMES): Updated.
452         (ASM_OUTPUT_ADDR_DIFF_ELT): Updated to support new targets.
453         (JUMP_TABLES_IN_TEXT_SECTION): Updated.
454         * config/v850/v850.md (define_constants): Define new constants.
455         (type): Update store,bit1,macc,div,fpu and single attributes.
456         (cpu): New attribute.
457         (cc): Add set_z attribute.
458         (unsign23byte_load, sign23byte_load, unsign23hword_load,
459         sign23hword_load, 23word_load, 23byte_store, 23hword_store,
460         23word_store): New instructions for 23-bit displacement load and store.
461         (movqi_internal, movhi_internal): Update the attributes.
462         (movsi, movsi_internal_v850e): Updated to support v850e2 targets.
463         (movsi_internal_v850e, movsi_internal, movsf_internal): Update
464         the attributes.
465         (v850_tst1): Modified using CC_REGNUM.
466         (tstsi): Remove.
467         (cmpsi): Modified as define_expand from define_insn.
468         (cmpsi_insn, cmpsf, cmpdf): New instructions.
469         (addsi3, subsi3, negsi2, divmodsi4, udivmodsi4, divmodhi4,
470         udivmodhi4, v850_clr1_1, v850_clr1_2, v850_clr1_3, andsi3,
471         v850_set1_1, v850_set1_3, iorsi3, v850_not1_1, v850_not1_3, xorsi3,
472         one_cmplsi2): Clobber the CC_REGNUM register.
473         (v850_clr1_1, v850_clr1_2, v850_clr1_3, andsi3, v850_set1_1,
474         v850_set1_2, v850_set1_3, iorsi3, v850_not1_1, v850_not1_2,
475         v850_not1_3, xorsi3, one_cmplsi2): Update the attributes accordingly.
476         (setf_insn, set_z_insn, set_nz_insn): New instructions for
477         v850e2v3 target.
478         (movsicc_normal_cc, movsicc_reversed_cc): New instructions.
479         (movsicc, movsicc_normal, movsicc_reversed): Add support for V850E2
480         targets.
481         (sasf_1, sasf_2): Remove.
482         (sasf): New instruction.
483         (rotlhi3, rotlhi3_8, rotlsi3, rotlsi3_16): Update to support V850E2
484         targets. CC_REGNUM register is clobbered and attributes are
485         updated.
486         (branch_z_normal, branch_z_invert, branch_nz_normal,
487         branch_nz_invert): New branch related instructions.
488         (jump): Updated the attributes.
489         (switch): Update to support new targets. CC_REGNUM register is
490         clobbered and attributes are updated.
491         (call_internal_short, call_internal_long, call_value_internal_short,
492         call_value_internal_long): Updated the attributes.
493         (zero_extendhisi2, zero_extendqisi2): CC_REGNUM register is
494         clobbered and attributes are updated.
495         (extendhisi_insn, extendhisi2, extendqisi_insn, extendqisi2):
496         Update to support new targets. CC_REGNUM register is clobbered.
497         (ashlsi3_v850e2, lshrsi3_v850e2, ashrsi3_v850e2): New shift
498         instructions.
499         (lshrsi3, ashrsi3): CC_REGNUM register is clobbered and attributes
500         are updated.
501         (ffssi2, addsf3, adddf3, subsf3, subdf3, mulsf3, muldf3, divsf3,
502         divdf3, minsf3, mindf3, maxsf3, maxdf3, abssf2, absdf2, negsf2,
503         negdf2, sqrtsf2, sqrtdf2, truncsfsi2, truncdfsi2, floatsisf2,
504         floatsidf2, extendsfdf2, extenddfsf2, recipsf2, recipdf2,
505         rsqrtsf2, rsqrtdf2, maddsf4, msubsf4, nmaddsf4, nmsubsf4,
506         cmpsf_le_insn, cmpsf_lt_insn, cmpsf_ge_insn, cmpsf_gt_insn,
507         cmpsf_eq_insn, cmpsf_ne_insn, cmpdf_le_insn, cmpdf_lt_insn,
508         cmpdf_ge_insn, cmpdf_gt_insn, cmpdf_eq_insn, cmpdf_ne_insn, trfsr,
509         movsfcc, movdfcc, movsfcc_z_insn, movsfcc_nz_insn, movdfcc_z_insn,
510         movdfcc_nz_insn, movedfcc_z_zero, movedfcc_nz_zero): New floating
511         point instructions defined for V850e2v3 target.
512         (callt_save_interrupt, callt_return_interrupt, return_interrupt):
513         Add support for V850E2 targets and CC_REGNUM register is clobbered.
514         (callt_save_all_interrupt, callt_restore_all_interrupt): Add
515         support for new targets.
516         * config/v850/v850-modes.def: New file.
517         * config/v850/v850.opt(mstrict-align): Remove.
518         (mno-strict-align, mjump-tables-in-data-section, mv850e2,
519         mv850e2v3): New command line options for V850.
520         * config.gcc: Update the newly added files.
521         * doc/invoke.texi: Update the newly added command line options for
522         V850 target.
524 2010-07-26  Richard Guenther  <rguenther@suse.de>
526         PR tree-optimization/45052
527         * ipa-pure-const.c (check_stmt): Check volatileness.
529 2010-07-25  Eric Botcazou  <ebotcazou@adacore.com>
531         PR target/44707
532         * config/sparc/sparc-protos.h (sparc_legitimize_reload_address): New.
533         * config/sparc/sparc.c: Include reload.h.
534         (legitimize_tls_address): Rename into...
535         (sparc_legitimize_tls_address): ...this.
536         (legitimize_pic_address): Rename into...
537         (sparc_legitimize_pic_address): ...this.
538         (sparc_expand_move): Adjust to above renaming.
539         (sparc_tls_referenced_p): Likewise.
540         (sparc_legitimize_tls_address): Likewise.
541         (sparc_legitimize_pic_address): Likewise.
542         (sparc_legitimize_address): Likewise.
543         (sparc_output_mi_thunk): Likewise.
544         (sparc_legitimize_reload_address): New global function.  Recognize
545         (lo_sum (high ...) ...) patterns generated by earlier passes.
546         * config/sparc/sparc.h (LEGITIMIZE_RELOAD_ADDRESS): Use above function.
548 2010-07-25  Eric Botcazou  <ebotcazou@adacore.com>
550         PR target/44484
551         * config/sparc/predicates.md (memory_reg_operand): Delete.
552         * config/sparc/sync.md (sync_compare_and_swap): Minor tweaks.
553         (*sync_compare_and_swap): Encode the address form in the pattern.
554         (*sync_compare_and_swapdi_v8plus): Likewise.
556 2010-07-24  Gerald Pfeifer  <gerald@pfeifer.com>
558         * doc/install.texi (Specific, *-*-freebsd*): Adjust to recent changes.
559         Streamline paragraph on compatibility with the system compiler.
561 2010-07-24  Steven Bosscher  <steven@gcc.gnu.org>
563         PR middle-end/45035
564         * alias.c (true_dependence_1): Fix thinko in merge of old
565         true_dependence and canon_true_dependence.
567 2010-07-23  Jan Hubicka  <jh@suse.cz>
569         * lto-streamer-out.c (write_symbol): Fix visibilities of external
570         references.
572 2010-07-23  Le-Chun Wu  <lcwu@google.com>
574         * omega.c (omega_eliminate_redundant): Remove a self-assign statement.
575         * tree-ssa-ccp.c (ccp_lattice_meet): Remove a self-assign statement
576         and an unnecessary assignment.
577         * dbxout.c (DEBUGGER_ARG_OFFSET): Change OFFSET to OFFSET+0 to avoid
578         self-assign warning.
579         * config/i386/i386.c (ix86_vectorize_builtin_vec_perm): Remove
580         unnecessary self-init.
582 2010-07-23  Richard Guenther  <rguenther@suse.de>
584         PR lto/43071
585         * gcc.c (LINK_COMMAND_SPEC): Filter out -fcompare-debug
586         for -flto and -fwhopr.
588 2010-07-23  Kai Tietz  <kai.tietz@onevision.com>
590         PR target/41943
591         * Makefile.in (USER_H_INC_NEXT_PRE, USER_H_INC_NEXT_POST): New.
592         (stmp-int-hdrs): Prefix/postfix headers by include_next.
593         * config.gcc (user_headers_inc_next_pre): New.
594         (user_headers_inc_next_post): Likewise.
595         (*-w64-mingw*): Use for float.h post-fixing, and for
596         stddef.h/stdarg.h pre-fixing by include_next.
597         * configure.ac (user_headers_inc_next_post): New.
598         (user_headers_inc_next_pre): New.
599         * configure: Regenerated.
601 2010-07-23  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
603         * configure.ac: Don't disable TLS on Solaris 8/9 by default
604         Set tga_func for Solaris 2/x86 resp. SPARC.
605         Remove duplicate parts of sparc*-sun-solaris2.* TLS check.
606         (LIB_THREAD_LDFLAGS_SPEC): Define.
607         (LIB_TLS_SPEC): Define.  Check for required Sun ld version.
608         * configure: Regenerate.
609         * config.in: Regenerate.
610         * config/sol2.h (LIB_SPEC): Use LIB_THREAD_LDFLAGS_SPEC with
611         -pthread, -threads, LIB_TLS_SPEC with -pthread.
612         * doc/install.texi (Specific, *-*-solaris2*): Document use of
613         alternate thread libraries on Solaris 8.
614         Document TLS patch requirements.
615         * doc/sourcebuild.texi (Add Options): Sort alphabetically.
616         Document tls.
618         PR target/18788
619         * config/sol2.h (LIB_SPEC): Link with thread libraries even with
620         -shared.
622 2010-07-23  Jakub Jelinek  <jakub@redhat.com>
624         * tree.h (struct tree_base): Add nameless_flag bitfield.
625         (TYPE_NAMELESS, DECL_NAMELESS): Define.
626         * omp-low.c (create_omp_child_function, scan_omp_parallel,
627         scan_omp_task, lower_omp_taskreg): Set DECL_NAMELESS and/or
628         DECL_ARTIFICIAL where needed.
629         * dwarf2out.c (dwarf2_name): Return NULL if DECL_NAMELESS.
630         (type_tag): Return NULL if TYPE_NAMELESS or if TYPE_DECL
631         has DECL_NAMELESS set.
633 2010-07-23  Martin Jambor  <mjambor@suse.cz>
635         PR tree-optimization/44915
636         * ipa-cp.c (cgraph_gate_cp): Also check that optimize is true.
637         * ipa-inline.c (cgraph_mark_inline_edge): Likewise.
638         (analyze_function): Likewise.
640 2010-07-23  Martin Jambor  <mjambor@suse.cz>
642         PR tree-optimization/44914
643         * tree-sra.c (sra_modify_function_body): Return true if CFG was
644         changed, add purging dead eh edges.
645         (ipa_sra_modify_function_body): Return true if CFG was changed,
646         simplify purging dead eh edges.
647         (modify_function): Return true if CFG was changed.
648         (perform_intra_sra): Add TODO_cleanup_cfg to the return value if CFG
649         was changed.
650         (ipa_early_sra): Likewise.
652 2010-07-23  Jie Zhang  <jie@codesourcery.com>
654         PR target/44290
655         * attribs.c (decl_attributes): Insert "noinline" and "noclone"
656         if "naked".
657         * tree-sra.c (ipa_sra_preliminary_function_checks): Return
658         false if ! tree_versionable_function_p.
660 2010-07-23  Nathan Froyd  <froydnj@codesourcery.com>
662         * builtins.def (BUILT_IN_ARGS_INFO): Remove.
663         * ipa-pure-const.c (special_builtlin_state): Remove
664         BUILT_IN_ARGS_INFO case.
665         * tree-stdarg.c (execute_optimize_stdarg): Likewise.
666         * builtins.c (expand_builtin): Likewise.
667         (expand_builtin_args_info): Remove.
668         * doc/tm.texi (__builtin_args_info): Remove.
669         (__builtin_next_arg): Adjust to not refer to __builtin_args_info.
670         * doc/tm.text.in: Likewise.
672 2010-07-23  Richard Guenther  <rguenther@suse.de>
674         * lto-symtab.c (lto_symtab_merge): Use gtc_mode enum values.
675         (lto_symtab_merge_decls_2): Likewise.
676         * tree-ssa.c (useless_type_conversion_p): Likewise.
677         * lto-streamer-in.c (input_gimple_stmt): Likewise.
678         * gimple.c (gtc_visited2, gtc_ob2): Remove.
679         (struct type_pair_d): Make same_p an array indexed by mode.
680         Update comment.
681         (lookup_type_pair): Update initialization.
682         (struct sccs): Adjust same_p type.
683         (gimple_types_compatible_p_1, gtc_visit, gimple_types_compatible_p):
684         Adjust.
685         (print_gimple_types_stats): Likewise.
686         * gimple.h (enum gtc_mode): New.
687         (gimple_types_compatible_p): Adjust prototype.
689 2010-07-23  Daniel Jacobowitz  <dan@codesourcery.com>
691         * dwarf2out.c (dwarf2out_frame_debug): Check for queued saves
692         again after processing insn.
694 2010-07-23  Jie Zhang  <jie@codesourcery.com>
696         * tree-sra.c (ipa_sra_preliminary_function_checks): Dump
697         proper words when !tree_versionable_function_p.
699 2010-07-23  Richard Guenther  <rguenther@suse.de>
701         PR tree-optimization/45037
702         * tree-ssa-loop-ivopts.c (copy_ref_info): Handle NULL base.
704 2010-07-23  Jie Zhang  <jie@codesourcery.com>
706         * doc/extend.texi: Remove IP2K from the description of naked attribute.
707         Add MCORE instead.
709 2010-07-10  Andi Kleen  <ak@linux.intel.com>
711         PR lto/44992
712         * lto-opts.c (lto_write_options): Add NULL file_data argument to
713         lto_get_section_name.
714         * lto-section-out.c (lto_destroy_simple_output_block): Likewise.
715         * lto-streamer-out.c (produce_asm): Likewise.
716         (copy_function): Likewise.
717         (produce_symtab): Likewise.
718         (produce_asm_for_decls): Likewise.
719         * lto-streamer.c (lto_get_section_name): Add file_data argument.
720         Rewrite to add random postfix to LTO sections.
721         * lto-streamer.h (lto_file_decl_data): Add next, id, resolutions.
722         (lto_get_section_name): Add file_data argument to prototype.
724 2010-07-10  Andi Kleen  <ak@linux.intel.com>
726         * lto-section-in.c (lto_section_name): Synchronize names
727         with lto_get_section_name.
729 2010-07-10  Andi Kleen  <ak@linux.intel.com>
731         * lto-opts.c (lto_read_file_options): Check for missing section.
733 2010-07-22  Bernd Schmidt  <bernds@codesourcery.com>
735         * ira.c (check_allocation): Correctly handle the case where an allocno
736         with two objects was allocated to a single reg.
738 2010-07-22  Richard Sandiford  <rdsandiford@googlemail.com>
740         * tree-ssa-math-opts.c (is_widening_mult_rhs_p): New function.
741         (is_widening_mult_p): Likewise.
742         (convert_to_widen): Use them.
743         (convert_plusminus_to_widen): Likewise.  Handle fixed-point types as
744         well as integer ones.
746 2010-07-22  Steven Bosscher  <steven@gcc.gnu.org>
748         * alias.c (true_dependence_1): New function, merged version of
749         true_dependence and canon_true_dependence.
750         (true_dependence): Simplify.
751         (canon_true_dependence): Simplify.
753 2010-07-22  Richard Henderson  <rth@redhat.com>
755         PR target/45027
756         * config/i386/i386.c (setup_incoming_varargs_64): Force the use
757         of V4SFmode for the SSE saves; increase stack alignment if needed.
758         (ix86_gimplify_va_arg): Don't increase stack alignment here.
760 2010-07-22  Jakub Jelinek  <jakub@redhat.com>
762         PR bootstrap/45028
763         * recgprop.c (copyprop_hardreg_forward_1): If changed is true,
764         call cprop_find_used_regs again via note_uses.
766 2010-07-22  Eric Botcazou  <ebotcazou@adacore.com>
768         * alias.c (get_alias_set): Fix formatting issues.
770 2010-07-22  Steve Ellcey  <sje@cup.hp.com>
772         PR middle-end/44878
773         * stmt.c (expand_value_return):  Call promote_function_mode with
774         a for_return argument of 2 when returning by reference.
776 2010-07-22  Dodji Seketeli  <dodji@redhat.com>
778         PR debug/45024
779         * dwarf2out.c (scope_die_for): Don't fall back to the compilation
780         unit DIE if we can find the scope DIE.
782 2010-07-22  Bernd Schmidt  <bernds@codesourcery.com>
784         * ira-build.c (ira_create_object): New arg SUBWORD; all callers
785         changed.  Initialize OBJECT_SUBWORD.
786         (ira_create_allocno): Clear ALLOCNO_NUM_OBJECTS.
787         (ira_create_allocno_objects): Renamed from ira_create_allocno_object;
788         all callers changed.
789         (merge_hard_reg_conflicts): Iterate over allocno subobjects.
790         (finish_allocno): Likewise.
791         (move_allocno_live_ranges, copy_allocno_live_ranges): Likewise.
792         (remove_low_level_allocnos): Likewise.
793         (update_bad_spill_attribute): Likewise.
794         (setup_min_max_allocno_live_range_point): Likewise.
795         (sort_conflict_id_map): Likewise.
796         (ira_flattening): Likewise.  Use ior_hard_reg_conflicts.
797         (ior_hard_reg_conflicts): New function.
798         (ior_allocate_object_conflicts): Renamed first argument to OBJ.
799         (compress_conflict_vecs): Iterate over objects, not allocnos.
800         (ira_add_live_range_to_object): New function.
801         (object_range_compare_func): Renamed from allocno_range_compare_func.
802         All callers changed.
803         (setup_min_max_conflict_allocno_ids): For allocnos with multiple
804         subobjects, widen the min/max range of the lowest-order object to
805         potentially include all other such low-order objects.
806         * ira.c (ira_bad_reload_regno_1): Iterate over allocno subobjects.
807         (check_allocation): Likewise.  Use more fine-grained tests for register
808         conflicts.
809         * ira-color.c (allocnos_have_intersected_live_ranges_p): Iterate over
810         allocno subobjects.
811         (assign_hard_reg): Keep multiple sets of conflicts.  Make finer-grained
812         choices about which bits to set in each set.  Don't use
813         ira_hard_reg_not_in_set_p, perform a more elaborate test for conflicts
814         using the multiple sets we computed.
815         (push_allocno_to_stack): Iterate over allocno subobjects.
816         (all_conflicting_hard_regs_coalesced): New static function.
817         (setup_allocno_available_regs_num): Use it.
818         (setup_allocno_left_conflicts_size): Likewise.  Iterate over allocno
819         subobjects.
820         (coalesced_allocno_conflict): Test subobject 0 in each allocno.
821         (setup_allocno_priorities): Divide ALLOCNO_EXCESS_PRESSURE_POINTS_NUM
822         by ALLOCNO_NUM_OBJECTS.
823         (calculate_spill_cost): Likewise.
824         (color_pass): Express if statement in a more normal way.
825         (ira_reassign_conflict_allocnos): Iterate over allocno subobjects.
826         (slot_coalesced_allocno_live_ranges_intersect_p): Likewise.
827         (setup_slot_coalesced_allocno_live_ranges): Likewise.
828         (allocno_reload_assign): Likewise.
829         (ira_reassign_pseudos): Likewise.
830         (fast_allocation): Likewise.
831         * ira-conflicts.c (build_conflict_bit_table): Likewise.
832         (print_allocno_conflicts): Likewise.
833         (ira_build_conflicts): Likewise.
834         (allocnos_conflict_for_copy_p): Renamed from allocnos_conflict_p.  All
835         callers changed.  Test subword 0 of each allocno for conflicts.
836         (build_object_conflicts): Renamed from build_allocno_conflicts.  All
837         callers changed.  Iterate over allocno subobjects.
838         * ira-emit.c (modify_move_list): Iterate over allocno subobjects.
839         * ira-int.h (struct ira_allocno): New member: num_objects.
840         Rename object to objects and change it into an array.
841         (ALLOCNO_OBJECT): Add new argument N.
842         (ALLOCNO_NUM_OBJECTS, OBJECT_SUBWORD): New macros.
843         (ira_create_allocno_objects): Renamed from ira_create_allocno_object.
844         (ior_hard_reg_conflicts): Declare.
845         (ira_add_live_range_to_object): Declare.
846         (ira_allocno_object_iterator): New.
847         (ira_allocno_object_iter_init, ira_allocno_object_iter_cond): New.
848         (FOR_EACH_ALLOCNO_OBJECT): New macro.
849         * ira-lives.c (objects_live): Renamed from allocnos_live; all
850         uses changed.
851         (allocnos_processed): New sparseset.
852         (make_object_born): Renamed from make_allocno_born; take an
853         ira_object_t argument.  All callers changed.
854         (make_object_dead): Renamed from make_allocno_dead; take an
855         ira_object_t argument.  All callers changed.
856         (update_allocno_pressure_excess_length): Take an ira_obejct_t argument.
857         All callers changed.
858         (mark_pseudo_regno_live): Iterate over allocno subobjects.
859         (mark_pseudo_regno_dead): Likewise.
860         (mark_pseudo_regno_subword_live, mark_pseudo_regno_subword_dead): New
861         functions.
862         (mark_ref_live): Detect subword accesses and call
863         mark_pseudo_regno_subword_live as appropriate.
864         (mark_ref_dead): Likewise for mark_pseudo_regno_subword_dead.
865         (process_bb_nodes_live): Deal with object-related updates first; set
866         and test bits in allocnos_processed to avoid computing allocno
867         statistics more than once.
868         (create_start_finish_chains): Iterate over objects, not allocnos.
869         (print_object_live_ranges): New function.
870         (print_allocno_live_ranges): Use it.
871         (ira_create_allocno_live_ranges): Allocate and free allocnos_processed
872         and objects_live.
874 2010-07-22  Richard Guenther  <rguenther@suse.de>
876         PR lto/42451
877         * gimple.c (gtc_next_dfs_num): New global.
878         (struct sccs): Make value a union, add integer same_p member.
879         (gtc_visit): New function.
880         (gimple_types_compatible_p_1): New function, split out from ...
881         (gimple_types_compatible_p): ... here.  Start a DFS walk here.
882         (iterative_hash_gimple_type): Adjust for sccs change.
884 2010-07-22  Martin Jambor  <mjambor@suse.cz>
886         PR tree-optimization/44891
887         * tree-sra.c: Include gimple-pretty-print.h.
888         (replace_uses_with_default_def_ssa_name): Renamed to
889         get_repl_default_def_ssa_name, return the new SSA name instead of
890         replacing the old one.
891         (sra_modify_assign): Dump a message when removing a load, if the LHS
892         is an SSA_NAME, do not do any propagation, just set the RHS to a
893         default definition SSA NAME, type convert if necessary.
894         * Makefile.in (tree-sra.o): Add gimple-pretty-print.h to dependencies.
896 2010-07-22  Richard Guenther  <rguenther@suse.de>
898         PR tree-optimization/45017
899         * tree-ssa-sccvn.c (vn_reference_eq): Make sure we honor
900         TYPE_PRECISION of integral types in addition to size.
902 2010-07-22  Maxim Kuvyrkov  <maxim@codesourcery.com>
904         * config/rs6000/sysv4.h (CHOOSE_DYNAMIC_LINKER): Default to GLIBC
905         when no C library is specified.
907 2010-07-22  Martin Jambor  <mjambor@suse.cz>
909         * ipa-prop.h (struct ipa_node_params): Updated comment.
910         (struct ipa_edge_args): Likewise.
911         * Makefile.in (ipa-prop.o): Remove bogus $(GIMPLE_FOLD_H) dependency.
913 2010-07-22  Martin Jambor  <mjambor@suse.cz>
915         * cgraphunit.c (verify_edge_count_and_frequency): New function.
916         (verify_cgraph_node): Verify frequencies of indirect edges.
917         * tree-inline.c (tree_function_versioning): Update frequencies of
918         indirect edges.
920 2010-07-22  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
922         PR target/43698
923         * config/arm/arm.md: Split arm_rev into *arm_rev and *thumb1_rev.
924         Set *arm_rev to be predicable.
926 2010-07-22  Iain Sandoe  <iains@gcc.gnu.org>
928         * config/darwin.h (LINK_COMMAND_SPEC): Split into...
929         (LINK_COMMAND_SPEC_A): New.
930         (DSYMUTIL): New.
931         (DSYMUTIL_SPEC): New.
932         * config/darwin9.h (LINK_COMMAND_SPEC): Remove.
933         (DSYMUTIL_SPEC): Update for darwin >= 9 requirements.
935 2010-07-22  Iain Sandoe  <iains@gcc.gnu.org>
937         * calls.c (load_register_parameters): Move check for zero
938         sized items so that only the call to
939         mem_overlaps_already_clobbered_arg_p () is protected.
941 2010-07-22  Jan Hubicka  <jh@suse.cz>
943         * ipa-pure-const.c (varying_state): Break out from ...
944         (get_function_state): ... here; always return varying_state
945         when state would be NULL otherwise.
946         (remove_node_data): Do not free varying state.
948 2010-07-22  Bernd Schmidt  <bernds@codesourcery.com>
950         PR bootstrap/44970
951         PR middle-end/45009
952         * postreload.c: Include "target.h".
953         (reload_combine_closest_single_use): Don't take DEBUG_INSNs
954         into account.
955         (fixup_debug_insns): Don't copy the rtx.
956         (reload_combine_recognize_const_pattern): DEBUG_INSNs can't have uses.
957         Don't copy when replacing.  Call fixup_debug_insns in the case where
958         we merged one add with another.
959         (reload_combine_recognize_pattern): Fail if there aren't any uses.
960         Try harder to determine whether we're picking a valid index register.
961         Don't set store_ruid for an insn we're going to scan in the
962         next iteration.
963         (reload_combine): Remove unused code.
964         (reload_combine_note_use): When updating use information for
965         an old insn, ignore a use that occurs after store_ruid.
966         * Makefile.in (postreload.o): Update dependencies.
968         * function.c (record_hard_reg_sets): Restrict the previous change
969         to cases where the incoming nominal mode is the same as the
970         incoming promoted mode and everything happens in MODE_INT.
972 2010-07-21  Jakub Jelinek  <jakub@redhat.com>
974         PR debug/45015
975         * var-tracking.c (adjust_mems): Ignore ASM_OPERANDS with non-zero
976         ASM_OPERANDS_OUTPUT_IDX.
977         (adjust_insn): For inline asm with multiple sets ensure first
978         ASM_OPERANDS vectors are used by all following ASM_OPERANDS in
979         the insn.
981 2010-07-21  Richard Henderson  <rth@redhat.com>
983         * config/i386/i386.c (setup_incoming_varargs_64): Emit a simple
984         comparison for avoiding xmm register saves.  Emit the xmm register
985         saves explicitly.
986         * config/i386/i386.md (UNSPEC_SSE_PROLOGUE_SAVE): Remove.
987         (UNSPEC_SSE_PROLOGUE_SAVE_LOW): Remove.
988         (sse_prologue_save, sse_prologue_save_insn1, sse_prologue_save_insn):
989         Remove patterns and the associated splitters.
991 2010-07-21  Changpeng Fang  <changpeng.fang@amd.com>
993         * tree-ssa-loop-prefetch.c (analyze_ref): Strip off the real
994         and imagine parts of a complex, so that they can have the same
995         base and fall into the same group.
997 2010-07-21  Richard Guenther  <rguenther@suse.de>
999         PR lto/45018
1000         * tree.c (find_decls_types_r): Do not follow TREE_CHAIN
1001         of TYPE_DECLs.  Do not follow TYPE_NEXT_VARIANT,
1002         TYPE_NEXT_PTR_TO, nor TYPE_NEXT_REF_TO or TYPE_CANONICAL.
1004 2010-07-21  Martin Jambor  <mjambor@suse.cz>
1006         PR tree-optimization/44900
1007         * tree-sra.c (load_assign_lhs_subreplacements): Updated comments.
1008         (sra_modify_assign): Move gsi to the next statmenent unconditionally.
1010 2010-07-21  Bernd Schmidt  <bernds@codesourcery.com>
1012         PR middle-end/44738
1013         * tree-ssa.c (warn_uninit): Avoid emitting an unnecessary message.
1015 2010-07-21  Richard Guenther  <rguenther@suse.de>
1017         PR middle-end/45013
1018         * tree-ssa.c (useless_type_conversion_p): Dispatch to
1019         gimple_types_compatible_p only when in lto.
1020         * gimple.c (gimple_types_compatible_p): Use canonical types
1021         to speed up comparison.
1023 2010-07-21  Richard Guenther  <rguenther@suse.de>
1025         * tree-flow.h (referenced_var): Move define ...
1026         * tree-flow-inline.h (referenced_var): ... here as an inline
1027         function.  Assert here ...
1028         * tree-dfa.c (referenced_var_lookup): ... instead of here.
1029         * tree-ssa.c (maybe_optimize_var): Check if the variable
1030         is in referenced vars.
1031         (execute_update_addresses_taken): Remove old broken check.
1032         * gimple-pretty-print.c (pp_points_to_solution): Use
1033         referenced_var_lookup.
1034         * tree-into-ssa.c (dump_decl_set): Likewise.
1036 2010-07-21  Jakub Jelinek  <jakub@redhat.com>
1038         PR debug/45003
1039         * var-tracking.c (reverse_op): Also handle {SIGN,ZERO}_EXTEND of a MEM.
1040         * dwarf2out.c (loc_descriptor): Don't handle SIGN_EXTEND nor
1041         ZERO_EXTEND here.
1043 2010-07-20  Richard Henderson  <rth@redhat.com>
1045         * vxworks.c (vxworks_emutls_var_fields): Pass locus to build_decls.
1047 2010-07-20  Bernd Schmidt  <bernds@codesourcery.com>
1049         * config/arm/arm.md (thumb1_addsi3): Add alternative and split for
1050         computing the sum of the stack pointer and a large constant.
1051         * config/arm/constraints.md (M): Remove superfluous parentheses.
1052         (Pc): New constraint.
1054 2010-07-20  Jakub Jelinek  <jakub@redhat.com>
1056         PR debug/45006
1057         * cfgexpand.c (expand_debug_expr): Only look at TYPE_UNSIGNED of
1058         operand's type if exp is tcc_unary class tree.
1060 2010-07-20  Nathan Froyd  <froydnj@codesourcery.com>
1062         * config/rs6000/rs6000.md (abs<mode>2_isel, nabs<mode>2_isel):
1063         Reverse sense of if_then_else condition.
1065 2010-07-20  Nathan Froyd  <froydnj@codesourcery.com>
1067         * config/rs6000/rs6000.opt (mblock-move-inline-limit): New option.
1068         * config/rs6000/rs6000.c (rs6000_override_options): Set
1069         rs6000_block_move_inline_limit appropriately.
1070         (expand_block_move): Use rs6000_block_move_inline_limit.
1071         * doc/invoke.texi (mblock-move-inline-limit): Document.
1073 2010-07-20  Bernd Schmidt  <bernds@codesourcery.com>
1075         * postreload.c (fixup_debug_insns): Remove arg REGNO.  New args
1076         FROM and TO.  All callers changed.  Don't look for tracked uses,
1077         just scan the RTL for DEBUG_INSNs and substitute.
1078         (reload_combine_recognize_pattern): Call fixup_debug_insns.
1079         (reload_combine): Ignore DEBUG_INSNs.
1081 2010-07-20  Jakub Jelinek  <jakub@redhat.com>
1083         * var-tracking.c (vt_expand_loc, vt_expand_loc_dummy): Bump maximum
1084         depth to 8 from 5.
1086         PR debug/45003
1087         * cfgexpand.c (expand_debug_expr) <case NOP_EXPR>: Use ZERO_EXTEND
1088         or SIGN_EXTEND depending on TYPE_UNSIGNED of the operand's type
1089         instead of the result's type.
1091 2010-07-20  Richard Guenther  <rguenther@suse.de>
1093         PR tree-optimization/44977
1094         * tree-ssa-dom.c (propagate_rhs_into_lhs): Do not create invalid
1095         SSA form.
1097 2010-07-20  Richard Guenther  <rguenther@suse.de>
1099         * lto-symtab.c (lto_symtab_merge): Use gimple_types_compatible_p.
1100         (lto_symtab_merge_decls_2): Likewise.
1101         * gimple.h (gimple_types_compatible_p): Declare.
1102         * gimple.c (gimple_queue_type_fixup): Remove.
1103         (gimple_fixup_complete_and_incomplete_subtype_p): Likewise.
1104         (gimple_compatible_complete_and_incomplete_type_p): New function.
1105         (gimple_types_compatible_p): Adjust.
1106         (gimple_register_type): Remove type fixup code.
1107         (print_gimple_types_stats): Adjust.
1108         (free_gimple_type_tables): Likewise.
1109         * lto-streamer-in.c (input_gimple_stmt): Use gimple_types_compatible_p.
1110         * tree-ssa.c (useless_type_conversion_p): Likewise.
1112 2010-07-20  Richard Guenther  <rguenther@suse.de>
1114         PR middle-end/44971
1115         PR middle-end/44988
1116         * tree-ssa.c (maybe_optimize_var): New function split out from ...
1117         (execute_update_addresses_taken): ... here.
1118         (non_rewritable_mem_ref_base): Likewise.
1119         (execute_update_addresses_taken): Do not iterate over all referenced
1120         vars but just all local decls and parms.
1121         Properly check call and asm arguments and rewrite call arguments.
1123 2010-07-20  Maxim Kuvyrkov  <maxim@codesourcery.com>
1125         * config.gcc (LIBC_GLIBC, LIBC_UCLIBC, LIBC_BIONIC): Move constants
1126         to top level.
1127         * config/linux.h (LINUX_TARGET_OS_CPP_BUILTINS): Move Android-specific
1128         definitions ...
1129         * config/linux-android.h (ANDROID_TARGET_OS_CPP_BUILTINS): ... here.
1130         New macro.
1131         * config/arm/linux-eabi.h (TARGET_OS_CPP_BUILTINS): Use it.
1133 2010-07-19  Richard Sandiford  <rdsandiford@googlemail.com>
1135         * gengtype.c (start_root_entry): New function, split out from
1136         write_root.  Check whether V is null and raise an error if so.
1137         (write_field_root): Check for V being null.  Don't raise an error here;
1138         set V to null instead.
1139         (write_root): Update comment above function.  Use start_root_entry.
1141 2010-07-19  Xinliang David Li  <davidxl@google.com>
1143         PR testsuite/44932
1144         * tree-ssa-uninit.c (collect_phi_def_edges): Fix bug collecting
1145         def edges.
1146         (find_uninit_use): Add dump.
1147         (is_use_properly_guarded): Ditto.
1148         (warn_uninitialized_phi): Ditto.
1149         (execute_late_warn_uninitialized): Ditto.
1151 2010-07-19  Richard Guenther  <rguenther@suse.de>
1153         PR middle-end/44941
1154         * expr.c (emit_block_move_hints): Move zero size check first.
1155         Move asserts to more useful places.
1156         * calls.c (load_register_parameters): Check for zero size.
1158 2010-07-19  Richard Henderson  <rth@redhat.com>
1160         * tree-optimize.c (execute_all_early_local_passes): New.  Change
1161         cgraph_state here ...
1162         (execute_early_local_optimizations): ... not here.  Remove.
1163         (pass_early_local_passes, pass_all_early_optimizations): Update.
1165 2010-07-19  Bernd Schmidt  <bernds@codesourcery.com>
1167         * postreload.c (reload_combine_closest_single_use): Ignore the
1168         number of uses for DEBUG_INSNs.
1169         (fixup_debug_insns): New static function.
1170         (reload_combine_recognize_const_pattern): Use it.  Don't let the
1171         main loop be affected by DEBUG_INSNs.
1172         Really disallow moving adds past a jump insn.
1173         (reload_combine_recognize_pattern): Don't update use_ruid here.
1174         (reload_combine_note_use): Do it here.
1175         (reload_combine): Use control_flow_insn_p rather than JUMP_P.
1177 2010-07-19  Bingfeng Mei  <bmei@broadcom.com>
1179         * ddg.c (create_ddg): Exclude nodes of debug_insn in counting nodes
1180         of a loop.
1181         * loop-doloop.c (doloop_condition_get): Skip possible debug_insn.
1183 2010-07-19  Iain Sandoe  <iains@gcc.gnu.org>
1185         * config/i386/darwin.h: Define darwin_emit_branch_islands.
1186         (TARGET_MACHO_BRANCH_ISLANDS): New.
1187         (FUNCTION_PROFILER): Use TARGET_MACHO_BRANCH_ISLANDS.
1188         * config/i386/i386.h (TARGET_MACHO_BRANCH_ISLANDS): Define a
1189         default value.
1190         * config/i386/i386.c (output_pic_addr_const): Do not emit
1191         branch islands unless TARGET_MACHO_BRANCH_ISLANDS is set.
1192         (x86_output_mi_thunk): Adjust symbol creation.
1193         * config/rs6000/darwin.h: Define darwin_emit_branch_islands.
1194         Remove out of date comment.
1195         * config/rs6000/rs6000.c (print_operand): Adjust symbol.
1196         (DARWIN_LINKER_GENERATES_ISLANDS): Remove.
1197         (DARWIN_GENERATE_ISLANDS): Ditto.
1198         (output_call):  Do not emit branch islands unless
1199         darwin_emit_branch_islands is set.
1200         * config/darwin.c: Declare darwin_emit_branch_islands.
1201         (machopic_indirect_data_reference): Do not emit unless
1202         darwin_emit_branch_islands is set.
1203         (darwin_override_options): Set darwin_emit_branch_islands
1204         where it is needed.
1205         * config/darwin9.h (DARWIN_LINKER_GENERATES_ISLANDS): Remove.
1207 2010-07-19  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
1209         * doc/sourcebuild.texi (Effective-Target Keywords): Document
1210         sse_runtime, sse2_runtime.
1212 2010-07-18  Richard Sandiford  <rdsandiford@googlemail.com>
1214         * config/mips/mips.c (mips16_build_call_stub): Zero-extend the
1215         low half of a single-register SCmode return value before ORing
1216         it with the high half.
1217         * config/mips/mips16.S (MERGE_GPRf): Likewise.
1219 2010-07-17  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
1221         PR target/44805
1222         * config/pa/pa.h (CONSTANT_ALIGNMENT): Align strings to BITS_PER_WORD
1223         on all targets.
1225 2010-07-17  Bernd Schmidt  <bernds@codesourcery.com>
1227         PR target/42235
1228         * postreload.c (reload_cse_move2add): Return bool, true if anything.
1229         changed.  All callers changed.
1230         (move2add_use_add2_insn): Likewise.
1231         (move2add_use_add3_insn): Likewise.
1232         (reload_cse_regs): If reload_cse_move2add changed anything, rerun
1233         reload_combine.
1234         (RELOAD_COMBINE_MAX_USES): Bump to 16.
1235         (last_jump_ruid): New static variable.
1236         (struct reg_use): New members CONTAINING_MEM and RUID.
1237         (reg_state): New members ALL_OFFSETS_MATCH and REAL_STORE_RUID.
1238         (reload_combine_split_one_ruid, reload_combine_split_ruids,
1239         reload_combine_purge_insn_uses, reload_combine_closest_single_use
1240         reload_combine_purge_reg_uses_after_ruid,
1241         reload_combine_recognize_const_pattern): New static functions.
1242         (reload_combine_recognize_pattern): Verify that ALL_OFFSETS_MATCH
1243         is true for our reg and that we have available index regs.
1244         (reload_combine_note_use): New args RUID and CONTAINING_MEM.  All
1245         callers changed.  Use them to initialize fields in struct reg_use.
1246         (reload_combine): Initialize last_jump_ruid.  Be careful when to
1247         take PREV_INSN of the scanned insn.  Update REAL_STORE_RUID fields.
1248         Call reload_combine_recognize_const_pattern.
1249         (reload_combine_note_store): Update REAL_STORE_RUID field.
1251 2010-07-16  Jason Merrill  <jason@redhat.com>
1253         * Makefile.in (opts-common.o): Depend on options.h.
1255 2010-07-16  Nathan Froyd  <froydnj@codesourcery.com>
1257         * tree.c (build_common_builtin_nodes): Use build_function_type_list
1258         instead of build_function_type.
1259         * tree-ssa-loop-prefetch.c (tree_ssa_prefetch_arrays): Likewise.
1260         * cgraphunit.c (cgraph_build_static_cdtor): Likewise.
1262 2010-07-16  Nathan Froyd  <froydnj@codesourcery.com>
1264         * config/rs6000/rs6000.c (rs6000_emit_sISEL): Let rs6000_emit_int_cmove
1265         do all the work.
1266         (rs6000_emit_int_cmove): Use function pointers for insn generation.
1267         Don't force values into registers unnecessarily.
1268         (output_isel): Assert that we're not given conditions we can't handle.
1269         Delete corresponding code.
1270         * config/rs6000/rs6000.md (isel_signed_<mode>): Use
1271         scc_comparison_operator constraint.  Permit 0 for the consequent
1272         operand.  Permit any GPR for the alternative operand.
1273         (isel_unsigned_<mode>): Likewise.
1275 2010-07-16  Jakub Jelinek  <jakub@redhat.com>
1277         PR target/44942
1278         * config/i386/i386-protos.h (ix86_function_arg_boundary): Change second
1279         argument to const_tree.
1280         * config/i386/i386.c (function_arg_advance): If padding needs to be
1281         inserted before argument, increment cum->words by number of padding
1282         words as well.
1283         (contains_aligned_value_p): Change argument to const_tree.
1284         (ix86_function_arg_boundary): Change second argument to const_tree.
1286 2010-07-16  Bernd Schmidt  <bernds@codesourcery.com>
1288         PR target/42235
1289         * function.c (record_hard_reg_sets): New static function.
1290         (assign_parm_setup_reg): If an optab for extending exists and the
1291         generated code clobbbers no hard regs, emit the insn directly and
1292         create a REG_EQUIV note.
1294 2010-07-15  Nathan Froyd  <froydnj@codesourcery.com>
1296         * c-decl.c (detect_field_duplicates): Use DECL_CHAIN insted of
1297         TREE_CHAIN.
1298         * c-typeck.c (push_init_level): Likewise.
1299         (process_init_element): Likewise.
1301 2010-07-15  Anatoly Sokolov  <aesok@post.ru>
1303         * tree.h (enum tree_index): Add TI_INTEGER_THREE.
1304         (integer_three_node): Add.
1305         * tree.c (build_common_tree_nodes_2): Use integer_type_node insead of
1306         NULL_TREE in build_int_cst calls. Initialize the integer_three_node.
1307         * builtins.c (expand_builtin_prefetch): Use common tree nodes instead
1308         of call build_int_cst.
1309         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Ditto.
1310         * tree-ssa-loop-ivopts.c (idx_find_step): Ditto.
1311         (find_interesting_uses_address): Ditto.
1312         * tree-ssa-alias.c (ao_ref_init_from_ptr_and_size): Ditto.
1313         * tree-eh.c (lower_eh_constructs_2): Ditto.
1314         * tree-vect-loop.c (get_initial_def_for_induction): Ditto.
1315         * c-typeck.c (really_start_incremental_init, push_init_level): Ditto.
1316         * expmed.c (expand_divmod): Ditto.
1317         * tree-mudflap.c (mx_register_decls): Ditto.
1318         * varasm.c (array_size_for_constructor): Ditto.
1319         * tree-ssa-loop-prefetch.c (issue_prefetch_ref): Ditto.
1320         * c-parser.c (c_parser_postfix_expression): Ditto.
1322 2010-07-15  Bernd Schmidt  <bernds@codesourcery.com>
1324         * postreload.c (last_label_ruid, first_index_reg, last_index_reg):
1325         New static variables.
1326         (reload_combine_recognize_pattern): New static function, broken out
1327         of reload_combine.
1328         (reload_combine): Use it.  Only initialize first_index_reg and
1329         last_index_reg once.
1331 2010-07-15  Richard Henderson  <rth@redhat.com>
1333         * cgraphunit.c (cgraph_build_static_cdtor): Clear current_function_decl
1334         when done.
1336 2010-07-15  Jan Hubicka  <jh@suse.cz>
1338         * lto-symtab.c (lto_symtab_resolve_symbols): Remove hack handling
1339         comdats for broken gold.
1340         (lto_sy mtab_merge_decls_1): Set used_from_object_file correctly.
1342 2010-07-15  Nathan Froyd  <froydnj@codesourcery.com>
1344         * tree.h (TREE_RTL_OPERAND_CHECK): Delete.
1346 2010-07-15  Nathan Froyd  <froydnj@codesourcery.com>
1348         * tree.h (DECL_CHAIN): Define.
1349         * alias.c: Carefully replace TREE_CHAIN with DECL_CHAIN.
1350         * c-decl.c: Likewise.
1351         * c-parser.c: Likewise.
1352         * c-typeck.c: Likewise.
1353         * cfgexpand.c: Likewise.
1354         * cgraph.c: Likewise.
1355         * cgraphunit.c: Likewise.
1356         * combine.c: Likewise.
1357         * config/alpha/alpha.c: Likewise.
1358         * config/arm/arm.c: Likewise.
1359         * config/frv/frv.c: Likewise.
1360         * config/i386/i386.c: Likewise.
1361         * config/i386/winnt-cxx.c: Likewise.
1362         * config/ia64/ia64.c: Likewise.
1363         * config/iq2000/iq2000.c: Likewise.
1364         * config/mep/mep.c: Likewise.
1365         * config/mips/mips.c: Likewise.
1366         * config/pa/som.h: Likewise.
1367         * config/rs6000/rs6000.c: Likewise.
1368         * config/s390/s390.c: Likewise.
1369         * config/sh/sh.c: Likewise.
1370         * config/sh/symbian-cxx.c: Likewise.
1371         * config/sparc/sparc.c: Likewise.
1372         * config/spu/spu.c: Likewise.
1373         * config/stormy16/stormy16.c: Likewise.
1374         * config/vxworks.c: Likewise.
1375         * config/xtensa/xtensa.c: Likewise.
1376         * coverage.c: Likewise.
1377         * dbxout.c: Likewise.
1378         * dwarf2out.c: Likewise.
1379         * emit-rtl.c: Likewise.
1380         * expr.c: Likewise.
1381         * function.c: Likewise.
1382         * gimple-low.c: Likewise.
1383         * gimple-pretty-print.c: Likewise.
1384         * gimplify.c: Likewise.
1385         * integrate.c: Likewise.
1386         * ipa-inline.c: Likewise.
1387         * ipa-prop.c: Likewise.
1388         * ipa-split.c: Likewise.
1389         * ipa-struct-reorg.c: Likewise.
1390         * ipa-type-escape.c: Likewise.
1391         * langhooks.c: Likewise.
1392         * lto-cgraph.c: Likewise.
1393         * omp-low.c: Likewise.
1394         * stor-layout.c: Likewise.
1395         * tree-cfg.c: Likewise.
1396         * tree-complex.c: Likewise.
1397         * tree-dfa.c: Likewise.
1398         * tree-dump.c: Likewise.
1399         * tree-inline.c: Likewise.
1400         * tree-mudflap.c: Likewise.
1401         * tree-nested.c: Likewise.
1402         * tree-object-size.c: Likewise.
1403         * tree-pretty-print.c: Likewise.
1404         * tree-sra.c: Likewise.
1405         * tree-ssa-live.c: Likewise.
1406         * tree-ssa-loop-niter.c: Likewise.
1407         * tree-ssa-math-opts.c: Likewise.
1408         * tree-ssa-reassoc.c: Likewise.
1409         * tree-ssa-sccvn.c: Likewise.
1410         * tree-ssa-structalias.c: Likewise.
1411         * tree-tailcall.c: Likewise.
1412         * tree-vrp.c: Likewise.
1413         * tree.c: Likewise.
1414         * var-tracking.c: Likewise.
1415         * varasm.c: Likewise.
1417 2010-07-15  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
1419         PR target/44877
1420         * config/spu/spu.c (spu_expand_builtin_1): Allow references
1421         (as well as pointers) as argument to mask_for_load builtins.
1423 2010-07-15  Richard Guenther  <rguenther@suse.de>
1425         PR tree-optimization/44946
1426         * tree-ssa-structalias.c (get_constraint_for_component_ref): Deal
1427         with accessing only padding properly.
1429 2010-07-15  Jan Hubicka  <jh@suse.cz>
1431         * ipa.c (function_and_variable_visibility): Variables marked as used
1432         should not be localized.
1434 2010-07-15  Jan Hubicka  <jh@suse.cz>
1436         * cgraph.c: Include lto-streamer.h
1437         (change_decl_assembler_name): Work when assembler name hash is at place.
1438         (cgraph_make_decl_local): When localizing COMDAT symbol at WPA stage,
1439         be sure to rename it to avoid name clash.
1440         * ipa.c (cgraph_externally_visible_p, function_and_variable_visibility):
1441         Localize hidden symbols only when locally defined.
1443 2010-07-15  Uros Bizjak  <ubizjak@gmail.com>
1445         * config/i386/i386.h (SHIFT_COUNT_TRUNCATED): Expand comment.
1447 2010-07-15  Magnus Granberg  <zorry@gentoo.org>
1448             Kevin F. Quinn  <kevquinn@gentoo.org>
1450         * builtins.c (expand_builtin_init_trampoline): Warn for -Wtrampolines.
1451         * common.opt: Add -Wtrampolines.
1452         * doc/invoke.texi: Add -Wtrampolines.
1454 2010-07-15  Jie Zhang  <jie@codesourcery.com>
1456         * config/arm/cortex-a8.md (cortex_a8_load_store_2): Reserve
1457         cortex_a8_issue_ls.
1459 2010-07-15  Dave Korn  <dave.korn.cygwin@gmail.com>
1461         * config/i386/cygwin.h (LIBGCJ_SONAME): Update.
1462         * config/i386/mingw32.h (LIBGCJ_SONAME): Likewise.
1464 2010-07-14  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
1466         * config/spu/spu.c (reg_names): Remove prototype.
1467         (call_used_regs): Likewise.
1469 2010-07-14  Dave Korn  <dave.korn.cygwin@gmail.com>
1471         * config/i386/cygming-crtend.c (__FRAME_END__): Replace attribute
1472         "unused" with attribute "used".
1473         (__JCR_END__): Likewise.
1474         * config/i386/cygming-crtbegin.c (__EH_FRAME_BEGIN__): Add missing
1475         "used" attribute.
1476         (__JCR_LIST__): Replace attribute "unused" with attribute "used".
1478 2010-07-14  Richard Guenther  <rguenther@suse.de>
1480         * lto-streamer-in.c (maybe_fixup_handled_component): Remove.
1481         (maybe_fixup_decls): Likewise.
1482         (input_gimple_stmt): Do not fixup anything.
1483         * lto-streamer-out.c (output_gimple_stmt): Make sure all
1484         non-automatic variable uses are wrapped inside a MEM_REF.
1486 2010-07-14  Richard Henderson  <rth@redhat.com>
1488         * passes.c (rest_of_decl_compilation): Do not call assemble_variable
1489         for functions.
1490         * varasm.c (assemble_variable): Remove early exit for functions;
1491         assert that we're given a variable.
1493 2010-07-14  Jie Zhang  <jie@codesourcery.com>
1495         * config/arm/cortex-a8.md (cortex_a8_alu): Don't use
1496         cortex_a8_default when neon_type is not none.
1498 2010-07-14  Bernd Schmidt  <bernds@codesourcery.com>
1500         * lower-subreg.c (subreg_context): New static bitmap.
1501         (decompose_multiword_subregs): Allocate and free it.
1502         (find_decomposable_subregs): Set a bit in it for a register that
1503         occurs in a subreg that changes mode but not size.
1504         (can_decompose_p): Test it instead of non_decomposable_context.
1506 2010-07-14  Richard Guenther  <rguenther@suse.de>
1508         PR tree-optimization/44824
1509         * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Use
1510         is_gimple_mem_ref_addr.
1511         (tree_ssa_forward_propagate_single_use_vars): Do not propagate
1512         non-decl_address_invariant_p addresses.
1514 2010-07-14  Bernd Schmidt  <bernds@codesourcery.com>
1516         * reload.c (find_reloads): Revert code to penalize small register
1517         classes that was brought in with the IRA merge.
1519 2010-07-14  Richard Guenther  <rguenther@suse.de>
1521         * tree-ssa-ccp.c (fold_const_aggregate_ref): Handle MEM_REF
1522         as base of ARRAY_REFs.
1524 2010-07-14  Richard Guenther  <rguenther@suse.de>
1526         PR middle-end/44930
1527         * tree-pretty-print.c (do_niy): Do not print a newline.
1529 2010-07-14  Bernd Schmidt  <bernds@codesourcery.com>
1531         * ira-int.h (struct ira_object): New.
1532         (ira_object_t): New typedef.  Add DEF_VEC_P and DEF_VEC_ALLOC_P for it.
1533         (struct ira_allocno): Remove members min, max,
1534         conflict_allocno_array, conflict_id, conflict_allocno_array_size,
1535         conflict_allocnos_num and conflict_vec_p.  Add new member object.
1536         (OBJECT_CONFLICT_ARRAY, OBJECT_CONFLICT_VEC_P,
1537         OBJECT_NUM_CONFLICTS, OBJECT_CONFLICT_ARRAY_SIZE,
1538         OBJECT_CONFLICT_HARD_REGS, OBJECT_TOTAL_CONFLICT_HARD_REGS,
1539         OBJECT_MIN, OBJECT_MAX, OBJECT_CONFLICT_ID): Renamed from
1540         ALLOCNO_CONFLICT_ALLOCNO_ARRAY, ALLOCNO_CONFLICT_VEC_P,
1541         ALLOCNO_CONFLICT_ALLOCNOS_NUM, ALLOCNO_CONFLICT_ALLOCNO_ARRAY_SIZE,
1542         ALLOCNO_CONFLICT_HARD_REGS, ALLOCNO_TOTAL_CONFLICT_HARD_REGS)
1543         ALLOCNO_MIN, ALLOCNO_MAX, and ALLOCNO_CONFLICT_ID; now operate on
1544         an ira_object_t rather than ira_allocno_t.  All uses changed.
1545         (ira_object_id_map): Renamed from ira_conflict_id_allocno_map; now
1546         contains a vector of ira_object_t; all uses changed.
1547         (ira_objects_num): Declare variable.
1548         (ira_create_allocno_object): Declare function.
1549         (ira_conflict_vector_profitable_p): Adjust prototype.
1550         (ira_allocate_conflict_vec): Renamed from
1551         ira_allocate_allocno_conflict_vec; first arg now ira_object_t.
1552         (ira_allocate_object_conflicts): Renamed from
1553         ira_allocate_allocno_conflicts; first arg now ira_object_t.
1554         (struct ira_object_iterator): New.
1555         (ira_object_iter_init, ira_object_iter_cond, FOR_EACH_OBJECT): New.
1556         (ira_allocno_conflict_iterator): Renamed member allocno_conflict_vec_p
1557         to conflict_vec_p.  All uses changed.
1558         (ira_allocno_conflict_iter_init, ira_allocno_conflict_iter_cond):
1559         Changed to take into account that conflicts are now tracked for
1560         objects.
1561         * ira-conflicts.c (OBJECTS_CONFLICT_P): Renamed from CONFLICT_ALLOCNO_P.
1562         Args changed to accept ira_object_t.  All uses changed.
1563         (allocnos_conflict_p): New static function.
1564         (collected_conflict_objects): Renamed from collected_allocno_objects;
1565         now a vector of ira_object_t.  All uses changed.
1566         (build_conflict_bit_table): Changed to take into account that
1567         conflicts are now tracked for objects.
1568         (process_regs_for_copy, propagate_copies, build_allocno_conflicts)
1569         (print_allocno_conflicts, ira_build_conflicts): Likewise.
1570         * ira-color.c (assign_hard_reg, setup_allocno_available_regs_num)
1571         setup_allocno_left_conflicts_size, allocno_reload_assign,
1572         fast_allocation): Likewise.
1573         * ira-lives.c (make_hard_regno_born, make_allocno_born)
1574         process_single_reg_class_operands, process_bb_node_lives): Likewise.
1575         * ira-emit.c (modify_move_list, add_range_and_copies_from_move_list):
1576         Likewise.
1577         * ira-build.c (ira_objects_num): New variable.
1578         (ira_object_id_map): Renamed from ira_conflict_id_allocno_map; now
1579         contains a vector of ira_object_t; all uses changed.
1580         (ira_object_id_map_vec): Corresponding change.
1581         (object_pool): New static variable.
1582         (initiate_allocnos): Initialize it.
1583         (finish_allocnos): Free it.
1584         (ira_create_object, ira_create_allocno_object, create_allocno_objects):
1585         New functions.
1586         (ira_create_allocno): Don't set members that were removed.
1587         (ira_set_allocno_cover_class): Don't change conflict hard regs.
1588         (merge_hard_reg_conflicts): Changed to take into account that
1589         conflicts are now tracked for objects.
1590         (ira_conflict_vector_profitable_p, ira_allocate_conflict_vec,
1591         allocate_conflict_bit_vec, ira_allocate_object_conflicts,
1592         compress_conflict_vecs, remove_low_level_allocnos, ira_flattening,
1593         setup_min_max_allocno_live_range_point, allocno_range_compare_func,
1594         setup_min_max_conflict_allocno_ids, ):  Likewise.
1595         (add_to_conflicts): Renamed from add_to_allocno_conflicts, args changed
1596         to ira_object_t; all callers changed.
1597         (ira_add_conflict): Renamed from ira_add_allocno_conflict, args changed
1598         to ira_object_t, all callers changed.
1599         (clear_conflicts): Renamed from clear_allocno_conflicts, arg changed
1600         to ira_object_t, all callers changed.
1601         (conflict_check, curr_conflict_check_tick): Renamed from
1602         allocno_conflict_check and curr_allocno_conflict_check_tick; all uses
1603         changed.
1604         (compress_conflict_vec): Renamed from compress_allocno_conflict_vec,
1605         arg changed to ira_object_t, all callers changed.
1606         (create_cap_allocno): Call ira_create_allocno_object.
1607         (finish_allocno): Free the corresponding object.
1608         (sort_conflict_id_map): Renamed from sort_conflict_id_allocno_map; all
1609         callers changed.  Adjusted for dealing with objects.
1610         (ira_build): Call create_allocno_objects after ira_costs.  Adjusted for
1611         dealing with objects.
1612         * ira.c (ira_bad_reload_regno_1): Adjusted for dealing with objects.
1614         * ira-int.h (struct live_range): Rename allocno member to object
1615         and change type to ira_object_t.
1616         (struct ira_object): New member live_ranges.
1617         (struct ira_allocno): Remove member live_ranges.
1618         (ALLOCNO_LIVE_RANGES): Remove.
1619         (OBJECT_LIVE_RANGES): New macro.
1620         (ira_create_live_range, ira_copy_live_range_list,
1621         ira_merge_live_range_list, ira_live_ranges_intersect_p,
1622         ira_finish_live_range, ira_finish_live_range_list): Adjust declarations.
1623         * ira-build.c (ira_create_object): Initialize live ranges here.
1624         (ira_create_allocno): Not here.
1625         (ira_create_live_range): Rename from ira_create_allocno_live_range, arg
1626         changed to ira_object_t, all callers changed.
1627         (copy_live_range): Rename from copy_allocno_live_range, all callers
1628         changed.
1629         (ira_copy_live_range_list): Rename from
1630         ira_copy_allocno_live_range_list, all callers changed.
1631         (ira_merge_live_ranges): Rename from ira_merge_allocno_live_range_list,
1632         all callers changed.
1633         (ira_live_ranges_intersect_p): Rename from
1634         ira_allocno_live_ranges_intersect_p, all callers changed.
1635         (ira_finish_live_range): Rename from ira_finish_allocno_live_range, all
1636         callers changed.
1637         (ira_finish_live_range_list): Rename from
1638         ira_finish_allocno_live_range_list, all callers changed.
1639         (change_object_in_range_list): Rename from change_allocno_in_range_list,
1640         last arg changed to ira_object_t, all callers changed.
1641         (finish_allocno): Changed to expect live ranges in the allocno's object.
1642         (move_allocno_live_ranges, copy_allocno_live_ranges,
1643         update_bad_spill_attribute, setup_min_max_allocno_live_range_point,
1644         ira_flattening, ira_build): Likewise.
1645         * ira-color.c (allocnos_have_intersected_live_ranges_p,
1646         slot_coalesced_allocno_live_ranges_intersect,
1647         setup_slot_coalesced_allocno_live_ranges, fast_allocation): Likewise.
1648         * ira-conflicts.c (build_conflict_bit_table): Likewise.
1649         * ira-emit.c (add_range_and_copies_from_move_list): Likewise.
1650         * ira-lives.c (make_allocno_born, update_allocno_pressure_excess_length,
1651         make_allocno_dead, create_start_finish_chains,
1652         remove_some_program_points_and_update_live_ranges,
1653         ira_debug_live_range_list): Likewise.
1655         * ira-int.h (ira_object_conflict_iterator): Rename from
1656         ira_allocno_conflict_iterator.
1657         (ira_object_conflict_iter_init): Rename from
1658         ira_allocno_conflict_iter_init, second arg changed to
1659         * ira.c (check_allocation): Use FOR_EACH_OBJECT_CONFLICT rather than
1660         FOR_EACH_ALLOCNO_CONFLICT.
1661         * ira-color.c (assign_hard_reg, push_allocno_to_stack)
1662         setup_allocno_left_conflicts_size, coalesced_allocno_conflict_p,
1663         ira_reassign_conflict_allocnos, ira_reassign_pseudos): Likewise.
1664         * ira-conflicts.c (print_allocno_conflicts): Likewise.
1666 2010-07-13  Joern Rennecke  <joern.rennecke@embecosm.com>
1668         PR other/44874
1669         * tree-dump.c (dump_options): Add enumerate_locals entry.
1670         Add TDF_NOID exclusion to all entry.
1671         * tree-dump.h (dump_enumerated_decls): Declare.
1672         * tree-pretty-print.c (dump_generic_node): For TDF_NOID,
1673         Don't display type uid.
1674         (print_declaration): Don't crash on TREE_TYPE (t) == 0.
1675         * tree-pass.h (TDF_ENUMERATE_LOCALS): Define.
1676         * tree-ssa-live.c: Include gimple.h.
1677         (numbered_tree_d): New struct.
1678         (numbered_tree): New typedef.
1679         (DEF_VEC_O (numbered_tree): New.
1680         (DEF_VEC_ALLOC_O (numbered_tree, heap)): Likewise.
1681         (compare_decls_by_uid, dump_enumerated_decls_push): New functions.
1682         (dump_enumerated_decls): Likewise.
1683         * tree-optimize.c (execute_cleanup_cfg_post_optimizing): If comparing
1684         debug info and flag_dump_final_insns, call dump_enumerated_decls.
1685         * tree-cfg.c (dump_function_to_file): Call dump_enumerated_decls.
1686         * Makefile.in (tree-ssa-live.o): Depend on $(GIMPLE_H).
1688 2010-07-13  Richard Sandiford  <rdsandiford@googlemail.com>
1690         * expmed.h (MAX_BITS_PER_WORD): Move to...
1691         * defaults.h (MAX_BITS_PER_WORD): ...here.
1693 2010-07-13  DJ Delorie  <dj@redhat.com>
1695         * config/h8300/h8300.c (h8300_init_once): Default to
1696         -fstrict_volatile_bitfields.
1698         * config/sh/sh.c (sh_override_options): Default to
1699         -fstrict_volatile_bitfields.
1701         * config/rx/rx.c (rx_option_override): New.
1703         * config/m32c/m32c.c (m32c_override_options): Default to
1704         -fstrict_volatile_bitfields.
1706 2010-07-13  Nathan Froyd  <froydnj@codesourcery.com>
1708         * tree.h (build_function_call_expr): Delete.
1709         (build_call_expr_loc_array): New function.
1710         (build_call_expr_loc_vec): New function.
1711         * tree-flow.h (struct omp_region): Change type of ws_args field
1712         to a VEC.
1713         * builtins.c (build_function_call_expr): Delete.
1714         (build_call_expr_loc_array): New function.
1715         (build_call_expr_loc): Call it.  Use XALLOCAVEC.
1716         (build_call_expr): Likewise.
1717         (build_call_expr_loc_vec): New function.
1718         * cgraphunit.c (build_cdtor): Call build_call_expr instead of
1719         build_function_call_expr.
1720         * expr.c (emutls_var_address): Likewise.
1721         * varasm.c (emutls_common_1): Likewise.
1722         * omp-low.c (expand_omp_atomic_mutex): Likewise.
1723         (expand_omp_taskreg): Adjust for new type of region->ws_args.
1724         (get_ws_args_for): Return a VEC instead of a tree.
1725         (expand_parallel_call): Call build_call_expr_loc_vec instead of
1726         build_function_call_expr.
1727         * stor-layout.c (self_referential_size): Likewise.
1729 2010-07-13  Jakub Jelinek  <jakub@redhat.com>
1731         PR testsuite/44701
1732         * recog.c (constrain_operands): Allow side-effects in memory
1733         operands if either < or > constraint is used, rather than if
1734         both < and > is used.
1736 2010-07-13  Richard Guenther  <rguenther@suse.de>
1738         PR middle-end/44911
1739         * tree-pretty-print.c (dump_generic_node): Use TDF_SLIM for
1740         MEM_REF pointer type dumping.  Avoid recursing for TYPE_DECLs
1741         without name.
1743 2010-07-13  Kaz Kojima  <kkojima@gcc.gnu.org>
1745         PR target/44761
1746         * mode-switching.c (optimize_mode_switching): Add ATTRIBUTE_UNUSED
1747         to variable emited.
1748         * config/sh/sh.c (sh_expand_epilogue): Remove unused variable.
1749         * config/sh/sh.md (symGOT_load): Likewise.
1750         (symDTPOFF2reg): Likewise.
1751         (symTPOFF2reg): Likewise.
1753 2010-07-13  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
1755         * expmed.c (MAX_BITS_PER_WORD): Moved to expmed.h.
1756         * expmed.h (MAX_BITS_PER_WORD): Moved from expmed.c.
1758 2010-07-13  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
1760         * config/i386/sol2-unwind.h (x86_64_fallback_frame_state): Correct
1761         explanation.
1762         Find ucontext_t * on Solaris 11.
1763         (x86_fallback_frame_state): Handle Solaris 9 multi-threaded pattern.
1764         Handle new Solaris 11 __sighndlr patterns.
1766 2010-07-13  Jakub Jelinek  <jakub@redhat.com>
1768         PR debug/44901
1769         * vec.h (VEC_block_remove): Fix comment.
1770         * tree-ssa-live.c (remove_unused_locals): Don't use
1771         VEC_unordered_remove on local_decls, instead replace a single
1772         vector element in each iteration if at least one element had
1773         to be removed and VEC_truncate at the end.
1774         * omp-low.c (expand_omp_taskreg): Likewise.
1776 2010-07-13  Manuel López-Ibáñez  <manu@gcc.gnu.org>
1778         * c-decl.c (finish_function): Fix typo in comment.
1780 2010-07-12  H.J. Lu  <hongjiu.lu@intel.com>
1782         PR bootstrap/44921
1783         * postreload.c (move2add_use_add3_insn): Silence gcc warning
1784         on min_regno.
1786 2010-07-12  Jakub Jelinek  <jakub@redhat.com>
1788         * tree-vrp.c (simplify_bit_ops_using_ranges): New function.
1789         (simplify_stmt_using_ranges): Use it.
1791 2010-07-12  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
1793         * config/spu/spu.h (struct spu_builtin_description): Remove FNDECL
1794         member.  Do not mark as GTY(()).
1795         * config/spu/spu.c (spu_builtins): Remove FNDECL initializer elements.
1796         (spu_builtin_decls): New static variable.
1797         (spu_builtin_decl): Use it instead of spu_builtins[].fndecl.
1798         (spu_init_builtins): Likewise.
1799         (spu_builtin_mul_widen_even): Likewise.
1800         (spu_builtin_mul_widen_odd): Likewise.
1801         (spu_builtin_mask_for_load): Likewise.
1802         (spu_builtin_vec_perm): Likewise.
1803         * config/spu/spu-c.c: Include "target.h".
1804         (spu_resolve_overloaded_builtin): Call targetm.builtin_decl instead
1805         of using spu_builtins[].fndecl.
1807 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
1809         * config/mips/mips.c (mips_override_options): Make -mflip-mips16
1810         imply -minterlink-mips16.
1812 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
1814         * config/mips/mips.h (mips16_globals): Declare.
1815         (SWITCHABLE_TARGET): Define.
1816         * config/mips/mips.c: Include target-globals.h.
1817         (mips16_globals): New variable.
1818         (mips_set_mips16_mode): Use save_target_globals and
1819         restore_target_globals instead of target_reinit.
1821 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
1823         * reginfo.c (init_reg_sets): Don't zero globals here.  Update comment
1824         to say that the function can be called more than once.
1825         * target-globals.c (save_target_globals): Call init_reg_sets.
1827 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
1829         * Makefile.in (bb-reorder.o, target-globals.o): Depend on bb-reorder.h
1830         * bb-reorder.h: New file.
1831         * bb-reorder.c (default_target_bb_reorder): New variable.
1832         (this_target_bb_reorder): New conditional variable.
1833         (uncond_jump_length): Redefine as a macro.
1834         * target-globals.h (this_target_bb_reorder): Declare.
1835         (target_globals): Add a bb_reorder field.
1836         (restore_target_globals): Copy the bb_reorder field to
1837         this_target_bb-reorder.
1838         * target-globals.c: Include bb-reorder.h.
1839         (default_target_globals): Initialize the bb_reorder field.
1840         (save_target_globals): Likewise.
1842 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
1844         * Makefile.in (gcse.o, target-globals.o): Depend on gcse.h..
1845         * gcse.h: New file.
1846         * gcse.c: Include gcse.h.
1847         (default_target_gcse): New variable.
1848         (this_target_gcse): New conditional variable.
1849         (can_copy): Redefine as a macro.
1850         (can_copy_init_p): New macro.
1851         (can_copy_p): Remove can_copy_init_p.
1852         * target-globals.h (this_target_gcse): Declare.
1853         (target_globals): Add a gcse field.
1854         (restore_target_globals): Copy the gcse field to this_target_gcse.
1855         * target-globals.c: Include gcse.h.
1856         (default_target_globals): Initialize the gcse field.
1857         (save_target_globals): Likewise.
1859 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
1861         * ira-int.h (target_ira_int): Add x_ira_prohibited_mode_move_regs
1862         and x_ira_prohibited_mode_move_regs_initialized_p.
1863         (ira_prohibited_mode_move_regs): Redefine as a macro.
1864         * ira.c (ira_prohibited_mode_move_regs): Delete.
1865         (ira_prohibited_mode_move_regs_initialized_p): Redefine as a macro.
1867 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
1869         * reload.h (target_reload): Add x_cached_reg_save_code and
1870         x_cached_reg_restore_code.
1871         * caller-save.c (cached_reg_save_code, cached_reg_restore_code):
1872         Redefine as macros.
1874 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
1876         * Makefile.in (target-globals.o): Depend on builtins.h.
1877         * builtins.h: New file.
1878         * builtins.c: Include builtins.h.
1879         (default_target_builtins): New variable.
1880         (this_target_builtins): New conditional variable.
1881         (apply_args_mode, apply_result_mode): Redefine as macros.
1882         * target-globals.h (this_target_builtins): Declare.
1883         (target_globals): Add a builtins field.
1884         (restore_target_globals): Copy the builtins field to
1885         this_target_builtins.
1886         * target-globals.c: Include builtins.h.
1887         (default_target_globals): Initialize the builtins field.
1888         (save_target_globals): Likewise.
1890 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
1892         * expmed.h (alg_code, mult_cost, MULT_COST_LESS, CHEAPER_MULT_COST)
1893         (algorithm, alg_hash_entry, NUM_ALG_HASH_ENTRIES, alg_hash): Moved
1894         from expmed.c.
1895         (target_expmed): Add x_alg_hash and x_alg_hash_used_p.
1896         (alg_hash, alg_hash_used_p): New macros.
1897         * expmed.c (init_expmed): Clear alg_hash if reinitializing.
1898         (alg_code, mult_cost, MULT_COST_LESS, CHEAPER_MULT_COST, algorithm)
1899         (alg_hash_entry, NUM_ALG_HASH_ENTRIES, alg_hash): Moved to expmed.h.
1901 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
1903         * ira-int.h (target_ira_int): Add x_max_struct_costs_size, x_init_cost,
1904         x_temp_costs, x_op_costs, x_this_op_costs and x_cost_classes.
1905         * ira-costs.c (max_struct_costs_size, init_cost, temp_costs, op_costs)
1906         (this_op_costs, costs_classes): Redefine as macros.
1907         (record_reg_classes): Don't take op_costs as a parameter.
1908         (record_operand_costs): Likewise.  Update calls to record_reg_classes.
1909         (scan_one_insn): Update call to record_operand_costs.
1911 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
1913         * Makefile.in (target-globals.o): Depend on $(IRA_INT_H).
1914         * ira-int.h (ira_max_nregs, ira_important_class_nums): Delete.
1915         (target_ira_int): New structure.
1916         (default_target_ira_int): Declare.
1917         (this_target_ira_int): Declare as a variable or define as a macro.
1918         (ira_reg_mode_hard_regset, ira_register_move_cost)
1919         (ira_may_move_in_cost, ira_may_move_out_cost, ira_class_subset_p)
1920         (ira_non_ordered_class_hard_regs, ira_class_hard_reg_index)
1921         (prohibited_class_mode_regs, ira_important_classes_num)
1922         (ira_important_classes, ira_reg_class_intersect)
1923         (ira_reg_classes_intersect_p, ira_reg_class_super_classes)
1924         (ira_reg_class_union): Redefine as macros.
1925         * ira.h (target_ira): New structure.
1926         (default_target_ira): Declare.
1927         (this_target_ira): Declare as a variable or define as a macro.
1928         (ira_available_class_regs, ira_hard_regno_cover_class)
1929         (ira_reg_class_cover_size, ira_reg_class_cover, ira_class_translate)
1930         (ira_reg_class_nregs, ira_memory_move_cost, ira_class_hard_regs)
1931         (ira_class_hard_regs_num): Redefine as macros.
1932         * ira.c (default_target_ira, default_target_ira_int): New variables.
1933         (this_target_ira, this_target_ira_int): New conditional variables.
1934         (ira_reg_mode_hard_regset, ira_memory_move_cost)
1935         (ira_register_move_cost, ira_may_move_in_cost, ira_may_move_out_cost)
1936         (ira_class_subset_p): Delete.
1937         (no_unit_alloc_regs): Redefine as a macro.
1938         (ira_class_hard_regs, ira_non_ordered_class_hard_regs)
1939         (ira_class_hard_regs_num, ira_class_hard_reg_index)
1940         (ira_available_class_regs): Delete.
1941         (alloc_reg_class_subclasses): Redefine as a macro.
1942         (ira_reg_class_cover_size, ira_reg_class_cover)
1943         (ira_important_classes_num, ira_important_classes)
1944         (ira_important_class_nums, ira_class_translate): Delete.
1945         (cover_class_order): Document the variable's lifetime.
1946         (reorder_important_classes): Don't set ira_important_class_nums.
1947         (ira_reg_class_intersect, ira_reg_classes_intersect_p)
1948         (ira_reg_class_super_classes, ira_reg_class_union)
1949         (ira_hard_regno_cover_class, ira_reg_class_nregs, ira_max_nregs):
1950         Delete.
1951         (setup_reg_class_nregs): Don't set ira_max_regs.
1952         (prohibited_class_mode_regs): Delete.
1953         * target-globals.h (this_target_ira, this_target_ira_int): Declare.
1954         (target_globals): Add ira and ira_int fields.
1955         (restore_target_globals): Copy the ira field to this_target_ira
1956         and the ira_int field to this_target_ira_int.
1957         * target-globals.c: Include ira-int.h.
1958         (default_target_globals): Initialize the ira and ira_int fields.
1959         (save_target_globals): Likewise.
1961 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
1963         * Makefile.in (target-globals.o): Depend on $(CFGLOOP_H).
1964         * cfgloop.h (target_cfgloop): New structure.
1965         (default_target_cfgloop): Declare.
1966         (this_target_cfgloop): Declare as a variable or define as a macro.
1967         (target_avail_regs, target_clobbered_regs, target_res_regs)
1968         (target_reg_cost, target_spill_cost): Redefine as macros.
1969         * cfgloopanal.c (default_target_cfgloop): New variable.
1970         (this_target_cfgloop): New conditional variable.
1971         (target_avail_regs, target_clobbered_regs, target_res_regs)
1972         (target_reg_cost, target_spill_cost): Delete.
1973         * target-globals.h (this_target_cfgloop): Declare.
1974         (target_globals): Add a cfgloop field.
1975         (restore_target_globals): Copy the cfgloop field to
1976         this_target_cfgloop.
1977         * target-globals.c: Include cfgloop.h.
1978         (default_target_globals): Initialize the cfgloop field.
1979         (save_target_globals): Likewise.
1981 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
1983         * regs.h (target_regs): Add x_direct_load, x_direct_store and
1984         x_float_extend_from_mem.
1985         (direct_load, direct_store, float_extend_from_mem): New macros.
1986         * expr.c (direct_load, direct_store, float_extend_from_mem): Delete.
1988 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
1990         * Makefile.in (LIBFUNCS_H): Add $(HASHTAB_H).
1991         (target-globals.o): Depend on $(LIBFUNCS_H).
1992         * libfuncs.h: Include hashtab.h.
1993         (libfunc_entry): Moved from optabs.c.
1994         (target_libfuncs): New structure.
1995         (default_target_libfuncs): Declare.
1996         (this_target_libfuncs): Declare as a variable or define as a macro.
1997         (libfunc_table): Redefine as a macro.
1998         * optabs.c (default_target_libfuncs): New variable.
1999         (this_target_libfuncs): New conditional variable.
2000         (libfunc_table): Delete.
2001         (libfunc_entry): Moved to optabs.h.
2002         (libfunc_hash): Redefine as a macro.
2003         (hash_libfunc, eq_libfunc): Fix comments.
2004         (init_optabs): Use libfunc_hash to detect cases where the function
2005         has already been called.  Clear the hash table instead of
2006         recreating it.
2007         * target-globals.h (this_target_libfuncs): Declare.
2008         (target_globals): Add a libfuncs field.
2009         (restore_target_globals): Copy the libfuncs field to
2010         this_target_libfuncs.
2011         * target-globals.c: Include libfuncs.h.
2012         (default_target_globals): Initialize the libfuncs field.
2013         (save_target_globals): Likewise.
2015 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
2017         * Makefile.in (LIBFUNCS_H): New variable.  Use instead of libfuncs.h
2018         in all dependency lists.
2020 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
2022         * Makefile.in (target-globals.o): Depend on $(EXPR_H) and $(OPTABS_H).
2023         * optabs.h (target_optabs): New structure.
2024         (default_target_optabs): Declare.
2025         (this_target_optabs): Declare as a variable or define as a macro.
2026         (optab_table, convert_optab_table, direct_optab_table): Redefine
2027         as macros.
2028         * optabs.c (default_target_optabs): New variable.
2029         (this_target_optabs): New conditional variable.
2030         (optab_table, convert_optab_table, direct_optab_table): Delete.
2031         * target-globals.h (this_target_optabs): Declare.
2032         (target_globals): Add a optabs field.
2033         (restore_target_globals): Copy the optabs field to
2034         this_target_optabs.
2035         * target-globals.c: Include expr.h and optabs.h.
2036         (default_target_globals): Initialize the optabs field.
2037         (save_target_globals): Likewise.
2039 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
2041         * flags.h (target_flagstate): Add x_flag_excess_precision.
2042         (flag_excess_precision): Redefine as a macro.
2043         * toplev.c (flag_excess_precision): Delete.
2045 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
2047         * defaults.h (MAX_MOVE_MAX, MIN_UNITS_PER_WORD): Define if not defined.
2048         * libgcc2.c (MIN_UNITS_PER_WORD): Delete.
2049         * hard-reg-set.h (target_hard_regs): Add x_no_caller_save_reg_set.
2050         (no_caller_save_reg_set): Redefine as a macro.
2051         * reload.h (target_reload): Add x_caller_save_initialized_p and
2052         x_regno_save_mode.
2053         (caller_save_initialized_p): Redefine as a macro.
2054         * caller-save.c (caller_save_initialized_p, no_caller_save_reg_set)
2055         (MAX_MOVE_MAX, MIN_UNITS_PER_WORD): Delete.
2056         (regno_save_mode): Redefine as a macro.
2058 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
2060         * Makefile.in (expmed.o, target-globals.o): Depend on expmed.h.
2061         * expmed.h: New file.
2062         * expmed.c (default_target_costs): New variable.
2063         (this_target_costs): New conditional variable.
2064         (sdiv_pow2_cheap, smod_pow2_cheap, zero_cost, add_cost, neg_cost)
2065         (shift_cost, shiftadd_cost, shiftsub0_cost, shiftsub1_cost, mul_cost)
2066         (sdiv_cost, udiv_cost, mul_widen_cost, mul_highpart_cost): Delete.
2067         * target-globals.h (this_target_expmed): Declare.
2068         (target_globals): Add a expmed field.
2069         (restore_target_globals): Copy the expmed field to
2070         this_target_expmed.
2071         * target-globals.c: Include expmed.h.
2072         (default_target_globals): Initialize the expmed field.
2073         (save_target_globals): Likewise.
2075 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
2077         * Makefile.in (target-globals.o): Depend on reload.h.
2078         * reload.h (target_reload): New structure.
2079         (default_target_reload): Declare.
2080         (this_target_reload): Declare as a variable or define as a macro.
2081         (indirect_symref_ok, double_reg_address_ok): Redefine as macros.
2082         * reload1.c (default_target_reload): New variable
2083         (this_target_reload): New conditional variable.
2084         (indirect_symref_ok, double_reg_address_ok): Delete.
2085         (spill_indirect_levels): Redefine as a macro.
2086         * target-globals.h (this_target_reload): Declare.
2087         (target_globals): Add a reload field.
2088         (restore_target_globals): Copy the reload field to
2089         this_target_reload.
2090         * target-globals.c: Include hard-reg-set.h.
2091         (default_target_globals): Initialize the reload field.
2092         (save_target_globals): Likewise.
2094 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
2096         * rtl.h (target_rtl): Add x_static_reg_base_value.
2097         * alias.c (static_reg_base_value): Redefine as a macro.
2099 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
2101         * Makefile.in (reginfo.o): Don't depend on $(GGC_H) or gt-reginfo.h.
2102         (GTFILES): Remove reginfo.c.
2103         * rtl.h (target_rtl): Add x_top_of_stack.
2104         (top_of_stack): New macro.
2105         * reginfo.c: Don't include ggc.h or gt-reginfo.h.
2106         (top_of_stack): Delete.
2108 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
2110         * regs.h (target_regs): Add x_hard_regs_of_mode,
2111         x_contains_reg_of_mode, x_move_cost, x_may_move_in_cost,
2112         x_may_move_out_cost and x_last_mode_for_init_move_cost.
2113         (have_regs_of_mode, contains_reg_of_mode, move_cost)
2114         (may_move_in_cost, may_move_out_cost): Redefine as macros.
2115         * reginfo.c (have_regs_of_mode, contains_reg_of_mode, move_cost)
2116         (may_move_in_cost, may_move_out_cost): Delete.
2117         (last_mode_for_init_move_cost): Redefine as a macro.
2119 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
2121         * hard-reg-set.h (target_hard_regs): New structure.
2122         (default_target_hard_regs): Declare.
2123         (this_target_hard_regs): Declare as a variable or define as a macro.
2124         (fixed_regs, fixed_reg_set, call_used_regs, call_really_used_regs)
2125         (call_used_reg_set, call_fixed_reg_set, regs_invalidated_by_call)
2126         (reg_alloc_order, inv_reg_alloc_order, reg_class_contents)
2127         (reg_class_size, reg_class_subclasses, reg_class_subunion)
2128         (reg_class_superunion, reg_names): Redefine as macros.
2129         * reginfo.c (fixed_regs, fixed_reg_set, call_used_regs)
2130         (call_used_reg_set, call_really_used_regs, call_fixed_reg_set)
2131         (regs_invalidated_by_call, reg_alloc_order, inv_reg_alloc_order)
2132         (reg_class_contents, reg_class_size, reg_class_subclasses)
2133         (reg_class_subunion, reg_class_superunion, reg_names): Delete.
2134         (default_target_hard_regs): New variable
2135         (this_target_hard_regs, initial_call_really_used_regs)
2136         (initial_reg_alloc_order): New conditional variables.
2137         (initial_reg_names): New variable.
2138         (init_reg_sets): Assert that initial_call_really_used_regs,
2139         initial_reg_alloc_order and initial_reg_names
2140         are all the same size as their variable counterparts.  Use them to
2141         initialize those counterparts.
2142         * target-globals.h (this_target_hard_regs): Declare.
2143         (target_globals): Add a hard_regs field.
2144         (restore_target_globals): Copy the hard_regs field to
2145         this_target_hard_regs.
2146         * target-globals.c: Include hard-reg-set.h.
2147         (default_target_globals): Initialize the hard_regs field.
2148         (save_target_globals): Likewise.
2150 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
2152         * Makefile.in (target-globals.o): Depend on $(RTL_H).
2153         * rtl.h (target_rtl): New structure.
2154         (default_target_rtl): Declare.
2155         (this_target_rtl): Declare as a variable or define as a macro.
2156         (global_rtl, pic_offset_table_rtx, return_address_pointer_rtx):
2157         Redefine as macros.
2158         * emit-rtl.c (default_target_rtl): New variable.
2159         (this_target_rtl): New conditional variable.
2160         (global_rtl, static_regno_reg_rtx, pic_offset_table_rtx)
2161         (return_address_pointer_rtx): Delete.
2162         (initial_regno_reg_rtx): New macro.
2163         (init_emit): Use initial_regno_reg_rtx instead of static_regno_reg_rtx.
2164         (init_emit_regs): Likewise.
2165         * target-globals.h (this_target_rtl): Declare.
2166         (target_globals): Add a rtl field.
2167         (restore_target_globals): Copy the rtl field to this_target_rtl.
2168         * target-globals.c: Include rtl.h.
2169         (default_target_globals): Initialize the rtl field.
2170         (save_target_globals): Likewise.
2172 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
2174         * Makefile.in (target-globals.o): Depend on $(REGS_H).
2175         * regs.h (target_reg_modes): New structure.
2176         (default_target_reg_modes): Declare.
2177         (this_target_reg_modes): Declare as a variable or define as a macro.
2178         (hard_regno_nregs, reg_raw_mode): Redefine as macros.
2179         * reginfo.c (default_target_reg_modes): New variable.
2180         (this_target_reg_modes): New conditional variable.
2181         (hard_regno_nregs, reg_raw_mode): Delete.
2182         * target-globals.h (this_target_regs): Declare.
2183         (target_globals): Add a regs field.
2184         (restore_target_globals): Copy the regs field to this_target_regs.
2185         * target-globals.c: Include regs.h.
2186         (default_target_globals): Initialize the regs field.
2187         (save_target_globals): Likewise.
2189 2010-07-12  Richard Sandiford  <rdsandiford@googlemail.com>
2191         * doc/tm.texi.in (SWITCHABLE_TARGET): Document.
2192         * doc/tm.texi: Regenerate.
2193         * Makefile.in (OBJS-common): Add target-globals.o.
2194         (gtype-desc.o): Depend on $(IPA_PROP_H), $(LTO_STREAMER_H)
2195         and target-globals.h.
2196         (target-globals.o): New rule.
2197         (GTFILES): Include $(srcdir)/target-globals.h.
2198         * defaults.h (SWITCHABLE_TARGET): Define.
2199         * gengtype.c (open_base_files): Add target-globals.h to the
2200         list of includes.
2201         * target-globals.h: New file.
2202         * target-globals.c: Likewise.
2204         * Makefile.in (target-globals.o): Depend on $(FLAGS_H).
2205         * flags.h (target_flag_state): New structure.
2206         (default_target_flag_state): Declare.
2207         (this_target_flag_state): Declare as a variable or define as a macro.
2208         (align_loops_log): Redefine as a macro.
2209         (align_loops_max_skip, align_jumps_log): Likewise.
2210         (align_jumps_max_skip, align_labels_log): Likewise.
2211         (align_labels_max_skip, align_functions_log): Likewise.
2212         * toplev.c (default_target_flag_state): New variable.
2213         (this_target_flag_state): New conditional variable.
2214         (align_loops_log): Delete.
2215         (align_loops_max_skip, align_jumps_log): Likewise.
2216         (align_jumps_max_skip, align_labels_log): Likewise.
2217         (align_labels_max_skip, align_functions_log): Likewise.
2218         * target-globals.h (this_target_flag_state): Declare.
2219         (target_globals): Add a flag_state field.
2220         (restore_target_globals): Copy the flag_state field to
2221         this_target_flag_state.
2222         * target-globals.c: Include flags.h.
2223         (default_target_globals): Initialize the flag_state field.
2224         (save_target_globals): Likewise.
2226 2010-07-12  Jie Zhang  <jie@codesourcery.com>
2228         * postreload.c (reg_symbol_ref[]): New.
2229         (move2add_use_add2_insn): New.
2230         (move2add_use_add3_insn): New.
2231         (reload_cse_move2add): Handle SYMBOL + OFFSET case.
2232         (move2add_note_store): Likewise.
2234 2010-07-12  Joern Rennecke  <joern.rennecke@embecosm.com>
2236         PR rtl-optimization/44752
2237         * genautomata.c (main): Don't emit an empty file even if there
2238         is no automaton.
2240 2010-07-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2242         * config/i386/i386.c (ix86_sol10_return_in_memory): Rename to
2243         ix86_solaris_return_in_memory.
2244         * config/i386-protos.h: Reflect this.
2245         * config/i386/vx-common.h (SUBTARGET_RETURN_IN_MEMORY): Likewise.
2246         * config/i386/sol2-10.h (SUBTARGET_RETURN_IN_MEMORY): Likewise.
2247         Move ...
2248         * config/i386/sol2.h (SUBTARGET_RETURN_IN_MEMORY): ... here.
2250 2010-07-12  Jie Zhang  <jie@codesourcery.com>
2252         * config/arm/arm.c (arm_get_frame_offsets): Don't use r3 to
2253         align the stack when it's going to be saved.
2255 2010-07-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2257         PR pch/14940
2258         * config/host-solaris.c (mmap_fixed): New function.
2259         (sol_gt_pch_get_address): Use it.
2260         (sol_gt_pch_use_address): Likewise.
2262 2010-07-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2264         * config.gcc (i[34567]86-*-solaris2*): Default with_arch_32 to
2265         pentiumpro on Solaris 8 and 9/x86.
2266         * doc/install.texi (Specific, i?86-*-solaris2.[89]): Recommend GNU as.
2267         Document SSE/SSE2 support.
2268         * doc/sourcebuild.texi (Effective-Target Keywords): Document sse.
2270 2010-07-12  Andi Kleen  <ak@linux.intel.com>
2272         * lto-symtab.c (lto_symtab_merge_decls_1): Use fatal_error
2273         instead of gcc_assert to print better error message for multiple
2274         prevailing defs.
2276 2010-07-12  Uros Bizjak  <ubizjak@gmail.com>
2278         * config/i386/i386.c (ix86_asm_output_function_label): Change format
2279         string placeholder from 0x%x to %#x.
2280         (ix86_code_end): Use putc to output '\n'.
2281         (ix86_print_operand) <case ';'>: Use putc to output ';'.
2283 2010-07-11  Kai Tietz  <kai.tietz@onevision.com>
2285         * config/i386/winnt.c (i386_pe_file_end): Quote symbol name
2286         in directive -export.
2288 2010-07-10  Anatoly Sokolov  <aesok@post.ru>
2290         * reginfo.h (reg_classes_intersect_p): Change arguments type to
2291         reg_class_t.
2292         * rtl.h (reg_classes_intersect_p): Adjust prototype.
2294         * config/rs6000/rs6000.h (REGISTER_MOVE_COST, MEMORY_MOVE_COST):
2295         Remove macros.
2296         * config/rs6000/rs6000-protos.h (rs6000_register_move_cost,
2297         rs6000_memory_move_cost): Remove
2298         * config/rs6000/rs6000.c (TARGET_REGISTER_MOVE_COST,
2299         TARGET_MEMORY_MOVE_COST): Define.
2300         (rs6000_register_move_cost): Make static. Change arguments type from
2301         enum reg_class to reg_class_t. Adjust rs6000_memory_move_cost calls.
2302         (rs6000_memory_move_cost): Make static. Change arguments type from
2303         'enum reg_class' to reg_class_t.
2305 2010-07-10  Sandra Loosemore  <sandra@codesourcery.com>
2307         PR middle-end/42505
2308         * tree-inline.c (estimate_num_insns): Refactor builtin complexity
2309         lookup code into....
2310         * builtins.c (is_simple_builtin, is_inexpensive_builtin): ...these
2311         new functions.
2312         * tree.h (is_simple_builtin, is_inexpensive_builtin): Declare.
2313         * cfgloopanal.c (target_clobbered_regs): Define.
2314         (init_set_costs): Initialize target_clobbered_regs.
2315         (estimate_reg_pressure_cost): Add call_p argument.  When true,
2316         adjust the number of available registers to exclude the
2317         call-clobbered registers.
2318         * cfgloop.h (target_clobbered_regs): Declare.
2319         (estimate_reg_pressure_cost): Adjust declaration.
2320         * tree-ssa-loop-ivopts.c (struct ivopts_data): Add body_includes_call.
2321         (ivopts_global_cost_for_size): Pass it to estimate_reg_pressure_cost.
2322         (determine_set_costs): Dump target_clobbered_regs.
2323         (loop_body_includes_call): New function.
2324         (tree_ssa_iv_optimize_loop): Use it to initialize new field.
2325         * loop-invariant.c (gain_for_invariant): Adjust arguments to pass
2326         call_p flag through.
2327         (best_gain_for_invariant): Likewise.
2328         (find_invariants_to_move): Likewise.
2329         (move_single_loop_invariants): Likewise, using already-computed
2330         has_call field.
2332 2010-07-10  Richard Guenther  <rguenther@suse.de>
2333             Joern Rennecke  <joern.rennecke@embecosm.com>
2335         PR debug/44832
2336         * tree-ssa-live.c (mark_all_vars_used_1): Set TREE_USED for LABEL_DECL.
2337         (remove_unused_scope_block_p): Don't drop TREE_USED LABEL_DECLs
2338         unless they have DECL_IGNORED_P set.
2340 2010-07-10  Richard Guenther  <rguenther@suse.de>
2342         PR lto/44889
2343         * gimple.c (gimple_fixup_complete_and_incomplete_subtype_p): New
2344         helper function.
2345         (gimple_types_compatible_p): Similar to pointed-to
2346         types allow and merge a mix of complete and incomplete aggregate.
2347         Use gimple_fixup_complete_and_incomplete_subtype_p for that.
2348         (iterative_hash_gimple_type): Adjust for that.
2350 2010-07-10  Richard Sandiford  <r.sandiford@uk.ibm.com>
2352         * tree.h (DECL_REPLACEABLE_P): Strengthen check for weak symbols.
2354 2010-07-10  Iain Sandoe  <iains@gcc.gnu.org>
2356         PR objc/44140
2357         * config/darwin.c (output_objc_section_asm_op): Save and restore
2358         section when outputting ObjC section list.
2360 2010-07-09  Jan Hubicka  <jh@suse.cz>
2362         * lto-streamer-out.c (produce_symtab): Do not write alias
2363         cgraph/varpool nodes.
2365 2010-07-09  Jan Hubicka  <jh@suse.cz>
2367         * tree-inline.c (declare_return_variable): Fix ICE while
2368         inlining DECL_BY_VALUE function not in SSA form
2370 2010-07-09  Changpeng Fang  <changpeng.fang@amd.com>
2372         PR tree-optimization/44576
2373         * tree-ssa-loop-prefetch.c (trip_count_to_ahead_ratio_too_small_p):
2374         New.  Pull out from is_loop_prefetching_profitable to implement
2375         the trip count to ahead ratio heuristic.
2376         (mem_ref_count_reasonable_p): New.  Pull out from
2377         is_loop_prefetching_profitable to implement the instruction to
2378         memory reference ratio heuristic.  Also consider not reasonable if
2379         the memory reference count is above a threshold (to avoid
2380         explosive compilation time.
2381         (insn_to_prefetch_ratio_too_small_p): New.  Pull out from
2382         is_loop_prefetching_profitable to implement the instruction to
2383         prefetch ratio heuristic.
2384         (is_loop_prefetching_profitable): Removed.
2385         (loop_prefetch_arrays): Distribute the cost analysis across the
2386         function to allow early exit of the prefetch analysis.
2387         is_loop_prefetching_profitable is splitted into three functions,
2388         with each one called as early as possible.
2389         (PREFETCH_MAX_MEM_REFS_PER_LOOP): New.  Threshold above which the
2390         number of memory references in a loop is considered too many.
2392 2010-07-09  Bernd Schmidt  <bernds@codesourcery.com>
2394         * reload.c (find_reloads): Don't clear badop if we have a winreg
2395         alternative, but not win, and the class only has fixed regs.
2396         * hard-reg-set.h (class_only_fixed_regs): Declare.
2397         * reginfo.c (class_only_fixed_regs): New array.
2398         (init_reg_sets_1): Initialize it.
2399         * config/arm/arm.md (arm_addsi3, thumb1_addsi3, arm_subsi3_insn): Don't
2400         discourage alternatives using the stack pointer.
2402         * config/arm/arm.md (addsi3_cbranch): Switch alternatives 0 and 1.
2404         * config/arm/arm.md (Thumb-1 ldrsb peephole): New.
2406         * config/arm/arm.md (cbranchqi4): Fix array size.
2407         (addsi3_cbranch): Also andle alternative 2 like alternative 3 when
2408         calculating length.
2410 2010-07-09  Richard Guenther  <rguenther@suse.de>
2412         * gimple.c (struct type_fixup_s): New struct and VEC type.
2413         (gimple_register_type_fixups): New static global.
2414         (gimple_queue_type_fixup): New function.
2415         (gimple_types_compatible_p): Queue type fixups instead of
2416         applying them here.
2417         (gimple_register_type): Apply queued fixups for the
2418         canonical type.  Empty the type fixup queue.
2420 2010-07-09  Uros Bizjak  <ubizjak@gmail.com>
2422         * configure.ac (gcc_cv_as_ix86_rep_lock_prefix): Fix test.
2423         * configure: Regenerate.
2424         * config.in: Ditto.
2426 2010-07-09  Jakub Jelinek  <jakub@redhat.com>
2427             Denys Vlasenko  <dvlasenk@redhat.com>
2428             Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
2430         PR tree-optimization/28632
2431         * tree-vrp.c (zero_nonzero_bits_from_vr): New function.
2432         (extract_range_from_binary_expr): Further optimize
2433         BIT_AND_EXPR and BIT_IOR_EXPR.
2435 2010-07-09  Sebastian Pop  <sebastian.pop@amd.com>
2437         * tree-if-conv.c (fold_or_predicates): New.
2438         (add_to_predicate_list): Call it.
2440 2010-07-09  Richard Guenther  <rguenther@suse.de>
2442         PR middle-end/44890
2443         * tree-ssa-address.c (create_mem_ref_raw): Only build a MEM_REF
2444         if base is a pointer.
2445         * tree-cfg.c (verify_expr): Update MEM_REF checking.
2447 2010-07-08  Michael Meissner  <meissner@linux.vnet.ibm.com>
2449         PR target/44877
2450         * config/rs6000/rs6000.c (rs6000_expand_builtin): Use
2451         POINTER_TYPE_P instead of checking only for POINTER_TYPE for the
2452         builtin mask for load/store builtins.
2454 2010-07-09  Uros Bizjak  <ubizjak@gmail.com>
2456         * configure.ac (gcc_cv_as_ix86_rep_lock_prefix): Also check
2457         for "lock addl".
2458         * configure: Regenerate.
2459         * config/i386/i386.c (ix86_print_operand) <case ';'>:
2460         Remove TARGET_MACHO.
2462 2010-07-09  Peter Bergner  <bergner@vnet.ibm.com>
2464         * config/rs6000/rs6000.c (rs6000_override_options): Fix setting of
2465         default ISA flags.
2466         * config/rs6000/rs6000.h (ASM_CPU_SPEC): Add -mvsx.
2468 2010-07-09  Tom de Vries  <tjvries@xs4all.nl>
2470         * tree.c (type_hash_if_marked_p): Removed non-ggc_marked_p clause.
2472 2010-07-09  Hariharan Sandanagobalane  <hariharan@picochip.com>
2474         * config/picochip/picochip.md (commsTestPort): Emit more
2475         efficient sequence for tstport instruction.
2477 2010-07-09  Uros Bizjak  <ubizjak@gmail.com>
2479         * config/i386/i386.c (ix86_veclib_handler): Make static.
2481 2010-07-09  Richard Guenther  <rguenther@suse.de>
2483         PR tree-optimization/44852
2484         * tree-ssa-alias.c: Include toplev.h for exact_log2.
2485         (indirect_ref_may_alias_decl_p): Properly handle negative offsets
2486         in MEM_REF.
2487         (indirect_refs_may_alias_p): Likewise.
2488         * Makefile.in (tree-ssa-alias.o): Add $(TOPLEV_H).
2490 2010-07-09  Richard Guenther  <rguenther@suse.de>
2492         PR tree-optimization/44882
2493         * tree-vect-stmts.c (vectorizable_store): Do not assert alias
2494         sets do conflict.
2495         (vectorizable_load): Likewise.
2497 2010-07-09  Bernd Schmidt  <bernds@codesourcery.com>
2499         PR target/40657
2500         * config/arm/arm.c (thumb1_extra_regs_pushed): New arg FOR_PROLOGUE.
2501         All callers changed.
2502         Handle the case when we're called for the epilogue.
2503         (thumb_unexpanded_epilogue): Use it.
2504         (thumb1_expand_epilogue): Likewise.
2506 2010-07-09  Jakub Jelinek  <jakub@redhat.com>
2508         * tree-vrp.c (extract_range_from_binary_expr) <BIT_AND_EXPR>: If
2509         both ranges are range_int_cst_p with non-negative minimum,
2510         try harder to derive smaller range.
2512 2010-07-09  Manuel López-Ibáñez  <manu@gcc.gnu.org>
2514         * genrecog.c: Include diagnostic-core.h before toplev.h.
2515         * genoutput.c: Likewise.
2516         * genextract.c: Likewise.
2517         * genautomata.c: Likewise.
2518         * genemit.c: Likewise.
2519         * genpeep.c: Likewise.
2520         * genattrtab.c: Likewise.
2521         * genconditions.c: Likewise.
2522         * genpreds.c: Likewise.
2524 2010-07-08  Andi Kleen  <ak@linux.intel.com>
2526         * lto-section-in.c (lto_section_name): Add missing comma.
2528 2010-07-08  Anatoly Sokolov  <aesok@post.ru>
2530         * config/ia64/ia64.h (OVERRIDE_OPTIONS): Remove macros.
2531         * config/ia64/ia64-protos.h (ia64_override_options): Remove.
2532         * config/ia64/ia64.c (TARGET_OPTION_OVERRIDE): Define.
2533         (ia64_override_options): Rename to...
2534         (ia64_option_override): ... this one. Make static.
2536 2010-07-08  Eric Botcazou  <ebotcazou@adacore.com>
2538         PR middle-end/44843
2539         * emit-rtl.c (set_mem_attributes_minus_bitpos): Do not rely on the
2540         pointed-to type of the offset in a MEM_REF to compute the alignment.
2542 2010-07-08  Kai Tietz  <kai.tietz@onevision.com>
2544         * final.c (final_scan_insn): Replace
2545         TARGET_UNWIND_INFO macro check by unwind_emit
2546         hook NULL check.
2547         * targhooks.c (default_unwind_emit): Removed.
2548         * targhooks.h (default_unwind_emit): Likewise.
2549         * target.def (unwind_emit): Set default value to NULL.
2551         * config/i386/i386-protos.h (ix86_asm_output_function_label):
2552         New prototype.
2553         * config/i386/i386.c (ix86_function_ms_hook_prologue): Check
2554         for NULL fntype argument and allow 64-bit targets.
2555         (ix86_asm_output_function_label): New function.
2556         (ix86_expand_prologue): Handle 64-bit ms hook prologue.
2557         (ix86_handle_fndecl_attribute): Likewise.
2558         * doc/extend.texi (ms_hook_prologue): Adjust documentation.
2559         * doc/doc/tm.texi: Regenerated.
2560         * doc/doc/doc/tm.texi.in (ASM_OUTPUT_FUNCTION_LABEL): New.
2561         (ASM_DECLARE_FUNCTION_NAME): Adjust documentation.
2562         * defaults.h (ASM_OUTPUT_FUNCTION_LABEL): New macro.
2563         * config/darwin.h (ASM_DECLARE_FUNCTION_NAME): Use
2564         ASM_OUTPUT_FUNCTION_LABEL instead of ASM_OUTPUT_LABEL.
2565         * config/elfos.h: Likewise.
2566         * config/i386/cygming.h: Likewise.
2567         * config/netbsd-aout.h: Likewise.
2568         * config/openbsd.h: Likewise.
2569         * config/i386/i386.h (ASM_OUTPUT_FUNCTION_LABEL): Override
2570         by ix86_asm_output_function_label function call.
2571         * varasm.c (assemble_start_function): Use
2572         ASM_OUTPUT_FUNCTION_LABEL instead of ASM_OUTPUT_LABEL.
2574 2010-07-08  Jan Hubicka  <jh@suse.cz>
2576         * cgraph.c (cgraph_will_be_removed_from_program_if_no_direct_calls):
2577         New function.
2578         * cgraph.h (cgraph_will_be_removed_from_program_if_no_direct_calls):
2579         Declare.
2580         * ipa-cp.c (ipcp_estimate_growth): Use it.
2581         * ipa-inline.c (cgraph_estimate_growth, cgraph_decide_inlining):
2582         Likewise.
2584 2010-07-08  Jan Hubicka  <jh@suse.cz>
2586         * tree-inline.c (declare_return_variable): Allocate annotation for new
2587         temporary.
2589 2010-07-08  Sebastian Pop  <sebastian.pop@amd.com>
2591         PR tree-optimization/44710
2592         * tree-if-conv.c (parse_predicate): New.
2593         (add_to_predicate_list): Call it, call maybe_fold_or_comparisons.
2594         Make sure that the predicates are either SSA_NAMEs or gimple_condexpr.
2596 2010-07-08  Sebastian Pop  <sebastian.pop@amd.com>
2598         * common.opt (ftree-loop-if-convert): New flag.
2599         * doc/invoke.texi (ftree-loop-if-convert): Documented.
2600         * tree-if-conv.c (gate_tree_if_conversion): Enable if-conversion
2601         when flag_tree_loop_if_convert is set.
2603 2010-07-08  Uros Bizjak  <ubizjak@gmail.com>
2605         * config/i386/i386.c: Use short syntax for function calls
2606         through function pointers.
2607         * config/i386/i386.md: Ditto.
2609 2010-07-08  Eric Botcazou  <ebotcazou@adacore.com>
2611         * emit-rtl.c (set_mem_attributes_minus_bitpos): Fix formatting issues.
2613 2010-07-08  Richard Guenther  <rguenther@suse.de>
2615         * tree-ssa-sccvn.c (vn_reference_maybe_forwprop_address): Fix
2616         stmt check for POINTER_PLUS_EXPRs, fix the pointer assignment.
2618 2010-07-08  Jakub Jelinek  <jakub@redhat.com>
2620         * dwarf2out.c (mem_loc_descriptor): Use DW_OP_const[48]u
2621         instead of DW_OP_addr for DW_OP_GNU_push_tls_address operand.
2622         (loc_list_from_tree): Likewise.
2623         (output_loc_operands): Handle outputting DW_OP_const[48]u
2624         with loc->dtprel set.
2625         (resolve_addr_in_expr): Handle loc->dtprel like DW_OP_addr.
2627 2010-07-08  Jan Hubicka  <jh@suse.cz>
2629         * ipa.c: Include pointer-set.h
2630         (cgraph_externally_visible_p): New attribute ALIASED;
2631         when in LTO, hidden symbols are local unless they are aliased.
2632         (function_and_variable_visibility): Compute aliased nodes;
2633         handle LTO and hidden symbol on functions and vars.
2634         * cgraph.c (cgraph_make_decl_local): Clear NAMED_SECTION
2635         for COMDAT symbols; handle COMDAT_GROUPS also at vars.
2637 2010-07-08  Eric Botcazou  <ebotcazou@adacore.com>
2639         * config/i386/cygming.h (STACK_CHECK_STATIC_BUILTIN): Define to 1.
2640         * config/i386/freebsd.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
2641         * config/i386/linux.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
2642         * config/i386/linux64.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
2643         * config/i386/sol2.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
2644         * config/i386/i386.c (ix86_gen_adjust_stack_and_probe): New variable.
2645         (ix86_gen_probe_stack_range): Likewise.
2646         (override_options): Set them.
2647         (ix86_target_stack_probe): New function.
2648         (ix86_compute_frame_layout): Force use of push instructions to
2649         save registers if stack checking with probes is enabled.
2650         (get_scratch_register_on_entry): New function.
2651         (release_scratch_register_on_entry): Likewise.
2652         (ix86_adjust_stack_and_probe): Likewise.
2653         (output_adjust_stack_and_probe): Likewise.
2654         (ix86_emit_probe_stack_range): Likewise.
2655         (output_probe_stack_range): Likewise.
2656         (ix86_expand_prologue): Emit stack checking code if static built-in
2657         stack checking is enabled.
2658         Test ix86_target_stack_probe instead of TARGET_STACK_PROBE.
2659         * config/i386/i386-protos.h (ix86_target_stack_probe): Declare.
2660         (output_adjust_stack_and_probe): Likewise.
2661         (output_probe_stack_range): Likewise.
2662         * config/i386/i386.md (UNSPECV_PROBE_STACK_RANGE): New constant.
2663         (allocate_stack_worker_32): Test ix86_target_stack_probe instead of
2664         TARGET_STACK_PROBE.
2665         (allocate_stack_worker_64): Likewise.
2666         (allocate_stack): Likewise.
2667         (adjust_stack_and_probe): New insn.
2668         (probe_stack_range): Likewise.
2670 2010-07-08  Richard Guenther  <rguenther@suse.de>
2672         PR tree-optimization/44831
2673         * tree-ssa-phiprop.c (phiprop_insert_phi): Properly build
2674         a MEM_REF preserving TBAA info of the original dereference.
2675         Dereference the original pointer if the address is not invariant.
2676         (propagate_with_phi): Fixup type checks wrt MEM_REFs.  Require
2677         at least one invariant address that we are going to dereference.
2679 2010-07-08  Richard Guenther  <rguenther@suse.de>
2681         PR tree-optimization/44861
2682         * tree-vect-stmts.c (vectorizable_store): Preserve TBAA
2683         information when building MEM_REFs.
2684         (vectorizable_load): Likewise.
2685         * tree-vect-data-refs.c (vect_setup_realignment): Likewise.
2687 2010-07-08  Eric Botcazou  <ebotcazou@adacore.com>
2689         * config/sol2-c.c: Do not include diagnostic-core.h.
2691 2010-07-08  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
2693         PR bootstrap/44768
2694         * cfgexpand.c (estimated_stack_frame_size): Make self-contained
2695         with respect to current_function_decl. Pass decl of the function.
2696         * tree-inline.h (estimated_stack_frame_size): Adjust prototype.
2697         * ipa-inline.c (compute_inline_parameters): Pass decl to
2698         estimated_stack_frame_size.
2700 2010-07-08  Richard Guenther  <rguenther@suse.de>
2702         * tree-ssa-sccvn.c (vn_reference_maybe_forwprop_address):
2703         New function.
2704         (valueize_refs): Call it.
2706 2010-07-08  Richard Guenther  <rguenther@suse.de>
2708         PR rtl-optimization/44838
2709         * tree-ssa-alias.c (indirect_refs_may_alias_p): When not in
2710         SSA form do not use pointer equivalence.
2712 2010-07-08  Eric Botcazou  <ebotcazou@adacore.com>
2714         * dwarf2out.c (AT_linkage_name): Delete.
2715         (add_linkage_attr): New function.
2716         (add_linkage_name): Call it to emit the linkage attribute.
2717         (dwarf2out_finish): Likewise.
2718         (move_linkage_attr): Explicitly accept both attribute variants.
2720 2010-07-08  Manuel López-Ibáñez  <manu@gcc.gnu.org>
2722         * toplev.h: Do not include diagnostic-core.h.
2723         Include diagnostic-core.h in every file that includes toplev.h.
2724         * c-tree.h: Do not include toplev.h.
2725         * pretty-print.h: Update comment.
2726         * Makefile.in: Update dependencies.
2727         * alias.c: Include diagnostic-core.h in every file that includes
2728         toplev.h.
2729         * attribs.c: Likewise.
2730         * auto-inc-dec.c: Likewise.
2731         * bb-reorder.c: Likewise.
2732         * bt-load.c: Likewise.
2733         * caller-save.c: Likewise.
2734         * calls.c: Likewise.
2735         * cfg.c: Likewise.
2736         * cfganal.c: Likewise.
2737         * cfgbuild.c: Likewise.
2738         * cfgcleanup.c: Likewise.
2739         * cfghooks.c: Likewise.
2740         * cfgloop.c: Likewise.
2741         * combine.c: Likewise.
2742         * config/alpha/alpha.c: Likewise.
2743         * config/arc/arc.c: Likewise.
2744         * config/arm/arm.c: Likewise.
2745         * config/arm/pe.c: Likewise.
2746         * config/avr/avr.c: Likewise.
2747         * config/bfin/bfin.c: Likewise.
2748         * config/cris/cris.c: Likewise.
2749         * config/crx/crx.c: Likewise.
2750         * config/darwin-c.c: Likewise.
2751         * config/darwin.c: Likewise.
2752         * config/fr30/fr30.c: Likewise.
2753         * config/frv/frv.c: Likewise.
2754         * config/h8300/h8300.c: Likewise.
2755         * config/host-darwin.c: Likewise.
2756         * config/i386/i386.c: Likewise.
2757         * config/i386/netware.c: Likewise.
2758         * config/i386/nwld.c: Likewise.
2759         * config/i386/winnt-cxx.c: Likewise.
2760         * config/i386/winnt-stubs.c: Likewise.
2761         * config/i386/winnt.c: Likewise.
2762         * config/ia64/ia64-c.c: Likewise.
2763         * config/ia64/ia64.c: Likewise.
2764         * config/iq2000/iq2000.c: Likewise.
2765         * config/lm32/lm32.c: Likewise.
2766         * config/m32c/m32c-pragma.c: Likewise.
2767         * config/m32c/m32c.c: Likewise.
2768         * config/m32r/m32r.c: Likewise.
2769         * config/m68hc11/m68hc11.c: Likewise.
2770         * config/m68k/m68k.c: Likewise.
2771         * config/mcore/mcore.c: Likewise.
2772         * config/mep/mep-pragma.c: Likewise.
2773         * config/mep/mep.c: Likewise.
2774         * config/mmix/mmix.c: Likewise.
2775         * config/mn10300/mn10300.c: Likewise.
2776         * config/moxie/moxie.c: Likewise.
2777         * config/pa/pa.c: Likewise.
2778         * config/pdp11/pdp11.c: Likewise.
2779         * config/picochip/picochip.c: Likewise.
2780         * config/rs6000/rs6000-c.c: Likewise.
2781         * config/rs6000/rs6000.c: Likewise.
2782         * config/rx/rx.c: Likewise.
2783         * config/s390/s390.c: Likewise.
2784         * config/score/score.c: Likewise.
2785         * config/score/score3.c: Likewise.
2786         * config/score/score7.c: Likewise.
2787         * config/sh/sh.c: Likewise.
2788         * config/sh/symbian-base.c: Likewise.
2789         * config/sh/symbian-c.c: Likewise.
2790         * config/sh/symbian-cxx.c: Likewise.
2791         * config/sol2-c.c: Likewise.
2792         * config/sol2.c: Likewise.
2793         * config/sparc/sparc.c: Likewise.
2794         * config/spu/spu.c: Likewise.
2795         * config/stormy16/stormy16.c: Likewise.
2796         * config/v850/v850-c.c: Likewise.
2797         * config/v850/v850.c: Likewise.
2798         * config/vax/vax.c: Likewise.
2799         * config/vxworks.c: Likewise.
2800         * config/xtensa/xtensa.c: Likewise.
2801         * convert.c: Likewise.
2802         * cse.c: Likewise.
2803         * cselib.c: Likewise.
2804         * dbgcnt.c: Likewise.
2805         * dbxout.c: Likewise.
2806         * ddg.c: Likewise.
2807         * dominance.c: Likewise.
2808         * emit-rtl.c: Likewise.
2809         * explow.c: Likewise.
2810         * expmed.c: Likewise.
2811         * fixed-value.c: Likewise.
2812         * fold-const.c: Likewise.
2813         * fwprop.c: Likewise.
2814         * gcse.c: Likewise.
2815         * ggc-common.c: Likewise.
2816         * ggc-page.c: Likewise.
2817         * ggc-zone.c: Likewise.
2818         * gimple-low.c: Likewise.
2819         * gimplify.c: Likewise.
2820         * graph.c: Likewise.
2821         * haifa-sched.c: Likewise.
2822         * ifcvt.c: Likewise.
2823         * implicit-zee.c: Likewise.
2824         * integrate.c: Likewise.
2825         * ira-build.c: Likewise.
2826         * ira-color.c: Likewise.
2827         * ira-conflicts.c: Likewise.
2828         * ira-costs.c: Likewise.
2829         * ira-lives.c: Likewise.
2830         * ira.c: Likewise.
2831         * lists.c: Likewise.
2832         * loop-doloop.c: Likewise.
2833         * loop-iv.c: Likewise.
2834         * lto-opts.c: Likewise.
2835         * lto-symtab.c: Likewise.
2836         * main.c: Likewise.
2837         * modulo-sched.c: Likewise.
2838         * optabs.c: Likewise.
2839         * params.c: Likewise.
2840         * plugin.c: Likewise.
2841         * postreload-gcse.c: Likewise.
2842         * postreload.c: Likewise.
2843         * predict.c: Likewise.
2844         * profile.c: Likewise.
2845         * real.c: Likewise.
2846         * regcprop.c: Likewise.
2847         * reginfo.c: Likewise.
2848         * regmove.c: Likewise.
2849         * reorg.c: Likewise.
2850         * resource.c: Likewise.
2851         * rtl.c: Likewise.
2852         * rtlanal.c: Likewise.
2853         * sched-deps.c: Likewise.
2854         * sched-ebb.c: Likewise.
2855         * sched-rgn.c: Likewise.
2856         * sdbout.c: Likewise.
2857         * sel-sched-dump.c: Likewise.
2858         * sel-sched-ir.c: Likewise.
2859         * simplify-rtx.c: Likewise.
2860         * stmt.c: Likewise.
2861         * stor-layout.c: Likewise.
2862         * store-motion.c: Likewise.
2863         * targhooks.c: Likewise.
2864         * tree-cfg.c: Likewise.
2865         * tree-cfgcleanup.c: Likewise.
2866         * tree-dump.c: Likewise.
2867         * tree-eh.c: Likewise.
2868         * tree-inline.c: Likewise.
2869         * tree-nomudflap.c: Likewise.
2870         * tree-object-size.c: Likewise.
2871         * tree-optimize.c: Likewise.
2872         * tree-outof-ssa.c: Likewise.
2873         * tree-phinodes.c: Likewise.
2874         * tree-profile.c: Likewise.
2875         * tree-ssa-ccp.c: Likewise.
2876         * tree-ssa-coalesce.c: Likewise.
2877         * tree-ssa-live.c: Likewise.
2878         * tree-ssa-loop-niter.c: Likewise.
2879         * tree-ssa-loop-prefetch.c: Likewise.
2880         * tree-ssa-loop.c: Likewise.
2881         * tree-ssa-structalias.c: Likewise.
2882         * tree-ssa-uninit.c: Likewise.
2883         * tree-ssa.c: Likewise.
2884         * tree-vect-data-refs.c: Likewise.
2885         * tree-vect-loop-manip.c: Likewise.
2886         * tree-vect-loop.c: Likewise.
2887         * tree-vect-patterns.c: Likewise.
2888         * tree-vect-stmts.c: Likewise.
2889         * tree-vrp.c: Likewise.
2890         * varasm.c: Likewise.
2891         * vec.c: Likewise.
2892         * web.c: Likewise.
2893         * xcoffout.c: Likewise.
2895 2010-07-07  Richard Sandiford  <rdsandiford@googlemail.com>
2897         * gengtype.c (write_field_root): New function.
2898         (write_root): Use it.
2900 2010-07-07  Wei Guozhi  <carrot@google.com>
2902         * config/arm/thumb2.md (peephole2 to convert zero_extract/compare
2903         of lowest bits to lshift/compare): Add a missing line.
2905 2010-07-07  Wei Guozhi  <carrot@google.com>
2907         * config/arm/thumb2.md (peephole2 to convert zero_extract/compare
2908         of lowest bits to lshift/compare): New.
2910 2010-07-07  Tom Tromey  <tromey@redhat.com>
2912         * doc/tm.texi: Update.
2913         * doc/tm.texi.in (SDB and DWARF) <TARGET_WANT_DEBUG_PUB_SECTIONS>:
2914         Add @hook.
2915         * target.def (want_debug_pub_sections): New hook.
2916         * config/darwin.h (TARGET_WANT_DEBUG_PUB_SECTIONS): Define.
2917         * dwarf2out.c (add_pubname_string): Check
2918         targetm.want_debug_pub_sections.
2919         (add_pubname): Likewise.
2920         (add_pubtype): Likewise.
2922 2010-07-07  Jie Zhang  <jie@codesourcery.com>
2924         * genautomata.c (output_automata_list_min_issue_delay_code):
2925         Correctly decompress min_issue_delay.
2927 2010-07-07  Bernd Schmidt  <bernds@codesourcery.com>
2929         PR rtl-optimization/44404
2930         * auto-inc-dec.c (find_inc): Avoid calling count_occurrences if
2931         possible, use reg_overlap_mentioned_p instead.
2933 2010-07-07  Duncan Sands  <baldrick@free.fr>
2935         PR middle-end/41355
2936         * tree.c (build_function_type_skip_args): Copy the original type using
2937         build_distinct_type_copy rather than copy_node.
2939 2010-07-07  H.J. Lu  <hongjiu.lu@intel.com>
2941         PR target/44850
2942         * config/i386/i386.c (ix86_function_ms_hook_prologue): Revert
2943         revision 161876.
2944         (ix86_expand_prologue): Likewise.
2945         (ix86_handle_fndecl_attribute): Likewise.
2946         (ix86_asm_declare_function_name): Likewise.
2947         * config/i386/i386.h (ASM_DECLARE_FUNCTION_NAME): Likewise.
2948         * config/i386/cygming.h (ASM_DECLARE_FUNCTION_NAME): Likewise.
2949         (SUBTARGET_ASM_DECLARE_FUNCTION_NAME): Likewise.
2950         * config/i386/i386-protos.h (ix86_asm_declare_function_name): Likewise.
2951         * doc/extend.texi: Likewise.
2953 2010-07-07  H.J. Lu  <hongjiu.lu@intel.com>
2955         PR target/44844
2956         * config/i386/i386.md (rdrand<mode>): Changed to expand to
2957         retry if the carry flag isn't valid.
2958         (rdrand<mode>_1): New.
2960 2010-07-07  Richard Guenther  <rguenther@suse.de>
2962         PR middle-end/44790
2963         * expr.c (expand_expr_real_1): Go the POINTER_PLUS_EXPR path
2964         for expanding the constant offset for MEM_REFs.
2966 2010-07-07  Richard Guenther  <rguenther@suse.de>
2968         * tree-ssa-propagate.h (valid_gimple_call_p): Remove.
2969         * tree-ssa-propagate.c (valid_gimple_call_p): Make static.  Fix.
2970         * gimple.h (is_gimple_operand): Remove.
2971         * gimple.c (is_gimple_operand): Likewise.
2972         (walk_gimple_op): Fix wi->val_only setting for calls.
2973         * tree-cfg.c (verify_gimple_call): Fix argument validation.
2974         * tree-profile.c (tree_gen_ic_func_profiler): Do not create
2975         invalid gimple calls.
2977 2010-07-06  Jan Hubicka  <jh@suse.cz>
2979         * lto-cgraph.c (output_cgraph): Add missing declaration.
2981 2010-07-06  Jan Hubicka  <jh@suse.cz>
2983         * lto-cgraph.c (output_cgraph): Output toplevel asms only into first
2984         partition.
2986 2010-07-06  Alexandre Oliva  <aoliva@redhat.com>
2988         * doc/gimple.texi (GIMPLE_DEBUG): Document.
2989         * doc/rtl.texi (Debug Information): New node.
2990         (NOTE_INSN_VAR_LOCATION): Document.
2991         (debug_insn): Likewise.
2992         * doc/generic.texi (DEBUG_EXPR_DECL): Document.
2994 2010-07-07  Jan Hubicka  <jh@suse.cz>
2996         With parts by Richard Guenther.
2998         PR middle-end/44813
2999         * tree-ssa-uninit.c (ssa_undefined_value_p): Result decl is defined
3000         for functions passed by reference.
3001         * tree.c (needs_to_live_in_memory): RESULT_DECL don't need to live
3002         in memory when passed by reference.
3003         * tree-ssa-ccp.c (get_default_value): Only VAR_DECL is undefined at
3004         beggining.
3005         * ipa-split.c (split_function): Cleanup way return value is passed;
3006         handle SSA DECL_BY_REFERENCE retvals.
3007         * tree-ssa.c (verify_def): Verify that RESULT_DECL is read only when
3008         DECL_BY_REFERENCE is set.
3009         * tree-ssa-structalias.c (get_constraint_for_ssa_var, get_fi_for_callee,
3010         find_what_p_points_to): Handle RESULT_DECL.
3011         * tree-inline.c (declare_return_variable): Get new entry_block argument;
3012         when passing by reference ensure that RESULT_DECL is gimple_val.
3013         (remap_gimple_op_r): Remap RESULT_DECL ssa name.
3014         (remap_gimple_stmt): Handle SSA DECL_BY_REFERENCE returns.
3016 2010-07-07  Bernd Schmidt  <bernds@codesourcery.com>
3018         PR rtl-optimization/44787
3019         * config/arm/arm.md (arith_shiftsi): Allow stack pointer in operand 2.
3020         * config/arm/thumb2.md (thumb2_arith_shiftsi): Likewise.
3022 2010-07-06  Jan Hubicka  <jh@suse.cz>
3024         * lto-symtab.c (lto_cgraph_replace_node): Handle aliases.
3025         (lto_symtab_resolve_can_prevail_p): Also alias of cgraph node
3026         with body can prevail.
3027         (lto_symtab_resolve_symbols): Use cgraph_get_node_or_alias.
3028         (lto_symtab_merge_cgraph_nodes_1): Do not remove nodes from aliases.
3029         * cgraph.c (cgraph_get_node_or_alias): New function.
3030         * cgraph.h (cgraph_get_node_or_alias): Declare.
3032 2010-07-06  Kai Tietz  <kai.tietz@onevision.com>
3034         * config/i386/i386.c (ix86_function_ms_hook_prologue): Enable x64
3035         support.
3036         (ix86_expand_prologue): Likewise.
3037         (ix86_handle_fndecl_attribute): Likewise.
3038         (ix86_asm_declare_function_name): New function for
3039         ASM_DECLARE_FUNCTION_NAME.
3040         * config/i386/i386.h (ASM_DECLARE_FUNCTION_NAME): New macro.
3041         * config/i386/cygming.h (ASM_DECLARE_FUNCTION_NAME): Removed.
3042         (SUBTARGET_ASM_DECLARE_FUNCTION_NAME): New macro.
3043         * config/i386/i386-protos.h (ix86_asm_declare_function_name): New.
3044         * doc/extend.texi: Adjust documentation about ms_hook_prologue
3045         attribute.
3047 2010-07-06  Uros Bizjak  <ubizjak@gmail.com>
3049         * config/i386/i386.md (immediate_operand): New mode attribute.
3051         (pro_epilogue_adjust_stack_<mode>_1): Macroize insn from
3052         pro_epilogue_adjust_stack  and pro_epilogue_adjust_stack_rex64
3053         using P mode iterator.
3054         (pro_epilogue_adjust_stack_di_2): Rename from
3055         pro_epilogue_adjust_stack_rex64_2.
3057         * config/i386/i386.c (pro_epilogue_adjust_stack): Update for rename.
3059 2010-07-06  Uros Bizjak  <ubizjak@gmail.com>
3061         * config/i386/i386.md (insv): Call gen_movdi_insv1 or gen_movsi_insv1
3062         through gen_mov_insv_1 function pointer.
3063         (fmod<mode>3): Call gen_truncxf<mode>2_i387_noop_unspec or
3064         gen_truncxf<mode>2 through gen_truncxf function pointer.
3065         (remainder<mode>3): Ditto.
3066         (cmpstrnsi): Rename cmp_insn function pointer to gen_cmp.
3067         (allocate_stack): Call gen_allocate_stack_worker_64 or
3068         gen_allocate_stack_worker_32 through gen_allocate_stack_worker
3069         function pointer.
3070         (probe_stack): Call gen_iordi3 or gen_iorsi3 through gen_ior3
3071         function pointer.
3073 2010-07-06  Uros Bizjak  <ubizjak@gmail.com>
3075         * config/i386/i386.md (*add<mode>3_cconly_overflow): Use <g>
3076         operand constraint instead of <r><i>m.
3078 2010-07-06  Richard Guenther  <rguenther@suse.de>
3080         PR middle-end/44828
3081         * convert.c (convert_to_integer): Watch out for overflowing
3082         MULT_EXPR as well.
3084 2010-07-05  Jan Hubicka  <jh@suse.cz>
3086         * lto-streamer.c (write_symbol_vec): Rename to ...
3087         (write_symbol) ... this one; write only symbol given and when
3088         present in cache. Sanity check that what is defined is present
3089         in cgraph/varpool with body/finalized decl.
3090         (write_symbols_of_kind): Remove.
3091         (produce_symtab): Take outputblock and sets; use cgraph/varpool/alias
3092         pairs to produce symtab.
3093         (produce_asm_for_decls): Update call of produce_symtab; don't do so
3094         when doing WPA streaming.
3096 2010-07-05  Jan Hubicka  <jh@suse.cz>
3098         * gimple-fold.c (gimple_fold_obj_type_ref_known_binfo): Check that
3099         function is still available to fold into.
3101 2010-07-05  Nathan Froyd  <froydnj@codesourcery.com>
3103         * vec.h (FOR_EACH_VEC_ELT_REVERSE): New macro.
3104         * function.h (struct_function): Change type of local_decls field
3105         to a VEC.
3106         (add_local_decl): New function.
3107         (FOR_EACH_LOCAL_DECL): New macro.
3108         * cfgexpand.c (init_vars_expansion): Adjust for new type of
3109         cfun->local_decls.
3110         (estimated_stack_frame_size): Likewise.
3111         (expand_used_vars): Likewise.
3112         * cgraphbuild.c (build_cgraph_edges): Likewise.
3113         * function.c (instantiate_decls_1): Likewise.
3114         * ipa-struct-reorg.c (build_data_structure): Likewise.
3115         * ipa-type-escape.c (analyze_function): Likewise.
3116         * lto-streamer-in.c (input_function): Likewise.
3117         * lto-streamer-out.c (output_function): Likewise.
3118         * tree-ssa-live.c (remove_unused_locals): Likewise.
3119         * tree.c (free_lang_data_in_decl): Likewise.
3120         (find_decls_types_in_node): Likewise.
3121         * omp-low.c (remove_exit_barrier): Likewise.
3122         (expand_omp_taskreg): Likewise.
3123         (list2chain): Rename to...
3124         (vec2chain): ...this.  Adjust.
3125         * cgraphunit.c (assemble_thunk): Call add_local_decl.
3126         * tree-cfg.c (replace_by_duplicate_decl): Likewise.
3127         * gimple-low.c (record_vars_into): Likewise.
3128         * tree-inline.c (remap_decls): Likewise.
3129         (declare_return_variable): Likewise.
3130         (declare_inline_vars): Likewise.
3131         (copy_forbidden): Adjust for new type of cfun->local_decls.
3132         (add_local_variables): New function.
3133         (expand_call_inline): Call it.
3134         (tree_function_versioning): Likewise.
3136 2010-07-05  H.J. Lu  <hongjiu.lu@intel.com>
3138         AVX Programming Reference (June, 2010)
3139         * config/i386/cpuid.h (bit_F16C): New.
3140         (bit_RDRND): Likewise.
3141         (bit_FSGSBASE): Likewise.
3143         * config/i386/i386-builtin-types.def: Add
3144         "DEF_FUNCTION_TYPE (UINT16)", function types for
3145         float16 <-> float conversions and
3146         "DEF_FUNCTION_TYPE (VOID, UINT64)".
3148         * config/i386/i386-c.c (ix86_target_macros_internal): Support
3149         OPTION_MASK_ISA_FSGSBASE, OPTION_MASK_ISA_RDRND and
3150         OPTION_MASK_ISA_F16C.
3152         * config/i386/i386.c (OPTION_MASK_ISA_FSGSBASE_SET): New.
3153         (OPTION_MASK_ISA_RDRND_SET): Likewise.
3154         (OPTION_MASK_ISA_F16C_SET): Likewise.
3155         (OPTION_MASK_ISA_FSGSBASE_UNSET): Likewise.
3156         (OPTION_MASK_ISA_RDRND_UNSET): Likewise.
3157         (OPTION_MASK_ISA_F16C_UNSET): Likewise.
3158         (OPTION_MASK_ISA_AVX_UNSET): Add OPTION_MASK_ISA_F16C_UNSET.
3159         (ix86_handle_option): Handle OPT_mfsgsbase, OPT_mrdrnd and OPT_mf16c.
3160         (ix86_target_string): Support -mfsgsbase, -mrdrnd and -mf16c.
3161         (pta_flags): Add PTA_FSGSBASE, PTA_RDRND and PTA_F16C.
3162         (override_options): Handle them.
3163         (ix86_valid_target_attribute_inner_p): Handle fsgsbase, rdrnd and f16c.
3164         (ix86_builtins): Add IX86_BUILTIN_RDFSBASE32,
3165         IX86_BUILTIN_RDFSBASE64, IX86_BUILTIN_RDGSBASE32,
3166         IX86_BUILTIN_RDGSBASE64, IX86_BUILTIN_WRFSBASE32,
3167         IX86_BUILTIN_WRFSBASE64, IX86_BUILTIN_WRGSBASE32,
3168         IX86_BUILTIN_WRGSBASE64, IX86_BUILTIN_RDRAND16,
3169         IX86_BUILTIN_RDRAND32, IX86_BUILTIN_RDRAND64,
3170         IX86_BUILTIN_CVTPH2PS, IX86_BUILTIN_CVTPH2PS256,
3171         IX86_BUILTIN_CVTPS2PH and IX86_BUILTIN_CVTPS2PH256.
3172         (bdesc_args): Likewise.
3173         (ix86_expand_args_builtin): Handle V8SF_FTYPE_V8HI,
3174         V4SF_FTYPE_V8HI, V8HI_FTYPE_V8SF_INT and V8HI_FTYPE_V4SF_INT.
3175         (ix86_expand_special_args_builtin): Handle VOID_FTYPE_UINT64,
3176         VOID_FTYPE_UNSIGNED, UNSIGNED_FTYPE_VOID and UINT16_FTYPE_VOID.
3177         Handle non-memory store.
3179         * config/i386/i386.h (TARGET_FSGSBASE): New.
3180         (TARGET_RDRND): Likewise.
3181         (TARGET_F12C): Likewise.
3183         * config/i386/i386.md (UNSPEC_VCVTPH2PS): New.
3184         (UNSPEC_VCVTPS2PH): Likewise.
3185         (UNSPECV_RDFSBASE): Likewise.
3186         (UNSPECV_RDGSBASE): Likewise.
3187         (UNSPECV_WRFSBASE): Likewise.
3188         (UNSPECV_WRGSBASE): Likewise.
3189         (UNSPECV_RDRAND): Likewise.
3190         (rdfsbase<mode>): Likewise.
3191         (rdgsbase<mode>): Likewise.
3192         (wrfsbase<mode>): Likewise.
3193         (wrgsbase<mode>): Likewise.
3194         (rdrand<mode>): Likewise.
3196         * config/i386/i386.opt: Add -mfsgsbase, -mrdrnd and -mf16c.
3198         * config/i386/immintrin.h (_rdrand_u16): New.
3199         (_rdrand_u32): Likewise.
3200         (_readfsbase_u32): Likewise.
3201         (_readfsbase_u64): Likewise.
3202         (_readgsbase_u32): Likewise.
3203         (_readgsbase_u64): Likewise.
3204         (_writefsbase_u32): Likewise.
3205         (_writefsbase_u64): Likewise.
3206         (_writegsbase_u32): Likewise.
3207         (_writegsbase_u64): Likewise.
3208         (_rdrand_u64): Likewise.
3209         (_cvtsh_ss): Likewise.
3210         (_mm_cvtph_ps): Likewise.
3211         (_mm256_cvtph_ps): Likewise.
3212         (_cvtss_sh): Likewise.
3213         (_mm_cvtps_ph): Likewise.
3214         (_mm256_cvtps_ph): Likewise.
3216         * config/i386/sse.md (vcvtph2ps): New.
3217         (*vcvtph2ps_load): Likewise.
3218         (vcvtph2ps256): Likewise.
3219         (vcvtps2ph): Likewise.
3220         (*vcvtps2ph): Likewise.
3221         (*vcvtps2ph_store): Likewise.
3222         (vcvtps2ph256): Likewise.
3224         * doc/extend.texi: Document FSGSBASE and RDRND built-in functions.
3226         * doc/invoke.texi: Document -mfsgsbase, -mrdrnd and -mf16c.
3228 2010-07-05  Joern Rennecke  <joern.rennecke@embecosm.com>
3230         PR bootstrap/44512
3231         * genenums.c (main): Output include of insn-constants.h
3232         * Makefile.in (insn-enums.o): Depend on insn-constants.h.
3234 2010-07-05  Uros Bizjak  <ubizjak@gmail.com>
3236         * config/i386/i386.c (ix86_gen_allocate_stack_worker): New.
3237         (override_options): Initialize it.
3238         (ix86_expand_prologue): Use it.
3240 2010-07-05  Jakub Jelinek  <jakub@redhat.com>
3242         * tree-nrv.c (tree_nrv): Set DECL_VALUE_EXPR on found to result.
3244 2010-07-05  Anatoly Sokolov  <aesok@post.ru>
3246         * double-int.h (fit_double_type): Remove declaration.
3247         * double-int.c (fit_double_type): Remove function.
3248         * tree.h (int_fits_type_p): Adjust prototype.
3249         * tree.c (int_fits_type_p): Return bool. Use double_int_fits_to_tree_p
3250         instead of fit_double_type.
3251         (build_int_cst_type): Use double_int_to_tree and shwi_to_double_int
3252         instead of fit_double_type and build_int_cst_wide.
3253         * builtins.c (): Use double_int_fits_to_tree_p and double_int_to_tree
3254         instead of fit_double_type and build_int_cst_wide.
3255         (fold_builtin_object_size): Use double_int_fits_to_tree_p instead
3256         of fit_double_type.
3258 2010-07-05  Jan Hubicka  <jh@suse.cz>
3260         * cgraph.h (cgraph_node, cgraph_varpool_node): Update docmentation of
3261         in_other_partition.
3262         * lto-cgraph.c (referenced_from_other_partition_p,
3263         reachable_from_other_partition_p): Use in_other_partition flags.
3264         (output_node, output_varpool_node): COMDAT nodes always have private
3265         copies and thus are never used from other partition.
3267 2010-07-05  Anatoly Sokolov  <aesok@post.ru>
3269         * config/ia64/ia64.h (MEMORY_MOVE_COST): Remove macro.
3270         * config/ia64/t-ia64 (ia64.o): Depend on reload.h.
3271         * config/ia64/ia64.c Include reload.h.
3272         (ia64_memory_move_cost): New function.
3273         (TARGET_MEMORY_MOVE_COST): Define.
3274         (ia64_register_move_cost): Replace MEMORY_MOVE_COST with
3275         memory_move_cost.
3277 2010-07-05  Sandra Loosemore  <sandra@codesourcery.com>
3279         PR middle-end/42505
3280         * tree-ssa-loop-ivopts.c (determine_set_costs): Delete obsolete
3281         comments about cost model.
3282         (try_add_cand_for):  Add second strategy for choosing initial set
3283         based on original IVs, controlled by ORIGINALP argument.
3284         (get_initial_solution): Add ORIGINALP argument.
3285         (find_optimal_iv_set_1): New function, split from find_optimal_iv_set.
3286         (find_optimal_iv_set): Try two different strategies for choosing
3287         the IV set, and return the one with lower cost.
3289 2010-07-05  Richard Guenther  <rguenther@suse.de>
3291         * tree-ssa-loop-ivopts.c (rewrite_use_nonlinear_expr): Copy alias info.
3293 2010-07-05  Richard Guenther  <rguenther@suse.de>
3295         * tree.c (reference_alias_ptr_type): New function.
3296         * tree.h (reference_alias_ptr_type): Declare.
3297         * tree-ssa-loop-ivopts.c (copy_ref_info): Restructure to
3298         allow non-TARGET_MEM_REF new refs.
3299         (rewrite_use_address): Pass old alias pointer type to create_mem_ref.
3300         * tree-ssa-address.c (create_mem_ref_raw): Get alias pointer type.
3301         Build a MEM_REF instead of a TARGET_MEM_REF if possible.
3302         (create_mem_ref): Get alias pointer type.  Adjust calls to
3303         create_mem_ref_raw.
3304         (maybe_fold_tmr): Likewise.
3305         * tree-flow.h (create_mem_ref): Adjust prototype.
3307 2010-07-05  Jakub Jelinek  <jakub@redhat.com>
3309         PR c++/44808
3310         * gimplify.c (gimplify_modify_expr): Only SET_DECL_DEBUG_EXPR if
3311         *from_p is VAR_DECL.
3313 2010-07-05  Nathan Froyd  <froydnj@codesourcery.com>
3315         * tree.h (build_call_list): Remove.
3316         * tree.c (build_call_list): Remove.
3318 2010-07-05  Richard Guenther  <rguenther@suse.de>
3320         * double-int.h (double_int_sub): Declare.
3321         * double-int.c (double_int_sub): New function.
3322         * dwarf2out.c (field_byte_offset): Use it.
3323         * fixed-value.c (do_fixed_add): Likewise.
3324         (do_fixed_multiply): Likewise.
3325         (do_fixed_divide): Likewise.
3326         * tree-predcom.c (add_ref_to_chain): Likewise.
3327         (determine_roots_comp): Likewise.
3328         * tree-ssa-loop-niter.c (derive_constant_upper_bound_ops): Likewise.
3330 2010-07-05  Nathan Froyd  <froydnj@codesourcery.com>
3332         * vec.h (VEC_splice, VEC_safe_splice): New macros.  Add function
3333         implementations.
3335 2010-07-05  Bernd Schmidt  <bernds@codesourcery.com>
3337         * config/arm/arm.c (get_arm_condition_code): Remove CC_NOTBmode case.
3338         * arm-modes.def (CC_NOTB): Don't define.
3339         * config/arm/arm.md (arm_adddi3): Generate canonical RTL.
3340         (adddi_sesidi_di, adddi_zesidi_di): Likewise.
3341         (LTUGEU): New code_iterator.
3342         (cnb, optab): New corresponding code_attrs.
3343         (addsi3_carryin_<optab>): Renamed from addsi3_carryin.  Change pattern
3344         to canonical form.  Operands 1 and 2 are commutative.  Parametrize
3345         using LTUGEU.
3346         (addsi3_carryin_shift_<optab>): Likewise.
3347         (addsi3_carryin_alt2_<optab>): Renamed from addsi3_carryin_alt2.
3348         Operands 1 and 2 are commutative.  Parametrize using LTUGEU.
3349         (addsi3_carryin_alt1, addsi3_carryin_alt3): Remove.
3350         (subsi3_compare): Renamed from subsi3_compare0_c.
3351         Change CC_NOTB to CC.
3352         (arm_subsi3_insn): Allow constants for operand 0.
3353         (compare_scc peephole for eq case): New.
3354         (compare_scc splitters): Change CC_NOTB to CC.
3356 2010-07-05  Richard Guenther  <rguenther@suse.de>
3358         * tree-ssa-loop-im.c (for_each_index): Do not handle
3359         ALIGN_INDIRECT_REF.
3360         (gen_lsm_tmp_name): Likewise.
3361         * tree-dump.c (dequeue_and_dump): Likewise.
3362         * tree-pretty-print.c (dump_generic_node): Likewise.
3363         (op_code_prio): Likewise.
3364         (op_symbol_code): Likewise.
3365         * tree.c (staticp): Likewise.
3366         (build1_stat): Likewise.
3367         * tree.h (INDIRECT_REF_P): Likewise.
3368         * fold-const.c (maybe_lvalue_p): Likewise.
3369         (operand_equal_p): Likewise.
3370         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Likewise.
3371         (ao_ref_init_from_vn_reference): Likewise.
3372         * tree-ssa-loop-ivopts.c (idx_find_step): Likewise.
3373         (find_interesting_uses_address): Likewise.
3374         * dwarf2out.c (loc_list_from_tree): Likewise.
3375         * gimplify.c (gimplify_expr): Likewise.
3376         * tree-eh.c (tree_could_trap_p): Likewise.
3377         * emit-rtl.c (set_mem_attributes_minus_bitpos): Likewise.
3378         * cfgexpand.c (expand_debug_expr): Likewise.
3379         * tree-ssa-pre.c (create_component_ref_by_pieces_1): Likewise.
3380         * tree-ssa-loop-prefetch.c (idx_analyze_ref): Likewise.
3381         * tree-cfg.c (verify_types_in_gimple_min_lval): Likewise.
3382         * config/rs6000/rs6000 (rs6000_check_sdmode): Likewise.
3383         * tree-ssa-operands.c (get_expr_operands): Likewise.
3384         * expr.c (safe_from_p): Likewise.
3385         (expand_expr_real_1): Likewise.  TER BIT_AND_EXPRs into MEM_REFs.
3386         * tree-vect-data-refs.c (vect_setup_realignment): Build
3387         BIT_AND_EXPR and MEM_REF instead of ALIGN_INDIRECT_REF.
3388         * tree-vect-stmts.c (vectorizable_load): Likewise.
3389         * tree.def (ALIGN_INDIRECT_REF): Remove.
3391 2010-07-05  Richard Guenther  <rguenther@suse.de>
3393         PR tree-optimization/44784
3394         * tree-ssa-pre.c (bitmap_find_leader): Fix dominance check
3395         for inserted stmts.
3396         (find_or_generate_expression): Fix SCCVN insertion check.
3398 2010-07-05  Nathan Sidwell  <nathan@codesourcery.com>
3400         * config/rs6000/e500crtsavg64gprctr.asm: Correct done label name.
3401         * config/rs6000/e500crtsav64gprctr.asm: Likewise.
3402         * config/rs6000/e500crtres64gprctr.asm: Likewise. Add FUNC_END
3403         directives.
3405 2010-07-05  Ira Rosen  <irar@il.ibm.com>
3407         * tree-vect-loop.c (vect_get_single_scalar_iteraion_cost): Skip
3408         statements that are not vectorized.
3409         * tree-vect-stmts.c (vect_get_load_cost): Update the value stored
3410         in INSIDE_COST.
3412 2010-07-05  Mikael Pettersson  <mikpe@it.uu.se>
3414         PR bootstrap/44820
3415         * config/arm/arm.c (arm_attr_length_move_neon): Delete regno.
3417 2010-07-05  Richard Guenther  <rguenther@suse.de>
3419         * tree-cfg.c (verify_gimple_return): Handle DECL_BY_REFERENCE
3420         RESULT_DECLs properly.
3422 2010-07-04  H.J. Lu  <hongjiu.lu@intel.com>
3424         PR rtl-optimization/44695
3425         * config/i386/i386.md (extract_code): Removed.
3426         (<u>divmodqi4): Likewise.
3427         (divmodqi4): New.
3428         (udivmodqi4): Likewise.
3429         (divmodhiqi3): Change div/mod to HImode and extend operand 2 to HImode.
3430         (udivmodhiqi3): Likewise.
3432 2010-07-04  Jan Hubicka  <jh@suse.cz>
3434         * lto-cgraph.c (input_edge): Do not care about resolution decisions.
3436 2010-07-04  Jan Hubicka  <jh@suse.cz>
3438         * cgraphunit.c (init_cgraph): Only initialize dump file if it
3439         is not already initialized.
3441 2010-07-04  Richard Sandiford  <rdsandiford@googlemail.com>
3443         * optabs.h (reload_in_optab, reload_out_optab, code_to_optab)
3444         (vcond_gen_code, vcondu_gen_code, movmem_optab, setmem_optab)
3445         (cmpstr_optab, cmpstrn_optab, cmpmem_optab, sync_add_optab)
3446         (sync_sub_optab, sync_ior_optab, sync_and_optab, sync_xor_optab)
3447         (sync_nand_optab, sync_old_add_optab, sync_old_sub_optab)
3448         (sync_old_ior_optab, sync_old_and_optab, sync_old_xor_optab)
3449         (sync_old_nand_optab, sync_new_add_optab, sync_new_sub_optab)
3450         (sync_new_ior_optab, sync_new_and_optab, sync_new_xor_optab)
3451         (sync_new_nand_optab): Redefine as macros.
3452         (sync_compare_and_swap, sync_lock_test_and_set, sync_lock_release):
3453         Delete.
3454         (direct_optab_index): New enum.
3455         (direct_optab_d): New structure.
3456         (direct_optab): New typedef.
3457         (direct_optab_table): Declare.
3458         (direct_optab_handler, set_direct_optab_handler): New functions.
3459         (sync_compare_and_swap_optab, sync_lock_test_and_set_optab)
3460         (sync_lock_release_optab): New macros.
3461         * optabs.c (direct_optab_table): New variable.
3462         (movcc_gen_code, vcond_gen_code, vcondu_gen_code): Delete.
3463         (prepare_cmp_insn): Use direct_optab_handler for cmpmem_optab,
3464         cmpstr_optab and cmpstrn_optab.
3465         (emit_conditional_move): Likewise for movcc_optab.
3466         (can_conditionally_move_p): Likewise for movcc_gen_code.
3467         (init_insn_codes): Clear direct_optab_table.
3468         (init_optabs): Don't initialize the new "direct optabs" here.
3469         (get_vcond_icode): Use direct_optab_handler for vcondu_gen_code and
3470         vcond_gen_code.
3471         (expand_val_compare_and_swap): Likewise sync_compare_and_swap_optab.
3472         (expand_bool_compare_and_swap): Likewise sync_compare_and_swap_optab.
3473         (expand_compare_and_swap_loop): Likewise sync_compare_and_swap_optab.
3474         (expand_sync_operation): Likewise other sync_*_optabs.
3475         (expand_sync_fetch_operation): Likewise.  Rename sync_compare_and_swap
3476         to sync_compare_and_swap_optab.
3477         (expand_sync_lock_test_and_set): Use direct_optab_handler for
3478         sync_lock_test_and_set and sync_compare_and_swap, adding "_optab"
3479         to the names of both.
3480         * builtins.c (expand_builtin_strcmp): Use direct_optab_handler for
3481         cmpstr_optab and cmpstrn_optab.
3482         (expand_builtin_lock_release): Likewise sync_lock_release.
3483         * expr.c (movmem_optab, setmem_optab, cmpstr_optab, cmpstrn_optab)
3484         (cmpmem_optab, sync_add_optab, sync_sub_optab, sync_ior_optab)
3485         (sync_and_optab, sync_xor_optab, sync_nand_optab, sync_old_add_optab)
3486         (sync_old_sub_optab, sync_old_ior_optab, sync_old_and_optab)
3487         (sync_old_xor_optab, sync_old_nand_optab, sync_new_add_optab)
3488         (sync_new_sub_optab, sync_new_ior_optab, sync_new_and_optab)
3489         (sync_new_xor_optab, sync_new_nand_optab, sync_compare_and_swap)
3490         (sync_lock_test_and_set, sync_lock_release): Delete.
3491         (emit_block_move_via_movmem): Use direct_optab_handler for movmem_optab.
3492         (emit_block_move_via_setmem): Use direct_optab_handler for setmem_optab.
3493         * genopinit.c (optabs): Use set_direct_optab_handler for the new
3494         macro optabs.
3495         * omp-low.c (expand_omp_atomic_fetch_op): Update the type of
3496         the "optab" local variable.  Use direct_optab_handler for optab and
3497         sync_compare_and_swap_optab.
3498         * reload1.c (reload_in_optab, reload_out_optab): Delete.
3499         * targhooks.c (default_secondary_reload): Use direct_optab_handler for
3500         reload_in_optab and reload_out_optab.
3501         * config/alpha/alpha.c (alpha_secondary_reload): Likewise.
3502         * config/frv/frv.c (frv_alloc_temp_reg): Likewise.
3503         * config/pa/pa.c (pa_secondary_reload): Likewise.
3504         * java/builtins.c (compareAndSwapInt_builtin): Use direct_optab_handler
3505         for sync_compare_and_swap, renaming it to sync_compare_and_swap_optab.
3506         (compareAndSwapLong_builtin, compareAndSwapObject_builtin): Likewise.
3507         (VMSupportsCS8_builtin): Likewise.
3509 2010-07-04  Richard Sandiford  <rdsandiford@googlemail.com>
3511         * optabs.h (optab_handlers): Change type of insn_code to int.
3512         (optab_handler, set_optab_handler, convert_optab_handler)
3513         (set_convert_optab_handler): Treat the insn_code field as "insn_code -
3514         CODE_FOR_nothing".
3515         * optabs.c (optab_table, convert_optab_table): Always zero-initialize.
3516         (init_insn_codes): Zero both the above arrays.
3517         (init_optabs): Never call init_insn_codes first time around.
3519 2010-07-04  Richard Sandiford  <rdsandiford@googlemail.com>
3521         * optabs.h (optab_handler, convert_optab_handler): Turn into
3522         inline functions that return an insn code.
3523         (set_optab_handler, set_convert_optab_handler): New functions.
3524         * builtins.c: Replace optab_handler(X)->insn_code with
3525         optab_handler or set_optab_handler thoughout.  Likewise
3526         convert_optab_handler(X)->insn_code with convert_optab_handler
3527         and set_convert_optab_handler.
3528         * expmed.c, expr.c, genopinit.c, ifcvt.c, optabs.c, reload.c,
3529         reload1.c, stmt.c, targhooks.c, tree-ssa-loop-prefetch.c,
3530         tree-ssa-math-opts.c, tree-vect-data-refs.c, tree-vect-generic.c,
3531         tree-vect-loop.c, tree-vect-patterns.c, tree-vect-slp.c,
3532         tree-vect-stmts.c, config/m32c/m32c.c, config/rs6000/rs6000.c,
3533         config/spu/spu.c: Likewise.
3535 2010-07-04  Kaz Kojima  <kkojima@gcc.gnu.org>
3537         PR target/44531
3538         * config.gcc (sh*-*-*): Use regular expressions instead of
3539         the 'i' modifier for sed substitutions.
3541 2010-07-04  Jeremie Salvucci  <jeremie.salvucci@free.fr>
3543         * gimple.c (gimple_body): Comments added.
3545 2010-07-04  Richard Guenther  <rguenther@suse.de>
3547         PR middle-end/44809
3548         * gimplify.c (gimplify_expr): Properly build a MEM_REF instead
3549         of an INDIRECT_REF.
3551 2010-07-04  Richard Guenther  <rguenther@suse.de>
3553         PR tree-optimization/44479
3554         * tree-ssa-loop-ivopts.c (rewrite_use_nonlinear_expr): Avoid
3555         extra SSA name copy statements which preserves points-to
3556         information.
3557         * tree-vect-data-refs.c (vect_create_addr_base_for_vector_ref):
3558         Copy points-to information for all pointers.  Properly handle
3559         MEM_REFs.
3560         (vect_create_data_ref_ptr): Likewise.  Avoid extra SSA name
3561         copy statements.
3562         * Makefile.in (tree-ssa-loop-ivopts.o): Add tree-ssa-propagate.h
3563         dependency.
3565 2010-07-04  Richard Guenther  <rguenther@suse.de>
3567         PR middle-end/44785
3568         * tree-inline.c (initialize_inlined_parameters): Do not
3569         re-use pointer-map slot over remap_type call.
3571 2010-07-04  Richard Guenther  <rguenther@suse.de>
3573         * tree-ssa-sccvn.c (vn_reference_lookup_3): Fix last commit.
3575 2010-07-04  Richard Guenther  <rguenther@suse.de>
3577         PR tree-optimization/44656
3578         * tree-ssa-sccvn.c (vn_reference_lookup_3): Try disambiguation
3579         again after value-replacing in the defintions lhs.
3581 2010-07-04  Ira Rosen  <irar@il.ibm.com>
3582             Revital Eres  <eres@il.ibm.com>
3584         * doc/tm.texi.in (TARGET_VECTORIZE_BUILTIN_VECTORIZATION_COST):
3585         Document new arguments.
3586         * doc/tm.texi: Regenerate.
3587         * targhooks.c (default_builtin_vectorization_cost): Add new arguments.
3588         Handle unaligned store.
3589         * targhooks.h (default_builtin_vectorization_cost): Add new arguments.
3590         * target.def (builtin_vectorization_cost): Add new arguments.
3591         * target.h (enum vect_cost_for_stmt): Add unaligned_store.
3592         * tree-vect-loop-manip.c (vect_gen_niters_for_prolog_loop): Take number
3593         of iterations of prolog loop directly from LOOP_PEELING_FOR_ALIGNMENT.
3594         (vect_vfa_segment_size): Fix indentation.
3595         * tree-vectorizer.h (struct _vect_peel_info): New.
3596         (struct _vect_peel_extended_info): New.
3597         (struct _loop_vec_info): Add new field for peeling hash table and a
3598         macro for its access.
3599         (VECT_MAX_COST): Define.
3600         (vect_get_load_cost): Declare.
3601         (vect_get_store_cost, vect_get_known_peeling_cost,
3602         vect_get_single_scalar_iteraion_cost): Likewise.
3603         (vect_supportable_dr_alignment): Add new argument.
3604         * tree-vect-loop.c (new_loop_vec_info): Initialize peeling hash table
3605         field.
3606         (destroy_loop_vec_info): Free peeling hash table.
3607         (vect_analyze_loop_form): Update call to builtin_vectorization_cost.
3608         (vect_analyze_loop): Move vect_enhance_data_refs_alignment before
3609         vect_analyze_slp. Fix indentation.
3610         (vect_get_single_scalar_iteraion_cost): New function.
3611         (vect_get_known_peeling_cost): Likewise.
3612         (vect_estimate_min_profitable_iters): Rename byte_misalign to npeel.
3613         Call vect_get_single_scalar_iteraion_cost instead of cost_for_stmt per
3614         statement. Move outside cost calculation inside unknown peeling case.
3615         Call vect_get_known_peeling_cost for known amount of peeling.
3616         * tree-vect-data-refs.c (vect_compute_data_ref_alignment): Add data
3617         reference to the print message of forced alignment.
3618         (vect_verify_datarefs_alignment): Update call to
3619         vect_supportable_dr_alignment.
3620         (vect_get_data_access_cost): New function.
3621         (vect_peeling_hash, vect_peeling_hash_eq, vect_peeling_hash_insert,
3622         vect_peeling_hash_get_most_frequent, vect_peeling_hash_get_lowest_cost,
3623         vect_peeling_hash_choose_best_peeling): Likewise.
3624         (vect_enhance_data_refs_alignment): Fix documentation. Use hash table
3625         to store all the accesses in the loop and find best possible access to
3626         align using peeling for known alignment case. For unknown alignment
3627         check if stores are preferred or if peeling is worthy.
3628         (vect_find_same_alignment_drs): Analyze pairs of loads too.
3629         (vect_supportable_dr_alignment): Add new argument and check aligned
3630         accesses according to it.
3631         * tree-vect-stmts.c (vect_get_stmt_cost): New function.
3632         (cost_for_stmt): Call vect_get_stmt_cost.
3633         (vect_model_simple_cost): Likewise.
3634         (vect_model_store_cost): Call vect_get_stmt_cost. Call
3635         vect_get_store_cost to calculate the cost of the statement.
3636         (vect_get_store_cost): New function.
3637         (vect_model_load_cost): Call vect_get_stmt_cost. Call
3638         vect_get_load_cost to calculate the cost of the statement.
3639         (vect_get_load_cost): New function.
3640         (vectorizable_store): Update call to vect_supportable_dr_alignment.
3641         (vectorizable_load): Likewise.
3642         * config/spu/spu.c (spu_builtin_vectorization_cost): Add new arguments.
3643         * config/i386/i386.c (ix86_builtin_vectorization_cost): Add new
3644         arguments. Handle unaligned store.
3645         * config/rs6000/rs6000.c (rs6000_builtin_vectorization_cost): New.
3646         (rs6000_builtin_support_vector_misalignment): Return true for word and
3647         double word alignments for VSX.
3648         * tree-vect-slp.c (vect_build_slp_tree): Update calls to
3649         vect_supportable_dr_alignment and builtin_vectorization_cost.
3651 2010-07-03  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
3653         PR target/44597
3654         * config/pa/predicates.md (prefetch_cc_operand): Remove.
3655         (prefetch_nocc_operand): Likewise.
3656         * config/pa/pa.md (prefetch): Revise expander to use prefetch_20.
3657         (prefetch_20): New insn.
3658         (prefetch_cc): Remove.
3659         (prefetch_nocc): Likewise.
3661 2010-07-03  Manuel López-Ibáñez  <manu@gcc.gnu.org>
3663         * expr.c (vector_mode_valid_p): Move to c-common.c.
3664         * expr.h (vector_mode_valid_p): Do not declare here.
3665         * system.h: Poison GCC_EXPR_H in front-ends.
3666         * Makefile.in: Update dependencies.
3668 2010-07-03  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
3670         PR target/44705
3671         * config/pa/pa.h (GO_IF_LEGITIMATE_ADDRESS): Reject LABEL_REF.
3673 2010-07-03  Jan Hubicka  <jh@suse.cz>
3675         * timevar.def (TV_OUT_OF_SSA, TV_VAR_EXPAND, TV_POST_EXPAND,
3676         TV_VAR_TRACKING_DATAFLOW, TV_VAR_TRACKING_EMIT): New timevars.
3677         * cfgexpand.c (gimple_expand_cfg): Use new timevars.
3678         * var-tracking.c (vt_find_locations, variable_tracking_main_1):
3679         Likewise.
3681         * lto-stramer-out.c (pass_ipa_lto_gimple_out, pass_ipa_lto_finish_out):
3682         Update timevars.V
3683         * timevar.def (TV_IPA_LTO_GIMPLE_IO, TV_IPA_LTO_DECL_IO): Remove.
3684         (TV_IPA_LTO_GIMPLE_IN, TV_IPA_LTO_GIMPLE_OUT, TV_IPA_LTO_DECL_IN,
3685         TV_IPA_LTO_DECL_OUT): New.
3686         * lto.c (read_cgraph_and_symbols, materialize_cgraph): Update timevars.
3688 2010-07-03  Jan Hubicka  <jh@suse.cz>
3690         * ipa-inline.c (update_edge_key): Break out from ...
3691         update_callers_keys): ... here;
3692         (update_callee_keys): Update only the edges from caller to callee.
3693         (update_all_calle_keys): Do what update_calle_keys did.
3694         (decide_inlining_of_small_functions): Avoid recomputing of all
3695         callees when badness increase.
3697 2010-07-03  Jie Zhang  <jie@codesourcery.com>
3699         * config/arm/arm.c (arm_attr_length_move_neon): New.
3700         * config/arm/arm-protos.h (arm_attr_length_move_neon): Declare.
3701         * config/arm/neon.md (define_mode_attr V_slen): Remove.
3702         (neon_mov<mode> for VSTRUCT): Use arm_attr_length_move_neon
3703         to compute length attribute.
3705 2010-07-03  Jie Zhang  <jie@codesourcery.com>
3707         * config/arm/vfp.md (*push_multi_vfp): Use vfp_register_operand
3708         as predicate for operand 1 and remove its constraint.
3709         * config/arm/predicates.md (vfp_register_operand): New.
3710         * config/arm/arm.md (*push_multi): Remove the constraint of operand 1.
3711         (*push_fp_multi): Likewise.
3713 2010-07-03  Eric Botcazou  <ebotcazou@adacore.com>
3715         * gimplify.c (mostly_copy_tree_r): Deal with BIND_EXPR.
3717 2010-07-03  Jan Hubicka  <jh@suse.cz>
3719         * config/i386/i386.c (override_options): Revert accidental commit.
3721 2010-07-02  Le-Chun Wu  <lcwu@google.com>
3723         PR c++/44128
3724         * doc/invoke.texi: Update documentation of -Wshadow.
3726 2010-07-02  Daniel Jacobowitz  <dan@codesourcery.com>
3727             Julian Brown  <julian@codesourcery.com>
3728             Sandra Loosemore <sandra@codesourcery.com>
3730         * config/arm/arm.c (arm_canonicalize_comparison): Canonicalize DImode
3731         comparisons.  Adjust to take both operands.
3732         (arm_select_cc_mode): Handle DImode comparisons.
3733         (arm_gen_compare_reg): Generate a scratch register for DImode
3734         comparisons which require one.  Use xor for Thumb equality checks.
3735         (arm_const_double_by_immediates): New.
3736         (arm_print_operand): Allow 'Q' and 'R' for constants.
3737         (get_arm_condition_code): Handle new CC_CZmode and CC_NCVmode.
3738         * config/arm/arm.h (CANONICALIZE_COMPARISON): Always use
3739         arm_canonicalize_comparison.
3740         * config/arm/arm-modes.def: Add CC_CZmode and CC_NCVmode.
3741         * config/arm/arm-protos.h (arm_canonicalize_comparison): Update
3742         prototype.
3743         (arm_const_double_by_immediates): Declare.
3744         * config/arm/constraints.md (Di): New constraint.
3745         * config/arm/predicates.md (arm_immediate_di_operand)
3746         (arm_di_operand, cmpdi_operand): New.
3747         * config/arm/arm.md (cbranchdi4): Handle non-Cirrus also.
3748         (*arm_cmpdi_insn, *arm_cmpdi_unsigned)
3749         (*arm_cmpdi_zero, *thumb_cmpdi_zero): New insns.
3750         (cstoredi4): Handle non-Cirrus also.
3752 2010-07-02  Julian Brown  <julian@codesourcery.com>
3753             Sandra Loosemore <sandra@codesourcery.com>
3755         PR target/43703
3756         * config/arm/vec-common.md (add<mode>3, sub<mode>3, smin<mode>3)
3757         (smax<mode>3): Disable for NEON float modes when
3758         flag_unsafe_math_optimizations is false.
3759         * config/arm/neon.md (*add<mode>3_neon, *sub<mode>3_neon)
3760         (*mul<mode>3_neon)
3761         (mul<mode>3add<mode>_neon, mul<mode>3neg<mode>add<mode>_neon)
3762         (reduc_splus_<mode>, reduc_smin_<mode>, reduc_smax_<mode>): Disable
3763         for NEON float modes when flag_unsafe_math_optimizations is false.
3764         (quad_halves_<code>v4sf): Only enable if
3765         flag_unsafe_math_optimizations is true.
3766         * doc/invoke.texi (ARM Options): Add note about floating point
3767         vectorization requiring -funsafe-math-optimizations.
3769 2010-07-02  Sandra Loosemore  <sandra@codesourcery.com>
3770             Julian Brown  <julian@codesourcery.com>
3772         * config/arm/neon.md (UNSPEC_VABA): Delete.
3773         (UNSPEC_VABAL): Delete.
3774         (UNSPEC_VABS): Delete.
3775         (UNSPEC_VMUL_N): Delete.
3776         (adddi3_neon): New.
3777         (subdi3_neon): New.
3778         (mul<mode>3add<mode>_neon): Make the pattern named.
3779         (mul<mode>3neg<mode>add<mode>_neon): Likewise.
3780         (neon_vadd<mode>): Replace with define_expand, and move the remaining
3781         unspec parts...
3782         (neon_vadd<mode>_unspec): ...to this.
3783         (neon_vmla<mode>, neon_vmla<mode>_unspec): Likewise.
3784         (neon_vlms<mode>, neon_vmls<mode>_unspec): Likewise.
3785         (neon_vsub<mode>, neon_vsub<mode>_unspec): Likewise.
3786         (neon_vaba<mode>): Rewrite in terms of vabd.
3787         (neon_vabal<mode>): Rewrite in terms of vabdl.
3788         (neon_vabs<mode>): Rewrite without unspec.
3789         * config/arm/arm.md (*arm_adddi3): Disable for TARGET_NEON.
3790         (*arm_subdi3): Likewise.
3791         * config/arm/neon.ml (Vadd, Vsub): Split out 64-bit variants and add
3792         No_op attribute to disable assembly output checks.
3793         * config/arm/arm_neon.h: Regenerated.
3794         * doc/arm-neon-intrinsics.texi: Regenerated.
3796 2010-07-02  Jan Hubicka  <jh@suse.cz>
3798         * ipa-split.c (split_function): For aggregate values, set the return
3799         slot optimization bit.  When passing DECL_BY_REFERENCE, produce
3800         *<retval> = fncall.part ().
3801         (execute_split_functions): Do not care about DECL_BY_REFERENCE.
3803 2010-07-02  Sandra Loosemore  <sandra@codesourcery.com>
3805         * config/arm/neon.md (UNSPEC_VAND): Delete.
3806         (UNSPEC_VBIC): Delete.
3807         (UNSPEC_VCLZ): Delete.
3808         (UNSPEC_VCNT): Delete.
3809         (UNSPEC_VEOR): Delete.
3810         (UNSPEC_VORN): Delete.
3811         (UNSPEC_VORR): Delete.
3812         (iordi3_neon): Rewrite RTL without unspec.  Add alternatives to handle
3813         core registers too.
3814         (anddi3_neon): Likewise.
3815         (orndi3_neon): Likewise.
3816         (bicdi3_neon): Likewise.
3817         (xordi3_neon): Likewise.
3818         (neon_vclz<mode>): Rewrite as define_expand and clz<mode>2 to get
3819         rid of unspec and handle unused operand.
3820         (neon_vcnt<mode>): Similarly, with popcount<mode>2.
3821         * config/arm/predicates.md (imm_for_neon_logic_operand):
3822         Require TARGET_NEON.
3823         (imm_for_neon_inv_logic_operand): Likewise.
3824         * config/arm/arm.md (define_split for logical_binary_operator):
3825         Disable for NEON registers.
3826         (anddi3): Add new define_expand, and rename the insn.  Disable
3827         this insn for NEON, where anddi3_neon now applies.
3828         (*anddi_notdi_di): Disable for TARGET_NEON, where bicdi3_neon applies.
3829         (iordi3): As for anddi3.
3830         (xordi3): Likewise.
3831         * config/arm/neon.ml (Vand): Split DImode variants and mark them
3832         as No_op to disable testing for exact instruction match.
3833         (Vorr): Likewise.
3834         (Veor): Likewise.
3835         (Vbic): Likewise.
3836         (Vorn): Likewise.
3837         * config/arm/arm_neon.h: Regenerated.
3838         * doc/arm-neon-intrinsics.texi: Regenerated.
3840 2010-07-02  Eric Botcazou  <ebotcazou@adacore.com>
3842         * expr.h (emit_stack_probe): Declare.
3843         * explow.c (emit_stack_probe): Make global.
3844         (anti_adjust_stack_and_probe): Fix comments.
3845         * config/sparc/linux.h (STACK_CHECK_STATIC_BUILTIN): Define to 1.
3846         * config/sparc/linux64.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
3847         * config/sparc/sol2.h (STACK_CHECK_STATIC_BUILTIN): Likewise.
3848         * config/sparc/sparc.c: Include except.h.
3849         (sparc_emit_probe_stack_range): New function.
3850         (output_probe_stack_range): Likewise.
3851         (sparc_expand_prologue): Invoke sparc_emit_probe_stack_range if static
3852         built-in stack checking is enabled.
3853         * config/sparc/sparc-protos.h (output_probe_stack_range): Declare.
3854         * config/sparc/sparc.md (UNSPECV_PROBE_STACK_RANGE): New constant.
3855         (probe_stack_range): New insn.
3857 2010-07-02  Richard Guenther  <rguenther@suse.de>
3859         PR target/43958
3860         * config/pa/pa.c (hppa_gimplify_va_arg_expr): Use pointer arithmetic
3861         for argument alignment.
3863 2010-07-02  Jan Hubicka  <jh@suse.cz>
3865         * ipa-split.c (verify_non_ssa_vars): Break out from ...; perform DFS
3866         walk backwards from entry_bb to check only those basic block of header
3867         that might lead to execution of split part.
3868         (consider_split) ... here.
3869         (find_return_bb): Allow assignment in return BB.
3870         (find_retval): New.
3871         (split_function): Fix name of cloned function; take care of updating
3872         return value in return_bb containing move.
3874 2010-07-02  Andreas Schwab  <schwab@linux-m68k.org>
3876         PR target/44771
3877         * config/m68k/m68k.c (m68k_expand_prologue): Remove set but not
3878         used variable insn.
3880 2010-07-02  Eric Botcazou  <ebotcazou@adacore.com>
3882         * implicit-zee.c (combine_reaching_defs): Fix long lines.
3883         (is_set_with_extension_DI): Delete.
3884         (struct zero_extend_info): New structure.
3885         (add_removable_zero_extend): New function.
3886         (find_removable_zero_extends): Use note_stores to find SETs.
3887         (find_and_remove_ze): Fix long line, remove superfluous parentheses.
3889 2010-07-02  Changpeng Fang  <changpeng.fang@amd.com>
3891         * tree-ssa-loop-prefetch.c (compute_miss_rate): Rename to
3892         is_miss_rate_acceptable. Pull total_positions computation
3893         out of the loops.  Early return if miss_positions exceeds
3894         the acceptable threshold.
3895         * tree-ssa-loop-prefetch.c (prune_ref_by_group_reuse): Call
3896         is_miss_rate_acceptable after renaming of compute_miss_rate.
3898 2010-07-02  Changpeng Fang  <changpeng.fang@amd.com>
3900         PR middle-end/44576
3901         * tree-ssa-loop-prefetch.c (compute_miss_rate): Return 1000 (out
3902         of 1000) for miss rate if the address diference is greater than or
3903         equal to the cache line size (the two reference will never hit the
3904         same cache line).
3906 2010-07-02  Bernd Schmidt  <bernds@codesourcery.com>
3908         PR target/42835
3909         * config/arm/arm-modes.def (CC_NOTB): New mode.
3910         * config/arm/arm.c (get_arm_condition_code): Handle it.
3911         * config/arm/thumb2.md (thumb2_compare_scc): Delete pattern.
3912         * config/arm/arm.md (subsi3_compare0_c): New pattern.
3913         (compare_scc): Now a define_and_split.  Add a number of extra
3914         splitters before it.
3916         PR target/42172
3917         * config/arm/arm.c (thumb1_rtx_costs): Improve support for SIGN_EXTEND
3918         and ZERO_EXTEND.
3919         (arm_rtx_costs_1): Likewise.
3920         (arm_size_rtx_costs): Use arm_rtx_costs_1 for these codes.
3921         * config/arm/arm.md (is_arch6): New attribute.
3922         (zero_extendhisi2, zero_extendqisi2, extendhisi2,
3923         extendqisi2): Tighten the code somewhat, avoiding invalid
3924         RTL to occur in the expander patterns.
3925         (thumb1_zero_extendhisi2): Merge with thumb1_zero_extendhisi2_v6.
3926         (thumb1_zero_extendhisi2_v6): Delete.
3927         (thumb1_extendhisi2): Merge with thumb1_extendhisi2_v6.
3928         (thumb1_extendhisi2_v6): Delete.
3929         (thumb1_extendqisi2): Merge with thumb1_extendhisi2_v6.
3930         (thumb1_extendqisi2_v6): Delete.
3931         (zero_extendhisi2 for register input splitter): New.
3932         (zero_extendqisi2 for register input splitter): New.
3933         (thumb1_extendhisi2 for register input splitter): New.
3934         (extendhisi2 for register input splitter): New.
3935         (extendqisi2 for register input splitter): New.
3936         (TARGET_THUMB1 extendqisi2 for memory input splitter): New.
3937         (arm_zero_extendhisi2): Allow nonimmediate_operand for operand 1,
3938         and add support for a register alternative requiring a split.
3939         (thumb1_zero_extendqisi2): Likewise.
3940         (arm_zero_extendqisi2): Likewise.
3941         (arm_extendhisi2): Likewise.
3942         (arm_extendqisi2): Likewise.
3944 2010-07-02  Sandra Loosemore  <sandra@codesourcery.com>
3946         * config/arm/arm.c (neon_vdup_constant): Expand into canonical RTL
3947         instead of an unspec.
3948         (neon_expand_vector_init): Likewise.
3949         * config/arm/neon.md (UNSPEC_VCOMBINE): Delete.
3950         (UNSPEC_VDUP_LANE): Delete.
3951         (UNSPEC VDUP_N): Delete.
3952         (UNSPEC_VGET_HIGH): Delete.
3953         (UNSPEC_VGET_LANE): Delete.
3954         (UNSPEC_VGET_LOW): Delete.
3955         (UNSPEC_VMVN): Delete.
3956         (UNSPEC_VSET_LANE): Delete.
3957         (V_double_vector_mode): New.
3958         (vec_set<mode>_internal): Make code emitted match that for the
3959         corresponding intrinsics.
3960         (vec_setv2di_internal): Likewise.
3961         (neon_vget_lanedi): Rewrite to expand into emit_move_insn.
3962         (neon_vget_lanev2di): Rewrite to expand into vec_extractv2di.
3963         (neon_vset_lane<mode>): Combine double and quad patterns and
3964         expand into vec_set<mode>_internal instead of UNSPEC_VSET_LANE.
3965         (neon_vset_lanedi): Rewrite to expand into emit_move_insn.
3966         (neon_vdup_n<mode>): Rewrite RTL without unspec.
3967         (neon_vdup_ndi): Rewrite as define_expand and use emit_move_insn.
3968         (neon_vdup_nv2di): Rewrite RTL without unspec and merge with
3969         with neon_vdup_lanev2di, adjusting the pattern from the latter
3970         to be predicable for consistency.
3971         (neon_vdup_lane<mode>_internal): New.
3972         (neon_vdup_lane<mode>): Turn into a define_expand and rewrite
3973         to avoid using an unspec.
3974         (neon_vdup_lanedi): Rewrite RTL pattern to avoid unspec.
3975         (neon_vdup_lanev2di): Turn into a define_expand.
3976         (neon_vcombine): Rewrite pattern to eliminate UNPSEC_VCOMBINE.
3977         (neon_vget_high<mode>): Replace with....
3978         (neon_vget_highv16qi): New pattern using canonical RTL.
3979         (neon_vget_highv8hi): Likewise.
3980         (neon_vget_highv4si): Likewise.
3981         (neon_vget_highv4sf): Likewise.
3982         (neon_vget_highv2di): Likewise.
3983         (neon_vget_low<mode>): Replace with....
3984         (neon_vget_lowv16qi): New pattern using canonical RTL.
3985         (neon_vget_lowv8hi): Likewise.
3986         (neon_vget_lowv4si): Likewise.
3987         (neon_vget_lowv4sf): Likewise.
3988         (neon_vget_lowv2di): Likewise.
3990         * config/arm/neon.ml (Vget_lane): Add No_op attribute to suppress
3991         test for this emitting vmov.
3992         (Vset_lane): Likewise.
3993         (Vdup_n): Likewise.
3994         (Vmov_n): Likewise.
3996         * doc/arm-neon-intrinsics.texi: Regenerated.
3998 2010-07-02  Sandra Loosemore  <sandra@codesourcery.com>
4000         * config/arm/neon.md (vec_extractv2di): Correct error in register
4001         numbering to reconcile with neon_vget_lanev2di.
4003 2010-07-02  Richard Guenther  <rguenther@suse.de>
4005         * tree-ssa-structalias.c (pt_solution_set_var): New function.
4006         * tree-ssa-alias.h (pt_solution_set_var): Declare.
4007         * tree-ssa-loop-ivopts.c (copy_ref_info): Also copy or create
4008         points-to information.
4010 2010-07-02  Christian Borntraeger  <borntraeger@de.ibm.com>
4012         * config/s390/s390.c (override_options): Adopt prefetching
4013         at -O3 to handle flag_prefetch_loop_arrays as a tristate.
4015 2010-07-02  Jan Hubicka  <jh@suse.cz>
4017         * df-problems.c (df_kill_notes): Do not collect dead  notes.
4018         (df_set_note): Just call add_reg_note.
4019         (df_set_unused_notes_for_mw, df_set_dead_notes_for_mw,
4020         df_create_unused_note): Do not deal with lists of old notes.
4021         (df_note_bb_compute): Likewise.
4023 2010-07-02  Richard Guenther  <rguenther@suse.de>
4025         * tree-ssa-structalias.c (find_func_aliases): Handle
4026         pointer alignment via BIT_AND_EXPR.
4027         * tree-vrp.c (extract_range_from_binary_expr): Likewise.
4029 2010-07-02  Richard Guenther  <rguenther@suse.de>
4031         * tree-data-ref.c (initialize_data_dependence_relation): Handle
4032         mismatching number of dimensions properly.
4034 2010-07-02  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
4036         PR target/44707
4037         * config/rs6000/rs6000.c (rs6000_legitimize_reload_address): Recognize
4038         (lo_sum (high ...) ...) patterns generated by earlier passes.
4040 2010-07-02  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
4042         * doc/install.texi (Prerequisites): Document Perl requirement on
4043         Solaris 2.
4044         (Specific, *-*-solaris2*): Document GNU c++filt requirement.
4046 2010-07-02  Richard Guenther  <rguenther@suse.de>
4048         PR middle-end/44777
4049         * tree-cfg.c (gimple_block_ends_with_call_p): Handle empty BBs.
4051 2010-07-02  Jan Hubicka  <jh@suse.cz>
4053         PR middle-end/44706
4054         * predict.c (predict_paths_for_bb): Handle case when control dependence
4055         BB has only abnormal edges.
4057 2010-07-02  Richard Guenther  <rguenther@suse.de>
4059         PR tree-optimization/44748
4060         * tree-ssa-ccp.c (fold_const_aggregate_ref): Properly handle
4061         the embedded conversion in MEM_REFs.
4063 2010-07-01  López-Ibáñez  <manu@gcc.gnu.org>
4065         * reload.c: Include toplev.h.
4066         * recog.c:  Likewise.
4067         * Makefile.in: Adjust dependencies.
4069 2010-07-01  Jakub Jelinek  <jakub@redhat.com>
4071         PR debug/44694
4072         * dwarf2out.c (reg_loc_descriptor): For eliminated arg_pointer_rtx
4073         or frame_pointer_rtx use DW_OP_fbreg offset DW_OP_stack_value.
4075 2010-07-01  Richard Guenther  <rguenther@suse.de>
4077         * emit-rtl.c (set_mem_attributes_minus_bitpos): Use unsigned
4078         types for offsets.
4080 2010-07-01  Joern Rennecke  <joern.rennecke@embecosm.com>
4082         PR target/44732
4083         * config/ia64/ia64.c (ia64_register_move_cost): Remove stray '{'.
4084         Fix argument types.
4086 2010-07-01  Bernd Schmidt  <bernds@codesourcery.com>
4088         PR target/44727
4089         * config/i386/i386.md (peephole2 for arithmetic ops with memory):
4090         Make sure operand 0 dies.
4092 2010-07-01  Richard Guenther  <rguenther@suse.de>
4094         PR middle-end/42834
4095         PR middle-end/44468
4096         * doc/gimple.texi (is_gimple_mem_ref_addr): Document.
4097         * doc/generic.texi (References to storage): Document MEM_REF.
4098         * tree-pretty-print.c (dump_generic_node): Handle MEM_REF.
4099         (print_call_name): Likewise.
4100         * tree.c (recompute_tree_invariant_for_addr_expr): Handle MEM_REF.
4101         (build_simple_mem_ref_loc): New function.
4102         (mem_ref_offset): Likewise.
4103         * tree.h (build_simple_mem_ref_loc): Declare.
4104         (build_simple_mem_ref): Define.
4105         (mem_ref_offset): Declare.
4106         * fold-const.c: Include tree-flow.h.
4107         (operand_equal_p): Handle MEM_REF.
4108         (build_fold_addr_expr_with_type_loc): Likewise.
4109         (fold_comparison): Likewise.
4110         (fold_unary_loc): Fold
4111         VIEW_CONVERT_EXPR <T1, MEM_REF <T2, ...>> to MEM_REF <T1, ...>.
4112         (fold_binary_loc): Fold MEM[&MEM[p, CST1], CST2] to MEM[p, CST1 + CST2],
4113         fold MEM[&a.b, CST2] to MEM[&a, offsetof (a, b) + CST2].
4114         * tree-ssa-alias.c (ptr_deref_may_alias_decl_p): Handle MEM_REF.
4115         (ptr_deref_may_alias_ref_p_1): Likewise.
4116         (ao_ref_base_alias_set): Properly differentiate base object for
4117         offset and TBAA.
4118         (ao_ref_init_from_ptr_and_size): Use MEM_REF.
4119         (indirect_ref_may_alias_decl_p): Handle MEM_REFs properly.
4120         (indirect_refs_may_alias_p): Likewise.
4121         (refs_may_alias_p_1): Likewise.  Remove pointer SSA name def
4122         chasing code.
4123         (ref_maybe_used_by_call_p_1): Handle MEM_REF.
4124         (call_may_clobber_ref_p_1): Likewise.
4125         * dwarf2out.c (loc_list_from_tree): Handle MEM_REF.
4126         * expr.c (expand_assignment): Handle MEM_REF.
4127         (store_expr): Handle MEM_REFs from STRING_CSTs.
4128         (store_field): If expanding a MEM_REF of a non-addressable
4129         decl use bitfield operations.
4130         (get_inner_reference): Handle MEM_REF.
4131         (expand_expr_addr_expr_1): Likewise.
4132         (expand_expr_real_1): Likewise.
4133         * tree-eh.c (tree_could_trap_p): Handle MEM_REF.
4134         * alias.c (ao_ref_from_mem): Handle MEM_REF.
4135         (get_alias_set): Likewise.  Properly handle VIEW_CONVERT_EXPRs.
4136         * tree-data-ref.c (dr_analyze_innermost): Handle MEM_REF.
4137         (dr_analyze_indices): Likewise.
4138         (dr_analyze_alias): Likewise.
4139         (object_address_invariant_in_loop_p): Likewise.
4140         * gimplify.c (mark_addressable): Handle MEM_REF.
4141         (gimplify_cond_expr): Build MEM_REFs.
4142         (gimplify_modify_expr_to_memcpy): Likewise.
4143         (gimplify_init_ctor_preeval_1): Handle MEM_REF.
4144         (gimple_fold_indirect_ref): Adjust.
4145         (gimplify_expr): Handle MEM_REF.  Gimplify INDIRECT_REF to MEM_REF.
4146         * tree.def (MEM_REF): New tree code.
4147         * tree-dfa.c: Include toplev.h.
4148         (get_ref_base_and_extent): Handle MEM_REF.
4149         (get_addr_base_and_unit_offset): New function.
4150         * emit-rtl.c (set_mem_attributes_minus_bitpos): Handle MEM_REF.
4151         * gimple-fold.c (may_propagate_address_into_dereference): Handle
4152         MEM_REF.
4153         (maybe_fold_offset_to_array_ref): Allow possibly out-of bounds
4154         accesses if the array has just one dimension.  Remove always true
4155         parameter.  Do not require type compatibility here.
4156         (maybe_fold_offset_to_component_ref): Remove.
4157         (maybe_fold_stmt_indirect): Remove.
4158         (maybe_fold_reference): Remove INDIRECT_REF handling.
4159         Fold back to non-MEM_REF.
4160         (maybe_fold_offset_to_address): Simplify.  Deal with type
4161         mismatches here.
4162         (maybe_fold_reference): Likewise.
4163         (maybe_fold_stmt_addition): Likewise.  Also handle
4164         &ARRAY + I in addition to &ARRAY[0] + I.
4165         (fold_gimple_assign): Handle ADDR_EXPR of MEM_REFs.
4166         (gimple_get_relevant_ref_binfo): Handle MEM_REF.
4167         * cfgexpand.c (expand_debug_expr): Handle MEM_REF.
4168         * tree-ssa.c (useless_type_conversion_p): Make most pointer
4169         conversions useless.
4170         (warn_uninitialized_var): Handle MEM_REF.
4171         (maybe_rewrite_mem_ref_base): New function.
4172         (execute_update_addresses_taken): Implement re-writing of MEM_REFs
4173         to SSA form.
4174         * tree-inline.c (remap_gimple_op_r): Handle MEM_REF, remove
4175         INDIRECT_REF handling.
4176         (copy_tree_body_r): Handle MEM_REF.
4177         * gimple.c (is_gimple_addressable): Adjust.
4178         (is_gimple_address): Likewise.
4179         (is_gimple_invariant_address): ADDR_EXPRs of MEM_REFs with
4180         invariant base are invariant.
4181         (is_gimple_min_lval): Adjust.
4182         (is_gimple_mem_ref_addr): New function.
4183         (get_base_address): Handle MEM_REF.
4184         (count_ptr_derefs): Likewise.
4185         (get_base_loadstore): Likewise.
4186         * gimple.h (is_gimple_mem_ref_addr): Declare.
4187         (gimple_call_fndecl): Handle invariant MEM_REF addresses.
4188         * tree-cfg.c (verify_address): New function, split out from ...
4189         (verify_expr): ... here.  Use for verifying ADDR_EXPRs and
4190         the address operand of MEM_REFs.  Verify MEM_REFs.  Reject
4191         INDIRECT_REFs.
4192         (verify_types_in_gimple_min_lval): Handle MEM_REF.  Disallow
4193         INDIRECT_REF.  Allow conversions.
4194         (verify_types_in_gimple_reference): Verify VIEW_CONVERT_EXPR of
4195         a register does not change its size.
4196         (verify_types_in_gimple_reference): Verify MEM_REF.
4197         (verify_gimple_assign_single): Disallow INDIRECT_REF.
4198         Handle MEM_REF.
4199         * tree-ssa-operands.c (opf_non_addressable, opf_not_non_addressable):
4200         New.
4201         (mark_address_taken): Handle MEM_REF.
4202         (get_indirect_ref_operands): Pass through opf_not_non_addressable.
4203         (get_asm_expr_operands): Pass opf_not_non_addressable.
4204         (get_expr_operands): Handle opf_[not_]non_addressable.
4205         Handle MEM_REF.  Remove INDIRECT_REF handling.
4206         * tree-vrp.c (check_array_ref): Handle MEM_REF.
4207         (search_for_addr_array): Likewise.
4208         (check_array_bounds): Likewise.
4209         (vrp_stmt_computes_nonzero): Adjust for MEM_REF.
4210         * tree-ssa-loop-im.c (for_each_index): Handle MEM_REF.
4211         (ref_always_accessed_p): Likewise.
4212         (gen_lsm_tmp_name): Likewise.  Handle ADDR_EXPR.
4213         * tree-complex.c (extract_component): Do not handle INDIRECT_REF.
4214         Handle MEM_REF.
4215         * cgraphbuild.c (mark_load): Properly check for NULL result
4216         from get_base_address.
4217         (mark_store): Likewise.
4218         * tree-ssa-loop-niter.c (array_at_struct_end_p): Handle MEM_REF.
4219         * tree-loop-distribution.c (generate_builtin): Exchange INDIRECT_REF
4220         handling for MEM_REF.
4221         * tree-scalar-evolution.c (follow_ssa_edge_expr): Handle
4222         &MEM[ptr + CST] similar to POINTER_PLUS_EXPR.
4223         * builtins.c (stabilize_va_list_loc): Use the function ABI
4224         valist type if we couldn't canonicalize the argument type.
4225         Always dereference with the canonical va-list type.
4226         (maybe_emit_free_warning): Handle MEM_REF.
4227         (fold_builtin_memory_op): Simplify and handle MEM_REFs in folding
4228         memmove to memcpy.
4229         * builtins.c (fold_builtin_memory_op): Use ref-all types
4230         for all memcpy foldings.
4231         * omp-low.c (build_receiver_ref): Adjust for MEM_REF.
4232         (build_outer_var_ref): Likewise.
4233         (scan_omp_1_op): Likewise.
4234         (lower_rec_input_clauses): Likewise.
4235         (lower_lastprivate_clauses): Likewise.
4236         (lower_reduction_clauses): Likewise.
4237         (lower_copyprivate_clauses): Likewise.
4238         (expand_omp_atomic_pipeline): Likewise.
4239         (expand_omp_atomic_mutex): Likewise.
4240         (create_task_copyfn): Likewise.
4241         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Handle MEM_REF.
4242         Remove old union trick.  Initialize constant offsets.
4243         (ao_ref_init_from_vn_reference): Likewise.  Do not handle
4244         INDIRECT_REF.  Init base_alias_set properly.
4245         (vn_reference_lookup_3): Replace INDIRECT_REF handling with MEM_REF.
4246         (vn_reference_fold_indirect): Adjust for MEM_REFs.
4247         (valueize_refs): Fold MEM_REFs.  Re-evaluate constant offset
4248         for ARRAY_REFs.
4249         (may_insert): Remove.
4250         (visit_reference_op_load): Do not test may_insert.
4251         (run_scc_vn): Remove parameter, do not fiddle with may_insert.
4252         * tree-ssa-sccvn.h (struct vn_reference_op_struct): Add
4253         a field to store the constant offset this op applies.
4254         (run_scc_vn): Adjust prototype.
4255         * cgraphunit.c (thunk_adjust): Adjust for MEM_REF.
4256         * tree-ssa-ccp.c (ccp_fold): Replace INDIRECT_REF folding with
4257         MEM_REF.  Propagate &foo + CST as &MEM[&foo, CST].  Do not
4258         bother about volatile qualifiers on pointers.
4259         (fold_const_aggregate_ref): Handle MEM_REF, do not handle INDIRECT_REF.
4260         * tree-ssa-loop-ivopts.c
4261         * tree-ssa-loop-ivopts.c (determine_base_object): Adjust for MEM_REF.
4262         (strip_offset_1): Likewise.
4263         (find_interesting_uses_address): Replace INDIRECT_REF handling with
4264         MEM_REF handling.
4265         (get_computation_cost_at): Likewise.
4266         * ipa-pure-const.c (check_op): Handle MEM_REF.
4267         * tree-stdarg.c (check_all_va_list_escapes): Adjust for MEM_REF.
4268         * tree-ssa-sink.c (is_hidden_global_store): Handle MEM_REF
4269         and constants.
4270         * ipa-inline.c (likely_eliminated_by_inlining_p): Handle MEM_REF.
4271         * tree-parloops.c (take_address_of): Adjust for MEM_REF.
4272         (eliminate_local_variables_1): Likewise.
4273         (create_call_for_reduction_1): Likewise.
4274         (create_loads_for_reductions): Likewise.
4275         (create_loads_and_stores_for_name): Likewise.
4276         * matrix-reorg.c (may_flatten_matrices_1): Sanitize.
4277         (ssa_accessed_in_tree): Handle MEM_REF.
4278         (ssa_accessed_in_assign_rhs): Likewise.
4279         (update_type_size): Likewise.
4280         (analyze_accesses_for_call_stmt): Likewise.
4281         (analyze_accesses_for_assign_stmt): Likewise.
4282         (transform_access_sites): Likewise.
4283         (transform_allocation_sites): Likewise.
4284         * tree-affine.c (tree_to_aff_combination): Handle MEM_REF.
4285         * tree-vect-data-refs.c (vect_create_addr_base_for_vector_ref): Do
4286         not handle INDIRECT_REF.
4287         * tree-ssa-phiopt.c (add_or_mark_expr): Handle MEM_REF.
4288         (cond_store_replacement): Likewise.
4289         * tree-ssa-pre.c (create_component_ref_by_pieces_1): Handle
4290         MEM_REF, no not handle INDIRECT_REFs.
4291         (insert_into_preds_of_block): Properly initialize avail.
4292         (phi_translate_1): Fold MEM_REFs.  Re-evaluate constant offset
4293         for ARRAY_REFs.  Properly handle reference lookups that
4294         require a bit re-interpretation.
4295         (can_PRE_operation): Do not handle INDIRECT_REF.  Handle MEM_REF.
4296         * tree-sra.c (build_access_from_expr_1): Handle MEM_REF.
4297         (build_ref_for_offset_1): Remove.
4298         (build_ref_for_offset): Build MEM_REFs.
4299         (gate_intra_sra): Disable for now.
4300         (sra_ipa_modify_expr): Handle MEM_REF.
4301         (ipa_early_sra_gate): Disable for now.
4302         * tree-sra.c (create_access): Swap INDIRECT_REF handling for
4303         MEM_REF handling.
4304         (disqualify_base_of_expr): Likewise.
4305         (ptr_parm_has_direct_uses): Swap INDIRECT_REF handling for
4306         MEM_REF handling.
4307         (sra_ipa_modify_expr): Remove INDIRECT_REF handling.
4308         Use mem_ref_offset.  Remove bogus folding.
4309         (build_access_from_expr_1): Properly handle MEM_REF for non IPA-SRA.
4310         (make_fancy_name_1): Add support for MEM_REF.
4311         * tree-predcom.c (ref_at_iteration): Handle MEM_REFs.
4312         * tree-mudflap.c (mf_xform_derefs_1): Adjust for MEM_REF.
4313         * ipa-prop.c (compute_complex_assign_jump_func): Handle MEM_REF.
4314         (compute_complex_ancestor_jump_func): Likewise.
4315         (ipa_analyze_virtual_call_uses): Likewise.
4316         * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Replace
4317         INDIRECT_REF folding with more generalized MEM_REF folding.
4318         (tree_ssa_forward_propagate_single_use_vars): Adjust accordingly.
4319         (forward_propagate_addr_into_variable_array_index): Also handle
4320         &ARRAY + I in addition to &ARRAY[0] + I.
4321         * tree-ssa-dce.c (ref_may_be_aliased): Handle MEM_REF.
4322         * tree-ssa-ter.c (find_replaceable_in_bb): Avoid TER if that
4323         creates assignments with overlap.
4324         * tree-nested.c (get_static_chain): Adjust for MEM_REF.
4325         (get_frame_field): Likewise.
4326         (get_nonlocal_debug_decl): Likewise.
4327         (convert_nonlocal_reference_op): Likewise.
4328         (struct nesting_info): Add mem_refs pointer-set.
4329         (create_nesting_tree): Allocate it.
4330         (convert_local_reference_op): Insert to be folded mem-refs.
4331         (fold_mem_refs): New function.
4332         (finalize_nesting_tree_1): Perform defered folding of mem-refs
4333         (free_nesting_tree): Free the pointer-set.
4334         * tree-vect-stmts.c (vectorizable_store): Adjust for MEM_REF.
4335         (vectorizable_load): Likewise.
4336         * tree-ssa-phiprop.c (phiprop_insert_phi): Adjust for MEM_REF.
4337         (propagate_with_phi): Likewise.
4338         * tree-object-size.c (addr_object_size): Handle MEM_REFs
4339         instead of INDIRECT_REFs.
4340         (compute_object_offset): Handle MEM_REF.
4341         (plus_stmt_object_size): Handle MEM_REF.
4342         (collect_object_sizes_for): Dispatch to plus_stmt_object_size
4343         for &MEM_REF.
4344         * tree-flow.h (get_addr_base_and_unit_offset): Declare.
4345         (symbol_marked_for_renaming): Likewise.
4346         * Makefile.in (tree-dfa.o): Add $(TOPLEV_H).
4347         (fold-const.o): Add $(TREE_FLOW_H).
4348         * tree-ssa-structalias.c (get_constraint_for_1): Handle MEM_REF.
4349         (find_func_clobbers): Likewise.
4350         * ipa-struct-reorg.c (decompose_indirect_ref_acc): Handle MEM_REF.
4351         (decompose_access): Likewise.
4352         (replace_field_acc): Likewise.
4353         (replace_field_access_stmt): Likewise.
4354         (insert_new_var_in_stmt): Likewise.
4355         (get_stmt_accesses): Likewise.
4356         (reorg_structs_drive): Disable.
4357         * config/i386/i386.c (ix86_va_start): Adjust for MEM_REF.
4358         (ix86_canonical_va_list_type): Likewise.
4360 2010-06-30  Joern Rennecke  <joern.rennecke@embecosm.com>
4362         PR other/44566
4363         * coretypes.h [!USED_FOR_TARGET] (reg_class_t): Define.
4364         * target.def (struct gcc_target): Replace enum reg_class with
4365         reg_class_t in hook argument / return types.
4366         * doc/tm.texi.in (TARGET_SECONDARY_RELOAD): Likewise.
4367         (TARGET_IRA_COVER_CLASSES, TARGET_MEMORY_MOVE_COST): Likewise.
4368         (TARGET_BRANCH_TARGET_REGISTER_CLASS): Likewise.
4369         * targhooks.h (default_branch_target_register_class): Likewise.
4370         (default_ira_cover_classes, default_secondary_reload): Likewise.
4371         (default_memory_move_cost, default_register_move_cost): Likewise.
4372         * targhooks.c (default_branch_target_register_class): Likewise.
4373         (default_ira_cover_classes, default_secondary_reload): Likewise.
4374         (default_memory_move_cost, default_register_move_cost): Likewise.
4375         * reload.c (push_secondary_reload, secondary_reload_class): Likewise.
4376         * bt-load.c (branch_target_load_optimize): Likewise.
4377         * ira.c (setup_cover_and_important_classes): Likewise.
4378         * ira-costs.c (copy_cost): Likewise.
4379         * reload1.c (emit_input_reload_insns): Likewise.
4380         * config/alpha/alpha.c (alpha_secondary_reload): Likewise.
4381         * config/frv/frv.c (frv_secondary_reload): Likewise.
4382         * config/s390/s390.c (s390_secondary_reload): Likewise.
4383         * config/i386/i386.c (i386_ira_cover_classes): Likewise.
4384         (ix86_secondary_reload, ix86_memory_move_cost): Likewise.
4385         (ix86_register_move_cost): Likewise.
4386         * config/sh/sh-protos.h (sh_secondary_reload): Likewise.
4387         * config/sh/sh.c (sh_target_reg_class, sh_secondary_reload): Likewise.
4388         * config/xtensa/xtensa.c (xtensa_secondary_reload): Likewise.
4389         * config/xtensa/xtensa-protos.h (xtensa_secondary_reload): Likewise.
4390         * config/rs6000/rs6000.c (rs6000_secondary_reload): Likewise.
4391         (rs6000_ira_cover_classes): Likewise.
4392         * config/picochip/picochip.c (picochip_secondary_reload): Likewise.
4393         * config/picochip/picochip-protos.h (picochip_secondary_reload):
4394         Likewise.
4395         * config/pa/pa.c (pa_secondary_reload): Likewise.
4396         * config/mips/mips.c (mips_ira_cover_classes): Likewise.
4397         * config/bfin/bfin.c (bfin_secondary_reload): Likewise.
4398         * config/ia64/ia64.c (ia64_register_move_cost): Likewise.
4399         * doc/tm.texi: Regenerate.
4401 2010-06-30  Sebastian Pop  <sebastian.pop@amd.com>
4403         PR bootstrrap/44726
4404         * graphite-sese-to-poly.c (build_poly_dr): Avoid uninitialized
4405         use.
4406         (build_alias_set_optimal_p): Likewise.
4407         (build_base_obj_set_for_drs): Likewise.
4409 2010-06-30  Joern Rennecke  <joern.rennecke@embecosm.com>
4411         * target.def: Remove comment about licensing problems of function
4412         declarations.
4414         * target.def (declare_constant_name): Change exp to expr.  Use DEFHOOK.
4415         * doc/tm.texi.in (TARGET_ASM_DECLARE_CONSTANT_NAME): Use @hook.
4416         * doc/tm.texi: Regenerate.
4418         * target.def (builtin_reciprocal): Change tm_fn to md_fn.  Use DEFHOOK.
4419         * doc/tm.texi.in (TARGET_BUILTIN_RECIPROCAL): Use @hook.
4421         * target.def (enum_va_list_p): Use DEFHOOK.
4422         * doc/tm.texi.in (TARGET_ENUM_VA_LIST_P): Use @hook.
4423         Rename ptype to ptree.
4424         * doc/tm.texi: Regenerate.
4426         * target.def (fold_builtin): Rename nargs to n_args.  Use DEFHOOK.
4427         * doc/tm.texi.in (TARGET_FOLD_BUILTIN): Use @hook.
4428         * doc/tm.texi: Regenerate.
4430         * target.def (memory_move_cost): Use DEFHOOK.
4431         * doc/tm.texi.in (TARGET_MEMORY_MOVE_COST): Use @hook.
4432         Rename regclass AKA class to rclass.
4433         * doc/tm.texi: Regenerate.
4435         * target.def (pragma_parse): Use DEFHOOK.
4436         * doc/tm.texi.in (TARGET_OPTION_PRAGMA_PARSE): Use @hook.
4437         s/TARGET_VALID_OPTION_ATTRIBUTE_P/TARGET_OPTION_VALID_ATRIBUTE_P/ .
4438         * doc/tm.texi: Regenerate.
4440         * target.def (pass_by_reference): Use DEFHOOK.
4441         * doc/tm.texi.in (TARGET_PASS_BY_REFERENCE): Use @hook.
4442         * doc/tm.texi: Regenerate.
4444         * target.def (resolve_overloaded_builtin): Rename params to arglist.
4445         Use DEFHOOK.
4446         * doc/tm.texi.in (TARGET_RESOLVE_OVERLOADED_BUILTIN): Use @hook.
4447         * doc/tm.texi: Regenerate.
4449         * target.def (return_pops_args): Use DEFHOOK.
4450         * doc/tm.texi.in (TARGET_RETURN_POPS_ARGS): Use @hook.
4451         Rename stack-size to size.
4452         * doc/tm.texi: Regenerate.
4454         * target.def (dfa_new_cycle): Use DEFHOOK.  Rename dump_file to dump,
4455         last-sched_cycle to last_clock, cur_cycle to clock.
4456         * doc/tm.texi.in: Use @hook.
4457         * doc/tm.texi: Regenerate.
4459         * target.def (print_operand, print_operand_address): Update comment.
4460         (print_operand_punct_valid_p): Likewise.
4462 2010-06-30  Manuel López-Ibáñez  <manu@gcc.gnu.org>
4464         * toplev.h (_fatal_insn_not_found, _fatal_insn): Move declarations
4465         to rtl.h.
4466         (error_for_asm, warning_for_asm): Move declarations to rtl-error.h.
4467         * rtl.h (_fatal_insn_not_found, _fatal_insn): Move declarations here.
4468         * rtl-error.h: New.
4469         * regrename.c: Do not include toplev.h. Include rtl-error.h.
4470         * rtl-error.c: Likewise.
4471         * reload.c: Likewise.
4472         * recog.c:  Likewise.
4473         * sel-sched.c: Likewise.
4474         * function.c: Likewise.
4475         * reg-stack.c: Likewise.
4476         * cfgrtl.c: Likewise.
4477         * reload1.c: Likewise.
4478         * final.c: Include rtl-error.
4479         * Makefile.in: Adjust dependencies.
4481 2010-06-30  Jan Hubicka  <jh@suse.cz>
4483         PR middle-end/PR44706
4484         * ipa-split (split_function): Refine conditions when to use DECL_RESULT
4485         to return the value.
4487 2010-06-30  Michael Matz  <matz@suse.de>
4489         PR bootstrap/44699
4490         * tree-vrp.c (vrp_finalize): Deal with changing num_ssa_names.
4491         * gimple-fold.c (gimplify_and_update_call_from_tree): If LHS is
4492         a gimple reg, attach the original VDEF to the last store in the
4493         sequence.
4495 2010-06-30  Iain Sandoe  <iains@gcc.gnu.org>
4497         PR other/44034
4498         * config/darwin.c (darwin_override_options): Use renamed
4499         targetm.asm_out.emit_unwind_label.
4501 2010-06-30  Bernd Schmidt  <bernds@codesourcery.com>
4503         PR tree-optimization/39799
4504         * tree-inline.c (remap_ssa_name): Initialize variable only if
4505         SSA_NAME_OCCURS_IN_ABNORMAL_PHI.
4507 2010-06-30  Nathan Froyd  <froydnj@codesourcery.com>
4509         * c-parser.c (c_parser_omp_for_loop): Use a VEC for for_block.
4511 2010-06-30  Richard Guenther  <rguenther@suse.de>
4513         PR target/44722
4514         * config/i386/i386.md (peephole2 for fix:SSEMODEI24): Guard
4515         against oscillation with reverse peephole2.
4517 2010-06-30  H.J. Lu  <hongjiu.lu@intel.com>
4519         PR target/44721
4520         * config/i386/i386.md (peephole2 for arithmetic ops with memory):
4521         Fix last commit.
4523 2010-06-30  Nick Clifton  <nickc@redhat.com>
4525         * config/rx/rx-modes.def: New file.
4526         * config/rx/rx.h (FIRST_PSEUDO_REGISTER): Increase to 17.
4527         (CC_REGNUM): Define.
4528         (FIXED_REGISTERS, CALL_USED_REGISTERS, REGISTER_NAMES): Add cc
4529         register.
4530         (CC_NO_CARRY, NOTICE_UPDATE_CC): Delete.
4531         (SELECT_CC_MODE): Define.
4532         * config/rx/rx.md (CC_REG): Define.  Update all patterns to use
4533         (reg:CC CC_REG) instead of (cc0).
4534         (attr "cc"): Delete.
4535         (cbranchsi4): Do not split compare and branch here. Instead move
4536         it to...
4537         (cbranchsi4_<code>): ... here.  New patterns.
4538         (cmpsi): Call rx-compare_redundant to find out if it is necessary
4539         to emit the compare instruction.
4540         * config/rx/rx.c (rx_gen-cond_branch_template): Remove tests of
4541         cc_status flags.
4542         (rx_get_stack_layout): Iterate up to before CC_REGNUM not
4543         FIRST_PSEUDO_REGNUM.
4544         (rx_expand_prologue, rx_expand_epilogue): Likewise.
4545         (rx_notice_update_cc): Delete.
4546         (rx_cc_modes_compatible): New function.
4547         (flags_needed_for_conditional): New function.
4548         (flags_from_mode): New function.
4549         (rx_compare_redundant): New function - scans backwards through
4550         insn list to find out if condition flags are already set correctly.
4551         (TARGET_CC_MODES_COMPATIBLE): Define.
4552         * config/rx/rx-protos.h (rx_compare_redundant): Prototype.
4554         * config/rx/rx.h (BRANCH_COST): Define.
4555         (REGISTER_MOVE_COST): Define.
4556         * config/rx/predicates (rx_source_operand): Allow all constant types.
4557         * config/rx/rx.md (addsi3): Add alternative for swapped operands.
4558         (tstsi4): New pattern.
4559         * config/rx/rx.c (rx_memory_move_cost): Define.
4560         (TARGET_MEMORY_MOVE_COST): Define.
4562 2010-06-30  Manuel López-Ibáñez  <manu@gcc.gnu.org>
4564         * tree.h (block_may_fallthru): Declare here.
4565         * tree-flow.h (block_may_fallthru): Do not declare here.
4566         * c-typeck.c: Do not include tree-flow.h. Include gimple.h and
4567         bitmap.h
4568         * Makefile.in (c-typeck.o): Update dependencies.
4570 2010-06-30  Jakub Jelinek  <jakub@redhat.com>
4572         PR debug/44694
4573         * cselib.h (cselib_preserve_cfa_base_value): Add regno argument.
4574         * cselib.c (cfa_base_preserved_regno): New static variable.
4575         (cselib_reset_table): Don't reset cfa_base_preserved_regno instead
4576         of REGNO (cfa_base_preserved_val->locs->loc).
4577         (cselib_preserve_cfa_base_value): Add regno argument, set
4578         cfa_base_preserved_regno to it.
4579         (cselib_invalidate_regno): Allow removal of registers other than
4580         cfa_base_preserved_regno from cfa_base_preserved_val.
4581         (cselib_finish): Set cfa_base_preserved_regno to INVALID_REGNUM.
4582         * var-tracking.c (adjust_mems): Replace sp or hfp even outside
4583         of MEM addresses, if not on LHS.
4584         (reverse_op): Don't add reverse ops for cfa_base_rtx.
4585         (vt_init_cfa_base): Adjust cselib_preserve_cfa_base_value caller.
4587 2010-06-30  Bernd Schmidt  <bernds@codesourcery.com>
4589         * recog.c (peep2_do_rebuild_jump_labels, peep2_do_cleanup_cfg): New
4590         static variables.
4591         (peep2_buf_position): New static function.
4592         (peep2_regno_dead_p, peep2_reg_dead_p, peep2_find_free_register,
4593         peephole2_optimize): Use it.
4594         (peep2_attempt, peep2_update_life): New static functions, broken out
4595         of peephole2_optimize.
4596         (peep2_fill_buffer): New static function.
4597         (peephole2_optimize): Change the main loop to try to fill the buffer
4598         with the maximum number of insns before matching them against
4599         peepholes.  Use a forward scan.  Remove special case for targets with
4600         conditional execution.
4601         * genrecog.c (change_state): Delete dead code.
4602         * config/i386/i386.md (peephole2 for arithmetic ops with memory):
4603         Rewrite so as not to expect the second insn to have had a peephole
4604         applied yet.
4606 2010-06-29  Nathan Froyd  <froydnj@codesourcery.com>
4608         * genhooks.c (emit_findices): Cast field precision to int.
4609         (emit_documentation): Likewise.
4611 2010-06-29  Jakub Jelinek  <jakub@redhat.com>
4613         PR tree-optimization/43801
4614         * cgraph.c (cgraph_create_virtual_clone): Clear DECL_SECTION_NAME
4615         if old_decl was DECL_ONE_ONLY.
4617         PR debug/44668
4618         * dwarf2out.c (add_accessibility_attribute): New function.
4619         (gen_subprogram_die, gen_variable_die, gen_field_die): Use it
4620         instead of adding DW_AT_accessibility manually.
4621         (gen_enumeration_type_die, gen_struct_or_union_type_die,
4622         gen_typedef_die): Use it.
4624 2010-06-29  Douglas B Rupp  <rupp@gnat.com>
4626         * vmsdbgout.c (full_name): Just output the file name if not native.
4628 2010-06-29  Douglas B Rupp  <rupp@gnat.com>
4630         * vmsdbgout.c (func_table): Replace with VEC func{nam,num}_tables.
4631         (funcnam_table): New static table.
4632         (funcnum_table): New static table.
4633         (write_rtnbeg): Write value saved in funcnum_table.
4634         (write_rtnend): Write value saved in funcnum_table.
4635         (vmsdbgout_begin_function): Save current function info in
4636         (vmsdbgout_init): Initialize func{nam,num}_tables. Minor reformatting.
4637         (vmsdbgout_finish): Iterate over funcnum_table.
4639 2010-06-29  Douglas B Rupp  <rupp@gnat.com>
4641         * vmsdbgout.c (vmsdbgout_begin_epilogue): Declare
4642         (vmsdbgout_type_decl): Declare
4643         (vmsdbg_debug_hooks): Add entry for type_decl and begin_epilogue.
4644         (FUNC_EPILOGUE_LABEL): New macro
4645         (vmsdbgout_begin_epilogue): New function.
4646         (vmsdbgout_type_decl): New function.
4648 2010-06-29  Douglas B Rupp  <rupp@gnat.com>
4650         * vmsdbg.h: Update copyright.
4652 2010-06-29  Douglas B Rupp  <rupp@gnat.com>
4654         * vmsdbg.h (DST_K_TBG): New DST constant.
4655         * vmsdbgout.c (addr_const_to_string): Removed, not referenced.
4656         (write_modbeg): Cast module_language to avoid warning.
4657         (write_rtnbeg): Use DST_K_TBG vice magic mystery number.
4659 2010-06-29  Joern Rennecke  <joern.rennecke@embecosm.com>
4661         PR other/44034
4662         * target.def, doc/tm.texi.in, genhooks.c: New files.
4663         * target.h: Instead of defining individual hook members,
4664         define DEFHOOKPOD / DEFHOOK / DEFHOOK_UNDOC / HOOKSTRUCT and
4665         include target.def.
4666         * target-def.h: Instead of defining individual hook initializers,
4667         include target-hooks-def.h.
4668         * df-scan.c, haifa-sched.c, sel-sched.c: Rename targetm members:
4669         targetm.live_on_entry -> targetm.extra_live_on_entry
4670         targetm.sched.md_finish ->targetm.sched.finish
4671         targetm.sched.md_init -> targetm.sched.init
4672         targetm.sched.md_init_global -> targetm.sched.init_global
4673         targetm.asm_out.unwind_label -> targetm.asm_out.emit_unwind_label
4674         targetm.asm_out.except_table_label ->
4675           targetm.asm_out.emit_except_table_label
4676         targetm.asm_out.visibility -> targetm.asm_out.assemble_visibility
4677         targetm.target_help -> targetm.help
4678         targetm.vectorize.builtin_support_vector_misalignment ->
4679           targetm.vectorize.support_vector_misalignment
4680         targetm.file_start_app_off -> targetm.asm_file_start_app_off
4681         targetm.file_start_file_directive ->
4682          targetm.asm_file_start_file_directive
4683         * dwarf2out.c, opts.c, tree-vect-data-refs.c, except.c: Likewise.
4684         * varasm.c, config/alpha/alpha.c, config/cris/cris.c: Likewise.
4685         * gcc/config/spu/spu.c, config/ia64/ia64.c: Rename target macros:
4686         TARGET_VECTOR_ALIGNMENT_REACHABLE ->
4687           TARGET_VECTORIZE_VECTOR_ALIGNMENT_REACHABLE
4688         TARGET_SUPPORT_VECTOR_MISALIGNMENT ->
4689           TARGET_VECTORIZE_SUPPORT_VECTOR_MISALIGNMENT
4690         TARGET_UNWIND_EMIT -> TARGET_ASM_UNWIND_EMIT
4691         * config/rs6000/rs6000.c, config/arm/arm.c: Likewise.
4692         * Makefile.in (TARGET_H): Depend on target.def.
4693         (TARGET_DEF_H): Depend on target-hooks-def.h.
4694         (target-hooks-def.h, tm.texi, s-target-hooks-def-h): New rules.
4695         (s-tm-texi, build/genhooks.o, build/genhooks): Likewise.
4696         * doc/tm.texi: Regenerate.
4698         * Makefile.in (s-tm-texi): Remove stray tab / rule.
4700         * config/m68k/m68k.c (targetm.sched.init_global): Update comment.
4701         (targetm.sched.init): Likewise.
4703 2010-06-29  Nathan Froyd  <froydnj@codesourcery.com>
4705         PR bootstrap/44713
4706         * config/i386/i386.c (type_natural_mode): Const-ify CUM parameter.
4707         (function_arg_advance_32): Const-ify TYPE parameter.
4708         (function_arg_advance_64): Likewise.  Change type of NAMED to bool.
4709         (ix86_function_arg_advance): Change type of NAMED to bool.
4710         (function_arg_32): Const-ify CUM and TYPE parameters.
4711         (function_arg_64): Likewise.  Change type of NAMED to bool.
4712         (function_arg_ms_64): Const-ify CUM parameter. Change type of NAMED
4713         to bool.
4714         (ix86_function_arg): Change type of NAMED to bool.
4715         (ix86_setup_incoming_varargs): Call ix86_function_arg_advance.  Pass
4716         last argument as a bool.
4718 2010-06-29  Joern Rennecke  <joern.rennecke@embecosm.com>
4720         * doc/tm.texi (TARGET_OPTION_OVERRIDE): Document.
4721         (OVERRIDE_OPTIONS): Add note of obsolescence.
4722         Replace references with references to TARGET_OPTION_OVERRIDE.
4723         (Except for C_COMMON_OVERRIDE_OPTIONS, which remains similar to
4724          the macro).
4725         * targhooks.c (default_target_option_override): New function.
4726         * targhooks.h (default_target_option_override): Declare.
4727         * target.h (struct gcc_target): Add override member to
4728         target_option member.
4729         * toplev.c (process_options): Replace OVERRIDE_OPTIONS use with
4730         targetm.target_option.override call.
4731         * target-def.h (TARGET_OPTION_OVERRIDE): Define.
4732         (TARGET_OPTION_HOOKS): Add TARGET_OPTION_OVERRIDE.
4734 2010-06-29  Jan Hubicka  <jh@suse.cz>
4736         * tree-inline.c: Replace incomming by incomin and clonning by cloning.
4738 2010-06-29  Jan Hubicka  <jh@suse.cz>
4740         * predict.c (propagate_freq): Clear EXIT_BLOCK_PTR frequency if it is
4741         unreachable.
4742         (rebuild_frequencies): New function.
4743         * predict.h (rebuild_frequencies): Declare.
4744         * tree-inline.c (copy_cfg_body): Compute properly count & frequency of
4745         entry block and edge reaching new_entry.
4746         (tree_function_versioning): When doing partial cloning, rebuild
4747         frequencies when done.
4748         * passes.c (execute_function_todo): Use rebild_frequencies.
4750 2010-06-29  Richard Guenther  <rguenther@suse.de>
4752         * tree-dfa.c (dump_variable): Remove noalias_state dumping.
4753         * tree-flow.h (enum noalias_state): Remove.
4754         (struct var_ann_d): Remove noalias_state member.
4756 2010-06-29  Bernd Schmidt  <bernds@codesourcery.com>
4758         PR target/43902
4759         * config/arm/arm.md (maddsidi4, umaddsidi4): New expanders.
4760         (maddhisi4): Renamed from mulhisi3addsi.  Operands renumbered.
4761         (maddhidi4): Likewise.
4763         Revert parts of the change for PR25130.
4764         * cse.c (exp_equiv_p): For MEMs, if for_gcse, only compare
4765         MEM_ALIAS_SET.
4767 2010-06-29  Nathan Froyd  <froydnj@codesourcery.com>
4769         * calls.c, dse.c, expr.c, function.c: Call targetm.calls.function_arg,
4770         targetm.calls.function_incoming_arg, and
4771         targetm.calls.function_arg_advance instead of FUNCTION_ARG,
4772         FUNCTION_INCOMING_ARG, and FUNCTION_ARG_ADVANCE, respectively.
4773         * target.h (struct gcc_target): Add function_arg_advance,
4774         function_arg, and function_incoming_arg fields.
4775         * target-def.h (TARGET_FUNCTION_ARG_ADVANCE, TARGET_FUNCTION_ARG):
4776         (TARGET_FUNCTION_INCOMING_ARG): Define.
4777         (TARGET_CALLS): Add TARGET_FUNCTION_ARG_ADVANCE, TARGET_FUNCTION_ARG,
4778         and TARGET_FUNCTION_INCOMING_ARG.
4779         * targhooks.h (default_function_arg_advance): Declare.
4780         (default_function_arg, default_function_incoming_arg): Declare.
4781         * targhooks.c (default_function_arg_advance): New function.
4782         (default_function_arg, default_function_incoming_arg): New function.
4783         * config/i386/i386.c (function_arg_advance): Rename to...
4784         (ix86_function_arg_advance): ...this.  Make static.
4785         (function_arg): Rename to...
4786         (ix86_function_arg): ...this.  Make static.
4787         (TARGET_FUNCTION_ARG_ADVANCE): Define.
4788         (TARGET_FUNCTION_ARG): Define.
4789         * config/i386/i386.h (FUNCTION_ARG_ADVANCE): Delete.
4790         (FUNCTION_ARG): Delete.
4791         * config/i386/i386-protos.h (function_arg_advance): Delete prototype.
4792         (function_arg): Delete prototype.
4794 2010-06-29  Nathan Froyd  <froydnj@codesourcery.com>
4796         * reginfo.c (init_reg_sets_1): Adjust comments.
4797         * combine-stack-adj.c (rest_of_handle_stack_adjustments): Likewise.
4798         * calls.c (prepare_call_address): Likewise.
4799         (emit_call_1): Use targetm.calls.return_pops_args.
4800         (expand_call): Likewise.
4801         * function.c (assign_parms): Likewise.
4802         * system.h (RETURN_POPS_ARGS): Add to #pragma poison list.
4803         * target.h (struct gcc_target) [struct calls]: Add
4804         return_pops_args field.
4805         * targhooks.h (default_return_pops_args): Declare.
4806         * targhooks.c (default_return_pops_args): Define.
4807         * target-def.h (TARGET_RETURN_POPS_ARGS): Define.
4808         (TARGET_CALLS): Add TARGET_RETURN_POPS_ARGS.
4809         * doc/tm.texi (RETURN_POPS_ARGS): Rename to...
4810         (TARGET_RETURN_POPS_ARGS): ...this.  Use deftypefn.  Adjust
4811         documentation.
4812         * config/alpha/alpha.h (RETURN_POPS_ARGS): Delete.
4813         * config/arc/arc.h (RETURN_POPS_ARGS): Likewise.
4814         * config/arm/arm.h (RETURN_POPS_ARGS): Likewise.
4815         * config/avr/avr.h (RETURN_POPS_ARGS): Likewise.
4816         * config/bfin/bfin.h (RETURN_POPS_ARGS): Likewise.
4817         * config/cris/cris.h (RETURN_POPS_ARGS): Likewise.
4818         * config/crx/crx.h (RETURN_POPS_ARGS): Likewise.
4819         * config/fr30/fr30.h (RETURN_POPS_ARGS): Likewise.
4820         * config/frv/frv.h (RETURN_POPS_ARGS): Likewise.
4821         * config/h8300/h8300.h (RETURN_POPS_ARGS): Likewise.
4822         * config/ia64/ia64.h (RETURN_POPS_ARGS): Likewise.
4823         * config/iq2000/iq2000.h (RETURN_POPS_ARGS): Likewise.
4824         * config/lm32/lm32.h (RETURN_POPS_ARGS): Likewise.
4825         * config/m32c/m32c.h (RETURN_POPS_ARGS): Likewise.
4826         * config/m32r/m32r.h (RETURN_POPS_ARGS): Likewise.
4827         * config/m68hc11/m68hc11.h (RETURN_POPS_ARGS): Likewise.
4828         * config/mcore/mcore.h (RETURN_POPS_ARGS): Likewise.
4829         * config/mep/mep.h (RETURN_POPS_ARGS): Likewise.
4830         * config/mips/mips.h (RETURN_POPS_ARGS): Likewise.
4831         * config/mmix/mmix.h (RETURN_POPS_ARGS): Likewise.
4832         * config/mn10300/mn10300.h (RETURN_POPS_ARGS): Likewise.
4833         * config/moxie/moxie.h (RETURN_POPS_ARGS): Likewise.
4834         * config/pa/pa.h (RETURN_POPS_ARGS): Likewise.
4835         * config/pdp11/pdp11.h (RETURN_POPS_ARGS): Likewise.
4836         * config/picochip/picochip.h (RETURN_POPS_ARGS): Likewise.
4837         * config/rs6000/rs6000.h (RETURN_POPS_ARGS): Likewise.
4838         * config/rx/rx.h (RETURN_POPS_ARGS): Likewise.
4839         * config/s390/s390.h (RETURN_POPS_ARGS): Likewise.
4840         * config/score/score.h (RETURN_POPS_ARGS): Likewise.
4841         * config/sh/sh.h (RETURN_POPS_ARGS): Likewise.
4842         * config/sparc/sparc.h (RETURN_POPS_ARGS): Likewise.
4843         * config/spu/spu.h (RETURN_POPS_ARGS): Likewise.
4844         * config/stormy16/stormy16.h (RETURN_POPS_ARGS): Likewise.
4845         * config/v850/v850.h (RETURN_POPS_ARGS): Likewise.
4846         * config/xtensa/xtensa.h (RETURN_POPS_ARGS): Likewise.
4847         * config/i386/i386-protos.h (ix86_return_pops_args): Delete.
4848         * config/i386/i386.h (RETURN_POPS_ARGS): Delete.
4849         * config/i386/i386.c (ix86_return_pops_args): Make static.
4850         Constify arguments.
4851         (TARGET_RETURN_POPS_ARGS): Define.
4852         * config/m68k/m68k.h (RETURN_POPS_ARGS): Move to...
4853         * config/m68k/m68k.c (m68k_return_pops_args): ...here.  New function.
4854         (TARGET_RETURN_POPS_ARGS): Define.
4855         * config/vax/vax.h (RETURN_POPS_ARGS): Move to...
4856         * config/vax/vax.c (vax_return_pops_args): ...here.  New function.
4857         (TARGET_RETURN_POPS_ARGS): Define.
4859 2010-06-29  Richard Guenther  <rguenther@suse.de>
4861         PR middle-end/44667
4862         * tree-inline.c (initialize_inlined_parameters): Make sure
4863         to remap the inlined parameter variable substitutions types.
4865 2010-06-29  Eric Botcazou  <ebotcazou@adacore.com>
4867         PR rtl-optimization/44659
4868         * combine.c (make_compound_operation) <SUBREG>: Do not return the
4869         result of force_to_mode if it partially re-expanded the compound.
4871 2010-06-28  Jan Hubicka  <jh@suse.cz>
4873         PR middle-end/44671
4874         * ipa-split.c (test_nonssa_use, mark_nonssa_use): Check also uses of
4875         RESULT_DECL.
4877 2010-06-28  Anatoly Sokolov  <aesok@post.ru>
4879         * double-int.h (force_fit_type_double): Remove declaration.
4880         * double-int.c (force_fit_type_double): Move to tree.c.
4881         * tree.h (force_fit_type_double): Declare.
4882         * tree.h (force_fit_type_double): Moved from double-int.c. Use
4883         double_int type for 'cst' argument. Use double_int_fits_to_tree_p and
4884         double_int_to_tree instead of fit_double_type and build_int_cst_wide.
4885         * convert.c (convert_to_pointer): Adjust call to
4886         force_fit_type_double.
4887         * tree-vrp.c (extract_range_from_assert,
4888         extract_range_from_unary_expr): Adjust call to force_fit_type_double.
4889         * fold-const.c: Update comment.
4890         (int_const_binop, fold_convert_const_int_from_int,
4891         fold_convert_const_int_from_real, fold_convert_const_int_from_fixed,
4892         extract_muldiv_1, fold_div_compare, fold_sign_changed_comparison,
4893         fold_unary_loc, fold_negate_const, fold_abs_const, fold_not_const,
4894         round_up_loc): Adjust call to force_fit_type_double.
4896 2010-06-28  Philipp Tomsich  <philipp.tomsich@theobroma-systems.com>
4898         * config/rs6000/rs6000.h (PROCESSOR_TITAN): Declare.
4900 2010-06-28  Martin Jambor  <mjambor@suse.cz>
4902         * tree-sra.c (convert_callers): New parameter, change fndecls of
4903         recursive calls.
4904         (modify_function): Pass the old decl to convert_callers.
4906 2010-06-28  Martin Jambor  <mjambor@suse.cz>
4908         * ipa-cp.c (ipcp_init_cloned_node): Replace calls to
4909         ipa_check_create_node_params and ipa_initialize_node_params with
4910         checking asserts they are not necessary.
4912 2010-06-28  Jan Hubicka  <jh@suse.cz>
4914         PR tree-optimization/44687
4915         * ipa-split.c (split_function): Use DECL_RESULT to store return value.
4917 2010-06-28  Martin Jambor  <mjambor@suse.cz>
4919         PR c++/44535
4920         * gimple-fold.c (get_first_base_binfo_with_virtuals): New function.
4921         (gimple_get_relevant_ref_binfo): Use get_first_base_binfo_with_virtuals
4922         instead of BINFO_BASE_BINFO.
4924 2010-06-28  Michael Matz  <matz@suse.de>
4926         PR middle-end/44592
4927         * gimple-fold.c (gimplify_and_update_call_from_tree): Maintain
4928         proper VDEF chain for intermediate stores in the sequence.
4930 2010-06-28  Jan Hubicka  <jh@suse.cz>
4932         PR tree-optimization/44357
4933         * ipa-inline.c (add_new_edges_to_heap): Do not add edges to
4934         uninlinable functions.
4936 2010-06-28  Philipp Tomsich  <philipp.tomsich@theobroma-systems.com>
4938         * config.gcc (powerpc*-*-*): Handle titan.
4939         * config/rs6000/rs6000.c (titan_cost): New costs.
4940         (rs6000_override_options): Add "titan" to processor_target_table.
4941         Add Titan to branch alignment logic.
4942         Correctly set rs6000_cost for titan.
4943         * config/rs6000/rs6000.md (cpu): Add titan.  Include "titan.md".
4944         * config/rs6000/titan.md: New file.
4945         * doc/invoke.texi (RS/6000 and PowerPC Options): Document -mcpu=titan.
4947 2010-06-28  Nathan Froyd  <froydnj@codesourcery.com>
4949         * tree-browser.c (TB_history_stack): Convert to a VEC.
4950         (TB_SET_HEAD): Adjust for new type of TB_history_stack.
4951         (TB_history_prev): Likewise.
4953 2010-06-28  Nathan Froyd  <froydnj@codesourcery.com>
4955         * vec.h (vec_heap_free): Add parentheses around free.
4957 2010-06-28  Steven Bosscher  <steven@gcc.gnu.org>
4959         * system.h: Poison GCC_EXCEPT_H for front-end files.
4961         * langhooks.h (struct lang_hooks): Add eh_protect_cleanup_actions
4962         langhook.
4963         * langhooks-def.h (LANG_HOOKS_EH_PROTECT_CLEANUP_ACTIONS) New.
4964         Define to NULL by default.
4965         * except.h: Define GCC_EXCEPT_H.
4966         (doing_eh): Remove prototype.
4967         (init_eh, init_eh_for_function): Move prototypes to toplev.h.
4968         (lang_protect_cleanup_actions): Remove.
4969         * except.c (lang_protect_cleanup_actions): Remove.
4970         (doing_eh): Remove.
4971         (gen_eh_region): Don't check doing_eh here.
4972         * toplev.h (init_eh, init_eh_for_function_): Moved from except.h.
4973         * tree-eh.c (honor_protect_cleanup_actions): Use new langhook
4974         instead of lang_protect_cleanup_actions.
4975         * omp-low.c (maybe_catch_exception): Likewise.
4976         * Makefile.in: Update dependencies.
4978 2010-06-28  Bingfeng Mei  <bmei@broadcom.com>
4980         * cgraph.h (struct varpool_node): new used_from_object_file flag.
4981         (struct cgraph_local_info): new used_from_object_file flag.
4982         * cgraph.c (dump_cgraph_node): dump used_from_object_file flag.
4983         (cgraph_clone_node): initialize used_from_object_file.
4984         (cgraph_create_virtual_clone): initialize used_from_object_file.
4985         * lto-symbtab.c (lto_symtab_merge_decls_1): Set
4986         used_from_object_file flags for symbols of LDPR_PREVAILING_DEF
4987         when compiling with -fwhole-program.
4988         (lto_symtab_resolve_symbols) Use LDPR_PREVAILING_DEF_IRONLY for
4989         internal resolver.
4990         * ipa.c (function_and_variable_visibility): Set externally_visible
4991         flag of varpool_node if used_from_object_file flag is set.
4992         (cgraph_externally_visible_p): check used_from_object_file flag.
4993         * doc/invoke.texi (-fwhole-program option): Change description of
4994         externally_visible attribute accordingly.
4995         * doc/extend.texi (externally_visible): Ditto.
4997 2010-06-27  Jan Hubicka  <jh@suse.cz>
4999         * params.def (max-inline-insns-auto): Default to 40.
5000         * doc/invoke.texi (max-inline-insns-auto): Document the change.
5002 2010-06-27  Jan Hubicka  <jh@suse.cz>
5004         PR middle-end/44671
5005         PR middle-end/44686
5006         * tree.c (build_function_decl_skip_args): Clear DECL_BUILT_IN on
5007         signature change.
5008         * ipa-split.c (split_function): Always clear DECL_BUILT_IN.
5009         * ipa-prop.c (ipa_modify_formal_parameters): Likewise.
5011 2010-06-27  Anatoly Sokolov  <aesok@post.ru>
5013         * target.h (struct gcc_target): Add register_move_cost field.
5014         * target-def.h (TARGET_REGISTER_MOVE_COST): New.
5015         (TARGET_INITIALIZER): Use TARGET_REGISTER_MOVE_COST.
5016         * targhooks.c (default_register_move_cost): New function.
5017         * targhooks.h (default_register_move_cost): Declare function.
5018         * defaults.h (REGISTER_MOVE_COST): Delete.
5019         * ira-int.h (ira_register_move_cost): Update comment.
5020         * ira.c (ira_register_move_cost): Update comment.
5021         * reload.h (register_move_cost): Declare.
5022         * reginfo.c (register_move_cost): New function.
5023         (move_cost): Update comment.
5024         (init_move_cost, memory_move_secondary_cost): Replace
5025         REGISTER_MOVE_COST with register_move_cost.
5026         * postreload.c (reload_cse_simplify_set): (Ditto.).
5027         * reload.c (find_valid_class, find_reloads): (Ditto.).
5028         * reload1.c (choose_reload_regs): (Ditto.).
5029         * doc/tm.texi (TARGET_REGISTER_MOVE_COST): New.
5030         (REGISTER_MOVE_COST, TARGET_MEMORY_MOVE_COST): Update documentation.
5031         * doc/md.texi (can_create_pseudo_p): Update documentation.
5033         * config/i386/i386.h (MEMORY_MOVE_COST): Remove macro.
5034         * config/i386/i386-protos.h (int ix86_memory_move_cost): Remove.
5035         * config/i386/i386.h (ix86_memory_move_cost): Make static.
5036         (TARGET_MEMORY_MOVE_COST): Define.
5038         * config/ia64/ia64.h (MEMORY_MOVE_COST): Remove macro.
5039         * config/ia64/ia64-protos.h (int ia64_memory_move_cost): Remove.
5040         * config/ia64/ia64.h (ia64_memory_move_cost): Make static.
5041         (TARGET_MEMORY_MOVE_COST): Define.
5043 2010-06-27  Richard Guenther  <rguenther@suse.de>
5045         PR tree-optimization/44683
5046         * tree-ssa-dom.c (record_edge_info): Record equivalences for the
5047         false edge from the inverted condition.
5049 2010-06-27  Richard Guenther  <rguenther@suse.de>
5051         PR middle-end/44684
5052         * tree-ssa-alias.c (refs_may_alias_p_1): Allow SSA name refs.
5053         (stmt_may_clobber_ref_p_1): Do not bother to call the oracle
5054         for register LHS.  Or non-store assignments.
5056 2010-06-26  Eric Botcazou  <ebotcazou@adacore.com>
5058         * config/sparc/sparc.c (sparc_emit_set_const32): Make static.
5059         (sparc_emit_set_const64): Likewise.  Remove disabled code.
5060         * config/sparc/sparc-protos.h (sparc_emit_set_const32): Delete.
5061         (sparc_emit_set_const64): Likewise.
5063 2010-06-26  Catherine Moore  <clm@codesourcery.com>
5065         * config/mips/mips.md (alu_type): New attribute.
5066         (type): Infer type from alu_type.
5067         (*add<mode>3, *add<mode>3_mips16, *addsi3_extended,
5068         *baddu_si_eb, *baddu_si_el, *baddu_di, sub<mode>3,
5069         *subsi3_extended, negsi2, negdi2, *low<mode>,
5070         *low<mode>_mips16, *ior<mode>3, *ior<mode>3_mips16,
5071         xor<mode>3, *nor<mode>3,
5072         *zero_extend<GPR:mode>_trunc<SHORT:mode>,
5073         *zero_extendhi_truncqi):  Set alu_type instead of type.
5075 2010-06-26  Douglas B Rupp  <rupp@gnat.com>
5077         * config/alpha/alpha.c (alpha_need_linkage): Adjust
5078         splay_tree_new_ggc call.
5079         (alpha_use_linkage): Likewise.
5081 2010-06-26  Joseph Myers  <joseph@codesourcery.com>
5083         * collect2.c (main): Remove SWITCHES_NEED_SPACES conditional.
5084         * doc/tm.texi (SWITCHES_NEED_SPACES): Don't document.
5085         * gcc.c (SWITCHES_NEED_SPACES, switches_need_spaces): Remove.
5086         (static_specs): Remove switches_need_spaces.
5087         (process_command, do_self_spec): Hardcode handling "-o" instead of
5088         checking switches_need_spaces.
5089         * system.h (SWITCHES_NEED_SPACES): Poison.
5091 2010-06-26  Richard Guenther  <rguenther@suse.de>
5093         PR tree-optimization/44393
5094         * tree-loop-distribution.c (generate_loops_for_partition): Fix
5095         stmt removal and VOP renaming.
5096         (generate_memset_zero): Remove redundant stmt updating.
5097         * tree-flow.h (mark_virtual_ops_in_bb): Remove.
5098         * tree-cfg.c (mark_virtual_ops_in_bb): Likewise.
5100 2010-06-26  Jan Hubicka  <jh@suse.cz>
5102         * ipa-split.c (consider_split): PHI in entry block is OK as long as all
5103         edges comming from header are equivalent.
5104         (visit_bb): Handle PHIs correctly.
5105         * tree-inline.c (copy_phis_for_bb): Be able to copy
5106         PHI from entry edge.
5107         (copy_cfg_body): Produce edge from entry BB before copying PHIs.
5109 2010-06-26  Richard Guenther  <rguenther@suse.de>
5111         PR middle-end/44674
5112         * tree-ssa-alias.c (refs_may_alias_p_1): Allow all kind of
5113         decls.  Handle LABEL_DECLs like FUNCTION_DECLs.
5115 2010-06-26  Joseph Myers  <joseph@codesourcery.com>
5117         * gcc.c (n_switches_alloc, n_infiles_alloc, alloc_infile,
5118         add_infile, alloc_switch): New.
5119         (process_command): Remove variable lang_n_infiles.  Process
5120         options in a single pass.  Use new functions for allocating
5121         infiles and switches arrays.  Properly skip operands of
5122         -Xpreprocessor and -Xassembler.
5124 2010-06-26  Jan Hubicka  <jh@suse.cz>
5126         PR middle-end/44671
5127         * cgraphunit.c (cgraph_function_versioning): Remove wrong
5128         cgraph_make_decl_local call; fix typo copying RTL data.
5130 2010-06-25  DJ Delorie  <dj@redhat.com>
5132         * config/m32c/m32c-protos.h (m32c_note_pragma_address): Declare.
5133         (m32c_output_aligned_common): Likewise.
5134         * config/m32c/m32c.h (ASM_OUTPUT_ALIGNED_DECL_COMMON): New.
5135         (ASM_OUTPUT_ALIGNED_DECL_LOCAL): New.
5136         * config/m32c/m32c-pragma.c (m32c_pragma_address): New.
5137         (m32c_register_pragmas): Register it.
5138         * config/m32c/m32c.c (m32c_get_pragma_address): New.
5139         (m32c_insert_attributes): Set #pragma address decls volatile.
5140         (pragma_entry_eq): New.
5141         (pragma_entry_hash): New.
5142         (m32c_note_pragma_address): New.
5143         (m32c_get_pragma_address): New.
5144         (m32c_output_aligned_common): New.
5145         * doc/extend.texi: Document the new pragma.
5147         * config/m32c/m32c.c (m32c_illegal_subreg_p): Reject illegal MEMs
5148         also.
5149         * config/m32c/predicates.md (m32c_any_operand): Check the code
5150         instead of memory_operand so as to allow matching volatile MEMs.
5151         (m32c_nonimmediate_operand): Likewise.
5152         (mra_operand): Allow volatiles.
5154 2010-06-25  Alexandre Oliva  <aoliva@redhat.com>
5156         PR debug/44610
5157         * simplify-rtx.c (delegitimize_mem_from_attrs): Don't use a base
5158         address if the offset is unknown.
5160 2010-06-25  Douglas B Rupp  <rupp@gnat.com>
5162         * dwarf2out.c (dwarf2out_vms_debug_main_pointer): New function.
5163         * dwarf2out.h (dwarf2out_vms_debug_main_pointer): Declare new function.
5164         * config/ia64/ia64-protos.h (ia64_start_function): Declare.
5165         * config/ia64/sysv4.h (ASM_DECLARE_FUNCTION_NAME): Move contents
5166         to ia64_start_function. Invoke it.
5167         * config/ia64/ia64.c (ia64_start_function): Call new function
5168         dwarf2out_vms_debug_main_pointer.
5170 2010-06-25  Sebastian Pop  <sebastian.pop@amd.com>
5172         * tree-if-conv.c (insert_gimplified_predicates): Do not insert
5173         statements computing the true predicate.
5175 2010-06-25  Sebastian Pop  <sebastian.pop@amd.com>
5177         * tree-if-conv.c (init_bb_predicate): Initialize the predicate
5178         to boolean_true_node.
5179         (reset_bb_predicate): New.
5180         (predicate_bbs): Call reset_bb_predicate.
5182 2010-06-25  Sebastian Pop  <sebastian.pop@amd.com>
5184         * tree-if-conv.c (combine_blocks): Remove FIXME comment.
5185         (tree_if_conversion): Returns true when something has been changed.
5186         (main_tree_if_conversion): Return TODO_cleanup_cfg when if-conversion
5187         changed something.
5189 2010-06-25  Sebastian Pop  <sebastian.pop@amd.com>
5191         * Makefile.in (tree-if-conv.o): Depends on DBGCNT_H.
5192         * dbgcnt.def (if_conversion_tree): New DEBUG_COUNTER.
5193         * tree-if-conv.c: Include dbgcnt.h.
5194         (tree_if_conversion): Use if_conversion_tree to count the number of
5195         if-convertible loops.
5197 2010-06-25  Changpeng Fang  <changpeng.fang@amd.com>
5199         * common.opt (fprefetch-loop-arrays): Re-define
5200         -fprefetch-loop-arrays as a tri-state option with the initial
5201         value of -1.
5202         * tree-ssa-loop.c (gate_tree_ssa_loop_prefetch): Invoke prefetch
5203         pass only when flag_prefetch_loop_arrays > 0.
5204         * toplev.c (process_options): Note that, with tri-states,
5205         flag_prefetch_loop_arrays>0 means prefetching is enabled.
5206         * config/i386/i386.c (override_options): Enable prefetching at -O3
5207         for a set of CPUs that sw prefetching is helpful.
5208         (software_prefetching_beneficial_p): New.  Return TRUE if software
5209         prefetching is beneficial for the given CPU.
5211 2010-06-25  H.J. Lu  <hongjiu.lu@intel.com>
5213         PR rtl-optimization/44326
5214         * implicit-zee.c (find_removable_zero_extends): Replace
5215         INSN_P with NONDEBUG_INSN_P.
5217 2010-06-25  Martin Jambor  <mjambor@suse.cz>
5219         * ipa-prop.h (struct ipa_param_descriptor): Removed the modified flag.
5220         (struct ipa_node_params): Removed the modification_analysis_done flag.
5221         (ipa_is_param_modified): Removed.
5222         (ipa_analyze_node): Declare.
5223         (ipa_compute_jump_functions): Remove declaration.
5224         (ipa_count_arguments): Likewise.
5225         (ipa_detect_param_modifications): Likewise.
5226         (ipa_analyze_params_uses): Likewise.
5227         * ipa-prop.c (struct param_analysis_info): New type.
5228         (visit_store_addr_for_mod_analysis): Removed.
5229         (visit_load_for_mod_analysis): Renamed to visit_ref_for_mod_analysis,
5230         moved down in the file.
5231         (ipa_detect_param_modifications): Merged into ipa_analyze_params_uses.
5232         (ipa_count_arguments): Made static.
5233         (mark_modified): New function.
5234         (is_parm_modified_before_call): New function.
5235         (compute_pass_through_member_ptrs): New parameter parms_info, call
5236         is_parm_modified_before_call instead of ipa_is_param_modified.
5237         (ipa_compute_jump_functions_for_edge): New parameter parms_info, pass
5238         it to compute_pass_through_member_ptrs.
5239         (ipa_compute_jump_functions): New parameter parms_info, pass it to
5240         ipa_compute_jump_functions_for_edge.  Call ipa_initialize_node_params
5241         on the callee if it is analyzed.  Made static.
5242         (ipa_analyze_indirect_call_uses): New parameter parms_info, call
5243         is_parm_modified_before_call instead of ipa_is_param_modified.
5244         (ipa_analyze_call_uses): New parameter parms_info, pass it to
5245         ipa_analyze_indirect_call_uses.
5246         (ipa_analyze_stmt_uses): New parameter parms_info, pass it to
5247         ipa_analyze_call_uses.
5248         (ipa_analyze_params_uses): New parameter parms_info, pass it to
5249         ipa_analyze_stmt_uses.  Also perform the used analysis.  Made static.
5250         (ipa_analyze_node): New function.
5251         (ipa_print_node_params): Do not dump the modified flag.
5252         (ipa_write_node_info): Assert uses_analysis_done rather than streaming
5253         it.  Do not stream the modified parameter flag.
5254         (ipa_read_node_info): Set uses_analysis_done to 1 instead of streaming
5255         it.  Do not stream the modified parameter flag.
5256         * ipa-cp.c (ipcp_analyze_node): Removed.
5257         (ipcp_init_stage): Iterate only once over the nodes, analyze each one
5258         with only a call to ipa_analyze_node.
5259         * ipa-inline.c (inline_indirect_intraprocedural_analysis): Analyze the
5260         node with only a call to ipa_analyze_node.
5262 2010-06-25  Manuel López-Ibáñez  <manu@gcc.gnu.org>
5264         * doc/invoke.texi (-Wsuggest-attribute): Add item for noreturn.
5266 2010-06-25  Jan Hubicka  <jh@suse.cz>
5268         * tree-pass.h (pass_split_functions): Declare.
5269         * opts.c (decode_options): Enable function splitting at -O2
5270         * timevar.def (TV_IPA_FNSPLIT): New macro.
5271         * ipa-split.c: New file.
5272         * common.opt (-fpartial-inlining): New flag.
5273         * Makefile.in (ipa-split.o): New object file.
5274         * passes.c (init_optimization_passes): Add ipa-split.
5275         * params.def (partial-inlining-entry-probability): New parameters.
5276         * doc/invoke.texi (-fpartial-inlining): New.
5278 2010-06-25  Manuel López-Ibáñez  <manu@gcc.gnu.org>
5280         PR 44665
5281         * tree-inline.c (gimple_expand_calls_inline): Fix typo in comment.
5282         * gimplify.c (is_gimple_reg_rhs_or_call): Likewise.
5283         (gimplify_expr): Likewise.
5285 2010-06-25  Martin Jambor  <mjambor@suse.cz>
5287         * ipa-prop.c (determine_cst_member_ptr): Ignore non-clobbering
5288         statements instead of bailing out on them.
5289         (ipa_analyze_indirect_call_uses): Do not require that loads from the
5290         parameter are in the same BB as the condition.  Update comments.
5292 2010-06-25  Jakub Jelinek  <jakub@redhat.com>
5294         PR middle-end/43866
5295         * tree-ssa-loop-unswitch.c (tree_may_unswitch_on): If stmt is always
5296         true or always false, return NULL_TREE.
5297         (tree_unswitch_single_loop): Optimize conditions even when reaching
5298         max-unswitch-level parameter.  If num > 0, optimize first all conditions
5299         using entry checks, then do still reachable block discovery and consider
5300         only conditions in still reachable basic blocks in the loop.
5302         PR tree-optimization/44539
5303         * tree-cfgcleanup.c (fixup_noreturn_call): Call update_stmt even when
5304         the call doesn't have LHS, but has VDEF.
5306 2010-06-25  Joseph Myers  <joseph@codesourcery.com>
5308         * config/pa/pa.h (MODIFY_TARGET_NAME): Remove.
5309         * doc/tm.texi (MODIFY_TARGET_NAME): Don't document.
5310         * gcc.c (enum add_del, struct modify_target, modify_target): Remove.
5311         (process_command): Remove code conditional on MODIFY_TARGET_NAME.
5312         * system.h (MODIFY_TARGET_NAME): Poison.
5314 2010-06-25  Alan Modra  <amodra@gmail.com>
5316         * doc/invoke.texi: Delete mcmodel=medium from powerpc options.
5317         * config/rs6000/rs6000.h (enum rs6000_cmodel): Delete CMODEL_MEDIUM.
5318         * config/rs6000/linux64.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Set
5319         CMODEL_LARGE as default.
5320         * config/rs6000/rs6000.c (rs6000_handle_option): Remove mcmodel=medium.
5321         (offsettable_ok_by_alignment): Delete.
5322         (rs6000_emit_move): Remove mcmodel=medium optimization.
5324 2010-06-25  Bernd Schmidt  <bernds@codesourcery.com>
5326         With large parts from Jim Wilson:
5327         PR target/43902
5328         * tree-pretty-print.c (dump_generic_node, op_code_prio): Add
5329         WIDEN_MULT_PLUS_EXPR and WIDEN_MULT_MINUS_EXPR.
5330         * optabs.c (optab_for_tree_code): Likewise.
5331         (expand_widen_pattern_expr): Likewise.
5332         * tree-ssa-math-opts.c (convert_mult_to_widen): New function, broken
5333         out of execute_optimize_widening_mul.
5334         (convert_plusminus_to_widen): New function.
5335         (execute_optimize_widening_mul): Use the two new functions.
5336         * expr.c (expand_expr_real_2): Add support for GIMPLE_TERNARY_RHS.
5337         Remove code to generate widening multiply-accumulate.  Add support
5338         for WIDEN_MULT_PLUS_EXPR and WIDEN_MULT_MINUS_EXPR.
5339         * gimple-pretty-print.c (dump_ternary_rhs): New function.
5340         (dump_gimple_assign): Call it when appropriate.
5341         * tree.def (WIDEN_MULT_PLUS_EXPR, WIDEN_MULT_MINUS_EXPR): New codes.
5342         * cfgexpand.c (gimple_assign_rhs_to_tree): Likewise.
5343         (expand_gimple_stmt_1): Likewise.
5344         (expand_debug_expr): Support WIDEN_MULT_PLUS_EXPR and
5345         WIDEN_MULT_MINUS_EXPR.
5346         * tree-ssa-operands.c (get_expr_operands): Likewise.
5347         * tree-inline.c (estimate_operator_cost): Likewise.
5348         * gimple.c (extract_ops_from_tree_1): Renamed from
5349         extract_ops_from_tree.  Add new arg for a third operand; fill it.
5350         (gimple_build_assign_stat): Support operations with three operands.
5351         (gimple_build_assign_with_ops_stat): Likewise.
5352         (gimple_assign_set_rhs_from_tree): Likewise.
5353         (gimple_assign_set_rhs_with_ops_1): Renamed from
5354         gimple_assign_set_rhs_with_ops.  Add new arg for a third operand.
5355         (get_gimple_rhs_num_ops): Support GIMPLE_TERNARY_RHS.
5356         (get_gimple_rhs_num_ops): Handle WIDEN_MULT_PLUS_EXPR and
5357         WIDEN_MULT_MINUS_EXPR.
5358         * gimple.h (enum gimple_rhs_class): Add GIMPLE_TERNARY_RHS.
5359         (extract_ops_from_tree_1): Adjust declaration.
5360         (gimple_assign_set_rhs_with_ops_1): Likewise.
5361         (gimple_build_assign_with_ops): Pass NULL for last operand.
5362         (gimple_build_assign_with_ops3): New macro.
5363         (gimple_assign_rhs3, gimple_assign_rhs3_ptr, gimple_assign_set_rhs3,
5364         gimple_assign_set_rhs_with_ops, extract_ops_from_tree): New inline
5365         functions.
5366         * tree-cfg.c (verify_gimple_assign_ternary): New static function.
5367         (verify_gimple_assign): Call it.
5368         * doc/gimple.texi (Manipulating operands): Document GIMPLE_TERNARY_RHS.
5369         (Tuple specific accessors, subsection GIMPLE_ASSIGN): Document new
5370         functions for dealing with three-operand statements.
5371         * tree.c (commutative_ternary_tree_code): New function.
5372         * tree.h (commutative_ternary_tree_code): Declare it.
5373         * tree-vrp.c (gimple_assign_nonnegative_warnv_p): Return false for
5374         ternary statements.
5375         (gimple_assign_nonzero_warnv_p): Likewise.
5376         * tree-ssa-sccvn.c (stmt_has_constants): Handle GIMPLE_TERNARY_RHS.
5377         * tree-ssa-ccp.c (get_rhs_assign_op_for_ccp): New static function.
5378         (ccp_fold): Use it.  Handle GIMPLE_TERNARY_RHS.
5379         * tree-ssa-dom.c (enum expr_kind): Add EXPR_TERNARY.
5380         (struct hashtable_expr): New member ternary in the union.
5381         (initialize_hash_element): Handle GIMPLE_TERNARY_RHS.
5382         (hashable_expr_equal_p): Fix indentation.  Handle EXPR_TERNARY.
5383         (iterative_hash_hashable_expr): Likewise.
5384         (print_expr_hash_elt): Handle EXPR_TERNARY.
5385         * gimple-fold.c (fold_gimple_assign): Handle GIMPLE_TERNARY_RHS.
5386         * tree-ssa-threadedge.c (fold_assignment_stmt): Remove useless break
5387         statements.  Handle GIMPLE_TERNARY_RHS.
5389 2010-06-25  Jan Hubicka  <jh@suse.cz>
5391         * doc/invoke.texi (-Wsuggest-attribute): Add noreturn.
5393 2010-06-25  Shujing Zhao  <pearly.zhao@oracle.com>
5395         PR c/44517
5396         * c-parser.c (c_parser_parms_list_declarator): Return NULL if one of
5397         parameters are not good.
5398         (c_parser_parameter_declaration): Error unknown type name if the type
5399         name can't start declaration specifiers.
5401 2010-06-25  Joseph Myers  <joseph@codesourcery.com>
5403         * gcc.c (translate_options): Don't mention +e in comment.
5404         (process_command): Don't handle +e specially.
5406 2010-06-25  Bernd Schmidt  <bernds@codesourcery.com>
5408         * ira.c (allocno_pool, copy_pool, allocno_live_range_pool): Delete.
5410         * ira-build.c (merge_hard_reg_conflicts): New function.
5411         (create_cap_allocno, copy_info_to_removed_store_destinations,
5412         propagate_some_info_from_allocno, propagate_allocno_info): Use it.
5413         (move_allocno_live_ranges, copy_allocno_live_ranges): New functions.
5414         (remove_unnecessary_allocnos, remove_low_level_allocnos)
5415         copy_nifo_to_removed_store_destination): Use them.
5416         * ira-lives.c (make_hard_regno_born): New function, split out of
5417         make_regno_born.
5418         (make_allocno_born): Likewise.
5419         (make_hard_regno_dead): New function, split out of make_regno_dead.
5420         (make_allocno_dead): Likewise.
5421         (inc_register_pressure): New function, split out of set_allocno_live.
5422         (dec_register_pressure): New function, split out of clear_allocno_live.
5423         (mark_pseudo_regno_live): New function, split out of mark_reg_live.
5424         (mark_hard_reg_live): Likewise.  Use inc_register_pressure.
5425         (mark_pseudo_regno_dead): New function, split out of mark_reg_dead.
5426         (mark_hard_reg_dead): Likewise.  Use dec_register_pressure.
5427         (make_pseudo_conflict): Use mark_pseudo_regno_dead and
5428         mark_pseudo_regno_live.
5429         (process_bb_node_lives): Use mark_pseudo_regno_live,
5430         make_hard_regno_born and make_allocno_dead.
5431         (make_regno_born, make_regno_dead, mark_reg_live, mark_reg_dead,
5432         set_allocno_live, clear_allocno_live): Delete functions.
5434         * ira-int.h (ira_parent_allocno, ira_parent_or_cap_allocno): Declare.
5435         * ira-build.c (ira_parent_allocno, ira_parent_or_cap_allocno): New
5436         functions.
5437         (ira_flattening): Use ira_parent_allocno.
5438         * ira-conflicts.c (process_regs_for_copy, propagate_copies)
5439         build_allocno_conflicts): Use ira_parent_or_cap_allocno.
5441         * ira-color.c (assign_hard_reg): Improve formatting of multi-line for
5442         statement.
5444         * ira-int.h (SET_MINMAX_SET_BIT, CLEAR_MINMAX_SET_BIT,
5445         TEST_MINMAX_SET_BIT, minmax_set_iterator, minmax_set_iter_init,
5446         minmax_set_iter_cond, minmax_set_iter_next,
5447         FOR_EACH_BIT_IN_MINMAX_SET): Renamed from SET_ALLOCNO_SET_BIT,
5448         CLEAR_ALLOCNO_SET_BIT, TEST_ALLOCNO_SET_BIT, ira_allocno_set_iterator,
5449         ira_allocno_set_iter_init, ira_allocno_set_iter_cond,
5450         ira_allocno_set_iter_Next and FOR_EACH_ALLOCNO_IN_ALLOCNO_SET.  All
5451         uses changed.
5453         * ira-int.h (struct live_range, live_range_t): Renamed from struct
5454         ira_allocno_live_range and allocno_live_range_t; all uses changed.
5455         * ira-build.c (live_range_pool): Renamed from allocno_live_range_pool.
5456         All uses changed.
5458 2010-06-24  Richard Earnshaw  <rearnsha@arm.com>
5460         * thumb2.md (thumb2_tlobits_cbranch): Delete.
5461         (peephole2 to convert zero_extract/compare of single bit to
5462          lshift/compare): New.
5464 2010-06-24  Anatoly Sokolov  <aesok@post.ru>
5466         * fold-const.c (const_binop): Remove 'notrunc' argement. Adjust
5467         recursive call and call to 'int_const_binop'.
5468         (build_range_check, fold_cond_expr_with_comparison, unextend,
5469         fold_truthop, extract_muldiv_1, fold_comparison, fold_binary_loc,
5470         multiple_of_p): Adjust call to const_binop.
5472 2010-06-24  Uros Bizjak  <ubizjak@gmail.com>
5474         * config/i386/i386.md (XFmode push splitter): Use GET_MODE_SIZE to
5475         determine size of XFmode operand.
5476         (XFmode extended DFmode push splitter): Ditto.
5477         (XFmode extended SFmode push splitter): Ditto.
5479 2010-06-24  H.J. Lu  <hongjiu.lu@intel.com>
5481         PR target/44588
5482         * config/i386/i386.md (extract_code): New.
5483         (<u>divmodqi4): Likewise.
5484         (divmodhiqi3): Likewise.
5485         (udivmodhiqi3): Likewise.
5486         (<u>divqi3): Remvoved.
5488 2010-06-24  Jakub Jelinek  <jakub@redhat.com>
5490         PR middle-end/44492
5491         * recog.h (struct recog_data): Add is_asm field.
5492         * recog.c (asm_operand_ok, constrain_operands): If neither < nor > is
5493         present in constraints of inline-asm operand and memory operand
5494         contains {PRE,POST}_{INC,DEC,MODIFY}, return 0.
5495         (extract_insn): Initialize recog_data.is_asm.
5496         * doc/md.texi (Constraints): Document operand side-effect rules.
5498 2010-06-24  Andi Kleen  <ak@linux.intel.com>
5500         * c-parser.c (c_parser_conditional_expression): Call
5501         warn_for_omitted_condop.
5502         * doc/invoke.texi: Document omitted condop warning.
5504 2010-06-24  Nick Clifton<nickc@redhat.com>
5506         * loop-unswitch.c (compare_and_jump_seq): Assert that the last
5507         insn in the sequence is a jump insn before setting its label.
5509 2010-06-24  Alan Modra  <amodra@gmail.com>
5511         * collect2.c (main): Match exactly --version and --help.
5513 2010-06-24  DJ Delorie  <dj@redhat.com>
5515         * config/m32c/m32c-pragma.c: Don't include rtl.h.
5517 2010-06-23  Uros Bizjak  <ubizjak@gmail.com>
5519         * config/i386/i386.md (mov<mode>): Macroize expander from mov{sf,df,xf}
5520         using X87MODEF mode iterator.
5521         (pushsf splitter): Macroize splitter using P mode iterator.
5522         (*swap<mode>): Macroize insn from *swap{sf,df} using MODEF
5523         mode iterator.
5525         (*movxf_internal): Rename from *movxf_integer.
5526         (*movxf_internal_nointeger): Rename from *movxf_nointeger.
5527         (*movdf_internal_rex64): Rename from *movdf_integer_rex64.
5528         (*movdf_internal): Rename from *movdf_integer.
5529         (*movdf_internal_nointeger): Rename from *movdf_nointeger.
5530         (*movsf_internal): Rename from *movdf_1.
5532 2010-06-23  Basile Starynkevitch  <basile@starynkevitch.net>
5534         * coretypes.h (gimple_seq_node_d, gimple_seq_node)
5535         (const_gimple_seq_node): Removed typedefs.
5537         * gimple.h (gimple_seq_node_d, gimple_seq_node)
5538         (const_gimple_seq_node): Added typedefs moved from coretypes.h.
5540 2010-06-23  H.J. Lu  <hongjiu.lu@intel.com>
5542         * config/i386/i386.c (bdesc_args): Replace CODE_FOR_avx_si_si256,
5543         CODE_FOR_avx_ps_ps256 and CODE_FOR_avx_pd_pd256 with
5544         CODE_FOR_vec_extract_lo_v8si, CODE_FOR_vec_extract_lo_v8sf
5545         and CODE_FOR_vec_extract_lo_v4df.
5547         * config/i386/sse.md (vec_extract_lo_<AVX256MODE4P:mode>):
5548         Changed to define_insn_and_split.
5549         (vec_extract_lo_<AVX256MODE8P:mode>): Likewise.
5550         (vec_extract_lo_v16hi): Likewise.
5551         (vec_extract_lo_v32qi): Likewise.
5552         (avx_<avxmodesuffixp><avxmodesuffix>_<avxmodesuffixp>): Likewise.
5553         (avx_<avxmodesuffixp>_<avxmodesuffixp><avxmodesuffix>): Removed.
5555 2010-06-23  Joern Rennecke  <joern.rennecke@embecosm.com>
5557         PR target/44640
5558         * config/spu/spu-protos.h (spu_expand_epilogue) Use bool.
5559         * config/spu/spu.c (spu_scalar_mode_supported_p): Declare with bool.
5560         (spu_vector_mode_supported_p, spu_handle_fndecl_attribute): Likewise.
5561         (spu_handle_vector_attribute, spu_pass_by_reference): Likewise.
5562         (spu_rtx_costs, spu_function_ok_for_sibcall): Likewise.
5564         PR target/44640
5565         * config/spu/spu.c (ea_load_store_inline): Use add_reg_note.
5567         PR other/44644
5568         * df-core.c (struct df): Rename to df_d.
5569         * df.h (struct df): Likewise.
5570         * dse.h (struct df): Remove forward declaration.
5571         * recog.h (struct insn_data): Rename to:
5572         (struct_insn_data_d).  Adjusted all users.
5574 2010-06-23  Arnaud Charlet  <charlet@adacore.com
5576         PR ada/22220
5577         * doc/install.texi: Update requirements to build GNAT.
5579 2010-06-22  Andreas Schwab  <schwab@linux-m68k.org>
5581         * config/m68k/m68k.c (m68k_output_addr_const_extra): Add cast to
5582         enum type.
5583         (m68k_sched_attr_opx_type): Remove unreachable return.
5584         (m68k_sched_attr_opy_type): Likewise.
5585         (m68k_sched_attr_size): Likewise.
5586         (sched_get_opxy_mem_type): Likewise.
5587         (m68k_sched_attr_op_mem): Likewise.
5589 2010-06-22  Eric Botcazou  <ebotcazou@adacore.com>
5591         * cgraphunit.c (cgraph_redirect_edge_call_stmt_to_callee): Chain the
5592         new statement and adjust VDEF only if necessary.  Remove superfluous
5593         call to maybe_clean_or_replace_eh_stmt.
5594         * gimple.c (gimple_call_copy_skip_args): Use gimple_call_copy_flags to
5595         copy the flags.
5596         * gimple-iterator.c (gsi_replace): Clear BB of old statement here...
5597         * tree-inline.c (copy_bb): ...and not there.
5599 2010-06-22  Cary Coutant  <ccoutant@google.com>
5601         * dwarf2out.c (is_nested_in_subprogram): New function.
5602         (should_move_die_to_comdat): Use it.
5603         (copy_ancestor_tree): Don't mark DIEs here.
5604         (copy_decls_walk): Start walk from root of newly-added tree;
5605         mark DIEs here instead.
5607 2010-06-22  H.J. Lu  <hongjiu.lu@intel.com>
5609         * config/i386/i386.md (unit): Also check sseishft1.
5611 2010-06-22  Jan Hubicka  <jh@suse.cz>
5613         * gimple.h (gimple_expr_code): Do checking on when gimple checking is
5614         enabled.
5616 2010-06-22  Jan Hubicka  <jh@suse.cz>
5618         * df-problems.c (df_rd_confluence_n, df_lr_confluence_n,
5619         df_live_confluence_n, df_byte_lr_confluence_n, df_md_confluence_n):
5620         Return true if something changed.
5621         * df.h (df_confluence_function_n): Return bool.
5622         * df-core.c (df_worklist_propagate_forward,
5623         df_worklist_propagate_backward): Track changes and ages.
5624         (df_worklist_dataflow_doublequeue): Use bitmap iterator for main walk;
5625         track ages.
5626         * dse.c (dse_confluence_n): Return always true.
5628 2010-06-22  Jan Hubicka  <jh@suse.cz>
5630         * bitmap.c (bitmap_clear_bit): Micro optimize.
5632 2010-06-22  Uros Bizjak  <ubizjak@gmail.com>
5634         * config/i386/i386.md (SWI1248x): New mode iterator.
5635         (SWI48x): Ditto.
5636         (SWI12): Ditto.
5637         (SWI24): Ditto.
5639         (mov<mode>): Macroize expander from mov{qi,hi,si,di} using
5640         SWI1248x mode iterator.
5641         (*push<mode>2_rex64): Macroize insn from *push{qi,hi,si}_rex64
5642         using SWI124 mode iterator.
5643         (*push<mode>2): Macroize insn from *push{qi,hi} using SWI12
5644         mode iterator.
5645         (*push<mode>2_prologue): Macroize insn from  *pushsi2_prologue and
5646         *pushdi2_prologue_rex64 using P mode iterator.
5647         (*mov<mode>_xor): Macroize insn from *movsi_xor and *movdi_xor_rex64
5648         using SWI48 mode iterator.
5649         (*mov<mode>_or): Ditto from *movsi_or and *movdi_or_rex64.
5650         (*movabs<mode>_1): Macroize insn from *movabs{qi,hi,si,di}_1_rex64
5651         using SWI1248x mode iterator.
5652         (*movabs<mode>_2): Ditto from *movabs{qi,hi,si,di}_1_rex64.
5653         (*swap<mode>): Macroize insn from *swapsi and *swapdi_rex64 using
5654         SWI48 mode iterator.
5655         (*swap<mode>_1): Macroize insn from *swap{qi,hi}_1 using SWI12 mode
5656         iterator.
5657         (*swap<mode>_2): Ditto from *swap{qi,hi}_2.
5658         (movstrict<mode>): Macroize expander from movstrict{qi,hi} using
5659         SWI12 mode iterator.
5660         (*movstrict<mode>_1): Macroize insn from *movstrict{qi,hi}_1 using
5661         SWI12 mode iterator.
5662         (*movstrict<mode>_xor): Ditto from *movstrict{qi,hi}_xor.
5663         (*mov<mode>_extv_1): Macroize insn from *mov{hi,si}_extv_1 using
5664         SWI24 mode iterator.
5665         (*mov<mode>_extzv_1): Macroize insn from *mov{si,di}_extzv_1 using
5666         SWI48 mode iterator.
5667         (mov<mode>_insn_1): New expander.
5668         (*mov<mode>_insv_1_rex64): Macroize insn from *mov{si,di}_insv_1_rex64
5669         using SWI48x mode iterator.
5671         (*movoi_internal_avx): Rename from *movoi_internal.
5672         (*movti_internal_rex64): Rename from *movti_rex64.
5673         (*movti_internal_sse): Rename from *movti_sse.
5674         (*movdi_internal_rex64): Rename from *movdi_1_rex64.
5675         (*movdi_internal): Rename from *movdi_2.
5676         (*movsi_internal): Rename from *movsi_1.
5677         (*movhi_internal): Rename from *movhi_1.
5678         (*movqi_internal): Rename from *movqi_1.
5680         (insv): Update the call to gen_movsi_insv_1 for rename.
5681         * config/i386/i386.c (promote_duplicated_reg): Ditto.
5683 2010-06-22  Jan Hubicka  <jh@suse.cz>
5685         * passes.c (execute_function_todo): Move call of statistics_fini_pass
5686         to ...
5687         (execute_todo) ... this one.
5689 2010-06-22  Alan Modra  <amodra@gmail.com>
5691         PR target/44364
5692         * config/rs6000/e500.h (HARD_REGNO_CALLER_SAVE_MODE): Define.
5693         * caller-save.c (insert_restore, insert_save): Use non-validate
5694         form of adjust_address.
5696 2010-06-21  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5698         PR target/39690
5699         * config/pa/pa.c (override_options): Disable
5700         -freorder-blocks-and-partition.
5702 2010-06-21  H.J. Lu  <hongjiu.lu@intel.com>
5704         PR target/44615
5705         * config/i386/atom.md (atom_sseishft_2): Also check sseishft1.
5707         * config/i386/i386.md (type): Add sseishft1
5709         * config/i386/ppro_insn (ppro_insn): Also check sseishft1.
5710         (ppro_insn_load): Likewise.
5711         (ppro_insn_store): Likewise.
5712         (ppro_insn_both): Likewise.
5714         * config/i386/sse.md (sse2_lshrv1ti3): Add atom_unit.
5715         (*vec_extractv2di_1_rex64_avx): Replace sseishft with sseishft1
5716         for type.
5717         (*vec_extractv2di_1_avx): Likewise.
5718         (*vec_extractv2di_1_rex64): Replace sseishft with sseishft1 for
5719         type.  Remove atom_unit.
5720         (*vec_extractv2di_1_sse2): Likewise.
5722 2010-06-21  DJ Delorie  <dj@redhat.com>
5724         * diagnostic.h (diagnostic_classification_change_t): New.
5725         (diagnostic_context): Add history and push/pop list.
5726         (diagnostic_push_diagnostics): Declare.
5727         (diagnostic_pop_diagnostics): Declare.
5728         * diagnostic.c (diagnostic_classify_diagnostic): Store changes
5729         from pragmas in a history chain instead of the global table.
5730         (diagnostic_push_diagnostics): New.
5731         (diagnostic_pop_diagnostics): New.
5732         (diagnostic_report_diagnostic): Scan history chain to find state
5733         of diagnostics as of the diagnostic location.
5734         * opts.c (set_option): Pass UNKNOWN_LOCATION to
5735         diagnostic_classify_diagnostic.
5736         (enable_warning_as_error): Likewise.
5737         * diagnostic-core.h (DK_POP): Add after "real" diagnostics, for
5738         use in the history chain.
5739         * doc/extend.texi: Document pragma GCC diagnostic changes.
5741 2010-06-21  Jakub Jelinek  <jakub@redhat.com>
5743         * dwarf2out.c (add_linkage_name): New function.  Don't add
5744         anything to DW_TAG_member DIEs.
5745         (add_name_and_src_coords_attributes): Use it.
5746         (gen_variable_die): Call it for C++ static data members if
5747         specification is DW_TAG_member.
5749         * dwarf2out.c (base_type_die): Use DW_ATE_UTF for
5750         C++ char16_t and char32_t.
5752         * Makefile.in (build/genattrtab.o): Depend on vecprim.h.
5753         * genattrtab.c: Include vecprim.h.
5754         (cached_attrs, cached_attr_count, attrs_seen_once,
5755         attrs_seen_more_than_once, attrs_to_cache, attrs_cached_inside,
5756         attrs_cached_after): New variables.
5757         (find_attrs_to_cache): New function.
5758         (FLG_BITWISE, FLG_AFTER, FLG_INSIDE, FLG_OUTSIDE_AND): Define.
5759         (write_test_expr): Add attrs_cached argument, return it too,
5760         attempt to cache non-const attributes used more than once in
5761         a single case handling.
5762         (write_attr_get): Use find_attrs_to_cache, for caching candidates
5763         emit cached_* variables.  Adjust write_attr_set callers.
5764         (write_attr_set): Add attrs_cached attribute, use find_attrs_to_cache
5765         to find attributes that should be cached in this block.  Adjust
5766         write_test_expr callers.
5767         (write_attr_case): Clear attrs_to_cache.  Adjust write_attr_set
5768         callers.
5769         (make_automaton_attrs): Adjust write_test_expr caller.
5771         * Makefile.in (cfgexpand.o): Depend on $(INSN_ATTR_H).
5772         * genattrtab.c (check_tune_attr, find_tune_attr): New functions.
5773         (make_automaton_attrs): If find_tune_attr returns non-NULL,
5774         write separate internal_dfa_insn_code_* and insn_default_latency_*
5775         functions for each attribute's value and emit init_sched_attrs
5776         function and function pointers.
5777         * genattr.c (const_attrs, reservations): New variables.
5778         (gen_attr): Add const attributes to const_attrs vector.
5779         (check_tune_attr, find_tune_attr): New functions.
5780         (main): Add reservations to reservations vector.  If find_tune_attr
5781         returns true, add prototype for init_sched_attrs and make
5782         internal_dfa_insn_code and insn_default_latency function pointers,
5783         otherwise define init_sched_attrs as dummy macro.
5784         * cfgexpand.c: Include insn-attr.h.
5785         (gimple_expand_cfg): Call init_sched_attrs.
5787         * stmt.c (resolve_asm_operand_names): Fix handling of %%.
5789         PR target/44575
5790         * config/i386/i386.c (ix86_gimplify_va_arg): When copying
5791         va_arg from a set of register save slots into a temporary,
5792         if the container is bigger than type size, do the copying
5793         using smaller mode or using memcpy.
5795         PR bootstrap/44426
5796         * sel-sched-dump.h (sel_prepare_string_for_dot_label): Remove
5797         prototype.
5798         (sel_print_to_dot): Remove macro.
5799         (sel_print): Likewise.  New prototype.
5800         * sel-sched-dump.c (sel_prepare_string_for_dot_label): Make static.
5801         (sel_print): New function.
5803 2010-06-21  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
5805         * config/sol2.h (TARGET_OS_CPP_BUILTINS): Define
5806         __STDC_VERSION__=199901L, _XOPEN_SOURCE=600 for C++.
5808 2010-06-21  Nick Clifton  <nickc@redhat.com>
5810         * config/rx/rx.h (PTRDIFF_TYPE): Define.
5811         (SMALL_REGISTER_CLASS): Define (to zero).
5812         (PRINT_OPERAND): Delete.
5813         (PRINT_OPERAND_ADDRESS): Delete.
5814         * config/rx/rx-protos.h (rx_print_operand): Delete prototype.
5815         (rx_print_operand_address): Delete prototype.
5816         * config/rx/rx.c (rx_print_operand): Make static.
5817         Allow %H and %L to handle CONST_DOUBLEs.
5818         (rx_print_operand_address): Make static.
5819         (rx_gen_move_template): Rename local variable 'template' to
5820         out_template.
5821         (rx_function_arg): Do not pass unknown sized objects in registers.
5822         (TARGET_PRINT_OPERAND): Define.
5823         (TARGET_PRINT_OPERAND_ADDRESS): Define.
5825 2010-06-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
5827         * Makefile.in (POD2MAN): Provide --date from $(DATESTAMP).
5829 2010-06-21  Kai Tietz  <kai.tietz@onevision.com>
5831         * config/i386/i386.c (ix86_compute_frame_layout): Avoid
5832         stack-alignment for simple leaf-functions.
5834 2010-06-20  Alexandre Oliva  <aoliva@redhat.com>
5836         * doc/install.texi: Document bootstrap-lto.
5838 2010-06-20  Alexandre Oliva  <aoliva@redhat.com>
5840         PR debug/44248
5841         * lto-streamer-in.c (input_bb): Leave debug stmts alone.
5842         (input_function): Drop them here, if VTA is disabled.
5844 2010-06-20  Uros Bizjak  <ubizjak@gmail.com>
5846         PR target/44546
5847         * config/i386/predicates.md (ix86_swapped_fp_comparsion_operator):
5848         New predicate.
5849         * config/i386/i386.md (*fp_jcc_8<mode>_387 and splitters): Use
5850         ix86_swapped_fp_comparsion_operator instead of
5851         ix86_fp_comparison_operator.
5853         (*fp_jcc_1_387): Rename from *fp_jcc_3_387.
5854         (*fp_jcc_1r_387): Rename from *fp_jcc_4_387.
5855         (*fp_jcc_2_387): Rename from *fp_jcc_5_387.
5856         (*fp_jcc_2r_387): Rename from *fp_jcc_6_387.
5857         (*fp_jcc_3_387): Rename from *fp_jcc_7_387.
5858         (*fp_jcc_4_<mode>_387): Rename from *fp_jcc_8<mode>_387.
5860 2010-06-20  Joseph Myers  <joseph@codesourcery.com>
5862         PR other/32998
5863         * opth-gen.awk: Generate definitions of OPT_SPECIAL_unknown,
5864         OPT_SPECIAL_program_name and OPT_SPECIAL_input_file.
5865         * opts-common.c (find_opt): Return OPT_SPECIAL_unknown on failure.
5866         (decode_cmdline_option): Update for this return value.  Set
5867         orig_option_with_args_text field.  Set arg field for unknown
5868         options.  Make static.
5869         (decode_cmdline_options_to_array): New.
5870         (prune_options): Update handling of find_opt return value.
5871         * opts.c (read_cmdline_option): Take decoded option.  Return void.
5872         (read_cmdline_options): Take decoded options.
5873         (decode_options): Add parameters for decoded options.  Use
5874         decode_cmdline_options_to_array.  Use decoded options for -O
5875         scan.  Use integral_argument for -O parameters.  Update call to
5876         read_cmdline_options.
5877         (enable_warning_as_error): Update handling of find_opt return value.
5878         * opts.h: Update comment on unknown options.
5879         (struct cl_decoded_option): Update comments on opt_index and arg.
5880         Add orig_option_with_args_text.
5881         (decode_cmdline_option): Remove.
5882         (decode_cmdline_options_to_array): Declare.
5883         (decode_options): Update prototype.
5884         * toplev.c (save_argv): Remove.
5885         (save_decoded_options, save_decoded_options_count): New.
5886         (read_integral_parameter): Remove.
5887         (print_switch_values): Use decoded options.
5888         (toplev_main): Don't set save_argv.  Update call to decode_options.
5889         * toplev.h (read_integral_parameter): Remove.
5890         * varasm.c (elf_record_gcc_switches): Don't handle holding back names.
5892 2010-06-19  Richard Earnshaw  <rearnsha@arm.com>
5894         PR target/44072
5895         * arm.md (cmpsi2_addneg): Prefer emitting adds to subs with a negative
5896         immediate.
5897         * constraints.md (Pw, Px): New constraints.
5898         * thumb2.md (cmpsi2_addneg peephole2): New peepholes.
5900 2010-06-19  H.J. Lu  <hongjiu.lu@intel.com>
5902         * config/i386/sse.md (fma4modesuffixf4): Removed.
5903         (ssemodesuffixf2s): Likewise.
5904         (ssemodesuffixf4): Likewise.
5905         (ssemodesuffixf2c): Likewise.
5906         (ssescalarmodesuffix2s): Likewise.
5907         (avxmodesuffixf2c): Likewise.
5908         (ssemodesuffix): New.
5909         (ssescalarmodesuffix): Likewise.
5910         Update patterns with ssemodesuffix and ssescalarmodesuffix.
5912 2010-06-19  Philip Herron  <herron.philip@googlemail.com>
5914         * c-decl.c (c_write_global_declarations): Don't check flag_syntax_only.
5916 2010-06-18  H.J. Lu  <hongjiu.lu@intel.com>
5918         * stor-layout.c (debug_rli): Remove unused local variables.
5920 2010-06-18  Eric Botcazou  <ebotcazou@adacore.com>
5922         PR rtl-optimization/40900
5923         * expr.c (expand_expr_real_1) <SSA_NAME>: Fix long line.  Save the
5924         original expression for later reuse.
5925         <expand_decl_rtl>: Use promote_function_mode to compute the signedness
5926         of the promoted RTL for a SSA_NAME on the LHS of a call statement.
5928 2010-06-18  Anatoly Sokolov  <aesok@post.ru>
5930         * double-int.h (double_int_to_shwi, double_int_to_uhwi,
5931         double_int_fits_in_uhwi_p): Implement as static inline.
5932         (double_int_xor): New inline function.
5933         (double_int_lrotate, double_int_rrotate, double_int_max,
5934         double_int_umax, double_int_smax, double_int_min, double_int_umin,
5935         double_int_smin): Declare.
5936         (lrotate_double, rrotate_double): Remove declaration.
5937         * double-int.c (double_int_fits_in_uhwi_p, double_int_to_shwi,
5938         double_int_to_uhwi, lrotate_double, rrotate_double): Remove function.
5939         (double_int_lrotate, double_int_rrotate, double_int_max,
5940         double_int_umax, double_int_smax, double_int_min, double_int_umin,
5941         double_int_smin): New function.
5942         * fold-const.c (int_const_binop): Clean up, use double_int_*
5943         functions.
5944         * simplify-rtx.c (simplify_const_binary_operation): Clean up, use
5945         double_int_* and immed_double_int_const functions.
5947 2010-06-18  Nathan Froyd  <froydnj@codesourcery.com>
5949         * function.h (types_used_by_cur_var_decl): Change type to a VEC.
5950         * function.c (types_used_by_cur_var_decl): Likewise.
5951         (used_types_insert): Adjust for new type of types_used_by_cur_var_decl.
5953 2010-06-18  Nathan Froyd  <froydnj@codesourcery.com>
5955         * tree.h (record_layout_info): Change type of pending_statics field
5956         to a VEC.
5957         * stor-layout.c (start_record_layout): Store NULL into
5958         pending_statics.
5959         (debug_rli): Call debug_vec_tree instead of debug_tree.
5960         (place_field): Likewise.
5961         (finish_record_layout): Likewise.
5963 2010-06-18  Alan Modra  <amodra@gmail.com>
5965         * config/rs6000/linux64.h (SET_CMODEL): Don't expand to empty.
5967 2010-06-17  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5969         PR target/43740
5970         * config/pa/pa.c (emit_move_sequence): Don't infer REG_POINTER flag
5971         for SET source operand from SET destination operand.
5973 2010-06-17  Bernd Schmidt  <bernds@codesourcery.com>
5975         PR rtl-optimization/39871
5976         * reload1.c (init_eliminable_invariants): For flag_pic, disable
5977         equivalences only for constants that aren't LEGITIMATE_PIC_OPERAND_P.
5978         (function_invariant_p): Rule out a plus of frame or arg pointer with
5979         a SYMBOL_REF.
5980         * ira.c (find_reg_equiv_invariant_const): Likewise.
5982 2010-06-17  Gunther Nikl  <gnikl@users.sourceforge.net>
5984         * config/rs6000/rs6000.c (print_operand) <'K'>: Also use
5985         print_operand_address and puts to output the operand for CONST.
5987 2010-06-17  Jakub Jelinek  <jakub@redhat.com>
5989         PR debug/44572
5990         * dwarf2out.c (dwarf2out_debug_hooks): Add entry for begin_epilogue
5991         hook.
5993 2010-06-17  Nathan Froyd  <froydnj@codesourcery.com>
5995         * v850-protos.h (print_operand): Delete.
5996         (print_operand_address): Delete.
5997         * v850.h (PRINT_OPERAND): Delete.
5998         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
5999         (PRINT_OPERAND_ADDRESS): Delete.
6000         * v850.c (print_operand_address): Rename to...
6001         (v850_print_operand_address): ...this.  Make static. Call
6002         v850_print_operand.
6003         (print_operand): Rename to...
6004         (v850_print_operand): ...this.  Make static.  Call
6005         v850_print_operand_address.
6006         (v850_print_operand_punct_valid_p): New function.
6007         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS): Define.
6008         (TARGET_PRINT_OPERAND_PUNCT_VALID_P): Define.
6010 2010-06-17  Nathan Froyd  <froydnj@codesourcery.com>
6012         * config/sh/sh-protos.h (print_operand): Delete.
6013         (print_operand_address): Delete.
6014         * config/sh/sh.h (PRINT_OPERAND): Delete.
6015         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
6016         (PRINT_OPERAND_ADDRESS): Delete.
6017         * config/sh/sh.c (sh_print_operand_address): Make static.
6018         (sh_print_operand): Make static.  Call sh_print_operand_address
6019         and sh_print_operand.
6020         (sh_print_operand_punct_valid_p): New function.
6021         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS): Define.
6022         (TARGET_PRINT_OPERAND_PUNCT_VALID_P): Define.
6024 2010-06-17  Nathan Froyd  <froydnj@codesourcery.com>
6026         * config/mcore/mcore-protos.h (mcore_print_operand): Delete.
6027         (mcore_print_operand_address): Delete.
6028         * config/mcore/mcore.h (PRINT_OPERAND): Delete.
6029         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
6030         (PRINT_OPERAND_ADDRESS): Delete.
6031         * config/mcore/mcore.c (mcore_print_operand_address): Make static.
6032         (mcore_print_operand): Make static.
6033         (mcore_print_operand_punct_valid_p): New function.
6034         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS): Define
6035         (TARGET_PRINT_OPERAND_PUNCT_VALID_P): Define.
6037 2010-06-17  Nathan Froyd  <froydnj@codesourcery.com>
6039         * config/m68hc11/m68hc11-protos.h (print_operand): Delete.
6040         (print_operand_address): Delete.
6041         * config/m68hc11/m68hc11.h (PRINT_OPERAND): Delete.
6042         (PRINT_OPERAND_ADDRESS): Delete.
6043         * config/m68hc11/m68hc11.c (m68hc11_print_operand_address): Make
6044         static.
6045         (m68hc11_print_operand): Make static.
6046         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS): Define.
6048 2010-06-17  Nathan Froyd  <froydnj@codesourcery.com>
6050         * config/m32r/m32r-protos.h (m32r_print_operand): Delete.
6051         (m32r_print_operand_address): Delete.
6052         * config/m32r/m32r.h (m32r_punct_chars): Delete.
6053         (PRINT_OPERAND): Delete.
6054         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
6055         (PRINT_OPERAND_ADDRESS): Delete.
6056         * config/m32r/m32r.c (m32r_punct_chars): Make static.
6057         (m32r_print_operand_address): Make static.
6058         (m32r_print_operand): Make static.
6059         (m32r_print_operand_punct_valid_p): New function.
6060         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS):
6061         (TARGET_PRINT_OPERAND_ADDRESS): Define.
6063 2010-06-17  Nathan Froyd  <froydnj@codesourcery.com>
6065         * config/iq2000/iq2000-protos.h (print_operand): Delete.
6066         (print_operand_address): Delete.
6067         * config/iq2000/iq2000.h (PRINT_OPERAND): Delete.
6068         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
6069         (PRINT_OPERAND_ADDRESS): Delete.
6070         (iq2000_print_operand_punct): Delete.
6071         * config/iq2000/iq2000.c (iq2000_print_operand_punct): Make static.
6072         (iq2000_print_operand_address): Make static.
6073         (iq2000_print_operand): Make static.
6074         (iq2000_print_operand_punct_valid_p): New function.
6075         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS):
6076         (TARGET_PRINT_OPERAND_ADDRESS): Define.
6078 2010-06-17  Nathan Froyd  <froydnj@codesourcery.com>
6080         * config/frv/frv-protos.h (frv_print_operand): Delete.
6081         (frv_print_operand_address): Delete.
6082         * config/frv/frv.h (PRINT_OPERAND): Delete.
6083         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
6084         (PRINT_OPERAND_ADDRESS): Delete.
6085         * config/frv/frv.c (frv_print_operand_address): Make static.
6086         (frv_print_operand): Make static.
6087         (frv_print_operand_punct_valid_p): New function.
6088         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS):
6089         (TARGET_PRINT_OPERAND_ADDRESS): Define.
6091 2010-06-17  Nathan Froyd  <froydnj@codesourcery.com>
6093         * tree.h (vec_member): Declare.
6094         * tree.c (vec_member): Define.
6096 2010-06-17  Richard Guenther  <rguenther@suse.de>
6098         * tree-flow-inline.h (array_ref_contains_indirect_ref): Remove.
6099         * tree-flow.h (array_ref_contains_indirect_ref): Likewise.
6101 2010-06-17  Richard Guenther  <rguenther@suse.de>
6103         * tree-inline.c (declare_return_variable): Remove bogus code.
6105 2010-06-17  Richard Guenther  <rguenther@suse.de>
6107         * gimplify.c (gimplify_bind_expr): Always promote complex
6108         and vector variables to registers if possible.
6110 2010-06-17  Richard Guenther  <rguenther@suse.de>
6112         * expr.c (get_inner_reference): Use double_int for bit_offset
6113         calculation.
6115 2010-06-16  DJ Delorie  <dj@redhat.com>
6117         * common.opt (-fstrict-volatile-bitfields): new.
6118         * doc/invoke.texi: Document it.
6119         * fold-const.c (optimize_bit_field_compare): For volatile
6120         bitfields, use the field's type to determine the mode, not the
6121         field's size.
6122         * expr.c (expand_assignment): Likewise.
6123         (get_inner_reference): Likewise.
6124         (expand_expr_real_1): Likewise.
6125         * expmed.c (store_fixed_bit_field): Likewise.
6126         (extract_bit_field_1): Likewise.
6127         (extract_fixed_bit_field): Likewise.
6129 2010-06-16  Richard Guenther  <rguenther@suse.de>
6131         * tree-inline.c (remap_gimple_op_r): Recurse using remap_gimple_op_r.
6133 2010-06-16  Douglas B Rupp  <rupp@gnat.com>
6135         * config/ia64/vms.h (ASM_OUTPUT_DWARF_DELTA_UNITS): Remove.
6136         (ASM_OUTPUT_DWARF_VMS_DELTA: Define new macro.
6137         * dbxout.c (gcc_debug_hooks): New entry begin_epilogue.
6138         * debug.c: Likewise.
6139         * sdbout.c: Likewise.
6140         * vmsdbgout.c: Likewise.
6141         * debug.h: Likewise. (dwarf2out_vms_{begin,end}_prologue): Declare.
6142         * doc/tm.texi (ASM_OUTPUT_DWARF_VMS_DELTA): Document.
6143         * dwarf2asm.c (dw2_asm_output_vms_delta): New function.
6144         (ASM_OUTPUT_DWARF_VMS_DELTA): Call it.
6145         * dwarf2asm.h (dw2_asm_output_vms_delta): Declare.
6146         * dwarf2out.c (dw_fde_struct): New fields
6147         dw_fde_vms_{end,begin}_prologue.
6148         (PROLOGUE_END_LABEL, EPILOGUE_BEGIN_LABEL): New macros.
6149         (dwarf2out_begin_prologue): Set dw_fde_struct defaults for above.
6150         (dwarf2out_vms_end_prologue): New function.
6151         (dwarf2out_vms_begin_epilogue): New function.
6152         (dw_val_struct): New value dw_val_class_vms_delta.
6153         (gcc_debug_hooks): New entry begin_epilogue. Set end_prologue,
6154         begin_epilogue for VMS.
6155         (AT_vms_delta1, AT_vms_delta2, add_AT_vms_delta): Declare
6156         new static functions.
6157         (dwarf_attr_name): New cases DW_AT_HP_{prologue,epilogue}.
6158         (AT_vms_delta1, AT_vms_delta2, add_AT_vms_delta): New
6159         static functions.
6160         (print_die): New case dw_val_class_vms_delta.
6161         (attr_checksum): Likewise.
6162         (same_dw_val_p: Likewise.
6163         (size_of_die): Likewise.
6164         (value_format): Likewise.
6165         (output_die): Likewise.
6166         (gen_subprogram_die): Call add_AT_vms_delta on VMS.
6167         (dwarf2out_begin_epilogue): Rename to dwarf2out_cfi_begin_epilogue
6168         * dwarf2out.h (dwarf2out_begin_epilogue): Rename to
6169         dwarf2out_cfi_begin_epilogue
6170         * final.c (final_scan_insn): Likewise. Call begin_epilogue.
6172 2010-06-16  Nathan Froyd  <froydnj@codesourcery.com>
6174         * config/cris/cris-protos.h (cris_print_operand): Delete.
6175         (cris_print_operand_address): Delete.
6176         * config/cris/cris.h (PRINT_OPERAND): Delete.
6177         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
6178         (PRINT_OPERAND_ADDRESS): Delete.
6179         * config/cris/cris.c (cris_print_operand_address): Make static.
6180         (cris_print_operand): Make static.
6181         (cris_print_operand_punct_valid_p): New function.
6182         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS):
6183         (TARGET_PRINT_OPERAND_ADDRESS): Define.
6185 2010-06-16  Nathan Froyd  <froydnj@codesourcery.com>
6187         * config/arm/arm-protos.h (arm_print_operand): Delete.
6188         (arm_print_operand_address): Delete.
6189         * config/arm/arm.h (PRINT_OPERAND): Delete.
6190         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
6191         (PRINT_OPERAND_ADDRESS, ARM_PRINT_OPERAND_ADDRESS):
6192         (THUMB_PRINT_OPERAND_ADDRESS): Delete and move code to...
6193         * config/arm/arm.c (arm_print_operand_address): ...here.  New function.
6194         (arm_print_operand): Make static.
6195         (arm_print_operand_punct_valid_p): New function.
6196         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS):
6197         (TARGET_PRINT_OPERAND_ADDRESS): Define.
6199 2010-06-16  Nick Clifton  <nickc@redhat.com>
6201         * config/rx/constraints.md (NEGint4): New constraint.
6202         * config/rx/rx.md (attr cc): Add set_zsc.
6203         (cbranchsf4): Only test for -fnon-call-exceptions if cfun has been
6204         initialised.
6205         (cmpsf): Likewise.
6206         (call_internal): Clobber the cc0 register.
6207         (call_value_internal): Likewise.
6208         (cstoresi4): Likewise.
6209         (movsieq): Likewise.
6210         (movsine): Likewise.
6211         (addsi3): Add alternative to handle small negative constants.
6212         (sunsi3): Likewise.
6213         (addsi3): Do not set the O bit in the cc0 register.
6214         (adddi3): Likewise.
6215         (subsi3): Likewise.
6216         (subdi3): Likewise.
6217         (andsi3): Reorder alternatives to prefer shorter forms.
6218         (mulsi3): Likewise.
6219         (iorsi3): Likewise.
6220         (negsi2): Note that the cc0 flags are set.
6221         (rotlsi3): Note that only the Z and S bits are set in cc0.
6222         (lshrsi3): Likewise.
6223         (ashlsi3): Likewise.
6224         (subsf3): Use %Q for the MEM operand.
6225         (fix_truncsfsi2): Likewise.
6226         (floatsisf2): Likewise.
6227         (bitset): Remove early clobber from destination.
6228         (bitset_in_memory): Likewise.
6229         (lrintsf2): Clobber the cc0 register.
6230         * config/rx/rx.c (rx_notice_update_cc): Handle CC_SET_ZSC.
6231         (rx_print_operand): Handle %N.
6233 2010-06-16  Jan Hubicka  <jh@suse.cz>
6235         * df-core.c (df_compact_blocks): Free problem_temps vector.
6237 2010-06-16  Martin Jambor  <mjambor@suse.cz>
6239         PR tree-optimization/43905
6240         * tree-sra.c: Include tree-inline.h.
6241         (create_abstract_origin): Removed.
6242         (modify_function): Version the call graph node instead of creating
6243         abstract origins and dealing with same_body aliases.
6244         * tree-sra.c (ipa_sra_preliminary_function_checks): Check whether the
6245         function is versionable.
6246         * Makefile.in (tree-sra.o): Add TREE_INLINE_H to dependencies.
6248 2010-06-16  Maxim Kuvyrkov  <maxim@codesourcery.com>
6250         * config/mips/linux64.h (BIONIC_DYNAMIC_LINKERN32): Define.
6251         (CHOOSE_DYNAMIC_LINKER): Update.
6253 2010-06-15  Uros Bizjak  <ubizjak@gmail.com>
6255         * config/i386/i386.c (*prefetch_sse_<mode>):  Macroize insn from
6256         *prefetch_sse and *prefetch_sse_rex using P mode iterator.
6257         (*prefetch_3dnow_<mode>): Ditto from *prefetch_3dnow and
6258         *prefetch_3dnow_rex.
6260 2010-06-15  Anatoly Sokolov  <aesok@post.ru>
6262         * target.h (struct asm_out):Add declare_constant_name field.
6263         * target-def.h (TARGET_ASM_DECLARE_CONSTANT_NAME): Define.
6264         (TARGET_INITIALIZER): Use TARGET_ASM_DECLARE_CONSTANT_NAME.
6265         * output.h (default_asm_declare_constant_name): Declare.
6266         (assemble_label): Update prototype.
6267         * varasm.c (assemble_constant_contents): Use
6268         targetm.asm_out.declare_constant_name target hook.
6269         (assemble_label): Add 'file' argument.
6270         (default_asm_declare_constant_name): New function.
6271         * system.h (ASM_DECLARE_CONSTANT_NAME): Poison.
6272         * doc/tm.texi (ASM_DECLARE_CONSTANT_NAME): Remove.
6273         (TARGET_ASM_DECLARE_CONSTANT_NAME): Document it.
6275         * config/darwin-protos.h (darwin_asm_declare_constant_name): Declare.
6276         * config/darwin.c (darwin_asm_declare_constant_name): New function.
6277         (machopic_output_indirection): Update assemble_label argument list.
6278         * config/darwin.h (ASM_DECLARE_CONSTANT_NAME): Remove.
6279         (TARGET_ASM_DECLARE_CONSTANT_NAME): Define.
6281 2010-06-15  Sebastian Pop  <sebastian.pop@amd.com>
6283         PR middle-end/44391
6284         * graphite-clast-to-gimple.c (graphite_create_new_loop_guard): Use
6285         size_one_node for pointer types.  Do not call gmp_cst_to_tree.
6287 2010-06-15  Richard Guenther  <rguenther@suse.de>
6289         * tree-ssa-pre.c (eliminate): Handle PHI elimination to constants.
6291 2010-06-15  Paul Brook  <paul@codesourcery.com>
6293         * config/arm/arm.c (use_vfp_abi): Add sorry() for Thumb-1
6294         hard-float ABI.
6296 2010-06-15  Alexandre Oliva  <aoliva@redhat.com>
6298         * tree-vect-patterns.c (vect_pattern_recog_1): Bail out if we
6299         don't get a vector type for output.
6301 2010-06-15  Jakub Jelinek  <jakub@redhat.com>
6303         PR fortran/44536
6304         * langhooks.h (struct lang_hooks_for_decls): Add omp_report_decl.
6305         * langhooks-def.h (LANG_HOOKS_OMP_REPORT_DECL): Define.
6306         (LANG_HOOKS_DECLS): Add it.
6307         * gimplify.c (omp_notice_variable): Call
6308         lang_hooks.decls.omp_report_decl.
6310 2010-06-15  Martin Jambor  <mjambor@suse.cz>
6312         PR lto/44464
6313         * tree-sra.c (replace_removed_params_ssa_names): Call release_ssa_name
6314         on the newly dead SSA name.
6316 2010-06-15  Alan Modra  <amodra@gmail.com>
6318         * doc/invoke.texi: Add mcmodel to powerpc options.
6319         * configure.ac: Add HAVE_LD_LARGE_TOC test.
6320         * configure: Regenerate.
6321         * config.in: Regenerate.
6322         * config/rs6000/linux64.opt (mcmodel): New.
6323         * config/rs6000/linux64.h (TARGET_USES_LINUX64_OPT): Define.
6324         (TARGET_CMODEL, SET_CMODEL): Define.
6325         (SUBSUBTARGET_OVERRIDE_OPTIONS): Check user -mcmodel choice,
6326         select CMODEL_MEDIUM default.
6327         * config/rs6000/rs6000.h (enum rs6000_cmodel): New.
6328         (TARGET_CMODEL): Define default.
6329         * config/rs6000/rs6000.c (cmodel): New variable.
6330         (rs6000_explicit_options): Add cmodel field.
6331         (rs6000_handle_option): Handle -mcmodel.
6332         (create_TOC_reference): Add largetoc_reg param.  Generate high,
6333         lo_sum rtl for CMODEL_MEDIUM and CMODEL_LARGE.  Update all callers.
6334         (rs6000_delegitimize_address): Recognise new toc reference rtl
6335         and minimal-toc rtl.
6336         (rs6000_legitimize_reload_address): Handle new toc references.
6337         (print_operand_address): Handle legitimate_constant_pool_address_p
6338         match before lo_sum.
6339         (rs6000_eliminate_indexed_memrefs): Tidy.
6340         (rs6000_emit_move): Tweak threshold for inlining constants.
6341         Keep rs6000_emit_allocate_stack large stack frame offsets
6342         loaded into r0 inline.
6343         (rs6000_generate_compare <cmptf_internal2>): One more clobber.
6344         (tocrel_base, tocrel_offset): New variables.
6345         (toc_relative_expr_p): Set them here.
6346         (print_operand_address): Skip over any offset on constant pool address.
6347         (rs6000_output_addr_const_extra): Print tocrel_offset before @toc.
6348         (rs6000_mode_dependent_address <LO_SUM>): False for new toc refs.
6349         (offsettable_ok_by_alignment): New function.
6350         (rs6000_emit_move): Address suitably aligned local symbol_refs
6351         relative to the toc pointer for -mcmodel=medium.
6352         (legitimate_constant_pool_address_p): Make param const_rtx.  Add
6353         strict param.  Allow lo_sum version of addressing.  Verify reg
6354         used for -mminimal-toc and -mcmodel != small.  Update all callers.
6355         * config/rs6000/constraints.md: Update for above change.
6356         * config/rs6000/predicates.md: Likewise.
6357         * config/rs6000/rs6000.md (tls_gd_aix): Generate -mcmodel=medium/large
6358         code.
6359         (tls_gd): Split for -mcmodel=medium/large.
6360         (tls_gd_high, tls_gd_low): New.
6361         (tls_ld_aix, tls_ld, tls_ld_high, tls_ld_low): Similarly.
6362         (tls_got_dtprel, tls_got_dtprel_high, tls_got_dtprel_low): Similarly.
6363         (tls_got_tprel, tls_got_tprel_high, tls_got_tprel_low): Similarly.
6364         (largetoc_high, largetoc_low): New.
6365         (cmptf_internal2): Add clobber.
6366         * config/rs6000/rs6000-protos.h: Update.
6368 2010-06-14  Changpeng Fang  <changpeng.fang@amd.com>
6370         * tree-ssa-loop-prefetch.c (nothing_to_prefetch_p): New.  Return
6371         true if no prefetch is going to be generated for a given group.
6372         (estimate_prefetch_count): Use prefetch_mod and unroll_factor to
6373         estimate the prefetch_count.
6374         (loop_prefetch_arrays): Call nothing_to_prefetch_p; estimate the
6375         prefetch count by considering the unroll_factor and prefetch_mod
6376         for is_loop_prefetching_profitable.
6378 2010-06-14  Andreas Schwab  <schwab@linux-m68k.org>
6380         * config/m68k/m68k.c (m68k_delegitimize_address): Don't do
6381         anything if the argument is not a MEM.
6383 2010-06-14  Alexandre Oliva  <aoliva@redhat.com>
6385         PR debug/43650
6386         PR debug/44181
6387         PR debug/44247
6388         * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop): Skip
6389         debug stmts.
6390         (canonicalize_loop_ivs): Likewise.
6392 2010-06-14  Alexandre Oliva  <aoliva@redhat.com>
6394         PR debug/43656
6395         * haifa-sched.c (setup_insn_reg_pressure_info,
6396         update_register_pressure): Reject debug insns.
6397         (ready_sort): Don't setup reg pressure for debug insns.
6398         (schedule_insn): Don't update reg pressure for debug insns.
6400 2010-06-14  Richard Guenther  <rguenther@suse.de>
6402         * lto-streamer.c (cached_bp): Remove.
6403         (bitpack_delete): Likewise.
6404         (bitpack_create): Likewise.
6405         (bp_get_next_word): Likewise.
6406         (bp_pack_value, bp_unpack_value): Move ...
6407         * lto-streamer.h (bp_pack_value, bp_unpack_value): ... here.
6408         Re-implement.
6409         (struct bitpack_d): Likewise.
6410         (bitpack_create, lto_output_bitpack, lto_input_bitpack):
6411         New inline functions.
6412         * lto-streamer-out.c (lto_output_bitpack): Remove.
6413         (pack_ts_base_value_fields): Adjust.  Avoid conditional bitpacking.
6414         (pack_value_fields): Adjust.
6415         (lto_write_tree): Likewise.
6416         (output_gimple_stmt): Likewise.
6417         (output_function): Likewise.
6418         * lto-streamer-in.c (input_gimple_stmt): Adjust.
6419         (input_function): Likewise.
6420         (unpack_ts_base_value_fields): Adjust.  Avoid conditional bitpacking.
6421         (lto_input_bitpack): Remove.
6422         (lto_materialize_tree): Adjust.
6423         * Makefile.in (ipa-prop.o): Add $(LTO_STREAMER_H) dependency.
6424         * lto-cgraph.c (lto_output_edge): Adjust.
6425         (lto_output_node): Likewise.
6426         (lto_output_varpool_node): Likewise.
6427         (lto_output_ref): Likewise.
6428         (input_node): Likewise.
6429         (input_varpool_node): Likewise.
6430         (input_ref): Likewise.
6431         (input_edge): Likewise.
6432         (output_node_opt_summary): Likewise.
6433         (input_node_opt_summary): Likewise.
6434         * ipa-pure-const.c (pure_const_write_summary): Likewise.
6435         (pure_const_read_summary): Likewise.
6436         * ipa-prop.c (ipa_write_indirect_edge_info): Likewise.
6437         (ipa_read_indirect_edge_info): Likewise.
6438         (ipa_write_node_info): Likewise.
6439         (ipa_read_node_info): Likewise.
6441 2010-06-14  H.J. Lu  <hongjiu.lu@intel.com>
6443         PR target/44534
6444         * config/i386/sse.md (vec_extract_lo_<mode>): Replace 0x1 with 0x0.
6445         (vec_extract_lo_v16hi): Likewise.
6446         (vec_extract_lo_v32qi): Likewise.
6448 2010-06-14  Jakub Jelinek  <jakub@redhat.com>
6450         PR bootstrap/44426
6451         * tree.h (build_call_expr): Don't define as vararg macro, instead
6452         add a prototype.
6453         * builtins.c (build_call_nofold): Remove.
6454         (expand_builtin_int_roundingfn, expand_builtin_pow,
6455         expand_builtin_mempcpy_args, expand_builtin_stpcpy,
6456         expand_builtin_memset_args, expand_builtin_strcmp,
6457         expand_builtin_strncmp, expand_builtin_memory_chk): Use
6458         build_call_nofold_loc instead of build_call_nofold.
6459         (build_call_expr): New function.
6461         PR tree-optimization/44508
6462         * tree-ssa-propagate.h (substitute_and_fold): Add DO_DCE argument.
6463         * tree-ssa-propagate.c (substitute_and_fold): If !DO_DCE,
6464         don't eliminate trivially dead stmts.
6465         * tree-vrp.c (vrp_finalize): Pass false as last argument
6466         to substitute_and_fold.
6467         * tree-ssa-copy.c (fini_copy_prop): Pass true as last argument
6468         to substitute_and_fold.
6469         * tree-ssa-ccp.c (ccp_finalize): Likewise.
6471         PR bootstrap/44509
6472         * c-config-lang.in (gtfiles): Add c-family/c-cppbuiltin.c.
6474 2010-06-14  Ira Rosen  <irar@il.ibm.com>
6476         PR tree-optimization/44507
6477         * tree-vect-loop.c (get_initial_def_for_reduction): Use -1
6478         to build initial vector for BIT_AND_EXPR.
6479         * tree-vect-slp.c (vect_get_constant_vectors): Likewise.
6481 2010-06-14  Jakub Jelinek  <jakub@redhat.com>
6483         * config/s390/s390.md (*mov<mode>_64 DD_DF, mov<mode>): Properly
6484         adjust z10prop set_attr.
6486 2010-06-13  Jan Hubicka  <jh@suse.cz>
6488         * bitmap.c (bitmap_and, bitmap_and_into, bitmap_and_compl,
6489         bitmap_and_compl_into, bitmap_compl_and_into, bitmap_ior,
6490         bitmap_ior_into, bitmap_xor, bitmap_xor_into,
6491         bitmap_ior_and_compl, bitmap_ior_and_compl): Turn internal
6492         datastructure checks into checking asserts.
6493         * rtlanal.c (find_reg_note): Use gcc_checking_assert.
6494         * tree-ssa-sccvn.c (VN_INFO): Likewise.
6495         * df-scan.c (df_reorganize_refs_by_reg_by_reg, df_install_ref,
6496         df_ref_create_structure): Likewise.
6497         * alloc-pool.c (create_alloc_pool, empty_alloc_pool, pool_alloc,
6498         pool_free): Use gcc_checking_assert.
6499         * alias.c (get_alias_set): Likewise.
6500         * var-tracking.c (variable_htab_free, shared_hash_copy,
6501         canonicalize_values_mark, variable_merge_over_cur): Likewise.
6502         * lto-streamer.c (bp_unpack_value): Likewise.
6504 2010-06-13  Richard Guenther  <rguenther@suse.de>
6506         * lto-streamer-in.c (lto_input_ts_type_tree_pointers):
6507         Do not stream but initialize TYPE_CANONICAL to NULL.
6508         (lto_output_ts_type_tree_pointers): Do not stream TYPE_CANONICAL.
6509         * gimple.c (gimple_types_compatible_p): Disregard
6510         TYPE_STRUCTURAL_EQUALITY_P.
6511         (gimple_register_type): Use TYPE_CANONICAL as cache.
6512         * lto-streamer.c (lto_record_common_node): Zero TYPE_CANONICAL
6513         before registering common types.
6514         * config/i386/i386.c (ix86_function_arg_boundary): Do not
6515         use TYPE_CANONICAL, instead use TYPE_MAIN_VARIANT.
6516         * tree.h (TYPE_CANONICAL): Clarify documentation.
6518 2010-06-13  Anatoly Sokolov  <aesok@post.ru>
6520         * config/ia64/ia64.h (FUNCTION_VALUE_REGNO_P, FUNCTION_VALUE,
6521         LIBCALL_VALUE): Remove macros.
6522         * config/ia64/ia64-protos.h (ia64_function_value): Remove.
6523         * config/ia64/ia64.c (TARGET_FUNCTION_VALUE, TARGET_LIBCALL_VALUE,
6524         TARGET_FUNCTION_VALUE_REGNO_P): Define.
6525         (ia64_libcall_value, ia64_function_value_regno_p): New functions.
6526         (ia64_function_value): Make static. Handle receiving the function
6527         type in 'fn_decl_or_type' argunent. Add 'outgoing' argument.
6529 2010-06-12  Jan Hubicka  <jh@suse.cz>
6531         * cse.c (cse_extended_basic_block): Move optimize_bb_for_speed_p
6532         at correct place.
6534 2010-06-12  Bernd Schmidt  <bernds@codesourcery.com>
6536         * config/arm/arm.c (thumb2_reorg): Fix errors in previous change.
6538 2010-06-12  Jan Hubicka  <jh@suse.cz>
6540         * df-core.c (df_clear_bb_info): New function.
6541         (df_set_blocks): bb_info is always allocated.
6542         (df_get_bb_info): Use block_info_elt_size.
6543         (df_set_bb_info): Likewise.
6544         (df_compact_blocks): Update for new block_info.
6545         (grow_bb_info): New function.
6546         * df-problems.c (df_grow_bb_info): Move to df-core.c
6547         (df_rd_set_bb_info): Remove.
6548         (df_rd_free_bb_info): Do not free block pool.
6549         (df_rd_alloc): Do not create pool, use check for
6550         obstack presence instead of NULL pointer for new blocks.
6551         (df_rd_free): DO not free alloc pool; clear block_info.
6552         (problem_RD): Add size of block info structure.
6553         (df_lr_set_bb_info): Remove.
6554         (df_lr_free_bb_info): Do not free block pool.
6555         (df_lr_alloc): Do not create pool, use check for
6556         obstack presence instead of NULL pointer for new blocks.
6557         (df_lr_free): DO not free alloc pool; clear block_info.
6558         (problem_LR): Add size of block info structure.
6559         (df_live_set_bb_info): Remove.
6560         (df_live_free_bb_info): Do not free block pool.
6561         (df_live_alloc): Do not create pool, use check for
6562         obstack presence instead of NULL pointer for new blocks.
6563         (df_live_free): DO not free alloc pool; clear block_info.
6564         (problem_LIVE): Add size of block info structure.
6565         (problem_CHAIN): Add size of block info structure.
6566         (df_byte_lr_set_bb_info): Remove.
6567         (df_byte_lr_free_bb_info): Do not free block pool.
6568         (df_byte_lr_alloc): Do not create pool, use check for
6569         obstack presence instead of NULL pointer for new blocks.
6570         (df_byte_lr_free): DO not free alloc pool; clear block_info.
6571         (problem_BYTE_LR): Add size of block info structure.
6572         (problem_NOTE): Add size of block info structure.
6573         (df_byte_MD_set_bb_info): Remove.
6574         (df_byte_MD_free_bb_info): Do not free block pool.
6575         (df_byte_MD_alloc): Do not create pool, use check for
6576         obstack presence instead of NULL pointer for new blocks.
6577         (df_byte_MD_free): DO not free alloc pool; clear block_info.
6578         (problem_BD): Add size of block info structure.
6579         * df-scan.c (df_scan_free_internal): Free block pool.
6580         (df_scan_set_bb_info): Remove.
6581         (df_scan_free_bb_info): Check for artificial_defs instead
6582         of bb_info being non-NULL.
6583         (df_scan_alloc): DO not create df_scan_block pool.
6584         (problem_SCAN): Set size of block info.
6585         (df_bb_refs_record): Do not allocate bb_info.
6586         * df.h (df_problem): Add block_info_elt_size.
6587         (struct dataflow): Change block_info to void *.
6588         (df_scan_get_bb_info, df_rd_get_bb_info, df_lr_get_bb_info,
6589         df_md_get_bb_info, df_live_get_bb_info, df_byte_lr_get_bb_info): Return
6590         in-line structures.
6592 2010-06-12  Jan Hubicka  <jh@suse.cz>
6594         PR tree-optimize/44485
6595         * tree-cfgcleanup.c (fixup_noreturn_call): Remove basic blocks
6596         containing use of return value of noreturn function.
6598 2010-06-12  Anatoly Sokolov  <aesok@post.ru>
6600         * targhooks.c (default_function_value): Don't use
6601         FUNCTION_OUTGOING_VALUE.
6602         * system.h (FUNCTION_OUTGOING_VALUE): Poison.
6603         * doc/tm.texi (FUNCTION_OUTGOING_VALUE): Removed.
6605 2010-06-12  Kazu Hirata  <kazu@codesourcery.com>
6607         * config.gcc (mips64*-*-linux*, mipsisa64*-*-linux*, mips*-*-linux*):
6608         Add crtfastmath.o to extra_parts.
6609         * config/mips/crtfastmath.c: New.
6610         * config/mips/linux.h (ENDFILE_SPEC): New.
6612 2010-06-12  Sebastian Pop  <sebastian.pop@amd.com>
6614         * graphite-clast-to-gimple.c (gcc_type_for_interval): Do not pass
6615         old_type in parameter.
6616         (gcc_type_for_value): Update call to gcc_type_for_interval.
6617         (compute_type_for_level_1): Renamed compute_type_for_level.
6618         Update call to gcc_type_for_interval.
6620 2010-06-11  Joseph Myers  <joseph@codesourcery.com>
6622         * common.opt (Wstrict-aliasing=, Wstrict-overflow=, fabi-version=,
6623         flto-compression-level=, ftree-parallelize-loops=): Add RejectNegative.
6625 2010-06-11  Joseph Myers  <joseph@codesourcery.com>
6627         * opts-common.c: Include options.h.
6628         (integral_argument): Move from opts.c.
6629         (decode_cmdline_option): New.  Based on read_cmdline_option.
6630         * opts.c (integral_argument): Move to opts-common.c.
6631         (read_cmdline_option): Move most contents to
6632         decode_cmdline_option.  Use %qs in diagnostics.
6633         * opts.h (CL_ERR_DISABLED, CL_ERR_MISSING_ARG, CL_ERR_WRONG_LANG,
6634         CL_ERR_UINT_ARG, struct cl_decoded_option, integral_argument,
6635         decode_cmdline_option): New.
6637 2010-06-11  Uros Bizjak  <ubizjak@gmail.com>
6639         PR target/44481
6640         * config/i386/i386.md (UNSPEC_PARITY): New unspec.
6641         (paritydi2_cmp): Use UNSPEC_PARITY unspec instead of parity RTX.
6642         (partiysi2_cmp): Ditto.
6643         (*partiyhi2_cmp): Ditto.
6644         (*parityqi2_cmp): Remove.
6646 2010-06-11  Jan Hubicka  <jh@suse.cz>
6648         * bitmap.h (bmp_iter_next_bit): New.
6649         (bmp_iter_set, bmp_iter_and, bmp_iter_and_compl): Use it.
6651 2010-06-11  Sandra Loosemore  <sandra@codesourcery.com>
6652             Eric Botcazou  <ebotcazou@adacore.com>
6654         * tree-ssa-loop-ivopts.c (get_computation_cost_at): Return again the
6655         computed cost.
6657 2010-06-11  Uros Bizjak  <ubizjak@gmail.com>
6659         * config/i386/i386.md (unspec): New define_c_enum.
6660         (unspecv): Ditto.
6662 2010-06-10  Jakub Jelinek  <jakub@redhat.com>
6664         * Makefile.in (c-family/c-cppbuiltin.o): Depend on $(CPP_ID_DATA_H).
6666 2010-06-11  Sebastian Pop  <sebastian.pop@amd.com>
6668         PR middle-end/44483
6669         * tree-if-conv.c (bb_predicate_s): New struct.
6670         (bb_predicate_p): New.
6671         (bb_has_predicate): New.
6672         (bb_predicate): New.
6673         (set_bb_predicate): New.
6674         (bb_predicate_gimplified_stmts): New.
6675         (set_bb_predicate_gimplified_stmts): New.
6676         (add_bb_predicate_gimplified_stmts): New.
6677         (init_bb_predicate): New.
6678         (free_bb_predicate): New.
6679         (is_predicated): Use bb_predicate.
6680         (add_to_predicate_list): Use bb_predicate and set_bb_predicate.
6681         (predicate_bbs): Same.  Gimplify the condition of the basic blocks
6682         before processing their successors.
6683         (clean_predicate_lists): Removed.
6684         (find_phi_replacement_condition): Use bb_predicate.
6685         (process_phi_nodes): Renamed ifconvert_phi_nodes.  Avoid useless
6686         computations.
6687         (insert_gimplified_predicates): New.
6688         (combine_blocks): Call insert_gimplified_predicates.
6689         (tree_if_conversion): Call free_bb_predicate instead of
6690         clean_predicate_lists.
6692 2010-10-11  Paul Brook  <paul@codesourcery.com>
6694         * doc/invoke.texi: Document ARM -mcpu=cortex-m4.
6695         * config/arm/arm.c (all_architectures): Change v7e-m default to
6696         cortexm4.
6697         * config/arm/arm-cores.def: Add cortex-m4.
6698         * config/arm/arm-tune.md: Regenerate.
6700 2010-06-11  Jan Hubicka  <jh@suse.cz>
6702         * ipa-pure-const.c (special_builtlin_state): New function.
6703         (check_call): Use it instead of special casign BUILT_IN_RETURN.
6704         (propagate_pure_const): Use it.
6706 2010-06-11  Jan Hubicka  <jh@suse.cz>
6708         * df-problems.c (df_live_scratch): Convert to bitmap_head.
6709         (df_live_alloc): Initialize df_live_scratch when initializing
6710         problem_data.
6711         (df_live_transfer_function): Update uses of df_live_scratch.
6712         (df_live_free): Free problem_data; clear df_live_scratch before
6713         releasing the obstack.
6714         (df_md_free): Free problem data.
6716 2010-06-11  Jan Hubicka  <jh@suse.cz>
6718         * doc/invoke.texi (Wsuggest-attribute): Document.
6719         (Wmissing-noreturn): Remove.
6720         * ipa-pure-const.c (warn_function_noreturn): New function.
6721         * opts.c (decode_options): Set warn_suggest_attribute_noreturn on
6722         warn_missing_noreturn.
6723         * common.opt (Wsuggest-attribute=noreturn): New.
6724         * tree-flow.h (warn_function_noreturn): Declare.
6725         * tree-cfg.c (execute_warn_function_noreturn): Use
6726         warn_function_noreturn.
6727         (gate_warn_function_noreturn): New.
6728         (pass_warn_function_noreturn): Update.
6730 2010-06-11  Manuel López-Ibáñez  <manu@gcc.gnu.org>
6732         * c-typeck.c (handle_warn_cast_qual): Add loc
6733         parameter. Improve warning message.
6734         (build_c_cast): Pass location to handle_warn_cast_qual.
6736 2010-06-11  Uros Bizjak  <ubizjak@gmail.com>
6738         * config/i386/i386.md (pro_epilogue_adjust_stack_1) <TYPE_ALU>: Assert
6739         that operand 0 == operand 1.  Use x86_maybe_negate_const_int to output
6740         insn mnemonic.
6741         (pro_epilogue_adjust_stack_rex64) <TYPE_ALU>: Ditto.
6743 2010-06-10  Dodji Seketeli  <dodji@redhat.com>
6745         Fix bootstap on mips
6746         * dwarf2out.c (is_naming_typedef_dec): Built-in TYPE_DECLs cannot
6747         be naming typedefs.
6749 2010-06-11  Kai Tietz  <kai.tietz@onevision.com>
6751         * system.h (helper_const_non_const_cast): New inline for
6752         gcc version <= 4.0.
6753         (CONST_CAST2): For gcc version <= 4.0 use
6754         new helper to do const/non-const casting.
6756 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
6758         * doc/md.texi: Document the "unspec" and "unspecv" enum names.
6759         * Makefile.in (OBJS-common): Include insn-enums.o.
6760         (insn-enums.o): New rule.
6761         (simple_generated_c): Add insn-enums.c.
6762         (build/genenums.o): New rule.
6763         (genprogmd): Add "enums".
6764         * genconstants.c (print_enum_type): Declare a C string array
6765         for each enum.
6766         * genenums.c: New file.
6767         * print-rtl.c (print_rtx): If defined, use the "unspecv" enum
6768         for UNSPEC_VOLATILE.  If defined, use the "unspec" enum for both
6769         UNSPEC and (as a fallback) for UNSPEC_VOLATILE.
6771 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
6773         * doc/md.texi (define_enum_attr): Document.
6774         * rtl.def (DEFINE_ENUM_ATTR): New rtx.
6775         * read-md.h (lookup_enum_type): Declare.
6776         * read-md.c (lookup_enum_type): New function.
6777         * genattr.c (gen_attr, main): Handle DEFINE_ENUM_ATTR.
6778         * genattrtab.c (attr_desc): Add an enum_name field.
6779         (evaluate_eq_attr): Take the associated attribute as argument.
6780         Get the enum prefix from the enum_name field, if defined.
6781         Use ACONCAT rather than a fixed-length buffer.  Update recursive calls.
6782         (simplify_test_exp): Pass attr to evaluate_eq_attr.
6783         (add_attr_value): New function, split out from...
6784         (gen_attr): ...here.  Handle DEFINE_ENUM_ATTR.
6785         (write_test_expr): Pass attr to evaluate_eq_attr.
6786         (write_attr_get): Use the enum_name as the enum tag, if defined.
6787         (write_attr_valueq): Use the enum_name as a prefix, if defined.
6788         (find_attr): Initialize enum_name.
6789         (main): Handle DEFINE_ENUM_ATTR.
6790         * gensupport.c (process_rtx): Likewise.
6791         * config/mips/mips.h (mips_tune_attr): Delete.
6792         * config/mips/mips.md (cpu): Use define_attr_enum.
6794 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
6796         * doc/md.texi (define_c_enum, define_enum): Document.
6797         * read-md.h (md_constant): Add a parent_enum field.
6798         (enum_value, enum_type): New structures.
6799         (upcase_string, traverse_enum_types): Declare.
6800         * read-md.c (enum_types): New variable.
6801         (upcase_string, add_constant): New functions.
6802         (handle_constants): Don't create the hash table here.
6803         Use add_constant.
6804         (traverse_md_constants): Don't check for a null md_constants.
6805         (decimal_string, handle_enum, traverse_enum_types): New functions.
6806         (read_md_files): Initialize md_constants and md_enums.
6807         * genconstants.c (print_md_constant): Ignore info argument.
6808         Only print constants that belong to no enum.
6809         (print_enum_type): New function.
6810         (main): Don't pass stdout to print_md_constant.  Call print_enum_type
6811         for each defined enum type.
6812         * config/mips/mips.md (processor): New define_enum.
6813         (unspec): New define_c_enum.
6814         (UNSPEC_COMPARE_AND_SWAP, UNSPEC_COMPARE_AND_SWAP_12)
6815         (UNSPEC_SYNC_OLD_OP, UNSPEC_SYNC_NEW_OP, UNSPEC_SYNC_NEW_OP_12)
6816         (UNSPEC_SYNC_OLD_OP_12, UNSPEC_SYNC_EXCHANGE, UNSPEC_SYNC_EXCHANGE_12)
6817         (UNSPEC_MEMORY_BARRIER): Moved to sync.md.
6818         (UNSPEC_ADDQ, UNSPEC_ADDQ_S, UNSPEC_SUBQ, UNSPEC_SUBQ_S, UNSPEC_ADDSC)
6819         (UNSPEC_ADDWC, UNSPEC_MODSUB, UNSPEC_RADDU_W_QB, UNSPEC_ABSQ_S)
6820         (UNSPEC_PRECRQ_QB_PH, UNSPEC_PRECRQ_PH_W, UNSPEC_PRECRQ_RS_PH_W)
6821         (UNSPEC_PRECRQU_S_QB_PH, UNSPEC_PRECEQ_W_PHL, UNSPEC_PRECEQ_W_PHR)
6822         (UNSPEC_PRECEQU_PH_QBL, UNSPEC_PRECEQU_PH_QBR, UNSPEC_PRECEQU_PH_QBLA)
6823         (UNSPEC_PRECEQU_PH_QBRA, UNSPEC_PRECEU_PH_QBL, UNSPEC_PRECEU_PH_QBR)
6824         (UNSPEC_PRECEU_PH_QBLA, UNSPEC_PRECEU_PH_QBRA, UNSPEC_SHLL)
6825         (UNSPEC_SHLL_S, UNSPEC_SHRL_QB, UNSPEC_SHRA_PH, UNSPEC_SHRA_R)
6826         (UNSPEC_MULEU_S_PH_QBL, UNSPEC_MULEU_S_PH_QBR, UNSPEC_MULQ_RS_PH)
6827         (UNSPEC_MULEQ_S_W_PHL, UNSPEC_MULEQ_S_W_PHR, UNSPEC_DPAU_H_QBL)
6828         (UNSPEC_DPAU_H_QBR, UNSPEC_DPSU_H_QBL, UNSPEC_DPSU_H_QBR)
6829         (UNSPEC_DPAQ_S_W_PH, UNSPEC_DPSQ_S_W_PH, UNSPEC_MULSAQ_S_W_PH)
6830         (UNSPEC_DPAQ_SA_L_W, UNSPEC_DPSQ_SA_L_W, UNSPEC_MAQ_S_W_PHL)
6831         (UNSPEC_MAQ_S_W_PHR, UNSPEC_MAQ_SA_W_PHL, UNSPEC_MAQ_SA_W_PHR)
6832         (UNSPEC_BITREV, UNSPEC_INSV, UNSPEC_REPL_QB, UNSPEC_REPL_PH)
6833         (UNSPEC_CMP_EQ, UNSPEC_CMP_LT, UNSPEC_CMP_LE, UNSPEC_CMPGU_EQ_QB)
6834         (UNSPEC_CMPGU_LT_QB, UNSPEC_CMPGU_LE_QB, UNSPEC_PICK, UNSPEC_PACKRL_PH)
6835         (UNSPEC_EXTR_W, UNSPEC_EXTR_R_W, UNSPEC_EXTR_RS_W, UNSPEC_EXTR_S_H)
6836         (UNSPEC_EXTP, UNSPEC_EXTPDP, UNSPEC_SHILO, UNSPEC_MTHLIP, UNSPEC_WRDSP)
6837         (UNSPEC_RDDSP): Move to mips-dsp.md.
6838         (UNSPEC_ABSQ_S_QB, UNSPEC_ADDU_PH, UNSPEC_ADDU_S_PH, UNSPEC_ADDUH_QB)
6839         (UNSPEC_ADDUH_R_QB, UNSPEC_APPEND, UNSPEC_BALIGN, UNSPEC_CMPGDU_EQ_QB)
6840         (UNSPEC_CMPGDU_LT_QB, UNSPEC_CMPGDU_LE_QB, UNSPEC_DPA_W_PH)
6841         (UNSPEC_DPS_W_PH, UNSPEC_MADD, UNSPEC_MADDU, UNSPEC_MSUB, UNSPEC_MSUBU)
6842         (UNSPEC_MUL_PH, UNSPEC_MUL_S_PH, UNSPEC_MULQ_RS_W, UNSPEC_MULQ_S_PH)
6843         (UNSPEC_MULQ_S_W, UNSPEC_MULSA_W_PH, UNSPEC_MULT, UNSPEC_MULTU)
6844         (UNSPEC_PRECR_QB_PH, UNSPEC_PRECR_SRA_PH_W, UNSPEC_PRECR_SRA_R_PH_W)
6845         (UNSPEC_PREPEND, UNSPEC_SHRA_QB, UNSPEC_SHRA_R_QB, UNSPEC_SHRL_PH)
6846         (UNSPEC_SUBU_PH, UNSPEC_SUBU_S_PH, UNSPEC_SUBUH_QB, UNSPEC_SUBUH_R_QB)
6847         (UNSPEC_ADDQH_PH, UNSPEC_ADDQH_R_PH, UNSPEC_ADDQH_W, UNSPEC_ADDQH_R_W)
6848         (UNSPEC_SUBQH_PH, UNSPEC_SUBQH_R_PH, UNSPEC_SUBQH_W, UNSPEC_SUBQH_R_W)
6849         (UNSPEC_DPAX_W_PH, UNSPEC_DPSX_W_PH, UNSPEC_DPAQX_S_W_PH)
6850         (UNSPEC_DPAQX_SA_W_PH, UNSPEC_DPSQX_S_W_PH, UNSPEC_DPSQX_SA_W_PH):
6851         Moved to mips-dspr2.md.
6852         (UNSPEC_MOVE_TF_PS, UNSPEC_C, UNSPEC_ALNV_PS, UNSPEC_CABS)
6853         (UNSPEC_ADDR_PS, UNSPEC_CVT_PW_PS, UNSPEC_CVT_PS_PW, UNSPEC_MULR_PS)
6854         (UNSPEC_ABS_PS, UNSPEC_RSQRT1, UNSPEC_RSQRT2, UNSPEC_RECIP1)
6855         (UNSPEC_RECIP2, UNSPEC_SINGLE_CC, UNSPEC_SCC): Move from mips-ps-3d.md.
6856         (UNSPEC_LOONGSON_PAVG, UNSPEC_LOONGSON_PCMPEQ, UNSPEC_LOONGSON_PCMPGT)
6857         (UNSPEC_LOONGSON_PEXTR, UNSPEC_LOONGSON_PINSR_0)
6858         (UNSPEC_LOONGSON_PINSR_1, UNSPEC_LOONGSON_PINSR_2)
6859         (UNSPEC_LOONGSON_PINSR_3, UNSPEC_LOONGSON_PMADD)
6860         (UNSPEC_LOONGSON_PMOVMSK, UNSPEC_LOONGSON_PMULHU)
6861         (UNSPEC_LOONGSON_PMULH, UNSPEC_LOONGSON_PMULL, UNSPEC_LOONGSON_PMULU)
6862         (UNSPEC_LOONGSON_PASUBUB, UNSPEC_LOONGSON_BIADD,
6863         UNSPEC_LOONGSON_PSADBH)
6864         (UNSPEC_LOONGSON_PSHUFH, UNSPEC_LOONGSON_PUNPCKH)
6865         (UNSPEC_LOONGSON_PUNPCKL, UNSPEC_LOONGSON_PADDD)
6866         (UNSPEC_LOONGSON_PSUBD): Move to mips-loongson.md.
6867         (UNSPEC_LOONGSON_ALU1_TURN_ENABLED_INSN)
6868         (UNSPEC_LOONGSON_ALU2_TURN_ENABLED_INSN)
6869         (UNSPEC_LOONGSON_FALU1_TURN_ENABLED_INSN)
6870         (UNSPEC_LOONGSON_FALU2_TURN_ENABLED_INSN): Move to mips-loongson2ef.md.
6871         (cpu): Update comment.
6872         * config/mips/sync.md (UNSPEC_COMPARE_AND_SWAP)
6873         (UNSPEC_COMPARE_AND_SWAP_12, UNSPEC_SYNC_OLD_OP, UNSPEC_SYNC_NEW_OP)
6874         (UNSPEC_SYNC_NEW_OP_12, UNSPEC_SYNC_OLD_OP_12, UNSPEC_SYNC_EXCHANGE)
6875         (UNSPEC_SYNC_EXCHANGE_12, UNSPEC_MEMORY_BARRIER): Moved from mips.md.
6876         * config/mips/loongson.md (UNSPEC_LOONGSON_PAVG,
6877         UNSPEC_LOONGSON_PCMPEQ)
6878         (UNSPEC_LOONGSON_PCMPGT, UNSPEC_LOONGSON_PEXTR,
6879         UNSPEC_LOONGSON_PINSR_0)
6880         (UNSPEC_LOONGSON_PINSR_1, UNSPEC_LOONGSON_PINSR_2)
6881         (UNSPEC_LOONGSON_PINSR_3, UNSPEC_LOONGSON_PMADD)
6882         (UNSPEC_LOONGSON_PMOVMSK, UNSPEC_LOONGSON_PMULHU)
6883         (UNSPEC_LOONGSON_PMULH, UNSPEC_LOONGSON_PMULL, UNSPEC_LOONGSON_PMULU)
6884         (UNSPEC_LOONGSON_PASUBUB, UNSPEC_LOONGSON_BIADD,
6885         UNSPEC_LOONGSON_PSADBH)
6886         (UNSPEC_LOONGSON_PSHUFH, UNSPEC_LOONGSON_PUNPCKH)
6887         (UNSPEC_LOONGSON_PUNPCKL, UNSPEC_LOONGSON_PADDD)
6888         (UNSPEC_LOONGSON_PSUBD): Moved from mips.md
6889         * config/mips/loongson2ef.md (UNSPEC_LOONGSON_ALU1_TURN_ENABLED_INSN)
6890         (UNSPEC_LOONGSON_ALU2_TURN_ENABLED_INSN)
6891         (UNSPEC_LOONGSON_FALU1_TURN_ENABLED_INSN)
6892         (UNSPEC_LOONGSON_FALU2_TURN_ENABLED_INSN): Moved from mips.md
6893         * config/mips/mips-dsp.md (UNSPEC_ADDQ, UNSPEC_ADDQ_S, UNSPEC_SUBQ)
6894         (UNSPEC_SUBQ_S, UNSPEC_ADDSC, UNSPEC_ADDWC, UNSPEC_MODSUB)
6895         (UNSPEC_RADDU_W_QB, UNSPEC_ABSQ_S, UNSPEC_PRECRQ_QB_PH)
6896         (UNSPEC_PRECRQ_PH_W, UNSPEC_PRECRQ_RS_PH_W, UNSPEC_PRECRQU_S_QB_PH)
6897         (UNSPEC_PRECEQ_W_PHL, UNSPEC_PRECEQ_W_PHR, UNSPEC_PRECEQU_PH_QBL)
6898         (UNSPEC_PRECEQU_PH_QBR, UNSPEC_PRECEQU_PH_QBLA, UNSPEC_PRECEQU_PH_QBRA)
6899         (UNSPEC_PRECEU_PH_QBL, UNSPEC_PRECEU_PH_QBR, UNSPEC_PRECEU_PH_QBLA)
6900         (UNSPEC_PRECEU_PH_QBRA, UNSPEC_SHLL, UNSPEC_SHLL_S, UNSPEC_SHRL_QB)
6901         (UNSPEC_SHRA_PH, UNSPEC_SHRA_R, UNSPEC_MULEU_S_PH_QBL)
6902         (UNSPEC_MULEU_S_PH_QBR, UNSPEC_MULQ_RS_PH, UNSPEC_MULEQ_S_W_PHL)
6903         (UNSPEC_MULEQ_S_W_PHR, UNSPEC_DPAU_H_QBL, UNSPEC_DPAU_H_QBR)
6904         (UNSPEC_DPSU_H_QBL, UNSPEC_DPSU_H_QBR, UNSPEC_DPAQ_S_W_PH)
6905         (UNSPEC_DPSQ_S_W_PH, UNSPEC_MULSAQ_S_W_PH, UNSPEC_DPAQ_SA_L_W)
6906         (UNSPEC_DPSQ_SA_L_W, UNSPEC_MAQ_S_W_PHL, UNSPEC_MAQ_S_W_PHR)
6907         (UNSPEC_MAQ_SA_W_PHL, UNSPEC_MAQ_SA_W_PHR, UNSPEC_BITREV, UNSPEC_INSV)
6908         (UNSPEC_REPL_QB, UNSPEC_REPL_PH, UNSPEC_CMP_EQ, UNSPEC_CMP_LT)
6909         (UNSPEC_CMP_LE, UNSPEC_CMPGU_EQ_QB, UNSPEC_CMPGU_LT_QB)
6910         (UNSPEC_CMPGU_LE_QB, UNSPEC_PICK, UNSPEC_PACKRL_PH, UNSPEC_EXTR_W)
6911         (UNSPEC_EXTR_R_W, UNSPEC_EXTR_RS_W, UNSPEC_EXTR_S_H, UNSPEC_EXTP)
6912         (UNSPEC_EXTPDP, UNSPEC_SHILO, UNSPEC_MTHLIP, UNSPEC_WRDSP)
6913         (UNSPEC_RDDSP): Moved from mips.md.
6914         * config/mips/mips-dspr2.md (UNSPEC_ABSQ_S_QB, UNSPEC_ADDU_PH)
6915         (UNSPEC_ADDU_S_PH, UNSPEC_ADDUH_QB, UNSPEC_ADDUH_R_QB, UNSPEC_APPEND)
6916         (UNSPEC_BALIGN, UNSPEC_CMPGDU_EQ_QB, UNSPEC_CMPGDU_LT_QB)
6917         (UNSPEC_CMPGDU_LE_QB, UNSPEC_DPA_W_PH, UNSPEC_DPS_W_PH, UNSPEC_MADD)
6918         (UNSPEC_MADDU, UNSPEC_MSUB, UNSPEC_MSUBU, UNSPEC_MUL_PH)
6919         (UNSPEC_MUL_S_PH, UNSPEC_MULQ_RS_W, UNSPEC_MULQ_S_PH, UNSPEC_MULQ_S_W)
6920         (UNSPEC_MULSA_W_PH, UNSPEC_MULT, UNSPEC_MULTU, UNSPEC_PRECR_QB_PH)
6921         (UNSPEC_PRECR_SRA_PH_W, UNSPEC_PRECR_SRA_R_PH_W, UNSPEC_PREPEND)
6922         (UNSPEC_SHRA_QB, UNSPEC_SHRA_R_QB, UNSPEC_SHRL_PH, UNSPEC_SUBU_PH)
6923         (UNSPEC_SUBU_S_PH, UNSPEC_SUBUH_QB, UNSPEC_SUBUH_R_QB, UNSPEC_ADDQH_PH)
6924         (UNSPEC_ADDQH_R_PH, UNSPEC_ADDQH_W, UNSPEC_ADDQH_R_W, UNSPEC_SUBQH_PH)
6925         (UNSPEC_SUBQH_R_PH, UNSPEC_SUBQH_W, UNSPEC_SUBQH_R_W, UNSPEC_DPAX_W_PH)
6926         (UNSPEC_DPSX_W_PH, UNSPEC_DPAQX_S_W_PH, UNSPEC_DPAQX_SA_W_PH)
6927         (UNSPEC_DPSQX_S_W_PH, UNSPEC_DPSQX_SA_W_PH): Moved from mips.md.
6928         * config/mips/mips-ps-3d.md (UNSPEC_MOVE_TF_PS, UNSPEC_C)
6929         (UNSPEC_ALNV_PS, UNSPEC_CABS, UNSPEC_ADDR_PS, UNSPEC_CVT_PW_PS)
6930         (UNSPEC_CVT_PS_PW, UNSPEC_MULR_PS, UNSPEC_ABS_PS, UNSPEC_RSQRT1)
6931         (UNSPEC_RSQRT2, UNSPEC_RECIP1, UNSPEC_RECIP2, UNSPEC_SINGLE_CC)
6932         (UNSPEC_SCC): Moved from mips.md.
6933         * config/mips/mips.c (mips_arch, mips_tune): Change enum from
6934         "processor_type" to "processor".
6935         (mips_rtx_cost_data): Replace PROCESSOR_MAX with NUM_PROCESSOR_VALUES.
6936         * config/mips/mips.h (processor_type): Delete.
6937         (mips_cpu_info.cpu, mips_arch, mips_tune): Change enum from
6938         "processor_type" to "processor".
6940 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
6942         * configure.ac (tm_include_list): Add insn-constants.h.
6943         * configure: Regenerate.
6944         * Makefile.in (GTM_H): Move insn-constants.h here from...
6945         (TM_H): ...here.
6946         * mkconfig.sh: Remove special handling for insn-constants.h.
6948 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
6950         * Makefile.in (BUILD_RTL): Move build/read-md.o to...
6951         (BUILD_MD): ...this new variable.
6952         (simple_generated_rtl_h, simple_generated_rtl_c): New variables
6953         that include the old contents of simple_generated_h and
6954         simple_generated_c.
6955         (simple_generated_h, simple_generated_c): Include them.  Add
6956         insn-constants.h.
6957         (s-%): Make simple_generated_{h,c} stamps depend on $(MD_DEPS)
6958         and simple_generated_rtl_{h,c} stamps depend on insn-conditions.md.
6959         Remove these dependencies from the main rule and include
6960         insn-conditions.md in the command line only if it appears
6961         in the dependency list.
6962         (insn-constants.h, s-constants): Delete.
6963         (build/genconstants.o): Don't depend on $(RTL_BASE_H), $(GTM_H)
6964         or gensupport.h.
6965         (build/genmddeps.o): Likewise.
6966         (genprogrtl): New variable that contains everything from genprogmd
6967         except mddeps and constants.
6968         (genprogmd): Redefine in terms of genprogrtl.  Make these programs
6969         depend on $(BUILD_MD)
6970         (genprog): New variable.  Make these programs depend on
6971         $(BUILD_ERRORS).
6972         * genmddeps.c: Don't include tm.h, rtl.h or gensupport.h.
6973         (main): Use read_md_files instead of init_rtx_reader_args.
6974         * genconstants.c: As for genmddeps.c.
6975         * read-md.h (read_skip_construct): Declare.
6976         * read-md.c (read_skip_construct): New function.
6977         (handle_file): Allow a null handle_directive, skipping the
6978         construct if so.
6979         (parse_include): Update the comment accordingly.
6981 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
6983         * Makefile.in (build/genmddeps.o): Depend on $(READ_MD_H).
6984         * genmddeps.c: Include read-md.h.
6985         (main): Call init_rtx_reader_args instead of init_md_reader_args.
6986         * genattr.c (main): Likewise.
6987         * genattrtab.c (main): Likewise.
6988         * genautomata.c (main): Likewise.
6989         * gencodes.c (main): Likewise.
6990         * genconditions.c (main): Likewise.
6991         * genconfig.c (main): Likewise.
6992         * genconstants.c (main): Likewise.
6993         * genemit.c (main): Likewise.
6994         * genextract.c (main): Likewise.
6995         * genflags.c (main): Likewise.
6996         * genopinit.c (main): Likewise.
6997         * genoutput.c (main): Likewise.
6998         * genpeep.c (main): Likewise.
6999         * genrecog.c (main): Likewise.
7000         * genpreds.c (main): Likewise.
7001         * gensupport.h (in_fname): Move to read-md.h.
7002         (init_md_reader_args_cb): Rename to...
7003         (init_rtx_reader_args_cb): ...this and return a bool.
7004         (init_md_reader_args): Rename to...
7005         (init_rtx_reader_args): ...this and return a bool.
7006         (include_callback): Move to read-md.h.
7007         * gensupport.c (in_fname, include_callback, base_dir, max_include_len)
7008         (file_name_list, first_dir_md_include): Move to read-md.c
7009         (first_bracket_include): Delete unused variable.
7010         (last_dir_md_include): Move to read-md.c.
7011         (process_include): Delete, moving code to read-md.c:handle_include.
7012         (process_rtx): Don't handle INCLUDE.
7013         (save_string): Delete.
7014         (rtx_handle_directive): New function.
7015         (init_md_reader_args_cb): Rename to...
7016         (init_rtx_reader_args_cb): ...this and return a boolean success value.
7017         Use read_md_args.
7018         (init_md_reader_args): Rename to...
7019         (init_rtx_reader_args): ...this and return a boolean success value.
7020         * rtl.def (INCLUDE): Delete.
7021         * rtl.h (read_rtx): Remove "int *" argument.  Add "const char *"
7022         argument.
7023         * read-rtl.c (read_conditions): Don't gobble ')' here.
7024         (read_mapping): Likewise.
7025         (read_rtx): Remove LINENO argument.  Add RTX_NAME argument.
7026         Handle top-level non-rtx constructs here rather than in read_rtx_1.
7027         Store the whole queue in *X.  Remove call to init_md_reader.
7028         (read_rtx_1): Rename to...
7029         (read_rtx_code): ...this.  Call read_nested_rtx to read subrtxes.
7030         Don't handle top-level non-rtx constructs here.  Don't handle (nil)
7031         here.
7032         (read_nested_rtx): New function.  Handle (nil) here rather than
7033         in read_rtx_code.
7034         (read_rtx_variadic): Call read_nested_rtx to read subrtxes.  Don't
7035         gobble ')' here.
7036         * read-md.h (directive_handler_t): New type.
7037         (in_fname, include_callback): Moved from read-md.h.
7038         (read_constants, init_md_reader): Delete.
7039         (read_md_files): Declare.
7040         * read-md.c (file_name_list, in_fname, base_dir, first_dir_md_include)
7041         (last_dir_md_include_ptr, include_callback, max_include_len): Moved
7042         from gensupport.c.
7043         (read_constants): Rename to...
7044         (handle_constants): ...this.  Don't gobble ')' here.
7045         (handle_include, handle_file, handle_toplevel_file)
7046         (parse_include): New functions, mostly taken from gensupport.c.
7047         (init_md_reader): Subsume into...
7048         (read_md_files): ...this new function.
7050 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
7052         * read-md.h (read_char): Increment read_md_lineno after reading '\n'.
7053         (unread_char): Decrement read_md_lineno after putting back '\n'.
7054         * read-md.c (fatal_with_file_and_line): Push back any characters
7055         that we decide not to add to the context.
7056         (read_skip_spaces): Don't increment read_md_lineno here.  Avoid using
7057         fatal_expected_char in cases where '/' ends a line (for example).
7058         (read_name): Don't increment read_md_lineno here.
7059         (read_escape): Likewise.
7060         (read_quoted_string): Likewise.
7061         (read_braced_string): Likewise.
7063 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
7065         * Makefile.in (READ_MD_H): Add $(HASHTAB_H).
7066         (build/genconstants.o): Depend on $(READ_MD_H) gensupport.h.
7067         * genconstants.c: Include read-md.h.
7068         * read-rtl.c (md_constants): Move to read-md.c.
7069         (md_name): Move to read-md.h.
7070         (initialize_iterators): Use leading_string_hash instead of def_hash
7071         and leading_string_eq_p instead of def_name_eq_p.
7072         (read_name): Move to read-md.c.
7073         (def_hash, def_name_eq_p): Delete.
7074         (read_constants, traverse_md_constants): Move to read-md.c.
7075         * rtl.h (md_constant, traverse_md_constants): Move to read-md.h.
7076         * read-md.h: Include hashtab.h.
7077         (md_name): Moved from read-rtl.c.
7078         (md_constant): Moved from read-md.h.
7079         (leading_string_hash, leading_string_eq_p, read_name)
7080         (read_constants, traverse_md_constants): Declare.
7081         * read-md.c (md_constants): Moved from read-rtl.c.
7082         (leading_string_hash, leading_string_eq_p): New functions.
7083         (read_name, read_constants, traverse_md_constants): Moved from
7084         read-rtl.c.
7086 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
7088         * read-rtl.c (md_name): New structure.
7089         (read_name): Take an md_name instead of a buffer pointer.
7090         Use the "string" field instead of strcpy when expanding constants.
7091         (read_constants): Remove the tmp_char argument.  Update the calls
7092         to read_name, using two local name buffers instead of the tmp_char
7093         argument.  Merge the constant-creation code.
7094         (read_conditions): Remove the tmp_char argument.  Update the calls
7095         to read_name, using a local name buffer instead of the tmp_char
7096         argument.
7097         (read_mapping): Replace tmp_char variable with a local name buffer.
7098         Update the calls to read_name.
7099         (read_rtx_1): Likewise.  Update the calls to read_constants and
7100         read_conditions.
7102 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
7104         * Makefile.in (build/read-md.o): Depend on errors.h.
7105         * read-md.h (error_with_line): Declare.
7106         * read-md.c: Include errors.h.
7107         (message_with_line_1): New function, extracted from...
7108         (message_with_line): ...here.
7109         (error_with_line): New function.
7110         * genattrtab.c: If a call to message_with_line is followed by
7111         "have_error = 1;", replace both statements with a call to
7112         error_with_line.
7113         * genoutput.c: Likewise.
7114         * genpreds.c: Likewise.
7115         * genrecog.c: If a call to message_with_line is followed by
7116         "error_count++;", replace both statements with a call to
7117         error_with_line.
7118         (errorcount): Delete.
7119         (main): Don't check it.
7120         * gensupport.c: If a call to message_with_line is followed by
7121         "errors = 1;", replace both statements with a call to error_with_line.
7122         (errors): Delete.
7123         (process_define_cond_exec): Check have_error instead of errors.
7124         (init_md_reader_args_cb): Likewise.  Don't set errors.
7126 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
7128         * read-md.h (read_md_file): Declare.
7129         (read_char, unread_char): New functions.
7130         (fatal_with_file_and_line, fatal_expected_char, read_skip_spaces)
7131         (read_quoted_string, read_string): Remove FILE * argument.
7132         * read-md.c (read_md_file): New variable.
7133         (read_md_filename, read_md_lineno): Update comments and remove
7134         unnecessary initialization.
7135         (fatal_with_file_and_line, fatal_expected_char, read_skip_spaces)
7136         (read_escape, read_quoted_string, read_braced_string, read_string):
7137         Remove FILE * argument.  Update calls accordingly, using read_char
7138         and unread_char instead of getc and ungetc.
7139         * rtl.h (read_rtx): Remove FILE * argument.
7140         * read-rtl.c (iterator_group): Remove FILE * argument from
7141         "find_builtin".
7142         (iterator_traverse_data): Remove "infile" field.
7143         (find_mode, find_code, apply_mode_maps, apply_iterator_to_rtx)
7144         (add_mapping, read_name, read_constants, read_conditions)
7145         (validate_const_int, find_iterator, read_mapping, check_code_iterator)
7146         (read_rtx, read_rtx_1, read_rtx_variadic): Remove FILE * argument.
7147         Remove file arguments from all calls, using read_char and unread_char
7148         instead of getc and ungetc.
7149         * gensupport.c (process_include): Preserve read_md_file around
7150         the include.  Set read_md_file to the handle of the included file.
7151         Update call to read_rtx.
7152         (init_md_reader_args_cb): Set read_md_file to the handle of the file
7153         and remove local FILE *.  Update calls to read_rtx.
7155 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
7157         * read-md.h (read_rtx_lineno): Rename to...
7158         (read_md_lineno): ...this.
7159         (read_rtx_filename): Rename to...
7160         (read_md_filename): ...this.
7161         (copy_rtx_ptr_loc): Rename to...
7162         (copy_md_ptr_loc): ...this.
7163         (print_rtx_ptr_loc): Rename to...
7164         (print_md_ptr_loc): ...this.
7165         * read-md.c: Likewise.  Update references after renaming.
7166         (string_obstack): Replace RTL with MD in comment.
7167         (set_rtx_ptr_loc): Rename to...
7168         (set_md_ptr_loc): ...this.
7169         (get_rtx_ptr_loc): Rename to...
7170         (get_md_ptr_loc): ...this.
7171         * genconditions.c: Update references after renaming.
7172         * genemit.c: Likewise.
7173         * genoutput.c: Likewise.
7174         * genpreds.c: Likewise.
7175         * gensupport.c: Likewise.
7176         * read-rtl.c: Likewise.
7178 2010-06-10  Richard Sandiford  <rdsandiford@googlemail.com>
7180         * Makefile.in (READ_MD_H): New variable.
7181         (BUILD_RTL): Add build/read-md.o.
7182         (lto-wrapper.o): Depend on coretypes.h instead of defaults.h.
7183         (build/gensupport.o, build/read-rtl.o, build/genattr.o)
7184         (build/genattrtab.o, build/genconditions.o build/genemit.o)
7185         (build/genextract.o, build/genflags.o, build/genoutput.o)
7186         (build/genpreds.o, build/genrecog.o): Depend on $(READ_MD_H).
7187         (build/read-md.o): New rule.
7188         * defaults.h (obstack_chunk_alloc, obstack_chunk_free)
7189         (OBSTACK_CHUNK_SIZE, gcc_obstack_init): Move to...
7190         * coretypes.h: ...here.
7191         * lto-wrapper.c: Include coretypes.h instead of defaults.h.
7192         * pretty-print.c (obstack_chunk_alloc, obstack_chunk_free): Delete.
7193         * genattr.c: Include read-md.h.
7194         * genattrtab.c: Likewise.
7195         * genconditions.c: Likewise.
7196         * genemit.c: Likewise.
7197         * genextract.c: Likewise.
7198         * genflags.c: Likewise.
7199         * genoutput.c: Likewise.
7200         * genpreds.c: Likewise.
7201         * genrecog.c: Likewise.
7202         * rtl.h (read_skip_spaces, copy_rtx_ptr_loc, print_rtx_ptr_loc)
7203         (join_c_conditions, print_c_condition, read_rtx_filename)
7204         (read_rtx_lineno): Move to read-md.h.
7205         * read-rtl.c: Include read-md.h.
7206         (ptr_loc, string_obstack, ptr_locs, ptr_loc_obstack)
7207         (joined_conditions, joined_conditions_obstack, read_rtx_lineno)
7208         (read_rtx_filename, fatal_with_file_and_line, fatal_expected_char)
7209         (leading_ptr_hash, leading_ptr_eq_p, set_rtx_ptr_loc, get_rtx_ptr_loc)
7210         (copy_rtx_ptr_loc, print_rtx_ptr_loc, join_c_conditions)
7211         (print_c_condition, read_skip_spaces, read_escape, read_quoted_string)
7212         (read_braced_string, read_string): Move to read-md.c.
7213         (read_rtx): Move some initialization to init_md_reader and call
7214         init_md_reader here.
7215         * gensupport.h (message_with_line, n_comma_elts, scan_comma_elt):
7216         Move to read-md.h.
7217         * gensupport.c: Include read-md.h.
7218         (message_with_line, n_comma_elts, scan_comma_elt): Move to read-md.c.
7219         * read-md.h, read-md.c: New files.
7221 2010-06-10  Anatoly Sokolov  <aesok@post.ru>
7223         * config/moxie/moxie.h (FUNCTION_VALUE, FUNCTION_OUTGOING_VALUE,
7224         LIBCALL_VALUE, FUNCTION_VALUE_REGNO_P): Remove macros.
7225         * config/moxie/moxie-protos.h (moxie_function_value): Remove.
7226         * config/moxie/moxie.c (moxie_function_value): Make static.
7227         (moxie_libcall_value, moxie_function_value_regno_p): New functions.
7228         (TARGET_LIBCALL_VALUE, TARGET_FUNCTION_VALUE_REGNO_P): Define.
7230 2010-06-10  Martin Jambor  <mjambor@suse.cz>
7232         * Makefile.in (tree-sra.o): Add DBGCNT_H to dependencies.
7233         * dbgcnt.def (tree_sra): New counter.
7234         * tree-sra.c: Include dbgcnt.h.
7235         (gate_intra_sra): Check tree_sra debug counter.
7237 2010-06-10  Martin Jambor  <mjambor@suse.cz>
7239         PR tree-optimization/44258
7240         * tree-sra.c (build_access_subtree): Return false iff there is a
7241         partial overlap.
7242         (build_access_trees): Likewise.
7243         (analyze_all_variable_accesses): Disqualify candidates if
7244         build_access_trees returns true for them.
7246 2010-06-10  Alexandre Oliva  <aoliva@redhat.com>
7248         PR debug/41371
7249         * var-tracking.c (find_loc_in_1pdv): Remove recursion, only
7250         tail-recurse into canonical node.  Fast-forward over
7251         non-canonical VALUEs.
7253 2010-06-10  H.J. Lu  <hongjiu.lu@intel.com>
7255         PR boostrap/44470
7256         * config/i386/i386.md (*add<mode>_1): Revert revision 160394.
7257         (*addsi_1_zext) <TYPE_LEA>: Likewise.
7258         (add lea splitter): Likewise.
7259         (add_zext lea splitter): Likewise.
7261 2010-06-10  Joseph Myers  <joseph@codesourcery.com>
7263         * common.opt (fshow-column): Don't mark as C ObjC C++ ObjC++.
7265 2010-06-10  Jan Hubicka  <jh@suse.cz>
7267         * df-problems.c (df_live_problem_data): Add live_bitmaps.
7268         (df_live_alloc): Initialize problem data and live_osbtacks.
7269         (df_live_finalize): Remove obstack, problem data; do not
7270         clear all bitmaps.
7271         (df_live_top_dump, df_live_bottom_dump): Do not dump old
7272         data when not allocated.
7273         (df_live_verify_solution_start): Do not allocate problem data.
7274         (df_live_verify_solution_end): Check if out is allocated.
7275         (struct df_md_problem_data): New structure.
7276         (df_md_alloc): Allocate problem data.
7277         (df_md_free): Free problem data; do not clear bitmaps.
7279 2010-06-10  Jan Beulich  <jbeulich@novell.com>
7281         PR bootstrap/37304
7282         * configure.ac: Replace $() with ${} when intending to expand
7283         variables rather than invoking commands.
7284         * configure: Re-generate.
7286 2010-06-10  Jan Hubicka  <jh@suse.cz>
7288         PR rtl-optimization/44460
7289         * emit-rtl.c (set_mem_attributes_minus_bitpos): Remove
7290         TYPE_NEEDS_CONSTRUCTING sanity check.
7292 2010-06-10  Gerald Pfeifer  <gerald@pfeifer.com>
7294         * doc/include/fdl.texi: Move to GFDL version 1.3.
7296         * doc/cpp.texi: Move to GFDL version 1.3.
7297         * doc/gcc.texi: Move to GFDL version 1.3.  Fix copyright years.
7298         * doc/gccint.texi: Move to GFDL version 1.3.
7299         * doc/gcov.texi: Move to GFDL version 1.3.  Update copyright years.
7300         * doc/install.texi: Move to GFDL version 1.3.  Fix copyright years.
7301         * doc/invoke.texi: Move to GFDL version 1.3.
7303 2010-06-09  Jan Hubicka  <jh@suse.cz>
7305         * ipa-pure-const.c (propagate_pure_const, propagate_noreturn):
7306         Break out from ...
7307         (propagate) ... here; swap the order.
7309 2010-06-09  Jan Hubicka  <jh@suse.cz>
7311         * bitmap.c (bitmap_elt_insert_after, bitmap_first_set_bit,
7312         bitmap_first_set_bit, bitmap_last_set_bit, bitmap_last_set_bit,
7313         bitmap_and_into, bitmap_and_compl_into, bitmap_set_range,
7314         bitmap_compl_and_into, bitmap_elt_ior): Use checking asserts.
7316 2010-06-09  Changpeng Fang  <changpeng.fang@amd.com>
7318         * tree-ssa-loop-prefetch.c (gather_memory_references_ref):
7319         Do not the gather memory reference in the outer loop if the step
7320         is not a constant.
7322 2010-06-09  Changpeng Fang  <changpeng.fang@amd.com>
7324         * tree-ssa-loop-prefetch.c (PREFETCH_MOD_TO_UNROLL_FACTOR_RATIO) :
7325         Change the PREFETCH_MOD_TO_UNROLL_FACTOR_RATIO threshold value from
7326         8 to 4.  Minor change of the related comments.
7328 2010-06-09  Sebastian Pop  <sebastian.pop@amd.com>
7330         * tree-scalar-evolution.c (instantiate_scev_name): Do not fail
7331         the scev analysis when the variable is not used outside the loop
7332         in a close phi node: call compute_overall_effect_of_inner_loop.
7334 2010-06-09  Sebastian Pop  <sebastian.pop@amd.com>
7336         * graphite-sese-to-poly.c (single_pred_cond): Renamed
7337         single_pred_cond_non_loop_exit.  Return NULL for loop exit edges.
7338         (build_sese_conditions_before): Renamed call to single_pred_cond.
7339         (build_sese_conditions_after): Same.
7341 2010-06-09  Sebastian Pop  <sebastian.pop@amd.com>
7343         * graphite-poly.h: Fix comments and indentation.
7344         * graphite-sese-to-poly.c: Same.
7345         (build_sese_conditions_before): Compute stmt and gbb only when needed.
7346         * tree-chrec.c: Fix comments and indentation.
7347         (tree-ssa-loop-niter.c): Same.
7349 2010-06-09  Eric Botcazou  <ebotcazou@adacore.com>
7351         PR rtl-optimization/42461
7352         * dce.c (deletable_insn_p): Return true for const or pure calls again.
7353         * except.c (insn_could_throw_p): Return false if !flag_exceptions.
7355 2010-06-09  Jan Hubicka  <jh@suse.cz>
7357         * bitmap.c (bitmap_and): Walk array forward.
7358         (bitmap_and_compl_into): Likewise.
7359         (bitmap_xor): Likewise.
7360         (bitmap_xor_into):  Likewise.
7361         (bitmap_equal_p): Likewise.
7362         (bitmap_intersect_p): Likewise.
7363         (bitmap_intersect_compl_p): Likewise.
7364         (bitmap_ior_and_into): Likewise.
7365         (bitmap_elt_copy): Likewise.
7366         (bitmap_and_compl): Likewise.
7367         (bitmap_elt_ior): Likewise.
7369 2010-06-09  Dave Korn  <dave.korn.cygwin@gmail.com>
7371         * opts-common.c (prune_options): Ensure replacement argv array
7372         is correctly terminated by a NULL entry.
7374 2010-06-09  Jan Hubicka  <jh@suse.cz>
7376         * cgraph.h (varpool_first_static_initializer,
7377         varpool_next_static_initializer): Make checking only when
7378         checking enabled.
7379         * tree-vectorizer.h (vinfo_for_stmt): Remove check.
7380         (set_vinfo_for_stmt, get_earlier_stmt, is_loop_header_bb_p): Change
7381         gcc_assert to gcc_checking_assert.
7382         * tree-flow-inline.h (gimple_vop, get_var_ann, relink_imm_use,
7383         phi_nodes, set_phi_nodes, phi_arg_index_from_use, op_iter_next_use,
7384         op_iter_next_def, op_iter_next_tree, op_iter_init, op_iter_init_use,
7385         op_iter_init_phiuse, op_iter_init_phidef,
7386         array_ref_contains_indirect_ref, ref_contains_array_ref): Use
7387         gcc_checking_assert.
7388         * emit-rtl.h (set_first_insn, set_last_insn): Likewise.
7389         * tree-ssa-live.h (var_to_partition, var_to_partition_to_var,
7390         partition_is_global, live_on_entry, live_on_exit,
7391         live_merge_and_clear): Likewise.
7392         * system.h (gcc_checking_assert): New macro.
7393         * gimple.h (set_bb_seq): Use gcc_checking_assert.
7395 2010-06-09  Jason Merrill  <jason@redhat.com>
7397         * Makefile.in (TAGS): Collect tags info from c-family.
7399 2010-06-09  Jan Hubicka  <jh@suse.cz>
7401         * gimple.h (gcc_gimple_checking_assert): New macro.
7402         (gimple_set_def_ops, gimple_set_use_ops,
7403         gimple_set_vuse, gimple_set_vdef,
7404         gimple_omp_subcode, gimple_omp_set_subcode, gimple_ops, gimple_op,
7405         gimple_op_ptr, gimple_op_ptr, gimple_set_op, gimple_bind_set_block,
7406         gimple_asm_input_op, gimple_asm_input_op_ptr, gimple_asm_set_input_op,
7407         gimple_asm_output_op, gimple_asm_output_op_ptr,
7408         gimple_asm_set_output_op, gimple_asm_clobber_op,
7409         gimple_asm_set_clobber_op, gimple_asm_label_op,
7410         gimple_asm_set_label_op, gimple_try_set_kind,
7411         gimple_try_catch_is_cleanup, gimple_try_set_catch_is_cleanup,
7412         gimple_phi_arg, gimple_switch_num_labels, gimple_switch_set_index,
7413         gimple_switch_label, gimple_switch_set_label, gimple_omp_for_index,
7414         gimple_omp_for_index_ptr, gimple_omp_for_set_index,
7415         gimple_omp_for_initial, gimple_omp_for_initial_ptr,
7416         gimple_omp_for_set_initial, gimple_omp_for_final,
7417         gimple_omp_for_final_ptr, gimple_omp_for_set_final,
7418         gimple_omp_for_incr, gimple_omp_for_incr_ptr, gimple_omp_for_set_incr,
7419         gimple_omp_for_set_cond, gimple_omp_for_cond): Make checking
7420         conditional with ENABLE_GIMPLE_CHECKING.
7421         (gimple_phi_set_arg): Likewise; replace memcpy by assignment.
7423 2010-06-09  Sandra Loosemore  <sandra@codesourcery.com>
7425         * tree-ssa-loop-ivopts.c (adjust_setup_cost): New function.
7426         (get_computation_cost_at): Use it.
7427         (determine_use_iv_cost_condition): Likewise.
7428         (determine_iv_cost): Likewise.
7430 2010-06-09  Richard Guenther  <rguenther@suse.de>
7432         * tree-ssa-loop-niter.c (simplify_replace_tree): Do not
7433         replace constants.
7435 2010-06-09  Kai Tietz  <kai.tietz@onevision.com>
7437         * c-objc-common.c (c_tree_printer): Pre-intialize t by NULL_TREE.
7439 2010-06-09  Martin Jambor  <mjambor@suse.cz>
7441         PR tree-optimization/44423
7442         * tree-sra.c (dump_access): Dump also grp_assignment_read.
7443         (analyze_access_subtree): Pass negative allow_replacements to children
7444         if the current type is scalar.
7446 2010-06-09  Joern Rennecke  <joern.rennecke@embecosm.com>
7448         PR testsuite/42843
7449         * gcc-plugin.h (int plugin_is_GPL_compatible): Declare as extern "C".
7450         * doc/plugins.texi (Plugin license check): Update information
7451         on type of plugin_is_GPL_compatible.
7452         * Makefile.in (PLUGINCC): Define as $(COMPILER).
7453         (PLUGINCFLAGS): Define as $(COMPILER_FLAGS).
7455 2010-06-09  Bernd Schmidt  <bernds@codesourcery.com>
7457         * config/arm/arm.c (thumb2_reorg): New function.
7458         (arm_reorg): Call it.
7459         * config/arm/thumb2.md (define_peephole2 for flag clobbering
7460         arithmetic operations): Delete.
7462 2010-06-09  Edmar Wienskoski  <edmar@freescale.com>
7464         PR target/44067
7465         * config/rs6000/rs6000.md (DIFD): Do not split dpfp values for
7466         e500v2 target.
7468 2010-06-09  Joern Rennecke  <joern.rennecke@embecosm.com>
7470         PR plugins/44459
7471         * gcc-plugin.h: Encapsulate all declarations in extern "C".
7473 2010-06-08  Jan Hubicka  <jh@suse.cz>
7475         * basic-block.h (single_succ_edge, single_pred_edge, ei_container,
7476         ei_next, ei_prev): Do sanity checking with ENABLE_CHECKING only.
7478 2010-06-08  Sandra Loosemore  <sandra@codesourcery.com>
7480         PR tree-optimization/39874
7481         PR middle-end/28685
7482         * gimple.h (maybe_fold_and_comparisons, maybe_fold_or_comparisons):
7483         Declare.
7484         * gimple-fold.c (canonicalize_bool, same_bool_comparison_p,
7485         same_bool_result_p): New.
7486         (and_var_with_comparison, and_var_with_comparison_1,
7487         and_comparisons_1, and_comparisons, maybe_fold_and_comparisons): New.
7488         (or_var_with_comparison, or_var_with_comparison_1,
7489         or_comparisons_1, or_comparisons, maybe_fold_or_comparisons): New.
7490         * tree-ssa-reassoc.c (eliminate_redundant_comparison): Use
7491         maybe_fold_and_comparisons or maybe_fold_or_comparisons instead
7492         of combine_comparisons.
7493         * tree-ssa-ifcombine.c (ifcombine_ifandif, ifcombine_iforif): Likewise.
7495 2010-06-08  Anatoly Sokolov  <aesok@post.ru>
7497         * config/pdp11/pdp11.h (FUNCTION_VALUE, FUNCTION_OUTGOING_VALUE,
7498         LIBCALL_VALUE, FUNCTION_VALUE_REGNO_P): Remove macros.
7499         * config/pdp11/pdp11.c (pdp11_function_value, pdp11_libcall_value,
7500         pdp11_function_value_regno_p): New functions.
7501         (TARGET_FUNCTION_VALUE, TARGET_LIBCALL_VALUE,
7502         TARGET_FUNCTION_VALUE_REGNO_P): Define.
7504 2010-06-08  Kazu Hirata  <kazu@codesourcery.com>
7506         * config/arm/arm.c (arm_rtx_costs_1): Don't special case for
7507         Thumb-2 in the MINUS case.
7509 2010-06-08  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
7511         * doc/tm.texi (Per-Function Data): Do not reference ggc_alloc.
7513         * doc/gty.texi (GTY Options): Document typed GC allocation and
7514         variable_size GTY option.
7516         * ggc-internal.h: New.
7518         * ggc.h: Update copyright year.
7519         (digit_string): Move to stringpool.c.
7520         (ggc_mark_stringpool, ggc_purge_stringpool, ggc_mark_roots)
7521         (gt_pch_save_stringpool, gt_pch_fixup_stringpool)
7522         (gt_pach_restore_stringpool, gt_pch_p_S, gt_pch_note_object)
7523         (init_ggc_pch, ggc_pch_count_object, ggc_pch_total_size)
7524         (ggc_pch_this_base, ggc_pch_alloc_object, ggc_pch_prepare_write)
7525         (ggc_pch_write_object, ggc_pch_finish, ggc_pch_read)
7526         (ggc_force_collect, ggc_get_size, ggc_statistics)
7527         (ggc_print_common_statistics): Move to ggc-internal.h.
7528         (digit_vector, new_ggc_zone, destroy_ggc_zone, ggc_alloc_stat)
7529         (ggc_alloc, ggc_alloc_cleared, ggc_realloc, ggc_calloc, GGC_NEW)
7530         (GGC_CNEW, GGC_NEWVEC, GGC_CNEWVEC, GGC_NEWVAR, ggc_alloc_rtvec)
7531         (ggc_alloc_tree, gt_pch_save, ggc_min_expand_heuristic)
7532         (ggc_min_heapsize_heuristic, ggc_alloc_zone)
7533         (ggc_alloc_zone_pass_stat): Remove.
7534         (ggc_internal_alloc_stat, ggc_internal_alloc)
7535         (ggc_internal_cleared_alloc_stat): New.
7536         (GGC_RESIZEVEC, GGC_RESIZEVAR): Redefine.
7537         (ggc_internal_vec_alloc_stat)
7538         (ggc_internal_cleared_vec_alloc_stat)
7539         (ggc_internal_vec_alloc_stat, ggc_internal_cleared_vec_alloc)
7540         (ggc_alloc_atomic_stat, ggc_alloc_atomic)
7541         (ggc_alloc_cleared_atomic, ggc_cleared_alloc_htab_ignore_args)
7542         (ggc_cleared_alloc_ptr_array_two_args): New.
7543         (htab_create_ggc, splay_tree_new_ggc): Redefine.
7544         (ggc_splay_alloc): Change the type of the first argument to
7545         enum gt_types_enum.
7546         (ggc_alloc_string): Make macro.
7547         (ggc_alloc_string_stat): New.
7548         (ggc_strdup): Redefine.
7549         (rtl_zone, tree_zone, tree_id_zone): Declare unconditionally.
7550         (ggc_alloc_rtvec_sized): New.
7551         (ggc_alloc_zone_stat): Rename to ggc_internal_alloc_zone_stat.
7552         (ggc_internal_alloc_zone_pass_stat, ggc_internal_alloc_zone_stat)
7553         (ggc_internal_cleared_alloc_zone_stat)
7554         (ggc_internal_zone_alloc_stat)
7555         (ggc_internal_zone_cleared_alloc_stat)
7556         (ggc_internal_zone_vec_alloc_stat)
7557         (ggc_alloc_zone_rtx_def_stat)
7558         (ggc_alloc_zone_tree_node_stat)
7559         (ggc_alloc_zone_cleared_tree_node_stat)
7560         (ggc_alloc_cleared_gimple_statement_d_stat): New.
7562         * ggc-common.c: Include ggc-internal.h.
7563         (ggc_internal_cleared_alloc_stat): Rename from
7564         ggc_alloc_cleared_stat.
7565         (ggc_realloc_stat): Use ggc_internal_alloc_stat.
7566         (ggc_calloc): Remove.
7567         (ggc_cleared_alloc_htab_ignore_args): New.
7568         (ggc_cleared_alloc_ptr_array_two_args): New.
7569         (ggc_splay_alloc): Add obj_type parameter.
7570         (init_ggc_heuristics): Formatting fixes.
7572         * ggc-none.c: Update copyright year.
7573         (ggc_alloc_stat): Rename to ggc_alloc_stat.
7574         (ggc_alloc_cleared_stat): Rename to
7575         ggc_internal_cleared_alloc_stat.
7576         (struct alloc_zone, rtl_zone, tree_zone, tree_id_zone): New.
7578         * ggc-page.c: Update copyright year.  Include ggc-internal.h.
7579         Remove references to ggc_alloc in comments.
7580         (ggc_alloc_typed_stat): Call ggc_internal_alloc_stat.
7581         (ggc_alloc_stat): Rename to ggc_internal_alloc_stat.
7582         (new_ggc_zone, destroy_ggc_zone): Remove.
7583         (struct alloc_zone, rtl_zone, tree_zone, tree_id_zone): New.
7585         * ggc-zone.c: Include ggc-internal.h.  Remove references to
7586         ggc_alloc in comments.
7587         (ggc_alloc_zone_stat): ggc_internal_alloc_zone_stat.
7588         (ggc_internal_alloc_zone_pass_stat): New.
7589         (ggc_internal_cleared_alloc_zone_stat): New.
7590         (ggc_alloc_typed_stat): Use ggc_internal_alloc_zone_pass_stat.
7591         (ggc_alloc_stat): Rename ggc_internal_alloc_stat.
7592         (new_ggc_zone, destroy_ggc_zone): Remove.
7594         * stringpool.c: Update copyright year.  Include ggc-internal.h
7595         (digit_vector): Make static.
7596         (digit_string): Moved from ggc.h.
7597         (stringpool_ggc_alloc): Use ggc_alloc_atomic.
7598         (ggc_alloc_string): Rename to ggc_alloc_string_stat.
7600         * Makefile.in (GGC_INTERNAL_H): New.
7601         (ggc_common.o, ggc-page.o, ggc-zone.o, stringpool.o): Add
7602         $(GGC_INTERNAL_H) to dependencies.
7604         * gentype.c: Update copyright year.
7605         (walk_type): Accept variable_size GTY option.
7606         (USED_BY_TYPED_GC_P): New macro.
7607         (write_enum_defn): Use USED_BY_TYPED_GC_P.  Do not output
7608         whitespace at the end of strings.
7609         (get_type_specifier, variable_size_p): New functions.
7610         (alloc_quantity, alloc_zone): New enums.
7611         (write_typed_alloc_def): New function.
7612         (write_typed_struct_alloc_def): Likewise.
7613         (write_typed_typed_typedef_alloc_def): Likewise.
7614         (write_typed_alloc_defns): Likewise.
7615         (output_typename, write_splay_tree_allocator_def): Likewise.
7616         (write_splay_tree_allocators): Likewise.
7617         (main): Call write_typed_alloc_defns and
7618         write_splay_tree_allocators.
7620         * lto-streamer.h (lto_file_decl_data_ptr): New.
7622         * passes.c (order): Define using cgraph_node_ptr.
7624         * strinpool.c (struct string_pool_data): Declare nested_ptr using
7625         ht_identifier_ptr.
7627         * gimple.h (union gimple_statement_d): Likewise.
7629         * rtl.h (struct rtx_def): Likewise.
7630         (struct rtvec_def): Likewise.
7632         * tree.h (union tree_node): Likewise.
7634         * tree-ssa-operands.h (struct ssa_operand_memory_d): Likewise.
7636         * cfgloop.c (record_loop_exits): Use htab_create_ggc.
7638         * tree-scalar-evolution.c (scev_initialize): Likewise.
7640         * alias.c (record_alias_subset): Update splay_tree_new_ggc call.
7642         * dwarf2asm.c (dw2_force_const_mem): Likewise.
7644         * omp-low.c (lower_omp_critical): Likewise.
7646         * bitmap.h (struct bitmap_head_def): Update comment to not
7647         reference ggc_alloc.
7649         * config/pa/pa.c (get_deferred_label): Use GGC_RESIZEVEC.
7651         * ira.c (fix_reg_equiv_init): Use GGC_RESIZEVEC.
7653         * ipa-prop.c (duplicate_ggc_array): Rename to
7654         duplicate_ipa_jump_func_array.  Use typed GC allocation.
7655         (ipa_edge_duplication_hook): Call duplicate_ipa_jump_func_array.
7657         * gimple.c (gimple_alloc_stat): Use
7658         ggc_alloc_cleared_gimple_statement_d_stat.
7660         * varasm.c (create_block_symbol): Use ggc_alloc_zone_rtx_def.
7662         * tree.c (make_node_stat): Use
7663         ggc_alloc_zone_cleared_tree_node_stat.
7664         (make_tree_vec_stat): Likewise.
7665         (build_vl_exp_stat): Likewise.
7666         (copy_node_stat): Use ggc_alloc_zone_tree_node_stat.
7667         (make_tree_binfo_stat): Likewise.
7668         (tree_cons_stat): Likewise.
7670         * rtl.c (rtx_alloc_stat): Use ggc_alloc_zone_rtx_def_stat.
7671         (shallow_copy_rtx_stat): Likewise.
7672         (make_node_stat): Likewise.
7674         * lto-symtab.c: Fix comment.
7676         * tree-cfg.c (create_bb): Update comment to not reference
7677         ggc_alloc_cleared.
7678         * tree-ssa-structalias.c (struct heapvar_for_stmt): Fix param_is value.
7680         * varpool.c (varpool_node): Use typed GC allocation.
7681         (varpool_extra_name_alias): Likewise.
7683         * varasm.c (emutls_decl): Likewise.
7684         (get_unnamed_section): Likewise.
7685         (get_noswitch_section): Likewise.
7686         (get_section): Likewise.
7687         (get_block_for_section): Likewise.
7688         (build_constant_desc): Likewise.
7689         (create_constant_pool): Likewise.
7690         (force_const_mem): Likewise.
7692         * tree.c (build_vl_exp_stat): Likewise.
7693         (build_real): Likewise.
7694         (build_string): Likewise.
7695         (decl_debug_expr_insert): Likewise.
7696         (decl_value_expr_insert): Likewise.
7697         (type_hash_add): Likewise.
7698         (build_omp_clause): Likewise.
7700         * tree-ssanames.c (duplicate_ssa_name_ptr_info): Likewise.
7702         * tree-ssa.c (init_tree_ssa): Likewise.
7704         * tree-ssa-structalias.c (heapvar_insert): Likewise.
7706         * tree-ssa-operands.c (ssa_operand_alloc): Likewise.
7708         * tree-ssa-loop-niter.c (record_estimate): Likewise.
7710         * tree-ssa-alias.c (get_ptr_info): Likewise.
7712         * tree-scalar-evolution.c (new_scev_info_str): Likewise.
7714         * tree-phinodes.c (allocate_phi_node): Likewise.
7716         * tree-iterator.c (tsi_link_before): Likewise.
7717         (tsi_link_after): Likewise.
7719         * tree-eh.c (add_stmt_to_eh_lp_fn): Likewise.
7721         * tree-dfa.c (create_var_ann): Likewise.
7723         * tree-cfg.c (create_bb): Likewise.
7725         * toplev.c (alloc_for_identifier_to_locale): Likewise.
7726         (general_init): Likewise.
7728         * stringpool.c (stringpool_ggc_alloc): Likewise.
7729         (gt_pch_save_stringpool): Likewise.
7731         * sese.c (if_region_set_false_region): Likewise.
7733         * passes.c (do_per_function_toporder): Likewise.
7735         * optabs.c (set_optab_libfunc): Likewise.
7736         (set_conv_libfunc): Likewise.
7738         * lto-symtab.c (lto_symtab_register_decl): Likewise.
7740         * lto-streamer-in.c (lto_input_eh_catch_list): Likewise.
7741         (input_eh_region): Likewise.
7742         (input_eh_lp): Likewise.
7743         (make_new_block): Likewise.
7744         (unpack_ts_real_cst_value_fields): Likewise.
7746         * lto-section-in.c (lto_new_in_decl_state): Likewise.
7748         * lto-cgraph.c (input_node_opt_summary): Likewise.
7750         * loop-init.c (loop_optimizer_init): Likewise.
7752         * lambda.h (lambda_vector_new): Likewise.
7754         * lambda-code.c (replace_uses_equiv_to_x_with_y): Likewise.
7756         * ira.c (update_equiv_regs): Likewise.
7758         * ipa.c (cgraph_node_set_new): Likewise.
7759         (cgraph_node_set_add): Likewise.
7760         (varpool_node_set_new): Likewise.
7761         (varpool_node_set_add): Likewise.
7763         * ipa-prop.c (ipa_compute_jump_functions_for_edge): Likewise.
7764         (duplicate_ipa_jump_func_array): Likewise.
7765         (ipa_read_node_info): Likewise.
7767         * ipa-cp.c (ipcp_create_replace_map): Likewise.
7769         * integrate.c (get_hard_reg_initial_val): Likewise.
7771         * gimple.c (gimple_alloc_stat): Likewise.
7772         (gimple_build_omp_for): Likewise.
7773         (gimple_seq_alloc): Likewise.
7774         (gimple_copy): Likewise.
7776         * gimple-iterator.c (gsi_insert_before_without_update): Likewise.
7777         (gsi_insert_after_without_update): Likewise.
7779         * function.c (add_frame_space): Likewise.
7780         (insert_temp_slot_address): Likewise.
7781         (assign_stack_temp_for_type): Likewise.
7782         (allocate_struct_function): Likewise.
7783         (types_used_by_var_decl_insert): Likewise.
7785         * except.c (init_eh_for_function): Likewise.
7786         (gen_eh_region): Likewise.
7787         (gen_eh_region_catch): Likewise.
7788         (gen_eh_landing_pad): Likewise.
7789         (add_call_site): Likewise.
7791         * emit-rtl.c (get_mem_attrs): Likewise.
7792         (get_reg_attrs): Likewise.
7793         (start_sequence): Likewise.
7794         (init_emit): Likewise.
7796         * dwarf2out.c (new_cfi): Likewise.
7797         (queue_reg_save): Likewise.
7798         (dwarf2out_frame_init): Likewise.
7799         (new_loc_descr): Likewise.
7800         (find_AT_string): Likewise.
7801         (new_die): Likewise.
7802         (add_var_loc_to_decl): Likewise.
7803         (clone_die): Likewise.
7804         (clone_as_declaration): Likewise.
7805         (break_out_comdat_types): Likewise.
7806         (new_loc_list): Likewise.
7807         (loc_descriptor): Likewise.
7808         (add_loc_descr_to_each): Likewise.
7809         (add_const_value_attribute): Likewise.
7810         (tree_add_const_value_attribute): Likewise.
7811         (add_comp_dir_attribute): Likewise.
7812         (add_name_and_src_coords_attributes): Likewise.
7813         (lookup_filename): Likewise.
7814         (store_vcall_insn): Likewise.
7815         (dwarf2out_init): Likewise.
7817         * dbxout.c (dbxout_init): Likewise.
7819         * config/xtensa/xtensa.c (xtensa_init_machine_status): Likewise.
7821         * config/sparc/sparc.c (sparc_init_machine_status): Likewise.
7823         * config/score/score7.c (score7_output_external): Likewise.
7825         * config/score/score3.c (score3_output_external): Likewise.
7827         * config/s390/s390.c (s390_init_machine_status): Likewise.
7829         * config/rs6000/rs6000.c (builtin_function_type): Likewise.
7830         (rs6000_init_machine_status): Likewise.
7831         (output_toc): Likewise.
7833         * config/pa/pa.c (pa_init_machine_status): Likewise.
7834         (get_deferred_plabel): Likewise.
7836         * config/moxie/moxie.c (moxie_init_machine_status): Likewise.
7838         * config/mmix/mmix.c (mmix_init_machine_status): Likewise.
7840         * config/mips/mips.c (mflip_mips16_use_mips16_p): Likewise.
7842         * config/mep/mep.c (mep_init_machine_status): Likewise.
7843         (mep_note_pragma_flag): Likewise.
7845         * config/m32c/m32c.c (m32c_init_machine_status): Likewise.
7847         * config/iq2000/iq2000.c (iq2000_init_machine_status): Likewise.
7849         * config/ia64/ia64.c (ia64_init_machine_status): Likewise.
7851         * config/i386/winnt.c (i386_pe_record_external_function): Likewise.
7852         (i386_pe_maybe_record_exported_symbol): Likewise.
7854         * config/i386/i386.c (get_dllimport_decl): Likewise.
7855         (ix86_init_machine_status): Likewise.
7856         (assign_386_stack_local): Likewise.
7858         * config/frv/frv.c (frv_init_machine_status): Likewise.
7860         * config/darwin.c (machopic_indirection_name): Likewise.
7862         * config/cris/cris.c (cris_init_machine_status): Likewise.
7864         * config/bfin/bfin.c (bfin_init_machine_status): Likewise.
7866         * config/avr/avr.c (avr_init_machine_status): Likewise.
7868         * config/arm/arm.c (arm_init_machine_status): Likewise.
7870         * config/alpha/alpha.c (alpha_init_machine_status): Likewise.
7871         (alpha_need_linkage): Likewise.
7872         (alpha_use_linkage): Likewise.
7874         * cgraph.c (cgraph_allocate_node): Likewise.
7875         (cgraph_create_edge_1): Likewise.
7876         (cgraph_create_indirect_edge): Likewise.
7877         (cgraph_add_asm_node): Likewise.
7879         * cfgrtl.c (init_rtl_bb_info): Likewise.
7881         * cfgloop.c (alloc_loop): Likewise.
7882         (rescan_loop_exit): Likewise.
7884         * cfg.c (init_flow): Likewise.
7885         (alloc_block): Likewise.
7886         (unchecked_make_edge): Likewise.
7888         * c-parser.c (c_parse_init): Likewise.
7889         (c_parse_file): Likewise.
7891         * c-decl.c (bind): Likewise.
7892         (record_inline_static): Likewise.
7893         (push_scope): Likewise.
7894         (make_label): Likewise.
7895         (lookup_label_for_goto): Likewise.
7896         (finish_struct): Likewise.
7897         (finish_enum): Likewise.
7898         (c_push_function_context): Likewise.
7900         * bitmap.c (bitmap_element_allocate): Likewise.
7901         (bitmap_gc_alloc_stat): Likewise.
7903         * alias.c (record_alias_subset): Likewise.
7904         (init_alias_analysis): Likewise.
7906 2010-06-08  Shujing Zhao  <pearly.zhao@oracle.com>
7908         * fold-const.c (fold_comparison): Remove redundant parenthesis.
7909         * tree-inline.c (expand_call_inline): Pass translated return value of
7910         cgraph_inline_failed_string to diagnostic function.
7912 2010-06-08  Andrew Pinski  <pinskia@gmail.com>
7913             Shujing Zhao  <pearly.zhao@oracle.com>
7915         PR c/37724
7916         * c-typeck.c (convert_for_assignment): Call pedwarn_init if the
7917         implicit bad conversions is initialization.
7918         (error_init): Use gmsgid instead of msgid for argument name and change
7919         the call for error.
7920         (pedwarn_init): Use gmsgid instead of msgid for argument name and
7921         change the call for pedwarn.
7922         (warning_init): Use gmsgid instead of msgid for argument name and
7923         change the call for warning.
7925 2010-06-07  Nathan Froyd  <froydnj@codesourcery.com>
7927         * config/mips/mips-protos.h (mips_print_operand): Delete.
7928         (mips_print_operand_address): Delete.
7929         * config/mips/mips.h (mips_print_operand_punct): Delete.
7930         (PRINT_OPERAND): Delete.
7931         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
7932         (PRINT_OPERAND_ADDRESS): Delete.
7933         * config/mips/mips.c (mips_print_operand_punct): Make static.
7934         (mips_print_operand_address): Make static.
7935         (mips_print_operand): Make static.  Call
7936         mips_print_operand_punct_valid_p.
7937         (mips_print_operand_punct_valid_p): New function.
7938         (TARGET_PRINT_OPERAND, TARGET_PRINT_OPERAND_ADDRESS): Define.
7939         (TARGET_PRINT_OPERAND_PUNCT_VALID_P): Define.
7941 2010-06-07  Jan Hubicka  <jh@suse.cz>
7943         PR middle-end/44454
7944         (df_lr_top_dump, df_lr_bottom_dump): Check that in/out bitmaps
7945         are allocated.
7947 2010-06-07  Kaz Kojima  <kkojima@gcc.gnu.org>
7949         * config/sh/sh.c (sh_build_builtin_va_list): Set tree type
7950         name of RECORD.
7952 2010-06-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
7954         * doc/sourcebuild.texi (Effective-Target Keywords, Other
7955         attributes): Document gas.
7957 2010-06-07  Uros Bizjak  <ubizjak@gmail.com>
7959         * config/i386/i386.md (*add<mode>_1): Remove alternative 2.
7960         <TYPE_LEA>: Split instruction.
7961         <default>: Remove alternative 2 handling.
7962         (*addsi_1_zext) <TYPE_LEA>: Split instruction.
7963         (add lea splitter): Generate SImode lea for mode sizes <= SImode.
7964         (add_zext lea splitter): Use ix86_lea_for_add_ok in insn predicate.
7966         (*movsi_1) <TYPE_LEA>: Use %a modifier to output operand 1.
7967         (ashift_zext lea splitter): Use DImode for multiplication.
7969         * config/i386/i386.c (ix86_expand_epilogue): Do not use ix86_gen_add
7970         to generate addition.
7972 2010-06-07  Joseph Myers  <joseph@codesourcery.com>
7974         * common.opt (fira-verbose): Use Var.
7975         (fpcc-struct-return): Use Init instead of VarExists.
7976         * defaults.h (DEFAULT_PCC_STRUCT_RETURN): Move definition from
7977         toplev.c.
7978         * flags.h (flag_signed_char, flag_short_enums,
7979         flag_pcc_struct_return, flag_ira_verbose,
7980         flag_detailed_statistics, flag_remove_unreachable_functions): Remove.
7981         * toplev.c (flag_detailed_statistics, flag_signed_char,
7982         flag_short_enums, flag_pcc_struct_return, flag_ira_verbose): Remove.
7983         (DEFAULT_PCC_STRUCT_RETURN): Move definition to defaults.h.
7984         * toplev.h (flag_crossjumping, flag_if_conversion,
7985         flag_if_conversion2, flag_keep_static_consts, flag_peel_loops,
7986         flag_rerun_cse_after_loop, flag_thread_jumps, flag_tracer,
7987         flag_unroll_loops, flag_unroll_all_loops, flag_unswitch_loops,
7988         flag_cprop_registers, time_report, flag_ira_loop_pressure,
7989         flag_ira_coalesce, flag_ira_move_spills,
7990         flag_ira_share_save_slots, flag_ira_share_spill_slots): Remove.
7992 2010-06-07  Jan Hubicka  <jh@suse.cz>
7994         * df-core.c (df_analyze_problem): Do verification after allocation.
7996         * df-problems.c (df_lr_problem_data): Add lr_bitmaps.
7997         (df_lr_alloc): Initialize problem data; move bitmaps to
7998         lr_bitmaps obstack.
7999         (df_lr_finalize): Free problem data; do not bother to free bitmaps.
8000         (df_lr_verify_solution_start): Do not initialize problem data;
8001         allocate bitmaps in lr_bitmaps.
8002         (df_lr_verify_solution_end): Do not free problem data.
8004 2010-06-07  Jan Hubicka  <jh@suse.cz>
8006         * cgraph.c (cgraph_edge_cannot_lead_to_return): Also check
8007         if caller is noreturn.
8008         * ipa-reference.c (analyze_function): Use ipa_ref_cannot_lead_to_return
8009         * ipa-ref.h (ipa_ref_cannot_lead_to_return): New function.
8010         * ipa-ref.c (ipa_ref_cannot_lead_to_return): New function.
8011         * ipa-pure-const.c (check_decl): Add IPA parameter.
8012         (state_from_flags): New function.
8013         (better_state, worse_state): New functions.
8014         (check_call): When in IPA mode, do not care about callees.
8015         (check_load, check_store): Update.
8016         (check_ipa_load, check_ipa_store): New.
8017         (check_stmt): When in IPA mode, use IPA checkers.
8018         (analyze_function): Use state_from_flags.
8019         (propagate): Check indirect edges and references.
8021 2010-06-07  Kazu Hirata  <kazu@codesourcery.com>
8023         PR rtl-optimization/44404
8024         * auto-inc-dec.c (find_inc): Use reg_overlap_mentioned_p instead
8025         of count_occurrences to see if it's safe to modify mem_insn.
8027 2010-06-07  Richard Guenther  <rguenther@suse.de>
8029         * gimplify.c (gimplify_cleanup_point_expr): For empty body
8030         and EH-only cleanup drop the cleanup instead of inserting it
8031         unconditionally.
8033 2010-06-07  Ira Rosen  <irar@il.ibm.com>
8035         * doc/tm.texi (TARGET_VECTORIZE_BUILTIN_VECTORIZATION_COST): Update
8036         documentation.
8037         * targhooks.c (default_builtin_vectorization_cost): New function.
8038         * targhooks.h (default_builtin_vectorization_cost): Declare.
8039         * target.h (enum vect_cost_for_stmt): Define.
8040         (builtin_vectorization_cost): Change argument and comment.
8041         * tree-vectorizer.h: Remove cost model macros.
8042         * tree-vect-loop.c: Include target.h.
8043         (vect_get_cost): New function.
8044         (vect_estimate_min_profitable_iters): Replace cost model macros with
8045         calls to vect_get_cost.
8046         (vect_model_reduction_cost, vect_model_induction_cost): Likewise.
8047         * target-def.h (TARGET_VECTORIZE_BUILTIN_VECTORIZATION_COST): Add
8048         default implementation.
8049         * tree-vect-stmts.c (cost_for_stmt): Replace cost model macros with
8050         calls to target hook builtin_vectorization_cost.
8051         (vect_model_simple_cost, vect_model_store_cost, vect_model_load_cost):
8052         Likewise.
8053         * Makefile.in (tree-vect-loop.o): Add dependency on TARGET_H.
8054         * config/spu/spu.c (spu_builtin_vectorization_cost): Replace with new
8055         implementation to return costs.
8056         * config/i386/i386.c (ix86_builtin_vectorization_cost): Likewise.
8057         * config/spu/spu.h: Remove vectorizer cost model macros.
8058         * config/i386/i386.h: Likewise.
8059         * tree-vect-slp.c (vect_build_slp_tree): Replace cost model macro with
8060         a call to target hook builtin_vectorization_cost.
8062 2010-06-06  Sriraman Tallam  <tmsriram@google.com>
8064         PR target/44319
8065         * config/i386/i386.c (override_options): Turn zee pass on for level 2
8066         and above and defer till target is known.
8067         (optimization_options): Turn on zee pass if TARGET_64BIT is set and
8068         turn off otherwise.
8070 2010-05-25  Jan Hubicka  <jh@suse.cz>
8072         * df-core.c (df_set_blocks): Use bitmap_head instead of bitmap.
8073         (df_compact_blocks): Likewise.
8074         * df.h (struct df): Turn hardware_regs_used,
8075         regular_block_artificial_uses, eh_block_artificial_uses,
8076         insns_to_delete, insns_to_rescan, insns_to_notes_rescan into
8077         bitmap_head.
8078         * df-problems.c (df_lr_local_compute, df_lr_confluence_0,
8079         df_byte_lr_alloc, df_simulate_fixup_sets): Update.
8080         * df-scan.c (df_scan_free_internal, df_scan_alloc, df_scan_start_dump,
8081         df_scan_blocks, df_insn_delete, df_insn_rescan,
8082         df_insn_rescan_debug_internal, df_insn_rescan_all,
8083         df_process_deferred_rescans, df_process_deferred_rescans,
8084         df_notes_rescan, df_get_call_refs, df_get_call_refs,
8085         regs_invalidated_by_call_regset, df_get_call_refs, df_bb_refs_collect,
8086         df_record_entry_block_defs, df_record_exit_block_uses,
8087         df_update_exit_block_uses, df_bb_verify, df_entry_block_bitmap_verify,
8088         df_scan_verify): Update.
8090 2010-05-25  Dodji Seketeli  <dodji@redhat.com>
8092         PR c++/44188
8093         * c-common.c (is_typedef_decl): Move this definition ...
8094         * tree.c (is_typedef_decl): ... here.
8095         (typdef_variant_p): Move definition here from gcc/cp/tree.c.
8096         * c-common.h (is_typedef_decl): Move this declaration ...
8097         * tree.h (is_typedef_decl): ... here.
8098         (typedef_variant_p): Move declaration here from gcc/cp/cp-tree.h
8099         * dwarf2out.c (is_naming_typedef_decl): New function.
8100         (gen_tagged_type_die): Split out of ...
8101         (gen_type_die_with_usage): ... this function. When an anonymous
8102         tagged type is named by a typedef, make sure a DW_TAG_typedef DIE
8103         is emitted for the typedef.
8104         (gen_typedef_die): Emit DW_TAG_typedef also for typedefs naming
8105         anonymous tagged types.
8107 2010-06-06  Manuel López-Ibáñez  <manu@gcc.gnu.org>
8109         PR c/20000
8110         * c-decl.c (grokdeclarator): Delete warning.
8112 2010-06-06  Eric Botcazou  <ebotcazou@adacore.com>
8114         * stor-layout.c (self_referential_size): Set UNKNOWN_LOCATION on the
8115         newly built CALL_EXPR.
8116         * tree-profile.c (tree_profiling): Don't profile functions produced
8117         for built-in stuff.
8119 2010-06-06  Segher Boessenkool  <segher@kernel.crashing.org>
8121         PR bootstrap/44427
8122         PR bootstrap/44428
8123         * genautomata.c (SET_BIT, CLEAR_BIT, TEST_BIT): Make these macros
8124         endianness-independent.
8126 2010-06-05  Steven Bosscher  <steven@gcc.gnu.org>
8128         * c-common.c: Move to c-family/.
8129         * c-common.def: Likewise.
8130         * c-common.h: Likewise.
8131         * c-cppbuiltin.c: Likewise.
8132         * c-dump.c: Likewise.
8133         * c-format.c: Likewise.
8134         * c-format.h : Likewise.
8135         * c-gimplify.c: Likewise.
8136         * c-lex.c: Likewise.
8137         * c-omp.c: Likewise.
8138         * c.opt: Likewise.
8139         * c-opts.c: Likewise.
8140         * c-pch.c: Likewise.
8141         * c-ppoutput.c: Likewise.
8142         * c-pragma.c: Likewise.
8143         * c-pragma.h: Likewise.
8144         * c-pretty-print.c: Likewise.
8145         * c-pretty-print.h: Likewise.
8146         * c-semantics.c: Likewise.
8147         * stub-objc.c: Likewise.
8149         * gengtype.c (get_file_langdir): Special-case files in c-family/.
8150         (get_output_file_with_visibility): Fix name for c-common.h.
8151         * c-config-lang.in: Update paths in gtfiles for files in c-family/.
8153         * c-tree.h: Update include path for moved files.
8154         * c-lang.c: Likewise.
8155         * c-lang.h: Likewise.
8156         * c-parser.c: Likewise.
8157         * c-convert.c: Likewise.
8158         * c-decl.c: Likewise.
8159         * c-objc-common.c: Likewise.
8160         * configure.ac: Make sure c-family/ exists in the build directory.
8161         * configure: Regenerate.
8162         * Makefile.in: Update paths for moved files.  Regroup files per
8163         location and update dependencies.  Move generated_files down after
8164         ALL_GTFILES_H.
8166         * config/spu/spu-c.c: Update paths for moved files.
8167         * config/mep/mep-pragma.c: Likewise.
8168         * config/darwin-c.c: Likewise.
8169         * config/i386/msformat-c.c: Likewise.
8170         * config/i386/i386-c.c: Likewise.
8171         * config/avr/avr-c.c: Likewise.
8172         * config/sol2-c.c: Likewise.
8173         * config/ia64/ia64-c.c: Likewise.
8174         * config/rs6000/rs6000-c.c: Likewise.
8175         * config/arm/arm.c: Likewise.
8176         * config/arm/arm-c.c: Likewise.
8177         * config/h8300/h8300.c: Likewise.
8178         * config/v850/v850-c.c: Likewise.
8180         * config/t-darwin: Fix dependencies for moved files.
8181         * config/t-sol2: Fix dependencies for moved files.
8182         * config/mep/t-mep: Fix dependencies for moved files.
8183         * config/ia64/t-ia64: Fix dependencies for moved files.
8184         * config/rs6000/t-rs6000: Fix dependencies for moved files.
8185         * config/v850/t-v850: Fix dependencies for moved files.
8186         * config/v850/t-v850e: Fix dependencies for moved files.
8188         * config/m32c/m32c-pragma.c
8190         * po/exgettext: Look in c-family/ also.
8192 2010-06-05  Eric Botcazou  <ebotcazou@adacore.com>
8194         * tree-ssa-dce.c (mark_last_stmt_necessary): New function.
8195         (mark_control_dependent_edges_necessary): Call it instead of marking
8196         the last statement manually.
8197         (propagate_necessity): Likewise.
8199 2010-06-05  Jan Hubicka  <jh@suse.cz>
8201         * basic-block.h (compute_dominance_frontiers): Updated.
8202         (compute_idf): Likewise.
8204         * tree-into-ssa.c (insert_phi_nodes): Use bitmap heads
8205         for dominance frontiers.
8206         (rewrite_into_ssa): Update for bitmap heads in dominance frontiers.
8207         (insert_updated_phi_nodes_for): Likewise.
8208         (update_ssa): Likewise.
8209         * cfganal.c (compute_dominance_frontiers_1): Likewise.
8210         (compute_dominance_frontiers): Likewise.
8211         (compute_idf): Likewise.
8212         * df-problems.c (df_md_local_compute): Likewise.
8214 2010-06-05  Anatoly Sokolov  <aesok@post.ru>
8216         * target.h (struct gcc_target): Add memory_move_cost field.
8217         * target-def.h (TARGET_MEMORY_MOVE_COST): New.
8218         (TARGET_INITIALIZER): Use TARGET_MEMORY_MOVE_COST.
8219         * targhooks.c (default_memory_move_cost): New function.
8220         * targhooks.h (default_memory_move_cost): Declare function.
8221         * reload.h (memory_move_cost): Declare.
8222         (memory_move_secondary_cost): Change type of 'in' argument to bool.
8223         * reginfo.c (memory_move_cost): New function.
8224         (memory_move_secondary_cost): Change type of 'in' argument to bool.
8225         * ira.h (ira_memory_move_cost): Update comment.
8226         * ira.c (ira_memory_move_cost): Update comment.
8227         (setup_class_subset_and_memory_move_costs): Replace MEMORY_MOVE_COST
8228         with memory_move_cost.
8229         * postreload.c (reload_cse_simplify_set): (Ditto.).
8230         * reload1.c (choose_reload_regs): (Ditto.).
8231         * doc/tm.texi (TARGET_MEMORY_MOVE_COST): New.
8232         (MEMORY_MOVE_COST):  Revise documentation.
8234         * config/i386/i386.h (MEMORY_MOVE_COST): Remove macro.
8235         * config/i386/i386-protos.h (int ix86_memory_move_cost): Remove.
8236         * config/i386/i386.h (ix86_memory_move_cost): Make static. Change
8237         type of 'in' argument to bool.
8238         (TARGET_MEMORY_MOVE_COST): Define.
8240 2010-06-05  Jan Hubicka  <jh@suse.cz>
8242         * ipa-pure-const.c (propagate): Fix typo in handling of functions
8243         that cannot return.  Be more careful when merging the results with
8244         previously known ones.
8246 2010-06-05  Matthias Klose  <doko@ubuntu.com>
8248         * gcc.c (cc1_options, cpp_unique_options): Use find-plugindir spec
8249         function to add the -iplugindir option.
8250         (find_plugindir_spec_function): Add new declaration and function.
8251         (static_spec_func): Use it for "find-plugindir".
8253 2010-06-05  Jakub Jelinek  <jakub@redhat.com>
8255         PR c++/44361
8256         * c-typeck.c (mark_exp_read): Handle C_MAYBE_CONST_EXPR.
8257         * c-parser.c (c_parser_postfix_expression): Call mark_exp_read on
8258         statement expression.
8260 2010-06-05  Jan Hubicka  <jh@suse.cz>
8262         * df-problems.c (seen_in_block, seen_in_insn): Convert to bitmap_head.
8263         (df_rd_problem_data): Convert sparse_invalidated_by_call,
8264         dense_invalidated_by_call to bitmap head.
8265         (df_rd_alloc, df_rd_bb_local_compute_process_def,
8266         df_rd_bb_local_compute, df_rd_confluence_n, df_rd_transfer_function,
8267         df_rd_start_dump, df_lr_verify_transfer_functions,
8268         df_live_verify_transfer_functions, df_chain_create_bb,
8269         df_chain_add_problem, df_byte_lr_check_regs, df_byte_lr_alloc,
8270         df_byte_lr_confluence_0, df_byte_lr_confluence_n, df_note_compute,
8271         df_simulate_one_insn_forwards, df_md_alloc,
8272         df_md_bb_local_compute_process_def,
8273         df_md_bb_local_compute_process_def, df_md_local_compute,
8274         df_md_transfer_function df_md_free): Update.
8276 2010-06-05  Joseph Myers  <joseph@codesourcery.com>
8278         PR c/44322
8279         * c-typeck.c (build_unary_op): Merge qualifiers into pointer
8280         target type for ADDR_EXPR; require no changes to qualifiers except
8281         for function types.
8282         * c-tree.h (c_build_type_variant): Remove.
8284 2010-06-05  Segher Boessenkool  <segher@kernel.crashing.org>
8286         * genautomata.c (get_excl_set): Do work per element, not per char.
8287         (check_presence_pattern_sets): Similar.
8288         (check_absence_pattern_sets): Similar.
8290 2010-06-05  Segher Boessenkool  <segher@kernel.crashing.org>
8292         * genautomata.c (curr_state_pass_num): Delete.
8293         (min_issue_delay_pass_states): Delete.
8294         (min_issue_delay): Delete.
8295         (initiate_min_issue_delay_pass_states): Delete.
8296         (output_min_issue_delay_table): Compute min_issue_delay_vect
8297         using a breadth-first search variant.
8298         (output_tables): Don't call initiate_min_issue_delay_pass_states.
8300 2010-06-04  H.J. Lu  <hongjiu.lu@intel.com>
8302         PR boostrap/44421
8303         * df-problems.c (df_lr_bb_local_compute): Updated for embedded bitmaps.
8304         (df_byte_lr_bb_local_compute): Likewise.
8306 2010-06-03  Jason Merrill  <jason@redhat.com>
8308         Implement noexcept operator (5.3.7)
8309         * c-common.c (c_common_reswords): Add noexcept.
8310         * c-common.h (enum rid): Add RID_NOEXCEPT.
8312 2010-06-04  Joseph Myers  <joseph@codesourcery.com>
8314         * config/darwin-driver.c (darwin_default_min_version): Use
8315         GCC-specific formats in diagnostics.
8316         * cppspec.c (lang_specific_driver): Use GCC-specific formats in
8317         diagnostics.
8318         * gcc.c (translate_options, read_specs, add_sysrooted_prefix,
8319         execute, process_command, end_going_arg, do_self_spec, do_spec_1,
8320         eval_spec_function, handle_braces, process_brace_body, main,
8321         perror_with_name, used_arg, set_multilib_dir, print_multilib_info,
8322         getenv_spec_function, compare_version_strings,
8323         version_compare_spec_function): Use GCC-specific formats in
8324         diagnostics.
8326 2010-06-04  Uros Bizjak  <ubizjak@gmail.com>
8328         * config/i386/i386.md (*addhi_1_lea) <TYPE_INCDEC, default>: Assert
8329         that operand 0 and operand 1 are equal.
8330         (*addqi_1_lea) <TYPE_INCDEC, default>: Ditto.
8331         (*add<mode>_2) <TYPE_INCDEC>: Remove assert that operand 0
8332         and operand 1 are equal.
8333         <default>: Ditto.  Remove ??? comment.
8334         (*add<mode>_3) <TYPE_INCDEC>: Remove assert that operand 0
8335         and operand 1 are equal.
8336         <default>: Ditto.  Remove ??? comment.
8337         (*adddi_4) <default>: Remove assert that operand 0 and operand 1
8338         are equal.
8339         (*add<mode>_4) <default>: Ditto.
8340         (*add<mode>_5) <TYPE_INCDEC, default>: Ditto.
8342 2010-06-04  Nathan Froyd  <froydnj@codesourcery.com>
8344         * config/i386/i386-protos.h (ix86_print_operand): Declare.
8345         * config/i386/i386.c (ix86_print_operand): Make non-static.
8346         * config/i386/sol2.h (ASM_OUTPUT_CALL): Call ix86_print_operand.
8347         * output.h (output_operand): Declare.
8348         * final.c (output_operand): Make non-static.
8350 2010-06-04  Alexandre Oliva  <aoliva@redhat.com>
8352         PR rtl-optimization/44013
8353         * sched-deps.c (add_dependence_list_and_free): Don't free lists
8354         when processing debug insns.
8356         PR debug/41371
8357         * var-tracking.c (find_loc_in_1pdv): Mark initial value before
8358         recursing.  Check that recursion is bounded.  Rename inner var
8359         to avoid hiding incoming argument.
8361 2010-06-04  Uros Bizjak  <ubizjak@gmail.com>
8363         * config/i386/i386.md (*addqi_2) <TYPE_INCDEC>: Do not assert that
8364         operands[2] == 255.
8365         (*addqi_3): Ditto.
8366         (*addqi_4): Ditto.
8367         (*addqi_5): Ditto.
8368         (*addqi_ext_1_rex64): Ditto.
8369         (*addqi_ext_1): Ditto.
8371         (*addqi_4): Check for incdec_operand in QImode.
8373         (*add<mode>_2): Macroize insn from *add<mode>_2 and *add{qi,hi}_2
8374         using SWI mode iterator.
8375         (*add<mode>_3): Ditto from *add<mode>_3 and *add{qi,hi}_3.
8376         (*add<mode>_4): Macroize insn from *add{qi,hi,si}_4 using SWI124
8377         mode iterator.
8378         (*add<mode>_5): Macroize insn from *add<mode>_5 and *add{qi,hi}_5
8379         using SWI mode iterator.
8381 2010-06-04  Manuel López-Ibáñez  <manu@gcc.gnu.org>
8383         PR c/25880
8384         * c-objc-common.c (c_tree_printer): Handle %V, %v and %#v.
8385         * c-format.c (gcc_diag_flag_specs): Add hash.
8386         (gcc_cxxdiag_flag_specs): Use gcc_diag_flag_specs directly.
8387         (gcc_tdiag_char_table,gcc_cdiag_char_table): Handle %V and %v.
8388         * c-pretty-print.c (pp_c_cv_qualifier): Rename as
8389         pp_c_cv_qualifiers. Handle qualifiers spelling here.
8390         (pp_c_type_qualifier_list): Call the function above.
8391         * c-pretty-print.h (pp_c_cv_qualifiers): Declare.
8392         * c-typeck.c (handle_warn_cast_qual): Print qualifiers.
8393         (WARN_FOR_QUALIFIERS): New macro.
8394         (convert_for_assignment): Use it.
8396 2010-06-04  Kai Tietz  <kai.tietz@onevision.com>
8398         * config/i386/cygming.h (ASM_GENERATE_INTERNAL_LABEL): Prefix by '*'.
8400 2010-06-04  Jan Hubicka  <jh@suse.cz>
8402         * df.h (df_rd_bb_info, df_md_bb_info, df_lr_bb_info, df_live_bb_info,
8403         df_byte_lr_bb_info): Embedd bitmap_head into the structure.
8404         (DF_LIVE_IN, DF_LIVE_OUT, DF_LR_IN, DF_LR_OUT, DF_BYTE_LR_IN,
8405         DF_BYTE_LR_OUT): Update for embedded bitmaps.
8406         * fwprop.c (single_def_use_enter_block): Likewise.
8407         * ddg.c (create_ddg_dep_from_intra_loop_link,
8408         add_cross_iteration_register_deps, build_inter_loop_deps): Likewise.
8409         * loop-iv.c (latch_dominating_def): Likewise.
8410         * df-problems.c (df_rd_free_bb_info, df_rd_alloc,
8411         df_rd_bb_local_compute_process_def, df_rd_bb_local_compute_process_def,
8412         df_rd_init_solution, df_rd_init_solution, df_rd_transfer_function,
8413         df_rd_transfer_function, df_rd_top_dump,
8414         df_rd_bottom_dump): Update.
8415         (df_lr_free_bb_info, df_lr_alloc, df_lr_reset, df_lr_bb_local_compute,
8416         df_lr_bb_local_compute, df_lr_bb_local_compute, df_lr_bb_local_compute,
8417         df_lr_bb_local_compute, df_lr_local_compute, df_lr_init, df_lr_init,
8418         df_lr_confluence_0, df_lr_free, df_lr_top_dump, df_lr_bottom_dump,
8419         df_lr_verify_solution_start, df_lr_verify_solution_end,
8420         df_lr_verify_transfer_functions, df_lr_verify_transfer_functions,
8421         df_live_free_bb_info, df_live_alloc, df_live_reset,
8422         df_live_bb_local_compute, df_live_init, df_live_transfer_function,
8423         df_live_finalize, df_live_free, df_live_top_dump, df_live_bottom_dump,
8424         df_live_verify_solution_start, df_live_verify_solution_end,
8425         df_live_verify_transfer_functions, df_chain_create_bb,
8426         df_byte_lr_free_bb_info, df_byte_lr_alloc, df_byte_lr_reset,
8427         df_byte_lr_bb_local_compute, df_byte_lr_bb_local_compute,
8428         df_byte_lr_bb_local_compute, df_byte_lr_bb_local_compute,
8429         df_byte_lr_bb_local_compute, df_byte_lr_local_compute, df_byte_lr_init,
8430         df_byte_lr_confluence_0, df_byte_lr_confluence_n,
8431         df_byte_lr_transfer_function, df_byte_lr_top_dump,
8432         df_byte_lr_bottom_dump, df_create_unused_note,
8433         df_note_bb_compute, df_md_free_bb_info, df_md_alloc,
8434         df_md_bb_local_compute_process_def, df_md_local_compute, df_md_reset,
8435         df_md_transfer_function, df_md_init, df_md_confluence_0,
8436         df_md_confluence_n,
8437         df_md_top_dump, df_md_bottom_dump): Update.
8438         (struct df_lr_problem_data): Embedd bitmap headers.
8440 2010-06-04  Jan Hubicka  <jh@suse.cz>
8442         * dce.c (dce_process_block): Do not re-scan already marked
8443         instructions.
8445 2010-06-04  Bernd Schmidt  <bernds@codesourcery.com>
8447         PR rtl-optimization/39871
8448         PR rtl-optimization/40615
8449         PR rtl-optimization/42500
8450         PR rtl-optimization/42502
8451         * ira.c (init_reg_equiv_memory_loc: New function.
8452         (ira): Call it twice.
8453         * reload.h (calculate_elim_costs_all_insns): Declare.
8454         * ira-costs.c: Include "reload.h".
8455         (regno_equiv_gains): New static variable.
8456         (init_costs): Allocate it.
8457         (finish_costs): Free it.
8458         (ira_costs): Call calculate_elim_costs_all_insns.
8459         (find_costs_and_classes): Take estimated elimination costs
8460         into account.
8461         (ira_adjust_equiv_reg_cost): New function.
8462         * ira.h (ira_adjust_equiv_reg_cost): Declare it.
8463         * reload1.c (init_eliminable_invariants, free_reg_equiv,
8464         elimination_costs_in_insn, note_reg_elim_costly): New static functions.
8465         (elim_bb): New static variable.
8466         (reload): Move code out of here into init_eliminable_invariants and
8467         free_reg_equiv.  Call them.
8468         (calculate_elim_costs_all_insns): New function.
8469         (eliminate_regs_1): Declare.  Add extra arg FOR_COSTS;
8470         all callers changed.  If FOR_COSTS is true, don't call alter_reg,
8471         but call note_reg_elim_costly if we turned a valid memory address
8472         into an invalid one.
8473         * Makefile.in (ira-costs.o): Depend on reload.h.
8475 2010-06-04  Julian Brown  <julian@codesourcery.com>
8477         * config/arm/thumb2.md (*thumb2_movdf_soft_insn): Fix alternatives
8478         for pool ranges.
8480 2010-06-04  Richard Guenther  <rguenther@suse.de>
8482         PR lto/41584
8483         * cgraph.h (struct varpool_node): Add lto_file_data field.
8484         * lto-cgraph.c (input_varpool_node): Initialize it.
8486 2010-06-04  Uros Bizjak  <ubizjak@gmail.com>
8488         * config/i386/predicates.md (pic_symbolic_operand): Remove predicate.
8489         * config/i386/i386.md (*add<mode>_1): Do not use pic_symbolic_operand
8490         predicate in "type" attribute calculation.
8491         (*addsi_1_zext): Ditto.
8492         (*add<mode>_2): Do not use pic_symbolic_operand in insn predicate.
8493         (*addsi_2_zext): Ditto.
8494         (*add<mode>_3): Ditto.
8495         (*addsi_3_zext): Ditto.
8496         (*add<mode>_5): Ditto.
8498 2010-06-03  Jan Hubicka  <jh@suse.cz>
8500         * tree-into-ssa.c (mark_block_for_update): Avoid redundant call
8501         of bitmap_bit_p.
8502         * cfganal.c (compute_dominance_frontiers_1): Likewise.
8504 2010-06-03  Jan Hubicka  <jh@suse.cz>
8506         * df-problems.c (df_create_unused_note, df_note_bb_compute):
8507         micro-optimize the checks when to add new note.
8509 2010-06-03  Nathan Froyd  <froydnj@codesourcery.com>
8511         * final.c (output_asm_insn): Call
8512         targetm.asm_out.print_operand_punct_valid_p.  Update comments.
8513         (output_operand): Call targetm.asm_out.print_operand.  Update comments.
8514         (output_address): Call targetm.asm_out.print_operand_address.
8515         Update comments.
8516         * target.h (struct gcc_target): Add print_operand,
8517         print_operand_address, and print_operand_punct_valid_p fields.
8518         * targhooks.h (default_print_operand): Declare.
8519         (default_print_operand_address): Declare.
8520         (default_print_operand_punct_valid_p): Declare.
8521         * targhooks.c (default_print_operand): Define.
8522         (default_print_operand_address): Define.
8523         (default_print_operand_punct_valid_p): Define.
8524         * target-def.h (TARGET_PRINT_OPERAND): Define if not defined.
8525         (TARGET_PRINT_OPERAND_ADDRESS): Likewise.
8526         (TARGET_PRINT_OPERAND_PUNCT_VALID_P): Likewise.
8527         (TARGET_ASM_OUT): Add TARGET_PRINT_OPERAND,
8528         TARGET_PRINT_OPERAND_ADDRESS, and TARGET_PRINT_OPERAND_PUNCT_VALID_P.
8529         * vmsdbgout.c (addr_const_to_string): Update comment.
8530         * config/i386/i386.c (print_operand): Rename to...
8531         (ix86_print_operand): ...this.  Make static.
8532         (print_operand_address): Rename to...
8533         (ix86_print_operand_address): ...this.  Make static.  Call
8534         ix86_print_operand instead of PRINT_OPERAND.
8535         (ix86_print_operand_punct_valid_p): New function.
8536         (TARGET_PRINT_OPERAND): Define.
8537         (TARGET_PRINT_OPERAND_ADDRESS): Define.
8538         (TARGET_PRINT_OPERAND_PUNCT_VALID_P): Define.
8539         * config/i386/i386.h (HI_REGISTER_NAMES): Update comment.
8540         (PRINT_OPERAND_PUNCT_VALID_P): Delete.
8541         (PRINT_OPERAND): Delete.
8542         (PRINT_OPERAND_ADDRESS): Delete.
8543         * config/i386/i386-protos.h (print_operand): Delete prototype.
8544         (print_operand_address): Delete prototype.
8546 2010-06-03  Richard Guenther  <rguenther@suse.de>
8548         PR tree-optimization/44403
8549         * tree-vect-data-refs.c (vect_create_addr_base_for_vector_ref):
8550         Preserve pointer qualifiers.
8551         (vect_create_data_ref_ptr): Likewise.
8553 2010-06-03  H.J. Lu  <hongjiu.lu@intel.com>
8555         PR c++/44294
8556         * defaults.h (MAX_FIXED_MODE_SIZE): New.
8558         * stor-layout.c (MAX_FIXED_MODE_SIZE): Removed.
8560 2010-06-03  Jakub Jelinek  <jakub@redhat.com>
8562         PR debug/44375
8563         * tree-cfg.c (gimple_can_merge_blocks_p): For -O0
8564         return false if merging the bbs would lead to goto_locus
8565         location being lost from the IL.
8567 2010-06-03  Jan Hubicka  <jh@suse.cz>
8568             Jakub Jelinek  <jakub@redhat.com>
8570         * var-tracking.c (dataflow_set_equiv_regs): Shortcut the loop if
8571         set->regs[i] is NULL or has just one entry.
8573 2010-06-03  Jan Hubicka  <jh@suse.cz>
8575         * lto-cgraph.c (lto_varpool_encoder_size): Remove.
8576         * lto-streamer.h (lto_varpool_encoder_size): New inline function.
8578 2010-06-03  Paul Brook  <paul@codesourcery.com>
8580         * config/arm/arm.c (FL_TUNE): Define.
8581         (arm_default_cpu, arm_cpu_select): Remove.
8582         (all_cores): Populate core field.
8583         (arm_selected_arch, arm_selected_cpu, arm_selected_tune): New.
8584         (arm_find_cpu): New function.
8585         (arm_handle_option): Lookup cpu/architecture names.
8586         (arm_override_options): Cleanup mcpu/march/mtune handling.
8587         (arm_file_start): Ditto.
8589 2010-06-03  Alan Modra  <amodra@gmail.com>
8591         PR target/44169
8592         * config/rs6000/rs6000.md (load_toc_v4_PIC_1b): Add label operand.
8593         * config/rs6000/rs6000.c (rs6000_legitimize_tls_address): Pass label
8594         rtx to gen_load_toc_v4_PIC_1b.  Tidy.
8595         (rs6000_emit_load_toc_table): Likewise.
8597 2010-06-02  Jan Hubicka  <jh@suse.cz>
8599         * passes.c (init_optimization_passes): Put ipa reference
8600         after ipa pure-const.
8602 2010-06-02  Jan Hubicka  <jh@suse.cz>
8604         * ipa-reference.c (ipa_reference_local_vars_info_d): Remove
8605         calls_read_all and calls_write_all.
8606         (get_reference_optimization_summary): Fix formatting.
8607         (is_proper_for_analysis): Check that decl is not readonly.
8608         (propagate_bits): Check CONST/PURE/noreturn flags.
8609         (ipa_init): Move all_module_statics to optimization_summary_obstack.
8610         (analyze_function): Ignore indirect edges.
8611         (copy_global_bitmap): For all module statics, do nothing.
8612         (generate_summary): Do not print calls_read_all/calls_write_all.
8613         (read_write_all_from_decl): Take node as argument; check
8614         cgraph_node_cannot_return.
8615         (propagate): Reorganize read_all/write_all computation;
8616         check indirect edges; check ecf flags; use all_module_statics
8617         in the results; do not free all_module_statics.
8618         (stream_out_bitmap): Handle all_module_statics.
8619         (ipa_reference_write_optimization_summary): Likewise; use
8620         varpool/cgraph encoders to get boundaries.
8621         (ipa_reference_read_optimization_summary): Read in all_module_statics;
8622         use it when possible.
8624 2010-06-02  Michael Meissner  <meissner@linux.vnet.ibm.com>
8626         PR target/44218
8627         * doc/invoke.texi (RS/6000 and PowerPC Options): Delete obsolete
8628         -mswdiv option.  Add -mrecip, -mrecip=<xxx>, -mrecip-precision options.
8630         * doc/extend.texi (powerpc builtins): Document vec_recip,
8631         vec_rsqrt, vec_rsqrte altivec/vsx builtins.
8633         * config/rs6000/rs60000-protos.h (rs6000_emit_swdiv): New function.
8634         (rs6000_emit_swrsqrt): Ditto.
8635         (rs6000_emit_swdivsf): Delete.
8636         (rs6000_emit_swdivdf): Ditto.
8637         (rs6000_emit_swrsqrtsf): Ditto.
8639         * config/rs6000/rs6000.c (rs6000_recip_bits): New global to
8640         describe the reciprocal estimate support for each type.
8641         (recip_options): Map -mrecip=<opt> into option bits.
8642         (gen_2arg_fn_t): New typedef for binary rtx gen function.
8643         (rs6000_debug_reg_global): If -mdebug=reg, print the state of the
8644         reciprocal estimate instructions.
8645         (rs6000_init_hard_regno_mode_ok): Key ws constraint off of the
8646         debug -mvsx-scalar-memory switch instead of -mvsx-scalar-double.
8647         Set up rs6000_recip_bits based on the -mrecip* options.  Print the
8648         cost information if -mdebug=cost or -mdebug=reg.
8649         (rs6000_override_options): Set -mrecip-precision for power6, and
8650         power7 machines.  If -mvsx or -mdfp, enable various options that
8651         came in previous instruction set ISAs, unless the option was
8652         explicitly disabled by the command line option.  Parse
8653         -mrecip=<opt> options.
8654         (rs6000_builtin_vectorized_function): Add support for vectorizing
8655         the reciprocal estimate builtins and expansions.
8656         (rs6000_handle_option): Add -mrecip, -mrecip=<opt> support.
8657         (bdesc_2arg): Add reciprocal estimate builtins.
8658         (bdesc_1arg): Add reciprocal square root estimate builtins.
8659         (rs6000_expand_builtin): Rewrite to use a switch statement,
8660         instead of multiple if/then/elses.  Add reciprocal estimate builtins.
8661         (rs6000_init_builtins): Create declarations for reciprocal
8662         estimate builtins.
8663         (rs6000_preferred_reload_class): Simplify VSX preferences, if scalar
8664         sized, prefer traditional floating point registers, if integer
8665         vector types, prefer altivec registers.  Don't actually look at
8666         the memory address any more.
8667         (rs6000_builtin_reciprocal): Add new builtin reciprocal estimate
8668         builtins.
8669         (rs6000_load_constant_and_splat): New helper function to load up
8670         the constant for reciprocal estimate instructions.
8671         (rs6000_emit_madd): New helper function for generating
8672         multiply/add type instructions, based on the current switches.
8673         (rs6000_emit_msub): Ditto.
8674         (rs6000_emit_mnsub): Ditto.
8675         (rs6000_emit_swdiv_high_precision): Replace rs6000_emit_swdivsf to
8676         replace a divide with a reciprocal estimate and fixup, adding
8677         support for machines with high precision and vectors.
8678         (rs6000_emit_swdiv_low_precision): Rewrite rs6000_emit_swdivdf for
8679         low precision machines.
8680         (rs6000_emit_swdiv): New common function to be called to replace a
8681         division with reciprocal estimate and fixup.
8682         (rs6000_emit_swrsqrt): Replace rs6000_emit_swrsqrtsf.  Add support
8683         for double and vector types.  Add support for high precision machines.
8685         * config/rs6000/rs6000.h (TARGET_FRES): New macro to say whether
8686         the reciprocal estimate instructions can be generated.
8687         (TARGET_FRE): Ditto.
8688         (TARGET_FRSQRTES): Ditto.
8689         (TARGET_FRSQRTE): Ditto.
8690         (RS6000_RECIP_*): New macros for reciprocal estimate support.
8692         * config/rs6000/vector.md (rsqrte<mode>2): New insn for reciprocal
8693         square root estimate on vectors.
8694         (re<mode>2): New insn for reciprocal division estimate on vectors.
8696         * config/rs6000/rs6000-buitlins.def (ALTIVEC_BUILTIN_VRSQRTFP):
8697         New builtin.
8698         (ALTIVEC_BUILTIN_VRECIPFP): Ditto.
8699         (ALTIVEC_BUITLIN_VEC_RE): Ditto.
8700         (ALTIVEC_BUILTIN_VEC_RSQRT): Ditto.
8701         (VSX_BUILTIN_RSQRT_V4SF): Ditto.
8702         (VSX_BUITLIN_RSQRT_V2DF): Ditto.
8703         (RS6000_BUILTIN_RSQRT): Ditto.
8704         (ALTIVEC_BUILTIN_VEC_RSQRTE): Denote that the builtin is a
8705         floating point builtin.
8707         * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Define
8708         macros __RECIP__, __RECIPF__, __RSQRTE__, __RSQRTEF__,
8709         __RECIP_PRECISION__ based on the command line switches.
8710         (altivec_overloaded_builtins): Add reciprocal estimate builtins.
8712         * config/rs6000/rs6000.opt (-mrecip): Document add support for
8713         replacing division instructions with reciprocal estimate and fixup.
8714         (-mrecip=<opt>): New option.
8715         (-mrecip-precision): Ditto.
8717         * config/rs6000/vsx.md (UNSPEC_VSX_RSQRTE): Delete.
8718         (vsx_rsqrte<mode>2): Use UNSPEC_RSQRT not UNSPEC_VSX_RSQRTE.
8719         (vsx_copysignsf3): If -mvsx, use double precision cpsign on single
8720         precision scalar.
8722         * config/rs6000/altivec.md (UNSPEC_RSQRTEFP): Delete.
8723         (UNSPEC_VREFP): Ditto.
8724         (altivec_vnmsubfp*): Make altivec nmsub mirror the scalar and VSX
8725         conterparts with regard to support of -mno-fused-madd and -ffast-math.
8726         (altivec_vrsqrtefp): Use common UNSPEC to allow scalar/vector
8727         reciprocal estimate instructions to be generated.
8728         (altivec_vrefp): Ditto.
8730         * config/rs6000/rs6000.md (RECIPF): New iterator for reciprocal
8731         estimate support.
8732         (rreg): New mode attribute for reciprocal estimate support.
8733         (recip<mode>3): New insn for division using reciprocal estimate
8734         and fixup builtins.
8735         (divide define_split): New define_split to convert floating point
8736         division to use reciprocal estimate if the user used the
8737         appropriate options and the split is run when we can add new
8738         pseudo registers for the fixup.
8739         (rsqrt<mode>2): New insn for reciprocal square root support.
8740         (recipsf3): Move into recip<mode>3.
8741         (recipdf3): Ditto.
8742         (fres): Use TARGET_FRES.
8743         (rsqrtsf2): Move into rsqrt<mode>2.
8744         (rsqrtsf_internal1): Use TARGET_FRSQRTSES.
8745         (copysignsf3): Add support for VSX.
8746         (fred): Use TARGET_FRE.
8747         (fred_fpr): Ditto.
8748         (rsqrtdf_internal1): New function for frsqrte instruciton.
8750         * config/rs6000/altivec.h (vec_recipdiv): Define new vector builtin.
8751         (vec_rsqrt): Ditto.
8753 2010-06-03  Richard Guenther  <rguenther@suse.de>
8755         PR middle-end/44291
8756         * optabs.c (init_one_libfunc): Use IDENTIFIER_HASH_VALUE.
8757         (set_user_assembler_libfunc): Likewise.
8759 2010-06-02  Steven Bosscher  <steven@gcc.gnu.org>
8761         * mkconfig.sh: Include insn-flags.h and insn-constants.h before
8762         defaults.h.
8763         * except.h: Move MUST_USE_SJLJ_EXCEPTIONS and USING_SJLJ_EXCEPTIONS
8764         to defaults.h
8765         * expr.h (BRANCH_COST, MOVE_RATIO, CLEAR_RATIO, SET_RATIO,
8766         DEFAULT_FUNCTION_ARG_PADDING, FUNCTION_ARG_PADDING,
8767         FUNCTION_ARG_BOUNDARY, STACK_SAVEAREA_MODE, STACK_SIZE_MODE,
8768         STACK_CHECK_BUILTIN, STACK_CHECK_STATIC_BUILTIN,
8769         STACK_CHECK_PROBE_INTERVAL_EXP, STACK_CHECK_MOVING_SP,
8770         STACK_OLD_CHECK_PROTECT, STACK_CHECK_PROTECT,
8771         STACK_CHECK_MAX_FRAME_SIZE, STACK_CHECK_FIXED_FRAME_SIZE,
8772         STACK_CHECK_MAX_VAR_SIZE): Move target macro defaults to defaults.h.
8773         * defaults.h: Updated for above mentioned changes.
8775 2010-06-02  Kai Tietz  <kai.tietz@onevision.com>
8777         * c-common.c: Remove header include of tm_p.h.
8778         * Makefile.in (c-common.o): Remove TM_P_H dependency.
8780 2010-06-02  Jakub Jelinek  <jakub@redhat.com>
8782         * tree.h (struct tree_decl_map): New type.
8783         (tree_decl_map_eq, tree_decl_map_marked_p): Define.
8784         (tree_decl_map_hash): New prototype.
8785         (debug_expr_for_decl, value_expr_for_decl): Change into
8786         tree_decl_map hashtab from tree_map.
8787         (init_ttree): Adjust initialization.
8788         (tree_decl_map_hash): New function.
8789         (decl_debug_expr_lookup, decl_debug_expr_insert,
8790         decl_value_expr_lookup, decl_value_expr_insert): Adjust.
8792 2010-06-02  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
8794         * configure.ac (gcc_cv_ld_sol2_emulation): Test for GNU ld *_sol2
8795         linker emulations.
8796         * configure: Regenerate.
8797         * config.in: Regenerate.
8799         * config/i386/sol2-10.h [TARGET_GNU_LD] (I386_EMULATION): Define.
8800         (X86_64_EMULATION): Define.
8801         (TARGET_LD_EMULATION): Use them.
8803         * config/sparc/sol2-gld-bi.h (SPARC32_EMULATION): Define.
8804         (SPARC64_EMULATION): Define.
8805         (LINK_ARCH_SPEC): Use them.
8807 2010-06-02  Sebastian Pop  <sebastian.pop@amd.com>
8809         * graphite-clast-to-gimple.c (gcc_type_for_interval): Use
8810         smallest_mode_for_size for computing the precision types of new
8811         graphite IVs.  Do not call lang_hooks.types.type_for_size.
8813 2010-06-02  Sebastian Pop  <sebastian.pop@amd.com>
8815         * tree-if-conv.c (predicate_bbs): Do not reset the GIMPLE_DEBUG
8816         information.
8817         (remove_conditions_and_labels): Reset the GIMPLE_DEBUG information.
8819 2010-06-02  Sebastian Pop  <sebastian.pop@amd.com>
8821         PR middle-end/44363
8822         * tree-if-conv.c (predicate_bbs): Do not call gcc_unreachable,
8823         return false instead.
8825 2010-06-02  Jan Hubicka  <jh@suse.cz>
8827         PR middle-end/44295
8828         * cgraphunit.c (cgraph_redirect_edge_call_stmt_to_callee): Do not
8829         create new cgraph node to check callee.
8831 2010-06-02  Richard Guenther  <rguenther@suse.de>
8833         * lto-streamer-in.c (input_gimple_stmt): Fix typo.
8835 2010-06-02  Richard Guenther  <rguenther@suse.de>
8837         * lto-wrapper.c (lto_wrapper_exit): Rename to ...
8838         (lto_wrapper_cleanup): ... this.  Do not exit.
8839         (fatal): Adjust.  Exit here.
8840         (fatal_perror): Likewise.
8841         (fatal_signal): New function.
8842         (main): Set up signal handlers to cleanup temporary files.
8843         * Makefile.in (lto-wrapper.o): Adjust dependencies.
8845 2010-06-02  Richard Guenther  <rguenther@suse.de>
8847         PR tree-optimization/44377
8848         * tree-ssa-structalias.c (find_func_aliases): Fix typo.
8850 2010-06-02  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
8852         * config/s390/2097.md (z10_fhex): Remove insn reservation.
8853         * config/s390/s390.md (UNSPEC_COPYSIGN): Remove unused constant.
8854         (*mov<mode>_64 TD_TF, *mov<mode>_31 TD_TF, *mov<mode>_64dfp DD_DF,
8855         *mov<mode>_64 DD_DF, *mov<mode>_31, mov<mode>): Remove load zero
8856         instruction.
8857         * config/s390/s390.c: Don't accept fp zeros as valid constants anymore.
8859 2010-06-02  Jan Hubicka  <jh@suse.cz>
8861         * bitmap.c (bitmap_descriptor): Add search_iter.
8862         (bitmap_find_bit): Increment it.
8863         (print_statistics): Print it.
8865 2010-06-02  Nathan Froyd  <froydnj@codesourcery.com>
8867         * tree-vect-slp.c (vect_create_mask_and_perm): Use gimple_build_call
8868         instead of gimple_build_call_vec.  Delete unnecessary local variable.
8870 2010-06-02  Steven Bosscher  <steven@gcc.gnu.org>
8872         * gimplify.c (gimplify_body): Revert "Do not initialize RTL profiling"
8873         change from yesterday.
8875 2010-06-02  Steven Bosscher  <steven@gcc.gnu.org>
8877         * c-ada-spec.c: Clean up redundant includes.
8879 2010-06-01  Steven Bosscher  <steven@gcc.gnu.org>
8881         * gimplify.c: Do not include except.h and optabs.h.
8882         (gimplify_body): Do not initialize RTL profiling.
8883         * gimple-low.c: Do not include rtl.h, diagnostic.h, langhooks.h,
8884         langhooks-def.h, timevar.h, except.h, hashtab.h, and expr.h.
8885         * gimple-fold.c: Do not include rtl.h, tm_p.h, ggc.h, basic-block.h,
8886         output.h, expr.h, diagnostic.h, timevar.h, value-prof.h, and
8887         langhooks.h.
8889         * tree-pretty-print.h: Include pretty-print.h.
8890         * gimple-pretty-print.h: Include pretty-print.h.
8892         * tree-pretty-print.c: Do not include diagnostic.h.
8893         * tree-vrp.c: Likewise.
8894         * tree-tailcall.c: Likewise
8895         * tree-scalar-evolution.c: Likewise
8896         * tree-ssa-dse.c: Likewise
8897         * tree-chrec.c: Likewise
8898         * tree-ssa-sccvn.c: Likewise
8899         * tree-ssa-copyrename.c: Likewise
8900         * tree-nomudflap.c: Likewise
8901         * tree-call-cdce.c: Likewise
8902         * tree-stdarg.c: Likewise
8903         * tree-ssa-math-opts.c: Likewise
8904         * tree-nrv.c: Likewise
8905         * tree-ssa-sink.c: Likewise
8906         * tree-browser.c: Likewise
8907         * tree-ssa-loop-ivcanon.c: Likewise
8908         * tree-ssa-loop.c: Likewise
8909         * tree-parloops.c: Likewise
8910         * tree-ssa-address.c: Likewise
8911         * tree-ssa-ifcombine.c: Likewise
8912         * tree-if-conv.c: Likewise
8913         * tree-data-ref.c: Likewise
8914         * tree-affine.c: Likewise
8915         * tree-ssa-phiopt.c: Likewise
8916         * tree-ssa-coalesce.c: Likewise
8917         * tree-ssa-pre.c: Likewise
8918         * tree-ssa-live.c: Likewise
8919         * tree-predcom.c: Likewise
8920         * tree-ssa-forwprop.c: Likewise
8921         * tree-ssa-dce.c: Likewise
8922         * tree-ssa-ter.c: Likewise
8923         * tree-ssa-loop-prefetch.c: Likewise
8924         * tree-optimize.c: Likewise
8925         * tree-ssa-phiprop.c: Likewise
8926         * tree-object-size.c: Likewise
8927         * tree-outof-ssa.c: Likewise
8928         * tree-ssa-structalias.c: Likewise
8929         * tree-switch-conversion.c: Likewise
8930         * tree-ssa-reassoc.c: Likewise
8931         * tree-ssa-operands.c: Likewise
8932         * tree-vectorizer.c: Likewise
8933         * tree-vect-data-refs.c: Likewise
8934         * tree-vect-generic.c: Likewise
8935         * tree-vect-stmts.c: Likewise
8936         * tree-vect-patterns.c: Likewise
8937         * tree-vect-slp.c: Likewise
8938         * tree-vect-loop.c: Likewise
8939         * tree-ssa-loop-ivopts.c: Likewise
8940         * tree-ssa-loop-im.c: Likewise
8941         * tree-ssa-loop-niter.c: Likewise
8942         * tree-ssa-loop-unswitch.c: Likewise
8943         * tree-ssa-loop-manip.c: Likewise
8944         * tree-ssa-loop-ch.c: Likewise
8945         * tree-dump.c: Likewise
8946         * tree-complex.c: Likewise
8948         * tree-into-ssa.c: Do not include diagnostic.h and expr.h.
8949         * tree-ssa-uninit.c: Likewise
8950         * tree-ssa-threadupdate.c: Likewise
8951         * tree-ssa-uncprop.c: Likewise
8952         * tree-ssa-ccp.c: Likewise
8953         * tree-ssa-dom.c: Likewise
8954         * tree-ssa-propagate.c: Likewise
8955         * tree-ssa-alias.c: Likewise
8956         * tree-dfa.c: Likewise
8957         * tree-cfgcleanup.c: Likewise
8958         * tree-sra.c: Likewise
8959         * tree-ssa-copy.c: Likewise
8960         * tree-ssa.c: Likewise
8961         * tree-profile.c: Likewise
8962         * tree-cfg.c: Likewise
8963         * tree-ssa-threadedge.c: Likewise
8964         * tree-vect-loop-manip.c: Likewise
8966         * tree-inline.c: Do not include diagnostic.h and expr.h.
8967         Include rtl.h.
8968         (copy_decl_for_dup_finish): Do not use NULL_RTX.
8970         * tree-loop-linear.c: Do not include diagnostic.h, expr.h and optabs.h.
8971         * tree-loop-distribution.c: Likewise.
8973 2010-06-01  Jan Hubicka  <jh@suse.cz>
8975         * ipa-pure-const.c (local_pure_const): Do NORETURN discovery.
8977 2010-06-01  Jan Hubicka  <jh@suse.cz>
8979         * tree-cfgcleanup.c (fixup_noreturn_call): Break out from ...;
8980         remove return value.
8981         (split_bbs_on_noreturn_calls) .... here.
8982         * tree-optimize.c (execute_fixup_cfg): Fixup noreturn calls too.
8983         * tree-flow.h (fixup_noreturn_call): New.
8985 2010-06-01  Jan Hubicka  <jh@suse.cz>
8987         * emit-rtl.c (remove_insn): Fix thinko in prevoius patch.
8989 2010-06-01  Nathan Froyd  <froydnj@codesourcery.com>
8991         * tree.h (build_nt_call_list): Delete.
8992         * tree.c (build_nt_call_list): Delete.
8994 2010-06-01  Jan Hubicka  <jh@suse.cz>
8996         * fwprop.c: Make emit-rtl.h include last.
8997         * rtlanal.c: Include emit-rtl.h.
8998         * genautomata.c: Output emit-rtl include into insn-automata.c
8999         * df-scan.c: Include emit-rtl.h.
9000         * haifa-sched.c: Indlude emit-rtl.h.
9001         * mode-switching.c: Indlude emit-rtl.h.
9002         * graph.c: Indlude emit-rtl.h.
9003         * sel-sched.c: Include emit-rtl.h.
9004         * sel-sched-ir.c: Include emit-rtl.h.
9005         * ira-build.c: Include emit-rtl.h.
9006         * emit-rtl.c (first_insn, last_insn): Remove defines.
9007         (get_insns, set_first_insn, get_last_insn, set_last_insn, get_max_uid):
9008         Move to emit-rtl.h.
9009         (set_new_first_and_last_insn, get_last_insn_anywhere,
9010         get_first_nonnote_insn, get_last_nonnote_insn, try_split,
9011         make_call_insn_raw, add_insn_after, add_insn_before, remove_insn,
9012         delete_insns_since, reorder_insns_nobb, emit_insn_after_1,
9013         emit_debug_insn_before, emit_insn, start_sequence, push_to_sequence,
9014         push_to_sequence2, push_topmost_sequence, end_sequence, copy_insn):
9015         Use accessor functions.
9016         * emit-rtl.h (gen_blockage, gen_rtvec, copy_insn_1, copy_insn,
9017          gen_int_mode, emit_copy_of_insn_after, set_reg_attrs_from_value,
9018         set_reg_attrs_for_parm, set_reg_attrs_for_decl_rtl, adjust_reg_mode,
9019         mem_expr_equal_p): Move here from rtl.h.
9020         (get_insns, set_first-insn, get_last_insn, set_last_insn, get_max_uid):
9021         Move here from emit-rtl.c; make inline.
9022         * cfglayout.h: Include emit-rtl.h.
9023         * rtl.h (gen_blockage, gen_rtvec, copy_insn_1, copy_insn,
9024          gen_int_mode, emit_copy_of_insn_after, set_reg_attrs_from_value,
9025         set_reg_attrs_for_parm, set_reg_attrs_for_decl_rtl, adjust_reg_mode,
9026         mem_expr_equal_p, get_insns, set_first-insn,
9027         get_last_insn, set_last_insn, get_max_uid): Move to emit-rtl.h.
9028         * reg-stack.c: Include emit-rtl.h.
9029         * dce.c: Likewise.
9031 2010-06-01  Jan Hubicka  <jh@suse.cz>
9033         * cgraph.h (tree_function_versioning): Update prototype.
9034         (cgraph_function_versioning): Update prototype.
9035         * cgraphunit.c (cgraph_copy_node_for_versioning): Accept bbs_to_copy
9036         bitmap.
9037         (cgraph_function_versioning): Accept new_entry_block and bbs_to_copy.
9038         (cgraph_materialize_clone, save_inline_function_body): Update use of
9039         tree_function_versioning.
9040         * tree-inline.c (copy_bb): Look for previous copied block to link
9041         after; fix debug output.
9042         (copy_cfg_body): Accept new_entry_block and bbs_to_copy.
9043         (copy_body): Likewise.
9044         (expand_call_inline): Update use of copy_body.
9045         (tree_function_versioning): Update use of copy body; accept
9046         blocks_to_copy and new_entry.
9048 2010-06-01  Jan Hubicka  <jh@suse.cz>
9050         * gegenrtl.c: Remove unnecesary prototypes.
9051         (gendecl): Remove.
9052         (gendef): Produce static inline.
9053         (gencode): Remove.
9054         (main): Do not decode parameters; generate header only.
9055         * Makefile.in (genrtl.c): Remove.
9057 2010-06-01  Jan Hubicka  <jh@suse.cz>
9059         * tree-switch-conversion.c (build_one_array): Make it readonly.
9061 2010-06-01  Richard Guenther  <rguenther@suse.de>
9063         * optabs.c (init_optabs): Guard all accesses to reinit.
9064         * ipa-pure-const.c (propagate): Fix another typo.
9065         * opts.c (common_handle_option): Split assignment to bool.
9066         * c-opts.c (c_common_handle_option): Likewise.
9068 2010-06-01  Arnaud Charlet  <charlet@adacore.com>
9069             Matthew Gingell  <gingell@adacore.com>
9071         * doc/invoke.texi: Mention -fdump-ada-spec.
9072         * tree-dump.c (dump_files): Add ada-spec.
9073         (FIRST_AUTO_NUMBERED_DUMP): Bump to 8.
9074         * tree-pass.h (tree_dump_index): Add TDI_ada.
9075         * gcc.c: Add support for -C without -E and for -fdump-ada-spec.
9076         (cpp_unique_options): Do not reject -C or -CC when -E isn't present.
9077         (default_compilers) <@c-header>: Allow -fdump-ada-spec on header files.
9078         * c-decl.c: Include c-ada-spec.h.
9079         (collect_source_ref_cb, collect_all_refs, for_each_global_decl): New
9080         functions.
9081         (c_write_global_declarations): Add handling of -fdump-ada-spec.
9082         * c-lex.c (c_lex_with_flags): Add handling of CPP_COMMENT.
9083         * Makefile.in (C_AND_OBJC_OBJS): Add c-ada-spec.o.
9084         * c-ada-spec.h, c-ada-spec.c: New files.
9086 2010-06-01  Richard Guenther  <rguenther@suse.de>
9088         PR lto/43853
9089         * ipa-pure-const.c (get_function_state): Hand back varying state
9090         if we do not have one.
9091         (has_function_state): New function.
9092         (duplicate_node_data): Adjust.
9093         (remove_node_data): Likewise.
9094         (pure_const_write_summary): Likewise.
9095         (propagate): Likewise.  Fix typo.
9097 2010-06-01  Jan Hubicka  <jh@suse.cz>
9099         * tree-cfg.c (verify_stmt): Do not skip could_throw test.
9100         * passes.c (execute_function_todo): Do not make implicit verify_ssa.
9101         (execute_all_ipa_transforms): Do not play with the states.
9103 2010-06-01  Maxim Kuvyrkov  <maxim@codesourcery.com>
9105         * config/arm/t-linux-androideabi: New.
9106         * config.gcc (arm*-*-linux-androideabi): Include multilib config.
9108 2010-06-01  Jan Hubicka  <jh@suse.cz>
9110         * tree-inline.c (estimate_num_insns): For stdarg functions look
9111         into call statement to count cost of argument passing.
9113 2010-06-01  Kai Tietz  <kai.tietz@onevision.com>
9115         * config/i386.c (ix86_output_addr_vec_elt): Make LPREFIX
9116         argument for fprintf.
9117         (ix86_output_addr_diff_elt): Likewise.
9118         (x86_function_profiler): Likewise.
9119         * config/cygming.h (LOCAL_LABEL_PREFIX): Fix for x64 no-underscore.
9120         (LPREFIX): Likewise.
9121         (ASM_GENERATE_INTERNAL_LABEL): Likewise.
9123 2010-05-31  Jakub Jelinek  <jakub@redhat.com>
9125         PR target/44338
9126         * config/i386/sse.md (fma4i_fmadd<mode>4256, fma4i_fmsub<mode>4256,
9127         fma4i_fnmadd<mode>4256, fma4i_fnmsub<mode>4256, fma4i_fmadd<mode>4,
9128         fma4i_fmsub<mode>4, fma4i_fnmadd<mode>4, fma4i_fnmsub<mode>4,
9129         fma4i_vmfmadd<mode>4, fma4i_vmfmsub<mode>4, fma4i_vmfnmadd<mode>4,
9130         fma4i_vmfnmsub<mode>4, fma4i_fmaddsubv8sf4, fma4i_fmaddsubv4df4,
9131         fma4i_fmaddsubv4sf4, fma4i_fmaddsubv2df4, fma4i_fmsubaddv8sf4,
9132         fma4i_fmsubaddv4df4, fma4i_fmsubaddv4sf4, fma4i_fmsubaddv2df4):
9133         Guard only with TARGET_FMA4 instead of TARGET_FMA4 &&
9134         TARGET_FUSED_MADD.
9136 2010-05-31  Jan Hubicka  <jh@suse.cz>
9138         * tree.h (tree_range_check_failed): Declare noreturn.
9140 2010-05-31  Jan Hubicka  <jh@suse.cz>
9142         * gimple.c (gimple_call_builtin_p): New function.
9143         * gimple.h (gimple_call_builtin_p): Declare.
9144         * tree-cfg.c (make_edges): Produce edge from BUILT_IN_RETURN
9145         to exit.
9146         (execute_warn_function_return): BUILT_IN_RETURN is return.
9147         (split_critical_edges): Return edges are not critical.
9148         (is_ctrl_altering_stmt): Builtin_in_return is altering.
9149         (gimple_verify_flow_info): Handle built_in_return.
9150         (execute_warn_function_return): Handle built_in_return.
9151         * ipa-pure-const.c (check_call): Ignore builtin_return.
9153 2010-05-31  Jakub Jelinek  <jakub@redhat.com>
9155         PR middle-end/44337
9156         * expr.c (expand_assignment): Don't store anything for out-of-bounds
9157         array accesses with non-MEM.
9159         PR tree-optimization/44182
9160         * tree-inline.c (copy_edges_for_bb): Don't split bb if a stmt that
9161         newly needs to end a bb is followed by debug stmts, instead return
9162         true from the function at the end.
9163         (maybe_move_debug_stmts_to_successors): New function.
9164         (copy_cfg_body): Call it if copy_edges_for_bb returned true.
9166 2010-05-31  Kai Tietz  <kai.tietz@onevision.com>
9168         PR target/44161
9169         * config/i386/cygming.h (SUBTARGET_OVERRIDE_OPTIONS): Handle flag_pic.
9171 2010-05-31  Eric Botcazou  <ebotcazou@adacore.com>
9173         * cgraphunit.c (cgraph_decide_is_function_needed): Really return false
9174         for nested functions in non-optimized compilation.
9176 2010-05-31  Richard Guenther  <rguenther@suse.de>
9178         * tree-ssa-structalias.c (find_func_aliases): Handle BUILT_IN_RETURN.
9180 2010-05-30  Jan Hubicka  <jh@suse.cz>
9182         * predict.c (maybe_hot_edge_p): Calls to functions called once is cold.
9184 2010-05-30  Richard Guenther  <rguenther@suse.de>
9186         PR lto/42975
9187         * tree-eh.c (execute_cleanup_eh_1): Copy from execute_cleanup_eh.
9188         (execute_cleanup_eh): Clear DECL_FUNCTION_PERSONALITY if it is
9189         no longer needed.
9191 2010-05-30  Iain Sandoe  <iains@gcc.gnu.org>
9193         * config/darwin.c (output_objc_section_asm_op): Add comment.
9194         (name_needs_quotes): Add '_' to list of valid comment chars.
9195         (machopic_output_function_base_name): Remove unneeded quotes.
9196         (darwin_encode_section_info): Adjust asm whitespace.
9197         * config/i386/darwin.h (ASM_OUTPUT_COMMON): Adjust asm tabs.
9198         (ASM_OUTPUT_LOCAL): Ditto.
9199         * config/rs6000/darwin.h (ASM_OUTPUT_COMMON): Ditto.
9200         * config/darwin.h (GLOBAL_ASM_OP): Ditto.
9201         * config/darwin9.h (ASM_OUTPUT_ALIGNED_COMMON): Ditto.
9203 2010-05-30  Eric Botcazou  <ebotcazou@adacore.com>
9205         * config/rs6000/rs6000.c (rs6000_output_function_entry): Use
9206         RS6000_OUTPUT_BASENAME unconditionally.
9207         (rs6000_output_function_epilogue): Likewise.
9209 2010-05-30  Jan Hubicka  <jh@suse.cz>
9211         * toplev.c (wrapup_global_declaration_2): Avoid creation of new varpool
9212         nodes.
9214 2010-05-30  Richard Guenther  <rguenther@suse.de>
9216         * tree-cfg.c (verify_gimple_assign_single): Implement
9217         verification for COND_EXPR rhs.
9219 2010-05-30  Jan Hubicka  <jh@suse.cz>
9221         * cgraph.h (cgraph_dump_file): Declare.
9222         * cgraphunit.c (cgraph_dump_file): Export.
9223         * ipa.c (dump_cgraph_node_set, dump_varpool_node_set): Be less verbose.
9225 2010-05-30  Jan Hubicka  <jh@suse.cz>
9227         * dwarf2out.c (reference_to_unused,
9228         premark_types_used_by_global_vars_helper): Avoid creation of new
9229         varpool nodes.
9231 2010-05-30  Jan Hubicka  <jh@suse.cz>
9233         * cgraph.h (cgraph_node_cannot_return,
9234         cgraph_edge_cannot_lead_to_return): New functions.
9235         * cgraph.c (cgraph_node_cannot_return,
9236         cgraph_edge_cannot_lead_to_return): Use them.
9237         * ipa-pure-const.c (pure_const_names): New static var.
9238         (check_call): Handle calls not leading to return.
9239         (pure_const_read_summary): Dump info read.
9240         (propagate): Dump info about propagation process; ignore side effects
9241         of functions not leading to exit; fix handling of pure functions.
9243 2010-05-30  Jan Hubicka  <jh@suse.cz>
9245         * config/i386/i386.c (pro_epilogue_adjust_stack): Use EBP
9246         for tail call epilogues.
9248 2010-05-30  Jan Hubicka  <jh@suse.cz>
9250         * passes.c (ipa_write_optimization_summaries_1, ipa_write_summaries_2,
9251         ipa_read_summaries_1, ipa_read_optimization_summaries_1): Initialize
9252         dump files.
9254 2010-05-29  Jan Hubicka  <jh@suse.cz>
9256         * ipa.c (cgraph_remove_unreachable_node): Walk references of correct
9257         node; remove references in node we no longer keep in cgrpah but need
9258         body of.
9260 2010-05-29  Jan Hubicka  <jh@suse.cz>
9262         * cgraph.c (cgraph_mark_reachable): Relax check for analyzed nodes.
9264 2010-05-29  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
9266         PR target/44165
9267         * config/pa/pa32-linux.h (CTOR_LIST_BEGIN): Mark __CTOR_LIST__ as used.
9269 2010-05-29  Jan Hubicka  <jh@suse.cz>
9271         * tree-vrp.c (debug_value_range, debug_all_value_ranges,
9272         debug_asserts_for, debug_all_asserts): Annotate with DEBUG_FUNCTION.
9273         * tree-into-ssa.c (debug_decl_set, debug_defs_stack, debug_currdefs,
9274         debug_tree_ssa, debug_tree_ssa_stats, debug_def_blocks,
9275         debug_names_replaced_by, debug_update_ssa): Likewise.
9276         * sbitmap.c (debug_sbitmap): Likewise.
9277         * genrecog.c (debug_decision, debug_decision_list): Likewise.
9278         * tree-pretty-print.c (debug_generic_expr, debug_generic_stmt,
9279         debug_tree_chain): Likewise.
9280         * tree-loop-distribution.c (debug_rdg_partitions): Likewise.
9281         * cgraph.c (debug_cgraph_node, debug_cgraph): Likewise.
9282         * optabs.c (debug_optab_libfuncs): Likewise.
9283         (verify_loop_closed_ssa): Likewise.
9284         * value-prof.c (verify_histograms): Likewise.
9285         * reload.c (debug_reload_to_stream, debug_reload): Likewise.
9286         * bitmap.c (debug_bitmap_file, debug_bitmap, bitmap_print): Likewise.
9287         * cfghooks.c (verify_flow_info): Likewise.
9288         * fold-const.c (debug_fold_checksum): Likewise.
9289         * omp-low.c (debug_omp_region, debug_all_omp_regions): Likewise.
9290         * cfg.c (debug_regset, debug_flow_info, debug_bb, debug_bb_n):
9291         Likewise.
9292         * omega.c (debug_omega_problem): Likewise.
9293         * cgraphunit.c (verify_cgraph_node, verify_cgraph): Likewise.
9294         * tree-ssa-ccp.c (debug_lattice_value): Likewise.
9295         * dominance.c (verify_dominators, debug_dominance_info,
9296         debug_dominance_tree): Likewise.
9297         * df-core.c (df_insn_uid_debug, df_insn_debug, df_insn_debug_regno,
9298         * df_regno_debug, df_ref_debug,
9299         debug_df_insn, debug_df_reg, debug_df_regno, debug_df_ref,
9300         debug_df_defno, debug_df_useno, debug_df_chain): Likewise.
9301         * tree-ssa-dom.c (debug_dominator_optimization_stats): Likewise.
9302         * sel-sched.c (debug_state): Likewise.
9303         * tree-ssa-alias.c (debug_alias_info, debug_points_to_info_for):
9304         Likewise.
9305         * cfganal.c (print_edge_list, verify_edge_list): Likewise.
9306         * dwarf2out.c (debug_dwarf_die, debug_dwarf): Likewise.
9307         * tree-eh.c (verify_eh_edges, verify_eh_dispatch_edge): Likewise.
9308         * gimple-pretty-print.c (debug_gimple_stmt, debug_gimple_seq):
9309         Likewise.
9310         * c-pretty-print.c (debug_c_tree): Likewise.
9311         * sel-sched-dump.c (debug_insn_rtx, debug_vinsn, debug_expr, debug_insn
9312         debug_av_set, debug_lv_set, debug_ilist, debug_blist,
9313         debug_insn_vector, debug_hard_reg_set, debug_mem_addr_value): Likewise.
9314         * ebitmap.c (debug_ebitmap): Likewise.
9315         * function.c (debug_find_var_in_block_tree): Likewise.
9316         * print-rtl.c (debug_rtx): Likewise.
9317         (debug_rtx_count): Likewise.
9318         (debug_rtx_list, debug_rtx_range, debug_rtx_find): Likewise.
9319         * stor-layout.c (debug_rli): Likewise.
9320         * ipa.c (debug_cgraph_node_set, debug_varpool_node_set): Likewise.
9321         * tree-data-ref.c (debug_data_references,
9322         debug_data_dependence_relations, debug_data_reference,
9323         debug_data_dependence_relation, debug_rdg_vertex,
9324         debug_rdg_component, debug_rdg): Likewise.
9325         * tree-affine.c (debug_aff): Likewise.
9326         * tree-dfa.c (debug_referenced_vars, debug_variable, debug_dfa_stats):
9327         Likewise.
9328         * except.c (debug_eh_tree, verify_eh_tree): Likewise.
9329         * emit-rtl.c (verify_rtl_sharing): Likewise.
9330         * tree-ssa-pre.c (debug_pre_expr, debug_bitmap_set,
9331         debug_value_expressions): Likewise.
9332         * tree-ssa-live.c (debug_scope_block, debug_scope_blocks): Likewise.
9333         * sese.c (debug_rename_map, debug_ivtype_map): Likewise.
9334         * print-tree.c (debug_tree, debug_vec_tree): Likewise.
9335         * cfglayout.c (verify_insn_chain): Likewise.
9336         * graphite-clast-to-gimple.c (debug_clast_name_indexes,
9337         debug_clast_stmt, debug_generated_program): Likewise.
9338         * ggc-page.c (debug_print_page_list): Likewise.
9339         * tree-ssa-ter.c (debug_ter): Likewise.
9340         * graphite-dependences.c (debug_pddr): Likewise.
9341         * sched-deps.c (debug_ds): Likewise.
9342         * tree-ssa.c (verify_ssa): Likewise.
9343         * graphite-poly.c (debug_scattering_function, debug_iteration_domain,
9344         debug_scattering_functions, debug_iteration_domains, debug_pdr,
9345         debug_pdrs, debug_pbb_domain, debug_pbb, debug_scop_context,
9346         debug_scop, debug_cloog, debug_scop_params, debug_lst): Likewise.
9347         * tree-inline.c (debug_find_tree): Likewise.
9348         * graphite-ppl.c (debug_ppl_linear_expr, debug_ppl_polyhedron_matrix,
9349         debug_ppl_powerset_matrix): Likewise.
9350         * var-tracking.c (debug_dv): Likewise.
9351         * system.h (DEBUG_FUNCTION, DEBUG_VARIABLE): Define.
9352         * cfgloop.c (verify_loop_structure): Likewise.
9353         * plugin.c (dump_active_plugins, debug_active_plugins): Likewise.
9354         * c-common.c (verify_sequence_points): Likewise.
9355         * sched-rgn.c (debug_regions, debug_region, debug_candidate,
9356         debug_candidates, debug_rgn_dependencies): Likewise.
9357         * tree-ssa-structalias.c (debug_constraint, debug_constraints,
9358         * debug_constraint_graph, debug_solution_for_var,
9359         debug_sa_points_to_info): Likewise.
9360         * sched-vis.c (debug_insn_slim, debug_bb_slim, debug_bb_n_slim):
9361         Likewie.
9362         * tree-cfg.c (debug_cfg_stats, verify_stmts, debug_function,
9363         debug_loops, debug_loop, debug_loop_num): Likewise.
9364         * passes.c (debug_pass): Likewise.
9365         (dump_properties): Likewise; add cfglayout property.
9366         (debug_properties): Likewise.
9367         * tree-ssa-reassoc.c (debug_ops_vector): Likewise.
9368         * varpool.c (debug_varpool): Likewise.
9369         * regcprop.c (debug_value_data): Likewise.
9370         * tree-ssa-operands.c (verify_imm_links, debug_immediate_uses,
9371         debug_immediate_uses_for): Likewise.
9373 2010-05-29  H.J. Lu  <hongjiu.lu@intel.com>
9375         PR bootstrap/44315
9376         * Makefile.in (build/gencondmd.o): Remove TM_H := $(GTM_H).
9377         Filter out insn-flags.h.
9379 2010-05-29  Jan Hubicka  <jh@suse.cz>
9381         * cgraph.h (struct varpool_node_set_def,
9382         struct cgraph_node_set_def): Remove unused AUX pointer.
9383         (cgraph_node_set_nonempty_p, varpool_node_set_nonempty_p): Use
9384         VEC_empty macro.
9386 2010-05-29  Jan Hubicka  <jh@suse.cz>
9388         PR middle-end/44324
9389         * ipa-cp.c (ipcp_insert_stage): Replace "clone" by "constprop".
9391 2010-05-29  Richard Guenther  <rguenther@suse.de>
9393         * lto-streamer.c (cached_bp): New global variable.
9394         (bitpack_create): Return the cached bitpack, if available.
9395         (bitpack_delete): Clear and cache the bitpack, if appropriate.
9396         (bp_pack_value): Remove redundant asserts.
9398 2010-05-29  Sebastian Pop  <sebastian.pop@amd.com>
9400         PR middle-end/44306
9401         * tree-if-conv.c (is_true_predicate): New.
9402         (is_predicated): Use is_true_predicate.
9403         (add_to_predicate_list): Same.  Do not use unshare_expr.
9404         (add_to_dst_predicate_list): Same.
9406 2010-05-29  Sebastian Pop  <sebastian.pop@amd.com>
9408         * tree-if-conv.c (add_to_dst_predicate_list): Do not use the ->aux
9409         field on edges.
9410         (predicate_bbs): Same.
9411         (clean_predicate_lists): Same.
9412         (find_phi_replacement_condition): Do not AND the predicate from
9413         edge->aux.
9415 2010-05-29  H.J. Lu  <hongjiu.lu@intel.com>
9417         PR bootstrap/44315
9418         * Makefile.in (build/gencondmd.o): Add a missing `\'.
9420 2010-05-29  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
9422         PR target/44261
9423         config/pa/pa.md (negdf2_slow, negsf2_slow): New patterns.
9424         (negdf2): Adjust expander pattern and use negdf2_slow.
9425         (negsf2): Likewise.
9427 2010-05-29  Nathan Froyd  <froydnj@codesourcery.com>
9429         * basic-block.h (struct control_flow_graph): Move last_label_uid field
9430         up.
9431         * df.h (struct df_base_ref): Move regno field up.
9432         * dwarf2out.c (struct dw_fde_struct): Move funcdef_number field down.
9433         * expr.h (struct separate_ops): Move location field up.
9434         * optabs.h (struct optab_d): Move libcall_basename field down.
9435         * config/i386/i386.c (struct ix86_frame): Move red_zone_size up.
9436         * config/i386/i386.h (struct machine_function): Convert call_abi field
9437         into a bitfield.  Move cfa field to the end of the structure.
9439 2010-05-29  Jan Hubicka  <jh@suse.cz>
9441         * varpool.c (varpool_get_node): Fix lookup.
9443 2010-05-29  Steven Bosscher  <steven@gcc.gnu.org>
9445         * config/spu/spu-protos.h: Do not include rtl.h.  Protect
9446         RTL specific prototypes with #ifdef RTX_CODE.
9447         * config/spu/spu-c.c: Include c-common.h instead of c-tree.h.
9448         * config/spu/t-spu-elf: Fix dependencies.
9450         * config/t-darwin (darwin-c.o): Remove C_TREE_H dependency.
9452 2010-05-29  Mike Stump  <mikestump@comcast.net>
9454         PR bootstrap/44315
9455         * Makefile.in (build/gencondmd.o): Be sure to use GTM_H instead of
9456         TM_H when building to avoid dependency loops.
9458 2010-05-29  Jan Hubicka  <jh@suse.cz>
9460         * cgraphunit.c (cgraph_materialize_clone): Only remove calles,
9461         refs and body; not the whole node for masters of materialized clones.
9463 2010-05-29  Mike Stump  <mikestump@comcast.net>
9465         * config/rs6000/rs6000-c.c: Remove c-tree.h include.
9467 2010-05-29  Jan Hubicka  <jh@suse.cz>
9469         * cgraph.c (clone_function_name): Take SUFFIX argument; export.
9470         (cgraph_create_virtual_clone): Take SUFFIX argument; udpate
9471         use of clone_function_name.
9472         * cgraph.h (cgraph_create_virtual_clone,
9473         cgraph_function_versioning): update prototypes.
9474         (clone_function_name): Declare.
9475         * ipa-cp.c (ipcp_insert_stage): Update call of
9476         cgraph_create_virtual_clone.
9477         * omp-low.c (create_omp_child_function_name): Use
9478         cgraph_create_virtual_clone.
9479         * cgraphunit.c (cgraph_copy_node_for_versioning): Fix edges updating.
9480         (cgraph_function_versioning): Take SUFFIX argument; produce new name
9481         and make decl local.
9483 2010-05-29  Steven Bosscher  <steven@gcc.gnu.org>
9485         * vec.h: Include statistics.h
9486         * Makefile.in: Introduce VEC_H.  Replace all vec.h dependencies
9487         with VEC_H.
9489 2010-05-29  Steven Bosscher  <steven@gcc.gnu.org>
9491         * c-lex.c: Do not include c-tree.h.
9492         * c-pretty-print.c: Likewise.
9493         * c-opts.c: Likewise.
9494         * c-gimplify.c: Likewise.
9495         * c-common.c: Likewise.
9496         * c-dump.c: Likewise.  Include c-common.h.
9498 2010-05-29  Steven Bosscher  <steven@gcc.gnu.org>
9500         * c-common.h (GCC_DIAG_STYLE): Define earlier in the file,
9501         before including diagnostic-core.h.
9502         (c_cpp_error): New prototype moved from c-tree.h.
9503         Use ATTRIBUTE_GCC_DIAG instead of ATTRIBUTE_GCC_CDIAG.
9504         * c-tree.h (ATTRIBUTE_GCC_CDIAG): Remove define.
9505         (pedwarn_c90, perwarn_c99): Use ATTRIBUTE_GCC_DIAG instead.
9506         (c_cpp_error): Prototype moved to c-common.h.
9507         * Makefile.in: Update dependency for C_COMMON_H.
9509 2010-05-29  Steven Bosscher  <steven@gcc.gnu.org>
9511         * c-common.h: Add FIXME for awkward split of c_register_addr_space.
9512         * c-common.c (c_register_addr_space): Remove here.
9513         * c-decl.c (c_register_addr_space): Re-add here.
9515 2010-05-28  Mike Stump  <mikestump@comcast.net>
9517         * config/darwin-c.c: Remove c-tree.h include.
9519 2010-05-28  Joseph Myers  <joseph@codesourcery.com>
9521         * gcc.c: Include diagnostic.h.
9522         (error_count): Remove.  All users changed to use errorcount.
9523         (programname): Remove.  All users changed to use progname.
9524         (fancy_abort, internal_error, fatal_error, error, warning, inform,
9525         fnotice): Remove.
9526         (execute): Don't include "Internal error" and bug reporting
9527         information in argument of internal_error call.
9528         (process_command): Don't increment error_count after calling
9529         perror_with_name.
9530         (input_filename): Rename to gcc_input_filename.  All users
9531         changed.
9532         (main): Call diagnostic_initialize.  Register delete_temp_files
9533         with atexit.  Use seen_error to test for errors.
9534         * gcc.h: Include diagnostic-core.h.
9535         (fatal_error, error, warning): Remove.
9536         * Makefile.in (GCC_H): Add $(DIAGNOSTIC_CORE_H).
9537         (GCC_OBJS): Add diagnostic.o, pretty-print.o and input.o.
9538         (gcc.o): Update dependencies.
9540 2010-05-28  Jeff Law  <law@redhat.com>
9542         * ira.c (ira_bad_reload_regno, ira_build_reload_regno_1): New
9543         functions.
9544         * ira.h (ira_bad_reload_regno): Declare
9545         * reload1.c (allocate_reload_reg): Use ira_bad_reload_regno.
9547         * ira-color.c (update_curr_costs): Free updated hard reg costs.
9548         (ira_reassign_conflict_allocnos): Remove bogus asserts.
9549         (allocno_reload_assign): Likewise.
9551 2010-05-28  Nathan Froyd  <froydnj@codesourcery.com>
9553         * tree-vect-stmts.c (vectorizable_assignment): Call build1 instead of
9554         build1_stat.
9556 2010-05-28  Richard Guenther  <rguenther@suse.de>
9558         PR lto/44312
9559         * lto-streamer-in.c (unpack_ts_fixed_cst_value_fields):
9560         Stream fixed-point constants mode.
9561         (unpack_ts_type_value_fields): Fix width of TYPE_MODE
9562         and TYPE_PRECISION.
9563         * lto-streamer-out.c (pack_ts_fixed_cst_value_fields):
9564         Stream fixed-point constants mode.
9565         (pack_ts_function_decl_value_fields): Fix width of TYPE_MODE
9566         and TYPE_PRECISION.
9568 2010-05-28  Sebastian Pop  <sebastian.pop@amd.com>
9570         * tree-scalar-evolution.c (set_nb_iterations_in_loop): Inlined in the
9571         only place it was called from.
9572         (number_of_latch_executions): Do not return chrec_dont_know when the
9573         may_be_zero is a runtime condition: instead, return a COND_EXPR
9574         including the may_be_zero condition.
9575         * cfgloop.h (struct loop): Add a note on COND_EXPRs to the comment
9576         of nb_iterations.
9577         * tree-ssa-loop-ivopts.c (contains_abnormal_ssa_name_p): Handle
9578         COND_EXPRs.
9580 2010-05-28  Sebastian Pop  <sebastian.pop@amd.com>
9582         * tree-if-conv.c (replace_phi_with_cond_gimple_assign_stmt): Don't
9583         generate COND_EXPRs for degenerate_phi_result.
9585 2010-05-28  Sebastian Pop  <sebastian.pop@amd.com>
9587         PR middle-end/44293
9588         * tree-if-conv.c (if_convertible_loop_p): Check the
9589         if-convertibility of phi nodes in non predicated BBs.
9591 2010-05-28  Joseph Myers  <joseph@codesourcery.com>
9593         * gcc.c (error, warning, inform): Remove duplicate ": " in output.
9595 2010-05-28  Joseph Myers  <joseph@codesourcery.com>
9597         PR driver/15303
9598         * gcc.c (inform, warning, inform): New functions.
9599         (fatal_ice): Rename to internal_error; change cmsgid parameter to
9600         gmsgid.  All callers changed.
9601         (notice): Rename to fnotice; add parameter fp.  All callers changed.
9602         (fatal_error): Rename to fatal_signal.  All users changed.
9603         (fatal): Rename to fatal_error; change cmsgid parameter to
9604         gmsgid.  All callers changed.
9605         (process_command): Use warning instead of error for warnings.
9606         (end_going_arg): Don't use _() around argument of error.
9607         (do_spec_1): Use inform for message from %n specs.  Use warning
9608         instead of error for warnings.
9609         (main): Use inform for comparison messages.  Use warning for
9610         message about unused linker input.
9611         (error): Increment error_count.  Print "error: ".
9612         * gcc.h (fatal): Change to fatal_error.
9613         (warning): Declare.
9614         * config/darwin-driver.c (darwin_default_min_version): Use warning
9615         instead of fprintf for warnings.
9616         * cppspec.c (lang_specific_driver): Use fatal_error instead of fatal.
9618 2010-05-28  Julian Brown  <julian@codesourcery.com>
9620         * config/arm/thumb2.md (*thumb2_addsi3_compare0): New.
9621         (*thumb2_addsi3_compare0_scratch): New.
9622         * config/arm/constraints.md (Pv): New.
9623         * config/arm/arm.md (*addsi3_compare0): Remove FIXME comment. Use
9624         for ARM mode only.
9625         (*addsi3_compare0_scratch): Likewise.
9627 2010-05-28  Jan Hubicka  <jh@suse.cz>
9629         * ipa-reference.c (add_static_var): Remove redundant all_module_statics
9630         check.
9631         (ipa_reference_write_optimization_summary): Call is_proper_for_analysis
9632         only on local statics.
9634 2010-05-28  Iain Sandoe  <iains@gcc.gnu.org>
9636         * config.gcc (*-*-darwin*): Adjust t-make fragments for Darwin.
9638 2010-05-28  Maxim Kuvyrkov  <maxim@codesourcery.com>
9640         PR bootstrap/44314
9641         * config/alpha/linux.h, config/rs6000/linux.h, config/rs6000/linux64.h
9642         (OPTION_GLIBC): Define.
9644 2010-05-28  Jakub Jelinek  <jakub@redhat.com>
9646         PR debug/41048
9647         * dwarf2out.c (double_int_type_size_in_bits): New function.
9648         (round_up_to_align): Change first argument and return value to
9649         double_int.
9650         (field_byte_offset): Work internally on double_ints.
9652         PR target/43636
9653         * builtins.c (expand_movstr): Use a temporary pseudo instead
9654         of target even when target is not NULL and not const0_rtx, but
9655         fails movstr predicate.
9656         * config/m32c/blkmov.md (movstr): Add predicate to first operand.
9658 2010-05-28  Joseph Myers  <joseph@codesourcery.com>
9660         * final.c (rest_of_clean_state): Use %m in errors instead of
9661         strerror (errno).
9662         * gengtype.c (read_input_list, close_output_files): Use xstrerror
9663         instead of strerror.
9664         * toplev.c (process_options): Use %m in errors instead of strerror
9665         (errno).
9666         * tree-dump.c (dump_begin): Use %m in errors instead of strerror
9667         (errno).
9669 2010-05-28  Uros Bizjak  <ubizjak@gmail.com>
9671         * config/i386/i386.c (ix86_fn_abi_va_list): Make static.
9672         (ix86_canonical_va_list_type): Make static.  Add declaration.
9673         (ix86_enum_va_list): Make static.  Reindent.
9674         * config/i386/i386-protos.h (ix86_fn_abi_va_list): Remove declaration.
9675         (ix86_canonical_va_list_type): Ditto.
9676         (ix86_enum_va_list): Ditto.
9678 2010-05-28  Richard Guenther  <rguenther@suse.de>
9680         * lto-wrapper.c (run_gcc): With -save-temps generate a
9681         user-visible ltrans filename.  Fixup ltrans unit numbering.
9683 2010-05-28  Kai Tietz  <kai.tietz@onevision.com>
9685         * c-common.c (c_common_nodes_and_builtins): Replace use
9686         of TARGET_ENUM_VA_LIST by target hook enum_va_list.
9687         * config/i386/i386.c (TARGET_ENUM_VA_LIST_P): Hook
9688         to ix86_enum_va_list.
9689         * config/i386/i386.h (TARGET_ENUM_VA_LIST): Removed.
9690         * doc/tm.texi (TARGET_ENUM_VA_LIST): Removed.
9691         (TARGET_ENUM_VA_LIST_P): Add hook description.
9692         * target-def.h (TARGET_ENUM_VA_LIST_P): Added.
9693         * target.h (gcc_target): Add enum_va_list hook.
9695         PR bootstrap/44299
9696         * config/i386/t-cygming: Adjust header dependencies for winnt-cxx.c.
9697         * config/i386/winnt-cxx.c (IN_GCC_FRONTEND): Remove undefine.
9698         * config/i386/winnt.c (IN_GCC_FRONTEND): Likewise.
9700 2010-05-28  Alan Modra  <amodra@gmail.com>
9702         PR target/44266
9703         * config/rs6000/rs6000.c (rs6000_legitimize_tls_address): Use
9704         emit_library_call machinery to set up __tls_get_addr calls.
9706 2010-05-28  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
9708         * config/s390/s390.md (movqi): Fix typo ('*' -> '#').
9710 2010-05-28  Dodji Seketeli  <dodji@redhat.com>
9712         Revert fix for PR c++/44188
9713         * c-common.c (is_typedef_decl): Revert the moving of  this
9714         definition ...
9715         * tree.c (is_typedef_decl): ... here.
9716         (typdef_variant_p): Revert the moving of this  definition
9717         here from gcc/cp/tree.c.
9718         * c-common.h (is_typedef_decl): Revert the moving of this
9719         declaration ...
9720         * tree.h (is_typedef_decl): ... here.
9721         (typedef_variant_p): Revert the moving of this  declaration here
9722         from gcc/cp/cp-tree.h
9723         * dwarf2out.c (is_naming_typedef_decl): Revert this new function.
9724         (gen_tagged_type_die): Revert the splitting out of ...
9725         (gen_type_die_with_usage): ... this function. Revert the anonymous
9726         tagged type handling.
9727         (gen_typedef_die): Revert emitting DW_TAG_typedef  for
9728         typedefs naming anonymous tagged types.
9730 2010-05-28  Segher Boessenkool  <segher@kernel.crashing.org>
9732         * config/rs6000/rs6000-modes.def (PSImode): Delete.
9734 2010-05-28  Segher Boessenkool  <segher@kernel.crashing.org>
9736         * config/rs6000/constraints.md ("z" constraint): Change to CA_REGS.
9737         * config/rs6000/predicates.md: Change XER_REGNO_P to CA_REGNO_P
9738         throughout.
9739         * config/rs6000/rs6000.c (rs6000_reg_names, alt_reg_names): Change
9740         "xer" to "ca".
9741         Change XER_REGNO_P to CA_REGNO_P, XER_REGNO to CA_REGNO, and
9742         XER_REGS to CA_REGS throughout.
9743         * config/rs6000/rs6000.h: Same.
9744         (ADDITIONAL_REGISTER_NAMES): Add "xer".
9745         * config/rs6000/rs6000.md: Change XER_REGNO to CA_REGNO.  Document
9746         that mode_iterator "P" is the size for arithmetic carries as well.
9747         * doc/md.texi (rs6000 section, "z" constraint): Fix documentation.
9749 2010-05-28  Jakub Jelinek  <jakub@redhat.com>
9751         PR bootstrap/44255
9752         * combine.c (struct rtx_subst_pair): Define unconditionally.
9753         (propagate_for_debug_subst): Likewise.  If not AUTO_INC_DEC,
9754         copy_rtx pair->to instead of cleanup_auto_inc_dec it.
9755         Call make_compound_operation on pair->to.
9756         (propagate_for_debug): Don't call make_compound_operation here.
9757         Always use simplify_replace_fn_rtx.
9759 2010-05-27  Sterling Augustine  <sterling@tensilica.com>
9761         * doc/invoke.texi (xtensa options): Add -mforce-no-pic.
9762         * config/xtensa/xtensa.c (override_options): Check
9763           TARGET_FORCE_NO_PIC and set flag_pic.
9764         * config/xtensa/xtensa.opt: Document -mforce-no-pic
9766 2010-05-27  Kai Tietz  <kai.tietz@onevision.com>
9768         PR bootstrap/44299
9769         * config/i386/winnt.c (IN_GCC_FRONTEND): Undefine.
9770         * config/i386/winnt-cxx.c (IN_GCC_FRONTEND): Likewise.
9772 2010-05-27  Joseph Myers  <joseph@codesourcery.com>
9774         * diagnostic-core.h: New.  Contents moved from diagnostic.h and
9775         toplev.h.
9776         * diagnostic.c: Don't include toplev.h.
9777         (progname): Define.  Moved from toplev.c.
9778         (seen_error): New function.
9779         * diagnostic.h: Include diagnostic-core.h.
9780         (diagnostic_t, emit_diagnostic): Don't declare here.
9781         * toplev.c (progname): Move to toplev.c.
9782         (emit_debug_global_declarations, compile_file, finalize,
9783         do_compile, toplev_main): Use seen_error.
9784         * toplev.h: Include diagnostic-core.h.
9785         (trim_filename, GCC_DIAG_STYLE, ATTRIBUTE_GCC_DIAG,
9786         internal_error, warning, warning_at, error, error_n, error_at,
9787         fatal_error, pedwarn, permerror, sorry, inform, inform_n,
9788         verbatim, fnotice, progname): Move to diagnostic-core.h.
9789         * builtins.c: Include diagnostic-core.h instead of diagnostic.h.
9790         (expand_builtin_expect): Use seen_error.
9791         * c-decl.c: Include diagnostic-core.h instead of diagnostic.h.
9792         (c_make_fname_decl, c_write_global_declarations): Use seen_error.
9793         * c-format.c: Include diagnostic-core.h instead of diagnostic.h.
9794         * c-gimplify.c: Include diagnostic-core.h instead of diagnostic.h.
9795         * c-lang.c: Include diagnostic-core.h instead of diagnostic.h.
9796         * c-lex.c (c_lex_with_flags, interpret_float): Don't increment
9797         errorcount for errors.
9798         * c-opts.c (c_common_finish): Use seen_error.
9799         * cgraph.c: Include diagnostic-core.h instead of diagnostic.h.
9800         * cgraphunit.c (verify_cgraph_node, verify_cgraph,
9801         cgraph_output_pending_asms, cgraph_optimize): Use seen_error.
9802         * coverage.c: Include diagnostic-core.h instead of diagnostic.h.
9803         (get_coverage_counts): Use seen_error.
9804         * dwarf2out.c (dwarf2out_finish): Use seen_error.
9805         * gimplify.c (gimplify_var_or_parm_decl, gimple_push_cleanup,
9806         gimplify_body): Use seen_error.
9807         * ipa-inline.c (cgraph_early_inlining): Use seen_error.
9808         * ipa-pure-const.c (gate_pure_const): Use seen_error.
9809         * ipa-reference.c (gate_reference): Use seen_error.
9810         * jump.c: Include diagnostic-core.h instead of diagnostic.h.
9811         * lambda-code.c: Include diagnostic-core.h instead of
9812         diagnostic.h.
9813         * lto-cgraph.c: Include diagnostic-core.h instead of diagnostic.h.
9814         * lto-compress.c: Include diagnostic-core.h instead of
9815         diagnostic.h.
9816         * lto-section-in.c: Include diagnostic-core.h instead of
9817         diagnostic.h.
9818         * lto-streamer-out.c: Include diagnostic-core.h instead of
9819         diagnostic.h.
9820         * lto-streamer.c: Include diagnostic-core.h instead of
9821         diagnostic.h.
9822         (gate_lto_out): Use seen_error.
9823         * matrix-reorg.c: Include diagnostic-core.h instead of
9824         diagnostic.h.
9825         * omega.c: Include diagnostic-core.h instead of diagnostic.h.
9826         * omp-low.c: Include diagnostic-core.h instead of diagnostic.h.
9827         (gate_expand_omp, lower_omp_1): Use seen_error.
9828         * passes.c: Include diagnostic-core.h instead of diagnostic.h.
9829         (rest_of_decl_compilation, rest_of_type_compilation,
9830         gate_rest_of_compilation, ipa_write_summaries): Use seen_error.
9831         * tree-cfg.c (label_to_block_fn): Use seen_error.
9832         * tree-inline.c (optimize_inline_calls): Use seen_error.
9833         * tree-mudflap.c (mudflap_finish_file): Use
9834         seen_error.
9835         * tree-optimize.c (gate_all_optimizations,
9836         gate_all_early_local_passes, gate_all_early_optimizations): Use
9837         seen_error.
9838         * tree-ssa-structalias.c (gate_ipa_pta): Use seen_error.
9839         * varpool.c: Include diagnostic-core.h instead of diagnostic.h.
9840         (varpool_remove_unreferenced_decls,
9841         varpool_assemble_pending_decls): Use seen_error.
9842         * Makefile.in (DIAGNOSTIC_CORE_H): Define.
9843         (TOPLEV_H, DIAGNOSTIC_H): Update.
9844         (c-decl.o, c-lang.o, c-format.o, lto-compress.o, lto-cgraph.o,
9845         lto-streamer-out.o, lto-section-in.o, lto-streamer.o,
9846         c-gimplify.o, omp-low.o, omega.o, diagnostic.o, passes.o,
9847         builtins.o, jump.o, cgraph.o, varpool.o, matrix-reorg.o,
9848         coverage.o, lambda-code.o): Update dependencies.
9850 2010-05-25  Dodji Seketeli  <dodji@redhat.com>
9852         PR c++/44188
9853         * c-common.c (is_typedef_decl): Move this definition ...
9854         * tree.c (is_typedef_decl): ... here.
9855         (typdef_variant_p): Move definition here from gcc/cp/tree.c.
9856         * c-common.h (is_typedef_decl): Move this declaration ...
9857         * tree.h (is_typedef_decl): ... here.
9858         (typedef_variant_p): Move declaration here from gcc/cp/cp-tree.h
9859         * dwarf2out.c (is_naming_typedef_decl): New function.
9860         (gen_tagged_type_die): Split out of ...
9861         (gen_type_die_with_usage): ... this function. When an anonymous
9862         tagged type is named by a typedef, make sure a DW_TAG_typedef DIE
9863         is emitted for the typedef.
9864         (gen_typedef_die): Emit DW_TAG_typedef also for typedefs naming
9865         anonymous tagged types.
9867 2010-05-27  Jason Merrill  <jason@redhat.com>
9869         * print-tree.c (debug_vec_tree): New fn.
9870         (print_vec_tree): New fn.
9871         * tree.h: Declare them.
9872         * gdbinit.in (pvt): New command.
9874         * print-tree.c (print_node) [TREE_VEC]: Print elements normally.
9876         * gdbinit.in (pdd): New command.
9878 2010-05-27  Jan Hubicka  <jh@suse.cz>
9880         * ipa-inline.c (cgraph_estimate_size_after_inlining): Make inline.
9881         (update_caller_keys): Return early if there are no callers;
9882         only update fibheap when decresing the key.
9883         (update_callee_keys): Avoid recursion.
9884         (decide_inlining_of_small_functions): When badness does not match;
9885         re-insert into fibheap.
9887 2010-05-27  Steven Bosscher  <steven@gcc.gnu.org>
9889         * Makefile.in (ALL_CFLAGS): Add file-specific CFLAGS.
9890         (ALL_HOST_FRONTEND_OBJS): New, for all front-end specific objects.
9891         (ALL_HOST_BACKEND_OBJS): New, for all backend and target objects.
9892         (ALL_HOST_OBJS): Now a union of the above two.
9893         <section "Language makefile fragments">: Add -DIN_GCC_FRONTEND for
9894         all files in ALL_HOST_FRONTEND_OBJS.
9895         * system.h: Poison GCC_RTL_H if IN_GCC_FRONTEND is defined.
9897         * c-common.c: Pretend to be a backend file by undefining
9898         IN_GCC_FRONTEND (still need rtl.h here).
9900 2010-05-27  Jan Hubicka  <jh@suse.cz>
9902         * cgraph.h (struct cgraph_node): Mark former_clone_of by GTY ((skip)).
9903         * cgraphunit.c (clone_of_p): Compile only when checking is enabled.
9905 2010-05-27  Jan Hubicka  <jh@suse.cz>
9907         * sched-ebb.c: Rename struct deps to struct deps_desc.
9908         * ddg.c: Likewise.
9909         * sel-sched-ir.c: Likewise.
9910         * sched-deps.c: Likewise.
9911         * sched-int.h: Likewise.
9912         * sched-rgn.c: Likewise.
9914 2010-05-27  Jon Beniston  <jon@beniston.com>
9916         PR 43726
9917         * config/lm32/lm32.h: Remove definition of
9918         GO_IF_MODE_DEPENDENT_ADDRESS. Update copyright year.
9920 2010-05-27  Eric Botcazou  <ebotcazou@adacore.com>
9922         PR lto/44230
9923         * dwarf2out.c (dwarf2out_begin_prologue): Fix nits in sorry message.
9925 2010-05-27  Richard Guenther  <rguenther@suse.de>
9927         PR tree-optimization/44284
9928         * tree-vect-stmts.c (vectorizable_assignment): Handle
9929         sign-changing conversions as simple copy.
9931 2010-05-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
9933         * gthr-posix.h (pthread_cancel): Don't declare if compiling against
9934         Bionic C library.
9935         (__gthread_active_p): Check for pthread_create if compiling against
9936         Bionic C library.
9938 2010-05-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
9940         Support compilation for Android platform.  Reimplement -mandroid.
9942         * config.gcc (*linux*): Include linux-android.h and linux-android.opt.
9943         (*android*): Set ANDROID_DEFAULT.
9944         (arm*-*-linux*): Include linux-android.h.
9945         (arm*-*-eabi*): Don't include previous -mandroid implementation.
9946         * config/arm/eabi.h: Remove, move Android-specific parts ...
9947         * config/linux-android.h: ... here.  New file.
9948         * config/arm/eabi.opt: Rename to ...
9949         * config/linux-android.opt: ... this.
9950         (mandroid): Allow -mno-android option.  Initialize based on
9951         ANDROID_DEFAULT.
9952         * config/linux.h (STARTFILE_SPEC, ENDFILE_SPEC, CC1_SPEC, LIB_SPEC):
9953         Move logic to corresponding LINUX_TARGET_* macros.
9954         (TARGET_OS_CPP_BUILTINS): Define __ANDROID__, when appropriate.
9955         * config/linux-eabi.h (LINK_SPEC, CC1_SPEC, CC1PLUS_SPEC, LIB_SPEC,)
9956         (STARTFILE_SPEC, ENDFILE_SPEC): Define to choose between Linux and
9957         Android definitions.
9958         (LINUX_TARGET_OS_CPP_BUILTINS): Define __ANDROID__ if TARGET_ANDROID.
9959         * doc/invoke.texi (-mandroid, -tno-android-cc, -tno-android-ld):
9960         Document.
9962 2010-05-27  Maxim Kuvyrkov  <maxim@codesourcery.com>
9964         Add support for Bionic C library
9966         * config.gcc (LIBC_GLIBC, LIBC_BIONIC, LIBC_UCLIBC): New tm_define
9967         macro.
9968         (DEFAULT_LIBC): New tm_define macro set to one of LIBC_*.
9969         (bfin*-uclinux, moxie-*-uclinux*, m68k-*-uclinux*): Update.
9971         * config/linux.h (OPTION_GLIBC, OPTION_UCLIBC, OPTION_BIONIC): Define.
9972         (LINUX_TARGET_OS_CPP_BUILTINS): Define __gnu_linux__ only for GLIBC.
9973         (CHOOSE_DYNAMIC_LINKER1, CHOOSE_DYNAMIC_LINKER): Make it easier
9974         to support multiple C libraries.  Handle Bionic.
9975         (BIONIC_DYNAMIC_LINKER, BIONIC_DYNAMIC_LINKER32,)
9976         (BIONIC_DYNAMIC_LINKER64): Define.
9977         (LINUX_DYNAMIC_LINKER, LINUX_DYNAMIC_LINKER32, LINUX_DYNAMIC_LINKER64):
9978         Update.
9979         (TARGET_HAS_SINCOS): Enable for Bionic.
9981         * config/linux.opt: Rewrite to handle more than 2 C libraries.  Make
9982         the last option specified on command line take effect.
9983         (linux_uclibc): Rename to linux_libc, initialize using DEFAULT_LIBC.
9984         (mbionic): New.
9985         (mglibc, muclibc): Update.
9987         * config/alpha/linux-elf.h, config/rs6000/linux64.h,
9988         * config/rs6000/sysv4.h (CHOOSE_DYNAMIC_LINKER): Update to use
9989         DEFAULT_LIBC.
9991         * doc/invoke.texi (-mglibc, -muclibc): Update.
9992         (-mbionic): Document.
9994 2010-05-27  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
9996         * c-common.h (c_register_addr_space): Add prototype.
9997         (ADDR_SPACE_KEYWORD): Remove.
9998         * c-common.c (c_register_addr_space): New function.
9999         (c_addr_space_name): Reimplement.
10000         (c_common_reswords): Do not include TARGET_ADDR_SPACE_KEYWORDS.
10002         * config/spu/spu.h (TARGET_ADDR_SPACE_KEYWORDS): Remove.
10003         (REGISTER_TARGET_PRAGMAS): Call c_register_addr_space.
10005         * doc/tm.texi (Named Address Spaces): Mention c_register_addr_space.
10006         Remove TARGET_ADDR_SPACE_KEYWORDS.
10008 2010-05-27  Joseph Myers  <joseph@codesourcery.com>
10010         * input.c: New file.
10011         * input.h (main_input_filename): Move declaration to toplev.h.
10012         * toplev.c (input_location, line_table): Move to input.c
10013         * toplev.h (main_input_filename): Move declaration from input.h.
10014         * tree.c (expand_location): Move to input.c.
10015         * Makefile.in (OBJS-common): Add input.o.
10016         (input.o): Add dependencies.
10018 2010-05-27  Richard Guenther  <rguenther@suse.de>
10020         * lto-wrapper.c (maybe_unlink_file): Ignore unlink failure
10021         for non-existant files.
10022         (fork_execute): Mark args_name file as deleted.
10024 2010-05-27  Kai Tietz  <kai.tietz@onevision.com>
10026         PR bootstrp/44287
10027         * c-lex.c (narrowest_unsigned_type): Check for NULL_TREE.
10028         (narrow_signed_type): Likewise.
10030 2010-05-26  Jan Hubicka  <jh@suse.cz>
10032         * cgraphunit.c (verify_cgraph_node): Do checking that DECL match
10033         edge only when checking is enabled; check using former_clone_of;
10034         check inline clones too.
10035         (cgraph_materialize_clone): Record former_clone_of pointer.
10036         (cgraph_redirect_edge_call_stmt_to_callee): Assert that we are not
10037         combining redirections; dump args_to_skip bitmap
10038         (cgraph_materialize_all_clones): Do no redirection here.
10039         * ipa-inline.c (inline_transform): Do redirection here.
10040         * cgraph.h (struct cgraph_node): Add former_clone_of filed (enabled
10041         cheking only).
10043 2010-05-26  Steven Bosscher  <steven@gcc.gnu.org>
10045         * config/avr/avr-c.c: Do not include regs.h.
10046         Include cpplib.h for cpp_define and tree.h for c-common.h.
10047         * config/avr/avr-devices.c (avr_mcu_types): Fix initializer.
10048         * config/avr/t-avr: Fix dependencies for avr-c.o.
10050 2010-05-26  Steven Bosscher  <steven@gcc.gnu.org>
10052         * explow.c (set_stack_check_libfunc): Adjust to accept name as a
10053         string instead of SYMBOL_REF rtx.
10054         * rtl.h (set_stack_check_libfunc): Move prototype from here...
10055         * libfuncs.h: ...to here.  Adjust for explow.c change.
10057 2010-05-26  Joseph Myers  <joseph@codesourcery.com>
10059         * pretty-print.c: Don't include ggc.h.
10060         (identifier_to_locale_alloc, identifier_to_locale_free): Define.
10061         (identifier_to_locale): Use them for allocation.
10062         * pretty-print.h (identifier_to_locale_alloc,
10063         identifier_to_locale_free): Declare.
10064         * toplev.c (alloc_for_identifier_to_locale): New.
10065         (general_init): Set identifier_to_locale_alloc and
10066         identifier_to_locale_free.
10067         * Makefile.in (pretty-print.o): Update dependencies.
10069 2010-05-26  Eric Botcazou  <ebotcazou@adacore.com>
10071         * gimple.c (gimple_types_compatible_p): Return 0 for aggregate and
10072         pointer types if they have different alignment or mode.
10074 2010-05-26  Anatoly Sokolov  <aesok@post.ru>
10076         * config/sparc/sparc.h (FUNCTION_VALUE, FUNCTION_OUTGOING_VALUE,
10077         LIBCALL_VALUE, FUNCTION_VALUE_REGNO_P): Remove macros.
10078         * config/sparc/sparc-protos.h (function_value): Remove declaration.
10079         * config/sparc/sparc.c (sparc_function_value, sparc_libcall_value,
10080         sparc_function_value_regno_p): New functions.
10081         (TARGET_FUNCTION_VALUE, TARGET_LIBCALL_VALUE,
10082         TARGET_FUNCTION_VALUE_REGNO_P): Define.
10083         (function_value): Rename to...
10084         (sparc_function_value_1): ... this. Make static. Change 'incoming_p'
10085         argument to 'outgoing'.
10086         (function_arg_record_value, function_arg_union_value,
10087         function_arg_vector_value): Update comment.
10089 2010-05-26  Eric Botcazou  <ebotcazou@adacore.com>
10091         * dwarf2out.c (struct dw_fde_struct): Reorder flags.
10092         (fde_needed_for_eh_p): New predicate.
10093         (output_call_frame_info): Use it throughout to decide whether FDEs
10094         are needed for EH purpose.
10095         (dwarf2out_begin_prologue): Reorder assignments.
10097 2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
10099         * tree-if-conv.c (if_convertible_gimple_assign_stmt_p): Do not
10100         special case loop->header.
10101         (is_predicated): New.
10102         (if_convertible_loop_p): Call it.
10104 2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
10106         * tree-if-conv.c (add_to_dst_predicate_list): Do not pass a statemet
10107         iterator in parameter.  Do not generate code during the analysis.
10108         (tree_if_convert_cond_stmt): Removed.
10109         (tree_if_convert_stmt): Removed.
10110         (predicate_bbs): New.
10111         (if_convertible_loop_p): Call predicate_bbs.
10112         (tree_if_conversion): Simplify the top-level logic as predicate_bbs
10113         now contains all the analysis part.
10115 2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
10117         * tree-if-conv.c (tree_if_convert_cond_stmt): Do not remove
10118         statements in the analysis part.
10119         (tree_if_convert_stmt): Update comment.
10120         (remove_conditions_and_labels): New.
10121         (combine_blocks): Call remove_conditions_and_labels.
10122         (tree_if_conversion): Update comment.
10124 2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
10126         * tree-if-conv.c (if_convertible_bb_p): Don't handle BBs with more
10127         than 2 predecessors or more than 2 successors.
10129 2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
10131         * tree-if-conv.c (if_convertible_loop_p): Avoid if-conversion
10132         of loops in which the data dependence analysis fails.
10134 2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
10136         * tree-if-conv.c (if_convertible_loop_p): Do not compute/free
10137         CDI_POST_DOMINATORS.
10138         (tree_if_conversion): Same.
10140 2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
10142         * tree-if-conv.c (tree_if_conversion): Do not return a bool.
10144 2010-05-26  Sebastian Pop  <sebastian.pop@amd.com>
10146         * tree-if-conv.c: Update copyright years.  Fix comments.
10147         Fix indentation.
10149 2010-05-26  Kai Tietz  <kai.tietz@onevision.com>
10151         * builtin-types.def (BT_INT128): New primitive type.
10152         (BT_UINT128): Likewise.
10153         * c-common.c (c_common_r): Add __int128 keyword.
10154         (c_common_type_for_size): Handle __int128.
10155         (c_common_type_for_mode): Likewise.
10156         (c_common_signed_or_unsigned_type): Likewise.
10157         (c_common_nodes_and_builtins): Add builtin type
10158         if target supports 128-bit integer scalar.
10159         * c-common.h (enum rid): Add RID_INT128.
10160         * c-cppbuiltin.c (c_cpp_builtins): Define __SIZEOF_INT128__
10161         if target supports 128-bit integer scalar.
10162         * c-decl.c (declspecs_add_type): Handle new keyword __int128.
10163         (finish_declspecs): Likewise.
10164         * c-parser.c (c_token_starts_typename): Handle RID_INT128.
10165         (c_token_starts_declspecs): Likewise.
10166         (c_parser_declspecs): Likewise.
10167         (c_parser_attributes): Likewise.
10168         (c_parser_objc_selector): Likewise.
10169         * c-pretty-print.c (pp_c_integer_constant): Handle __int128.
10170         * c-tree.h (enum c_typespec_keyword): Add cts_int128.
10171         * gimple.c (gimple_signed_or_unsigned_type): Handle int128 types.
10172         * tree.c (make_or_reuse_type): Likewise.
10173         (make_unsigned_type): Likewise.
10174         (build_common_tree_nodes_2): Likewise.
10175         * tree.h (enum integer_type_kind): Add itk_int128 and
10176         itk_unsigned_int128.
10177         (int128_integer_type_node): New define.
10178         (int128_unsigned_type_node): New define.
10179         * doc/extend.texi: Add documentation about __int128 type.
10181 2010-05-26  Richard Guenther  <rguenther@suse.de>
10183         * tree-ssa-sccvn.c (copy_nary): Adjust.
10184         (copy_phis): Rename to ...
10185         (copy_phi): ... this.  Adjust.
10186         (copy_references): Rename to ...
10187         (copy_reference): ... this.  Adjust.
10188         (process_scc): Use HTAB_FOR_EACH_ELEMENT to insert the
10189         result into the valid table.
10191 2010-05-26  Steven Bosscher  <steven@gcc.gnu.org>
10193         * config/spu/spu-c.c: Do not include function.h, rtl.h, expr.h,
10194         insn-config.h, insn-codes.h, recog.h, and optabs.h.
10196 2010-05-26  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
10198         * ggc.h (ggc_min_expand_heuristic, ggc_min_heapsize_heuristic): Remove.
10200 2010-05-26  Richard Guenther  <rguenther@suse.de>
10202         * opts.c (common_handle_option): Handle OPT_Ofast.
10204 2010-05-26  Joseph Myers  <joseph@codesourcery.com>
10206         * diagnostic.c: Don't include opts.h.
10207         (permissive_error_option): Define.
10208         (diagnostic_initialize): Take n_opts parameter.  Allocate memory
10209         for classify_diagnostic.  Don't use memset for
10210         classify_diagnostic.  Initialize new and recently added fields.
10211         (diagnostic_classify_diagnostic): Use context->n_opts instead of
10212         N_OPTS.
10213         (diagnostic_report_diagnostic): Pass context parameter to
10214         diagnostic_report_warnings_p.  Use option_enabled and option_name
10215         hooks from context.
10216         (emit_diagnostic): Use permissive_error_option.
10217         (permerror): Likewise.
10218         * diagnostic.h: Don't include options.h.
10219         (struct diagnostic_context): Add n_opts, opt_permissive,
10220         inhibit_warnings, warn_system_headers, option_enabled and
10221         option_name fields.  Change classify_diagnostic to a pointer.
10222         * opts-diagnostic.h: New file.
10223         * opts.c: Include opts-diagnostic.h.
10224         (common_handle_option): Set global_dc fields for -Wfatal-errors,
10225         -Wsystem-headers, -fshow-column, -pedantic-errors and -w.
10226         (option_name): New function.
10227         * c-opts.c (c_common_init_options): Set global_dc->opt_permissive.
10228         (c_common_handle_option): Set global_dc->permissive for
10229         -fpermissive.
10230         * c-common.c (c_cpp_error): Save and restore
10231         global_dc->warn_system_headers, not variable warn_system_headers.
10232         * toplev.c: Include opts-diagnostic.h.
10233         (general_init): Update call to diagnostic_initialize.  Set
10234         global_dc->show_column, global_dc->option_enabled and
10235         global_dc->option_name.
10236         (process_options): Don't set global_dc fields here.
10237         * Makefile.in (DIAGNOSTIC_H): Remove options.h.
10238         (diagnostic.o, opts.o, toplev.o): Update dependencies.
10240 2010-04-30  Hariharan Sandanagobalane  <hariharan@picochip.com>
10242         * config/picochip/picochip.md (movsi): Split a movsi from a
10243         const after reload.
10245 2010-05-26  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
10247         * ggc-zone.c: Update copyright year.
10248         (poison_region): Mark memory for Valgrind as undefined before
10249         memset () call and inaccessible afterwards.
10250         (ggc_pch_total_size): Change type of i to int.
10252 2010-05-26  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
10254         * ggc-common.c (ggc_free_overhead): Allow empty slot.
10256 2010-05-26  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
10258         * ggc-common.c: Update copyright year.
10259         (ggc_rlimit_bound): Remove prototype.  Compile only if
10260         !ENABLE_GC_CHECKING && !ENABLE_GC_ALWAYS_COLLECT.
10261         (ggc_min_heapsize_heuristic): Compile only if !ENABLE_GC_CHECKING
10262         && !ENABLE_GC_ALWAYS_COLLECT.  Make static.
10263         (ggc_min_heapsize_heuristic): Likewise.
10265 2010-05-26  Richard Guenther  <rguenther@suse.de>
10267         PR rtl-optimization/44164
10268         * tree-ssa-alias.c (aliasing_component_refs_p): Fix the
10269         no-common access-path disambiguation.
10270         (indirect_ref_may_alias_decl_p): Adjust.
10271         (indirect_refs_may_alias_p): Likewise.
10272         (refs_may_alias_p_1): Likewise.
10274 2010-05-26  Steven Bosscher  <steven@gcc.gnu.org>
10276         * c-typeck.c: Do not include expr.h.
10278 2010-05-26  Steven Bosscher  <steven@gcc.gnu.org>
10280         * rtl.h (decl_default_tls_model): Move prototype from here...
10281         * output.h: ...to here.
10282         * c-decl.c: Do not include rtl.h.
10283         * c-pragma.c: Likewise.
10284         * c-parser.c: Likewise.
10285         * c-gimplify.c: Likewise.  And also not hard-reg-set.
10286         * c-common.c: Do not include rtl.h.  Include tm_p.h and add a
10287         FIXME note for it.  Add a FIXME note for expr.h.
10288         * config/i386/i386-protos.h (ix86_enum_va_list, ix86_fn_abi_va_list,
10289         ix86_canonical_va_list_type): Make visible even if RTX_CODE is not
10290         defined.
10292 2010-05-26  Jakub Jelinek  <jakub@redhat.com>
10294         PR target/44199
10295         * config/rs6000/rs6000.c (rs6000_emit_epilogue): If cfun->calls_alloca
10296         or total_size is larger than red zone size for non-V4 ABI, emit a
10297         stack_tie resp. frame_tie insn before stack pointer restore.
10298         * config/rs6000/rs6000.md (frame_tie): New insn.
10300 2010-05-25  Eric Botcazou  <ebotcazou@adacore.com>
10302         * function.h (struct function): Add can_throw_non_call_exceptions bit.
10303         * lto-streamer-in.c (input_function): Stream it in.
10304         * lto-streamer-out.c (output_function): Stream it out.
10305         * function.c (allocate_struct_function): Set it.
10306         (expand_function_end): Substitute cfun->can_throw_non_call_exceptions
10307         for flag_non_call_exceptions.
10308         * cfgbuild.c (control_flow_insn_p): Likewise.
10309         (make_edges): Likewise.
10310         * cfgexpand.c (expand_stack_alignment): Likewise.
10311         * combine.c (distribute_notes): Likewise.
10312         * cse.c (cse_extended_basic_block): Likewise.
10313         * except.c (insn_could_throw_p): Likewise.
10314         * gcse.c (simple_mem): Likewise.
10315         * ipa-pure-const.c (check_call): Likewise.
10316         (check_stmt ): Likewise.
10317         * lower-subreg.c (lower-subreg.c): Likewise.
10318         * optabs.c (emit_libcall_block): Likewise.
10319         (prepare_cmp_insn): Likewise.
10320         * postreload-gcse.c (eliminate_partially_redundant_loads): Likewise.
10321         * postreload.c (rest_of_handle_postreload): Likewise.
10322         * reload1.c (reload_as_needed): Likewise.
10323         (emit_input_reload_insns): Likewise.
10324         (emit_output_reload_insns): Likewise.
10325         (fixup_abnormal_edges): Likewise.
10326         * sel-sched-ir.c (init_global_and_expr_for_insn): Likewise.
10327         * store-motion.c (find_moveable_store): Likewise.
10328         * tree-eh.c (stmt_could_throw_p): Likewise.
10329         (tree_could_throw_p): Likewise.
10330         * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Likewise.
10331         * config/arm/arm.c (arm_expand_prologue): Likewise.
10332         (thumb1_expand_prologue): Likewise.
10333         * config/rx/rx.md (cbranchsf4): Likewise.
10334         (cmpsf): Likewise.
10335         * config/s390/s390.c (s390_emit_prologue): Likewise.
10336         * tree-inline.c (initialize_cfun): Copy can_throw_non_call_exceptions.
10337         (inline_forbidden_into_p): New predicate.
10338         (expand_call_inline): Use it to forbid inlining.
10339         (tree_can_inline_p): Likewise.
10341 2010-05-25  Steven Bosscher  <steven@gcc.gnu.org>
10343         * config/i386/i386-c.c: Do not include rtl.h.
10344         * config/i386/t-i386: Update dependencies.
10346 2010-05-25  Steven Bosscher  <steven@gcc.gnu.org>
10348         * attribs.c: Do not include rtl.h.
10349         * Makefile.in: Update dependencies.
10351 2010-05-25  Anatoly Sokolov  <aesok@post.ru>
10353         * double-int.h (double_int_and): New.
10354         * combine.c (try_combine): Clean up, use double_int_* and
10355         immed_double_int_const functions.
10357 2010-05-25  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
10359         * configure.ac (gcc_cv_as_ld_jalr_reloc): Redirect grep stdout,
10360         stderr to /dev/null instead of grep -q.
10361         * configure: Regenerate.
10363 2010-05-25  Steven Bosscher  <steven@gcc.gnu.org>
10365         * Makefile.in (EXCEPT_H): Fix typo.
10367 2010-05-25  Vladimir Makarov  <vmakarov@redhat.com>
10369         * ira-build.c (update_conflict_hard_reg_costs): New.
10370         (ira_build): Call update_conflict_hard_reg_costs.
10372 2010-05-25  Jakub Jelinek  <jakub@redhat.com>
10374         PR debug/41371
10375         * var-tracking.c (find_loc_in_1pdv): Guard asserts with
10376         ENABLE_CHECKING.
10377         (intersect_loc_chains): Walk the s2var's loc_chain together
10378         with s1node chain as long as the locations are equal, don't
10379         call find_loc_in_1pdv in that case.
10381         PR debug/42801
10382         * tree-inline.c (remap_decls): Remap DECL_VALUE_EXPR here...
10383         (copy_bind_expr): ... instead of here.
10384         (copy_tree_body_r): If id->remapping_type_depth clear TREE_BLOCK
10385         if the block hasn't been remapped.
10386         * dwarf2out.c (gen_formal_parameter_die, gen_variable_die): When
10387         emitting concrete instance of abstract VLA, add DW_AT_type attribute.
10389 2010-05-25  Richard Guenther  <rguenther@suse.de>
10391         PR middle-end/44069
10392         * gimple-fold.c (maybe_fold_stmt_addition): Avoid generating
10393         out-of-bounds array accesses.
10395 2010-05-25  Richard Guenther  <rguenther@suse.de>
10397         * lto-wrapper.c (nr, input_names, output_names, makefile): Globalize.
10398         (lto_wrapper_exit): Unlink all LTRANS temporary files on error.
10399         (run_gcc): Re-organize to make cleanup easier.
10401 2010-05-25  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
10403         * config/s390/s390.c (optimization_options): Fix and move the
10404         flag_prefetch_loop_arrays override ...
10405         (override_options): ... here.
10407 2010-05-25  Joseph Myers  <joseph@codesourcery.com>
10409         * diagnostic.c: Don't include plugin.h.
10410         (diagnostic_report_diagnostic): Don't handle plugins specially
10411         here.  Pass context to internal_error callback.
10412         * diagnostic.h (struct diagnostic_context): Add context parameter
10413         to internal_error callback.
10414         * plugin.c (warn_if_plugins, plugins_internal_error_function): New.
10415         * plugin.h (struct diagnostic_context): Declare.
10416         (warn_if_plugins, plugins_internal_error_function): Declare.
10417         * toplev.c (general_init): Set global_dc->internal_error.
10418         * Makefile.in (diagnostic.o): Update dependencies.
10420 2010-05-25  Iain Sandoe  <iains@gcc.gnu.org>
10422         * config/rs6000/darwin64.h: Update DARWIN_ARCH_SPEC.
10423         * config/rs6000/t-darwin64: New.
10424         * config.gcc (powerpc64-*-darwin*): Use darwin.opts, t-darwin64,
10425         build crt2.
10427 2010-05-25  Christian Borntraeger  <borntraeger@de.ibm.com>
10429         PR 44203
10430         * tree-ssa-loop-prefetch.c: Fix logic for step calculation to
10431         match the original (and intended) behaviour before r159557.  This
10432         changeset changed a=a+b*c to a=(a+b)*b which was obviously wrong
10433         in two ways.
10435 2010-05-25  Richard Guenther  <rguenther@suse.de>
10437         * doc/invoke.texi: Document -Ofast.
10438         * target.h (struct gcc_target): Add handle_ofast.
10439         * target-def.h (TARGET_HANDLE_OFAST): Add.
10440         (TARGET_INITIALIZER): Adjust.
10441         * opts.c (decode_options): Handle -Ofast.  Enable -ffast-math with it.
10442         * common.opt (Ofast): Add.
10444 2010-05-25  Paolo Bonzini  <bonzini@gnu.org>
10446         * doc/tm.texi (STORE_FLAG_VALUE): Do not refer to sCC patterns.
10447         * doc/md.texi (cstoreXX4): Update for cond-optab changes.
10449 2010-05-25  Paolo Bonzini  <bonzini@gnu.org>
10451         PR target/43610
10452         * optabs.c (prepare_float_lib_cmp): Allow reversing the comparison
10453         even if !FLOAT_LIB_COMPARE_RETURNS_BOOL.  Always compute true_rtx and
10454         false_rtx.  Use false_rtx to compute the correct *ptest for reversed
10455         comparisons for which !FLOAT_LIB_COMPARE_RETURNS_BOOL.
10457 2010-05-25  Jakub Jelinek  <jakub@redhat.com>
10459         * dwarf2out.c (loc_descr_plus_const): When offset is negative, use
10460         DW_OP_minus with negated offset instead of DW_OP_plus.
10461         (loc_list_from_tree): Don't test whether second operand is INTEGER_CST.
10463 2010-05-25  Wei Guozhi  <carrot@google.com>
10465         * config/arm/thumb2.md (thumb2_tlobits_cbranch): Add constraint to
10466         tst instruction and a new alternative.
10467         * config/arm/constraints.md (Pu): New constraint.
10469 2010-05-24  Sebastian Pop  <sebastian.pop@amd.com>
10471         * function.c (assign_stack_local_1): Initialize variable
10472         to avoid warning when bootstrapping at -O3.
10474 2010-05-24  Steven Bosscher  <steven@gcc.gnu.org>
10476         * configure.ac (all_lang_makefiles): Remove everything related to it.
10477         * configure: Regenerate.
10478         * Makefile.in: Fix reference to ada Make-lang.in.
10479         Remove support for LANG_MAKEFILES.
10481 2010-05-24  Daniel Jacobowitz  <dan@codesourcery.com>
10482             Sandra Loosemore  <sandra@codesourcery.com>
10484         * config/arm/neon-testgen.ml: Use dg-add-options arm_neon.
10485         * doc/sourcebuild.texi (Effective-Target Keywords): Update arm_neon_ok
10486         description.  Add arm_neon_fp16_ok.
10487         (Add Options): Add arm_neon and arm_neon_fp16.
10489 2010-05-24  Joseph Myers  <joseph@codesourcery.com>
10491         * diagnostic.c: Don't include flags.h.
10492         (pedantic_warning_kind, permissive_error_kind): Take diagnostic
10493         context parameters.  Check flags in the context passed as a parameter.
10494         (diagnostic_build_prefix): Add context parameter.  Check
10495         show_column flag in context.
10496         (diagnostic_action_after_output): Check fatal_errors flag in context.
10497         (diagnostic_report_current_module): Check show_column flag in context.
10498         (default_diagnostic_starter): Update call to
10499         diagnostic_build_prefix.
10500         (diagnostic_report_diagnostic): Pass context to pedantic_warning_kind.
10501         (emit_diagnostic): Pass context to permissive_error_kind.
10502         (permerror): Pass context to permissive_error_kind.
10503         * diagnostic.h (struct diagnostic_context): Add show_column,
10504         pedantic_errors, permissive and fatal_errors fields.
10505         (diagnostic_build_prefix): Update prototype.
10506         * langhooks.c
10507         * toplev.c (process_options): Set flags in global_dc from
10508         flag_show_column, flag_pedantic_errors, flag_permissive,
10509         flag_fatal_errors.
10510         * tree-diagnostic.c (default_tree_diagnostic_starter): Update call
10511         to diagnostic_build_prefix.
10512         * Makefile.in (diagnostic.o): Update dependencies.
10514 2010-05-24  H.J. Lu  <hongjiu.lu@intel.com>
10516         * config/i386/ia32intrin.h (__crc32q): Define only if
10517         __SSE4_2__ is defined.
10519 2010-05-24  Iain Sandoe  <iains@gcc.gnu.org>
10521         PR target/44132
10522         PR middle-end/43602
10523         * varasm.c (get_emutls_init_templ_addr): Copy DECL_PRESERVE_P,
10524         DECL_VISIBILITY_SPECIFIED.
10525         (emutls_decl): Set DECL_PRESERVE_P and copy
10526         DECL_VISIBILITY_SPECIFIED, DECL_RESTRICTED_P.
10527         (emutls_finalize_control_var): New callback.
10528         (emutls_finish): Finalize emutls control variables.
10529         * toplev.c (compile_file): Move the call to emutls_finish ()
10530         before varpool_assemble_pending_decls ().
10532 2010-05-24  Daniel Gutson  <dgutson@codesourcery.com>
10534         * config/arm/lib1funcs.asm (__ARM_ARCH__): __ARM_ARCH_7EM__
10535         added to the preprocessor condition.
10537 2010-05-24  Paul Brook  <paul@codesourcery.com>
10539         * gengtype-lex.l: Add HARD_REG_SET.
10540         * expr.c (expand_expr_real_1): Record writes to hard registers.
10541         * function.c (rtl_data): Add asm_clobbers.
10542         * ira.c (compute_regs_asm_clobbered): Use crtl->asm_clobbers.
10543         (ira_setup_eliminable_regset): Remove regs_asm_clobbered.
10544         Use crtl->asm_clobbers.
10546 2010-05-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10548         * doc/makefile.texi (Makefile): Mention stages 'profile'
10549         and 'feedback' for profiledbootstrap.
10551 2010-05-23  H.J. Lu  <hongjiu.lu@intel.com>
10553         PR target/44245
10554         * config/i386/i386.c (def_builtin): Properly check
10555         OPTION_MASK_ISA_64BIT.
10557 2010-05-23  Joseph Myers  <joseph@codesourcery.com>
10559         * c-decl.c (diagnose_mismatched_decls): Give error for duplicate
10560         typedefs with different but compatible types.  Allow duplicate
10561         typedefs with the same type except for pedantic non-C1X, but give
10562         warning for variably modified types.
10563         * c-typeck.c (tagged_types_tu_compatible_p,
10564         function_types_compatible_p, type_lists_compatible_p,
10565         comptypes_internal): Add parameter different_types_p; set
10566         *different_types_p for different but compatible types.  All
10567         callers changed.
10568         (comptypes_check_different_types): New.
10569         * c-tree.h (comptypes_check_different_types): Declare.
10571 2010-05-23  Steven Bosscher  <steven@gcc.gnu.org>
10573         * regs.h: Do not include obstack.h, basic-block.h.  Include machmode.h.
10574         * jump.c: Include basic-block.h.
10575         * profile.c: Likewise.
10576         * tree-profile.c: Likewise.
10577         * coverage.c: Likewise.
10578         * basic-block.h (optimize_function_for_size_p): Move to function.h.
10579         (optimize_function_for_speed_p): Likewise.
10580         * function.h (optimize_function_for_size_p,
10581         optimize_function_for_speed_p): Moved here from basic-block.h.
10582         * Makefile.in: Update dependencies.
10584 2010-05-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10586         * lto-wrapper.c (run_gcc): Unset MAKEFLAGS and MFLAGS
10587         before calling make; allow override through $MAKE.
10588         * doc/invoke.texi (Optimize Options): Document override.
10590 2010-05-23  Anatoly Sokolov  <aesok@post.ru>
10592         * config/rs6000/rs6000.c (rs6000_mode_dependent_address_p): New.
10593         (TARGET_MODE_DEPENDENT_ADDRESS_P): Define.
10594         (rs6000_mode_dependent_address_ptr): Make static.
10595         * config/rs6000/rs6000.h (GO_IF_MODE_DEPENDENT_ADDRESS): Remove.
10596         * config/rs6000/rs6000-protos.h (rs6000_mode_dependent_address_ptr):
10597         Remove.
10599 2010-05-23  Maarten Lankhorst  <mlankhorst@codeweavers.com>
10601         PR target/43869
10602         * config/i386/i386.c: Make sure that the correct regparm is passed.
10604 2010-05-23  Steven Bosscher  <steven@gcc.gnu.org>
10606         * sbitmap.h (sbitmap_ptr, const_sbitmap_ptr): Move from here...
10607         * sbitmap.c: ...to here to internalize sbitmap element access.
10608         Do not include tm.h, rtl.h, flags.h, hard-reg-set.h, and obstack.h.
10609         Explain why basic-block.h is included.
10610         * function.h: Include tm.h for CUMULATIVE_ARGS.
10611         * Makefile.in: Update dependencies.
10613 2010-05-22  Steven Bosscher  <steven@gcc.gnu.org>
10615         * coretypes.h (struct simple_bitmap_def, sbitmap, const_sbitmap):
10616         New core types.
10617         * sbitmap.h (struct sbitmap_def): Do not typedef here.
10618         * sbitmap.c: Include sbitmap.h.
10619         * basic-block.h: Do not include bitmap.h, sbitmap.h, partition.h,
10620         hard-reg-set.h.  Split everything related to regsets out from here...
10621         * regset.h: ...to here.  New file.
10622         * df.h: Include regset.h and sbitmap.h.
10623         * tree-flow.h: Likewise.
10624         * cfgloop.h: Likewise.
10625         * except.h: Do not include sbitmap.h.  Include hashtab.h.
10626         * cgraph.h: Include vec.h and function.h.
10627         * reload.h (struct insn_chain): Change types of live_throughout
10628         and dead_or_set from regset_head to bitmap_head.
10629         (compute_use_by_pseudos): Be defined also if regset.h is not included.
10630         * ira-int.h (struct ira_spilled_reg_stack_slot): Change type of
10631         spilled_regs from regset_head to bitmap_head to avoid dependency
10632         in regset.h.
10633         * sel-sched-ir.h: Include regset.h.
10634         * reload.c: Include df.h before reload.h.
10635         * caller-save.c: Likewise.
10636         * reload1.c: Likewise.
10637         * ira.c: Likewise.
10638         (mark_elimination): Update type of r to bitmap, consistent with
10639         DF_LR_IN.
10640         * dominance.c: Include bitmap.h.
10641         * modulo-sched.c: Include df.h.
10642         * cfganal.c: Include bitmap.h and sbitmap.h.
10643         * cfgbuild.c: Include sbitmap.h.
10644         * lcm.c: Include sbitmap.h.
10645         * gcse.c (alloc_gcse_mem): Allocate regset with ALLOC_REG_SET.
10646         * domwalk.c: Include sbitmap.h, exclude ggc.h.
10647         * cfgexpand.c: Inlcude bitmap.h and sbitmap.h.
10648         * cselib.c: Include bitmap.h.
10649         * tree-optimize.c: Include regset.h.
10650         * stmt.c: Include bitmap.h.
10651         * Makefile.in: Update dependencies.
10653 2010-05-22  Jan Hubicka  <jh@suse.cz>
10655         * cgraph.h (struct varpool_node): Add same_comdat_group.
10656         * lto-cgrpah.c (lto_output_varpool_node): Output same_comdat_group
10657         pointer.
10658         (output_varpool): Update call of lto_output_varpool_node.
10659         (input_varpool): Read same_comdat_group pointer.
10660         (input_varpool_1): Fixup same_comdat_group pointer.
10661         * ipa.c (cgraph_remove_unreachable_nodes): WHen one of same comdat
10662         group is needed, all are.
10663         * varpool.c (varpool_remove_node): Remove node from same comdat group
10664         linklist too.
10665         (varpool_analyze_pending_decls): Walk same comdat groups.
10667 2010-05-22  Steven Bosscher  <steven@gcc.gnu.org>
10669         * rtl.h (union rtunion_def): Remove rt_bit member.
10670         (XBITMAP, X0BITMAP, XCBITMAP): Remove.
10671         * print-rtl (print_rtx): Do not print the member.
10672         * gengtype.c (adjust_field_rtx_def): Do not handle it.
10673         * gengenrtl.c (type_from_format): Likewise.
10674         (accessor_from_format): Likewise.
10676 2010-05-22  Joseph Myers  <joseph@codesourcery.com>
10678         * dbgcnt.c: Include toplev.h instead of errors.h.
10679         * ira-emit.c: Don't include errors.h.
10680         * ira.c: Include toplev.h instead of errors.h.
10681         * lto-compress.c: Include toplev.h instead of errors.h.
10682         * Makefile.in (lto-compress.o, lto-streamer-out.o, ira-emit.o,
10683         ira.o, dbgcnt.o): Update dependencies.
10685 2010-05-22  Richard Guenther  <rguenther@suse.de>
10687         * gimple.c (gimple_types_compatible_p): Check type qualifications
10688         before merging pointer to complete and pointer to incomplete type.
10689         * lto-symtab.c (lto_symtab_resolve_symbols): For commons make sure
10690         we use our own resolution algorithm.  The gold linker plugin
10691         doesn't do the job we want it to do here.
10693 2010-05-22  Anatoly Sokolov  <aesok@post.ru>
10695         * config/sparc/sparc.h (GO_IF_MODE_DEPENDENT_ADDRESS): Remove.
10696         * config/sparc/sparc.c (TARGET_MODE_DEPENDENT_ADDRESS_P): Define.
10697         (sparc_mode_dependent_address_p): New function.
10699 2010-05-21  Steven Bosscher  <steven@gcc.gnu.org>
10701         * Makefile.in: Fix c-pch.o and ggc-common.o dependencies on timevars.
10703         * timevar.c: Do not include any core headers.
10704         (timevar_print): De-i18n-ize.
10705         (print_time): Likewise.
10706         * timevar.h (timevar_push, timevar_pop): Make inline functions.
10708 2010-05-21  Joseph Myers  <joseph@codesourcery.com>
10710         * diagnostic.c: Don't include tm.h, tree.h, tm_p.h, langhooks.h or
10711         langhooks-def.h.
10712         (diagnostic_initialize): Initialize x_data not last_function.
10713         (diagnostic_report_current_function): Move to tree-diagnostic.c.
10714         (default_diagnostic_starter): Call
10715         diagnostic_report_current_module not
10716         diagnostic_report_current_function.
10717         (diagnostic_report_diagnostic): Initialize x_data not
10718         abstract_origin.
10719         (verbatim): Likewise.
10720         * diagnostic.h (struct diagnostic_info): Change abstract_origin to
10721         x_data.
10722         (struct diagnostic_context): Change last_function to x_data.
10723         (diagnostic_auxiliary_data): Replace with
10724         diagnostic_context_auxiliary_data and
10725         diagnostic_info_auxiliary_data.
10726         (diagnostic_last_function_changed, diagnostic_set_last_function,
10727         diagnostic_report_current_function): Move to tree-diagnostic.h.
10728         (print_declaration, dump_generic_node, print_generic_stmt,
10729         print_generic_stmt_indented, print_generic_expr,
10730         print_generic_decl, debug_c_tree, dump_omp_clauses,
10731         print_call_name, debug_generic_expr, debug_generic_stmt,
10732         debug_tree_chain, default_tree_printer): Move to
10733         tree-pretty-print.h.
10734         (debug_gimple_stmt, debug_gimple_seq, print_gimple_seq,
10735         print_gimple_stmt, print_gimple_expr, dump_gimple_stmt): Move to
10736         gimple-pretty-print.h.
10737         * pretty-print.c: Don't include tree.h
10738         (pp_base_format): Don't handle %K here.
10739         (pp_base_tree_identifier): Move to tree-pretty-print.c.
10740         * pretty-print.h (text_info): Change abstract_origin to x_data.
10741         (pp_tree_identifier, pp_unsupported_tree,
10742         pp_base_tree_identifier): Move to tree-pretty-print.h.
10743         * gimple-pretty-print.h, tree-diagnostic.c, tree-diagnostic.h,
10744         tree-pretty-print.h: New files.
10745         * tree-pretty-print.c: Include tree-pretty-print.h.
10746         (percent_K_format): New.  Moved from pretty-print.c.
10747         (pp_base_tree_identifier): Move from pretty-print.c.
10748         * c-objc-common.c: Include tree-pretty-print.h.
10749         (c_tree_printer): Handle %K here.
10750         * langhooks.c: Include tree-diagnostic.h.
10751         (lhd_print_error_function): Use diagnostic_abstract_origin macro.
10752         * toplev.c: Include tree-diagnostic.h and tree-pretty-print.h.
10753         (default_tree_printer): Handle %K using percent_K_format.
10754         (general_init): Use default_tree_diagnostic_starter.
10755         * tree.c: Include tree-diagnostic.h and tree-pretty-print.h.
10756         (free_lang_data): Use default_tree_diagnostic_starter.
10757         * c-pretty-print.c: Include tree-pretty-print.h.
10758         * cfgexpand.c: Include tree-pretty-print.h and gimple-pretty-print.h.
10759         * cgraphunit.c: Include tree-pretty-print.h and gimple-pretty-print.h.
10760         * dwarf2out.c: Include tree-pretty-print.h.
10761         * except.c: Include tree-pretty-print.h.
10762         * gimple-pretty-print.c: Include tree-pretty-print.h and
10763         gimple-pretty-print.h.
10764         * gimplify.c: Include tree-pretty-print.h.
10765         * graphite-poly.c: Include tree-pretty-print.h and
10766         gimple-pretty-print.h.
10767         * ipa-cp.c: Include tree-pretty-print.h.
10768         * ipa-inline.c: Include gimple-pretty-print.h.
10769         * ipa-prop.c: Include tree-pretty-print.h and gimple-pretty-print.h.
10770         * ipa-pure-const.c: Include gimple-pretty-print.h.
10771         * ipa-struct-reorg.c: Include tree-pretty-print.h and
10772         gimple-pretty-print.h.
10773         * ipa-type-escape.c: Include tree-pretty-print.h.
10774         * print-rtl.c: Include tree-pretty-print.h.
10775         * print-tree.c: Include gimple-pretty-print.h.
10776         * sese.c: Include tree-pretty-print.h.
10777         * tree-affine.c: Include tree-pretty-print.h.
10778         * tree-browser.c: Include tree-pretty-print.h.
10779         * tree-call-cdce.c: Include gimple-pretty-print.h.
10780         * tree-cfg.c: Include tree-pretty-print.h and gimple-pretty-print.h.
10781         * tree-chrec.c: Include tree-pretty-print.h.
10782         * tree-data-ref.c: Include tree-pretty-print.h and
10783         gimple-pretty-print.h.
10784         * tree-dfa.c: Include tree-pretty-print.h.
10785         * tree-if-conv.c: Include tree-pretty-print.h and
10786         gimple-pretty-print.h.
10787         * tree-inline.c: Include tree-pretty-print.h.
10788         * tree-into-ssa.c: Include tree-pretty-print.h and
10789         gimple-pretty-print.h.
10790         * tree-nrv.c: Include tree-pretty-print.h.
10791         * tree-object-size.c: Include tree-pretty-print.h and
10792         gimple-pretty-print.h.
10793         * tree-outof-ssa.c: Include tree-pretty-print.h and
10794         gimple-pretty-print.h.
10795         * tree-parloops.c: Include tree-pretty-print.h and
10796         gimple-pretty-print.h.
10797         * tree-predcom.c: Include tree-pretty-print.h and
10798         gimple-pretty-print.h.
10799         * tree-scalar-evolution.c: Include tree-pretty-print.h and
10800         gimple-pretty-print.h.
10801         * tree-sra.c: Include tree-pretty-print.h.
10802         * tree-ssa-address.c: Include tree-pretty-print.h.
10803         * tree-ssa-alias.c: Include tree-pretty-print.h.
10804         * tree-ssa-ccp.c: Include tree-pretty-print.h and
10805         gimple-pretty-print.h.
10806         * tree-ssa-coalesce.c: Include tree-pretty-print.h.
10807         * tree-ssa-copy.c: Include tree-pretty-print.h and
10808         gimple-pretty-print.h.
10809         * tree-ssa-copyrename.c: Include tree-pretty-print.h.
10810         * tree-ssa-dce.c: Include tree-pretty-print.h and
10811         gimple-pretty-print.h.
10812         * tree-ssa-dom.c: Include tree-pretty-print.h and
10813         gimple-pretty-print.h.
10814         * tree-ssa-dse.c: Include gimple-pretty-print.h.
10815         * tree-ssa-forwprop.c: Include tree-pretty-print.h.
10816         * tree-ssa-ifcombine.c: Include tree-pretty-print.h.
10817         * tree-ssa-live.c: Include tree-pretty-print.h and
10818         gimple-pretty-print.h.
10819         * tree-ssa-loop-im.c: Include tree-pretty-print.h and
10820         gimple-pretty-print.h.
10821         * tree-ssa-loop-ivcanon.c: Include tree-pretty-print.h and
10822         gimple-pretty-print.h.
10823         * tree-ssa-loop-ivopts.c: Include tree-pretty-print.h and
10824         gimple-pretty-print.h.
10825         * tree-ssa-loop-niter.c: Include tree-pretty-print.h and
10826         gimple-pretty-print.h.
10827         * tree-ssa-loop-prefetch.c: Include tree-pretty-print.h.
10828         * tree-ssa-math-opts.c: Include gimple-pretty-print.h.
10829         * tree-ssa-operands.c: Include tree-pretty-print.h and
10830         gimple-pretty-print.h.
10831         * tree-ssa-phiprop.c: Include tree-pretty-print.h and
10832         gimple-pretty-print.h.
10833         * tree-ssa-pre.c: Include tree-pretty-print.h and
10834         gimple-pretty-print.h.
10835         * tree-ssa-propagate.c: Include gimple-pretty-print.h.
10836         * tree-ssa-reassoc.c: Include tree-pretty-print.h and
10837         gimple-pretty-print.h.
10838         * tree-ssa-sccvn.c: Include tree-pretty-print.h and
10839         gimple-pretty-print.h.
10840         * tree-ssa-sink.c: Include gimple-pretty-print.h.
10841         * tree-ssa-ter.c: Include tree-pretty-print.h and
10842         gimple-pretty-print.h.
10843         * tree-ssa-uninit.c: Include gimple-pretty-print.h.
10844         * tree-ssa.c: Include tree-pretty-print.h and
10845         gimple-pretty-print.h.
10846         * tree-stdarg.c: Include gimple-pretty-print.h.
10847         * tree-switch-conversion.c: Include gimple-pretty-print.h.
10848         * tree-tailcall.c: Include tree-pretty-print.h and
10849         gimple-pretty-print.h.
10850         * tree-vect-data-refs.c: Include tree-pretty-print.h and
10851         gimple-pretty-print.h.
10852         * tree-vect-loop-manip.c: Include tree-pretty-print.h and
10853         gimple-pretty-print.h.
10854         * tree-vect-loop.c: Include tree-pretty-print.h and
10855         gimple-pretty-print.h.
10856         * tree-vect-patterns.c: Include gimple-pretty-print.h.
10857         * tree-vect-slp.c: Include tree-pretty-print.h and
10858         gimple-pretty-print.h.
10859         * tree-vect-stmts.c: Include tree-pretty-print.h and
10860         gimple-pretty-print.h.
10861         * tree-vectorizer.c: Include tree-pretty-print.h.
10862         * tree-vrp.c: Include tree-pretty-print.h and
10863         gimple-pretty-print.h.
10864         * value-prof.c: Include tree-pretty-print.h and
10865         gimple-pretty-print.h.
10866         * var-tracking.c: Include tree-pretty-print.h.
10867         * Makefile.in (OBJS-common): Add tree-diagnostic.o.
10868         (tree-diagnostic.o): New dependencies.
10869         (c-objc-common.o, c-pretty-print.o, langhooks.o, tree.o,
10870         tree-inline.o, print-tree.o, stor-layout.o, tree-ssa-uninit.o,
10871         tree-ssa.o, tree-into-ssa.o, tree-ssa-ter.o, tree-ssa-coalesce.o,
10872         tree-outof-ssa.o, tree-ssa-forwprop.o, tree-ssa-phiprop.o,
10873         tree-ssa-ifcombine.o, tree-nrv.o, tree-ssa-copy.o,
10874         tree-ssa-propagate.o, tree-ssa-dom.o, tree-ssa-uncprop.o,
10875         tree-ssa-live.o, tree-ssa-copyrename.o, tree-ssa-pre.o,
10876         tree-ssa-sccvn.o, tree-vrp.o, tree-cfg.o, tree-tailcall.o,
10877         tree-ssa-sink.o, tree-if-conv.o, tree-dfa.o, tree-ssa-operands.o,
10878         tree-ssa-address.o, tree-ssa-loop-niter.o,
10879         tree-ssa-loop-ivcanon.o, tree-ssa-loop-prefetch.o, tree-predcom.o,
10880         tree-ssa-loop-ivopts.o, tree-affine.o, tree-ssa-loop-im.o,
10881         tree-ssa-math-opts.o, tree-ssa-alias.o, tree-ssa-reassoc.o,
10882         gimplify.o, tree-browser.o, tree-chrec.o, tree-scalar-evolution.o,
10883         tree-data-ref.o, sese.o, graphite-poly.o, tree-vect-loop.o,
10884         tree-vect-loop-manip.o, tree-vect-patterns.o, tree-vect-slp.o,
10885         tree-vect-stmts.o, tree-vect-data-refs.o, tree-vectorizer.o,
10886         tree-parloops.o, tree-stdarg.o, tree-object-size.o,
10887         gimple-pretty-print.o, tree-pretty-print.o, diagnostic.o,
10888         toplev.o, print-rtl.o, except.o, dwarf2out.o, cgraphunit.o,
10889         ipa-prop.o, ipa-cp.o, ipa-inline.o, ipa-pure-const.o,
10890         ipa-type-escape.o, ipa-struct-reorg.o, tree-ssa-dce.o,
10891         tree-call-cdce.o, tree-ssa-ccp.o, tree-sra.o,
10892         tree-switch-conversion.o, var-tracking.o, value-prof.o,
10893         cfgexpand.o, pretty-print.o): Update dependencies.
10895 2010-05-22  Andreas Tobler  <andreast@fgznet.ch>
10897         * tree-ssa-structalias.c: Remove tm_p.h from include.
10899 2010-05-21  Jeff Law  <law@redhat.com>
10901         * ira-costs.c (ira_tune_allocno_costs_and_cover_classes): Fix typo.
10903 2010-05-21  Jason Merrill  <jason@redhat.com>
10905         * tree-eh.c (cleanup_is_dead_in): New.
10906         (lower_try_finally): Don't generate a dead cleanup region.
10907         (lower_cleanup): Likewise.
10909 2010-05-21  Jakub Jelinek  <jakub@redhat.com>
10911         PR debug/44223
10912         * haifa-sched.c (schedule_insn): When freeing INSN_REG_USE_LIST,
10913         unchain each use from the cyclic next_regno_use chain first.
10915 2010-05-21  Steven Bosscher  <steven@gcc.gnu.org>
10917         * real: Do not include gmp.h, mpfr.h, and mpc.h.
10918         (REAL_VALUE_NEGATE, REAL_VALUE_ABS, real_arithmetic2): Remove.
10919         (real_value_negate, real_value_abs): New prototypes.
10920         (do_mpc_arg2, real_from_mpfr, mpfr_from_real): Move from here...
10921         * realmpfr.h (do_mpc_arg2, real_from_mpfr, mpfr_from_real): ...to here,
10922         new include file for interface between MPFR and REAL_VALUE_TYPE.
10923         * real.c: Include realmpfr.h.
10924         (real_arithmetic2): Remove legacy function.
10925         (real_value_negate): New.
10926         (real_value_abs): New.
10927         (mfpr_from_real, real_from_mpfr): Move from here...
10928         * realmpfr.c (mpfr_from_real, real_from_mpfr): ...to here, new file.
10929         * builtins.c: Include realmpfr.h.
10930         * fold-const.c: Include realmpfr.h.
10931         (fold_comparison): Use real_value_negate instead of REAL_VALUE_NEGATE.
10932         (fold_negate_const): Likewise.
10933         (fold_abs_const): Use real_value_abs instead of REAL_VALUE_ABS.
10934         * toplev.c: Include realmpfr.h.
10935         * simplify-rtx.c (simplify_const_unary_operation): Use real_value_abs
10936         and real_value_negate.
10937         * fixed-value.c (check_real_for_fixed_mode): Likewise.
10938         * config/arm/arm.c (neg_const_double_rtx_ok_for_fpa): Likewise.
10939         (vfp3_const_double_index): Likewise.
10940         (arm_print_operand): Likewise.
10941         * Makefile.in: Update dependencies.
10943 2010-05-21  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
10945         * config/s390/s390.c (override_options): Increase the default
10946         of max-completely-peel-times.
10948 2010-05-21  Julian Brown  <julian@codesourcery.com>
10949             Mark Mitchell  <mark@codesourcery.com>
10951         * config/arm/arm.c (arm_function_ok_for_sibcall): Only forbid
10952         sibling calls for Thumb-1.
10953         * config/arm/arm.h (USE_RETURN_INSN): Enable for Thumb-2.
10954         * config/arm/arm.md (*call_symbol, *call_value_symbol): Use for
10955         Thumb-2.
10956         (*call_insn, *call_value_insn): Don't use for Thumb-2.
10957         (sibcall, sibcall_value, *sibcall_insn, *sibcall_value_insn): Use
10958         for Thumb-2.
10959         (return): New expander.
10960         (*arm_return): New name for ARM return insn.
10961         * config/arm/thumb2.md (*thumb2_return): New insn pattern.
10963 2010-05-19  Joel Sherrill  <joel.sherrill@oarcorp.com>
10965         * config.gcc (sparc64-*-rtems*): New target.
10967 2010-05-21  Nathan Froyd  <froydnj@codesourcery.com>
10969         * tree.c (build_function_decl_skip_args): Fix grammar.
10970         (build_function_type_list_1): Fix typos, adjust formatting.
10972 2010-05-21  Steven Bosscher  <steven@gcc.gnu.org>
10974         * tree.h: Include real.h and fixed-value.h as basic datatypes.
10975         * dfp.c, convert.c, reload1.c, reginfo.c, tree-flow.h,
10976         tree-ssa-threadedge.c, tree-ssanames.c, tree-loop-linear.c,
10977         tree-into-ssa.c, tree-vect-generic.c, tree-ssa-structalias.c,
10978         tree-ssa-loop-im.c, tree-dump.c, tree-complex.c, tree-ssa-uninit.c,
10979         genrecog.c, tree-ssa-threadupdate.c, tree-ssa-loop-niter.c,
10980         tree-pretty-print.c, tree-loop-distribution.c,
10981         tree-ssa-loop-unswitch.c, c-lex.c, optabs.c, postreload-gcse.c,
10982         tree-ssa-loop-manip.c, postreload.c, tree-ssa-loop-ch.c,
10983         tree-tailcall.c, tree.c, reload.c, tree-scalar-evolution.c, rtlanal.c,
10984         tree-phinodes.c, builtins.c, final.c, genoutput.c, fold-const.c,
10985         tree-ssa-dse.c, genautomata.c, tree-ssa-uncprop.c, toplev.c,
10986         tree-chrec.c, genemit.c, c-cppbuiltin.c, tree-ssa-sccvn.c,
10987         tree-ssa-ccp.c, tree-ssa-loop-ivopts.c, mode-switching.c,
10988         tree-call-cdce.c, cse.c, genpeep.c, tree-ssa-math-opts.c,
10989         tree-ssa-dom.c, tree-nrv.c, tree-ssa-propagate.c, tree-ssa-alias.c,
10990         tree-ssa-sink.c, jump.c, ifcvt.c, dwarf2out.c, expr.c, genattrtab.c,
10991         genconditions.c, tree-ssa-loop-ivcanon.c, tree-ssa-loop.c,
10992         tree-parloops.c, recog.c, tree-ssa-address.c, lcm.c, tree-eh.c,
10993         gimple-pretty-print.c, c-pretty-print.c, print-rtl.c, gcse.c,
10994         tree-if-conv.c, tree-data-ref.c, tree-affine.c, gimplify.c,
10995         tree-ssa-phiopt.c, implicit-zee.c, expmed.c, tree-dfa.c, emit-rtl.c,
10996         store-motion.c, cselib.c, tree-cfgcleanup.c, simplify-rtx.c,
10997         tree-ssa-pre.c, genpreds.c, tree-mudflap.c, print-tree.c,
10998         tree-ssa-copy.c, tree-ssa-forwprop.c, tree-ssa-dce.c, varasm.c,
10999         tree-nested.c, tree-ssa.c, tree-ssa-loop-prefetch.c, rtl.c,
11000         tree-inline.c, integrate.c, tree-optimize.c, tree-ssa-phiprop.c,
11001         fixed-value.c, combine.c, tree-profile.c, c-common.c, sched-vis.c,
11002         tree-cfg.c, passes.c, tree-ssa-reassoc.c, config/alpha/alpha.c,
11003         config/frv/frv.c, config/s390/s390.c, config/m32c/m32c.c,
11004         config/spu/spu.c, config/sparc/sparc.c, config/mep/mep.c,
11005         config/m32r/m32r.c, config/rx/rx.c, config/i386/i386.c,
11006         config/sh/sh.c, config/pdp11/pdp11.c, config/avr/avr.c,
11007         config/crx/crx.c, config/xtensa/xtensa.c, config/stormy16/stormy16.c,
11008         config/fr30/fr30.c, config/lm32/lm32.c, config/moxie/moxie.c,
11009         config/m68hc11/m68hc11.c, config/cris/cris.c, config/iq2000/iq2000.c,
11010         config/mn10300/mn10300.c, config/ia64/ia64.c, config/m68k/m68k.c,
11011         config/rs6000/rs6000.c, config/picochip/picochip.c, config/darwin.c,
11012         config/arc/arc.c, config/mcore/mcore.c, config/score/score3.c,
11013         config/score/score7.c, config/score/score.c, config/arm/arm.c,
11014         config/pa/pa.c, config/mips/mips.c, config/vax/vax.c,
11015         config/h8300/h8300.c, config/v850/v850.c, config/mmix/mmix.c,
11016         config/bfin/bfin.c: Clean up redundant includes.
11017         * Makefile.in: Update accordingly.
11019 2010-05-21  Nathan Froyd  <froydnj@codesourcery.com>
11021         PR middle-end/44204
11022         * builtins.c (fold_call_stmt): Pass &error_mark_node if the call
11023         statement has no arguments.
11025 2010-05-21  Kai Tietz  <kai.tietz@onevision.com>
11027         PR/44139
11028         * varasm.c (emutls_decl): Merge attributes to new decl.
11030 2010-05-21  Eric Botcazou  <ebotcazou@adacore.com>
11032         PR middle-end/44101
11033         * gimplify.c (gimplify_init_constructor): Build a VIEW_CONVERT_EXPR
11034         around the uniquized constructor if its type requires a conversion.
11036 2010-05-21  Jakub Jelinek  <jakub@redhat.com>
11038         PR debug/44205
11039         * tree-cfgcleanup.c (tree_forwarder_block_p): Return false if
11040         at -O0 goto_locus of any of the incoming edges differs from
11041         goto_locus of outgoing edge, or gimple_location of any of the
11042         labels differs.
11044 2009-09-14  Vladimir Makarov  <vmakarov@redhat.com>
11046         * ira.c (ira_non_ordered_class_hard_regs): Define.
11047         (setup_class_hard_regs): Initialize ira_non_ordered_class_hard_regs.
11048         * ira-int.h (ira_non_ordered_class_hard_regs): Declare.
11049         * ira-costs.c (ira_tune_allocno_costs_and_cover_classes): Increase
11050         cost of unaligned hard regs when allocating multi-reg pseudos.
11052 2010-05-20  Richard Sandiford  <rdsandiford@googlemail.com>
11054         * config.gcc (mips*-sde-elf*): Don't use sdemtk.opt.
11055         * config/mips/mips.h (TARGET_CPU_CPP_BUILTINS): Define __mips_no_float
11056         for TARGET_NO_FLOAT.
11057         * config/mips/mips.c (mips_file_start): Expand conditional expression
11058         into "if" statements.  Use .gnu_attribute 4,0 for TARGET_NO_FLOAT.
11059         (mips_override_options): Move -mno-float override -msoft-float and
11060         -mhard-float.
11061         * config/mips/mips.opt (mno-float): Move from sdemtk.opt, but add
11062         Condition(TARGET_SUPPORTS_NO_FLOAT).
11063         * config/mips/sdemtk.h (TARGET_OS_CPP_BUILTINS): Don't set
11064         __mips_no_float here.
11065         (SUBTARGET_OVERRIDE_OPTIONS): Delete.
11066         (TARGET_SUPPORTS_NO_FLOAT): Define.
11067         * config/mips/sdemtk.opt: Delete.
11069 2010-05-20  Segher Boessenkool  <segher@kernel.crashing.org>
11071         * ipa-prop.c (compute_complex_ancestor_jump_func): Bail out if !cond.
11073 2010-05-20  Uros Bizjak  <ubizjak@gmail.com>
11075         PR target/43733
11076         * configure.ac (gcc_cv_as_ix86_sahf): Switch to 64bit mode.
11077         * configure: Regenerate.
11078         * config.in: Regenerate.
11079         * config/i386/i386.md (x86_sahf_1): Conditionally output 0x9e
11080         instead of sahf only for 64bit targets.
11082 2010-05-20  Jakub Jelinek  <jakub@redhat.com>
11084         PR debug/44178
11085         * haifa-sched.c (initiate_bb_reg_pressure_info): Do not call
11086         setup_ref_regs for DEBUG_INSNs.
11088 2010-05-20  Jan Hubicka  <jh@suse.cz>
11090         PR middle-end/44197
11091         * varpool.c (varpool_remove_node): Handle in-varpool aliases.
11093 2010-05-20  Kenneth Zadeck  <zadeck@naturalbridge.com>
11095         PR bootstrap/43870
11096         * df-scan.c (df_ref_compare): Stabilize sort.
11098 2010-05-20  Jakub Jelinek  <jakub@redhat.com>
11100         * dwarf2out.c (new_loc_descr_op_bit_piece): Add offset
11101         argument.  Don't use DW_OP_piece if offset is non-zero,
11102         put offset into second DW_OP_bit_piece argument.
11103         (dw_sra_loc_expr): Adjust callers.  For memory expressions
11104         compute offset.
11106 2010-05-20  Hans-Peter Nilsson  <hp@axis.com>
11108         PR target/44202
11109         * config/cris/cris.md ("*addsi3_v32"): Correct "cc"
11110         settings for 16-bit-constant "addo" alternative.
11112 2010-05-19  James E. Wilson  <wilson@codesourcery.com>
11114         * config/mips/mips-dsp.md (add<DSPV:mode>3,
11115         mips_add<DSP:dspfmt1>_s_<DSP:dspfmt2>): Add ISA_HAS_DSP condition.
11117         PR target/43764
11118         * mips.c (mips_call_expr_from_insn): New arg second_call.  Set it.
11119         (mips_annotate_pic_calls): Pass new arg to mips_call_expr_from_insn.
11120         Use it.
11122 2010-05-19  Joseph Myers  <joseph@codesourcery.com>
11124         * diagnostic.c (FLOAT, FFS): Don't undefine.
11125         * passes.c, pretty-print.c, rtl-error.c, toplev.c: Likewise.
11126         * cse.c, regmove.c: Remove comments about stdio.h and rtl.h
11127         include ordering.
11129 2010-05-19  Richard Sandiford  <rdsandiford@googlemail.com>
11131         * combine.c (propagate_for_debug): Call make_compound_operation
11132         on the source value.
11133         (try_combine): When implementing a split chosen by find_split_point,
11134         either copy i2src or set it to null.  Assert that i2src is not null
11135         before substituting into CALL_INSN_FUNCTION_USAGE.
11137 2010-05-19  Anatoly Sokolov  <aesok@post.ru>
11139         * double-int.h (double_int_ior): New function.
11140         * tree.h (build_int_cst_wide_type): Remove.
11141         * tree.c (build_int_cst_wide_type): Remove.
11142         * fold-const.c (native_interpret_int): Use double_int_to_tree instead
11143         of build_int_cst_wide_type.
11144         * stor-layout.c (set_sizetype): (Ditto.).
11145         * dojump.c (do_jump): Use build_int_cstu instead of
11146         build_int_cst_wide_type.
11148 2010-05-19  Eric Botcazou  <ebotcazou@adacore.com>
11150         * langhooks.h (struct lang_hooks): Add new field deep_unsharing.
11151         * langhooks-def.h (LANG_HOOKS_DEEP_UNSHARING): New macro.
11152         (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_DEEP_UNSHARING.
11153         * gimplify.c (mostly_copy_tree_r): Copy trees under SAVE_EXPR and
11154         TARGET_EXPR nodes, but only once, if instructed to do so.  Do not
11155         propagate the 'data' argument to copy_tree_r.
11156         (copy_if_shared_r): Remove bogus ATTRIBUTE_UNUSED marker.
11157         Propagate 'data' argument to walk_tree.
11158         (copy_if_shared): New function.
11159         (unmark_visited_r): Remove bogus ATTRIBUTE_UNUSED marker.
11160         (unmark_visited): New function.
11161         (unshare_body): Call copy_if_shared instead of doing it manually.
11162         (unvisit_body): Call unmark_visited instead of doing it manually.
11164 2010-05-19  Nathan Froyd  <froydnj@codesourcery.com>
11166         * hooks.h (hook_tree_tree_tree_bool_null): Rename to...
11167         (hook_tree_tree_int_treep_bool_null): ...this.  Update signature.
11168         * hooks.c: Likewise.
11169         * target-def.h (TARGET_FOLD_BUILTIN): Define to
11170         hook_tree_tree_int_treep_bool_null.
11171         * target.h (struct gcc_target): Update signature of fold_builtin
11172         field.
11173         * doc/tm.texi (TARGET_FOLD_BUILTIN): Update description and signature.
11174         * builtins.c (fold_call_expr): Pass call_expr_nargs and CALL_EXPR_ARGP
11175         instead of the call expression.
11176         (fold_builtin_call_array): Pass n and argarray directly.
11177         (fold_call_stmt): Pass nargs and gimple_call_arg_ptr instead of
11178         consing a list.
11179         * config/alpha/alpha.c (alpha_fold_builtin): Update signature.  Lift
11180         MAX_ARGS check out of the loop.  Delete declaration of `arity', declare
11181         `i' and use it in place of `arity'.
11182         * config/sparc/sparc.c (sparc_fold_builtin): Update signature.
11183         Dereference `args' directly.
11184         * config/xtensa/xtensa (xtensa_fold_builtin): Likewise.
11186 2010-05-19  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
11188         * doc/sourcebuild.texi (Effective-Target Keywords): Document
11189         3dnow, sse3, sse2.
11190         (Directives): Document optional dg-require-effective-target
11191         selector.
11193 2010-05-19  Richard Guenther  <rguenther@suse.de>
11195         PR lto/44196
11196         * tree.c (find_decls_types_r): Walk BLOCKs and its vars.
11198 2010-05-19  Richard Guenther  <rguenther@suse.de>
11200         * doc/invoke.texi (-fwhopr): Document new optional jobs argument.
11201         * common.opt (fwhopr=): New.
11202         * opts.c (common_handle_option): Handle OPT_fwhopr.
11203         * gcc.c (LINK_COMMAND_SPEC): Pass fwhopr*.
11204         * collect2.c (main): Match -fwhopr*.
11205         * lto-wrapper.c (run_gcc): Handle jobs argument of -fwhopr.
11206         Execute ltrans stage in parallel when jobs is bigger than 1.
11208 2010-05-19  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
11210         * config.gcc (i[34567]86-*-solaris2*): Default with_arch_32 to
11211         pentiumpro on Solaris 8/x86 with Sun as.
11212         * configure.ac (gcc_cv_as_hidden): Check for Solaris 9/x86 as
11213         hidden alias bug.
11214         (gcc_cv_as_ix86_quad): Check for .quad directive.
11215         * configure: Regenerate.
11216         * config.in: Regenerate.
11217         * config/i386/sol2.h (ASM_QUAD): Change guard to !HAVE_AS_IX86_QUAD.
11219 2010-05-19  Martin Jambor  <mjambor@suse.cz>
11221         * ipa-prop.c (ipa_print_node_jump_functions): Print jump functions
11222         also for indirect edges.  Actual printing moved...
11223         (ipa_print_node_jump_functions_for_edge): ...here.
11224         (ipa_compute_jump_functions): Renamed to
11225         ipa_compute_jump_functions_for_edge and made static.
11226         (ipa_compute_jump_functions): New function.
11227         (make_edge_direct_to_target): Check if the number of arguments on
11228         the newly direct edge is the same as the number of parametrs of
11229         the callee.
11230         * ipa-cp.c (ipcp_init_stage): Most functionality moved to new
11231         ipa_compute_jump_functions.  Call ipa_analyze_params_uses.
11232         * ipa-inline.c (inline_indirect_intraprocedural_analysis): Call
11233         analysis functions unconditionally, call the new
11234         ipa_analyze_params_uses on the node instead of every edge.
11236 2010-05-19  Christian Borntraeger  <borntraeger@de.ibm.com>
11238         * tree-ssa-loop-prefetch.c (mem_ref_group, ar_data): Change step
11239         to tree.
11240         (dump_mem_ref): Adopt debug code to handle a tree as step.  This
11241         also checks for a constant int vs.  non-constant but
11242         loop-invariant steps.
11243         (find_or_create_group): Change the sort algorithm to only consider
11244         steps that are constant ints.
11245         (idx_analyze_ref): Adopt code to handle a tree instead of a
11246         HOST_WIDE_INT for step.
11247         (gather_memory_references_ref): Handle tree instead of int and be
11248         prepared to see a NULL_TREE.
11249         (prune_ref_by_self_reuse, prune_ref_by_group_reuse): Do not prune
11250         prefetches if the step cannot be calculated at compile time.
11251         (issue_prefetch_ref): Issue prefetches for non-constant but
11252         loop-invariant steps.
11254 2010-05-18  Nathan Froyd  <froydnj@codesourcery.com>
11256         Revert:
11257         2010-05-18  Nathan Froyd  <froydnj@codesourcery.com>
11259         * tree.h (build_call_list): Remove.
11260         * tree.c (build_call_list): Remove.
11262 2010-05-18  Nathan Froyd  <froydnj@codesourcery.com>
11264         * tree.h (build_call_list): Remove.
11265         * tree.c (build_call_list): Remove.
11267 2010-05-18  Jan Hubicka  <jh@suse.cz>
11269         * ipa-reference.c (propagate): Walk all nodes in the cleanup stage.
11271 2010-05-18  Vladimir Makarov  <vmakarov@redhat.com>
11273         PR rtl-optimization/43332
11274         * haifa-sched.c (setup_insn_max_reg_pressure): Check barrier.
11276 2010-05-18  Anatoly Sokolov  <aesok@post.ru>
11278         * tree.h (build_int_cstu): Implement as static inline.
11279         * tree.c (build_int_cstu): Remove function.
11280         (double_int_to_tree, double_int_fits_to_tree_p): Handle size types as
11281         sign extended.
11283 2010-05-18  Richard Guenther  <rguenther@suse.de>
11285         PR lto/44143
11286         * lto-wrapper.c (verbose): New variable.  Initialize from -v.
11287         (debug): Initialize from -save-temps.
11288         (collect_execute): Print command-line when verbose.
11289         (run_gcc): Always use COLLECT_GCC_OPTIONS.  Use fork_execute
11290         for ltrans invocation.  Produce -dumpbase flag again.
11291         (process_args): Remove.
11292         (main): Simplify.
11293         * collect2.c (maybe_run_lto_and_relink): Only pass object
11294         files to lto-wrapper.
11295         * gcc.c (LINK_COMMAND_SPEC): Likewise.
11297 2010-05-18  Jan Hubicka  <jh@suse.cz>
11299         * opts.c (decode_options): Do not disable whopr at ipa_cp.
11300         * ipa-prop.c (ipa_detect_param_modifications): Walk PHI nodes too.
11302 2010-05-18  Steven Bosscher  <steven@gcc.gnu.org>
11304         PR lto/44184
11305         * lto-streamer-out.c (output_gimple_stmt): Output number of labels
11306         in a GIMPLE_ASM.
11307         * lto-streamer-in.c (input_gimple_stmt): Read number of labels
11308         in a GIMPLE_ASM.
11310 2010-05-18  Jakub Jelinek  <jakub@redhat.com>
11312         PR debug/41371
11313         * var-tracking.c (find_loc_in_1pdv): Add a few checks from
11314         rtx_equal_p inline.
11316 2010-05-18  Steven Bosscher  <steven@gcc.gnu.org>
11318         * config.gcc (powerpc-*-darwin*, powerpc64-*-darwin*): Add
11319         lto-macho as lto_binary_reader.
11321         * darwin.c (darwin_asm_named_section): Do not add assembler comment
11322         after .section directive; just print it before the directive instead.
11324 2010-05-17  Jan Hubicka  <jh@suse.cz>
11326         * cgraph.c (cgraph_create_virtual_clone): Only check
11327         versionable_function_p when not in wpa and checking is enabled.
11328         * cgraphunit.c (cgraph_materialize_all_clones): Stabilize after
11329         there are no more functions to materialize.
11331 2010-05-17  Jan Hubicka  <jh@suse.cz>
11333         * cgraph.h (struct ipa_replace_map): Add parm_num parameter.
11334         * lto-cgraph.c (output_cgraph_opt_summary, input_cgraph_opt_summary):
11335         New functions.
11336         (output_cgraph): Call output_cgraph_opt_summary.
11337         (input_cgrpah): Call input_cgraph_opt_summary.
11338         (output_cgraph_opt_summary_p, output_node_opt_summary,
11339         input_node_opt_summary, input_cgraph_opt_section): New functions.
11340         * lto-section-in.c (lto_section_name): Add cgraphopt.
11341         * tree-inline.c (tree_function_versioning): Handle parm_num.
11342         * lto-streamer.c (lto_get_section_name): Handle cgraphopt.
11343         * lto-streamer.h (lto_section_type): Add LTO_section_cgraph_opt_sum.
11345 2010-05-17  Changpeng Fang  <changpeng.fang@amd.com>
11347         * doc/invoke.texi: Update documentation for min-insn-to-prefetch-ratio.
11348         * tree-ssa-loop-prefetch.c (is_loop_prefetching_profitable): Also apply
11349         the insn to prefetch ratio heuristic to loops with known trip count.
11351 2010-05-17  Changpeng Fang  <changpeng.fang@amd.com>
11353         * tree-ssa-loop-prefetch.c (PREFETCH_MOD_TO_UNROLL_FACTOR_RATIO): New.
11354         (schedule_prefetches): Do not generate a prefetch if the unroll factor
11355         is far from what is required by the prefetch.
11357 2010-05-17  Jan Hubicka  <jh@suse.cz>
11359         * ipa-cp.c (ipcp_update_callgraph): Use ipa_is_param_used.
11360         (ipcp_estimate_growth): Likewise.
11361         (ipcp_const_param_count): Likewise.
11362         (ipcp_insert_stage): Likewise.
11363         * ipa-prop.c (visit_load_for_mod_analysis): New function.
11364         (visit_store_addr_for_mod_analysis): Set used flag.
11365         (ipa_detect_param_modifications): Set used flag for SSE params;
11366         update use of walk_stmt_load_store_addr_ops.
11367         (ipa_print_node_params): Print used flag.
11368         (ipa_write_node_info): Stream used flag.
11369         (ipa_read_node_info): Likewise.
11370         * ipa-prop.h (struct ipa_param_descriptor): Add used field.
11371         (ipa_is_param_used): New function.
11372         (lto_ipa_fixup_call_notes): Remove unused declaration.
11374 2010-05-17  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
11376         PR target/44074
11377         * configure.ac (HAVE_AS_IX86_REP_LOCK_PREFIX): New test.
11378         * configure: Regenerate.
11379         * config.in: Regenerate.
11380         * config/i386/i386.c (print_operand) <case ;>: Also print ";" if
11381         !HAVE_AS_IX86_REP_LOCK_PREFIX.
11382         Don't emit whitespace.
11383         * config/i386/i386.md (*rep_movdi_rex64): Use {%;} after rep.
11384         (*rep_movsi): Likewise.
11385         (*rep_movsi_rex64): Likewise.
11386         (*rep_movqi): Likewise.
11387         (*rep_movqi_rex64): Likewise.
11388         (*rep_stosdi_rex64): Likewise.
11389         (*rep_stossi): Likewise.
11390         (*rep_stossi_rex64): Likewise.
11391         (*rep_stosqi): Likewise.
11392         (*rep_stosqi_rex64): Likewise.
11393         (*cmpstrnqi_nz_1): Use {%;} after repz.
11394         (*cmpstrnqi_nz_rex_1): Likewise.
11395         (*cmpstrnqi_1): Likewise.
11396         (*cmpstrnqi_rex_1): Likewise.
11397         (*strlenqi_1): Use {%;} after repnz.
11398         (*strlenqi_rex_1): Likewise.
11399         * config/i386/sync.md (memory_barrier_nosse): Replace {%;| } by {%;} .
11400         (*sync_compare_and_swap<mode>): Likewise.
11401         (sync_double_compare_and_swap<mode>): Likewise.
11402         (*sync_double_compare_and_swapdi_pic): Likewise.
11403         (sync_old_add<mode>): Likewise.
11404         (sync_add<mode>): Likewise.
11405         (sync_sub<mode>): Likewise.
11406         (sync_<code><mode>): Likewise.
11408 2010-05-17  Martin Jambor  <mjambor@suse.cz>
11410         * cgraph.h (cgraph_indirect_call_info): New fields anc_offset,
11411         otr_token and polymorphic.
11412         * cgraph.c (cgraph_create_indirect_edge): Inilialize the above fields.
11413         (cgraph_clone_edge): Copy the above fields.
11414         * tree.c (get_binfo_at_offset): New function.
11415         * tree.h (get_binfo_at_offset): Declare.
11416         * ipa-prop.h (enum jump_func_type): Added known_type jump function
11417         type, reordered items, updated comments.
11418         (union jump_func_value): Added base_type field, reordered fields.
11419         (enum ipa_lattice_type): Moved down in the file.
11420         (struct ipa_param_descriptor): New field polymorphic.
11421         (ipa_is_param_polymorphic): New function.
11422         * ipa-prop.c: Include gimple.h and gimple-fold.h.
11423         (ipa_print_node_jump_functions): Print known type jump functions.
11424         (compute_complex_pass_through): Renamed to...
11425         (compute_complex_assign_jump_func): this.
11426         (compute_complex_ancestor_jump_func): New function.
11427         (compute_known_type_jump_func): Likewise.
11428         (compute_scalar_jump_functions): Create known type and complex ancestor
11429         jump functions.
11430         (ipa_note_param_call): New parameter polymorphic, set the corresponding
11431         flag in the call note accordingly.
11432         (ipa_analyze_call_uses): Renamed to...
11433         (ipa_analyze_indirect_call_uses): this.  New parameter target, define
11434         variable var only in the block where it is used.
11435         (ipa_analyze_virtual_call_uses): New function.
11436         (ipa_analyze_call_uses): Likewise.
11437         (combine_known_type_and_ancestor_jfs): Likewise.
11438         (update_jump_functions_after_inlining): Implemented handling of a
11439         number of new jump function types combination.
11440         (print_edge_addition_message): Removed.
11441         (make_edge_direct_to_target): New function.
11442         (try_make_edge_direct_simple_call): Likewise.
11443         (try_make_edge_direct_virtual_call): Likewise.
11444         (update_call_notes_after_inlining): Renamed to...
11445         (update_indirect_edges_after_inlining): this.  Moved edge creation for
11446         indirect calls to try_make_edge_direct_simple_call, also calls
11447         try_make_edge_direct_virtual_call for virtual calls.
11448         (ipa_print_node_params): Changed the header message.
11449         (ipa_write_jump_function): Stream also known type jump functions.
11450         (ipa_read_jump_function): Likewise.
11451         (ipa_write_indirect_edge_info): Stream new fields in
11452         cgraph_indirect_call_info.
11453         (ipa_read_indirect_edge_info): Likewise.
11454         * Makefile.in (ipa-prop.o): Add dependency to GIMPLE_H and
11455         GIMPLE_FOLD_H.
11457 2010-05-17  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
11459         * config/i386/sol2.h (TARGET_SUN_TLS): Remove duplicate definition.
11461 2010-05-17  Nathan Froyd  <froydnj@codesourcery.com>
11463         * tree.h (CALL_EXPR_ARGS): Delete.
11464         (call_expr_arglist): Delete.
11465         * tree.c (call_expr_arglist): Delete.
11466         * builtins.c (fold_call_expr): Pass the whole CALL_EXPR to
11467         targetm.fold_builtin.
11468         * config/alpha/alpha.c (alpha_fold_builtin): Rename arglist parameter.
11469         Rewrite iteration to work on call_expr_nargs rather than TREE_CHAIN.
11470         * config/picochip/picochip.c (picochip_expand_builtin_2op): Rename
11471         arglist parameter.  Use CALL_EXPR_ARG.
11472         (picochip_expand_builtin_3op): Likewise.
11473         (picochip_expand_builtin_2opvoid): Likewise.
11474         (picochip_expand_array_get): Likewise.
11475         (picochip_expand_array_put): Likewise.
11476         (picochip_expand_array_testport): Likewise.
11477         (picochip_expand_builtin): Don't call CALL_EXPR_ARGS.  Pass exp
11478         rather than arglist.
11479         * config/rx/rx.c (rx_expand_builtin): Call call_expr_nargs instead of
11480         CALL_EXPR_ARGS.
11481         * config/sparc/sparc.c (sparc_fold_builtin): Use CALL_EXPR_ARG rather
11482         than TREE_VALUE and TREE_CHAIN.
11483         * config/xtensa/xtensa.c (xtensa_fold_builtin): Likewise.
11484         * doc/tm.texi (TARGET_FOLD_BUILTIN): Pass CALL_EXPR tree instead of
11485         the arglist.
11487 2010-05-17  Jakub Jelinek  <jakub@redhat.com>
11489         PR bootstrap/42347
11490         * cfglayout.c (fixup_reorder_chain): Allow returnjump_p
11491         to have no fallthru edge.
11493         PR middle-end/44102
11494         * cfgcleanup.c (try_optimize_cfg): When removing trivially empty
11495         bb with no successors, move footer whenever in IR_RTL_CFGLAYOUT
11496         mode, not just when CLEANUP_CFGLAYOUT, and when in IR_RTL_CFGRTL
11497         add BARRIER after previous bb if needed.
11499 2010-05-17  Nathan Froyd  <froydnj@codesourcery.com>
11501         * tree.c (build_function_type_list_1): Remove bogus assert condition.
11503 2010-05-17  Alan Modra  <amodra@gmail.com>
11505         * config/rs6000/rs6000.c (rs6000_emit_allocate_stack): Delete
11506         unnecessary prototype.  Replace copy_r12 and copy_r11 flag params
11507         with copy_reg rtx param.
11508         (rs6000_emit_prologue): Update rs6000_emit_allocate_stack calls.
11509         Correct cases where code for ABI_V4 did not initialise the reg
11510         used to access frame.  Also leave frame_reg_rtx as sp for large
11511         frames that save no regs.
11513 2010-05-17  Martin Jambor  <mjambor@suse.cz>
11515         PR middle-end/44133
11516         * tree-sra.c (create_access_replacement): New parameter rename, mark
11517         the replaement for renaming only when it is true.
11518         (get_access_replacement): Pass true in the rename parameter of
11519         create_access_replacement.
11520         (get_unrenamed_access_replacement): New function.
11521         (replace_uses_with_default_def_ssa_name): New parameter racc, get the
11522         replacement declaration from it.
11524 2010-05-17  Bernd Schmidt  <bernds@codesourcery.com>
11526         * function.c (try_fit_stack_local, add_frame_space): New static
11527         functions.
11528         (assign_stack_local_1): Use them.  Look for opportunities to use
11529         space previously wasted on alignment.
11530         * function.h (struct frame_space): New.
11531         (struct rtl_data): Add FRAME_SPACE_LIST member.
11532         * reload1.c (something_was_spilled): New static variable.
11533         (alter_reg): Set it.
11534         (reload): Test it in addition to testing if the frame size changed.
11536 2010-05-17  Christian Borntraeger  <borntraeger@de.ibm.com>
11538         * config/s390/s390.c: Define sane prefetch settings and activate
11539         flag_prefetch_loop_arrays on -O3.
11540         * config/s390/s390.h: Declare that read can use write prefetch.
11542 2010-05-17  Jakub Jelinek  <jakub@redhat.com>
11544         * lto-streamer-out.c (lto_output): Fix --enable-checking=release
11545         build.
11547 2010-05-16  Jan Hubicka  <jh@suse.cz>
11549         * ipa-cp.c (ipcp_versionable_function_p): Walk cgraph edges instead of
11550         function body; do not check stdarg field of struct function.
11552 2010-05-16  Jan Hubicka  <jh@suse.cz>
11554         * cgraph.c (dump_cgraph_node): Dump versionable flag.
11555         * cgraph.h (cgraph_local_info): Add versionable flag.
11556         * ipa-cp.c (ipcp_analyze_node): Set versionable flag.
11557         (ipcp_versionable_function_p): Use it.
11558         * lto-cgraph.c (lto_output_node, input_overwrite_node): Stream
11559         versionable flag.
11561 2010-05-16  Jan Hubicka  <jh@suse.cz>
11563         * cgraph.c (cgraph_clone_node): Take decl argument and insert
11564         clone into hash when it is different from orig.
11565         (cgraph_create_virtual_clone): Update use of cgraph_clone_node.
11566         * cgraph.h (cgraph_clone_node): Update prototype.
11567         * lto-cgrpah.c (lto_cgraph_encoder_new): Create body map.
11568         (lto_cgraph_encoder_delete): Delete body map.
11569         (lto_cgraph_encoder_size): Move to header.
11570         (lto_cgraph_encoder_encode_body_p,
11571         lto_set_cgraph_encoder_encode_body): New.
11572         (lto_output_node): Do not take written_decls argument; output clone_of
11573         pointer.
11574         (add_node_to): Add include_body_argument; call
11575         lto_set_cgraph_encoder_encode_body on master of the clone.
11576         (add_references): Update use of add_node_to.
11577         (compute_ltrans_boundary): Likewise.
11578         (output_cgraph): Do not create written_decls bitmap.
11579         (input_node): Take nodes argument; stream in clone_of correctly.
11580         (input_cgraph_1): Update use of input_node.
11581         * lto-streamer-out.c (lto_output): Use encoder info to decide
11582         what bodies to output.
11583         * ipa-inline.c (cgraph_clone_inlined_nodes,
11584         cgraph_decide_recursive_inlining): Update call of cgraph_clone_node.
11585         * lto-streamer.h (lto_cgraph_encoder_d): Add body.
11586         (lto_cgraph_encoder_size): Define here.
11587         (lto_cgraph_encoder_encode_body_p, lto_varpool_encoder_encode_body_p):
11588         Declare.
11590 2010-05-16  Richard Guenther  <rguenther@suse.de>
11592         * doc/invoke.texi (-fipa-struct-reorg): Do not mention
11593         -fipa-type-escape.
11594         * ipa-type-escape.c (gate_type_escape_vars): Run when
11595         -fipa-struct-reorg runs.
11596         * opts.c (decode_options): Do not unset flag_ipa_type_escape.
11597         * common.opt (fipa-type-escape): Remove.
11599 2010-05-16  Eric Botcazou  <ebotcazou@adacore.com>
11601         * opts.c (handle_option): Call into LTO streamer only if ENABLE_LTO.
11602         (decode_options): Likewise.
11603         * Makefile.in (opts.o): Add dependency on LTO_STREAMER_H.
11605 2010-05-16  Jan Hubicka  <jh@suse.cz>
11607         * ipa.c (function_and_variable_visibility): Also bring local all
11608         aliases.
11610 2010-05-16  Richard Guenther  <rguenther@suse.de>
11612         * alias.c (nonoverlapping_memrefs_p): Remove use of
11613         IPA type-escape information.
11615 2010-05-16  Joseph Myers  <joseph@codesourcery.com>
11617         * c-common.c (c_common_reswords): Add _Static_assert for C.
11618         * c-parser.c (c_token_starts_declaration,
11619         c_parser_next_token_starts_declaration,
11620         c_parser_static_assert_declaration_no_semi,
11621         c_parser_static_assert_declaration): New.
11622         (c_parser_declaration_or_fndef): Add parameter static_assert_ok.
11623         Handle static assertions if static_assert_ok.
11624         (c_parser_external_declaration, c_parser_declaration_or_fndef,
11625         c_parser_compound_statement_nostart, c_parser_label,
11626         c_parser_for_statement, c_parser_objc_methodprotolist,
11627         c_parser_omp_for_loop): All callers of
11628         c_parser_declaration_or_fndef changed.
11629         (c_parser_struct_declaration): Handle static assertions.
11630         (c_parser_compound_statement_nostart): Use
11631         c_parser_next_token_starts_declaration and
11632         c_token_starts_declaration to detect start of declarations.
11633         (c_parser_label, c_parser_for_statement, c_parser_omp_for_loop):
11634         Likewise.
11636 2010-05-16  Anatoly Sokolov  <aesok@post.ru>
11638         * config/mmix/mmix.h (FUNCTION_VALUE, FUNCTION_OUTGOING_VALUE,
11639         LIBCALL_VALUE, FUNCTION_VALUE_REGNO_P): Remove macros.
11640         * config/mmix/mmix.c (TARGET_FUNCTION_VALUE, TARGET_LIBCALL_VALUE,
11641         TARGET_FUNCTION_VALUE_REGNO_P): Define.
11642         (mmix_function_outgoing_value): Rename to...
11643         (mmix_function_value): ...this. Make static. Add 'outgoing' argument.
11644         (mmix_function_value_regno_p): Make static.
11645         (mmix_libcall_value): New function.
11646         * config/mmix/mmix-protos.h (mmix_function_outgoing_value,
11647         mmix_function_value_regno_p): Remove declaration.
11649 2010-05-16  Eric Botcazou  <ebotcazou@adacore.com>
11651         * tree.c (build_common_builtin_nodes): Always clear TREE_NOTHROW on
11652         BUILT_IN_ALLOCA if stack checking is enabled.
11654 2010-05-16  Richard Guenther  <rguenther@suse.de>
11656         * var-tracking.c (vars_copy_1): Inline ...
11657         (vars_copy): ... here.  Use FOR_EACH_HTAB_ELEMENT.
11658         (variable_union): Use FOR_EACH_HTAB_ELEMENT.  Merge asserts.
11659         (variable_merge_over_cur): Adjust.  Merge asserts.
11660         (variable_merge_over_src): Likewise.
11661         (dataflow_set_merge): Use FOR_EACH_HTAB_ELEMENT.
11662         (variable_post_merge_new_vals): Merge asserts.
11663         (variable_post_merge_perm_vals): Likewise.
11664         (find_mem_expr_in_1pdv): Likewise.
11665         (dataflow_set_different_value): Remove.
11666         (onepart_variable_different_p): Merge asserts.
11667         (variable_different_p): Likewise.
11668         (dataflow_set_different_1): Inline ...
11669         (dataflow_set_different): ... here.  Use FOR_EACH_HTAB_ELEMENT.
11670         (emit_notes_for_differences_1): Merge asserts.
11672 2010-05-16  Richard Guenther  <rguenther@suse.de>
11674         * lto-symtab.c (lto_symtab_entry_hash): Use IDENTIFIER_HASH_VALUE.
11675         * optabs.c (libfunc_decl_hash): Likewise.
11676         * varasm.c (emutls_decl): Likewise.
11678 2010-05-16  Steven Bosscher  <steven@gcc.gnu.org>
11680         * c-decl.c: Don't include gimple.h.
11681         (merge_decls): Do not copy gimple_body.
11683 2010-05-15  Jason Merrill  <jason@redhat.com>
11685         * c.opt: Add -fnothrow-opt.
11687 2010-05-15  Jan Hubicka  <jh@suse.cz>
11689         * ipa-prop.c (ipa_prop_read_section): Add sanity check that node is
11690         analyzed.
11691         * passes.c (ipa_write_summaries): Write all analyzed nodes.
11693 2010-05-15  Steven Bosscher  <steven@gcc.gnu.org>
11695         * vecir.h: New file with VEC primitives for tree, gimple, and rtl.
11696         * Makefile.in: Add it.
11697         Fix all other Makefile dependencies for changes below.
11698         * tree.h: Include it instead of defining VEC primitives here.
11699         * gimple.h: Likewise.
11700         * rtl.h: Likewise.
11701         * tree-inline.h: Inlclude vecir.h instead of gimple.h.
11702         * except.h: Include vecir.h, break dependence on tree.h.
11704         * gimplify.c (append_to_statement_list_1, append_to_statement_list):
11705         Move from here...
11706         * tree-iterator.c: ...to here.
11707         * tree-iterator.h: Fix file introduction comment.  Add extern markers.
11709         * c-lex.c: Include fixed-value.h instead of rtl.h.  Do not include
11710         tm_p.h.
11711         * c-cppbuiltin.c: Explain why debug.h and tm_p.h are included.
11712         * c-objc-common.h: Do not include tm.h, rtl.h, insn-config.h,
11713         integrate.h, function.h, toplev.h, tree-inline.h, ggc.h,
11714         tree-mudflap.h, and target.h.
11715         * c-semantics.c: Do not include except.h, ggc.h, rtl.h, timevar.h,
11716         predict.h, tree-inline.h, gimple.h, and langhooks.h.
11717         * c-decl.c: Do not include expr.h, ggc.h, libfuncs.h, except.h.
11718         Add FIXME for why gimple.h is still included (should be unnecessary
11719         since GCC 4.5 gimplification unit-at-a-time).
11720         * c-typeck.c: Do not include rtl.h, tm_p.h, ggc.h, and gimple.h.
11721         * c-pragma.c: Add FIXME for why function.h needs to be included just
11722         for cfun, at front-end level.
11723         Add note that REGISTER_TARGET_PRAGMAS should probably be a target hook.
11724         Do not include ggc.h, but include vecprim.h for VEC(char).
11725         * c-opts.c: Do not include tm.h, tree-inline.h, and tm_p.h.
11726         Explain why target.h is included.
11727         * c-omp.h: Do not include tm.h, function.h, and bitmap.h.
11728         Explain why gimple.h is included.
11729         * c-ppoutput.c: Do not include tm.h.
11730         * c-common.c: Do not include gimple.h.  Explain why expr.h is included.
11731         * c-parses.c: Explain why rtl.h is included, and that this (and only
11732         this) is also why tm.h must be included.
11733         Do not include except.h.
11734         * c-lang.c: Do not include ggc.h.
11736 2010-05-15  Uros Bizjak  <ubizjak@gmail.com>
11738         * targhooks.c (GO_IF_MODE_DEPENDENT_ADDRESS): Use CONST_CAST_RTX.
11740 2010-05-15  Joseph Myers  <joseph@codesourcery.com>
11742         * c-decl.c (grokfield): Allow typedefs for anonymous structs and
11743         unions by default if those structs and unions have no tags.  Do
11744         not condition anonymous struct and unions handling on flag_iso.
11745         Allow anonymous structs and unions for C1X.
11746         (finish_struct): Do not diagnose lack of named fields when
11747         anonymous structs and unions present for C1X.  Accept flexible
11748         array members in structure with anonymous structs or unions but no
11749         directly named fields.
11750         * doc/extend.texi (Unnamed Fields): Update.
11752 2010-05-15  Eric Botcazou  <ebotcazou@adacore.com>
11754         * gimple.h (compare_field_offset): Rename into...
11755         (gimple_compare_field_offset): ...this.
11756         * gimple.c (compare_field_offset): Rename into...
11757         (gimple_compare_field_offset): ...this.  Compare the full access if
11758         the offset is self-referential.
11759         (gimple_types_compatible_p): Adjust for above renaming.
11760         * lto-streamer-in.c (input_gimple_stmt): Likewise.  Also compare the
11761         DECL_NONADDRESSABLE_P flag of fields before merging them.
11763 2010-05-15  Nathan Froyd  <froydnj@codesourcery.com>
11765         * tree.h (ctor_to_list): Delete.
11766         * tree.c (ctor_to_list): Delete.
11768 2010-05-15  Jan Hubicka  <jh@suse.cz>
11770         * ipa-reference.c: Include toplev.h
11771         (is_proper_for_analysis): Only add to all_module_statics
11772         if it is allocated.
11773         (write_node_summary_p, stream_out_bitmap,
11774         ipa_reference_write_optimization_summary,
11775         ipa_reference_read_optimization_summary): New.
11776         (struct ipa_opt_pass_d pass_ipa_reference): Add
11777         optimization summary streaming.
11778         * lto-cgraph.c (referenced_from_this_partition_p,
11779         reachable_from_this_partition_p): New functions.
11780         * tree-ssa-alias.c (ref_maybe_used_by_call_p_1,
11781         call_may_clobber_ref_p_1): Ask ipa-reference even for public vars.
11782         * opts.c (decode_options): Enable ipa_reference.
11783         * Makefile.in (ipa-reference.o): Add toplev.h dependency.
11784         * lto-streamer.h (referenced_from_this_partition_p,
11785         reachable_from_this_partition_p): Declare.
11787 2010-05-15  Richard Guenther  <rguenther@suse.de>
11789         PR tree-optimization/44038
11790         * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Avoid
11791         taking the address of a V_C_E of a constant.
11793 2010-05-14  Jan Hubicka  <jh@suse.cz>
11795         * tree.h (memory_identifier_string): Remove.
11796         * ipa-reference.c: Update comment; do not include gt-ipa-reference.h
11797         (ipa_reference_global_vars_info_d): Remove statics_not_read and
11798         statics_not_written.
11799         (ipa_reference_optimization_summary_d): New structure.
11800         (ipa_reference_optimization_summary_t): New type and vector.
11801         (ipa_reference_vars_info_d): Embedd structures instead of using
11802         pointers.
11803         (reference_vars_to_consider): Remove out of GGC space.
11804         (module_statics_escape): Remove.
11805         (global_info_obstack): Rename to ...
11806         (optimization_summary_obstack): ... this one.
11807         (initialization_status_t): Remove.
11808         (memory_identifier_string): Remove.
11809         (get_reference_vars_info): Fix indenting.
11810         (set_reference_vars_info): Likewise.
11811         (get_reference_optimization_summary): New.
11812         (set_reference_optimization_summary): New.
11813         (get_global_reference_vars_info): Remove.
11814         (ipa_reference_get_read_global): Remove.
11815         (ipa_reference_get_written_global): Remove.
11816         (ipa_reference_get_not_read_global): Update.
11817         (ipa_reference_get_not_written_global): Update.
11818         (is_proper_for_analysis): Outlaw addressable.
11819         (propagate_bits): Update for new datastructures.
11820         (analyze_variable): Remove.
11821         (init_function_info): Update for new datastructures.
11822         (clean_function_local_data): Remove.
11823         (clean_function): Remove.
11824         (copy_global_bitmap): Use optimizations_summary_obstack.
11825         (duplicate_node_data): Duplicate optimization summary only.
11826         (remove_node_data): Remove optimization summary only.
11827         (generate_summary): Do not analyze variables; do not compute
11828         module_statics_escape; do not prune solutions by it.
11829         (read_write_all_from_decl): Fix typos in comments.
11830         (propagate): Doscover readonly and nonaddressable first;
11831         update for new datastructures; share global bitmaps.
11832         * ipa-reference.h (ipa_reference_get_read_global,
11833         ipa_reference_get_written_global): Remove.
11834         * ipa-pure-const.c (check_stmt): Do not use memory_identifier_string.
11835         * Makefile.in: Remove ipa-refereference from GT files.
11837 2010-05-14  Jakub Jelinek  <jakub@redhat.com>
11839         PR debug/44112
11840         * dwarf2out.c (resolve_one_addr): Check TREE_ASM_WRITTEN
11841         for all SYMBOL_REF_DECLs.
11843 2010-05-14  Jan Hubicka  <jh@suse.cz>
11845         * cgraph.h (ipa_discover_readonly_nonaddressable_vars): Declare.
11846         (varpool_all_refs_explicit_p): New inline function.
11847         * ipa-reference.c: Update comment.
11848         (module_statics_written): Remove.
11849         (get_static_decl): Remove.
11850         (ipa_init): Do not initialize module_statics_written.
11851         (analyze_function): Likewise.
11852         (generate_summary): Likewise; do not compute module_statics_readonly
11853         and do not update variable flags.
11854         (propagate): Call ipa_discover_readonly_nonaddressable_vars.
11855         * ipa.c: Inlucde flags.h
11856         (cgraph_local_node_p): New.
11857         (cgraph_remove_unreachable_nodes): Return early when not optimizing;
11858         promote functions to local.
11859         (ipa_discover_readonly_nonaddressable_vars): New function.
11860         (function_and_variable_visibility): Use cgraph_local_node_p.
11861         * varpool.c (varpool_finalize_decl): Set force_output for
11862         DECL_PRESERVE_P vars.
11864 2010-05-14  Jan Hubicka  <jh@suse.cz>
11866         * ipa.c (cgraph_remove_unreachable_nodes): Revert accidental commit.
11868 2010-05-14  Richard Guenther  <rguenther@suse.de>
11870         PR tree-optimization/44119
11871         * tree-ssa-pre.c (eliminate): Properly mark replacement of
11872         a PHI node necessary.
11874 2010-05-14  Eric Botcazou  <ebotcazou@adacore.com>
11876         * tree.h (TREE_ADDRESSABLE): Remove bogus usage for FIELD_DECL.
11878 2010-05-14  Jason Merrill  <jason@redhat.com>
11880         PR c++/44127
11881         * gimple.h (enum gf_mask): Add GF_CALL_NOTHROW.
11882         (gimple_call_set_nothrow): New.
11883         * gimple.c (gimple_build_call_from_tree): Call it.
11884         (gimple_call_flags): Set ECF_NOTHROW from GF_CALL_NOTHROW.
11886         PR c++/44127
11887         * gimplify.c (gimplify_seq_add_stmt): No longer static.
11888         * gimple.h: Declare it.
11889         * gimple.c (gimple_build_eh_filter): No ops.
11891 2010-05-14  Jan Hubicka  <jh@suse.cz>
11893         * ipa.c (enqueue_cgraph_node): Update comment; do not re-enqueue
11894         nodes already in queue.
11895         (cgraph_remove_unreachable_nodes): Cleanup; fix problem with
11896         re-enqueueing node.
11898 2010-05-14  Jakub Jelinek  <jakub@redhat.com>
11900         PR debug/44136
11901         * cfgexpand.c (expand_debug_expr): If non-memory op0
11902         has BLKmode, return NULL.
11904 2010-05-14  Harsha Jagasia  <harsha.jagasia@amd.com>
11906         * config.gcc: Add support for --with-cpu option for bdver1.
11907         * config/i386/i386.h (TARGET_BDVER1): New macro.
11908         (ix86_tune_indices): Change SSE_UNALIGNED_MOVE_OPTIMAL
11909         to SSE_UNALIGNED_LOAD_OPTIMAL. Add SSE_UNALIGNED_STORE_OPTIMAL.
11910         (ix86_tune_features) :Change SSE_UNALIGNED_MOVE_OPTIMAL
11911         to SSE_UNALIGNED_LOAD_OPTIMAL. Add SSE_UNALIGNED_STORE_OPTIMAL.
11912         Add SSE_PACKED_SINGLE_INSN_OPTIMAL.
11913         (TARGET_CPU_DEFAULT_NAMES): Add bdver1.
11914         (processor_type): Add PROCESSOR_BDVER1.
11915         * config/i386/i386.md: Add bdver1 as a new cpu attribute to match
11916         processor_type in config/i386/i386.h.
11917         Add check for TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL to emit
11918         movaps <reg, reg> instead of movapd <reg, reg> when replacing
11919         movsd <reg, reg> or movss <reg, reg> for SSE and AVX.
11920         Add check for  TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL
11921         to emit packed xor instead of packed double/packed integer
11922         xor for SSE and AVX when moving a zero value.
11923         * config/i386/sse.md: Add check for
11924         TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL to emit movaps instead of
11925         movapd/movdqa for SSE and AVX.
11926         Add check for TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL to emit packed
11927         single logical operations i.e and, or and xor instead of packed double
11928         logical operations for SSE and AVX.
11929         * config/i386/i386-c.c (ix86_target_macros_internal):
11930         Add PROCESSOR_BDVER1.
11931         * config/i386/driver-i386.c: Turn on -mtune=native for BDVER1.
11932         (has_fma4, has_xop): New.
11933         * config/i386/i386.c (bdver1_cost): New variable.
11934         (m_BDVER1): New macro.
11935         (m_AMD_MULTIPLE): Add m_BDVER1.
11936         (x86_tune_use_leave, x86_tune_push_memory, x86_tune_unroll_strlen,
11937         x86_tune_deep_branch_prediction, x86_tune_use_sahf, x86_tune_movx,
11938         x86_tune_use_simode_fiop, x86_tune_promote_qimode,
11939         x86_tune_add_esp_8, x86_tune_tune_sub_esp_4, x86_tune_sub_esp_8,
11940         x86_tune_integer_dfmode_moves, x86_tune_partial_reg_dependency,
11941         x86_tune_sse_partial_reg_dependency,
11942         x86_tune_sse_unaligned_load_optimal,
11943         x86_tune_sse_unaligned_store_optimal, x86_tune_sse_typeless_stores,
11944         x86_tune_memory_mismatch_stall, x86_tune_use_ffreep,
11945         x86_tune_inter_unit_moves, x86_tune_inter_unit_conversions,
11946         x86_tune_use_bt, x86_tune_pad_returns, x86_tune_slow_imul_imm32_mem,
11947         x86_tune_slow_imul_imm8, x86_tune_fuse_cmp_and_branch):
11948         Enable/disable for bdver1.
11949         (processor_target_table): Add bdver1_cost.
11950         (cpu_names): Add bdver1.
11951         (override_options): Set up PROCESSOR_BDVER1 for bdver1 entry in
11952          processor_alias_table.
11953         (ix86_expand_vector_move_misalign): Change.
11954         TARGET_SSE_UNALIGNED_MOVE_OPTIMAL to TARGET_SSE_UNALIGNED_LOAD_OPTIMAL.
11955         Check for TARGET_SSE_UNALIGNED_STORE_OPTIMAL.
11956         Check for TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL to emit movups instead
11957         of movupd/movdqu for SSE and AVX.
11958         (ix86_tune_issue_rate): Add PROCESSOR_BDVER1.
11959         (ix86_tune_adjust_cost): Add code for bdver1.
11960         (standard_sse_constant_opcode): Add check for
11961         TARGET_SSE_PACKED_SINGLE_INSN_OPTIMAL to emit packed single xor instead
11962         of packed double xor for SSE and AVX.
11964 2010-05-14  Pat Haugen  <pthaugen@us.ibm.com>
11966         * tree-ssa-loop.prefetch.c (prune_ref_by_group_reuse): Cast abs()
11967         result to unsigned.
11969 2010-05-14  Tristan Gingold  <gingold@adacore.com>
11971         * toplev.c (default_debug_hooks): Remove this variable.
11972         (process_options): Remove assignments to default_debug_hooks.
11974 2010-05-14  Martin Jambor  <mjambor@suse.cz>
11976         * langhooks-def.h (LANG_HOOKS_FOLD_OBJ_TYPE_REF): Remove.
11977         (LANG_HOOKS_INITIALIZER): Remove LANG_HOOKS_FOLD_OBJ_TYPE_REF.
11978         * langhooks.h (struct lang_hooks_for_decls): Removed field
11979         fold_obj_type_ref.
11980         * tree.c (free_lang_data): Remove assignment to
11981         lang_hooks.fold_obj_type_ref.
11982         * tree.def (OBJ_TYPE_REF): Update comment.
11984 2010-05-14  Richard Guenther  <rguenther@suse.de>
11986         PR tree-optimization/44124
11987         * tree-ssa-sccvn.c (vn_nary_may_trap): Fix invalid memory access.
11989 2010-05-14  Alan Modra  <amodra@gmail.com>
11991         PR target/44075
11992         * config/rs6000/rs6000.c (struct machine_function): Reorder
11993         fields for better packing.  Add lr_save_state.
11994         (rs6000_ra_ever_killed): Return lr_save_state if set.
11995         (rs6000_emit_eh_reg_restore): Set lr_save_state.
11997 2010-05-13  Jan Hubicka  <jh@suse.cz>
11999         * varpool.c (decide_is_variable_needed): Drop code checking
12000         TREE_SYMBOL_REFERENCED.
12002 2010-05-13  Jan Hubicka  <jh@suse.cz>
12004         * final.c (output_addr_const): Do not call mark_decl_referenced.
12005         * cgraphunit.c (process_function_and_variable_attributes): Use
12006         mark_needed_node dirrectly.
12007         (assemble_thunk): Do not call mark_decl_referenced.
12009 2010-05-13  Anatoly Sokolov  <aesok@post.ru>
12011         * targhooks.c (default_mode_dependent_address_p): Cast 'addr' to rtx.
12013 2010-05-13  Jeff Law  <law@redhat.com>
12015         * ira-conflicts.c (print_allocno_conflicts): New function broken out
12016         from...
12017         (print_conflicts): Call print_allocno_conflicts.
12019 2010-05-13  Jakub Jelinek  <jakub@redhat.com>
12021         PR debug/44104
12022         * dwarf2out.c (modified_type_die): Don't dereference mod_type_die
12023         if it is NULL.
12025 2010-05-13  Kai Tietz  <kai.tietz@onevision.com>
12027         * config.gcc (i[34567]86-*-mingw* | x86_64-*-mingw*): Choose
12028         t-mingw-w64 or t-mingw-w32 for multilib configuration.
12029         * config/i386/t-mingw-w32: New.
12030         * config/i386/t-mingw-w64 (MULTILIB_OSDIRNAMES): Change lib64 to lib.
12032 2010-05-13  Martin Jambor  <mjambor@suse.cz>
12034         * gimple.c (gimple_fold_obj_type_ref): Removed (a replacement moved to
12035         gimple-fold.c).
12036         * gimple-fold.c (get_base_binfo_for_type): New function.
12037         (gimple_get_relevant_ref_binfo): Likewise.
12038         (gimple_fold_obj_type_ref_known_binfo): Likewise.
12039         (gimple_fold_obj_type_ref): Likewise.
12040         (fold_gimple_call): Simplify condition for folding virtual calls
12041         and call gimple_fold_obj_type_ref.
12042         * gimple.h (gimple_get_relevant_ref_binfo): Declare.
12043         (gimple_fold_obj_type_ref_known_binfo): Likewise.
12045 2010-05-13  Andreas Schwab  <schwab@linux-m68k.org>
12047         * config/rs6000/rs6000-protos.h
12048         (rs6000_mode_dependent_address_ptr): Change argument to const_rtx.
12049         * config/rs6000/rs6000.c (rs6000_mode_dependent_address)
12050         (rs6000_debug_mode_dependent_address)
12051         (rs6000_mode_dependent_address_ptr): Likewise.
12053 2010-05-13  Jakub Jelinek  <jakub@redhat.com>
12055         PR debug/43983
12056         * var-tracking.c (track_expr_p): Allow tracking of variables optimized
12057         by SRA.
12058         * Makefile.in (dwarf2out.o): Depend on $(TREE_FLOW_H).
12059         * tree-sra.c (create_access_replacement): Call unshare_expr before
12060         passing expr to SET_DECL_DEBUG_EXPR, and remove any SSA_NAMEs from it.
12061         * dwarf2out.c: Include tree-flow.h.
12062         (struct var_loc_node): Rename var_loc_note field to loc, add comment.
12063         (size_of_loc_descr, output_loc_operands, output_loc_operands_raw):
12064         Handle DW_OP_bit_piece.
12065         (decl_piece_bitsize, decl_piece_varloc_ptr, decl_piece_node,
12066         construct_piece_list, adjust_piece_list): New functions.
12067         (add_var_loc_to_decl): Handle SRA optimized variables.
12068         Adjust for var_loc_note to loc field renaming.
12069         (dw_loc_list_1): For WANT_ADDRESS == 2 prefer DECL_MODE of decl
12070         in VAR_LOCATION note.
12071         (new_loc_descr_op_bit_piece): New function.
12072         (dw_sra_loc_expr): New function.
12073         (dw_loc_list): Use it.  Don't handle the last range after the
12074         loop, handle it inside of the loop.  Adjust for var_loc_note
12075         to loc field renaming.
12076         (add_location_or_const_value_attribute): Only special case
12077         single entry loc lists if loc is NOTE_P.  Adjust for
12078         var_loc_note to loc field renaming.
12079         (dwarf2out_var_location): Don't set newloc->var_loc_note
12080         and newloc->next here.
12082 2010-05-12  Jan Hubicka  <jh@suse.cz>
12084         * cgraph.c (cgraph_mark_address_taken_node): No longer imply needed
12085         flag.
12086         * cgraph.h (cgraph_only_called_directly_p,
12087         cgraph_can_remove_if_no_direct_calls_p): test address_taken flag.
12088         (cgraph_can_remove_if_no_direct_calls_and_refs_p): New function.
12089         * cgraphunit.c (cgraph_mark_functions_to_output): Test address_taken.
12090         (assemble
12091         * ipa.c (cgraph_remove_unreachable_nodes): Use
12092         cgraph_can_remove_if_no_direct_calls_and_refs_p; clear address_taken
12093         flags.
12094         * tree-inline.c (copy_bb): Check address_taken flag.
12095         * tree-profile.c (tree_gen_ic_func_profiler): Check address_taken and
12096         externally_visible flag.
12098 2010-05-12  Jason Merrill  <jason@redhat.com>
12100         PR bootstrap/44048
12101         PR target/44099
12102         * dbxout.c (dbxout_type): Remove NULLPTR_TYPE handling.
12103         * sdbout.c (plain_type_1): Likewise.
12104         * dwarf2out.c (is_base_type): Likewise.
12105         (gen_type_die_with_usage): Likewise.  Generate
12106         DW_TAG_unspecified_type for any LANG_TYPE.
12108 2010-05-12  Jan Hubicka  <jh@suse.cz>
12110         * cgraphbuild.c (build_cgraph_edges, rebuild_cgraph_edges): Build
12111         indrect edges too.
12112         * cgraph.c (cgraph_create_indirect_edge): Take ecf_flags argument.
12113         (cgraph_clone_edge): Update.
12114         (cgraph_node_remove_callees): Remove indirect calls too.
12115         * cgraph.h (cgraph_indirect_call_info): Add ecf_flags.
12116         (cgraph_create_indirect_edge): Update prototype.
12117         * ipa-reference.c (has_proper_scope_for_analysis): Rename to
12118         is_proper_for_analysis.
12119         (add_new_function, visited_nodes, function_insertion_hook_holder,
12120         get_local_reference_vars_info, mark_address_taken, mark_address,
12121         mark_load, mark_store, check_asm_memory_clobber, check_call,
12122         scan_stmt_for_static_refs, scan_initializer_for_static_refs): Remove.
12123         (ipa_init): Do not initialize visited_nodes;
12124         function_insertion_hook_holder.
12125         (analyze_variable): Rewrite.
12126         (analyze_function): Rewrite.
12127         (copy_local_bitmap): Remove.
12128         (duplicate_node_dat): Do not duplicate local info.
12129         (generate_summary): Simplify to only walk cgraph.
12130         (write_node_summary_p, ipa_reference_write_summary,
12131         ipa_reference_read_summary): Remove.
12132         (propagate): Do not remove function insertion;
12133         generate summary.
12134         (pass_ipa_reference): NULLify summary handling fields.
12135         * lto-cgraph.c (lto_output_edge): Output ecf_flags.
12136         (input_edge): Input ecf_flags.
12137         * ipa-prop.c (ipa_note_parm_call): Expect edge to be around.
12138         (update_indirect_edges_after_inlining): Ignore edges with unknown
12139         param.
12141 2010-05-12  Sriraman Tallam  <tmsriram@google.com>
12143         * implicit-zee.c: New file.
12144         * tree-pass.h (pass_implicit_zee): Declare.
12145         * passes.c (init_optimization_passes): Add zee pass.
12146         * common.opt (fzee): New flag.
12147         * timevar.def (TV_ZEE): Define.
12148         * config/i386/i386.c (optimization_options): Turn on ZEE for level 2
12149         and beyond.
12150         * Makefile.in (implicit-zee.o): Add new build file.
12152 2010-05-12  Kazu Hirata  <kazu@codesourcery.com>
12153             Nathan Froyd  <froydnj@codesourcery.com>
12155         * c-common.c (sync_resolve_params): Remove write-only variable.
12157 2010-05-12  Anatoly Sokolov  <aesok@post.ru>
12159         * target.h (struct gcc_target): Add mode_dependent_address_p field.
12160         * target-def.h (TARGET_MODE_DEPENDENT_ADDRESS_P): New.
12161         (TARGET_INITIALIZER): Use TARGET_MODE_DEPENDENT_ADDRESS_P.
12162         * targhooks.c (default_mode_dependent_address_p): New function.
12163         * targhooks.h (default_mode_dependent_address_p): Declare function.
12164         * doc/tm.texi (TARGET_MODE_DEPENDENT_ADDRESS_P): New.
12165         (GO_IF_MODE_DEPENDENT_ADDRESS): Update.
12166         * recog.c (mode_dependent_address_p): Call mode_dependent_address_p
12167         target hook. Change return type to bool.
12168         * recog.h (mode_dependent_address_p): Change return type to bool.
12170 2010-05-12  Kazu Hirata  <kazu@codesourcery.com>
12171             Nathan Froyd  <froydnj@codesourcery.com>
12173         * tree-mudflap.c (build_function_type_0, build_function_type_1,
12174         build_function_type_2, build_function_type_3): Remove.
12175         (mudflap_init): Use build_function_type_list.
12177 2010-05-12  Kazu Hirata  <kazu@codesourcery.com>
12178             Nathan Froyd  <froydnj@codesourcery.com>
12180         * coverage.c (build_fn_info_value): Call build_constructor instead of
12181         build_constructor_from_list.
12182         (build_ctr_info_value): Likewise.
12183         (build_gcov_info): Likewise.
12185 2010-05-12  Nathan Froyd  <froydnj@codesourcery.com>
12187         * tree.c (build_constructor): Compute TREE_CONSTANT for the
12188         resultant constructor.
12189         (build_constructor_single): Don't set TREE_CONSTANT.
12190         (build_constructor_from_list): Don't compute TREE_CONSTANT.
12192 2010-05-12  Jan Hubicka  <jh@suse.cz>
12194         * cgraph.h (struct varpool_node): Add aux.
12195         * varasm.c (find_decl_and_mark_needed): Force output of varpool nodes.
12196         * varpool.c (varpool_remove_node): Do not remove initializer.
12197         (varpool_reset_queue): Export.
12198         (varpool_finalize_decl): Volatile vars are forced to be output.
12199         * lto-symtab.c (lto_varpool_replace_node): Clear out initializer of
12200         replaced decl.
12201         * ipa.c (enqueue_cgraph_node, enqueue_varpool_node,
12202         process_references, varpool_can_remove_if_no_refs): New functions.
12203         (cgraph_remove_unreachable_nodes): Handle variables too.
12205 2010-05-12  H.J. Lu  <hongjiu.lu@intel.com>
12207         PR target/44088
12208         * config/i386/sse.md (*avx_vmmaskcmp<mode>3): New.
12210 2010-05-12  Jakub Jelinek  <jakub@redhat.com>
12212         PR middle-end/44085
12213         * gimplify.c (enum omp_region_type): Add ORT_UNTIED_TASK,
12214         change value of ORT_TASK.
12215         (new_omp_context): Handle ORT_UNTIED_TASK like ORT_TASK.
12216         (omp_notice_threadprivate_variable): New function.
12217         (omp_notice_variable): Call it for threadprivate variables.
12218         If enclosing ctx is a task, print enclosing task rather than
12219         enclosing parallel.  Handle ORT_UNTIED_TASK like ORT_TASK.
12220         (gimplify_omp_task): Pass ORT_UNTIED_TASK instead of ORT_TASK
12221         if task has untied clause.
12223         PR debug/42278
12224         * dwarf2out.c (base_type_die): Don't add name attribute here.
12225         (modified_type_die): Instead of sizetype use
12226         its underlying original type.  If a DW_TAG_base_type doesn't
12227         have name added, add __unknown__.
12228         (dwarf2out_imported_module_or_decl_1): Don't call base_type_die,
12229         always call force_type_die instead.
12231 2010-05-12  Maxim Kuvyrkov  <maxim@codesourcery.com>
12233         * targhooks.c (default_stack_protect_guard): Avoid sharing RTL
12234         for __stack_chk_guard.
12236 2010-05-11  Jakub Jelinek  <jakub@redhat.com>
12238         * c-opts.c (c_common_parse_file): If start_end_main_source_file,
12239         don't call start_source_file debug hook here...
12240         (finish_options): ... but here, after outputting predefined and
12241         command line defines and undefs.
12243         PR middle-end/44071
12244         * cfglayout.c (fixup_reorder_chain): Allow asm goto to have
12245         no fallthru edge.
12246         * cfgcleanup.c (try_optimize_cfg): When in cfglayout mode
12247         optimizing away empty bb with no successors, move over its
12248         footer chain to fallthru predecessor.
12249         * cfgrtl.c (patch_jump_insn): Update also REG_LABEL_OPERAND.
12250         (rtl_split_edge): For asm goto call patch_jump_insn even if
12251         splitting fallthru edge.
12253         PR c++/44059
12254         * config/elfos.h (ASM_DECLARE_OBJECT_NAME): Use qnu_unique_object
12255         even for DECL_ONE_ONLY DECL_ARTIFICIAL !TREE_READONLY decls.
12256         * config/alpha/elf.h (ASM_DECLARE_OBJECT_NAME): Likewise.
12257         * dwarf2asm.c (dw2_output_indirect_constant_1): Set TREE_READONLY
12258         on DW.ref.* decls.
12260         PR c++/44062
12261         * c-parser.c (c_parser_expression): Mark LHS of a comma
12262         expression as read if it is a decl, handled component or
12263         COMPOUND_EXPR with that on the RHS.
12264         * c-typeck.c (c_process_expr_stmt): Mark RHS of COMPOUND_EXPR
12265         if it is a decl or handled component.
12267 2010-05-11  Jan Hubicka  <jh@suse.cz>
12269         * lto-symtab.c (lto_symtab_free): New function.
12270         * lto-streamer.h (lto_symtab_free): Declare.
12272 2010-05-11  Jan Hubicka  <jh@suse.cz>
12274         * lto-cgraph.c (reachable_from_other_partition_p): Export; do not assume
12275         that if function is needed it is reachable.
12276         (lto_output_node): See if it the function is reachable or referenced.
12277         (output_cgraph): Update call of lto_output_node.
12278         * lto-streamer.h (reachable_from_other_partition_p): Declare.
12280 2010-05-11  Jan Hubicka  <jh@suse.cz>
12282         * crtstuff.c (__JCR_LIST__, __DTOR_END__, __JCR_END__, __FRAME_END__):
12283         Mark as used.
12285 2010-05-11  Jan Hubicka  <jh@suse.cz>
12287         PR tree-optimize/44063
12288         * ipa-inline.c (cgraph_edge_badness): Move always inlines to top of
12289         queue.
12290         (cgraph_decide_inlining_of_small_function): Skip check when disrgarding
12291         limits.
12292         (estimate_function_body_sizes): Compute sizes even when disregarding.
12294 2010-05-11  Kai Tietz  <kai.tietz@onevision.com>
12296         * collect2.c (maybe_lto_object_file): Add x64-coff magic and check.
12298 2010-05-11  Jan Hubicka  <jh@suse.cz>
12300         * lto-cgraph.c (output_cgraph): Remove loop adding all varpool nodes
12301         into every boundary.
12303 2010-05-11  Jan Hubicka  <jh@suse.cz>
12305         * matrix-reorg.c (matrix_reorg): Rebuild edges.
12307 2010-05-11  Jan Hubicka  <jh@suse.cz>
12309         * lto-streamer.c (lto_streamer_cache_add_to_node_array,
12310         lto_streamer_cache_delete): Put nodes into heap.
12311         * lto-streamer.h (struct lto_streamer_cache_d): Nodes vector is in
12312         heap.
12314 2010-05-11  Jan Hubicka  <jh@suse.cz>
12316         * cgraphbuild.c (cgraph_rebuild_references): New.
12317         * cgraph.c (cgraph_mark_reachable_node): Accept references to optimized
12318         out extern inlines.
12319         * cgraph.h (cgraph_rebuild_references): Declare.
12320         * tree-inline.c (tree_function_versioning): Use it.
12321         * ipa-struct-reorg.c (do_reorg_for_func): Likewise.
12323 2010-05-11  Jan Hubicka  <jh@suse.cz>
12325         * cgraph.c: Include ipa-utils.h
12326         (cgraph_create_virtual_clone): Update references.
12327         * Makefile.in (cgraph.o): Add dependency at ipa-utils.h
12329 2010-05-11  Christian Borntraeger  <borntraeger@de.ibm.com>
12331         * tree-ssa-loop-prefetch.c (prune_ref_by_group_reuse): Reset
12332         prefetch_before to PREFETCH_ALL if to accesses "meet" beyond
12333         cache size.
12335 2010-05-11  Christian Borntraeger  <borntraeger@de.ibm.com>
12337         * tree-ssa-loop-prefetch.c: Add debug for dropped prefetches.
12339 2010-05-11  Jakub Jelinek  <jakub@redhat.com>
12341         * gcc.c (execute): For -### don't quote arguments that
12342         contain just alphanumerics and _/-. characters.
12343         * doc/invoke.texi: Document that change for -###.
12345         PR debug/44023
12346         * df-problems.c (struct dead_debug): Add to_rescan field.
12347         (dead_debug_init): Clear to_rescan field.
12348         (dead_debug_finish): Rescan all debug insns in to_rescan
12349         bitmap and free the bitmap.
12350         (dead_debug_insert_before): Instead of rescanning debug insns
12351         immediately queue their rescanning until dead_debug_finish.
12352         (df_note_bb_compute): After dead_debug_add do continue instead
12353         of break.
12355 2010-05-10  Jakub Jelinek  <jakub@redhat.com>
12357         PR debug/44028
12358         * haifa-sched.c (schedule_insn): When clearing INSN_VAR_LOCATION_LOC,
12359         clear also INSN_REG_USE_LIST.
12361 2010-05-10  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
12363         * config/mips/mips.c (TARGET_SMALL_REGISTER_CLASSES_FOR_MODE_P): Undef.
12365 2010-05-10  Jan Hubicka  <jh@suse.cz>
12367         * lto-stramer-out.c (produce_asm_for_decls): Correct accidentally
12368         commited change.
12370 2010-05-10  Jan Hubicka  <jh@suse.cz>
12372         * passes.c (ipa_write_summaries_1, ipa_write_optimization_summaries):
12373         Allocate encoders.
12374         * lto-section-out.c (lto_new_out_decl_state): Do not allocate it here.
12375         * lto-streamer.c (lto_streamer_cache_insert_1): Use alloc pool.
12376         (lto_streamer_cache_create): Init alloc pool.
12377         (lto_streamer_cache_delete): Free alloc pool.
12378         * lto-streamer.h: Include alloc pool.
12379         (lto_streamer_cache_d): Use alloc pool.
12380         * lto-stramer-out.c (produce_asm_for_decls): Delete fn_out_states.
12382 2010-05-10  Jan Hubicka  <jh@suse.cz>
12384         * Makefile.in (cgraphbuild.o): Add dependency on except.h.
12385         * cgraphbuild.c: Include except.h
12386         (record_type_list, record_eh_tables): New function.
12387         (build_cgraph_edges, rebuild_cgraph_edges): Use it.
12389 2010-05-10  Jan Hubicka  <jh@suse.cz>
12391         * crtstuff.c (force_to_data, __do_global_dtors_aux_fini_array_entry,
12392         __frame_dummy_init_array_entry, force_to_data): Attribute as used
12393         rather than unused.
12395 2010-05-10  Michael Matz  <matz@suse.de>
12397         * tree-ssa-reassoc.c (undistribute_ops_list): Use create_tmp_reg.
12398         (can_reassociate_p): Use FLOAT_TYPE_P.
12399         * tree-vectorizer.h (vect_is_simple_reduction): Rename to ...
12400         (vect_force_simple_reduction): ... this.
12401         * tree-parloops.c (gather_scalar_reductions): Use
12402         vect_force_simple_reduction.
12403         * tree-vect-loop.c (vect_is_simple_reduction_1): Rename from
12404         vect_is_simple_reduction, add modify argument, if true rewrite
12405         "a-b" into "a+(-b)".
12406         (vect_is_simple_reduction, vect_force_simple_reduction): New
12407         functions.
12408         (vect_analyze_scalar_cycles_1): Use vect_force_simple_reduction.
12410 2010-05-10  H.J. Lu  <hongjiu.lu@intel.com>
12411             Vladimir Makarov  <vmakarov@redhat.com>
12413         PR rtl-optimization/44012
12414         * ira-build.c (remove_unnecessary_allocnos): Nullify
12415         regno_allocno_map of the removed allocno.
12417 2010-05-10  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
12419         * configure.ac (gcc_cv_ld_eh_gc_sections): Redirect objdump errors
12420         to /dev/null.
12421         * configure: Regenerate.
12423 2010-05-10  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
12425         * config/sol2.c (solaris_assemble_visibility): Declare decl, vis
12426         unused.
12427         Define visibility_types, name, type inside HAVE_GAS_HIDDEN.
12428         * configure.ac (gcc_cv_ld_hidden): Explain stages of visibility
12429         support in Sun ld.
12430         * configure: Regenerate.
12432 2010-05-10  Richard Guenther  <rguenther@suse.de>
12434         * lto-symtab.c (lto_symtab_entry_marked_p): Make entry
12435         marked if the entry identifier is marked.
12437 2010-05-10  Richard Guenther  <rguenther@suse.de>
12439         * c-common.c (struct c_common_attributes): Add fnspec attribute.
12440         (handle_fnspec_attribute): New function.
12441         * gimple.h (gimple_call_return_flags): Declare.
12442         (gimple_call_arg_flags): Likewise.
12443         * gimple.c (gimple_call_arg_flags): New function.
12444         (gimple_call_return_flags): Likewise.
12445         * tree.h (EAF_DIRECT, EAF_NOCLOBBER, EAF_NOESCAPE, EAF_UNUSED):
12446         New argument flags.
12447         (ERF_RETURN_ARG_MASK, ERF_RETURNS_ARG, ERF_NOALIAS): New function
12448         return value flags.
12449         * tree-ssa-alias.c (ref_maybe_used_by_call_p_1): Skip unused args.
12450         * tree-ssa-structalias.c (make_constraint_from_heapvar): Split
12451         main work to ...
12452         (make_heapvar_for): ... this new function.
12453         (handle_rhs_call): Handle fnspec attribute argument specifiers.
12454         (handle_lhs_call): Likewise.
12455         (find_func_aliases): Adjust.
12457 2010-05-10  Richard Guenther  <rguenther@suse.de>
12459         PR tree-optimization/44050
12460         * tree-inline.c (tree_function_versioning): Clone the ipa-pta flag.
12462 2010-05-10  Wei Guozhi  <carrot@google.com>
12464         PR target/42879
12465         * config/arm/thumb2.md (thumb2_tlobits_cbranch): New insn pattern.
12467 2010-05-09  Joseph Myers  <joseph@codesourcery.com>
12469         PR c/10676
12470         * c-typeck.c (lookup_field): Take a type directly.  Update
12471         recursive calls.
12472         (build_component_ref): Update call to lookup_field.
12473         (set_init_label): Use lookup_field to find initialized field.
12474         Handle returned list of fields like a sequence of designators.
12476 2010-05-09  Richard Guenther  <rguenther@suse.de>
12478         PR middle-end/44024
12479         * fold-const.c (tree_single_nonzero_warnv_p): Properly
12480         handle &FUNCTION_DECL.
12482 2010-05-09  Joseph Myers  <joseph@codesourcery.com>
12484         PR c/4784
12485         * c-decl.c (detect_field_duplicates_hash): New.  Handle anonymous
12486         structures and unions recursively.
12487         (detect_field_duplicates): Move duplicate detection with a hash to
12488         detect_field_duplicates_hash.  Always use a hash if anonymous
12489         structures or unions are present.
12490         * doc/extend.texi (Unnamed Fields): Document that duplicate fields
12491         give errors.
12493 2010-05-09  H.J. Lu  <hongjiu.lu@intel.com>
12495         PR target/44046
12496         * config/i386/driver-i386.c (host_detect_local_cpu): Properly
12497         detect Atom, Core 2 and Core i7.
12499 2010-05-09  Richard Guenther  <rguenther@suse.de>
12501         * gcc.c (store_arg): Handle temporary file deletion for
12502         joined arguments.
12504 2010-05-09  Richard Guenther  <rguenther@suse.de>
12506         PR middle-end/44043
12507         * ipa-inline.c (estimate_function_body_sizes): Return after
12508         disregarding inline limits.
12510 2010-05-09  Richard Guenther  <rguenther@suse.de>
12512         * gcc.c (store_arg): Revert last change.
12514 2010-05-08  Sandra Loosemore  <sandra@codesourcery.com>
12516         PR middle-end/28685
12517         * tree-ssa-reassoc.c (eliminate_redundant_comparison): New function.
12518         (optimize_ops_list): Call it.
12520 2010-05-08  Richard Guenther  <rguenther@suse.de>
12522         PR tree-optimization/44030
12523         * tree-ssa-pre.c (eliminate): Copy NECESSARY flag.  Set
12524         NECESSARY flag if we propagate from a inserted expression.
12526 2010-05-08  Eric Botcazou  <ebotcazou@adacore.com>
12528         * gimple.c (gimple_types_compatible_p) <ARRAY_TYPE>: Treat bounds of
12529         domain types as equal if they are both PLACEHOLDER_EXPRs.
12531 2010-05-08  Richard Guenther  <rguenther@suse.de>
12533         * lto-wrapper.c (run_gcc): Remove linker output from
12534         command line for LTRANS invocation.
12536 2010-05-07  Steven Bosscher  <steven@gcc.gnu.org>
12538         * config.gcc (i[34567]86-*-darwin*, x86_64-*-darwin*): Add
12539         lto-macho as lto_binary_reader.
12540         * target.h (struct gcc_target): New hooks lto_start and lto_end.
12541         * target-def.h (TARGET_ASM_LTO_START, TARGET_ASM_LTO_END): Define.
12542         * cgraphunit.c (ipa_passes): Wrap LTO assembler output generation
12543         in lto_start and lto_end calls.
12544         (is_elf_or_coff): Rename to maybe_lto_object_file.  Add Mach-O
12545         magic numbers.
12546         (scan_prog_file): Update is_elf_or_coff call.
12547         * doc/tm.text (TARGET_ASM_LTO_START, TARGET_ASM_LTO_END): Document.
12549         * collect2.c (main): Fix enum comparison.
12551         * config/darwin-protos.h (darwin_asm_lto_start, darwin_asm_lto_end):
12552         Add prototypes.
12553         * darwin9.h (LINK_COMMAND_SPEC): Pass -flto and -fwhopr to the linker.
12554         * darwin.h (LINK_COMMAND_SPEC): Likewise.  Define TARGET_ASM_LTO_START
12555         and TARGET_ASM_LTO_END.
12556         * darwin.c: Include obstack.h and lto-streamer.h.
12557         (lto_section_names_offset, lto_section_names_obstack,
12558         lto_asm_out_file, lto_asm_out_name, saved_asm_out_file): New static
12559         global variables.
12560         (LTO_SEGMENT_NAME, LTO_NAMES_SECTION): New defines.
12561         (darwin_asm_lto_start): New function.  Redirect output to asm_out_file
12562         to a temporary file.
12563         (darwin_asm_lto_end): New function.  Restore asm_out_file.
12564         (darwin_asm_named_section): For LTO sections, replace the name with
12565         the offset of the section name in a string table, and build this
12566         table.
12567         (darwin_file_start): Initialize global vars for LTO support.
12568         (darwin_file_end): If output to asm_out_file was redirected, append it
12569         to the proper asm_out_file here.  Add the section names section.
12571 2010-05-07  Steven Bosscher  <steven@gcc.gnu.org>
12573         * c-pragma.c (pending_weak_d, pending_weak): New.
12574         (pending_weaks): Change the type to VEC((pending_weak,gc) *.
12575         (maybe_apply_pragma_weak, maybe_apply_pending_pragma_weaks,
12576         handle_pragma_weak): Update the uses of pending_weaks.
12578 2010-05-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12580         PR documentation/44016
12581         * doc/standards.texi (Standards): Link to unversioned
12582         cxx0x_status.html page.
12584 2010-05-07  Iain Sandoe  <iains@gcc.gnu.org>
12586         PR target/43708
12587         * config/darwin-c.c (darwin_pragma_unused): Set DECL_READ_P
12588         in addition to TREE_USED, to avoid "set but unused" warnings.
12590 2010-05-07  Changpeng Fang  <changpeng.fang@amd.com>
12592         * tree-ssa-loop-prefetch.c (TRIP_COUNT_TO_AHEAD_RATIO): New.
12593         (is_loop_prefetching_profitable): Do not insert prefetches
12594         when the trip count is not at least TRIP_COUNT_TO_AHEAD_RATIO
12595         times the prefetch ahead distance.
12597 2010-05-07  Changpeng Fang  <changpeng.fang@amd.com>
12599         * tree-ssa-loop-prefetch.c (is_loop_prefetching_profitable):
12600         Account for loop unrolling in the insn-to-prefetch ratio heuristic.
12601         (loop_prefetch_arrays): Pass to is_loop_prefetching_profitable
12602         the unroll_factor.
12604 2010-05-07  Changpeng Fang  <changpeng.fang@amd.com>
12606         * tree-ssa-loop-prefetch.c (is_loop_prefetching_profitable): Dump
12607         a diagnostic info when the insn-to-mem ratio is too small.
12609 2010-05-07  Richard Guenther  <rguenther@suse.de>
12611         * gcc.c (LINK_COMMAND_SPEC): Provide a resolution file to
12612         the linker plugin.
12613         (store_arg): Queue temp_filename for deletion instead of
12614         the whole argument.
12616 2010-05-07  Richard Guenther  <rguenther@suse.de>
12618         * lto-wrapper.c (DUMPBASE_SUFFIX): Define.
12619         (run_gcc): Handle LTRANS phase invocation.
12620         * collect2.c (maybe_run_lto_and_relink): Do not set WPA_SAVE_LTRANS.
12622 2010-05-07  Jakub Jelinek  <jakub@redhat.com>
12624         * tree.h (TREE_ADDRESSABLE): Adjust comment to say that
12625         this is also meaningful on PARM_DECLs and RESULT_DECLs.
12627 2010-05-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
12629         * config/mips/iris6.h (LINK_SPEC): Don't pass -init, -fini with -r.
12631 2010-05-07  Richard Guenther  <rguenther@suse.de>
12633         PR tree-optimization/44020
12634         * tree-ssa-pre.c (execute_pre): Do not remove dead inserted
12635         code when PRE is not yet initialized.
12637 2010-05-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
12639         * config/mips/dbxmdebug.h: Remove.
12640         * config.gcc (mips-sgi-irix6.5*): Remove mips/dbxmdebug.h.
12642 2010-05-07  Shujing Zhao  <pearly.zhao@oracle.com>
12644         * c-typeck.c (build_binary_op): Warn ordered comparison of pointer
12645         with null pointer and also warn about ordered comparison of zero with
12646         pointer if -Wextra.
12648 2010-05-05  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
12650         * graphite-blocking.c
12651         (pbb_strip_mine_profitable_p): Replace Value with mpz_t.
12652         * graphite-clast-to-gimple.c
12653         (clast_to_gcc_expression): Same.
12654         (precision_for_value): Same.
12655         (precision_for_interval): Same.
12656         (gcc_type_for_interval): Same.
12657         (graphite_create_new_guard): Same.
12658         (compute_bounds_for_level): Same.
12659         (graphite_create_new_loop_guard): Same.
12660         * graphite-interchange.c
12661         (build_linearized_memory_access): Same.
12662         (pdr_stride_in_loop): Same.
12663         (memory_strides_in_loop_1): Same.
12664         (memory_strides_in_loop): Same.
12665         (extend_scattering): Same.
12666         (psct_scattering_dim_for_loop_depth): Same.
12667         (pbb_number_of_iterations): Same.
12668         * graphite-poly.h
12669         (debug_iteration_domains): Same.
12670         * graphite-ppl.c
12671         (new_Cloog_Domain_from_ppl_Pointset_Powerset): Same.
12672         (ppl_set_inhomogeneous_gmp): Same.
12673         (ppl_strip_loop): Same.
12674         (ppl_lexico_compare_linear_expressions): Same.
12675         (ppl_read_polyhedron_matrix): Same.
12676         (ppl_max_for_le_pointset): Same.
12677         * graphite-ppl.h
12678         (ppl_read_polyhedron_matrix): Same.
12679         (tree_int_to_gmp): Same.
12680         (gmp_cst_to_tree): Same.
12681         (ppl_set_inhomogeneous): Same.
12682         (ppl_set_inhomogeneous_tree): Same.
12683         (ppl_set_coef): Same.
12684         (ppl_set_coef_tree): Same.
12685         * graphite-sese-to-poly.c
12686         (build_pbb_scattering_polyhedrons): Same.
12687         (build_scop_scattering): Same.
12688         (scan_tree_for_params_right_scev): Same.
12689         (scan_tree_for_params): Same.
12690         (find_params_in_bb): Same.
12691         (find_scop_parameters): Same.
12692         (add_upper_bounds_from_estimated_nit): Same.
12693         (build_loop_iteration_domains): Same.
12694         (add_condition_to_domain): Same.
12695         (pdr_add_memory_accesses): Same.
12697 2010-05-05  Andreas Simbuerger  <simbuerg@fim.uni-passau.de>
12699         * graphite-blocking.c (pbb_strip_mine_profitable_p): Resolve
12700         CLooG's value_* macros to their respective mpz_* counterparts.
12701         * graphite-clast-to-gimple.c (clast_to_gcc_expression): Same.
12702         (graphite_create_new_loop_guard): Same.
12703         * graphite-interchange.c (build_linearized_memory_access): Same.
12704         (pdr_stride_in_loop): Same.
12705         (memory_strides_in_loop_1): Same.
12706         (1st_interchange_profitable_p): Same.
12707         * graphite-poly.c (extend_scattering): Same.
12708         (psct_scattering_dim_for_loop_depth): Same.
12709         (pbb_number_of_iterations): Same.
12710         (pbb_number_of_iterations_at_time): Same.
12711         * graphite-poly.h (new_1st_loop): Same.
12712         * graphite-ppl.c (cloog_matrix_to_ppl_constraint): Same.
12713         (oppose_constraint): Same.
12714         (insert_constraint_into_matrix): Same.
12715         (ppl_set_inhomogeneous_gmp): Same.
12716         (ppl_set_coef_gmp): Same.
12717         (ppl_strip_loop): Same.
12718         (ppl_lexico_compare_linear_expressions): Same.
12719         (ppl_max_for_le_pointset): Same.
12720         (ppl_min_for_le_pointset): Same.
12721         (ppl_build_realtion): Same.
12722         * graphite-ppl.h (gmp_cst_to_tree): Same.
12723         (ppl_set_inhomogeneous): Same.
12724         (ppl_set_inhomogeneous_tree): Same.
12725         (ppl_set_coef): Same.
12726         (ppl_set_coef_tree): Same.
12727         * graphite-sese-to-poly.c (build_pbb_scattering_polyhedrons): Same.
12728         (build_scop_scattering): Same.
12729         (add_value_to_dim): Same.
12730         (scan_tree_for_params_right_scev): Same.
12731         (scan_tree_for_params_int): Same.
12732         (scan_tree_for_params): Same.
12733         (find_params_in_bb): Same.
12734         (find_scop_parameters): Same.
12735         (add_upper_bounds_from_estimated_nit): Same.
12736         (build_loop_iteration_domains): Same.
12737         (create_linear_expr_from_tree): Same.
12738         (add_condition_to_domain): Same.
12739         (pdr_add_memory_accesses): Same.
12741 2010-05-06  Magnus Fromreide  <magfr@lysator.liu.se>
12742             Jason Merrill  <jason@redhat.com>
12744         * c-common.c (c_common_reswords): Add nullptr.
12745         * c-common.h: Add RID_NULLPTR.  Reorganize C++0x rids.
12746         * dwarf2out.c (is_base_type): Handle NULLPTR_TYPE.
12747         (gen_type_die_with_usage): Likewise.
12748         * dbxout.c (dbxout_type): Likewise.
12749         * sdbout.c (plain_type_1): Likewise.
12751 2010-05-06  Jason Merrill  <jason@redhat.com>
12753         * gimplify.c (gimplify_expr): Set GS_ALL_DONE when appropriate.
12754         Don't change GS_OK to GS_ALL_DONE.  Make sure that all cases set
12755         ret appropriately.
12756         (gimplify_compound_lval): Return GS_ALL_DONE as appropriate.
12758         * gimplify.c (gimplify_modify_expr_rhs): Don't return GS_OK for
12759         stripping WITH_SIZE_EXPR.
12760         (gimplify_expr) [MODIFY_EXPR]: Trust GS_OK even if the rhs didn't
12761         change.
12763 2010-05-06  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
12765         * config.gcc: Removed mips-sgi-irix5*, mips-sgi-irix6.[0-4]* from
12766         list of obsolete configurations.
12767         Disabled check for obsolete configurations.
12768         (mips-sgi-irix[56]*): Restrict to mips-sgi-irix6.5*.
12769         Removed support for previous versions.
12770         * config/mips/iris.h: Removed.
12771         * config/mips/iris5.h: Removed.
12772         * config/mips/iris6.h: Merged old iris.h contents.
12773         (TARGET_IRIX): Removed.
12774         (DRIVER_SELF_SPECS): Removed mabi=32.
12775         (IDENT_ASM_OP): Removed undef.
12776         (STARTFILE_SPEC): Removed mabi=32.
12777         (ENDFILE_SPEC): Likewise.
12778         (IRIX_SUBTARGET_LINK_SPEC): Likewise.
12779         (MACHINE_TYPE): Update for IRIX 6.5.
12780         * config/mips/mips.c (mips_build_builtin_va_list): Replaced
12781         TARGET_IRIX by TARGET_IRIX6.
12782         (mips_file_start): Likewise.
12783         (mips_output_external): Remove IRIX 5/6 O32 support.
12784         (mips_output_function_prologue): Likewise.
12785         * config/mips/mips.h (TARGET_GPWORD): Replaced TARGET_IRIX by
12786         TARGET_IRIX6.
12787         (TARGET_CPU_CPP_BUILTINS): Likewise.
12788         (TARGET_IRIX): Removed.
12789         * config/mips/t-iris6 (MULTILIB_OPTIONS): Removed mabi=32.
12790         (MULTILIB_DIRNAMES): Removed 32.
12791         (MULTILIB_OSDIRNAMES): Removed ../lib.
12792         * doc/install.texi (Prerequisites): Don't reference IRIX before 6.5.
12793         (Specific, mips-sgi-irix5): Document removal.
12794         (Specific, mips-sgi-irix6): Document IRIX 6.[0-4] and O32 ABI removal.
12795         Remove references to older IRIX 6 releases and the O32 ABI.
12797 2010-05-06  Jakub Jelinek  <jakub@redhat.com>
12799         PR bootstrap/43994
12800         * df-problems.c (dead_debug_insert_before): Use *DF_REF_REAL_LOC
12801         instead of DF_REF_REAL_REG.
12803 2010-05-06  Dave Korn  <dave.korn.cygwin@gmail.com>
12805         PR target/43888
12806         * config/i386/winnt.c (i386_pe_binds_local_p): Tweak weak symbol
12807         handling to still return true for x64 targets.
12809 2010-05-06  Maxim Kuvyrkov  <maxim@codesourcery.com>
12811         * config/m68k/uclinux.h (LIB_SPEC): Bring in sync with config/linux.h.
12813 2010-05-06  Jan Hubicka  <jh@suse.cz>
12815         PR tree-optimization/43791
12816         * ipa-inline.c (update_caller_keys): Remove bogus
12817         disregard_inline_limits check.
12819 2010-05-06  Michael Matz  <matz@suse.de>
12821         PR tree-optimization/43984
12822         * tree-ssa-pre.c (inserted_phi_names): Remove.
12823         (inserted_exprs): Change to bitmap.
12824         (create_expression_by_pieces): Set bits, don't append to vector.
12825         (insert_into_preds_of_block): Don't handle inserted_phi_names.
12826         (eliminate): Don't look at inserted_phi_names, remove deleted
12827         insns from inserted_exprs.
12828         (remove_dead_inserted_code): Adjust to use bitmaps instead of vectors.
12829         (init_pre, fini_pre): Allocate and free bitmaps.
12830         (execute_pre): Insert insns on edges before elimination.
12832 2010-05-06  Maxim Kuvyrkov  <maxim@codesourcery.com>
12834         * tree.c (initializer_zerop): Handle STRING_CST.
12836 2010-05-06  Manuel López-Ibáñez  <manu@gcc.gnu.org>
12838         PR 40989
12839         * doc/invoke.texi (Wimplicit): Document as C only.
12840         * opts.c (common_handle_option): Add argument kind.
12841         (handle_option): Rename as read_cmdline_option. Factor out code to...
12842         (handle_option): ... here. New.
12843         (handle_options): Rename as read_cmdline_options.
12844         (decode_options): Update call.
12845         (set_option): Use option index instead of option pointer. Classify
12846         diagnostics correctly.
12847         (enable_warning_as_error): Call handle_option.
12848         * opts.h (set_option): Update declaration.
12849         (handle_option): Declare.
12850         * langhooks.h (struct lang_hooks): Add argument kind to handle_option.
12851         * c.opt (Wimplicit,Wimplicit-int): Initialize to -1.
12852         * c-opts.c (set_Wimplicit): Delete.
12853         (c_family_lang_mask): New static constant.
12854         (c_common_handle_option): Add argument kind. Use handle_option
12855         instead of set_Wimplicit.
12856         (c_common_post_options): warn_implicit and warn_implicit_int
12857         are disabled by default.
12858         * c-common.c (warn_implicit): Do not define here.
12859         * c-common.h (warn_implicit): Do not declare here.
12860         (c_common_handle_option): Update declaration.
12861         * lto-opts.c (lto_reissue_options): Update call to set_option.
12863 2010-05-06  Richard Guenther  <rguenther@suse.de>
12865         PR tree-optimization/43571
12866         * domwalk.c (walk_dominator_tree): Walk the dominator
12867         sons in more optimal order.
12869 2010-05-06  Richard Guenther  <rguenther@suse.de>
12871         PR tree-optimization/43934
12872         * tree-ssa-loop-im.c (movement_possibility): Handle PHI nodes.
12873         (stmt_cost): Likewise.
12874         (extract_true_false_args_from_phi): New helper.
12875         (determine_max_movement): For PHI nodes verify we can hoist them
12876         and compute their cost.
12877         (determine_invariantness_stmt): Handle PHI nodes.
12878         (move_computations_stmt): Likewise.  Hoist PHI nodes in
12879         if-converted form using COND_EXPRs.
12880         (move_computations): Return TODO_cleanup_cfg if we hoisted PHI nodes.
12881         (tree_ssa_lim): Likewise.
12882         * tree-flow.h (tree_ssa_lim): Adjust prototype.
12883         * tree-ssa-loop.c (tree_ssa_loop_im): Return todo.
12885 2010-05-06  Richard Guenther  <rguenther@suse.de>
12887         PR tree-optimization/43987
12888         * tree-ssa-structalias.c (could_have_pointers): For possibly
12889         address-taken variables force pointers to be recorded.
12890         (create_variable_info_for_1): Likewise.
12891         (push_fields_onto_fieldstack): Pass in wheter all fields
12892         must have pointers.
12893         (find_func_aliases): Query types instead of vars whether
12894         they contain pointers where appropriate.
12896 2010-05-06  Jan Hubicka  <jh@suse.cz>
12898         * cgraphbuild.c (record_reference_ctx): Add varpool_node.
12899         (record_reference, mark_address, mark_load, mark_store): Record
12900         references.
12901         (record_references_in_initializer): Update call of record_references.
12902         (rebuild_cgraph_edges): Remove all references before rebuiding.
12903         * cgraph.c (cgraph_create_node): Clear ref list.
12904         (cgraph_remove_node): Remove references.
12905         (dump_cgraph_node): Dump references.
12906         (cgraph_clone_node): Clone references.
12907         * cgraph.h: Include ipa-ref.h and ipa-ref-inline.h
12908         (struct cgraph_node, varpool_node): Add ref_lst.
12909         * ipa-ref.c: New file.
12910         * ipa-ref.h: New file.
12911         * ipa-ref-inline.h: New file.
12912         * lto-cgraph.c (output_varpool): Take cgrag node set argument.
12913         (referenced_from_other_partition_p): New function.
12914         (lto_output_varpool_node): Take set arugment; call
12915         referenced_from_other_partition.
12916         (lto_output_ref): New.
12917         (add_references): New.
12918         (output_refs): New.
12919         (output_cgraph): Compute boundary based on references; output refs.
12920         (output_varpool): Accept cgraph_node_set argument.
12921         (input_ref): New.
12922         (input_refs): New.
12923         (input_cgraph): Call input_refs.
12924         * lto-section-in.c (lto_section_name): Add refs.
12925         * Makefile.in (cgraph.h): Include ipa-ref.h and ipa-ref-inline.h
12926         (ipa-ref.o): New file.
12927         * varpool.c (varpool_node): Clear ipa ref list.
12928         (varpool_remove_node): Remove references.
12929         (dump_varpool_node): Dump references.
12930         (varpool_assemble_decl): Only compile finalized ones.
12931         (varpool_extra_name_alias): Initialize ref list.
12932         * lto-streamer.c (lto-get_section_name): Add .refs section.
12933         * lto-streamer.h (lto_section_type): Add LTO_section_refs.
12934         (referenced_from_other_partition_p): Declared.
12936 2010-05-06  Ira Rosen  <irar@il.ibm.com>
12938         PR tree-optimization/43901
12939         * tree-vect-stmts.c (vectorizable_call): Assert that vector
12940         type is not NULL if it's transformation phase, and return
12941         FALSE if it's analysis.
12942         (vectorizable_conversion, vectorizable_operation,
12943         vectorizable_type_demotion, vectorizable_type_promotion): Likewise.
12945 2010-05-05  Andrew Pinski  <andrew.pinski@caviumnetworks.com>
12947         * config/mips/mips.h (TARGET_SMALL_REGISTER_CLASSES_FOR_MODE_P):
12948         Delete.
12949         * config/mips/mips.c (TARGET_SMALL_REGISTER_CLASSES_FOR_MODE_P):
12950         New define.
12951         * config/mips/mips-protos.h
12952         (mips_small_register_classes_for_mode_p): Delete prototype.
12954 2010-05-06  Bernd Schmidt  <bernds@codesourcery.com>
12956         * config/arm/arm.h (MAX_LDM_STM_OPS): New macro.
12957         * config/arm/arm.c (multiple_operation_profitable_p,
12958         compute_offset_order): New static functions.
12959         (load_multiple_sequence, store_multiple_sequence): Use them.
12960         Replace constant 4 with MAX_LDM_STM_OPS.  Compute order[0] from
12961         memory offsets, not register numbers.
12962         (emit_ldm_seq, emit_stm_seq): Replace constant 4 with MAX_LDM_STM_OPS.
12964 2010-05-05  Steven Bosscher  <steven@gcc.gnu.org>
12966         * stor-layout.c (pending_sizes): Change the type to VEC(tree,gc) *.
12967         (get_pending_sizes, put_pending_size, put_pending_sizes):
12968         Update the uses of pending_sizes.
12969         * c-decl.c (store_parm_decls): Likewise.
12970         * c-tree.h (struct c_arg_info): Likewise.
12971         * tree.h: Update the prototype for get_pending_sizes and
12972         put_pending_sizes.
12974 2010-05-05  Jason Merrill  <jason@redhat.com>
12976         PR debug/43370
12977         * c-common.c (handle_aligned_attribute): Respect
12978         ATTR_FLAG_TYPE_IN_PLACE.
12980         PR testsuite/43758
12981         * target.h (struct gcc_target): Add attribute_takes_identifier_p.
12982         * target_def.h (TARGET_ATTRIBUTE_TAKES_IDENTIFIER_P): Define.
12983         (TARGET_INITIALIZER): Use it.
12984         * c-common.c (attribute_takes_identifier_p): Call it.
12985         * c-common.h: Update prototype.
12986         * config/rs6000/rs6000.c (rs6000_attribute_takes_identifier_p): New.
12987         (TARGET_ATTRIBUTE_TAKES_IDENTIFIER_P): Define.
12989 2010-05-05  Jakub Jelinek  <jakub@redhat.com>
12991         PR debug/43950
12992         * dwarf2out.c (gen_compile_unit_die): Add DW_AT_identifier_case
12993         DW_ID_down_case for Fortran compilation units.
12995 2010-05-05  Jan Hubicka  <jh@suse.cz>
12997         * lto-cgraph.c (lto_output_varpool_node, input_varpool_node): Correctly
12998         handle aliases.
13000 2010-05-05  Eric Botcazou  <ebotcazou@adacore.com>
13002         * gimplify.c (gimplify_return_expr): Gimplify the size expressions of
13003         a variable-sized RESULT_DECL.
13005 2010-05-05  Maxim Kuvyrkov  <maxim@codesourcery.com>
13007         * doc/invoke.texi (-mfix-cortex-m3-ldrd): Move from ARC section to ARM.
13009 2010-05-05  Jason Merrill  <jason@redhat.com>
13011         PR c++/43787
13012         * gimplify.c (gimplify_expr): Keep working if gimplify_modify_expr
13013         returns GS_OK.
13014         (gimplify_modify_expr_rhs): Return GS_OK if anything changed.
13016 2010-05-05  Alexandre Oliva  <aoliva@redhat.com>
13017             Jakub Jelinek  <jakub@redhat.com>
13019         PR debug/43478
13020         * df-problems.c (struct dead_debug_use, struct dead_debug): New.
13021         (dead_debug_init, dead_debug_finish): New functions.
13022         (dead_debug_add, dead_debug_insert_before): Likewise.
13023         (df_note_bb_compute): Initialize a dead_debug object, add dead
13024         debug uses to it, insert debug bind insns before death insns,
13025         reset debug insns that refer to pending uses at the end.
13026         * rtl.h (make_debug_expr_from_rtl): New prototype.
13027         * varasm.c (make_debug_expr_from_rtl): New function.
13029 2010-05-05  Jan Hubicka  <jh@suse.cz>
13031         * lto-cgraph.c (output_varpool): Forward declare; work on encoder.
13032         (lto_varpool_encoder_new, lto_varpool_encoder_delete,
13033         lto_varpool_encoder_encode, lto_varpool_encoder_lookup,
13034         lto_varpool_encoder_deref, lto_varpool_encoder_size,
13035         lto_varpool_encoder_encode_initializer_p,
13036         lto_set_varpool_encoder_encode_initializer): New functions.
13037         (lto_output_cgraph): Take vset parameter too; compute varpool encoder;
13038         call output_varpool.
13039         (input_varpool_node): Do not always set analyzed.
13040         (input_cgraph_1): Return vector of cgraph nodes.
13041         (input_varpool_1): Return vector of varpools.
13042         (input_cgraph): Free the vectors.
13043         * lto-streamer-out.c (lto_output_ts_decl_common_tree_pointers):
13044         output only initializers needed.
13045         (lto_output): Only call output_cgraph.
13046         (produce_asm_for_decls): Call lto_varpool_encoder_delete.
13047         * lto-section-out.c (lto_new_out_decl_state): Initialize
13048         state->varpool_node_encoder.
13049         * lto-streamer.h (lto_varpool_encoder_d): New.
13050         (lto_out_decl_state, lto_file_decl_data): Add varpool_node_encoder.
13051         (lto_cgraph_encoder_delete, output_cgraph): Update prototype.
13052         (lto_varpool_encoder_deref, lto_varpool_encoder_lookup,
13053         lto_varpool_encoder_encode, lto_varpool_encoder_delete,
13054         lto_varpool_encoder_encode_initializer_p, lto_varpool_encoder_new):
13055         Declare.
13056         (output_varpool, input_varpool): Remove declarations.
13058 2010-05-05  Jan Hubicka  <jh@suse.cz>
13060         * lto-symtab.c (lto_symtab_resolve_can_prevail_p): Alias of variable
13061         with body can prevail.
13063 2010-05-05  Jan Hubicka  <jh@suse.cz>
13065         * lto-symtab.c (lto_symtab_merge_decls_1): Prefer declarations with
13066         size.
13068 2010-05-05  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
13070         * Makefile.in (build/gengtype.o): Add $(HASHTAB_H) to dependencies.
13072         * gengtype.h (erro_at_line): Constify pos argument.
13074         * gengtype.c: Include hashtab.h.
13075         (enum gc_used): Document GC_MAYBE_POINTED_TO.
13076         (error_at_line): Constify pos argument.
13077         (do_typedef): Initialize p->opt field.
13078         (get_file_gtfilename): Fix comment typo.
13079         (struct walk_type_data): Constify line field.
13080         (get_output_file_for_structure): New function.
13081         (write_local_func_for_structure): Constify orig_s argument.
13082         Use get_output_file_for_structure.
13083         (write_func_for_structure): Use get_output_file_for_structure.
13084         (INDENT): New define.
13085         (dump_pair, dump_type, dump_type_list, dump_typekind)
13086         (dump_gc_used, dump_options, dump_fileloc, dump_type_u_s)
13087         (dump_type_u_a, dump_type_u_param_struct, dump_everything): New
13088         functions.
13089         (seen_types): New variable.
13090         (main): New variable do_dump.  Process "-d" command line option.
13091         Call dump_everything if dump requested.
13093 2010-05-05  Jakub Jelinek  <jakub@redhat.com>
13095         * var-tracking.c (var_debug_decl): Save DECL_DEBUG_EXPR value
13096         in a temporary instead of invoking the macro multiple times.
13097         (track_expr_p): Likewise.
13099 2010-05-04  Neil Vachharajani  <nvachhar@google.com>
13101         * doc/invoke.texi (-Wcoverage-mismatch): Updated documentation as
13102         per new semantics.
13103         * opts.c (decode_options): Enable -Werror=coverage-mismatch.
13104         * coverage.c (get_coverage_counts): Always emit a warning.  Adjust
13105         conditions for printing notes.
13106         * common.opt (-Wcoverage-mismatch): Allow negative, default to
13107         true, update documentation.
13108         * Makefile.in (coverage.o): Add dependence on DIAGNOSTIC_H and intl.h.
13110 2010-05-04  Jakub Jelinek  <jakub@redhat.com>
13112         PR c/43981
13113         * c-parser.c (c_parser_direct_declarator_inner): Call mark_exp_read
13114         on dimen.
13116 2010-05-04  H.J. Lu  <hongjiu.lu@intel.com>
13118         PR target/43799
13119         * config/i386/i386.md (sse_prologue_save): Clobber CC register.
13120         (*sse_prologue_save_insn1): Likewise.
13121         (SSE prologue save splitter): Likewise.
13123 2010-05-04  Eric Botcazou  <ebotcazou@adacore.com>
13125         * tree.c (free_lang_data_in_one_sizepos): New inline function.
13126         (free_lang_data_in_type): Call it on TYPE_{MIN|MAX}_VALUE of numerical
13127         types.  Call it on TYPE_SIZE and TYPE_SIZE_UNIT of all types.
13128         (free_lang_data_in_decl): Call it on DECL_SIZE and DECL_SIZE_UNIT of
13129         all decls.  Call it on DECL_FIELD_OFFSET of fields.
13130         (find_decls_types_r): Follow DECL_VALUE_EXPR.
13131         (iterative_hash_expr) <PLACEHOLDER_EXPR>: New case.
13133 2010-05-04  Martin Jambor  <mjambor@suse.cz>
13135         * tree-sra.c (build_access_from_expr_1): The first parameter type
13136         changed to simple tree.
13137         (build_access_from_expr): Likewise, gsi parameter was eliminated.
13138         (scan_assign_result): Renamed to assignment_mod_result, enum elements
13139         renamed as well.
13140         (build_accesses_from_assign): Removed all parameters except for a
13141         simple gimple statement.  Now returns a simple bool.
13142         (scan_function): All non-analysis parts moved to separate functions
13143         sra_modify_function_body and ipa_sra_modify_function_body.  Removed all
13144         parameters and updated both callers.
13145         (sra_modify_expr): Removed parameter data.
13146         (sra_modify_function_body): New function.
13147         (perform_intra_sra): Call sra_modify_function_body to modify the
13148         function body.
13149         (replace_removed_params_ssa_names): Parameter data changed into
13150         adjustments vector.
13151         (sra_ipa_modify_expr): Likewise.  Also removed unused parameter gsi and
13152         changed the parameter dont_convert to convert with the opposite
13153         meaning.
13154         (sra_ipa_modify_assign): Parameter data changed into adjustments
13155         vector, return value changed to bool.
13156         (ipa_sra_modify_function_body): New function.
13157         (sra_ipa_reset_debug_stmts): Updated a comment.
13158         (modify_function): Use ipa_sra_modify_function_body to modify function
13159         body.
13161 2010-05-04  H.J. Lu  <hongjiu.lu@intel.com>
13163         PR middle-end/43671
13164         * alias.c (true_dependence): Handle the same VALUE in x and mem.
13165         (canon_true_dependence): Likewise.
13166         (write_dependence_p): Likewise.
13168 2010-05-04  Jan Hubicka  <jh@suse.cz>
13170         * Makefile.in (cgraphbuild.o): Add dependency on ipa-utils.h
13171         * cgraphbuild.c: Include ipa-utils.h
13172         (record_reference_ctx): New struct.
13173         (record_reference): Simplify to work on initializers; not statements.
13174         (mark_address, mark_load, mark_store): New.
13175         (build_cgraph_edges): Simplify using walk_stmt_load_store_addr_ops;
13176         walk PHI nodes too.
13177         (record_references_in_initializer): Update use of record_reference.
13178         (rebuild_cgraph_edges): Simplify using walk_stmt_load_store_addr_ops;
13179         walk PHI nodes too.
13181 2010-05-04  Jan Hubicka  <jh@suse.cz>
13183         * lto-symtab.c (lto_cgraph_replace_node): Do not remove edges;
13184         node will be removed anyway.
13185         (lto_varpool_replace_node): Allow also unanalyzed nodes;
13186         relink aliases of node into prevailing node.
13187         * varpool.c (varpool_remove_node): Remove aliases properly;
13188         when removing node, remove all its aliases too; remove DECL_INITIAL
13189         of removed node; ggc_free the varpool node.
13191 2010-05-04  Richard Guenther  <rguenther@suse.de>
13193         PR tree-optimization/43879
13194         * tree-ssa-structalias.c (alias_get_name): Use
13195         DECL_ASSEMBLER_NAME if available.
13196         (create_function_info_for): Return the varinfo node.
13197         (ipa_pta_execute): Associate same-body aliases and extra names
13198         with their origin nodes varinfo.  Dump DECL_ASSEMBLER_NAME.
13200 2010-05-04  Kaz Kojima  <kkojima@gcc.gnu.org>
13202         * config/sh/sh.c (sh_small_register_classes_for_mode_p): Remove static.
13204 2010-05-04  Mikael Pettersson  <mikpe@it.uu.se>
13206         PR bootstrap/43964
13207         * ira-color.c (assign_hard_reg): Declare rclass and add_cost
13208         only if HONOR_REG_ALLOC_ORDER is not defined.
13210 2010-05-04  Richard Guenther  <rguenther@suse.de>
13212         PR tree-optimization/43949
13213         * tree-vrp.c (extract_range_from_binary_expr): Only handle
13214         TRUNC_MOD_EXPR.
13216 2010-04-26  Jason Merrill  <jason@redhat.com>
13218         * c.opt (-fstrict-enums): New.
13219         * doc/invoke.texi (C++ Dialect Options): Document -fstrict-enums.
13221 2010-05-03  David Ung  <davidu@mips.com>
13222             James E. Wilson  <wilson@codesourcery.com>
13224         * config/mips/mips.c (mips_output_division): If GENERATE_DIVIDE_TRAPS,
13225         emit the trap instruction before the divide for TUNE_74K.
13227 2010-05-03  Steven Bosscher  <steven@gcc.gnu.org>
13229         * doc/tm.texi (defmac SMALL_REGISTER_CLASSES): Remove.
13230         (TARGET_SMALL_REGISTER_CLASSES_FOR_MODE_P): Add documentation,
13231         based on the above, for new target hook.
13233         * hooks.c (hook_bool_mode_true): New generic hook.
13234         * hooks.h (hook_bool_mode_true): Add prototype.
13236         * target.h (struct gcc_target): Add small_register_classes_for_mode_p
13237         target hook.
13238         * target-def.h (TARGET_SMALL_REGISTER_CLASSES_FOR_MODE_P): New default
13239         target hook, set to hook_bool_mode_false.
13240         * regs.h: Remove default definition of SMALL_REGISTER_CLASSES.
13241         * reload.c (push_secondary_reload): Replace SMALL_REGISTER_CLASSES
13242         with targetm.small_register_classes_for_mode_p.
13243         (find_reusable_reload): Likewise.
13244         (combine_reloads): Likewise.
13245         * reload1.c (reload_as_needed): Likewise.
13246         * cse.c (approx_reg_cost_1, hash_rtx_cb): Likewise.
13247         * ifcvt.c (noce_process_if_block, check_cond_move_block,
13248         dead_or_predicable): Likewise.
13249         * regmove.c (optimize_reg_copy_1): Likewise.
13250         * calls.c (prepare_call_address): Likewise.
13251         (precompute_register_parameters): Likewise.
13253         * config/sh/sh.h: Replace SMALL_REGISTER_CLASSES with new target
13254         hook definition.
13255         * config/sh/sh.c (sh_small_register_classes_for_mode_p): Add
13256         implementation of the hook that considers all register classes
13257         small except for SH64.
13258         (sh_override_options): Use the new hook.
13259         * config/sh/sh-protos.h (sh_small_register_classes_for_mode_p):
13260         Add prototype.
13262         * config/arm/arm.h: Replace SMALL_REGISTER_CLASSES with new target
13263         hook definition.
13264         * config/arm/arm.c (arm_small_register_classes_for_mode_p): Add
13265         implementation of the hook that considers all register classes
13266         small for THUMB1.
13267         * config/arm/arm-protos.h (arm_small_register_classes_for_mode_p):
13268         Add prototype.
13270         * config/mips/mips.h: Replace SMALL_REGISTER_CLASSES with new target
13271         hook definition.
13272         * config/mips/mips.c (mips_small_register_classes_for_mode_p): Add
13273         implementation of the hook that considers all register classes
13274         small for MIPS16.
13275         * config/mips/mips-protos.h (mips_small_register_classes_for_mode_p):
13276         Add prototype.
13278         * config/i386/i386.h: Replace SMALL_REGISTER_CLASSES with new target
13279         hook definition.
13280         * config/m32c/m32c.h: Likewise.
13281         * config/pdp11/pdp11.h: Likewise.
13282         * config/avr/avr.h: Likewise.
13283         * config/xtensa/xtensa.h: Likewise.
13284         * config/m68hc11/m68hc11.h: Likewise.
13285         * config/mn10300/mn10300.h: Likewise.
13286         * config/mcore/mcore.h: Likewise.
13287         * config/h8300/h8300.h: Likewise.
13288         * config/bfin/bfin.h: Likewise.
13290         * config/iq2000/iq2000.h: Remove SMALL_REGISTER_CLASSES definition.
13291         * config/rx/rx.h: Remove SMALL_REGISTER_CLASSES definition.
13293 2010-05-03  Anatoly Sokolov  <aesok@post.ru>
13295         * double-int.h (tree_to_double_int): Remove macro.
13296         (double_int_to_tree, double_int_fits_to_tree_p): Move prototypes ...
13297         * tree.h (double_int_to_tree, double_int_fits_to_tree_p): ... here.
13298         (tree_to_double_int): New function.
13299         * double-int.c (double_int_to_tree, double_int_fits_to_tree_p):
13300         Move ...
13301         * tree.c (double_int_to_tree, double_int_fits_to_tree_p): ... here.
13303 2010-05-03  Richard Guenther  <rguenther@suse.de>
13305         PR tree-optimization/43971
13306         * tree-ssa-structalias.c (get_constraint_for_1): Fix
13307         constraints in the !flag_delete_null_pointer_checks case.
13309 2010-05-03  Jakub Jelinek  <jakub@redhat.com>
13311         PR debug/43972
13312         * config/i386/i386.c (ix86_delegitimize_address): Make sure the
13313         result mode matches original rtl mode.
13315 2010-05-03  Dave Korn  <dave.korn.cygwin@gmail.com>
13317         PR target/43888
13318         * config/i386/winnt.c (i386_pe_binds_local_p): Handle weak decls.
13320 2010-05-02  Uros Bizjak  <ubizjak@gmail.com>
13322         * config/i386/i386.c (ix86_target_string): Output 'flags', not 'isa',
13323         when processing flag options.
13325 2010-05-02  Uros Bizjak  <ubizjak@gmail.com>
13327         * gcov-iov.c (main): Change format string placeholder
13328         from %#08x to 0x%08x.
13329         * genchecksum.c (dosum): Change format string placeholder
13330         from %#02x to 0x%02x.
13332 2010-05-02  Richard Guenther  <rguenther@suse.de>
13334         PR tree-optimization/43879
13335         * tree-tailcall.c (find_tail_calls): Clobbers also prevent tail calls.
13337 2010-05-02  Bruno Haible  <bruno@clisp.org>
13339         * doc/extend.texi (Function Attributes): Fix a typo.
13341 2010-05-02  Uros Bizjak  <ubizjak@gmail.com>
13343         Revert:
13344         * hwint.h (HOST_WIDE_INT_PRINT_DOUBLE_HEX): Change format string
13345         placeholder from 0x%x to %#x.
13346         (HOST_WIDEST_INT_PRINT_DOUBLE_HEX): Ditto.
13347         * config/i386/i386elf.h (ASM_OUTPUT_ASCII): Ditto.
13348         * config/i386/i386-interix.h (ASM_OUTPUT_ASCII): Ditto.
13349         * config/i386/att.h (ASM_OUTPUT_ASCII): Ditto.
13350         * config/i386/sysv4.h (ASM_OUTPUT_ASCII): Ditto.
13351         * config/i386/i386.c (ix86_target_string): Ditto.
13352         * config/i386/i386.c (output_pic_addr_const): Ditto.
13353         (print_operand): Ditto.
13355 2010-05-02  Uros Bizjak  <ubizjak@gmail.com>
13357         * vmsdbgout.c (ASM_OUTPUT_DEBUG_DATA1): Change format string
13358         placeholder from 0x%x to %#x.
13359         (ASM_OUTPUT_DEBUG_DATA1): Ditto.
13360         (ASM_OUTPUT_DEBUG_DATA4): Ditto.
13361         (ASM_OUTPUT_DEBUG_DATA): Ditto.
13362         (ASM_OUTPUT_DEBUG_ADDR_DATA): Ditto.
13363         (ASM_OUTPUT_DEBUG_DATA8): Ditto.
13364         * optc-gen.awk: Ditto.
13365         * hwint.h (HOST_WIDE_INT_PRINT_DOUBLE_HEX): Ditto.
13366         (HOST_WIDE_INT_PRINT_HEX): Ditto.
13367         (HOST_WIDEST_INT_PRINT_HEX): Ditto.
13368         (HOST_WIDEST_INT_PRINT_DOUBLE_HEX): Ditto.
13370 2010-05-01  Anatoly Sokolov  <aesok@post.ru>
13372         * target.h (struct calls): Add function_value_regno_p field.
13373         * target-def.h (TARGET_FUNCTION_VALUE_REGNO_P): Define.
13374         (TARGET_INITIALIZER): Use TARGET_FUNCTION_VALUE_REGNO_P.
13375         * targhooks.c (default_function_value_regno_p): New function.
13376         * targhooks.h (default_function_value_regno_p): Declare function.
13377         * rtlanal.c (keep_with_call_p): Use function_value_regno_p hook.
13378         * builtins.c. (apply_result_size): (Ditto.).
13379         * combine.c. (likely_spilled_retval_p): (Ditto.).
13380         * mode-switching.c. Include 'target.h'.
13381         (create_pre_exit): Use function_value_regno_p hook.
13382         * Makefile.in (mode-switching.o): Add dependency on TARGET_H.
13383         * doc/tm.texi (FUNCTION_VALUE_REGNO_P,
13384         TARGET_FUNCTION_VALUE_REGNO_P): Revise documentation.
13386         * config/i386/i386.h (TARGET_FUNCTION_VALUE_REGNO_P): Remove macro.
13387         * config/i386/i386.c (TARGET_FUNCTION_VALUE_REGNO_P): Define macro.
13388         (ix86_function_value_regno_p): Declare as static, change argument
13389         type to const unsigned int.
13390         * config/i386/i386-protos.h (ix86_function_value_regno_p): Remove.
13392 2010-05-01  Richard Guenther  <rguenther@suse.de>
13394         PR tree-optimization/43949
13395         * tree-vrp.c (ssa_name_nonnegative_p): Return true for unsigned
13396         types.
13397         (extract_range_from_binary_expr): Handle *_MOD_EXPR.
13399 2010-05-01  Anatoly Sokolov  <aesok@post.ru>
13401         * rtl.h (CONST_DOUBLE_P): Define.
13402         (rtx_to_double_int): Declare.
13403         * emit-rtl.c (rtx_to_double_int): New function.
13404         * dwarf2out.c (insert_double): New function.
13405         (loc_descriptor, add_const_value_attribute): Clean up, use
13406         rtx_to_double_int and insert_double functions.
13408 2010-05-01  Jonathan Wakely  <jwakely.gcc@gmail.com>
13410         * doc/extend.texi (Inline): Add missing return keyword to examples.
13411         (Function Attributes, Variable Attributes, Pragmas): Hyphenate
13412         "command-line".
13414 2010-04-30  Eric Botcazou  <ebotcazou@adacore.com>
13416         * tree-ssa-loop-ivopts.c (may_be_unaligned_p): Check the alignment of
13417         the variable part of the offset as well.  Use highest_pow2_factor for
13418         all alignment checks.
13420 2010-04-30  Richard Guenther  <rguenther@suse.de>
13422         PR tree-optimization/43879
13423         * tree-ssa-structalias.c (type_could_have_pointers): Functions
13424         can have pointers.
13426 2010-04-30  Jan Hubicka  <jh@suse.cz>
13428         * lto-symtab.c (lto_symtab_resolve_can_prevail_p): Chose var with
13429         varpool.
13430         (lto_symtab_merge_decls_1): Remove logic looking for an initializer.
13432 2010-04-30  Jan Hubicka  <jh@suse.cz>
13434         * cgraph.h (cgraph_node_set_nonempty_p, varpool_node_set_nonempty_p):
13435         New.
13436         * lto-cgraph.c (input_cgraph): Remove call to lto_mark_file_for_ltrans.
13437         * lto-streamer.h (lto_file_decl_data): Remove needs_ltrans_p.
13438         (lto_file_needs_ltrans_p, lto_mark_file_for_ltrans,
13439         cgraph_node_set_needs_ltrans_p): Remove.
13441 2010-04-30  Steven Bosscher  <steven@gcc.gnu.org>
13443         * sdbout.c: Include vec.h, do not include varray.h.
13444         (deferred_global_decls, sdbout_global_decl,
13445         sdbout_finish, sdbout_init): Use VEC instead of VARRAY.
13446         * toplev.c: Do not include varray.h.
13447         (dump_memory_report): Do not dump VARRAY statistics.
13448         * gengtype.c (open_base_file): Ignore varray.h.
13449         * Makefile.in: Update for abovementioned changes.
13450         Remove all traces of varray.c and varray.h.
13451         * varray.c: Remove file.
13452         * varray.h: Remove file.
13454 2010-04-30  Jan Hubicka  <jh@suse.cz>
13456         * lto-cgraph.c (lto_output_varpool_node): Always output constant pool
13457         references.
13459 2010-04-30  Jan Hubicka  <jh@suse.cz>
13461         * tree-profile.c (tree_init_ic_make_global_vars): Mark new decls as
13462         needed.
13464 2010-04-30  Richard Guenther  <rguenther@suse.de>
13466         * tree-ssa-structalias.c (get_constraint_for_1): Generate
13467         constraints for CONSTRUCTOR.
13469 2010-04-30  Richard Guenther  <rguenther@suse.de>
13471         PR lto/43946
13472         * passes.c (init_optimization_passes): Move pass_ipa_free_lang_data
13473         first after all lowering passes.
13475 2010-04-30  Steven Bosscher  <steven@gcc.gnu.org>
13477         * toplev.c: Include varray.h for statistics dumping.
13478         * tree.h: Do not declare varray_head_tag.
13479         * tree-into-ssa.c, tree-ssa-uninit.c, tree-phinodes.c, omega.c,
13480         regs.h, lto-cgraph.c, tree-ssa-loop-ivopts.c, tree-nomudflap.c,
13481         c-objc-common.c, lto-streamer-out.c, tree-ssa-propagate.c,
13482         gimple-low.c, c-semantics.c, dwarf2out.c, lto-streamer-in.c,
13483         lto-section-in.c, alias.c, tree-if-conv.c, gimplify.c, ggc-zone.c,
13484         tree-ssa.c, tree-ssa-loop-prefetch.c, integrate.h, c-gimplify.c,
13485         c-common.c, c-common.h, reg-stack.c, basic-block.h,
13486         tree-ssa-structalias.c, lto-section-out.c, tree-ssanames.c: Do not
13487         include varray.h.
13488         * Makefile.in: Update for abovementioned changes.
13490 2010-04-30  Jakub Jelinek  <jakub@redhat.com>
13492         PR debug/43942
13493         * tree.c (auto_var_in_fn_p): Return false for DECL_EXTERNAL vars.
13495 2010-04-30  Hariharan Sandanagobalane  <hariharan@picochip.com>
13497         * config/picochip/picochip.c (picochip_legitimize_address): Define.
13498         Use this function to do machine-specific conversion.
13499         (picochip_legitimize_reload_address): Likewise.
13500         (picochip_legitimate_address_p): Check valid base register only if
13501         strict.
13502         (picochip_check_conditional_copy): Check for modw only if opnd is
13503         register.
13504         * config/picochip/picochip.h (LEGITIMIZE_RELOAD_ADDRESS): Use this
13505         to call the function in c.
13506         * config/picochip/picochip-protos.h
13507         (picochip_legitimize_reload_address): Define.
13508         * config/picochip/picochip.md (supported_compare1): Define.
13510 2010-04-30  Jan Hubicka  <jh@suse.cz>
13512         * cgraph.h (cgraph_local_info): Remove for_functions_valid.
13513         (cgraph_global_info): Remove inlined.
13514         (LTO_cgraph_tag_names): Remove.
13515         (LTO_cgraph_tags, LCC_NOT_FOUND): Move to ...
13516         * lto-cgraph.c (LTO_cgraph_tags, LCC_NOT_FOUND): ... here;
13517         simplify cgraph tags and document.
13518         (lto_output_node): Use only LTO_cgraph_unavail_node and
13519         LTO_cgraph_analyzed_node; Do not save analzed, reachable,
13520         for_functions_valid, global info, process and output flags.
13521         (input_overwrite_node): Initialize estimated stack size and
13522         estimated growth.  Do not read flags we no longer store.
13523         (input_node): Likewise do not read info no longer stored.
13524         * ipa-inline.c (cgraph_mark_inline_edge): Do not set global.inlined
13525         flag.
13527 2010-04-30  Richard Guenther  <rguenther@suse.de>
13529         PR tree-optimization/43879
13530         * tree-ssa-structalias.c (get_constraint_for_1): Properly
13531         handle non-zero initializers.
13533 2010-04-30  Richard Guenther  <rguenther@suse.de>
13535         * builtins.c (fold_builtin_1): Delete free (0).
13537 2010-04-29  Jan Hubicka  <jh@suse.cz>
13539         * gengtype.c (open_base_files): Add lto-streamer.h
13540         * cgraph.h (cgraph_local_info): lto_file_data is now in GGC.
13541         (pass_ipa_cp): GGC collect.
13542         * toplev. (compile_file): Do not output symbols.
13543         * ipa-inline.c (pass_ipa_inline): Add ggc collect.
13544         * timevar.def (TV_VARPOOL, TV_IPA_LTO_DECL_INIT_IO,
13545         TV_IPA_LTO_DECL_MERGE, TV_IPA_LTO_CGRAPH_MERGE, TV_VAROUT): New.
13546         * lto-section-in.c: Include ggc.h
13547         (lto_new_in_decl_state): Alloc in GGC.
13548         (lto_delete_in_decl_state): Likewise.
13549         * ipa.c (pass_ipa_function_visibility, pass_ipa_whole_program):
13550         Collect.
13552 2010-04-29  Bernd Schmidt  <bernds@codesourcery.com>
13554         PR target/42895
13555         * doc/tm.texi (ADJUST_REG_ALLOC_ORDER): Renamed from
13556         ORDER_REGS_FOR_LOCAL_ALLOC.  All instances of this macro changed.
13557         (HONOR_REG_ALLOC_ORDER): Describe new macro.
13558         * ira.c (setup_alloc_regs): Use ADJUST_REG_ALLOC_ORDER if defined.
13559         * ira-color.c (assign_hard_reg): Take prologue/epilogue costs into
13560         account only if HONOR_REG_ALLOC_ORDER is not defined.
13561         * config/arm/arm.h (HONOR_REG_ALLOC_ORDER): Define.
13562         * system.h (ORDER_REGS_FOR_LOCAL_ALLOC): Poison.
13564 2010-04-29  Jon Grant  <04@jguk.org>
13566         * collect2.c (vflag): Change type from int to bool.
13567         (debug): Likewise.
13568         (helpflag): New global bool.
13569         (main): Set vflag and debug with boolean, not integer truth values.
13570         Accept new "--help" option and output usage text if found.
13571         * collect2.h (vflag): Update prototype.
13572         (debug): Likewise.
13574 2010-04-29  H.J. Lu  <hongjiu.lu@intel.com>
13576         PR bootstrap/43936
13577         * plugin.h (flag_plugin_added): Moved out of invoke_plugin_callbacks.
13579 2010-04-29  Richard Guenther  <rguenther@suse.de>
13581         PR bootstrap/43935
13582         * plugin.h (invoke_plugin_callbacks): Annotate arguments
13583         with ATTRIBUTE_UNUSED.
13585 2010-04-29  H.J. Lu  <hongjiu.lu@intel.com>
13587         PR target/43921
13588         * config/i386/i386.c (get_some_local_dynamic_name): Replace
13589         INSN_P with NONDEBUG_INSN_P.
13590         (distance_non_agu_define): Likewise.
13591         (distance_agu_use): Likewise.
13593 2010-04-29  Bernd Schmidt  <bernds@codesourcery.com>
13595         From Dominique d'Humieres  <dominiq@lps.ens.fr>
13596         PR bootstrap/43858
13597         * ifcvt.c (dead_or_predicable): Use df_simulate_find_defs to compute
13598         test_set.
13600 2010-04-29  Brian Hackett  <bhackett1024@gmail.com>
13602         * plugin.h (invoke_plugin_callbacks): New inline function.
13603         * plugin.c (flag_plugin_added): New global flag.
13604         (add_new_plugin): Initialize above flag.
13605         (invoke_plugin_callbacks): Rename to ...
13606         (invoke_plugin_callbacks_full): ... this.
13608 2010-04-28  Jan Hubicka  <jh@suse.cz>
13610         * lto-symtab.c (lto_symtab_entry_def) Add vnode.
13611         (lto_varpool_replace_node): New.
13612         (lto_symtab_resolve_symbols): Resolve varpool nodes.
13613         (lto_symtab_merge_decls_1): Prefer decls with varpool node.
13614         (lto_symtab_merge_cgraph_nodes_1): Merge varpools.
13615         * cgraph.h (varpool_node_ptr): New type.
13616         (varpool_node_ptr): New vector.
13617         (varpool_node_set_def): New structure.
13618         (varpool_node_set): New type.
13619         (varpool_node_set): New vector.
13620         (varpool_node_set_element_def): New structure.
13621         (varpool_node_set_element, const_varpool_node_set_element): New types.
13622         (varpool_node_set_iterator): New type.
13623         (varpool_node): Add prev pointers, add used_from_other_partition,
13624         in_other_partition.
13625         (varpool_node_set_new, varpool_node_set_find, varpool_node_set_add,
13626         varpool_node_set_remove, dump_varpool_node_set, debug_varpool_node_set,
13627         varpool_get_node, varpool_remove_node): Declare.
13628         (vsi_end_p, vsi_next, vsi_node, vsi_start, varpool_node_in_set_p,
13629         varpool_node_set_size): New inlines.
13630         * cgraph.c (dump_cgraph_node): Dump asm names of aliases.
13631         * tree-pass.h (varpool_node_set_def): Forward declare.
13632         (ipa_opt_pass_d): Summary writting takes vnode sets too.
13633         (ipa_write_optimization_summaries): Update prototype.
13634         * ipa-cp.c (ipcp_write_summary): Update.
13635         * ipa-reference.c (ipa_reference_write_summary): Update.
13636         * lto-cgraph.c (lto_output_varpool_node): New static function.
13637         (output_varpool): New function.
13638         (input_varpool_node): New static function.
13639         (input_varpool_1): New function.
13640         (input_cgraph): Input varpool.
13641         * ipa-pure-const.c (pure_const_write_summary): Update.
13642         * lto-streamer-out.c (lto_output): Update, output varpool too.
13643         (write_global_stream): Kill WPA hack.
13644         (produce_asm_for_decls): Update.
13645         (output_alias_pair_p): Handle variables.
13646         (output_unreferenced_globals): Output only needed partition of varpool.
13647         * ipa-inline.c (inline_write_summary): Update.
13648         * lto-streamer-in.c (lto_input_tree_ref, lto_input_tree): Do not build
13649         cgraph.
13650         * lto-section-in.c (lto_section_name): Add varpool and jump funcs.
13651         * ipa.c (hash_varpool_node_set_element, eq_varpool_node_set_element,
13652         varpool_node_set_new, varpool_node_set_add,
13653         varpool_node_set_remove, varpool_node_set_find, dump_varpool_node_set,
13654         debug_varpool_node_set): New functions.
13655         * passes.c (rest_of_decl_compilation): when in LTO do not finalize.
13656         (execute_one_pass): Process new decls too.
13657         (ipa_write_summaries_2): Pass around vsets.
13658         (ipa_write_summaries_1): Likewise.
13659         (ipa_write_summaries): Build vset; be more selective about cgraph nodes
13660         to add.
13661         (ipa_write_optimization_summaries_1): Pass around vsets.
13662         (ipa_write_optimization_summaries): Likewise.
13663         * varpool.c (varpool_get_node): New.
13664         (varpool_node): Update doubly linked lists.
13665         (varpool_remove_node): New.
13666         (dump_varpool_node): More dumping.
13667         (varpool_enqueue_needed_node): Update doubly linked lists.
13668         (decide_is_variable_needed): Kill ltrans hack.
13669         (varpool_finalize_decl): Kill lto hack.
13670         (varpool_assemble_decl): Skip decls in other partitions.
13671         (varpool_assemble_pending_decls): Update doubly linkes lists.
13672         (varpool_empty_needed_queue): Likewise.
13673         (varpool_extra_name_alias): Likewise.
13674         * lto-streamer.c (lto_get_section_name): Add vars section.
13675         * lto-streamer.h (lto_section_type): Update.
13676         (output_varpool, input_varpool): Declare.
13678 2010-04-28  Mike Stump  <mikestump@comcast.net>
13680         * config/i386/darwin.h (CC1_SPEC): Ignore -mdynamic-no-pic for now.
13682 2010-04-28  Eric Botcazou  <ebotcazou@adacore.com>
13684         * lto-streamer-in.c (unpack_ts_type_value_fields): Replace test for
13685         record or union type with RECORD_OR_UNION_TYPE_P predicate.
13686         (lto_input_ts_type_tree_pointers): Likewise.
13687         * lto-streamer-out.c (pack_ts_type_value_fields): Likewise.
13688         (lto_output_ts_type_tree_pointers): Likewise.
13690 2010-04-28  Eric Botcazou  <ebotcazou@adacore.com>
13692         Uniquization of constants at the Tree level
13693         * tree.h (DECL_IN_CONSTANT_POOL): New macro.
13694         (tree_decl_with_vis): Add in_constant_pool bit, move shadowed_for_var_p
13695         bit to the end.
13696         (tree_output_constant_def): Declare.
13697         * gimplify.c (gimplify_init_constructor): When using block copy, first
13698         uniquize the constant constructor on the RHS.
13699         * lto-streamer-in.c (unpack_ts_decl_with_vis_value_fields): Deal with
13700         DECL_IN_CONSTANT_POOL flag.
13701         * lto-streamer-out.c (pack_ts_decl_with_vis_value_fields): Likewise.
13702         * varasm.c (make_decl_rtl): Deal with variables belonging to the global
13703         constant pool.
13704         (assemble_variable): Deal with symbols belonging to the tree constant
13705         pool.
13706         (get_constant_section): Add ALIGN parameter and simplify.
13707         (build_constant_desc): Build a VAR_DECL and attach it to the symbol.
13708         (assemble_constant_contents): Use the expression of the VAR_DECL.
13709         (output_constant_def_contents): Use the alignment of the VAR_DECL.
13710         (tree_output_constant_def): New global function.
13711         (mark_constant): Use the expression of the VAR_DECL.
13712         (place_block_symbol): Use the alignment of the VAR_DECL and the size of
13713         its expression.
13714         (output_object_block): Likewise and assemble the expression.
13716 2010-04-28  Eric Botcazou  <ebotcazou@adacore.com>
13718         * lto-streamer.c [LTO_STREAMER_DEBUG] (tree_htab, tree_hash_entry,
13719         hash_tree, eq_tree): New tree hash table.
13720         (lto_streamer_init) [LTO_STREAMER_DEBUG]: Initialize it.
13721         [LTO_STREAMER_DEBUG] (lto_orig_address_map, lto_orig_address_get,
13722         lto_orig_address_remove): Reimplement.
13724 2010-04-28  Xinliang David Li  <davidxl@google.com>
13726         PR c/42643
13727         * tree-ssa-uninit.c (can_skip_redundant_opnd): New function.
13728         (compute_uninit_opnds_pos): New function.
13729         (is_non_loop_exit_postdominating): New function.
13730         (compute_control_dep_chain): New function.
13731         (find_pdom): New function.
13732         (convert_control_dep_chain_into_preds): New function.
13733         (find_predicates): New function.
13734         (find_control_equiv_block): New function.
13735         (collect_phi_def_edges): New function.
13736         (find_def_preds): New function.
13737         (find_dom): New function.
13738         (dump_predicates): New function.
13739         (get_cmp_code): New function.
13740         (is_value_included_in): New function.
13741         (find_matching_predicate_in_rest_chains): New function.
13742         (use_pred_not_overlap_with_undef_path_pred): New function.
13743         (is_use_properly_guarded): New function.
13744         (normalize_cond_1): New function.
13745         (is_and_or_or): New function.
13746         (normalize_cond): New function.
13747         (is_gcond_subset_of): New function.
13748         (is_subset_of_any): New function.
13749         (is_or_set_subset_of): New function.
13750         (is_and_set_subset_of): New function.
13751         (is_norm_cond_subset_of): New function.
13752         (is_pred_expr_subset_of): New function.
13753         (is_pred_chain_subset_of): New function.
13754         (is_included_in): New function.
13755         (is_superset_of): New function.
13756         (find_uninit_use): New function.
13757         (warn_uninitialized_phi): New function.
13758         (compute_possibly_undefined_names): New function.
13759         (ssa_undefined_value_p): New function.
13760         (execute_late_warn_uninitialized): New function.
13761         * tree-ssa.c (ssa_undefined_value_p): Removed.
13762         (warn_uninit): Changed to extern.
13763         (warn_uninitialized_phi): Removed.
13764         (warn_uninitialized_vars): Changed to extern.
13765         (execute_late_warn_uninitialized): Removed
13766         * tree-flow.h: Add new prototypes.
13767         * timevar.def: Add new time variable.
13768         * Makefile.in: Add new build file.
13770 2010-04-28  Uros Bizjak  <ubizjak@gmail.com>
13772         * config/alpha/elf.h (ASM_DECLARE_OBJECT_NAME): Use gnu_unique_object
13773         type if available.
13775 2010-04-28  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
13777         PR target/22224
13778         * config/alpha/osf5.h (ASM_OUTPUT_LOCAL): Redefine.
13780 2010-04-28  Martin Jambor  <mjambor@suse.cz>
13782         * cgraph.h (struct cgraph_node): New field indirect_calls.
13783         (struct cgraph_indirect_call_info): New type.
13784         (struct cgraph_edge): Removed field indirect_call. New fields
13785         indirect_info, indirect_inlining_edge and indirect_unknown_callee.
13786         (cgraph_create_indirect_edge): Declare.
13787         (cgraph_make_edge_direct): Likewise.
13788         (enum LTO_cgraph_tags): New item LTO_cgraph_indirect_edge.
13789         * ipa-prop.h (struct ipa_param_call_note): Removed.
13790         (struct ipa_node_params): Removed field param_calls.
13791         (ipa_create_all_structures_for_iinln): Declare.
13792         * cgraph.c: Described indirect edges and uids in initial comment.
13793         (cgraph_add_edge_to_call_site_hash): New function.
13794         (cgraph_edge): Search also among the indirect edges, use
13795         cgraph_add_edge_to_call_site_hash to add edges to the call site hash.
13796         (cgraph_set_call_stmt): Possibly turn an indirect edge into a direct
13797         one, use cgraph_add_edge_to_call_site_hash to add edges to the call
13798         site hash.
13799         (initialize_inline_failed): Assign a reason to indirect edges.
13800         (cgraph_create_edge_1): New function.
13801         (cgraph_create_edge): Moved some functionality to
13802         cgraph_create_edge_1.
13803         (cgraph_create_indirect_edge): New function.
13804         (cgraph_edge_remove_callee): Add an assert checking for
13805         non-indirectness.
13806         (cgraph_edge_remove_caller): Special-case indirect edges.
13807         (cgraph_remove_edge): Likewise.
13808         (cgraph_set_edge_callee): New function.
13809         (cgraph_redirect_edge_callee): Use cgraph_set_edge_callee.
13810         (cgraph_make_edge_direct): New function.
13811         (cgraph_update_edges_for_call_stmt_node): Do nothing only when also
13812         the declaration of the call statement matches.
13813         (cgraph_node_remove_callees): Special-case indirect edges.
13814         (cgraph_clone_edge): Likewise.
13815         (cgraph_clone_node): Clone also the indirect edges.
13816         (dump_cgraph_node): Dump indirect_inlining_edge flag instead of
13817         indirect_call, dump count of indirect_calls edges.
13818         * ipa-prop.c (iinlining_processed_edges): New variable.
13819         (ipa_note_param_call): Create indirect edges instead of
13820         creating notes.  New parameter node.
13821         (ipa_analyze_call_uses): New parameter node, pass it on to
13822         ipa_note_param_call.
13823         (ipa_analyze_stmt_uses): Likewise.
13824         (ipa_analyze_params_uses): Pass node to ipa_analyze_stmt_uses.
13825         (print_edge_addition_message): Work on edges rather than on notes.
13826         (update_call_notes_after_inlining): Likewise, renamed to
13827         update_indirect_edges_after_inlining.
13828         (ipa_create_all_structures_for_iinln): New function.
13829         (ipa_free_node_params_substructures): Do not free notes.
13830         (ipa_edge_duplication_hook): Propagate bits within
13831         iinlining_processed_edges bitmap.
13832         (ipa_node_duplication_hook): Do not duplicate notes.
13833         (free_all_ipa_structures_after_ipa_cp): Renamed to
13834         ipa_free_all_structures_after_ipa_cp.
13835         (free_all_ipa_structures_after_iinln): Renamed to
13836         ipa_free_all_structures_after_iinln.
13837         (ipa_write_param_call_note): Removed.
13838         (ipa_read_param_call_note): Removed.
13839         (ipa_write_indirect_edge_info): New function.
13840         (ipa_read_indirect_edge_info): Likewise.
13841         (ipa_write_node_info): Do not stream notes, do stream information
13842         in indirect edges.
13843         (ipa_read_node_info): Likewise.
13844         (lto_ipa_fixup_call_notes): Removed.
13845         * ipa-cp.c (pass_ipa_cp): Set stmt_fixup to NULL.
13846         * ipa-inline.c (pass_ipa_inline): Likewise.
13847         * cgraphunit.c (verify_cgraph_node): Check also indirect edges.
13848         * cif-code.def (INDIRECT_UNKNOWN_CALL): New reason.
13849         * tree-inline.c (copy_bb): Removed an unnecessary double check for
13850         is_gimple_call.
13851         * tree-inline.c (get_indirect_callee_fndecl): Do not consider indirect
13852         edges.
13853         * lto-cgraph.c (output_outgoing_cgraph_edges): New function.
13854         (output_cgraph): Stream also indirect edges.
13855         (lto_output_edge): Added capability to stream indirect edges.
13856         (input_edge): Likewise.
13857         (input_cgraph_1): Likewise.
13858         * lto-streamer-in.c (fixup_call_stmt_edges_1): Fixup also statements
13859         of indirect edges.
13861 2010-04-28  Richard Guenther  <rguenther@suse.de>
13863         PR tree-optimization/43879
13864         PR tree-optimization/43909
13865         * tree-ssa-structalias.c (struct variable_info): Add
13866         only_restrict_pointers flag.
13867         (new_var_info): Initialize it.  Increment stats.total_vars here.
13868         (create_function_info_for): Do not increment stats.total_vars here.
13869         (get_function_part_constraint): Fix build with C++.
13870         (insert_into_field_list): Remove.
13871         (push_fields_onto_fieldstack): Properly merge fields.
13872         (create_variable_info_for): Split and simplify.
13873         (create_variable_info_for_1): New piece.
13874         (intra_create_variable_infos): Properly make restrict constraints
13875         from parameters.
13877 2010-04-28  Richard Guenther  <rguenther@suse.de>
13879         PR c++/43880
13880         * tree-inline.c (copy_bind_expr): Also copy bind expr vars value-exprs.
13882 2010-04-27  Manuel López-Ibáñez  <manu@gcc.gnu.org>
13883             Jan Hubicka  <hubicka@ucw.cz>
13885         * doc/invoke.texi (-Wsuggest-attribute=const,
13886         -Wsuggest-attribute=pure): Document.
13887         * ipa-pure-const.c: Include toplev.h, intl.h and opts.h.
13888         (function_always_visible_to_compiler_p,
13889         suggest_attribute, warn_function_pure, warn_function_const):
13890         New functions.
13891         (check_call): Improve debug info.
13892         (analyze_function): Do not check availability.
13893         (add_new_function): Check availability.
13894         (propagate): Output warnings.
13895         (skip_function_for_local_pure_const): New function.
13896         (local_pure_const): Use it; output warnings.
13897         * common.opt (Wsuggest-attribute=const,
13898         Wsuggest-attribute=pure): New.
13900 2010-04-27  Jakub Jelinek  <jakub@redhat.com>
13902         * dwarf2out.c (def_cfa_1): After DW_CFA_def_cfa_expression
13903         force using DW_CFA_def_cfa instead of DW_CFA_def_cfa_register
13904         or DW_CFA_def_cfa_offset{,_sf}.
13906 2010-04-27  Eric Botcazou  <ebotcazou@adacore.com>
13908         * tree.h: Fix truncated long macros.
13910 2010-04-27  Kai Tietz  <kai.tietz@onevision.com>
13912         * collect2.c (TARGET_64BIT): Redefine to target's default.
13913         * tlink.c: Likewise.
13914         * config/i386/cygming.h (USER_LABEL_PREFIX): Define
13915         dependent to TARGET_64BIT and USE_MINGW64_LEADING_UNDERSCORES.
13916         * config/i386/i386.h (CRT_CALL_STATIC_FUNCTION): Use
13917         for underscoring __USER_LABEL_PREFIX__.
13918         * config/i386/mingw-w64.h (SUB_LINK_ENTRY): New macro.
13919         (SUB_LINK_ENTRY32): New.
13920         (SUB_LINK_ENTRY64): New.
13921         (LINK_SPEC): Replace entry point spec by SUB_LINK_ENTRY.
13922         * config/i386/mingw32 (SUB_LINK_ENTRY32): New.
13923         (SUB_LINK_ENTRY64): New.
13924         (SUB_LINK_ENTRY): New.
13925         (LINK_SPEC): Use SUB_LINK_ENTRY instead of hard-coded entry-point.
13926         (DWARF2_UNWIND_INFO): Error out for use of dw2 unwind when
13927         x64 target is choosen.
13928         * config.in (USE_MINGW64_LEADING_UNDERSCORES): New.
13929         * configure: Regenerated.
13930         * configure.ac (leading-mingw64-underscores): Option added.
13932 2010-04-27  Jan Hubicka  <jh@suse.cz>
13934         * doc/invoke.texi (-fipa-profile): Document.
13935         * opts.c (decode_options): Enable ipa-profile at -O1.
13936         * timevar.def (TV_IPA_PROFILE): Define.
13937         * common.opt (fipa-profile): Add.
13938         * cgraph.c (cgraph_clone_node): Set local flag and clear vtable method
13939         flag for clones.
13940         (cgraph_propagate_frequency): Handle only local ones.
13941         * tree-pass.h (pass_ipa_profile): Declare.
13942         * ipa-profile.c (gate_profile): Use flag_ipa_profile.
13943         (pass_ipa_profile): Use TV_IPA_PROFILE.
13944         * ipa.c (ipa_profile): New function.
13945         (gate_ipa_profile): Likewise.
13946         (pass_ipa_profile): New global variable.
13947         * passes.c (pass_ipa_profile): New.
13949 2010-04-27  Nathan Froyd  <froydnj@codesourcery.com>
13951         * config/arm/arm.c (arm_expand_builtin): Remove redundant declaration.
13953 2010-04-27  Martin Jambor  <mjambor@suse.cz>
13955         PR middle-end/43812
13956         * ipa.c (dissolve_same_comdat_group_list): New function.
13957         (function_and_variable_visibility): Call
13958         dissolve_same_comdat_group_list when comdat group contains external or
13959         newly local nodes.
13960         * cgraphunit.c (verify_cgraph_node): Verify that same_comdat_group
13961         lists are circular and that they contain only DECL_ONE_ONLY nodes.
13963 2010-04-27  Eric Botcazou  <ebotcazou@adacore.com>
13965         * varasm.c (decode_addr_const): Handle special case of INDIRECT_REF.
13966         (const_hash_1) <VECTOR_CST>: New case.
13967         (compare_constant) <VECTOR_CST>: Likewise.
13968         <ADDR_EXPR>: Deal with LABEL_REFs.
13969         (copy_constant) <VECTOR_CST>: New case.
13971 2010-04-27  Jan Hubicka  <jh@suse.cz>
13973         * cgraph.c (cgraph_propagate_frequency): New function.
13974         * cgraph.h (cgraph_propagate_frequency): Declare.
13975         * ipa-inline.c (cgraph_clone_inlined_nodes): Call
13976         cgraph_propagate_frequency.
13978 2010-04-27  Jakub Jelinek  <jakub@redhat.com>
13980         * unwind-dw2.c (_Unwind_DebugHook): Add used and noclone attributes.
13982 2010-04-27  Bernd Schmidt  <bernds@codesourcery.com>
13984         PR target/40657
13985         * config/arm/arm.c (thumb1_extra_regs_pushed): New function.
13986         (thumb1_expand_prologue, thumb1_output_function_prologue): Call it
13987         here to determine which regs to push and how much stack to reserve.
13989 2010-04-27  Jie Zhang  <jie@codesourcery.com>
13991         * doc/gimple.texi (gimple_statement_with_ops): Remove
13992         addresses_taken field.
13993         (gimple_statement_with_memory_ops): Likewise.
13995 2010-04-27  Jan Hubicka  <jh@suse.cz>
13997         * tree-inline.c (eni_inlining_weights): Remove.
13998         (estimate_num_insns): Special case more builtins.
14000 2010-04-27  Shujing Zhao  <pearly.zhao@oracle.com>
14002         PR c/32207
14003         * c-typeck.c (build_binary_op): Move forward check for comparison
14004         pointer with null pointer constant and adjust the diagnostic message.
14006 2010-04-27  Dave Korn  <dave.korn.cygwin@gmail.com>
14008         PR lto/42776
14009         * configure.ac (gcc_cv_as_section_has_align): Set if installed
14010         binutils supports extended .section directive needed by LTO, or
14011         warn if older binutils found.
14012         (LTO_BINARY_READER): New AC_SUBST'd variable.
14013         (LTO_USE_LIBELF): Likewise.
14014         * gcc/config.gcc (lto_binary_reader): New target-specific configure
14015         variable.
14016         * gcc/Makefile.in (LTO_BINARY_READER): Import AC_SUBST'd autoconf var.
14017         (LTO_USE_LIBELF): Likewise.
14018         * configure: Regenerate.
14020         * collect2.c (is_elf): Rename from this ...
14021         (is_elf_or_coff): ... to this, and recognize and allow i386 COFF
14022          object files in addition to ELF-formatted ones.
14023         (scan_prog_file): Caller updated.  Also allow for LTO info marker
14024         symbol to be prefixed or not by an extra underscore.
14026         * config/i386/t-cygming (winnt.o): Also depend on LTO_STREAMER_H.
14027         * config/i386/winnt.c: Also #include lto-streamer.h
14028         (i386_pe_asm_named_section): Specify 1-byte section alignment for
14029         LTO named sections.
14030         (i386_pe_asm_output_aligned_decl_common): Add comment.
14031         (i386_pe_maybe_record_exported_symbol): Allow decl arg to be NULL.
14033 2010-04-27  Hans-Peter Nilsson  <hp@bitrange.com>
14035         PR target/43889
14036         * config/mmix/mmix.md ("*divdi3_nonknuth", "*moddi3_nonknuth"):
14037         Add missing earlyclobber for second alternative.
14039 2010-04-26  Bernd Schmidt  <bernds@codesourcery.com>
14041         * df-problems.c (df_simulate_initialize_forwards): Set, don't clear,
14042         bits for artificial defs at the top of the block.
14043         * fwprop.c (single_def_use_enter_block): Don't call it.
14045 2010-04-26  Jack Howarth  <howarth@bromo.med.uc.edu>
14047         PR 43715
14048         * gcc/configure.ac: Use "$gcc_cv_nm -g" on darwin
14049         instead of "$gcc_cv_objdump -T".
14050         Use "-undefined dynamic_lookup" on darwin.
14051         * gcc/configure: Regenerate.
14053 2010-04-26  Jakub Jelinek  <jakub@redhat.com>
14055         PR c/43893
14056         * c-omp.c (c_finish_omp_for): Handle also EQ_EXPR.
14058 2010-04-26  Nathan Froyd  <froydnj@codesourcery.com>
14060         * c-parser.c (struct c_token): Move location field up.
14061         * c-tree.h (struct c_typespec): Move expr_const_operands field up.
14062         (struct c_declspecs): Convert typespec_word, storage_class, and
14063         default_int_p into bitfields.
14064         (struct c_declarator): Move loc field up.
14066 2010-04-26  Nathan Froyd  <froydnj@codesourcery.com>
14068         * cfgloop.h (struct loop): Move can_be_parallel field up.
14069         * ipa-prop.h (struct ip_node_params): Move bitfields up.
14070         * tree-ssa-loop-ivopts.c (struct version_info): Move inv_id field
14071         down.
14072         (struct iv_cand): Convert pos field into a bitfield.
14073         * tree-vectorizer.h (struct _loop_vec_info): Move loop_line_number
14074         field up.
14075         (struct _stmt_vec_info): Shuffle fields for better packing.
14077 2010-04-26  Eric Botcazou  <ebotcazou@adacore.com>
14079         * varasm.c (IN_NAMED_SECTION): Remove guard.
14080         * config/arm/unknown-elf.h (IN_NAMED_SECTION): Rename to...
14081         (IN_NAMED_SECTION_P): ...this.
14082         (ASM_OUTPUT_ALIGNED_BSS): Adjust for above renaming.
14083         (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Likewise.
14085 2010-04-26  Eric Botcazou  <ebotcazou@adacore.com>
14087         * gimplify.c (gimplify_cond_expr): Use THEN_ and ELSE_ local variables.
14088         Use VOID_TYPE_P for all void type tests.  Adjust TYPE variable instead
14089         of shadowing it.  Fix comments.
14091 2010-04-26  Jan Hubicka  <jh@suse.cz>
14093         * cgraph.c (cgraph_create_node): Set node frequency to normal.
14094         (cgraph_clone_node): Copy function frequency.
14095         * cgraph.h (node_frequency): New enum
14096         (struct cgraph_node): Add.
14097         * final.c (rest_of_clean_state): Update.
14098         * lto-cgraph.c (lto_output_node): Output node frequency.
14099         (input_overwrite_node): Input node frequency.
14100         * tre-ssa-loop-ivopts (computation_cost): Update.
14101         * lto-streamer-out.c (output_function): Do not output function
14102         frequency.
14103         * predict.c (maybe_hot_frequency_p): Update and handle functions
14104         executed once.
14105         (cgraph_maybe_hot_edge_p): Likewise; use cgraph frequency instead of
14106         attribute lookup.
14107         (probably_never_executed_bb_p, optimize_function_for_size_p): Update.
14108         (compute_function_frequency): Set noreturn functions to be executed
14109         once.
14110         (choose_function_section): Update.
14111         * lto-streamer-in.c (input_function): Do not input function frequency.
14112         * function.c (allocate_struct_function): Do not initialize function
14113         frequency.
14114         * function.h (function_frequency): Remove.
14115         (struct function): Remove function frequency.
14116         * ipa-profile.c (CGRAPH_NODE_FREQUENCY): Remove.
14117         (try_update): Update.
14118         * tree-inline.c (initialize_cfun): Do not update function frequency.
14119         * passes.c (pass_init_dump_file): Update.
14120         * i386.c (ix86_compute_frame_layout): Update.
14121         (ix86_pad_returns): Update.
14123 2010-04-26  Jie Zhang  <jie@codesourcery.com>
14125         PR tree-optimization/43833
14126         * tree-vrp.c (range_int_cst_p): New.
14127         (range_int_cst_singleton_p): New.
14128         (extract_range_from_binary_expr): Optimize BIT_AND_EXPR case
14129         when both operands are constants.  Use range_int_cst_p in
14130         BIT_IOR_EXPR case.
14132 2010-04-26  Jan Hubicka  <jh@suse.cz>
14134         * cgraphunit.c (cgraph_copy_node_for_versioning): Fix profile updating.
14136 2010-04-26  Richard Guenther  <rguenther@suse.de>
14138         PR lto/43080
14139         * gimple.c (gimple_decl_printable_name): Deal gracefully
14140         with a NULL DECL_NAME.
14142 2010-04-26  Richard Guenther  <rguenther@suse.de>
14144         PR lto/42425
14145         * tree.c (free_lang_data_in_type): Do not free TYPE_CONTEXT
14146         if emitting debug information and it is either a function
14147         or a namespace decl.
14149 2010-04-26  Ira Rosen  <irar@il.ibm.com>
14151         * tree-vectorizer.h (struct _stmt_vec_info): Add new field to
14152         determine if the statement is vectorizable, and a macro to access it.
14153         * tree-vect-data-refs.c (vect_analyze_data_ref_dependence):
14154         Skip statements that can't be vectorized. If the analysis fails,
14155         mark the statement as unvectorizable if vectorizing basic block.
14156         (vect_compute_data_refs_alignment): Likewise.
14157         (vect_verify_datarefs_alignment): Skip statements marked as
14158         unvectorizable. Add print.
14159         (vect_analyze_group_access): Skip statements that can't be
14160         vectorized. If the analysis fails, mark the statement as
14161         unvectorizable if vectorizing basic block.
14162         (vect_analyze_data_ref_accesses, vect_analyze_data_refs): Likewise.
14163         * tree-vect-stmts.c (vectorizable_store): Fix the number of
14164         generated stmts for SLP.
14165         (new_stmt_vec_info): Initialize the new field.
14166         * tree-vect-slp.c (vect_build_slp_tree): Fail to vectorize
14167         statements marked as unvectorizable.
14169 2010-04-25  Joseph Myers  <joseph@codesourcery.com>
14171         * c-common.c (flag_isoc1x): New.
14172         (flag_isoc99): Update comment.
14173         * c-common.h (flag_isoc1x): New.
14174         (flag_isoc99): Update comment.
14175         * c-cppbuiltin.c (builtin_define_float_constants): Also define
14176         __<type>_DECIMAL_DIG__.
14177         * c-opts.c (set_std_c1x): New.
14178         (c_common_handle_option): Handle -std=c1x and -std=gnu1x.
14179         (set_std_c89, set_std_c99): Also set flag_isoc1x to 0.
14180         * c.opt (-std=c1x, -std=gnu1x): New options.
14181         * doc/cpp.texi: Mention -std=c1x.
14182         * doc/cppopts.texi (-std=c1x, -std=gnu1x): Document.
14183         * doc/extend.texi: Mention -std=c1x and -std=gnu1x.
14184         * doc/invoke.texi (-std=c1x, -std=gnu1x): Document.
14185         * doc/standards.texi: Mention C1X.
14186         * ginclude/float.h (FLT_DECIMAL_DIG, DBL_DECIMAL_DIG,
14187         LDBL_DECIMAL_DIG, FLT_HAS_SUBNORM, DBL_HAS_SUBNORM,
14188         LDBL_HAS_SUBNORM, FLT_TRUE_MIN, DBL_TRUE_MIN, LDBL_TRUE_MIN):
14189         Define for C1X.
14191 2010-04-25  Uros Bizjak  <ubizjak@gmail.com>
14193         * config/i386/gmon-sol2.c (_mcleanup): Change format string
14194         placeholder from 0x%x to %#x.
14195         * config/i386/i386elf.h (ASM_OUTPUT_ASCII): Ditto.
14196         * config/i386/i386-interix.h (ASM_OUTPUT_ASCII): Ditto.
14197         * config/i386/att.h (ASM_OUTPUT_ASCII): Ditto.
14198         * config/i386/sysv4.h (ASM_OUTPUT_ASCII): Ditto.
14199         * config/i386/i386.c (ix86_target_string): Ditto.
14200         (output_pic_addr_const): Ditto.
14201         (print_operand): Ditto.
14203 2010-04-25  Paolo Bonzini  <bonzini@gnu.org>
14205         * combine.c (find_split_point): Add third argument.  Use it
14206         to find nested multiply-accumulate instructions.  Adjust calls.
14207         (try_combine): Adjust call to find_split_point.
14209 2010-04-24  Gerald Pfeifer  <gerald@pfeifer.com>
14211         * doc/contrib.texi (Contributors): Add Dodji Seketeli.
14213 2010-04-24  Bernd Schmidt  <bernds@codesourcery.com>
14215         PR tree-optimization/41442
14216         * fold-const.c (merge_truthop_with_opposite_arm): New function.
14217         (fold_binary_loc): Call it.
14219 2010-04-23  Manuel López-Ibáñez  <manu@gcc.gnu.org>
14221         * toplev.c (general_init): Set default for fdiagnostics-show-option.
14222         * opts.c (common_handle_option): Allow disabling it.
14223         * common.opt (fdiagnostics-show-option): Add Var. Enabled by default.
14225 2010-04-23  Eric Botcazou  <ebotcazou@adacore.com>
14227         * expr.c (expand_expr_real_1) <VIEW_CONVERT_EXPR>: Only use conversion
14228         between modes if both types are integral.
14230 2010-04-23  Richard Guenther  <rguenther@suse.de>
14232         PR tree-optimization/43572
14233         * tree-tailcall.c (find_tail_calls): Allow PARM_DECL uses.
14235 2010-04-23  Richard Guenther  <rguenther@suse.de>
14237         PR lto/43455
14238         * tree-inline.c (tree_can_inline_p): Also check compatibility
14239         of return types.
14241 2010-04-23  Martin Jambor  <mjambor@suse.cz>
14243         PR tree-optimization/43846
14244         * tree-sra.c (struct access): New flag grp_assignment_read.
14245         (build_accesses_from_assign): Set grp_assignment_read.
14246         (sort_and_splice_var_accesses): Propagate grp_assignment_read.
14247         (enum mark_read_status): New type.
14248         (analyze_access_subtree): Propagate grp_assignment_read, create
14249         accesses also if both direct_read and root->grp_assignment_read.
14251 2010-04-23  Martin Jambor  <mjambor@suse.cz>
14253         PR middle-end/43835
14254         * tree-sra.c (ipa_sra_preliminary_function_checks): Check that the
14255         function does not have type attributes.
14257 2010-04-23  Richard Guenther  <rguenther@suse.de>
14259         PR lto/42653
14260         * tree.c (free_lang_data_in_decl): Do not reset DECL_CONTEXT
14261         of FUNCTION_DECLs.
14263 2010-04-22  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
14265         * sese.h (create_if_region_on_edge): Remove.
14267         * sese.c (create_if_region_on_edge): Make static.
14269         * tree-inline.c: Do not include ggc.h.
14271         * expr.c: Do not include ggc.h.
14273         * Makefile.in (tree-inline.o, expr.o): Remove $(GGC_H) from
14274         dependencies.
14276 2010-04-22  Kaz Kojima  <kkojima@gcc.gnu.org>
14278         PR target/43744
14279         * config/sh/sh.c (find_barrier): Don't emit a constant pool
14280         in the middle of insns for casesi_worker_2.
14282 2010-04-22  David Edelsohn  <edelsohn@gnu.org>
14284         * config/rs6000/x-aix: Override LDFLAGS for all COMPILERS.
14286 2010-04-22  Ira Rosen  <irar@il.ibm.com>
14288         PR tree-optimization/43842
14289         * tree-vect-loop.c (vect_create_epilog_for_reduction): Handle
14290         loop unrolling in update of exit phis. Fix comment.
14291         * tree-vect-slp.c (vect_analyze_slp): Check that there are at
14292         least two reduction statements in the loop before starting SLP
14293         analysis.
14295 2010-04-22  Nick Clifton  <nickc@redhat.com>
14297         * config/stormy16/stormy16-lib2.c (__ucmpsi2): Fix thinko.
14299 2010-04-22  Alexander Monakov  <amonakov@ispras.ru>
14301         * tree-ssa-reassoc.c (eliminate_plus_minus_pair): Handle BIT_NOT_EXPR
14302         to simplify a + ~a.
14304 2010-04-22  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
14306         * tree-parloops.c (loop_parallel_p): New argument
14307         parloop_obstack.  Pass it down.
14308         (parallelize_loops): New variable parloop_obstack.  Initialize it,
14309         pass it down, free it.
14311         * tree-loop-linear.c (linear_transform_loops): Pass down
14312         lambda_obstack.
14314         * tree-data-ref.h (lambda_compute_access_matrices): New argument
14315         of type struct obstack *.
14317         * tree-data-ref.c (analyze_subscript_affine_affine): New variable
14318         scratch_obstack.  Initialize it, pass down, free it.
14320         * lambda.h (lambda_loop_new): Remove.
14321         (lambda_matrix_new, lambda_matrix_inverse)
14322         (lambda_trans_matrix_new, lambda_trans_matrix_inverse): New
14323         argument of type struct obstack *.
14325         * lambda-trans.c (lambda_trans_matrix_new): New argument
14326         lambda_obstack.  Pass it down, use obstack allocation for ret.
14327         (lambda_trans_matrix_inverse): New argument lambda_obstack.  Pass
14328         it down.
14330         * lambda-mat.c (lambda_matrix_get_column)
14331         (lambda_matrix_project_to_null): Remove.
14332         (lambda_matrix_new): New argument lambda_obstack.  Use obstack
14333         allocation for mat.
14334         (lambda_matrix_inverse_hard, lambda_matrix_inverse): New argument
14335         lambda_obstack.
14337         * lambda-code.c (lambda_loop_new): New function.
14338         (lambda_lattice_new, compute_nest_using_fourier_motzkin)
14339         (lambda_compute_auxillary_space, lambda_compute_target_space)
14340         (lambda_loopnest_transform, gcc_loop_to_lambda_loop)
14341         (lambda_loopnest_to_gcc_loopnest): Pass down lambda_obstack.
14342         (build_access_matrix): New argument lambda_obstack.  Use obstack
14343         allocation for am.
14344         (lambda_compute_step_signs, lambda_compute_access_matrices): New
14345         argument lambda_obstack.  Pass it down.
14347 2010-04-22  Bernd Schmidt  <bernds@codesourcery.com>
14349         * optabs.h (expand_widening_mult): Declare.
14351 2010-04-22  Richard Guenther  <rguenther@suse.de>
14353         PR tree-optimization/43845
14354         * tree-ssa-pre.c (create_component_ref_by_pieces_1): Properly
14355         lookup the CALL_EXPR function and arguments.
14357 2010-04-22  Nick Clifton  <nickc@redhat.com>
14359         * config/stormy16/stormy16.c
14360         (xstormy16_asm_output_aligned_common): Handle a NULL decl parameter.
14361         * config/stormy16/stormy16.h: Tidy up formatting.
14362         (DONT_USE_BUILTIN_SETJMP): Remove definition.
14363         * config/stormy16/stormy16.c (cbranchsi4): Delete pattern.
14364         (ineqbranchsi): Delete pattern.
14365         * config/stormy16/stormy16-lib2-ucmpsi2.c: New file.
14366         * config/stormy16/stormy16-lib2.c (__ucmpsi2): New function.
14367         * config/stormy16/t-stormy16 (LIB2FUNCS_EXTRA): Add
14368         stormy16-lib2-ucmpsi2.c.
14370 2010-04-22  Bernd Schmidt  <bernds@codesourcery.com>
14372         * ifcvt.c (dead_or_predicable): Use df_simulate_find_defs and
14373         df_simulate_find_noclobber_defs as appropriate.  Keep track of an
14374         extra set merge_set_noclobber, and use it to relax the final test
14375         slightly.
14376         * df.h (df_simulate_find_noclobber_defs): Declare.
14377         * df-problems.c (df_simulate_find_defs): Don't ignore partial or
14378         conditional defs.
14379         (df_simulate_find_noclobber_defs): New function.
14381 2010-04-22  Uros Bizjak  <ubizjak@gmail.com>
14383         * config/i386/i386.md: Use {} around multi-line preparation statements.
14385 2010-04-22  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
14387         * c-tree.h (push_init_level, pop_init_level, set_init_index)
14388         (process_init_element): New argument of type struct obstack *.
14390         * c-typeck.c (push_init_level, pop_init_level, set_designator)
14391         (set_init_index, set_init_label, set_nonincremental_init)
14392         (set_nonincremental_init_from_string, find_init_member)
14393         (output_init_element, output_pending_init_elements)
14394         (process_init_element): New argument braced_init_obstack.  Pass it
14395         down.
14396         (push_range_stack, add_pending_init): New argument
14397         braced_init_obstack.  Use obstack allocation.
14399         * c-parser.c (c_parser_initelt, c_parser_initval): New argument
14400         braced_init_obstack.  Pass it down.
14401         (c_parser_braced_init): New variables ret, braced_init_obstack.
14402         Initialize obstack, pass it down and finally free it.
14404 2010-04-22  Bernd Schmidt  <bernds@codesourcery.com>
14406         PR middle-end/29274
14407         * tree-pass.h (pass_optimize_widening_mul): Declare.
14408         * tree-ssa-math-opts.c (execute_optimize_widening_mul,
14409         gate_optimize_widening_mul): New static functions.
14410         (pass_optimize_widening_mul): New.
14411         * expr.c (expand_expr_real_2) <case WIDEN_MULT_EXPR>: New case.
14412         <case MULT_EXPR>: Remove support for widening multiplies.
14413         * tree.def (WIDEN_MULT_EXPR): Tweak comment.
14414         * cfgexpand.c (expand_debug_expr) <case WIDEN_MULT_EXPR>: Use
14415         simplify_gen_unary rather than directly building extensions.
14416         * tree-cfg.c (verify_gimple_assign_binary): Add tests for
14417         WIDEN_MULT_EXPR.
14418         * expmed.c (expand_widening_mult): New function.
14419         * passes.c (init_optimization_passes): Add pass_optimize_widening_mul.
14421 2010-04-21  Jan Hubicka  <jh@suse.cz>
14423         * timevar.def (TV_WHOPR_WPA_FIXUP): Remove.
14424         * lto-section-in.c (lto_section_name): Remove wpa_fixup.
14425         * lto-wpa-fixup.c: Remove.
14426         * Makefile.in (lto-wpa-fixup.o): Remove.
14427         * passes.c (init_optimization_passes): Remove pass_ipa_lto_wpa_fixup.
14428         (execute_all_ipa_transforms): Set cgraph_state to CGRAPH_STATE_IPA_SSA.
14429         * lto-streamer.c (lto_get_section_name): Remove wpa_fixup section.
14431 2010-04-21  Jan Hubicka  <jh@suse.cz>
14433         * tree-pass.h (ipa_opt_pass_d): Rename function_read_summary;
14434         add write_optimization_summary, read_optimization_summary.
14435         (ipa_write_summaries_of_cgraph_node_set): Remove.
14436         (ipa_write_optimization_summaries): Declare.
14437         (ipa_read_optimization_summaries): Declare.
14438         * ipa-cp.c (pass_ipa_cp): Update.
14439         * ipa-reference.c (pass_ipa_reference): Update.
14440         * ipa-pure-const.c (pass_ipa_pure_const): Update.
14441         * lto-streamer-out.c (pass_ipa_lto_gimple, pass_ipa_lto_finish):
14442         Update.
14443         * ipa-inline.c (pass_ipa_inline): Update.
14444         * ipa.c (pass_ipa_whole_program): Update.
14445         * lto-wpa-fixup.c (pass_ipa_lto_wpa_fixup): Update.
14446         * passes.c (ipa_write_summaries_1): Do not test wpa.
14447         (ipa_write_optimization_summaries_1): New.
14448         (ipa_write_optimization_summaries): New.
14449         (ipa_read_summaries): Do not test ltrans.
14450         (ipa_read_optimization_summaries_1): New.
14451         (ipa_read_optimization_summaries): New.
14453 2010-04-21  Jan Hubicka  <jh@suse.cz>
14455         * lto-cgraph.c (lto_output_node): Do not output comdat groups
14456         for boundary nodes.
14457         (output_cgraph): Do not arrange comdat groups for boundary nodes.
14459 2010-04-21  Jakub Jelinek  <jakub@redhat.com>
14461         PR debug/40040
14462         * dwarf2out.c (add_name_and_src_coords_attributes): Add
14463         DW_AT_{,MIPS_}linkage_name even for Fortran decls.
14465 2010-04-21  Jan Hubicka  <jh@suse.cz>
14467         * ipa-prop.c (ipa_edge_removal_hook): Check for bounds.
14469 2010-04-21  Jan Hubicka  <jh@suse.cz>
14471         * varpool.c (decide_is_variable_needed): Variable is always needed
14472         during ltrans.
14474 2010-04-21  Jan Hubicka  <jh@suse.cz>
14476         * opts.c (decode_options): Enable pure-const pass for whopr.
14478 2010-04-21  Jan Hubicka  <jh@suse.cz>
14480         * cgraph.c (dump_cgraph_node): Dump also assembler name.
14481         * ipa-inline.c (cgraph_decide_inlining_of_small_functions): Do not ice
14482         at WPA dumping.
14483         (cgraph_decide_inlining): Do not expect callee to be removed in all
14484         cases.
14486 2010-04-21  Eric B. Weddington  <eric.weddington@atmel.com>
14488         * config/avr/avr-devices.c (avr_mcu_types): Add missing comma.
14490 2010-04-21  Uros Bizjak  <ubizjak@gmail.com>
14492         * config/i386/i386.md (x86_shrd): Add athlon_decode and
14493         amdfam10_decode attributes.
14495 2010-04-21  Jakub Jelinek  <jakub@redhat.com>
14497         PR middle-end/43570
14498         * omp-low.c (scan_sharing_clauses): Don't scan_omp_op
14499         OMP_CLAUSE_DECL for OMP_CLAUSE_COPYPRIVATE.
14500         (lower_copyprivate_clauses): Use private var in outer
14501         context instead of original var.  Make sure the types
14502         are correct for VLAs.
14504 2010-04-21  Richard Guenther  <rguenther@suse.de>
14506         * tree-ssa-structalias.c (do_ds_constraint): Avoid escaping
14507         to non-pointer objects.
14509 2010-04-21  Jakub Jelinek  <jakub@redhat.com>
14511         * dwarf2out.c (add_var_loc_to_decl): Add LABEL argument.  Drop
14512         last chain entry if it starts with the still current label.
14513         (add_location_or_const_value_attribute): Check that
14514         loc_list->first->next is NULL instead of comparing ->first with ->last.
14515         (dwarf2out_var_location): Pass last_label resp. last_postcall_label
14516         to add_var_loc_to_decl.
14518         * dwarf2out.c (output_call_frame_info): For dw_cie_version
14519         >= 4 add also address size and segment size fields into CIE header.
14521         * unwind-dw2.c (extract_cie_info): Handle CIE version 4, as
14522         long as address size is the same as sizeof (void *) and
14523         segment size is 0.
14524         * unwind-dw2-fde.c (get_cie_encoding): Likewise.  If
14525         address size or segment size is unexpected, return DW_EH_PE_omit.
14526         (classify_object_over_fdes): If get_cie_encoding returned
14527         DW_EH_PE_omit, return -1.
14528         (init_object): If classify_object_over_fdes returned -1,
14529         pretend there were no FDEs at all.
14531 2010-04-21  Uros Bizjak  <ubizjak@gmail.com>
14533         * config/i386/i386.md (bswap<mode>2): Macroize expander from
14534         bswap{si,di}2 using SWI48 mode iterator.
14535         (*bswap<mode>2_movbe): Macroize insn from *bswap{si,di}_movbe using
14536         SWI48 mode iterator.  Set type attribute of bswap insn to bitmanip,
14537         set modrm attribute of bswap insn to 0 and remove length attribute.
14538         (*bswap<mode>2_1): Macroize insn from *bswap{si,di}_1 using SWI48 mode
14539         iterator.  Set type attribute to bitmanip, set modrm attribute to 0,
14540         set mode attribute to <MODE> and remove length attribute.
14542 2010-04-20  James E. Wilson  <wilson@codesourcery.com>
14544         PR rtl-optimization/43520
14545         * ira-lives.c (ira_implicitly_set_insn_hard_regs): Exclude classes with
14546         zero available registers.
14548 2010-04-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14550         * builtins.c (fold_builtin_cproj): Fold more cases.
14552 2010-04-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14554         * builtins.c (build_complex_cproj, fold_builtin_cproj): New.
14555         (fold_builtin_1): Fold builtin cproj.
14556         * builtins.def (BUILT_IN_CPROJ, BUILT_IN_CPROJF, BUILT_IN_CPROJL):
14557         Use ATTR_CONST_NOTHROW_LIST.
14559 2010-04-20  Uros Bizjak  <ubizjak@gmail.com>
14561         * config/i386/i386.md (ffs<mode>2): Macroize expander from ffs_cmove
14562         and ffsdi2 using SWI48 mode iterator.  Expand SImode insn through
14563         ffsi2_no_cmove for !TARGET_CMOVE.
14564         (ffssi2_no_cmove): Rename from *ffs_no_cmove.  Make public.
14565         (ffssi2): Remove expander.
14566         (*ffs<mode>_1): Macroize insn from *ffs{si,di} using SWI48
14567         mode iterator.
14568         (ctz<mode>2): Ditto from ctz{si,di}2.
14569         (clz<mode>2): Macroize expander from ctz{hi,si,di}2 using SWI248
14570         mode iterator.
14571         (clz<mode>2_abm): Macroize insn from clz{hi,si,di}2_abm using SWI248
14572         mode iterator.
14574 2010-04-20  Jakub Jelinek  <jakub@redhat.com>
14576         * dwarf2out.c (AT_linkage_name): Define.
14577         (clone_as_declaration): Handle DW_AT_linkage_name.
14578         (add_name_and_src_coords_attributes): Use AT_linkage_name instead
14579         of DW_AT_MIPS_linkage_name.
14580         (move_linkage_attr): Likewise.
14581         (dwarf2out_finish): Likewise.
14583 2010-04-20  Xinliang David Li  <davidxl@gcc.gnu.org>
14585         PR middle-end/41952
14586         * fold-const.c (fold_comparison): New folding rule.
14588 2010-04-20  Anatoly Sokolov  <aesok@post.ru>
14590         * double-int.h (double_int_setbit): Declare.
14591         * double-int.c (double_int_setbit): New function.
14592         * rtl.h (immed_double_int_const): Declare.
14593         * emit-rtl.c (immed_double_int_const): New function.
14594         * builtins.c (expand_builtin_signbit): Clean up, use double_int_*
14595         and immed_double_int_const functions.
14596         * optabs.c (expand_absneg_bit, expand_copysign_absneg,
14597         expand_copysign_bit): (Ditto.).
14598         * simplify-rtx.c (simplify_binary_operation_1): (Ditto.).
14599         * tree-ssa-address.c (addr_for_mem_ref): (Ditto.).
14600         * dojump.c (prefer_and_bit_test): (Ditto.).
14601         * expr.c (convert_modes, reduce_to_bit_field_precision,
14602         const_vector_from_tree): (Ditto.).
14603         * expmed.c (mask_rtx, lshift_value): (Ditto.).
14605 2010-04-20  Jan Hubicka  <jh@suse.cz>
14607         * cgraph.c (cgraph_remove_node): Kill bodies in other partitoin.
14608         (dump_cgraph_node): Dump new flags.
14609         * cgraph.h (struct cgraph_node): Add flags
14610         reachable_from_other_partition and in_other_partition.
14611         (cgraph_can_remove_if_no_direct_calls_p): Functions used by
14612         other partition can not be removed.
14613         * cgraphunit.c (cgraph_mark_functions_to_output): Functions used by
14614         the other partition must be output; silence sanity checking on
14615         leaking functions bodies from other paritition.
14616         * lto-cgraph.c (reachable_from_other_partition_p): New function.
14617         (lto_output_node): Output new flags; do not sanity check that inline
14618         clones are output; drop lto_forced_extern_inline_p code; do not mock
14619         visibility flags at partition boundaries.
14620         (add_node_to): New function.
14621         (output_cgraph): Use it to sort functions so masters appear before
14622         clones.
14623         (input_overwrite_node): Input new flags.
14624         * passes.c (ipa_write_summaries): Do not call
14625         lto_new_extern_inline_states.
14626         * lto-section-out.c (forced_extern_inline,
14627         lto_new_extern_inline_states lto_delete_extern_inline_states,
14628         lto_force_functions_extern_inline, lto_forced_extern_inline_p): Kill.
14629         * lto-streamer.h (lto_new_extern_inline_states,
14630         * lto_delete_extern_inline_states, lto_force_functions_extern_inline,
14631         lto_forced_extern_inline_p): Kill.
14633 2010-04-20  Richard Guenther  <rguenther@suse.de>
14635         * tree-ssa-structalias.c (do_sd_constraint): Add edges only
14636         from vars that can have pointers.
14637         (process_constraint): Dump useless constraints.
14639 2010-04-20  Richard Guenther  <rguenther@suse.de>
14641         * tree-ssa-structalias.c (do_structure_copy): Properly handle DEREF.
14642         (dump_sa_points_to_info): Remove asserts.
14643         (init_base_vars): nothing_id isn't an escape point nor does it
14644         have pointers.
14646 2010-04-20  Jakub Jelinek  <jakub@redhat.com>
14648         * tree.h (TYPE_REF_IS_RVALUE): Define.
14649         * dwarf2out.c (attr_checksum_ordered, is_type_die, is_comdat_die,
14650         should_move_die_to_comdat, prune_unused_types_walk): Handle
14651         DW_TAG_rvalue_reference_type like DW_TAG_reference_type.
14652         (modified_type_die, gen_reference_type_die): Emit
14653         DW_TAG_rvalue_reference_type instead of DW_TAG_reference_type
14654         if TYPE_REF_IS_RVALUE and -gdwarf-4.
14656 2010-04-20  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
14658         PR target/43635
14659         * config/s390/s390.c (s390_emit_call): Turn direct into indirect
14660         calls for -fpic -m31 if they have been sibcall optimized.
14662 2010-04-19  James E. Wilson  <wilson@codesourcery.com>
14664         * config/ia64/ia64.h (FIXED_REGISTERS, CALL_USED_REGISTERS): Make
14665         ar.lc fixed and call-used.
14667         * config/ia64/ia64.c (TARGET_INVALID_WITHIN_DOLOOP): Define.
14669 2010-04-19  Jan Hubicka  <jh@suse.cz>
14671         * opts.c (decode_options): Disable whpr incompatible passes.
14672         * lto/lto.c (lto_1_to_1_map): Skip clones.
14673         (read_cgraph_and_symbols): Do not mark everything as needed.
14674         (do_whole_program_analysis): Do map only after optimizing;
14675         set proper cgraph_state; use passmanager.
14677 2010-04-19  DJ Delorie  <dj@redhat.com>
14679         * cfgexpand.c (expand_debug_expr): Check for mismatched modes in
14680         POINTER_PLUS_EXPR and fix them.
14682 2010-04-19  Eric B. Weddington  <eric.weddington@atmel.com>
14684         * config/avr/avr-devices.c (avr_mcu_types): Add support for new
14685         devices atmega644pa, attiny2313a, attiny24a, attiny261a, attiny4313,
14686         attiny44a, attiny861a, atmega16a, atmega168a, atmega164a, atmega165a,
14687         atmega169a, atmega169pa, atmega16hva2, atmega324a, atmega324pa,
14688         atmega325a, atmega3250a, atmega328, atmega329a, atmega329pa,
14689         atmega3290a, atmega48a, atmega644a, atmega645a, atmega645p,
14690         atmega6450a, atmega6450p, atmega649a, atmega649p, atmega6490a,
14691         atmega6490p, atmega64hve, atmega88a, atmega88pa, attiny461a, attiny84a,
14692         m3000. Remove support for devices atmega8m1, atmega8c1, atmega16c1,
14693         atmega4hvd, atmega8hvd, attiny327, m3000f, m3000s, m3001b.
14694         * config/avr/t-avr.c (MULTILIB_MATCHES): Same.
14696 2010-04-19  Eric Botcazou  <ebotcazou@adacore.com>
14698         * ifcvt.c (noce_try_cmove_arith): Fix long lines.
14699         (check_cond_move_block): Likewise.
14700         (cond_move_process_if_block): Likewise.
14701         (noce_find_if_block): Improve formatting.
14702         (find_if_header): Pass 0 to memset and tweak conditions.
14703         (cond_exec_find_if_block): Fix long lines and tweak conditions.
14705 2010-04-19  Jakub Jelinek  <jakub@redhat.com>
14707         * dwarf2out.c (lower_bound_default): For DW_LANG_Python return 0
14708         for -gdwarf-4.
14710         PR middle-end/43337
14711         * tree-nested.c (convert_nonlocal_omp_clauses): OMP_CLAUSE_PRIVATE
14712         with non-local decl doesn't need chain.
14714 2010-04-19  Vladimir Makarov  <vmakarov@redhat.com>
14716         * ira-color.c (allocno_reload_assign): Avoid accumulating
14717         reload registers in ALLOCNO_TOTAL_CONFLICT_HARD_REGS.
14719 2010-04-19  Martin Jambor  <mjambor@suse.cz>
14721         * gimple.h (create_tmp_reg): Declare.
14722         * gimplify.c (create_tmp_reg): New function.
14723         (gimplify_return_expr): Use create_tmp_reg.
14724         (gimplify_omp_atomic): Likewise.
14725         (gimple_regimplify_operands): Likewise.
14726         * tree-dfa.c (make_rename_temp): Likewise.
14727         * tree-predcom.c (predcom_tmp_var): Likewise.
14728         (reassociate_to_the_same_stmt): Likewise.
14729         * tree-sra.c (replace_uses_with_default_def_ssa_name): Likewise.
14730         (get_replaced_param_substitute): Likewise.
14731         * tree-ssa-phiprop.c (phiprop_insert_phi): Likewise.
14732         * tree-ssa-phiopt.c (cond_store_replacement): Likewise.
14733         * tree-ssa-pre.c (get_representative_for): Likewise.
14734         (create_expression_by_pieces): Likewise.
14735         * tree-tailcall.c (adjust_return_value_with_ops): Likewise.
14736         (create_tailcall_accumulator): Likewise.
14738 2010-04-19  Martin Jambor  <mjambor@suse.cz>
14740         * cgraphunit.c (cgraph_redirect_edge_call_stmt_to_callee): Update
14741         new_stmt.
14742         (cgraph_materialize_all_clones): Assert !need_ssa_update_p.
14744 2010-04-19  Richard Guenther  <rguenther@suse.de>
14746         PR tree-optimization/43796
14747         * tree-vrp.c (adjust_range_with_scev): Lookup init and step
14748         from SCEV in the lattice.
14749         (vrp_visit_phi_node): Dump change.
14751 2010-04-19  Richard Guenther  <rguenther@suse.de>
14753         * configure.ac: Fix quoting around elf_getshstrndx ABI check.
14754         * configure: Re-generated.
14756 2010-04-19  Richard Guenther  <rguenther@suse.de>
14758         PR tree-optimization/43783
14759         * tree-ssa-pre.c (create_component_ref_by_pieces_1): Drop
14760         constant ARRAY_REF operands two and three if possible.
14762 2010-04-19  Uros Bizjak  <ubizjak@gmail.com>
14764         PR target/43766
14765         * config/i386/i386.c (ix86_decompose_address): Handle ASHIFT addends.
14767 2010-04-19  Jie Zhang  <jie@codesourcery.com>
14769         PR target/43662
14770         * reginfo.c (reinit_regs): Set caller_save_initialized_p to false.
14772 2010-04-19  Ira Rosen  <irar@il.ibm.com>
14774         PR tree-optimization/37027
14775         * tree-vectorizer.h (struct _loop_vec_info): Add new field reductions
14776         and macro to access it.
14777         (vectorizable_reduction): Add argument.
14778         (vect_get_slp_defs): Likewise.
14779         * tree-vect-loop.c (vect_analyze_scalar_cycles_1): Collect reduction
14780         statements for possible use in SLP.
14781         (new_loop_vec_info): Initialize LOOP_VINFO_REDUCTIONS.
14782         (destroy_loop_vec_info): Free LOOP_VINFO_REDUCTIONS.
14783         (vect_create_epilog_for_reduction): Handle SLP. Modify documentation,
14784         add new argument.
14785         (vectorizable_reduction): Likewise.
14786         * tree-vect-stmts.c (vect_get_vec_defs): Update call to
14787         vect_get_slp_defs.
14788         (vectorizable_type_demotion, vectorizable_type_promotion,
14789         vectorizable_store): Likewise.
14790         (vect_analyze_stmt): Update call to vectorizable_reduction.
14791         (vect_transform_stmt): Likewise.
14792         * tree-vect-slp.c (vect_get_and_check_slp_defs): Handle reduction.
14793         (vect_build_slp_tree): Fix indentation. Check that there are no loads
14794         from different interleaving chains in same node.
14795         (vect_slp_rearrange_stmts): New function.
14796         (vect_supported_load_permutation_p): Allow load permutations for
14797         reductions. Call vect_slp_rearrange_stmts() to rearrange statements
14798         inside SLP nodes if necessary.
14799         (vect_analyze_slp_instance): Handle reductions.
14800         (vect_analyze_slp): Try to build SLP instances originating from groups
14801         of reductions.
14802         (vect_detect_hybrid_slp_stmts): Skip reduction statements.
14803         (vect_get_constant_vectors): Create initial vectors for reductions
14804         according to reduction code. Add new argument.
14805         (vect_get_slp_defs): Add new argument, pass it to
14806         vect_get_constant_vectors.
14807         (vect_schedule_slp_instance): Remove SLP tree root statements.
14809 2010-04-19  Jakub Jelinek  <jakub@redhat.com>
14811         * tree.h (ENUM_IS_SCOPED): Define.
14812         * dwarf2out.c (gen_enumeration_type_die): Add DW_AT_enum_class
14813         for ENUM_IS_SCOPED enums.
14815 2010-04-18  Eric Botcazou  <ebotcazou@adacore.com>
14817         * fold-const.c (fold_comparison): Use ssizetype.
14818         * gimple-fold.c (maybe_fold_offset_to_array_ref): Likewise.
14819         * ipa-prop.c (ipa_modify_call_arguments): Use sizetype.
14820         * tree-loop-distribution.c (build_size_arg_loc): Likewise.
14821         * tree-object-size.c (compute_object_sizes): Use size_type_node.
14823         * tree.h (initialize_sizetypes): Remove parameter.
14824         (build_common_tree_nodes): Remove second parameter.
14825         * stor-layout.c (initialize_sizetypes): Remove parameter.
14826         Always create an unsigned type.
14827         (set_sizetype): Assert that the passed type is unsigned and simplify.
14828         * tree.c (build_common_tree_nodes): Remove second parameter.
14829         Adjust call to initialize_sizetypes.
14830         * c-decl.c (c_init_decl_processing): Remove second argument in call to
14831         build_common_tree_nodes.
14833 2010-04-18  Matthias Klose  <doko@ubuntu.com>
14835         * gcc.c (main): Search for liblto_plugin.so with mode R_OK.
14837 2010-04-18  Ira Rosen  <irar@il.ibm.com>
14839         PR tree-optimization/43771
14840         * tree-vect-slp.c (vect_supported_load_permutation_p): Check that
14841         load permutation doesn't have gaps.
14843 2010-04-18  Jan Hubicka  <jh@suse.cz>
14845         * i386.md (UNSPEC_SSE_PROLOGUE_SAVE_LOW): New.
14846         (sse_prologue_save_insn expander): Use new pattern.
14847         (sse_prologue_save_insn1): New pattern and splitter.
14848         (sse_prologue_save_insn): Update to deal also with 64bit aligned
14849         blocks.
14850         * i386.c (setup_incoming_varargs_64): Do not compute jump
14851         destination here.
14852         (ix86_gimplify_va_arg): Update alignment needed.
14853         (ix86_local_alignment): Do not align all local arrays to 128bit.
14855 2010-04-17  Jan Hubicka  <jh@suse.cz>
14857         * ipa-inline.c (cgraph_early_inlining): Handle flattening too.
14859 2010-04-17  Richard Earnshaw  <rearnsha@arm.com>
14861         * arm.md (negdi2): Remove redundant code to force values into a
14862         register.
14864 2010-04-17  Richard Earnshaw  <rearnsha@arm.com>
14866         * arm/bpabi.S: Add EABI alignment attributes to objects.
14867         * arm/bpabi-v6m.S: Likewise.
14868         * arm/crti.asm: Likewise.
14869         * arm/crtn.asm: Likewise.
14870         * arm/lib1funcs.asm: Likewise.
14871         * arm/libunwind.S: Likewise.
14873 2010-04-17  Richard Earnshaw  <rearnsha@arm.com>
14875         * arm-protos.h (tune_params): New structure.
14876         * arm.c (current_tune): New variable.
14877         (arm_constant_limit): Delete.
14878         (struct processors): Add pointer to the tune parameters.
14879         (arm_slowmul_tune): New tuning option.
14880         (arm_fastmul_tune, arm_xscale_tune, arm_9e_tune): Likewise.
14881         (all_cores): Adjust to pick up the tuning model.
14882         (arm_constant_limit): New function.
14883         (arm_override_options): Select the appropriate tuning model.  Delete
14884         initialization of arm_const_limit.
14885         (arm_split_constant): Use the new constant-limit model.
14886         (arm_rtx_costs): Pick up the current tuning model.
14887         * arm.md (is_strongarm, is_xscale): Delete.
14888         * arm-generic.md (load_ldsched_x, load_ldsched): Test explicitly
14889         for Xscale variant architectures.
14890         (mult_ldsched_strongarm, mult_ldsched): Similarly for StrongARM.
14892 2010-04-17  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
14894         * config/arm/arm.c (arm_gen_constant): Remove unused variable
14895         can_shift.
14896         (arm_rtx_costs_1): Remove unused variable extra_cost.
14897         (arm_unwind_emit_set): Use variable offset.
14898         (thumb1_output_casesi): Remove unused variable flags.
14900 2010-04-16  Jeff Law  <law@redhat.com>
14902         * ira-color.c (ira_reassign_pseudos): Collect and sort all the pseudos
14903         needing assignment rather than doing a two-phase assignment.  Remove
14904         unused variable 'm'.
14906 2010-04-16  Jakub Jelinek  <jakub@redhat.com>
14908         PR bootstrap/43767
14909         * alias.c (memrefs_conflict_p): Don't crash if CSELIB_VAL_PTR is NULL.
14911 2010-04-16  Doug Kwan  <dougkwan@google.com>
14913         * tree-ssa-reassoc.c (struct operand_entry): Add new field ID.
14914         (next_operand_entry_id): New static variable.
14915         (sort_by_operand_rank): Stabilize qsort comparator by using unique IDs.
14916         (add_to_ops_vec): Assigned unique ID to operand entry.
14917         (struct oecount_s): New field ID.
14918         (oecount_cmp): Stabilize qsort comparotor by using unique IDs.
14919         (undistribute_ops_list): Assign unique IDs to oecounts.
14920         (init_reassoc): reset next_operand_entry_id.
14922 2010-04-16  Doug Kwan  <dougkwan@google.com>
14924         * config/i386/i386.md (*jcc_bt<mode>): Fix build breakage by adding
14925         missing left parenthesis.
14927 2010-04-16  Uros Bizjak  <ubizjak@gmail.com>
14929         * config/i386/i386.md (*bt<mode>): Macroize insn from *btsi and
14930         *btdi_rex64 using SWI48 mode iterator.
14931         (*jcc_bt<mode>): Ditto from *jcc_btsi and *jcc_btdi_rex64.
14932         (*jcc_bt<mode>_mask): Ditto from *jcc_btsi_mask and
14933         *jcc_btdi_mask_rex64.
14935 2010-04-16  Anatoly Sokolov  <aesok@post.ru>
14937         * double-int.h (tree_to_double_int): Convert to macro.
14938         * double-int.c (tree_to_double_int): Remove.
14940 2010-04-16  Jakub Jelinek  <jakub@redhat.com>
14942         PR debug/43762
14943         * dwarf2out.c (add_bound_info): Always call loc_list_from_tree
14944         with want_address 2 and in case a single element list might be
14945         possible, call it again with want_address 0.
14947 2010-04-12  Kaushik Phatak  <kaushik.phatak@kpitcummins.com>
14949         * config/h8300/h8300.c (print_operand) : Modify case 'V' and
14950         case 'W' print operands for HI mode.
14951         * config/h8300/h8300.h (Y0, Y2) : New constraints.
14952         * config/h8300/h8300.md (bclrqi_msx, bclrhi_msx): New patterns
14953         (bsetqi_msx, bsethi_msx, bnotqi_msx, bnothi_msx): Likewise.
14954         * config/h8300/predicate.md (bit_register_indirect_operand): New.
14956         * config/h8300/h8300.h (OK_FOR_U): Support 'U' constraint for H8300SX.
14958         * config/h8300/h8300.md (movqi_h8sx, movhi_h8sx, movsi_h8sx,
14959         cmphi_h8300hs_znvc, cmpsi, addhi3_h8sx) : Emit instructions in
14960         #xx:3 and #xx:4 mode.
14962         * config/h8300/h8300.md (inverted load with HImode dest): Add
14963         support for H8300SX.
14965         * config/h8300/predicate.md (bit_operand): Allow immediate values that
14966         satisfy 'U' constraint.
14968 2010-04-16  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
14970         * configure.ac: Check for elf_getshdrstrndx or elf_getshstrndx flavor.
14971         * configure: Regenerate.
14972         * config.in: Regenerate.
14973         * doc/install.texi (Prerequisites): Document that Solaris 2 libelf
14974         works.
14976 2010-04-16  Richard Guenther  <rguenther@suse.de>
14978         * tree.h (struct tree_decl_minimal): Move pt_uid ...
14979         (struct tree_decl_common): ... here.
14980         (DECL_PT_UID): Adjust.
14981         (SET_DECL_PT_UID): Likewise.
14982         (DECL_PT_UID_SET_P): Likewise.
14984 2010-04-16  Richard Guenther  <rguenther@suse.de>
14986         PR tree-optimization/43572
14987         * tree-ssa-alias.h (call_may_clobber_ref_p): Declare.
14988         * tree-ssa-alias.c (call_may_clobber_ref_p): Export.
14989         * tree-flow.h (is_call_clobbered): Remove.
14990         * tree-flow-inline.h (is_call_clobbered): Likewise.
14991         * tree-dfa.c (dump_variable): Do not dump call clobber state.
14992         * tree-nrv.c (dest_safe_for_nrv_p): Use the alias oracle.
14993         (execute_return_slot_opt): Adjust.
14994         * tree-tailcall.c (suitable_for_tail_opt_p): Remove
14995         check for call clobbered vars here.
14996         (find_tail_calls): Move tailcall verification to the
14997         proper place.
14999 2010-04-16  Diego Novillo  <dnovillo@google.com>
15001         * doc/invoke.texi: Explain how are unrecognized -Wno- warnings handled.
15003 2010-04-16  Bernd Schmidt  <bernds@codesourcery.com>
15005         PR target/40603
15006         * config/arm/arm.md (cbranchqi4): New pattern.
15007         * config/arm/predicates.md (const0_operand,
15008         cbranchqi4_comparison_operator): New predicates.
15010 2010-04-16  Richard Guenther  <rguenther@suse.de>
15012         * gimple-pretty-print.c (dump_gimple_phi): Dump alias info.
15013         (dump_gimple_stmt): Likewise.
15015 2010-04-16  Bernd Schmidt  <bernds@codesourcery.com>
15017         * recog.h (struct recog_data): New field is_operator.
15018         (struct insn_operand_data): New field is_operator.
15019         * recog.c (extract_insn): Set recog_data.is_operator.
15020         * genoutput.c (output_operand_data): Emit code to set the
15021         is_operator field.
15022         * reload.c (find_reloads): Use it rather than testing for an
15023         empty constraint string.
15025         PR target/41514
15026         * config/arm/arm.md (cbranchsi4_insn): Renamed from "*cbranchsi4_insn".
15027         If the previous insn is a cbranchsi4_insn with the same arguments,
15028         omit the compare instruction.
15030         * config/arm/arm.md (addsi3_cbranch): If destination is a high
15031         register, inputs must be low registers and we need a low register
15032         scratch.  Handle alternative 2 like alternative 3.
15034 2010-04-16  Jakub Jelinek  <jakub@redhat.com>
15036         * alias.c (memrefs_conflict_p): If x and y are the same VALUE,
15037         don't call get_addr on both.  If one expression is a VALUE and
15038         the other a REG, check VALUE's locs if the REG isn't among them.
15040 2010-04-16  Christian Bruel  <christian.bruel@st.com>
15042         * config/sh/sh.h (sh_frame_pointer_required): New function.
15043         * config/sh/sh.h (TARGET_FRAME_POINTER_REQUIRED): New macro.
15044         (flag_omit_frame_pointer) Set.
15045         (MASK_ACCUMULATE_OUTGOING_ARGS) Define and Set.
15046         (rounded_frame_size): Adjust size with outgoing_args_size.
15047         (sh_set_return_address): Must return from stack pointer.
15048         * gcc/config/sh/sh.h (CAN_DEBUG_WITHOUT_FP): Define.
15049         (SUBTARGET_FRAME_POINTER_REQUIRED): Define.
15050         (ACCUMULATE_OUTGOING_ARGS): Define.
15051         * doc/invoke.texi (maccumulate-outgoing-args): Document for SH.
15052         * gcc/config/sh/sh.opt (maccumulate-outgoing-args): New option.
15054 2010-04-15  Kaz Kojima  <kkojima@gcc.gnu.org>
15056         PR target/43471
15057         * config/sh/sh.c (sh_legitimize_reload_address): Use
15058         MAYBE_BASE_REGISTER_RTX_P instead of BASE_REGISTER_RTX_P.
15059         Remove a unneeded check for offset_base.
15061 2010-04-15  H.J. Lu  <hongjiu.lu@intel.com>
15063         * configure: Regenerated.
15065 2010-04-15  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
15067         * config/s390/s390.c (s390_call_save_register_used): Switch back
15068         to HARD_REGNO_NREGS.
15070 2010-04-15  Richard Guenther  <rguenther@suse.de>
15072         * alias.c (alias_set_subset_of): Handle alias-set zero
15073         child properly.
15075 2010-04-15  Mark Shinwell  <shinwell@codesourcery.com>
15076             Julian Brown  <julian@codesourcery.com>
15078         * config/arm/thumb2.md (thumb2_movsi_insn): Split ldr and str
15079         alternatives according to use of high and low regs.
15080         * config/arm/vfp.md (thumb2_movsi_vfp): Likewise.
15081         * config/arm/arm.h (CONDITIONAL_REGISTER_USAGE): Use high regs when
15082         optimizing for size on Thumb-2.
15084 2010-04-15  Thomas Schwinge  <tschwinge@gnu.org>
15086         * config.gcc <i[34567]86-*-gnu*>: Handle softfp as for Linux.
15088 2010-04-15  Richard Guenther  <rguenther@suse.de>
15090         * tree-ssa-structalias.c (struct variable_info): Add
15091         is_fn_info flag.
15092         (new_var_info): Initialize it.
15093         (dump_constraints): Support printing last added constraints.
15094         (debug_constraints): Adjust.
15095         (dump_constraint_graph): Likewise.
15096         (make_heapvar_for): Check for NULL cfun.
15097         (get_function_part_constraint): New function.
15098         (get_fi_for_callee): Likewise.
15099         (find_func_aliases): Properly implement IPA PTA constraints.
15100         (process_ipa_clobber): New function.
15101         (find_func_clobbers): Likewise.
15102         (insert_into_field_list_sorted): Remove.
15103         (create_function_info_for): Properly allocate vars for IPA mode.
15104         Do not use insert_into_field_list_sorted.
15105         (create_variable_info_for): Properly generate constraints for
15106         global vars in IPA mode.
15107         (dump_solution_for_var): Always dump the solution.
15108         (set_uids_in_ptset): Initialize DECL_PT_UID if in ipa-mode.
15109         (find_what_var_points_to): Adjust.
15110         (pt_solution_set): Change.
15111         (pt_solution_ior_into): New function.
15112         (pt_solution_empty_p): Export.
15113         (pt_solution_includes_global): Adjust.
15114         (pt_solution_includes_1): Likewise.
15115         (pt_solutions_intersect_1): Likewise.
15116         (dump_sa_points_to_info): Check some invariants.
15117         (solve_constraints): Move constraint dumping ...
15118         (compute_points_to_sets): ... here.
15119         (ipa_pta_execute): ... and here.
15120         (compute_may_aliases): Do not re-compute points-to info
15121         locally if IPA info is available.
15122         (ipa_escaped_pt): New global var.
15123         (ipa_pta_execute): Properly implement IPA PTA.
15124         * tree-into-ssa.c (dump_decl_set): Support dumping
15125         decls not in referenced-vars.
15126         * tree-flow.h (struct gimple_df): Add ipa_pta flag.
15127         * tree-ssa-alias.c (ptr_deref_may_alias_decl_p): Adjust.
15128         (dump_points_to_solution): Likewise.
15129         * tree-dfa.c (dump_variable): Also dump DECL_PT_UID.
15130         * tree-inline.c (remap_ssa_name): Copy IPA points-to solution.
15131         (remap_gimple_stmt): Reset call clobber/use information if necessary.
15132         (copy_decl_to_var): Copy DECL_PT_UID.
15133         (copy_result_decl_to_var): Likewise.
15134         * tree.c (make_node_stat): Initialize DECL_PT_UID.
15135         (copy_node_stat): Copy it.
15136         * tree.h (DECL_PT_UID): New macro.
15137         (SET_DECL_PT_UID): Likewise.
15138         (DECL_PT_UID_SET_P): Likewise.
15139         (struct tree_decl_minimal): Add pt_uid member.
15140         * tree-ssa-alias.h (struct pt_solution): Add ipa_escaped flag.
15141         (pt_solution_empty_p): Declare.
15142         (pt_solution_set): Adjust.
15143         (ipa_escaped_pt): Declare.
15144         * cfgexpand.c (update_alias_info_with_stack_vars): Adjust.
15145         * gimple-pretty-print.c (pp_points_to_solution): New function.
15146         (dump_gimple_call): Dump call clobber/use information.
15147         * tree-dump.c (dump_option_value_in): Add TDF_ALIAS entry.
15148         * tree-pass.h (TDF_ALIAS): New dump option.
15149         * tree-pretty-print.c (dump_decl_name): Dump DECL_PT_UID if asked to.
15150         * doc/invoke.texi (-fipa-pta): Update documentation.
15152 2010-04-15  Richard Guenther  <rguenther@suse.de>
15154         * Makefile.in (OBJS-common): Add gimple-fold.o.
15155         (gimple-fold.o): New rule.
15156         * tree.h (maybe_fold_offset_to_reference,
15157         maybe_fold_offset_to_address, maybe_fold_stmt_addition): Move
15158         prototypes ...
15159         * gimple.h: ... here.
15160         * tree-flow.h (fold_stmt, fold_stmt_inplace, get_symbol_constant_value,
15161         may_propagate_address_into_dereference): Move prototypes ...
15162         * gimple.h: ... here.
15163         * tree-ssa-ccp.c (get_symbol_constant_value,
15164         may_propagate_address_into_dereference, maybe_fold_offset_to_array_ref,
15165         maybe_fold_offset_to_component_ref, maybe_fold_offset_to_reference,
15166         maybe_fold_offset_to_address, maybe_fold_stmt_indirect,
15167         maybe_fold_stmt_addition, maybe_fold_reference, get_maxval_strlen,
15168         ccp_fold_builtin, fold_gimple_assign, fold_gimple_cond,
15169         fold_gimple_call, fold_stmt_1, fold_stmt, fold_stmt_inplace,
15170         gimplify_and_update_call_from_tree): Move ...
15171         * gimple-fold.c: ... here.  New file.
15172         (ccp_fold_builtin): Rename to ...
15173         (gimple_fold_builtin): ... this.
15174         * tree-ssa-ccp.c (execute_fold_all_builtins): Adjust.
15176 2010-04-15  Richard Guenther  <rguenther@suse.de>
15178         * fold-const.c (LOWPART, HIGHPART, BASE, encode, decode,
15179         fit_double_type, force_fit_type_double, add_double_with_sign,
15180         neg_double, mul_double_with_sign, lshift_double, rshift_double,
15181         lrotate_double, rrotate_double, div_and_round_double): Move ...
15182         * double-int.c: ... here.
15183         * tree.h (force_fit_type_double, fit_double_type, add_double_with_sign,
15184         add_double, neg_double, mul_double_with_sign, mul_double,
15185         lshift_double, rshift_double, lrotate_double, rrotate_double,
15186         div_and_round_double): Move prototypes ...
15187         * double-int.h: ... here.
15189 2010-04-15  Bernd Schmidt  <bernds@codesourcery.com>
15191         PR target/43742
15192         * config/sh/sh.md (doloop_end_split, dect): Undo previous patch.  Use
15193         matching constraints to ensure inputs match the output.
15195 2010-04-15  Kaz Kojima  <kkojima@gcc.gnu.org>
15197         PR target/43742
15198         * config/sh/sh.md (doloop_end_split): Remove "+r" constraint
15199         in an input-only operand.
15201 2010-04-15  Anatoly Sokolov  <aesok@post.ru>
15203         * double-int.h (HOST_BITS_PER_DOUBLE_INT): Define.
15204         (double_int_not, double_int_lshift, double_int_rshift): Declare.
15205         (double_int_negative_p): Convert to static inline function.
15206         * double-int.c (double_int_lshift, double_int_lshift): New functions.
15207         (double_int_negative_p): Remove.
15208         * tree.h (lshift_double, rshift_double):
15209         * tree.c (build_low_bits_mask): Clean up, use double_int_* functions.
15210         * fold-const.c (fold_convert_const_int_from_real,
15211         fold_convert_const_int_from_fixed, div_if_zero_remainder): (Ditto.).
15212         (lshift_double): Change type of arith argument to bool.
15213         (rshift_double): Change type of arith argument to bool. Correct
15214         comment.
15215         * expmed.c (mask_rtx, lshift_value): (Ditto.).
15217 2010-04-14  Bernd Schmidt  <bernds@codesourcery.com>
15219         PR target/21803
15220         * ifcvt.c (cond_exec_process_if_block): Look for identical sequences
15221         at the start and end of the then/else blocks, and omit them from the
15222         conversion.
15223         * cfgcleanup.c (flow_find_cross_jump): No longer static.  Remove MODE
15224         argument; all callers changed.  Pass zero to old_insns_match_p instead.
15225         (flow_find_head_matching_sequence): New function.
15226         (old_insns_match_p): Check REG_EH_REGION notes for calls.
15227         * basic-block.h (flow_find_cross_jump,
15228         flow_find_head_matching_sequence): Declare functions.
15230 2010-04-14  Jason Merrill  <jason@redhat.com>
15232         PR c++/36625
15233         * c-common.c (attribute_takes_identifier_p): New fn.
15234         * c-common.h: Declare it.
15236 2010-04-14  Uros Bizjak  <ubizjak@gmail.com>
15238         * config/i386/i386.md (*divmod<mode>4): Remove stray "&&" from
15239         splitter condition.
15240         (*udivmod<mode>4): Ditto.
15242 2010-04-14  Uros Bizjak  <ubizjak@gmail.com>
15244         * config/i386/i386.md (maxmin_int): Rename code attribute from
15245         maxminiprefix and update all users.
15246         (maxmin_float): Ditto from maxminfprefix.
15247         (logic): Ditto from logicprefix.
15248         (absneg_mnemonic): Ditto from absnegprefix.
15249         * config/i386/mmx.md: Update all users of maxminiprefix,
15250         maxminfprefix and logicprefix for rename.
15251         * config/i386/sse.md: Ditto.
15252         * config/i386/sync.md (sync_<code><mode>): Update for
15253         logicprefix rename.
15255 2010-04-14  Manuel López-Ibáñez  <manu@gcc.gnu.org>
15257         PR 42966
15258         * diagnostics.c (diagnostic_report_diagnostic): Mark specially
15259         warnings converted to errors.
15261 2010-04-14  Uros Bizjak  <ubizjak@gmail.com>
15263         * config/alpha/alpha.c (alpha_adjust_cost): Remove set but not
15264         used insn_type variable.
15265         (function_value): Add ATTRIBUTE_UNUSED to dummy variable declaration
15266         to avoid set-but-not-used warning.
15268 2010-04-14  Uros Bizjak  <ubizjak@gmail.com>
15270         * df-core.c (df_ref_debug): Change format string placeholder
15271         from 0x%x to %#x.
15272         * dwarf2asm.c (dw2_asm_output_data_raw,
15273         dw2_asm_output_data_uleb128_raw, dw2_asm_output_data_uleb128,
15274         dw2_asm_output_data_sleb128_raw, dw2_asm_output_data_sleb128): Ditto.
15275         * dwarf2out.c (output_cfi, output_cfi_directive,
15276         dwarf2out_do_cfi_startproc, output_loc_sequence_raw,
15277         output_cfa_loc_raw, output_die, output_ranges, output_file_names):
15278         Ditto.
15279         * genattrtab.c (write_test_expr, write_attr_valueq): Ditto.
15280         * print-rtl.c (print_rtx): Ditto.
15282 2010-04-14  Michael Meissner  <meissner@linux.vnet.ibm.com>
15284         PR middle-end/42694
15285         * builtins.c (expand_builtin_pow_root): New function to expand pow
15286         calls with exponents 0.25, 0.50, 0.75, 1./3., and 1./6. into a
15287         series of sqrt and cbrt calls under -ffast-math.
15288         (expand_builtin_pow): Call it.
15290 2010-04-14  Michael Matz  <matz@suse.de>
15292         PR tree-optimization/42963
15293         * tree-cfg.c (touched_switch_bbs): New static variable.
15294         (group_case_labels_stmt): New function broken out from ...
15295         (group_case_labels): ... here, use the above.
15296         (start_recording_case_labels): Allocate touched_switch_bbs.
15297         (end_recording_case_labels): Deallocate it, call
15298         group_case_labels_stmt.
15299         (gimple_redirect_edge_and_branch): Remember index of affected BB.
15301 2010-04-14  Uros Bizjak  <ubizjak@gmail.com>
15303         * config/i386/i386.md (*popcountsi2_cmp_zext): Remove mode attribute
15304         from insn template.
15306 2010-04-14  Uros Bizjak  <ubizjak@gmail.com>
15308         * config/i386/i386.md (*ashlqi3_1_slp): New insn pattern.
15310 2010-04-13  Jan Hubicka  <jh@suse.cz>
15312         * ipa-inline.c (cgraph_mark_inline_edge): Avoid double accounting
15313         of optimized out static functions.
15314         (cgraph_edge_badness): Add DUMP parameter and dump reasons for the
15315         cost computation.  Also sanity check for overflows.
15316         (update_caller_keys): Update cgraph_edge_badness call; properly
15317         update fibheap and sanity check that it is up to date.
15318         (add_new_edges_to_heap): Update cgraph_edge_badness.
15319         (cgraph_decide_inlining_of_small_function): Likewise;
15320         add sanity checking that badness in heap is up to date;
15321         improve dumping of reason; Update badness of calls to the
15322         offline copy of function currently inlined; dump badness
15323         of functions not inlined because of unit growth limits.
15325 2010-04-13  Eric Botcazou  <ebotcazou@adacore.com>
15327         PR middle-end/32628
15328         * c-common.c (pointer_int_sum): Disregard overflow that occured only
15329         because of sign-extension change when converting to sizetype here...
15330         * fold-const.c (fold_convert_const_int_from_int): ...and not here.
15332         * fold-const.c (fold_binary_op_with_conditional_arg): Do not restrict
15333         the folding to constants.  Remove redundant final conversion.
15334         (fold_binary) <associate>: Do not associate if the re-association of
15335         constants alone overflows.
15336         (fold_binary) <FLOOR_MOD_EXPR>: Move transformation into BIT_AND_EXPR
15337         to the end of the list.
15338         (multiple_of_p) <COND_EXPR>: New case.
15340 2010-04-13  Manuel López-Ibáñez  <manu@gcc.gnu.org>
15342         * opt-functions.awk (opt_sanitized_name): New.
15343         (opt_enum): New.
15344         * optc-gen.awk: Use it
15345         * opth-gen.awk: Use it.
15347 2010-04-13  Martin Jambor  <mjambor@suse.cz>
15349         * tree-sra.c (replace_uses_with_default_def_ssa_name): New function.
15350         (sra_modify_assign): Delete stmts loading dead data even if racc has no
15351         children.  Call replace_uses_with_default_def_ssa_name to handle
15352         SSA_NAES on lhs.
15354 2010-04-13  Michael Matz  <matz@suse.de>
15356         PR middle-end/43730
15357         * builtins.c (expand_builtin_interclass_mathfn): Also create
15358         a register if the predicate doesn't match.
15360 2010-04-13  Diego Novillo  <dnovillo@google.com>
15362         * Makefile.in (c-pch.o, ggc-common.o): Depend on timevar.h.
15363         * c-pch.c: Include timevar.h.
15364         (c_common_write_pch): Use TV_PCH_SAVE and TV_PCH_CPP_SAVE timers.
15365         (c_common_read_pch): Use TV_PCH_RESTORE and TV_PCH_CPP_RESTORE timers.
15366         * ggc-common.c: Include timevar.h.
15367         (gt_pch_save): Use TV_PCH_PTR_REALLOC and TV_PCH_PTR_SORT timers.
15368         * timevar.def (TV_PCH_SAVE): Define.
15369         (TV_PCH_CPP_SAVE): Define.
15370         (TV_PCH_PTR_REALLOC): Define.
15371         (TV_PCH_PTR_SORT): Define.
15372         (TV_PCH_RESTORE): Define.
15373         (TV_PCH_CPP_RESTORE): Define.
15375 2010-04-13  Michael Matz  <matz@suse.de>
15377         * tree-ssa-reassoc.c (repropagate_negates): Merge negates also
15378         into MINUS_EXPRs.
15379         (can_reassociate_p): New function.
15380         (break_up_subtract_bb, reassociate_bb): Use it.
15382 2010-04-13  Richard Guenther  <rguenther@suse.de>
15384         PR bootstrap/43737
15385         * builtins.c (c_readstr): Fix assert.
15387 2010-04-13  Uros Bizjak  <ubizjak@gmail.com>
15389         * config/i386/i386.md (extendsidi2 splitter): Also check for DX_REG
15390         when generating cltd insn.
15392         (*ashl<mode>3_1): Remove special handling for register operand 2.
15393         (*ashlsi3_1_zext): Ditto.
15394         (*ashlhi3_1): Ditto.
15395         (*ashlhi3_1_lea): Ditto.
15396         (*ashlqi3_1): Ditto.
15397         (*ashlqi3_1_lea): Ditto.
15398         (*<shiftrt_insn><mode>3_1): Ditto.
15399         (*<shiftrt_insn>si3_1_zext): Ditto.
15400         (*<shiftrt_insn>qi3_1_slp): Ditto.
15401         (*<rotate_insn><mode>3_1): Ditto.
15402         (*<rotate_insn>si3_1_zext): Ditto.
15403         (*<rotate_insn>qi3_1_slp): Ditto.
15405 2010-04-13  Richard Guenther  <rguenther@suse.de>
15407         * tree-ssa-structalias.c (callused_id): Remove.
15408         (call_stmt_vars): New.
15409         (get_call_vi): Likewise.
15410         (lookup_call_use_vi): Likewise.
15411         (lookup_call_clobber_vi): Likewise.
15412         (get_call_use_vi): Likewise.
15413         (get_call_clobber_vi): Likewise.
15414         (make_transitive_closure_constraints): Likewise.
15415         (handle_const_call): Adjust to do per-call call-used handling.
15416         (handle_pure_call): Likewise.
15417         (find_what_var_points_to): Remove general callused handling.
15418         (init_base_vars): Likewise.
15419         (init_alias_vars): Initialize call_stmt_vars.
15420         (compute_points_to_sets): Process call-used and call-clobbered
15421         vars for call statements.
15422         (delete_points_to_sets): Free call_stmt_vars.
15424 2010-04-13  Richard Guenther  <rguenther@suse.de>
15426         * tree-vect-data-refs.c (vect_analyze_data_ref_dependence):
15427         Only add RW dependence for dependence distance zero.
15428         Adjust maximal vectorization factor according to dependences.
15429         Move alignment handling ...
15430         (vect_find_same_alignment_drs): ... here.  New function.
15431         (vect_analyze_data_ref_dependences): Adjust.
15432         (vect_analyze_data_refs_alignment): Call vect_find_same_alignment_drs.
15433         (vect_analyze_data_refs): Adjust minimal vectorization factor
15434         according to data references.
15435         * tree-vect-loop.c (vect_analyze_loop): Analyze data-ref
15436         dependences before determining the vectorization factor.
15437         Analyze alignment after determining the vectorization factor.
15438         * tree-vect-slp.c ((vect_slp_analyze_bb): Analyze data-ref
15439         dependences before alignment.
15440         * tree-vectorizer.h (vect_analyze_data_ref_dependences):
15441         Adjust prototype.
15442         (vect_analyze_data_refs): Likewise.
15443         (MAX_VECTORIZATION_FACTOR): New define.
15445 2010-04-13  Duncan Sands  <baldrick@free.fr>
15447         * except.h (lang_eh_type_covers): Remove.
15448         * except.c (lang_eh_type_covers): Likewise.
15450 2010-04-13  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
15451             Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
15453         * gcc/config/s390/s390.md: Replace TARGET_64BIT with TARGET_ZARCH.
15454         * gcc/config/s390/s390.c: Replace UNTIS_PER_WORD with
15455         UNITS_PER_LONG where it is ABI relevant.
15456         (s390_return_addr_rtx): Likewise.
15457         (s390_back_chain_rtx): Likewise.
15458         (s390_frame_area): Likewise.
15459         (s390_frame_info): Likewise.
15460         (s390_initial_elimination_offset): Likewise.
15461         (save_gprs): Likewise.
15462         (s390_emit_prologue): Likewise.
15463         (s390_emit_epilogue): Likewise.
15464         (s390_function_arg_advance): Likewise.
15465         (s390_function_arg): Likewise.
15466         (s390_va_start): Likewise.
15467         (s390_gimplify_va_arg): Likewise.
15468         (s390_function_profiler): Likewise.
15469         (s390_optimize_prologue): Likewise.
15470         (s390_rtx_costs): Likewise.
15471         (s390_secondary_reload): Likewise.
15472         (s390_promote_function_mode): Likewise.
15473         (s390_hard_regno_mode_ok): Replace TARGET_64BIT with TARGET_ZARCH.
15474         (s390_scalar_mode_supported_p): Disallow TImode if no 64 bit
15475         registers available.
15476         (s390_unwind_word_mode): New function.
15477         (s390_function_value): Split 64 bit values into register pair if
15478         used as return value.
15479         (s390_call_saved_register_used): Don't use HARD_REGNO_NREGS for
15480         function call parameters.  Handle parallels.
15481         (TARGET_SCALAR_MODE_SUPPORTED_P): New macro.
15482         (HARD_REGNO_CALL_PART_CLOBBERED): New macro.
15483         (DWARF_CIE_DATA_ALIGNMENT): New macro.
15484         (s390_expand_setmem): Remove unused variable src_addr.
15485         * gcc/longlong.h: Make smul_ppmm and sdiv_qrnnd inline asms to
15486         deal with 64 bit registers.
15487         * gcc/config/s390/s390.h: Define __zarch__ predefined macro.
15488         Replace UNITS_PER_WORD with UNITS_PER_LONG where it is ABI relevant.
15489         (UNITS_PER_LONG): New macro.
15490         * libjava/include/s390-signal.h: Define extended ucontext
15491         structure containing the upper halfs of the 64 bit registers.
15493 2010-04-13  Simon Baldwin  <simonb@google.com>
15495         * cfgexpand.c (gimple_expand_cfg): Clarify warning message text.
15497 2010-04-13  Eric Botcazou  <ebotcazou@adacore.com>
15499         * gimple.c (walk_gimple_op) <GIMPLE_ASSIGN>: Do not request a pure
15500         rvalue on the RHS if the LHS is of a non-renamable type.
15501         * tree-ssa-ccp.c (maybe_fold_offset_to_component_ref): Fold result.
15503 2010-04-13  Matthias Klose  <doko@ubuntu.com>
15505         * gcc.c (cc1_options): Handle -iplugindir before processing
15506         the cc1 spec. Only add -iplugindir once.
15507         (cpp_unique_options): Add -iplugindir option if -fplugin* options
15508         found.
15509         * common.opt (iplugindir): Remove `Separate' property, initialize.
15510         * plugin.c (default_plugin_dir_name): Error with missing -iplugindir
15511         option.
15512         * Makefile.in (check-%, check-parallel-%): Create plugin dir.
15513         (distclean): Remove plugin dir.
15514         * doc/invoke.texi: Document -iplugindir.
15516 2010-04-13  Basile Starynkevitch  <basile@starynkevitch.net>
15518         * doc/plugins.texi (Loading Plugins): Document short
15519         -fplugin=foo option.
15520         (Plugin API): Mention default_plugin_dir_name function.
15522         * gcc.c (find_file_spec_function): Add new declaration.
15523         (static_spec_func): Use it for "find-file".
15524         (find_file_spec_function): Add new function.
15525         (cc1_options): Add -iplugindir option if -fplugin* options found.
15527         * gcc-plugin.h (default_plugin_dir_name): Added new declaration.
15529         * plugin.c (add_new_plugin): Updated comment, and handle short
15530         plugin name.
15531         (default_plugin_dir_name): Added new function.
15533         * common.opt (iplugindir): New option to set the plugin directory.
15535 2010-04-12  Uros Bizjak  <ubizjak@gmail.com>
15537         * config/i386/i386.md (any_rotate): New code iterator.
15538         (rotate_insn): New code attribute.
15539         (rotate): Ditto.
15540         (SWIM124): New mode iterator.
15541         (<rotate_insn>ti3): New expander.
15542         (<rotate_insn>di3): Macroize expander from {rotl,rotr}di3 using
15543         any_rotate code iterator.
15544         (<rotate_insn><mode>3) Macroize expander from {rotl,rotr}{qi,hi,si}3
15545         using any_rotate code iterator and SWIM124 mode iterator.
15546         (ix86_rotlti3): New insn_and_split pattern.
15547         (ix86_rotrti3): Ditto.
15548         (ix86_rotl<dwi>3_doubleword): Macroize insn_and_split pattern from
15549         ix86_rotl{di,ti}3 patterns.
15550         (ix86_rotr<dwi>3_doubleword): Ditto from ix86_rotr{di,ti}3 patterns.
15551         (*<rotate_insn><mode>3_1): Merge with *{rotl,rotr}{qi,hi,si}3_1_one_bit
15552         and *{rotl,rotr}di3_1_one_bit_rex64. Macroize insn from
15553         *{rotl,rotr}{qi,hi,si}3_1 and *{rotl,rotr}di3_1_rex64 using any_rotate
15554         code iterator and SWI mode iterator.
15555         (*<rotate_insn>si3_1_zext): Merge with *{rotl,rotr}si3_1_one_bit_zext.
15556         Macroize insn from {rotl,rotr}si3_1_zext using any_rotate
15557         code iterator.
15558         (*<rotate_insn>qi3_1_slp): Merge with *{rotl,rotr}qi3_1_one_bit_slp.
15559         Macroize insn from {rotl,rotr}qi3_1_slp using any_rotate code iterator.
15560         (bswap rotatert splitter): Add splitter.
15561         (bswap splitter): Macroize splitter using any_rotate code iterator.
15562         Add insn predicate to split only for TARGET_USE_XCHGB or when
15563         optimizing function for size.
15565 2010-04-12  Steve Ellcey  <sje@cup.hp.com>
15567         * config/pa/pa.c (emit_move_sequence): Remove use of
15568         deleted variable flag_argument_noalias.
15570 2010-04-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
15572         * config.gcc: Removed *-*-solaris2.7* from list of obsolete
15573         configurations.
15574         Add to unsupported targets list.
15575         * configure.ac (gcc_cv_as_tls): Removed i[34567]86-*-solaris2.[567]*,
15576         sparc*-sun-solaris2.[567]* from target lists.
15577         * configure: Regenerate.
15578         * doc/install.texi (Specific, *-*-solaris2*): Document Solaris 7
15579         removal.
15580         Remove Solaris 7 patch references.
15581         (Specific, sparc-sun-solaris2.7): Removed.
15582         (sparc-sun-solaris2*): Update Solaris 7 example.
15583         (sparc64-*-solaris2*): Likewise.
15585 2010-04-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
15587         * config.build (alpha*-dec-osf4*): Remove.
15588         * config.gcc: Remove alpha*-dec-osf4*, alpha-dec-osf5.0* from list
15589         of obsolete configurations.
15590         (alpha*-dec-osf[45]*): Remove alpha*-dec-osf4*, alpha-dec-osf5.0*
15591         support.
15592         * config/alpha/t-osf4: Renamed to ...
15593         * config/alpha/t-osf5: ... this.
15594         * config/alpha/osf.h: Renamed to ...
15595         * config/alpha/osf5.h: ... this.
15596         Merged old osf5.h contents.
15597         Update comments.
15598         (ASM_SPEC): Use ASM_OLDAS_SPEC directly.
15599         (EXTRA_SPECS): Removed.
15600         * doc/install.texi (Specific, alpha*-dec-osf5.1): Renamed to
15601         reflect removal of Tru64 UNIX V4.0/V5.0 support.
15602         Document that.
15604 2010-04-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
15606         * doc/contrib.texi (Contributors, Rainer Orth): Update.
15608 2010-04-12  Kai Tietz  <kai.tietz@onevision.com>
15610         PR/43702
15611         * config/i386/i386.c (x86_this_parameter): Handle aggregate for
15612         __thiscall convention.
15614 2010-04-12  Steve Ellcey  <sje@cup.hp.com>
15616         * config/pa/pa.c (hppa_legitimize_address): Remove unused variable
15617         orig_base.
15618         * config/pa/pa.md (call, call_value): Remove unused variable call_insn.
15620 2010-04-12  Steve Ellcey  <sje@cup.hp.com>
15622         * function.c (assign_parms_initialize_all): Add unused attribute
15623         to fntype.
15625 2010-04-12  Richard Guenther  <rguenther@suse.de>
15627         * gsstruct.def (GSS_CALL): New.
15628         * gimple.def (GIMPLE_CALL): Change to GSS_CALL.
15629         * gimple.h: Include tree-ssa-alias.h.
15630         (struct gimple_statement_call): New.
15631         (union gimple_statement_struct_d): Add gimple_call member.
15632         (gimple_call_reset_alias_info): Declare.
15633         (gimple_call_use_set): New function.
15634         (gimple_call_clobber_set): Likewise.
15635         * Makefile.in (GIMPLE_H): Add tree-ssa-alias.h.
15636         * gimple.c (gimple_call_reset_alias_info): New function.
15637         (gimple_build_call_1): Call it.
15638         * lto-streamer-in.c (input_gimple_stmt): Likewise.
15639         * tree-inline.c (remap_gimple_stmt): Likewise.
15640         (expand_call_inline): Remove callused handling.
15641         * cfgexpand.c (update_alias_info_with_stack_vars): Likewise.
15642         * tree-dfa.c (dump_variable): Likewise.
15643         * tree-parloops.c (parallelize_loops): Likewise.
15644         * tree-ssa.c (init_tree_ssa): Likewise.
15645         (delete_tree_ssa): Likewise.
15646         * tree-flow-inline.h (is_call_used): Remove.
15647         * tree-flow.h (struct gimple_df): Remove callused member.
15648         * tree-nrv.c (dest_safe_for_nrv_p): Adjust predicate.
15649         * tree-ssa-alias.c (dump_alias_info): Remove callused handling.
15650         (ref_maybe_used_by_call_p_1): Simplify.
15651         (call_may_clobber_ref_p_1): Likewise.
15652         * tree-ssa-structalias.c (compute_points_to_sets): Set
15653         the call stmt used and clobbered sets.
15654         * tree-tailcall.c (suitable_for_tail_opt_p): Adjust predicate.
15655         (find_tail_calls): Verify the tail call.
15657 2010-04-12  Richard Guenther  <rguenther@suse.de>
15659         * ipa.c (cgraph_postorder): Adjust postorder to guarantee
15660         single-iteration always-inline inlining.
15661         * ipa-inline.c (cgraph_mark_inline): Do not return anything.
15662         (cgraph_decide_inlining): Do not handle always-inline specially.
15663         (try_inline): Remove always-inline cycle detection special case.
15664         Do not recurse on always-inlines.
15665         (cgraph_early_inlining): Do not iterate if not optimizing.
15666         (cgraph_gate_early_inlining): remove.
15667         (pass_early_inline): Run unconditionally.
15668         (gate_cgraph_decide_inlining): New function.
15669         (pass_ipa_inline): Use it.  Do not run the IPA inliner if
15670         not inlining or optimizing.
15671         (cgraph_decide_inlining_of_small_functions): Also consider
15672         always-inline functions.
15673         (cgraph_default_inline_p): Return true for nodes which should
15674         disregard inline limits.
15675         (estimate_function_body_sizes): Assume zero size and time for
15676         nodes which are marked as disregarding inline limits.
15677         (cgraph_decide_recursive_inlining): Do not perform recursive
15678         inlining on always-inline nodes.
15680 2010-04-12  Jakub Jelinek  <jakub@redhat.com>
15682         PR bootstrap/43699
15683         * c-typeck.c (c_process_expr_stmt): Call mark_exp_read even
15684         for exprs satisfying handled_component_p.
15686 2010-04-12  Eric Botcazou  <ebotcazou@adacore.com>
15688         * expr.c (categorize_ctor_elements_1): Properly count sub-elements of
15689         non-constant aggregate elements.
15691         * gimplify.c (gimplify_init_constructor): Do not pre-evaluate if this
15692         is a real initialization.
15694 2010-04-12  Shujing Zhao  <pearly.zhao@oracle.com>
15696         PR c/36774
15697         * c-decl.c (start_function): Move forward check for nested function.
15699 2010-04-11  Kaz Kojima  <kkojima@gcc.gnu.org>
15701         * config/sh/sh-protos.h (sh_legitimize_reload_address): Declare.
15702         * config/sh/sh.c: Include reload.h.
15703         (sh_legitimize_reload_address): New.
15704         * config/sh/sh.h (LEGITIMIZE_RELOAD_ADDRESS): Use
15705         sh_legitimize_reload_address.
15707 2010-04-11  Kaushik Phatak  <kaushik.phatak@kpitcummins.com>
15709         * config/sh/sh.md (*movqi_pop): New insn pattern.
15710         * config/sh/predicates.md (sh_no_delay_pop_operand): New predicate.
15712 2010-04-11  Uros Bizjak  <ubizjak@gmail.com>
15714         * config/i386/i386.md (any_shiftrt): New code iterator.
15715         (shiftrt_insn): New code attribute.
15716         (shiftrt): Ditto.
15717         (<shiftrt_insn><mode>3): Macroize expander from {ashr,lshr}<mode>3
15718         using any_shiftrt code iterator.
15719         (*<shiftrt_insn><mode>3_doubleword): Macroize insn_and_split from
15720         *{ashr,lshr}<mode>3_doubleword using any_shiftrt code iterator.
15721         (*<shiftrt_insn><mode>3_doubleword peephole2): Macroize peephole2
15722         pattern from corresponding peephole2 patterns.
15723         (*<shiftrt_insn><mode>3_1): Macroize insn from *{ashr,lshr}<mode>3_1
15724         using any_shiftrt code iterator.
15725         (*<shiftrt_insn>si3_1_zext): Ditto from *{ashr,lshr}si3_1_zext.
15726         (*<shiftrt_insn>qi3_1_slp): Ditto from *{ashr,lshr}qi3_1_slp.
15727         (*<shiftrt_insn><mode>3_cmp): Ditto from *{ashr,lshr}<mode>3_cmp.
15728         (*<shiftrt_insn><mode>3_cmp_zext): Ditto from
15729         *{ashr,lshr}<mode>3_cmp_zext.
15730         (*<shiftrt_insn><mode>3_cconly): Ditto from *{ashr,lshr}<mode>3_cconly.
15732 2010-04-11  Uros Bizjak  <ubizjak@gmail.com>
15734         * config/i386/i386.md (*ashr<mode>3_cconly): Fix wrong mode of
15735         scratch register.
15736         (*lshr<mode>3_cconly): Ditto.
15738 2010-04-11  Uros Bizjak  <ubizjak@gmail.com>
15740         * config/i386/i386.md (lshr<mode>3): Macroize expander from
15741         lshr{qi,hi,si,di,ti}3_1 using SDWIM mode iterator.
15742         (*lshr<mode>3_doubleword): New insn_and_split_pattern.  Macroize
15743         pattern from *lshr{di,ti}3_1 and corresponding splitters using
15744         DWI mode iterator.
15745         (*lshr<mode>3_doubleword peephole2): Macroize peephole2 pattern
15746         from corresponding peephole2 patterns.
15747         (*lshr<mode>3_1): Merge with *lshr{qi,hi,si}3_1_one_bit and
15748         *lshrdi3_1_one_bit_rex64. Macroize insn from *lshr{qi,hi,si}3_1
15749         and *lshrdi3_1_rex64 using SWI mode iterator.
15750         (*lshrsi3_1_zext): Merge with *lshrsi3_1_one_bit_zext.
15751         (*lshrqi3_1_slp): Merge with *lshrqi3_1_one_bit_slp.
15752         (*lshr<mode>3_cmp): Merge with *lshr{qi,hi,si}3_one_bit_cmp and
15753         *lshrdi3_one_bit_cmp_rex64. Macroize insn from *lshr{qi,hi,si}3_cmp
15754         and *lshrdi3_cmp_rex64 using SWI mode iterator.
15755         (*lshrsi3_cmp_zext): Merge with *lshrsi3_cmp_one_bit_zext.
15756         (*lshr<mode>3_cconly): Merge with *lshr{qi,hi,si}3_one_bit_cconly and
15757         *lshrdi3_one_bit_cconly_rex64. Macroize insn from
15758         *lshr{qi,hi,si}3_cconly and *lshrdi3_cconly_rex64 using
15759         SWI mode iterator.
15761 2010-04-10  Uros Bizjak  <ubizjak@gmail.com>
15763         * config/i386/i386.md (ashr<mode>3): Macroize expander from
15764         ashr{qi,hi,si,di,ti}3_1 using SDWIM mode iterator.
15765         (*ashr<mode>3_doubleword): New insn_and_split_pattern.  Macroize
15766         pattern from *ashr{di,ti}3_1 and corresponding splitters using
15767         DWI mode iterator.
15768         (*ashr<mode>3_doubleword peephole2): Macroize peephole2 pattern
15769         from corresponding peephole2 patterns.
15770         (ashrdi3_cvt): Rename from ashrdi3_63_rex64.
15771         (ashrsi3_cvt): Rename from ashrsi3_31.
15772         (*ashrsi3_cvt_zext): Rename from *ashrsi3_31_zext.
15773         (x86_shift<mode>_adj_3): Macroize expander from x86_shift_adj_3
15774         and x86_64_shift_adj_3 using SWI48 mode iterator.
15775         (*ashr<mode>3_1): Merge with *ashr{qi,hi,si}3_1_one_bit and
15776         *ashrdi3_1_one_bit_rex64. Macroize insn from *ashr{qi,hi,si}3_1
15777         and *ashrdi3_1_rex64 using SWI mode iterator.
15778         (*ashrsi3_1_zext): Merge with *ashrsi3_1_one_bit_zext.
15779         (*ashrqi3_1_slp): Merge with *ashrqi3_1_one_bit_slp.
15780         (*ashr<mode>3_cmp): Merge with *ashr{qi,hi,si}3_one_bit_cmp and
15781         *ashrdi3_one_bit_cmp_rex64. Macroize insn from *ashr{qi,hi,si}3_cmp
15782         and *ashrdi3_cmp_rex64 using SWI mode iterator.
15783         (*ashrsi3_cmp_zext): Merge with *ashrsi3_cmp_one_bit_zext.
15784         (*ashr<mode>3_cconly): Merge with *ashr{qi,hi,si}3_one_bit_cconly and
15785         *ashrdi3_one_bit_cconly_rex64. Macroize insn from
15786         *ashr{qi,hi,si}3_cconly and *ashrdi3_cconly_rex64 using
15787         SWI mode iterator.
15788         (sign_extend splitters): Update for renamed ashr{di,si}3_cvt patterns.
15789         * config/i386/i386.c (ix86_split_ashr): Update for renamed
15790         x86_shift<mode>_adj_3 expanders.
15792 2010-04-10  Wei Guozhi  <carrot@google.com>
15794         PR target/42601
15795         * config/arm/arm.c (arm_pic_static_addr): New function.
15796         (legitimize_pic_address): Call arm_pic_static_addr when it detects
15797         a static symbol.
15798         (arm_output_addr_const_extra): Output expression for new pattern.
15799         * config/arm/arm.md (UNSPEC_SYMBOL_OFFSET): New unspec symbol.
15801 2010-04-10  Bernd Schmidt  <bernds@codesourcery.com>
15803         * ira-costs.c (record_reg_classes): Ignore alternatives that are
15804         not enabled.
15806         * Makefile.in (web.o): Depend on insn-config.h and $(RECOG_H).
15807         * web.c: Include "insn-config.h" and "recog.h".
15808         (union_match_dups): New function.
15809         (web_main): Call it.
15810         (union_defs): Don't try to recognize match_dups.
15812         * reload1.c (eliminate_regs_in_insn): Don't restore an operand
15813         if doing so would replace the entire pattern.
15815 2010-04-09  Uros Bizjak  <ubizjak@gmail.com>
15817         PR target/43707
15818         PR target/43709
15819         * config/i386/i386.md (*ashl<mode>3_doubleword): Split to insn
15820         and splitter pattern.  Change splitter operand 1 predicate to
15821         nonmemory_operand.
15823 2010-04-09  Martin Jambor  <mjambor@suse.cz>
15825         * ipa-cp.c (ipcp_lats_are_equal): Return true also if the two
15826         lattices are addresses of CONST_DECLs with the same initial value.
15827         (ipcp_print_all_lattices): Print values of CONST_DECLs.
15828         * ipa-prop.c (ipa_print_node_jump_functions): Likewise.
15830 2010-04-09  Eric Botcazou  <ebotcazou@adacore.com>
15831             Bernd Schmidt  <bernds@codesourcery.com>
15833         * loop-invariant.c (replace_uses): New static function.
15834         (move_invariant_reg): Use it to ensure we can replace the uses.
15836 2010-04-09  Hariharan Sandanagobalane  <hariharan@picochip.com>
15838         * config/picochip/picochip.c (picochip_rtx_costs): Use correct
15839         function template.
15840         (picochip_override_options): Enable section anchors only above -O1.
15841         (picochip_reorg): Fixed a couple of build warnings.
15843 2010-04-09  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
15845         * configure.ac (plugin -rdynamic test): Log result.
15846         * configure: Regenerate.
15847         * config/sol2.h (LINK_SPEC): Handle -rdynamic.
15848         (RDYNAMIC_SPEC): Define.
15849         * config/sol2-gld.h (RDYNAMIC_SPEC): Redefine.
15851 2010-04-09  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
15853         * configure.ac: Determine Sun ld version numbers.
15854         (comdat_group): Restrict GNU ld version checks to gld.
15855         (comdat_group, *-*-solaris2.1[1-9]*): Enable for Sun ld > 1.1688.
15856         (enable_comdat): Support --enable-comdat.
15857         * configure: Regenerate.
15858         * doc/install.texi (Configuration): Document --enable-comdat.
15860 2010-04-09  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
15862         * config/sparc/sol2-gld.h: Remove SPARC reference.  Rename ...
15863         * config/sol2-gld.h: ... here.
15864         * config.gcc (sparc*-*-solaris2*): Reflect this.
15865         (i[34567]86-*-solaris2*): Use it.
15867 2010-04-09  Steve Ellcey  <sje@cup.hp.com>
15869         * config/ia64/ia64.c (ia64_dfa_new_cycle): Remove unused variable
15870         setup_clocks_p.
15871         (final_emit_insn_group_barriers): Remove unused variable prev_insn.
15873 2010-04-09  Manuel López-Ibáñez  <manu@gcc.gnu.org>
15875         PR 42965
15876         * diagnostic.c (diagnostic_initialize): Initialize
15877         some_warnings_are_errors.
15878         (diagnostic_finish): New.
15879         (diagnostic_action_after_output): Call it before exiting.
15880         (diagnostic_report_diagnostic): Do not print message here. Set
15881         some_warnings_are_errors.
15882         * diagnostic.h (diagnostic_context): Delete
15883         issue_warnings_are_errors_message. Add some_warnings_are_errors.
15884         (diagnostic_finish): Declare.
15885         * toplev.c (toplev_main): Call it before exit.
15887 2010-04-09  Jason Merrill  <jason@redhat.com>
15889         PR c++/42623
15890         * c-common.c (c_sizeof_or_alignof_type): Return error_mark_node
15891         for incomplete type.
15893         PR c++/41788
15894         * stor-layout.c (finalize_record_size): Don't change TYPE_PACKED
15895         based on a warning flag.
15897 2010-04-09  Richard Guenther  <rguenther@suse.de>
15899         * tree-pretty-print.c (dump_generic_node): Dump TYPE_VECTOR_SUBPARTS.
15901 2010-04-09  Iain Sandoe  <iains@gcc.gnu.org>
15903         PR bootstrap/43684
15904         * varasm.c (default_assemble_visibility): Wrap vars that are
15905         set, but unused, by targets without GAS.
15906         * config/rs6000/rs6000.c (paired_emit_vector_compare):
15907         Remove set, but unused, vars.
15908         (rs6000_legitimize_tls_address): Likewise.
15909         (altivec_expand_dst_builtin): Likewise.
15910         * config/darwin.c (machopic_classify_symbol): Likewise.
15911         (machopic_indirection_name): Likewise.
15913 2010-04-09  Uros Bizjak  <ubizjak@gmail.com>
15915         * config/i386/i386.md (DWI): New mode iterator.
15916         (S): New mode attribute.
15917         (shift_operand): Ditto.
15918         (shift_immediate_operand): Ditto.
15919         (ashl_input_operand): Ditto.
15920         (ashl<mode>3): Macroize expander from ashl{qi,hi,si,di,ti}3_1
15921         using SDWIM mode iterator.
15922         (*ashl<mode>3_doubleword): New insn_and_split_pattern.  Macroize
15923         pattern from *ashl{di,ti}3_1 and corresponding splitters using
15924         DWI mode iterator.
15925         (*ashl<mode>3_doubleword peephole2): Macroize peephole2 pattern
15926         from corresponding peephole2 patterns.
15927         (x86_shift<mode>_adj_1): Macroize expander from x86_shift_adj_1
15928         and x86_64_shift_adj_1 using SWI48 mode iterator.
15929         (x86_shift<mode>_adj_2): Ditto.
15930         (*ashldi3_1_rex64): Split TYPE_LEA pattern.
15931         (*ashl<mode>3_1): Macroize insn from *ashlsi3_1 and *ashldi3_1_rex64
15932         using SWI48 mode iterator.
15933         (*ashl<mode>3_cmp): Macroize insn from *ashl{qi,hi,si}3_cmp and
15934         *ashldi3_cmp_rex64 using SWI mode iterator.
15935         (*ashl<mode>3_cconly): Macroize insn from *ashl{qi,hi,si}3_cconly and
15936         *ashldi3_cconly_rex64 using SWI mode iterator.
15937         * config/i386/i386.c (ix86_split_ashl): Update for renamed
15938         x86_shift<mode>_adj_{1,2}.
15939         (ix86_split_ashr): Ditto.
15940         (ix86_split_lshr): Ditto.
15942 2010-04-09  Richard Guenther  <rguenther@suse.de>
15944         * target.h (builtin_conversion): Pass in input and output types.
15945         * targhooks.c (default_builtin_vectorized_conversion): Adjust.
15946         * targhooks.h (default_builtin_vectorized_conversion): Likewise.
15947         * tree-vect-stmts.c (vectorizable_conversion): Adjust.
15948         * doc/tm.texi (TARGET_VECTORIZE_BUILTIN_CONVERSION): Adjust.
15950         * config/i386/i386.c (ix86_vectorize_builtin_conversion): Adjust.
15951         Handle AVX modes.
15952         * config/rs6000/rs6000.c (rs6000_builtin_conversion): Adjust.
15954 2010-04-09  Richard Guenther  <rguenther@suse.de>
15956         PR target/43152
15957         * config/i386/sse.md (vcond<mode>): Handle AVX modes as well.
15959 2010-04-09  Richard Guenther  <rguenther@suse.de>
15961         * tree-vectorizer.h (struct _stmt_vec_info): Document
15962         that vectype is the type of the LHS.
15963         (supportable_widening_operation, supportable_narrowing_operation):
15964         Get both input and output vector types as arguments.
15965         (vect_is_simple_use_1): Declare.
15966         (get_same_sized_vectype): Likewise.
15967         * tree-vect-loop.c (vect_determine_vectorization_factor):
15968         Set STMT_VINFO_VECTYPE to the vector type of the def.
15969         (vectorizable_reduction): Adjust.
15970         * tree-vect-patterns.c (vect_recog_widen_mult_pattern):
15971         Adjust.  Specify the output vector type.
15972         (vect_pattern_recog_1): Adjust.
15973         * tree-vect-stmts.c (get_same_sized_vectype): New function.
15974         (vectorizable_call): Adjust.
15975         (vectorizable_conversion): Likewise.
15976         (vectorizable_operation): Likewise.
15977         (vectorizable_type_demotion): Likewise.
15978         (vectorizable_type_promotion): Likewise.
15979         (vect_analyze_stmt): Set STMT_VINFO_VECTYPE to the vector type of
15980         the def.
15981         (vect_is_simple_use_1): New function.
15982         (supportable_widening_operation): Get both input and output
15983         vector types.
15984         (supportable_narrowing_operation): Likewise.
15985         * tree-vect-slp.c (vect_schedule_slp_instance): Adjust.
15987 2010-04-09  Kai Tietz  <kai.tietz@onevision.com>
15989         * config/i386/cygming.h (TARGET_OS_CPP_BUILTINS): Add
15990         __thiscall and _thiscall as predefined macros.
15991         * config/i386/i386.c (ix86_handle_cconv_attribute): Add
15992         thiscall attribute handling.
15993         (ix86_comp_type_attributes): Likewise.
15994         (ix86_function_regparm): Likewise.
15995         (ix86_return_pops_args): Likewise.
15996         (init_cumulative_args): Likewise.
15997         (find_drap_reg): Likewise.
15998         (ix86_static_chain): Likewise.
15999         (x86_this_parameter): Likewise.
16000         (x86_output_mi_thunk): Likewise.
16001         (ix86_attribute_table): Add description for thiscall attribute.
16002         * config/i386/i386.h (ix86_args): Adjust comment for member fastcall.
16003         * doc/extend.texi: Add documentation for thiscall.
16005 2010-04-09  Manuel López-Ibáñez  <manu@gcc.gnu.org>
16007         PR c++/28584
16008         * c.opt (Wint-to-pointer-cast): Available in C++.
16009         * doc/invoke.texi (Wint-to-pointer-cast): Available in C++.
16011 2010-04-08  Eric Botcazou  <ebotcazou@adacore.com>
16013         * tree.h (TREE_ADDRESSABLE): Document its effect for function types.
16014         * calls.c (expand_call): Pass the function type to aggregate_value_p.
16015         * function.c (aggregate_value_p): Do not honor DECL_BY_REFERENCE on
16016         the target function of a CALL_EXPR.  Honor TREE_ADDRESSABLE on the
16017         function type instead.  Reorder and simplify checks.
16019         * gimplify.c (gimplify_modify_expr_rhs) <WITH_SIZE_EXPR>: New case.
16021 2010-04-08  Jing Yu  <jingyu@google.com>
16022             Zdenek Dvorak  <ook@ucw.cz>
16024         PR tree-optimization/42720
16025         * tree-ssa-loop-unswitch.c (tree_ssa_unswitch_loops): Move one-time
16026         loop unswitch conditions here from ...
16027         (tree_unswitch_single_loop): ... here.
16029 2010-04-08  Sebastian Pop  <sebastian.pop@amd.com>
16031         * tree-if-conv.c: Fix comments and simplify logic.
16033 2010-04-08  Sebastian Pop  <sebastian.pop@amd.com>
16035         * tree-if-conv.c (if_convertible_loop_p): Remove unused parameter.
16036         (tree_if_conversion): Same.  Update call to if_convertible_loop_p.
16037         (main_tree_if_conversion): Update call to tree_if_conversion.
16039 2010-04-08  Manuel López-Ibáñez  <manu@gcc.gnu.org>
16041         PR 42485
16042         * doc/invoke.texi (-b,-V): Delete.
16043         * doc/tm.texi: Do not mention -b.
16044         * gcc.c (display_help): Delete -b and -V.
16045         (process_command): Delete -b and -V.
16046         * gcc.h (DEFAULT_SWITCH_TAKES_ARG): Delete -b and -V.
16048 2010-04-08  Christian Borntraeger  <borntraeger@de.ibm.com>
16049             Wolfgang Gellerich  <gellerich@de.ibm.com>
16051         Implement target hook for loop unrolling
16052         * target.h (loop_unroll_adjust): Add a new target hook function.
16053         * target-def.h (TARGET_LOOP_UNROLL_ADJUST): Likewise.
16054         * doc/tm.texi (TARGET_LOOP_UNROLL_ADJUST): Document it.
16055         * config/s390/s390.c (TARGET_LOOP_UNROLL_ADJUST): Define it.
16056         (s390_loop_unroll_adjust): Implement the new target hook for s390.
16057         * loop-unroll.c (decide_unroll_runtime_iterations): Call loop unroll
16058         target hook.
16059         (decide_unroll_stupid): Likewise.
16061 2010-04-08  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
16063         PR target/43643
16064         * config/i386/gmon-sol2.c [__x86_64__]: Properly restore %rcx.
16066 2010-04-08  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
16068         * doc/install.texi (Specific, i?86-*-solaris2.10): Fix grammar.
16069         (Specific, *-*-solaris2*): Likewise.
16070         Don't prefer Sun as over GNU as.
16072 2010-04-08  Wolfgang Gellerich  <gellerich@de.ibm.com>
16074         * config/s390/s390.c (override_options): Adjust the z10 defaults
16075         for max-unroll-times, max-completely-peeled-insns
16076         and max-completely-peel-times.
16078 2010-04-08  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
16080         * config/s390/s390.c (s390_expand_movmem): Issue prefetch
16081         instructions for z10.
16082         (s390_expand_setmem): Likewise.
16083         (s390_expand_cmpmem): Likewise.
16085 2010-04-08  Richard Guenther  <rguenther@suse.de>
16087         PR tree-optimization/43679
16088         * tree-ssa-pre.c (eliminate): Only propagate copies.
16090 2010-04-08  Jakub Jelinek  <jakub@redhat.com>
16092         PR bootstrap/43681
16093         * expr.c (block_move_libcall_safe_for_call_parm): Avoid
16094         set but not used variable warning.
16096 2010-04-08  Wei Guozhi  <carrot@google.com>
16098         PR target/41653
16099         * config/arm/arm.c (thumb1_size_rtx_costs): New function.
16100         (arm_size_rtx_costs): Call the new function when optimized for size.
16102 2010-04-08  Jakub Jelinek  <jakub@redhat.com>
16104         PR debug/43670
16105         * cfgexpand.c (expand_debug_expr): If for non-NULL offset
16106         op0 is not a MEM, just return NULL instead of assertion
16107         failure.
16108         (discover_nonconstant_array_refs): Don't walk debug stmts.
16110 2010-04-08  Doug Kwan  <dougkwan@google.com>
16112         * configure.ac: Recognize gold and do not use its version number
16113         to test ld features.
16114         * configure: Regenerate.
16116 2010-04-08  Maxim Kuvyrkov  <maxim@codesourcery.com>
16118         PR middle-end/40815
16119         * tree-ssa-reassoc.c (broken_up_substracts): Rename to plus_negates.
16120         (negate_value): Move code to push elements to broken_up_substracts ...
16121         (eliminate_plus_minus_pair): ... here.  Push operands that have no
16122         negative pair to plus_negates.
16123         (repropagate_negates, init_reassoc, fini_reassoc): Update.
16125 2010-04-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16127         * doc/install.texi (Configuration): Move description of
16128         --enable-lto, --with-libelf*, --enable-gold from Java section to
16129         general section.
16131         * doc/generic.texi (Working with declarations)
16132         (Function Properties, C and C++ Trees): Fix typos.
16133         * doc/sourcebuild.texi (Top Level): Likewise.
16135 2010-04-07  Jakub Jelinek  <jakub@redhat.com>
16137         PR c/18624
16138         * tree.h (DECL_READ_P): Define.
16139         (struct tree_decl_common): Add decl_read_flag.
16140         * c-decl.c (pop_scope): If TREE_USED but !DECL_READ_P, issue
16141         a set but not used warning.
16142         (merge_decls): Merge DECL_READ_P flag.
16143         (finish_decl, build_compound_literal): Set DECL_READ_P flag.
16144         (finish_function): Issue -Wunused-but-set-parameter diagnostics.
16145         * c-common.c (handle_used_attribute, handle_unused_attribute):
16146         Likewise.
16147         * c-tree.h (default_function_array_read_conversion, mark_exp_read):
16148         New prototypes.
16149         * c-typeck.c (default_function_array_read_conversion, mark_exp_read):
16150         New functions.
16151         (default_conversion, c_process_expr_stmt): Call mark_exp_read.
16152         * c-parser.c (c_parser_initializer, c_parser_expr_no_commas,
16153         c_parser_binary_expression, c_parser_cast_expression,
16154         c_parser_expr_list, c_parser_omp_atomic, c_parser_omp_for_loop):
16155         Call default_function_array_read_conversion instead of
16156         default_function_array_conversion where needed.
16157         (c_parser_unary_expression, c_parser_conditional_expression,
16158         c_parser_postfix_expression_after_primary, c_parser_initelt):
16159         Likewise.  Call mark_exp_read where needed.
16160         (c_parser_statement_after_labels, c_parser_asm_operands,
16161         c_parser_typeof_specifier, c_parser_sizeof_expression,
16162         c_parser_alignof_expression, c_parser_initval): Call mark_exp_read
16163         where needed.
16164         * common.opt (Wunused-but-set-variable, Wunused-but-set-parameter):
16165         New.
16166         * toplev.c (warn_unused_but_set_variable): Default to warn_unused.
16167         (warn_unused_but_set_parameter): Default to warn_unused
16168         && extra_warnings.
16169         * doc/invoke.texi: Document -Wunused-but-set-variable and
16170         -Wunused-but-set-parameter.
16172         * tree-ssa-pre.c (my_rev_post_order_compute): Remove set but not
16173         used count variable.
16174         * genemit.c (gen_expand, gen_split): Avoid set but not used warnings
16175         when operandN variables aren't used in the body of the expander
16176         or splitter.
16177         * tree-outof-ssa.c (FOR_EACH_ELIM_GRAPH_SUCC,
16178         FOR_EACH_ELIM_GRAPH_PRED): Avoid set but not used warnings.
16179         * tree-ssa-operands.h (FOR_EACH_SSA_TREE_OPERAND): Likewise.
16180         * tree-flow.h (FOR_EACH_IMM_USE_FAST, FOR_EACH_IMM_USE_STMT,
16181         FOR_EACH_IMM_USE_ON_STMT): Likewise.
16182         * tree.h (FOR_EACH_CONSTRUCTOR_ELT): Likewise.
16183         * tree.c (PROCESS_ARG): Likewise.
16185 2010-04-07  Simon Baldwin  <simonb@google.com>
16187         * diagnostic.h (diagnostic_override_option_index): New macro to
16188         set a diagnostic's option_index.
16189         * c-tree.h (c_cpp_error): Add warning reason argument.
16190         * opts.c (_warning_as_error_callback): New.
16191         (register_warning_as_error_callback): Store callback for
16192         warnings enabled via enable_warning_as_error.
16193         (enable_warning_as_error): Call callback, minor code tidy.
16194         * opts.h (register_warning_as_error_callback): Declare.
16195         * c-opts.c (warning_as_error_callback): New, set cpp_opts flag in
16196         response to -Werror=.
16197         (c_common_init_options): Register warning_as_error_callback in opts.c.
16198         * common.opt: Add -Wno-cpp option.
16199         * c-common.c (struct reason_option_codes_t): Map cpp warning
16200         reason codes to gcc option indexes.
16201         * (c_option_controlling_cpp_error): New function, lookup the gcc
16202         option index for a cpp warning reason code.
16203         * (c_cpp_error): Add warning reason argument, call
16204         c_option_controlling_cpp_error for diagnostic_override_option_index.
16205         * doc/invoke.texi: Document -Wno-cpp.
16207 2010-04-07  Richard Guenther  <rguenther@suse.de>
16209         * ipa-reference.c (mark_load): Use get_base_address.
16210         (mark_store): Likewise.
16212         * tree-ssa-ccp.c (gimplify_and_update_call_from_tree): Avoid
16213         inserting GIMPLE_NOPs into the IL.
16214         * tree-ssa-structalias.c (get_constraint_for_component_ref):
16215         Explicitly strip handled components and indirect references.
16217         * fold-const.c (fold_unary_loc): Do not strip qualifiers when
16218         folding address expressions.
16219         * gimple.c (gimple_ior_addresses_taken_1): Use get_base_address.
16220         * tree-ssa-alias.c (decl_refs_may_alias_p): Do not use
16221         operand_equal_p to compare decls.
16222         (ptr_deref_may_alias_decl_p): Likewise.
16223         * tree-ssa-operands.c (get_asm_expr_operands): Simplify
16224         * tree-ssa-forwprop.c (forward_propagate_into_gimple_cond):
16225         Handle reversed comparison ops.
16226         * tree-sra.c (asm_visit_addr): Use get_base_address.
16227         * ipa-prop.c (visit_store_addr_for_mod_analysis): Use get_base_address.
16228         * ipa-reference.c (mark_address): Use get_base_address.
16230 2010-04-07  Richard Guenther  <rguenther@suse.de>
16232         * tree-ssa-forwprop.c (forward_propagate_addr_expr):
16233         Propagate constants everywhere.
16235 2010-04-07  Jakub Jelinek  <jakub@redhat.com>
16237         PR debug/43516
16238         * tree.c (MAX_INT_CACHED_PREC): Define.
16239         (nonstandard_integer_type_cache): New array.
16240         (build_nonstandard_integer_type): Cache results for precision
16241         <= MAX_INT_CACHED_PREC.
16243 2010-04-07  Richard Guenther  <rguenther@suse.de>
16245         * doc/invoke.texi (-fargument-alias, -fargument-noalias,
16246         -fargument-noalias-global, -fargument-noalias-anything): Remove.
16247         * common.opt: Likewise.
16248         * tree-ssa-structalias.c (intra_create_variable_infos): Adjust comment.
16249         * alias.c (base_alias_check): Remove flag_argument_noalias handling.
16250         (nonoverlapping_memrefs_p): Likewise.
16251         * emit-rtl.c (set_mem_attributes_minus_bitpos): Likewise.
16252         * opts.c (common_handle_option): Handle OPT_fargument_alias,
16253         OPT_fargument_noalias, OPT_fargument_noalias_anything and
16254         OPT_fargument_noalias_global for backward compatibility.
16256 2010-04-07  Richard Guenther  <rguenther@suse.de>
16258         PR tree-optimization/43270
16259         * tree-vrp.c (check_array_ref): Fix flexible array member detection.
16260         * tree-ssa-sccvn.h (fully_constant_vn_reference_p): Declare.
16261         * tree-ssa-pre.c (phi_translate_1): Adjust.
16262         (fully_constant_expression): Split out vn_reference handling to ...
16263         * tree-ssa-sccvn.c (fully_constant_vn_reference_p): ... here.
16264         Fold reads from constant strings.
16265         (vn_reference_lookup): Handle fully constant references.
16266         (vn_reference_lookup_pieces): Likewise.
16267         * Makefile.in (expmed.o-warn): Add -Wno-error.
16269 2010-04-07  Martin Jambor  <mjambor@suse.cz>
16271         * tree-sra.c (find_param_candidates): Allow scalar va_list types.
16273 2010-04-07  Iain Sandoe  <iains@gcc.gnu.org>
16275         PR driver/41594
16276         * gcc.c: Add -static-libstdc++ to list of recognized options.
16278 2010-04-07  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
16280         * config.gcc (i[34567]86-*-solaris2*): Default with_tune_32 to generic.
16282 2010-04-07  Richard Guenther  <rguenther@suse.de>
16284         PR middle-end/42617
16285         * expr.c (expand_expr_real_1): For TARGET_MEM_REFs with pointer
16286         bases build simple mem attributes to retain points-to information.
16288 2010-04-07  Richard Guenther  <rguenther@suse.de>
16290         PR middle-end/42617
16291         * alias.c (ao_ref_from_mem): Without MEM_OFFSET or MEM_SIZE
16292         preserve points-to related information.
16294 2010-04-07  Richard Guenther  <rguenther@suse.de>
16296         PR middle-end/42617
16297         * emit-rtl.c (set_mem_attributes_minus_bitpos): Do not
16298         discard plain indirect references.
16299         * fold-const.c (operand_equal_p): Guard against NULL_TREE type.
16300         * tree.c (tree_nop_conversion): Likewise.
16302 2010-04-07  Dodji Seketeli  <dodji@redhat.com>
16304         PR debug/43628
16305         * dwarf2out.c (modified_type_die): Ignore artificial typedefs.
16307 2010-04-06  Kai Tietz  <kai.tietz@onevision.com>
16309         * config/i386/i386.c (ix86_handle_cconv_attribute): Ignore
16310         calling convention attributes on METHOD_TYPEs for w64 ABI, too.
16312 2010-04-07  Sebastian Pop  <sebastian.pop@amd.com>
16314         * tree-if-conv.c: Fix indentation and comments.
16316 2010-04-07  Sebastian Pop  <sebastian.pop@amd.com>
16318         * tree-if-conv.c: Sort static functions in topological order.
16320 2010-04-07  Sebastian Pop  <sebastian.pop@amd.com>
16322         * tree-if-conv.c: Fix indentation and comments.
16324 2010-04-06  Sebastian Pop  <sebastian.pop@amd.com>
16326         PR middle-end/43519
16327         * graphite-clast-to-gimple.c (max_signed_precision_type): Use
16328         lang_hooks.types.type_for_size instead of
16329         build_nonstandard_integer_type.
16330         When converting an unsigned type to signed, double its precision.
16331         (gcc_type_for_interval): Use lang_hooks.types.type_for_size.
16332         (gcc_type_for_iv_of_clast_loop): Call max_signed_precision_type.
16333         (graphite_create_new_loop_guard): When ub + 1 wraps around,
16334         use lb <= ub.
16336 2010-04-06  Sebastian Pop  <sebastian.pop@amd.com>
16338         PR middle-end/43519
16339         * graphite-clast-to-gimple.c (graphite_create_new_loop_guard): Use
16340         POINTER_PLUS_EXPR for pointer types.
16342 2010-04-06  Sebastian Pop  <sebastian.pop@amd.com>
16344         PR middle-end/43519
16345         * Makefile.in (graphite-clast-to-gimple.o): Depends on langhooks.h.
16346         * graphite-clast-to-gimple.c: Include langhooks.h.
16347         (max_signed_precision_type): New.
16348         (max_precision_type): Takes two types as arguments.
16349         (precision_for_value): New.
16350         (precision_for_interval): New.
16351         (gcc_type_for_interval): New.
16352         (gcc_type_for_value): New.
16353         (gcc_type_for_clast_term): New.
16354         (gcc_type_for_clast_red): New.
16355         (gcc_type_for_clast_bin): New.
16356         (gcc_type_for_clast_expr): Split up into several functions.
16357         (gcc_type_for_clast_eq): Rewritten.
16358         (compute_bounds_for_level): New.
16359         (compute_type_for_level_1): New.
16360         (compute_type_for_level): New.
16361         (gcc_type_for_cloog_iv): Removed.
16362         (gcc_type_for_iv_of_clast_loop): Rewritten.
16363         (graphite_create_new_loop): Compute the lower and upper bound types
16364         with gcc_type_for_clast_expr.
16365         (graphite_create_new_loop_guard): Same.
16366         (find_cloog_iv_in_expr): Removed.
16367         (compute_cloog_iv_types_1): Removed.
16368         (compute_cloog_iv_types): Removed.
16369         (gloog): Do not call compute_cloog_iv_types.
16370         * graphite-sese-to-poly.c (new_gimple_bb): Do not initialize
16371         GBB_CLOOG_IV_TYPES.
16372         (free_data_refs_aux): Do not free GBB_CLOOG_IV_TYPES.
16373         * sese.h (struct gimple_bb): Removed field cloog_iv_types.
16374         (GBB_CLOOG_IV_TYPES): Removed.
16376 2010-04-06  Sebastian Pop  <sebastian.pop@amd.com>
16378         * graphite-sese-to-poly.c (rewrite_close_phi_out_of_ssa): Assert that
16379         gimple_phi_num_args of the loop close SSA phi node is equal to 1.
16380         (detect_commutative_reduction): Same.
16382 2010-04-06  Sebastian Pop  <sebastian.pop@amd.com>
16384         * graphite-clast-to-gimple.c (graphite_verify): Remove redundant
16385         call to verify_ssa.  Invoke verify_loop_closed_ssa with an extra
16386         argument.
16387         * graphite-scop-detection.c (canonicalize_loop_closed_ssa_form): Same.
16388         * graphite-sese-to-poly.c (rewrite_reductions_out_of_ssa): Same.
16389         (rewrite_commutative_reductions_out_of_ssa): Same.
16390         * passes.c (execute_function_todo): Call verify_ssa for every pass
16391         in the LNO.  Invoke verify_loop_closed_ssa with an extra argument.
16392         * tree-flow.h (verify_loop_closed_ssa): Update declaration.
16393         * tree-parloops.c (parallelize_loops): Invoke verify_loop_closed_ssa
16394         with an extra argument.
16395         * tree-ssa-loop-manip.c (check_loop_closed_ssa_stmt): Same.  Call
16396         verify_ssa only when the extra argument is true.
16397         (gimple_duplicate_loop_to_header_edge): Invoke verify_loop_closed_ssa
16398         with an extra argument.
16399         (tree_transform_and_unroll_loop): Same.
16401 2010-04-06  Sebastian Pop  <sebastian.pop@amd.com>
16403         * passes.c (execute_function_todo): Call verify_loop_closed_ssa
16404         for all the passes of the LNO having LOOP_CLOSED_SSA.
16405         * tree-if-conv.c (pass_if_conversion): Remove TODO_verify_loops.
16406         * tree-loop-distribution.c (pass_loop_distribution): Same.
16407         * tree-pass.h (TODO_verify_loops): Removed.
16408         * tree-ssa-loop.c (pass_tree_loop_init): Same.
16409         (pass_lim): Same.
16410         (pass_tree_unswitch): Same.
16411         (pass_predcom): Same.
16412         (pass_vectorize): Same.
16413         (pass_linear_transform): Same.
16414         (pass_graphite_transforms): Same.
16415         (pass_iv_canon): Same.
16416         (pass_complete_unroll): Same.
16417         (pass_complete_unrolli): Same.
16418         (pass_parallelize_loops): Same.
16419         (pass_loop_prefetch): Same.
16420         (pass_iv_optimize): Same.
16422 2010-04-06  Changpeng Fang  <changpeng.fang@amd.com>
16424         PR middle-end/32824
16425         * passes.c (init_optimization_passes): Move pass_lim before
16426         pass_copy_prop and pass_dce_loop.
16428 2010-04-06  Jakub Jelinek  <jakub@redhat.com>
16430         PR target/43667
16431         * config/i386/i386.c (bdesc_multi_arg): Use OPTION_MASK_ISA_XOP
16432         instead of OPTION_MASK_ISA_AVX for __builtin_ia32_vpermil2p*.
16433         (ix86_expand_args_builtin): Use V*_FTYPE_* enum codes instead of
16434         MULTI_* defines for 4 argument vpermil2p* builtins.
16436 2010-04-06  Uros Bizjak  <ubizjak@gmail.com>
16438         * config/i386/i386-protos.h (x86_maybe_negate_const_int): Declare.
16439         * config/i386/i386.c (x86_maybe_negate_const_int): New.
16440         (x86_output_mi_thunk): Use x86_maybe_negate_const_int.
16441         * config/i386/i386.md (*add<mode>_1, *addsi_1_zext, *addhi_1,
16442         *addhi_1_lea, *addqi_1, *addqi_1_lea, *addqi_1_slp, *add<mode>_2,
16443         *addsi_2_zext, *addhi_2, *addqi_2, *add<mode>_3, *addsi_3_zext,
16444         *addhi_3, *addqi_3,*add<mode>_5, *addhi_5, *addqi_5):
16445         Use x86_maybe_negate_const_int to output insn mnemonic.
16446         (*adddi_4, *addsi_4, *addhi_4, *addqi_4): Ditto.  Remove overflow
16447         check from instruction predicate.  Update comments.
16448         * config/i386/sync.md (sync_add<mode>): Use
16449         x86_maybe_negate_const_int to output insn mnemonic.
16451 2010-04-06  Jan Hubicka  <jh@suse.cz>
16453         PR tree-optimization/42906
16454         * tree-ssa-dce.c (mark_control_dependent_edges_necessary): Add
16455         IGNORE_SELF argument.  Set visited_control_parents for fully
16456         processed BBs.
16457         (find_obviously_necessary_stmts): Update call of
16458         mark_control_dependent_edges_necessary.
16459         (propagate_necessity): Likewise.  Handle PHI edges more curefully.
16461 2010-04-06  Uros Bizjak  <ubizjak@gmail.com>
16463         * config/i386/i386.md: Remove comment about 'e' and 'E'
16464         operand modifier.
16466 2010-04-06  Richard Guenther  <rguenther@suse.de>
16468         PR tree-optimization/43627
16469         * tree-vrp.c (extract_range_from_unary_expr): Widenings
16470         of [1, +INF(OVF)] go to [1, +INF(OVF)] of the wider type,
16471         not varying.
16473 2010-04-06  Jakub Jelinek  <jakub@redhat.com>
16475         * BASE-VER: Change to 4.6.0.
16477         PR target/43638
16478         * config/i386/i386.c (print_operand): Remove 'e' and 'E' code
16479         handling.
16481 2010-04-06  Richard Guenther  <rguenther@suse.de>
16483         PR middle-end/43661
16484         * fold-const.c (fold_comparison): Handle X * 0 CMP 0.
16486 2010-04-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16488         * doc/invoke.texi (Optimize Options): Document that LTO
16489         won't remove object access purely due to incompatible
16490         declarations.
16492 2010-04-04  Matthias Klose  <doko@ubuntu.com>
16494         * graphite-sese-to-poly.c (translate_scalar_reduction_to_array):
16495         Initialize variable.
16497 2010-04-03  Richard Guenther  <rguenther@suse.de>
16499         PR middle-end/42509
16500         * alias.c (nonoverlapping_memrefs_p): For spill-slot accesses
16501         require a non-NULL MEM_OFFSET.
16503 2010-04-02  Steven Bosscher  <steven@gcc.gnu.org>
16505         * ada/gcc-interface/Make-lang.in, alias.c, attribs.c, auto-inc-dec.c,
16506         basic-block.h, bb-reorder.c, calls.c, c-common.c, cgraph.h,
16507         collect2.h, config/alpha/alpha.c, config/alpha/alpha.md,
16508         config/alpha/predicates.md, config/arm/arm.md,
16509         config/arm/lib1funcs.asm, config/arm/neon-schedgen.ml,
16510         config/avr/avr.c, config/avr/avr.md, config/bfin/bfin.c,
16511         config/darwin9.h, config/darwin.c, config/darwin.h,
16512         config/h8300/h8300.c, config/i386/cpuid.h, config/i386/cygming.h,
16513         config/i386/cygwin.h, config/i386/mingw32.h, config/i386/msformat-c.c,
16514         config/i386/sol2-10.h, config/i386/xopintrin.h, config/ia64/ia64.c,
16515         config/ia64/ia64.md, config/ia64/sync.md, config/mep/mep.c,
16516         config/mips/mips.md, config/mn10300/mn10300.c,
16517         config/mn10300/mn10300.h, config/pa/pa.c, config/pa/pa.md,
16518         config/rs6000/aix.h, config/rs6000/dfp.md,
16519         config/rs6000/rs6000-builtin.def, config/rs6000/rs6000-c.c,
16520         config/rs6000/vector.md, config/rtems.h, config/rx/rx.md,
16521         config/s390/s390.md, config/sol2-c.c, config/sparc/sol2-bi.h,
16522         config/sparc/sol2-gas.h, config/sparc/sparc.h, config/sparc/sparc.md,
16523         config/sparc/sparc-protos.h, config/spu/spu.c, config/spu/spu-c.c,
16524         config/t-darwin, convert.c, c.opt, c-opts.c, cp/Make-lang.in,
16525         c-pretty-print.c, c-typeck.c, df-core.c, df-scan.c, diagnostic.c,
16526         diagnostic.h, doc/cppopts.texi, doc/cpp.texi, doc/extend.texi,
16527         doc/gimple.texi, doc/languages.texi, doc/plugins.texi, doc/rtl.texi,
16528         doc/standards.texi, doc/tree-ssa.texi, doc/trouble.texi, dominance.c,
16529         fold-const.c, fortran/Make-lang.in, fwprop.c, gcc-plugin.h,
16530         gensupport.c, gimple.h, gimple-iterator.c, graphite.c,
16531         graphite-clast-to-gimple.c, graphite-clast-to-gimple.h,
16532         graphite-dependences.c, graphite-poly.c, graphite-poly.h,
16533         graphite-ppl.c, graphite-ppl.h, graphite-scop-detection.c,
16534         graphite-sese-to-poly.c, graphite-sese-to-poly.h, ifcvt.c, intl.c,
16535         intl.h, ipa.c, ipa-cp.c, ipa-inline.c, ipa-prop.c, ipa-prop.h,
16536         ipa-pure-const.c, ipa-reference.c, ipa-type-escape.c, ira-color.c,
16537         ira-conflicts.c, ira-lives.c, java/Make-lang.in, lambda-code.c,
16538         loop-invariant.c, lto/Make-lang.in, lto-streamer.h, lto-streamer-in.c,
16539         objc/Make-lang.in, objcp/Make-lang.in, omp-low.c, optc-gen.awk,
16540         opt-functions.awk, opth-gen.awk, params.def, passes.c,
16541         postreload-gcse.c, print-tree.c, recog.c, regrename.c, reload.h,
16542         rtl.def, sched-int.h, sched-rgn.c, sel-sched-dump.c, sese.c, sese.h,
16543         store-motion.c, stor-layout.c, tree-cfgcleanup.c, tree-chrec.c,
16544         tree-complex.c, tree-data-ref.c, tree.def, tree-eh.c, tree-flow.h,
16545         tree-flow-inline.h, tree.h, tree-loop-distribution.c, tree-outof-ssa.c,
16546         tree-parloops.c, tree-pass.h, tree-predcom.c, tree-profile.c,
16547         tree-scalar-evolution.c, tree-ssa-address.c, tree-ssa-alias.c,
16548         tree-ssa-coalesce.c, tree-ssa-copy.c, tree-ssa-dce.c, tree-ssa-dom.c,
16549         tree-ssa-dse.c, tree-ssa-loop-im.c, tree-ssa-loop-ivcanon.c,
16550         tree-ssa-loop-manip.c, tree-ssa-math-opts.c, tree-ssa-operands.c,
16551         tree-ssa-pre.c, tree-ssa-sccvn.c, tree-ssa-structalias.c,
16552         tree-ssa-uncprop.c, tree-tailcall.c, tree-vect-data-refs.c,
16553         tree-vect-loop.c, tree-vectorizer.h, tree-vect-slp.c, tree-vrp.c,
16554         unwind-dw2-fde-darwin.c, varpool.c: Update copyright years.
16556 2010-04-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16558         PR other/43620
16559         * doc/install.texi (Prerequisites): Bump Automake version to 1.11.1.
16560         * aclocal.m4: Regenerate.
16562 2010-04-02  Richard Guenther  <rguenther@suse.de>
16564         PR tree-optimization/43629
16565         * tree-ssa-ccp.c (likely_value): Reset all_undefined_operands
16566         if we have seen a constant value.
16568 2010-04-02  Joseph Myers  <joseph@codesourcery.com>
16570         * read-rtl.c (read_rtx_1): Give an error for EOF while looking for ']'.
16572 2010-04-02  Richard Earnshaw  <rearnsha@arm.com>
16574         PR target/43469
16575         * arm.c (legitimize_tls_address): Adjust call to
16576         gen_tls_load_dot_plus_four.
16577         (arm_note_pic_base): New function.
16578         (arm_cannot_copy_insn_p): Use it.
16579         * thumb2.md (tls_load_dot_plus_four): Rework to avoid use of '+' in
16580         constraint.
16582 2010-04-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16584         PR bootstrap/43531
16586         Revert:
16587         2009-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16589         * Makefile.in ($(out_object_file)): Depend on
16590         gt-$(basename $(notdir $(out_file))).h.
16592 2010-04-01  Ralf Corsépius  <ralf.corsepius@rtems.org>
16594         * config.gcc (lm32-*-rtems*): Add t-lm32.
16596 2010-04-01  Joel Sherrill  <joel.sherrill@oarcorp.com>
16598         * config.gcc: Add lm32-*-rtems*.
16599         * config/lm32/rtems.h: New file.
16601 2010-04-01  Dave Korn  <dave.korn.cygwin@gmail.com>
16603         PR target/42609
16604         * config/i386/cygwin.h (CXX_WRAP_SPEC): Disable spec when -mno-cygwin.
16606 2010-04-01  Jakub Jelinek  <jakub@redhat.com>
16608         * dwarf2out.c (output_compilation_unit_header): For
16609         -gdwarf-4 use version 4 instead of version 3.
16610         (output_line_info): For version 4 and above emit additional
16611         maximum ops per insn header field.
16612         (DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN): Define.
16614         * dwarf2out.c (is_c_family, is_java): Remove.
16615         (lower_bound_default): New function.
16616         (add_bound_info, gen_descr_array_type_die): Use it.
16618 2010-04-01  Dodji Seketeli  <dodji@redhat.com>
16620         PR debug/43325
16621         * dwarf2out.c (gen_variable_die): Allow debug info for variable
16622         re-declaration when it happens in a function.
16624 2010-04-01  Aldy Hernandez  <aldyh@redhat.com>
16626         * cgraph.c (cgraph_add_function_insertion_hook): Update comment.
16627         (cgraph_remove_function_insertion_hook): Same.
16628         (cgraph_call_function_insertion_hooks): Same.
16630 2010-04-01  Richard Guenther  <rguenther@suse.de>
16632         PR middle-end/43614
16633         * tree-ssa-address.c (copy_mem_ref_info): Copy TREE_SIDE_EFFECTS
16634         and TREE_THIS_VOLATILE.
16635         (copy_ref_info): Likewise.
16636         * tree-ssa-operands.c (get_tmr_operands): Check TREE_THIS_VOLATILE.
16637         * tree.c (build6_stat): Ignore side-effects of all but arg5
16638         for TARGET_MEM_REF.  Set TREE_THIS_VOLATILE from arg5 of
16639         TARGET_MEM_REF.
16641 2010-04-01  Richard Guenther  <rguenther@suse.de>
16643         PR tree-optimization/43607
16644         * ipa-type-escape.c (check_call): Do not access non-existing
16645         arguments.
16647 2010-04-01  Richard Guenther  <rguenther@suse.de>
16649         PR middle-end/43602
16650         Revert
16651         2010-03-30  Seongbae Park  <seongbae.park@gmail.com>
16652                     Jack Howarth  <howarth@bromo.med.uc.edu>
16654         * tree-profile.c (tree_init_ic_make_global_vars): Make static
16655         variables TLS.
16657 2010-04-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
16659         * doc/install.texi (Prerequisites): Document libelf usability on
16660         IRIX 5/6 and Solaris 2.
16661         (Specific, i?86-*-solaris2.10): No 64-bit default configuration.
16662         Update GNU as, GNU ld requirements.
16663         (Specific, *-*-solaris2*): Document Solaris 7 obsoletion, removal.
16664         Document Sun Studio compiler download.
16665         Update and simplify as, ld recommendations.
16666         (Specific, *-*-solaris2.7): Note obsoletion, removal.
16668 2010-04-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
16670         * config.gcc (i[34567]86-*-solaris2*): Default with_arch_32,
16671         with_tune_32 to pentium4.
16673 2010-04-01  Uros Bizjak  <ubizjak@gmail.com>
16675         * config/i386/cpuid.h (__get_cpuid_max): Move misplaced comment.
16677 2010-04-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
16679         * doc/install.texi (Specific, mips-sgi-irix5): Document IRIX 5
16680         obsoletion, removal.
16681         Update IDO URL.
16682         Document GNU as requirement.
16683         Update configure requirements.
16684         (Specific, mips-sgi-irix6): Document IRIX 6 < 6.5 obsoletion, removal.
16685         Recomment IRIX 6.5.18+.
16686         Document IDF/IDL requirement.
16687         Document GNU as requirement.
16688         Document GNU ld bootstrap failure.
16689         Remove freeware.sgi.com reference.
16691 2010-04-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
16693         * doc/install.texi (Specific, alpha*-dec-osf*): Document Tru64
16694         UNIX V4.0, V5.0 obsoletion, removal.
16695         Remove --with-gc=simple reference.
16696         Update VM requirements during bootstrap.
16697         Remove -oldas bootstrap description.
16698         Update binutils reference.
16699         Remove comparison failure note.
16701 2010-03-31  Richard Guenther  <rguenther@suse.de>
16702             Zdenek Dvorak  <ook@ucw.cz>
16703             Sebastian Pop  <sebastian.pop@amd.com>
16705         PR middle-end/43464
16706         * tree-ssa-copy.c (init_copy_prop): Handle loop close phi nodes
16707         with multiple arguments.
16708         (execute_copy_prop): Remove call to rewrite_into_loop_closed_ssa.
16710 2010-03-31  Sebastian Pop  <sebastian.pop@amd.com>
16712         * graphite-dependences.c (print_pddr): Call print_pdr with an
16713         extra argument.
16714         * graphite-poly.c (debug_pdr): Add an extra argument for the
16715         verbosity level.
16716         (print_pdr): Same.
16717         (print_pbb_domain): Same.
16718         (print_pbb): Same.
16719         (print_scop_context): Same.
16720         (print_scop): Same.
16721         (print_cloog): Same.
16722         (debug_pbb_domain): Same.
16723         (debug_pbb): Same.
16724         (print_pdrs): Same.
16725         (debug_pdrs): Same.
16726         (debug_scop_context): Same.
16727         (debug_scop): Same.
16728         (debug_cloog): Same.
16729         (print_scop_params): Same.
16730         (debug_scop_params): Same.
16731         (print_iteration_domain): Same.
16732         (print_iteration_domains): Same.
16733         (debug_iteration_domain): Same.
16734         (debug_iteration_domains): Same.
16735         (print_scattering_function): Same.
16736         (print_scattering_functions): Same.
16737         (debug_scattering_function): Same.
16738         (debug_scattering_functions): Same.
16739         * graphite-poly.h (debug_pdr): Update declaration.
16740         (print_pdr): Same.
16741         (print_pbb_domain): Same.
16742         (print_pbb): Same.
16743         (print_scop_context): Same.
16744         (print_scop): Same.
16745         (print_cloog): Same.
16746         (debug_pbb_domain): Same.
16747         (debug_pbb): Same.
16748         (print_pdrs): Same.
16749         (debug_pdrs): Same.
16750         (debug_scop_context): Same.
16751         (debug_scop): Same.
16752         (debug_cloog): Same.
16753         (print_scop_params): Same.
16754         (debug_scop_params): Same.
16755         (print_iteration_domain): Same.
16756         (print_iteration_domains): Same.
16757         (debug_iteration_domain): Same.
16758         (debug_iteration_domains): Same.
16759         (print_scattering_function): Same.
16760         (print_scattering_functions): Same.
16761         (debug_scattering_function): Same.
16762         (debug_scattering_functions): Same.
16764 2010-03-31  Sebastian Pop  <sebastian.pop@amd.com>
16766         * graphite-poly.c (print_scattering_function_1): New.
16767         (print_scattering_function): Call it.
16768         (print_scop_params): Remove spaces at the end of lines.
16769         (print_cloog): New.
16770         (debug_cloog): New.
16771         * graphite-poly.h (print_cloog): Declared.
16772         (debug_cloog): Declared.
16774 2010-03-31  Sebastian Pop  <sebastian.pop@amd.com>
16776         * graphite-sese-to-poly.c (graphite_loop_normal_form): Add the IV bump
16777         in loop->header.
16778         * tree-flow.h (canonicalize_loop_ivs): Updated declaration.
16779         * tree-parloops.c (gen_parallel_loop): Add the IV bump in loop->latch.
16780         * tree-ssa-loop-manip.c (canonicalize_loop_ivs): Add a new parameter
16781         to switch between adding the IV bump in loop->latch or in loop->header.
16783 2010-03-31  Sebastian Pop  <sebastian.pop@amd.com>
16785         * graphite-poly.c (print_scattering_function): Pretty print following
16786         the scoplib format.
16787         (print_pdr): Same.
16788         (print_pbb_domain): Same.
16789         (dump_gbb_cases): Same.
16790         (dump_gbb_conditions): Same.
16791         (print_pdrs): Same.
16792         (print_pbb): Same.
16793         (print_scop_params): Same.
16794         (print_scop_context): Same.
16795         (print_scop): Same.
16796         (print_pbb_body): New.
16797         (lst_indent_to): New.
16798         (print_lst): Start new lines with a #.
16799         * graphite-poly.h (pbb_bb): New.
16800         (pbb_index): Use pbb_bb.
16801         * graphite-ppl.c (ppl_print_powerset_matrix): Print the number of
16802         disjuncts.
16803         * tree-data-ref.c (dump_data_reference): Start new lines with a #.
16805 2010-03-31  Jakub Jelinek  <jakub@redhat.com>
16807         * dwarf2out.c (size_of_die): For -gdwarf-4 use
16808         uleb128 size instead of fixed 1 or 2 for dw_val_class_loc
16809         and 0 instead of 1 for dw_val_class_flag.
16810         (value_format): For -gdwarf-4 use DW_FORM_sec_offset for
16811         dw_val_class_range_list, dw_val_class_loc_list,
16812         dw_val_class_lineptr and dw_val_class_macptr, use
16813         DW_FORM_flag_present for dw_val_class_flag and
16814         DW_FORM_exprloc for dw_val_class_loc.
16815         (output_die): For -gdwarf-4 print dw_val_class_loc
16816         size as uleb128 instead of 1 or 2 bytes and don't print
16817         anything for dw_val_class_flag.
16819         * var-tracking.c (vt_init_cfa_base): Use cselib_lookup_from_insn
16820         instead of cselib_lookup following by tweaking locs->setting_insn.
16822         PR bootstrap/43596
16823         * cselib.c (cselib_process_insn): Clear cselib_current_insn
16824         even before returning from label, setjmp call or volatile asm
16825         handling.
16827 2010-03-31  Richard Guenther  <rguenther@suse.de>
16829         PR middle-end/43600
16830         * cgraphunit.c (cgraph_output_in_order): Do not allocate
16831         temporary data on stack.
16833 2010-03-31  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
16835         * config/sparc/sysv4.h (PUSHSECTION_FORMAT): Remove undef.
16836         (PUSHSECTION_ASM_OP): Remove.
16837         (POPSECTION_ASM_OP): Remove.
16838         (PUSHSECTION_FORMAT): Remove.
16839         * config/sol2.h (PUSHSECTION_FORMAT): Define.
16840         * config/sparc/sol2.h [!USE_GAS] (PUSHSECTION_FORMAT): Redefine.
16841         * config/sol2.c (solaris_output_init_fini): Use it.
16843 2010-03-31  Jie Zhang  <jie@codesourcery.com>
16845         PR 43574
16846         * opt-functions.awk (var_type_struct): Use signed char type
16847         for simple variables.
16849 2010-03-31  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
16851         * config/sol2.c: Include output.h.
16852         (solaris_assemble_visibility): New function.
16853         * config/t-sol2 (sol2.o): Add output.h dependency.
16854         * config/sol2-protos.h (solaris_assemble_visibility): Declare.
16855         * config/sol2.h [!USE_GAS] (TARGET_ASM_ASSEMBLE_VISIBILITY):
16856         Redefine.
16858 2010-03-31  Jakub Jelinek  <jakub@redhat.com>
16860         PR target/43580
16861         * config/arm/arm.c (arm_save_coproc_regs): Use Pmode instead of
16862         V2SImode or XFmode on PRE_DEC.
16864         PR debug/43557
16865         * cfgexpand.c (expand_debug_expr): Handle VOIDmode mode like
16866         BLKmode.
16868 2010-03-31  Jie Zhang  <jie@codesourcery.com>
16870         PR 43562
16871         * reload.h (caller_save_initialized_p): Declare.
16872         * toplev.c (backend_init_target): Don't call
16873         init_caller_save but set caller_save_initialized_p to false.
16874         * caller-save.c (caller_save_initialized_p): Define.
16875         (init_caller_save): Check caller_save_initialized_p.
16876         * ira.c (ira): Call init_caller_save if flag_caller_saves.
16878 2010-03-31  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
16880         PR target/39048
16881         * config.gcc (i[34567]86-*-solaris2*): Add i386/t-fprules-softfp
16882         and soft-fp/t-softfp to tmake_file.
16883         * config/i386/sol2.h (LIBGCC2_HAS_TF_MODE): Redefine.
16884         (LIBGCC2_TF_CEXT): Define.
16885         (TF_SIZE): Define.
16887 2010-03-30  Alexandre Oliva  <aoliva@redhat.com>
16889         PR debug/42977
16890         * cselib.c (n_useless_values): Document handling of debug locs.
16891         (n_useless_debug_values, n_debug_values): New variables.
16892         (new_elt_loc_list): Don't add to debug values, keep count.
16893         (promote_debug_loc): New.
16894         (cselib_reset_table): Zero new variables.
16895         (entry_and_rtx_equal_p): Promote debug locs.
16896         (discard_useless_locs): Increment n_useless_debug_values for
16897         debug values.
16898         (remove_useless_values): Adjust n_useless_values and n_debug_values
16899         with n_useless_debug_values.
16900         (add_mem_for_addr): Promote debug locs.
16901         (cselib_lookup_mem): Likewise.
16902         (cselib_lookup_addr): Renamed to...
16903         (cselib_lookup_addr_1): ... this.  Promote debug locs.  Don't call...
16904         (cselib_log_lookup): ... this.  Turn into...
16905         (cselib_lookup_addr): ... new wrapper.
16906         (cselib_lookup_from_insn): New.
16907         (cselib_invalidate_regno): Increment n_useless_debug_values for
16908         debug values.
16909         (cselib_invalidate_mem): Likewise.
16910         (cselib_process_insn): Take n_deleted and n_debug_values into
16911         account to guard remove_useless_value call.
16912         (cselib_finish): Zero n_useless_debug_values.
16913         * cselib.h (cselib_lookup_from_insn): Declare.
16914         * sched-deps.c (sched_analyze_1): Use cselib_lookup_from_insn.
16915         (sched_analyze_2): Likewise.
16917 2010-03-30  Jakub Jelinek  <jakub@redhat.com>
16919         * var-tracking.c (use_narrower_mode_test, use_narrower_mode): New
16920         functions.
16921         (adjust_mems): Replace narrowing SUBREG of expression containing
16922         just PLUS, MINUS, MULT and ASHIFT of registers and constants
16923         with operations in the narrower mode.
16925         PR debug/43593
16926         * var-tracking.c (dataflow_set_clear_at_call): Invalidate just
16927         regs_invalidated_by_call instead all call_used_reg_set registers.
16929 2010-03-30  Sebastian Pop  <sebastian.pop@amd.com>
16931         PR middle-end/43430
16932         * tree-vect-slp.c (vect_get_and_check_slp_defs): Replace type
16933         pointer comparisons with types_compatible_p.
16934         * tree-vect-stmts.c (vectorizable_call): Same.
16935         (vectorizable_condition): Same.
16937 2010-03-30  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
16939         * config/s390/s390.c (s390_emit_prologue): Omit issuing a dynamic
16940         stack check if the mask would be zero.
16942 2010-03-30  Seongbae Park  <seongbae.park@gmail.com>
16943             Jack Howarth  <howarth@bromo.med.uc.edu>
16945         * tree-profile.c (tree_init_ic_make_global_vars): Make static
16946         variables TLS.
16948 2010-03-30  Joseph Myers  <joseph@codesourcery.com>
16950         PR other/25232
16951         * libgcc-std.ver (GCC_4.5.0): Define version.  Include __unordxf2
16952         and __unordtf2.
16953         * config/bfin/libgcc-bfin.ver (GCC_4.5.0): Define version.
16954         Include ___unordxf2 and ___unordtf2.
16955         * config/i386/libgcc-glibc.ver: Do not define inheritance from
16956         GCC_4.4.0 here.
16958 2010-03-30  Tarik Graba  <tarik.graba@telecom-paristech.fr>
16960         * config/lm32/t-lm32: New file.
16961         * config.gcc: Use the above file when targetting lm32.
16963 2010-03-28  Duncan Sands  <baldrick@free.fr>
16965         * Makefile.in (PLUGIN_HEADERS): Add except.h.
16967 2010-03-29  Sebastian Pop  <sebastian.pop@amd.com>
16969         PR middle-end/43431
16970         * tree-vect-loop.c (vect_estimate_min_profitable_iters):
16971         Improve vectorization cost model diagnostic.
16973 2010-03-29  Sebastian Pop  <sebastian.pop@amd.com>
16975         PR middle-end/43436
16976         * tree-vect-data-refs.c (vect_analyze_data_refs): When
16977         compute_data_dependences_for_loop returns false, early exit
16978         and output an extra diagnostic for the failed data reference
16979         analysis.
16981 2010-03-29  Richard Guenther  <rguenther@suse.de>
16983         PR tree-optimization/43560
16984         * tree-ssa-loop-im.c (ref_always_accessed_p): Add store_p parameter.
16985         (can_sm_ref_p): Treat stores to readonly locations as trapping.
16987 2010-03-29  Jie Zhang  <jie@codesourcery.com>
16989         PR 43564
16990         * toplev.c (process_options): Set optimization_default_node
16991         and optimization_current_node.
16992         * opts.c (decode_options): Don't set optimization_default_node
16993         and optimization_current_node.
16995 2010-03-29  Ralf Corsépius  <ralf.corsepius@rtems.org>
16997         * config/rtems.h: Abandon -qrtems_debug.
16999 2010-03-28  Jan Hubicka  <jh@suse.cz>
17001         PR tree-optimization/43505
17002         * cgraph.c (cgraph_clone_node): When clonning a clone, replacement
17003         map should not be copied.
17005 2010-03-27  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
17007         PR middle-end/41674
17008         * cgraphunit.c (cgraph_build_static_cdtor): If target doesn't have
17009         cdtors, set DECL_PRESERVE_P.
17010         * ipa.c (cgraph_externally_visible_p): Return true if declaration
17011         should be preseved.
17013 2010-03-27  Uros Bizjak  <ubizjak@gmail.com>
17015         PR tree-optimization/43528
17016         * stor-layout.c (place_field): Check that constant fits into
17017         unsigned HWI when skipping calculation of MS bitfield layout.
17019 2010-03-27  Jan Hubicka  <jh@suse.cz>
17021         PR middle-end/43391
17022         * varasm.c (make_decl_rtl): Deal with COMMON flag to make
17023         notice_global_symbol work.
17025 2010-03-27  Jakub Jelinek  <jakub@redhat.com>
17027         * dwarf2out.c (dwarf2_debug_hooks): Use dwarf2out_function_decl
17028         instead of dwarf2out_decl.
17029         (struct var_loc_node): Remove section_label field.
17030         (dwarf2out_function_decl): New function.
17031         (dwarf2out_var_location): Don't set section_label field.
17032         (dwarf2out_begin_function): Don't empty decl_loc_table here.
17034 2010-03-26  Michael Meissner  <meissner@linux.vnet.ibm.com>
17036         PR tree-optimization/43544
17037         * doc/tm.texi (TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION):
17038         First argument for builtin vectorized function hook is now a
17039         tree to be able to distinguish between machine specific and
17040         standard builtins.
17041         * targhooks.c (default_builtin_vectorized_function): Ditto.
17042         * targhooks.h (default_builtin_vectorized_function): Ditto.
17043         * target.h (struct gcc_target): Ditto.
17044         * tree-vect-stmts.c (vectorizable_function): Ditto.
17045         * config/i386/i386.c (ix86_builtin_vectorized_function): Ditto.
17046         * config/rs6000/rs6000.c (rs6000_builtin_vectorized_function):
17047         Ditto.
17049 2010-03-26  Joseph Myers  <joseph@codesourcery.com>
17051         PR c/43381
17052         * c-decl.c (get_parm_info): Assert that decl going in OTHERS has a
17053         nested binding iff it is a FUNCTION_DECL.
17054         (store_parm_decls_newstyle): Pass nested=true to bind for
17055         FUNCTION_DECLs amongst parameters.
17057 2010-03-26  Jakub Jelinek  <jakub@redhat.com>
17059         * var-tracking.c (vt_expand_loc_callback): Don't run
17060         cselib_expand_value_rtx_cb in dummy mode if
17061         cselib_dummy_expand_value_rtx_cb returned false.
17063         * var-tracking.c (emit_note_insn_var_location): For one part
17064         notes with offset 0, don't add EXPR_LIST around the location.
17065         * dwarf2out.c (loc_descriptor, dw_loc_list_1,
17066         add_location_or_const_value_attribute): Adjust for that change.
17068         PR debug/43540
17069         * dwarf2out.c (reg_save): For DW_CFA_expression put regnum
17070         into first operand and location into second.
17071         (dw_cfi_oprnd1_desc): Return dw_cfi_oprnd_reg_num instead of
17072         dw_cfi_oprnd_loc for DW_CFA_expression.
17073         (dw_cfi_oprnd2_desc): Return dw_cfi_oprnd_loc for DW_CFA_expression.
17074         (output_cfa_loc, output_cfa_loc_raw): For DW_CFA_expression
17075         assume first argument is regnum and second argument is location.
17077 2010-03-26  Uros Bizjak  <ubizjak@gmail.com>
17079         PR target/42113
17080         * config/alpha/alpha.md (*cmp_sadd_si): Change mode
17081         of scratch register to DImode.  Split to DImode comparison operator.
17082         Use SImode subreg of scratch register in the multiplication.
17083         (*cmp_sadd_sidi): Ditto.
17084         (*cmp_ssub_si): Ditto.
17085         (*cmp_ssub_sidi): Ditto.
17087 2010-03-26  Uros Bizjak  <ubizjak@gmail.com>
17089         PR target/43524
17090         * config/i386/i386.c (ix86_expand_prologue) [TARGET_STACK_PROBE]:
17091         Remove invalid assert and wrong comment.
17093 2010-03-26  Jakub Jelinek  <jakub@redhat.com>
17095         PR debug/43516
17096         * flags.h (final_insns_dump_p): New extern.
17097         * final.c (final_insns_dump_p): New variable.
17098         (rest_of_clean_state): Set it before -fdump-final-insns=
17099         dumping, clear afterwards.
17100         * print-rtl.c (print_rtx): If final_insns_dump_p don't dump
17101         MEM_ALIAS_SET on MEMs.
17103 2010-03-26  David S. Miller  <davem@davemloft.net>
17105         * configure.ac: Fix sparc GOTDATA_OP bug check.
17106         * configure: Rebuild.
17108 2010-03-26  Alan Modra  <amodra@gmail.com>
17110         * config/rs6000/rs6000.md (cmptf_internal2): Correct comparison.
17112 2010-03-25  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
17114         * doc/tm.texi (Sections): Document TLS_COMMON_ASM_OP,
17115         TLS_SECTION_ASM_FLAG.
17117 2010-03-25  Jakub Jelinek  <jakub@redhat.com>
17119         PR bootstrap/43511
17120         * config/i386/i386.c (ix86_code_end): Set DECL_WEAK if TARGET_MACHO.
17121         Clear first_function_block_is_cold.
17123         PR c/43385
17124         * gimplify.c (gimple_boolify): Only recurse on __builtin_expect
17125         argument if the argument is truth_value_p.
17127 2010-03-24  Michael Meissner  <meissner@linux.vnet.ibm.com>
17129         * config/rs6000/constraints.md: Update copyright year for my changes.
17131         PR target/43484
17132         * config/rs6000/rs6000.c (rs6000_split_multireg_move): If r0 is
17133         used in reg+reg addressing, swap registers.
17135 2010-03-24  Jakub Jelinek  <jakub@redhat.com>
17137         PR debug/43293
17138         * target.h (struct gcc_target): Add code_end hook.
17139         * target-def.h (TARGET_ASM_CODE_END): Define to hook_void_void
17140         if not yet defined.
17141         (TARGET_ASM_OUT): Add TARGET_ASM_CODE_END.
17142         * toplev.c (compile_file): Call targetm.asm_out.code_end
17143         hook before unwind info/debug info output.
17144         * config/i386/winnt.c (i386_pe_file_end): Don't call ix86_file_end.
17145         * config/i386/linux.h (NEED_INDICATE_EXEC_STACK): Don't define.
17146         (TARGET_ASM_FILE_END): Define to file_end_indicate_exec_stack.
17147         * config/i386/linux64.h (NEED_INDICATE_EXEC_STACK): Don't define.
17148         (TARGET_ASM_FILE_END): Define to file_end_indicate_exec_stack.
17149         * config/i386/i386.c (ix86_file_end): Renamed to...
17150         (ix86_code_end): ... this.  Make static.  Don't call
17151         file_end_indicate_exec_stack.  Emit unwind info using
17152         final_start_function/final_end_function.
17153         (darwin_x86_file_end): Remove.
17154         (TARGET_ASM_CODE_END): Define.
17155         * config/i386/i386.h (TARGET_ASM_FILE_END,
17156         NEED_INDICATE_EXEC_STACK): Don't define.
17157         * config/i386/darwin.h (darwin_x86_file_end): Remove prototype.
17158         (TARGET_ASM_FILE_END): Define to darwin_file_end.
17159         * config/i386/i386-protos.h (ix86_file_end): Remove prototype.
17160         * doc/tm.texi (TARGET_ASM_CODE_END): Document.
17162         PR target/43498
17163         * config/i386/i386.c (x86_output_mi_thunk): Call final_start_function
17164         at the beginning and final_end_function at the end.
17165         * config/s390/s390.c (s390_output_mi_thunk): Likewise.
17167 2010-03-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
17169         * configure.ac (i[34567]86-*-*): Handle Solaris 2/x86 TLS support
17170         and Sun as TLS syntax.
17171         (TLS_SECTION_ASM_FLAG) [on_solaris && !gas_flag]: Define.
17172         * configure: Regenerate.
17173         * config.in: Regenerate.
17174         * varasm.c (TLS_SECTION_ASM_FLAG): Define default.
17175         (default_elf_asm_named_section): Use it.
17176         * config/i386/i386.c (output_pic_addr_const): Lowercase @DTPOFF.
17177         (i386_output_dwarf_dtprel): Likewise.
17178         (output_addr_const_extra): Likewise.
17179         (output_pic_addr_const): Lowercase @GOTTPOFF.
17180         (output_addr_const_extra): Likewise.
17181         (output_pic_addr_const): Lowercase @GOTNTPOFF.
17182         (output_addr_const_extra): Likewise.
17183         (output_pic_addr_const): Lowercase @INDNTPOFF.
17184         (output_addr_const_extra): Likewise.
17185         (output_pic_addr_const): Lowercase @NTPOFF.
17186         (output_addr_const_extra): Likewise.
17187         (output_pic_addr_const): Lowercase @TPOFF.
17188         (output_addr_const_extra): Likewise.
17189         * config/i386/i386.md (*tls_global_dynamic_32_gnu): Lowercase @TLSGD.
17190         (*tls_global_dynamic_64): Likewise.
17191         (*tls_local_dynamic_base_32_gnu): Lowercase @TLSLDM.
17192         (*tls_local_dynamic_base_64): Lowercase @TLSLD.
17194         * defaults.h (TLS_COMMON_ASM_OP): Provide default.
17195         (ASM_OUTPUT_TLS_COMMON): Use it.
17196         * config/i386/sol2-gas.h (TLS_COMMON_ASM_OP): Undef.
17198         PR target/38118
17199         * config.gcc (sparc*-*-solaris2*) [$gas=yes]: Add usegas.h to tm_file.
17200         * config/sparc/sol2.h (ASM_OUTPUT_ALIGNED_COMMON): Move ...
17201         * config/sol2.h (ASM_OUTPUT_ALIGNED_COMMON): ... here.
17202         * config/i386/sol2-10.h (ASM_OUTPUT_ALIGNED_COMMON): Redefine.
17203         * config/i386/sol2.h (TARGET_SUN_TLS): Redefine.
17204         (ASM_DECLARE_OBJECT_NAME) [!USE_GAS]: Redefine.
17206 2010-03-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
17208         * config/i386/i386.c (override_options): Don't accept
17209         -mtls-dialect=sun any longer.
17210         * config/i386/i386.h (TARGET_SUN_TLS): Define as 0.
17211         * config/i386/i386.md (*tls_global_dynamic_32_sun): Remove.
17212         (*tls_local_dynamic_base_32_sun): Likewise.
17213         * config/i386/sol2.h (TARGET_SUN_TLS): Redefine.
17215 2010-03-24  Jakub Jelinek  <jakub@redhat.com>
17217         PR debug/43508
17218         * dwarf2out.c (mem_loc_descriptor): Don't ICE on
17219         VEC_{MERGE,SELECT,CONCAT,DUPLICATE}.
17221         PR debug/43479
17222         * ira.c (adjust_cleared_regs): New function.
17223         (update_equiv_regs): Adjust cleared_regs in DEBUG_INSNs.
17225         PR debug/19192
17226         PR debug/43479
17227         * cfgexpand.c (gimple_assign_rhs_to_tree): Also set TREE_BLOCK
17228         from gimple_block.
17229         * expr.c (expand_expr_real): Restore previous
17230         curr_insn_source_location and curr_insn_block after
17231         expand_expr_real_1 call.
17232         (expand_expr_real_1) <case SSA_NAME>: Call expand_expr_real
17233         instead of expand_expr_real_1.
17235 2010-03-23  Vladimir Makarov  <vmakarov@redhat.com>
17237         PR rtl-optimization/43413
17238         * ira-color.c (setup_allocno_available_regs_num): Count prohibited
17239         hard regs too.
17241 2010-03-22  James E. Wilson  <wilson@codesourcery.com>
17243         PR target/43348
17244         * ia64.md (call_nogp, call_value_nogp, sibcall_nogp, call_gp,
17245         call_value_gp, sibcall_gp): Use 's' constraint not 'i'.
17247 2010-03-22  H.J. Lu  <hongjiu.lu@intel.com>
17249         * config/i386/i386.c (ix86_target_string): Add -mfma.
17250         Fix a typo in comment.
17252 2010-03-22  Mike Stump  <mikestump@comcast.net>
17254         PR target/23071
17255         * config/rs6000/rs6000.c (darwin_rs6000_special_round_type_align):
17256         Don't overly align based upon packed packed fields.
17258 2010-03-22  Jason Merrill  <jason@redhat.com>
17260         * c-pretty-print.c (pp_c_specifier_qualifier_list) [VECTOR_TYPE]:
17261         Use () rather than [], and move before the element type.
17263 2010-03-22  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
17265         * doc/configfiles.texi (Configuration Files): Removed
17266         fixinc/Makefile*, intl/Makefile.*.
17267         * doc/makefile.texi: Fixed markup. Abstract from version
17268         control system used.
17269         (Makefile): Removed obsolete gcc/java/parse.y example.
17270         * doc/sourcebuild.texi: Likewise.
17271         (Top Level): Added config, gnattools, libdecnumber, libgcc,
17272         libgomp, libssp.  Removed fastjar.
17273         (Miscellaneous Docs): Clarify location.
17274         Added COPYING3, COPYING3.LIB.
17275         (Front End Directory): Moved Make-lang.in entry to new subsubsection.
17277 2010-03-22  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
17279         PR target/38085
17280         * config/i386/i386.c (x86_function_profiler)
17281         [!NO_PROFILE_COUNTERS]: Fix typo.
17282         * config/i386/gmon-sol2.c (_mcleanup) [__x86_64__]: Use call
17283         instead of callq.
17285 2010-03-22  Janis Johnson  <janis187@us.ibm.com>
17286             Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
17288         * doc/sourcebuild.texi (Test Directives): Split into six
17289         subsections, with most of the current text in new subsections
17290         Directives, Selectors, and Final Actions.
17291         (Directives): Split list of test directives into multiple
17292         subsubsections.
17293         (Selectors): Describe use and syntax of selectors.
17294         (Effective-Target Keywords): Describe all existing keywords.
17295         (Add Options): Describe features for dg-add-options.
17296         (Require Support): Describe variants of dg-require-support.
17297         (Final Actions): Describe commands to use in dg-final.
17299 2010-03-22  Michael Matz  <matz@suse.de>
17301         PR middle-end/43475
17302         * recog.c (validate_replace_rtx_group): Replace also in
17303         REG_EQUAL and REG_EQUIV notes.
17305 2010-03-22  Richard Guenther  <rguenther@suse.de>
17307         PR tree-optimization/43390
17308         * tree-vect-stmts.c (get_vectype_for_scalar_type): Make
17309         sure vector extracts are type correct.
17311 2010-03-22  Richard Guenther  <rguenther@suse.de>
17313         PR middle-end/40106
17314         * builtins.c (expand_builtin_pow): Expand pow (x, 1.5) as
17315         x * sqrt (x) even when optimizing for size if the target
17316         has native support for sqrt.
17318 2010-03-22  Jakub Jelinek  <jakub@redhat.com>
17320         * varasm.c (make_decl_rtl_for_debug): Also clear
17321         flag_mudflap for the duration of make_decl_rtl call.
17323         PR debug/43443
17324         * var-tracking.c (add_cselib_value_chains): Remove ASM_OPERANDS
17325         locs from preserved VALUEs.
17327 2010-03-21  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
17329         PR middle-end/42718
17330         * pa.md (movmemsi): Set align to one if zero.
17331         (movmemdi): Likewise.
17333 2010-03-21  Richard Earnshaw  <rearnsha@arm.com>
17335         PR target/42321
17336         * arm.c (arm_output_epilogue): Correctly match VFP pop instructions
17337         with their corresponding prologue pushes.
17339 2010-03-20  Andrew Pinski  <pinskia@gmail.com>
17341         PR target/43156
17342         * config/spu/spu.c (spu_expand_prologue): Don't emit NOTE_INSN_DELETED
17343         at the begining or end.
17344         (spu_expand_epilogue): Likewise.
17346 2010-03-20  Richard Guenther  <rguenther@suse.de>
17348         PR rtl-optimization/43438
17349         * combine.c (make_extraction): Properly zero-/sign-extend an
17350         extraction of the low part of a CONST_INT.  Also handle
17351         CONST_DOUBLE.
17353 2010-03-19  Mike Stump  <mikestump@comcast.net>
17355         * config/i386/darwin.h (SUBTARGET32_DEFAULT_CPU): Add.
17356         * config/i386/i386.c (SUBTARGET32_DEFAULT_CPU): Add.
17357         (override_options): Use SUBTARGET32_DEFAULT_CPU.
17359 2010-03-19  Andrew Pinski  <andrew_pinski@caviumnetworks.com>
17361         PR c/43211
17362         * c-decl.c (grokparms): Set arg_types to NULL_TREE if there was
17363         an error.
17365 2010-03-19  Bernd Schmidt  <bernds@codesourcery.com>
17367         PR rtl-optimization/42258
17368         * ira-lives.c (check_and_make_def_conflict): Ignore conflict for a
17369         use that may match DEF.
17371         PR target/40697
17372         * optabs.c (avoid_expensive_constant): Use rtx_cost to find out
17373         the cost of loading the constant rather than assuming
17374         COSTS_N_INSNS (1).
17375         * config/arm/arm.c (thumb1_rtx_costs) <case CONST_INT>: If the
17376         outer code is AND, do the same tests as the andsi3 expander and
17377         return COSTS_N_INSNS (1) if and is cheap.
17379         * optabs.c (avoid_expensive_constant): Fix formatting.
17381 2010-03-19  Michael Matz  <matz@suse.de>
17383         PR c++/43116
17384         * attribs.c (decl_attributes): When rebuilding a function pointer
17385         type use the same qualifiers as the original pointer type.
17387 2010-03-19  Martin Jambor  <mjambor@suse.cz>
17389         * doc/gimple.texi (Logical Operators): Describe is_gimple_ip_invariant
17390         and is_gimple_ip_invariant_address.
17392 2010-03-19  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
17394         Revert
17395         2009-10-01  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
17397         * config/arm/arm.c (arm_override_options): Turn off
17398         flag_dwarf2_cfi_asm for AAPCS variants.
17400 2010-03-19  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
17402         PR target/43399
17403         * config/arm/arm.c (emit_multi_reg_push): Update comments.
17404         Use PRE_MODIFY instead of PRE_DEC.
17405         (emit_sfm): Use PRE_MODIFY instead of PRE_DEC.
17406         (vfp_emit_fstmd): Likewise.
17408 2010-03-19  Michael Matz  <matz@suse.de>
17410         PR target/43305
17411         * builtins.c (expand_builtin_interclass_mathfn,
17412         expand_builtin_signbit): Use maybe_emit_unop_insn, emit libcalls
17413         if that fails.
17415 2010-03-19  Richard Guenther  <rguenther@suse.de>
17417         PR tree-optimization/43415
17418         * tree-ssa-pre.c (phi_translate): Split out worker to ...
17419         (phi_translate_1): ... this.
17420         (phi_translate): Move all caching here.  Cache all NARY
17421         and REFERENCE translations.
17423 2010-03-19  David S. Miller  <davem@davemloft.net>
17425         With help from Eric Botcazou.
17426         * config/sparc/sparc.c: Include dwarf2out.h.
17427         (emit_pic_helper): Delete.
17428         (pic_helper_symbol_name): Delete.
17429         (pic_helper_emitted_p): Delete.
17430         (pic_helper_needed): New.
17431         (USE_HIDDEN_LINKONCE): Define to '1' if HAVE_GAS_HIDDEN else '0'.
17432         (get_pc_thunk_name): New.
17433         (load_pic_register): Remove 'delay_pic_helper' arg.  Use
17434         get_thunk_pc_name and ggc_strdup to generate PIC thunk symbol.
17435         Set pic_helper_needed to true.  Don't call emit_pic_helper.
17436         (sparc_expand_prologue): Update load_pic_register call.
17437         (sparc_output_mi_thunk): Likewise.
17438         (sparc_file_end): Emit a hidden comdat symbol for the PIC
17439         thunk if possible.  Output CFI information as needed.
17441 2010-03-18  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
17442             Jack Howarth  <howarth@bromo.med.uc.edu>
17444         PR target/36399
17445         * config/i386/i386.h: Fix ABI on darwin x86-32.
17447 2010-03-18  Aldy Hernandez  <aldyh@redhat.com>
17449         * tree.h: Declare make_decl_rtl_for_debug.
17450         * varasm.c (make_decl_rtl_for_debug): New.
17451         * dwarf2out.c (rtl_for_decl_location): Call it.
17452         * cfgexpand.c (expand_debug_expr): Call it.
17454 2010-03-18  Jakub Jelinek  <jakub@redhat.com>
17456         PR bootstrap/43399
17457         * var-tracking.c (adjust_mems) <case POST_MODIFY>: Allow BLKmode
17458         mem_mode.
17460         PR bootstrap/43403
17461         * var-tracking.c (vt_init_cfa_base): Do nothing if
17462         cfa_base_rtx would be hard_frame_pointer_rtx or non-fixed register.
17464 2010-03-18  Alexandre Oliva  <aoliva@redhat.com>
17466         PR debug/42873
17467         * var-tracking.c (canonicalize_vars_star): New.
17468         (dataflow_post_merge_adjust): Use it.
17470 2010-03-18  Jakub Jelinek  <jakub@redhat.com>
17472         PR debug/43058
17473         * var-tracking.c (non_suitable_const): New function.
17474         (add_uses): For DEBUG_INSNs with constants, don't record any
17475         value, instead just the constant value itself.
17476         (compute_bb_dataflow) <case MO_VAL_LOC>: If PAT_VAR_LOCATION_LOC
17477         is not VAR_LOC_UNKNOWN_P, set var to the constant.
17478         (emit_notes_in_bb): Likewise.
17479         (emit_note_insn_var_location): For onepart variables if
17480         cur_loc is a VOIDmode constant, use DECL_MODE.
17482 2010-03-18  Martin Jambor  <mjambor@suse.cz>
17484         PR middle-end/42450
17485         * cgraph.h (cgraph_redirect_edge_call_stmt_to_callee): Declare.
17486         * cgraphunit.c (cgraph_materialize_all_clones): Update calls in
17487         all non-clones.  Moved call redirection...
17488         (cgraph_redirect_edge_call_stmt_to_callee): ...to this new function.
17489         (cgraph_materialize_all_clones): Dispose of all
17490         combined_args_to_skip bitmaps.
17491         (verify_cgraph_node): Do not check for edges pointing to wrong
17492         nodes in inline clones.
17493         * tree-inline.c (copy_bb): Call
17494         cgraph_redirect_edge_call_stmt_to_callee.
17495         * ipa.c (cgraph_remove_unreachable_nodes): Call
17496         cgraph_node_remove_callees even when there are used clones.
17498 2010-03-18  H.J. Lu  <hongjiu.lu@intel.com>
17500         * config/i386/libgcc-glibc.ver: Make GCC_4.5.0 inherit GCC_4.4.0.
17502 2010-03-18  H.J. Lu  <hongjiu.lu@intel.com>
17504         PR target/43383
17505         * config/i386/libgcc-glibc.ver: Add __extendxftf2 to GCC_4.5.0
17506         for 32bit.
17508 2010-03-18  Michael Matz  <matz@suse.de>
17510         PR middle-end/43419
17511         * builtins.c (expand_builtin_pow): Don't transform pow(x, 0.5)
17512         into sqrt(x) if we need to preserve signed zeros.
17514 2010-03-18  Steven Bosscher  <steven@gcc.gnu.org>
17515             Eric Botcazou  <ebotcazou@adacore.com>
17517         PR rtl-optimization/43360
17518         * loop-invariant.c (move_invariant_reg): Remove the REG_EQUAL
17519         note if we don't know its invariant status.
17521 2010-03-18  Michael Matz  <matz@suse.de>
17523         PR tree-optimization/43402
17524         * tree-cfgcleanup.c (cleanup_control_expr_graph): Don't follow
17525         PHI chains of ssa names registered for update.
17527 2010-03-17  Peter Bergner  <bergner@vnet.ibm.com>
17529         PR target/42427
17530         * config/rs6000/rs6000.c (rs6000_split_multireg_move): Add support for
17531         non-offsettable and pre_modify update addressing.
17532         * config/rs6000/dfp.md (*movdd_hardfloat32): Make the "0", "1"
17533         and "2" alternatives "#".
17534         (*movdd_softfloat32): Make all alternatives "#";
17535         * config/rs6000/rs6000.md (DIFD): New define_mode_iterator.
17536         (*movdf_hardfloat32): Make the "0", "1" and "2" alternatives "#".
17537         (*movdf_softfloat32): Make all alternatives "#";
17538         (movdi): Use the new DIFD mode iterator to create a common splitter
17539         for movdi, movdf and movdd patterns.
17541 2010-03-18  Shujing Zhao  <pearly.zhao@oracle.com>
17543         * common.opt (dumpdir): Remove redundant tab.
17545 2010-03-17  Martin Jambor  <mjambor@suse.cz>
17547         PR tree-optimization/43347
17548         * tree-sra.c (create_access_replacement): Set TREE_NO_WARNING when the
17549         original base is DECL_ARTIFICIAL or DECL_IGNORED_P.
17551 2010-03-17  Bernd Schmidt  <bernd.schmidt@analog.com>
17553         PR rtl-optimization/42216
17554         * regrename.c (create_new_chain): New function, broken out from...
17555         (scan_rtx_reg): ... here.  Call it.  Handle the case where we are
17556         appending a use to an empty chain.
17557         (build_def_use): Remove previous changes that convert OP_INOUT to
17558         OP_OUT operands; instead detect the case where an OP_INOUT operand
17559         uses a previously untracked register and create an empty chain for it.
17561 2010-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17563         * doc/extend.texi (Function Attributes): Rewrite unfinished
17564         sentence in ms_abi documentation.
17566 2010-03-17  Alan Modra  <amodra@gmail.com>
17568         * config/rs6000/linux64.opt (mprofile-kernel): Use profile_kernel var.
17569         * config/rs6000/linux64.h (TARGET_PROFILE_KERNEL): Define.
17570         (SUBSUBTARGET_OVERRIDE_OPTIONS): Don't use SET_PROFILE_KERNEL.
17571         * config/rs6000/rs6000.c (SET_PROFILE_KERNEL): Don't define.
17573 2010-03-16  Richard Henderson  <rth@redhat.com>
17575         PR middle-end/43365
17576         * tree-eh.c (replace_goto_queue): Also replace in the eh_seq.
17577         (lower_try_finally): Save and restore eh_seq around the expansion
17578         of the try-finally.
17580 2010-03-16  Aldy Hernandez  <aldyh@redhat.com>
17582         * graphite-sese-to-poly.c (split_reduction_stmt): Skip debug
17583         statements before splitting block.
17585 2010-03-16  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
17587         * doc/sourcebuild.texi (Testsuites): Fix markup.
17588         Use pathnames relative to gcc/testsuite.
17589         (Test Directives): Move description of how timeout is determined.
17590         (Ada Tests): Favor gnat.exp over ada/acats/tests/gcc.
17591         (C Tests): Correct gcc.misc-tests directory.
17592         Framework tests now live in gcc.test-framework.
17594 2010-03-16  Richard Guenther  <rguenther@suse.de>
17596         PR middle-end/43379
17597         * tree-cfg.c (gimple_merge_blocks): When propagating virtual PHI
17598         operands make sure to merge SSA_NAME_OCCURS_IN_ABNORMAL_PHI properly.
17600 2010-03-16  Aldy Hernandez  <aldyh@redhat.com>
17601             Alexandre Oliva  <aoliva@redhat.com>
17603         PR tree-optimization/42917
17604         * lambda-code.c (remove_iv): Skip debug statements.
17605         (lambda_loopnest_to_gcc_loopnest): Likewise.
17606         (not_interesting_stmt): Debug statements are not interesting.
17608 2010-03-16  Jakub Jelinek  <jakub@redhat.com>
17610         PR debug/43051
17611         PR debug/43092
17612         * cselib.c (cselib_preserve_constants,
17613         cfa_base_preserved_val): New static variables.
17614         (preserve_only_constants): New function.
17615         (cselib_reset_table): If cfa_base_preserved_val is non-NULL, don't
17616         clear its REG_VALUES.  If cselib_preserve_constants, don't
17617         empty the whole hash table, but preserve there VALUEs with constants,
17618         cfa_base_preserved_val and cfa_base_preserved_val plus constant.
17619         (cselib_preserve_cfa_base_value): New function.
17620         (cselib_invalidate_regno): Don't invalidate cfa_base_preserved_val.
17621         (cselib_init): Change argument to int bitfield.  Set
17622         cselib_preserve_constants to whether CSELIB_PRESERVE_CONSTANTS
17623         is in it.
17624         (cselib_finish): Clear cselib_preserve_constants and
17625         cfa_base_preserved_val.
17626         * cselib.h (enum cselib_record_what): New enum.
17627         (cselib_init): Change argument to int.
17628         (cselib_preserve_cfa_base_value): New prototype.
17629         * postreload.c (reload_cse_regs_1): Adjust cselib_init caller.
17630         * dse.c (dse_step1): Likewise.
17631         * cfgcleanup.c (thread_jump): Likewise.
17632         * sched-deps.c (sched_analyze): Likewise.
17633         * gcse.c (local_cprop_pass): Likewise.
17634         * simplify-rtx.c (simplify_replace_fn_rtx): Add argument to callback.
17635         If FN is non-NULL, call the callback always and whenever it returns
17636         non-NULL just return that.  Only do rtx_equal_p if FN is NULL.
17637         * rtl.h (simplify_replace_fn_rtx): Add argument to callback.
17638         * combine.c (propagate_for_debug_subst): Add old_rtx argument,
17639         compare from with old_rtx and if it isn't rtx_equal_p, return NULL.
17640         * Makefile.in (var-tracking.o): Depend on $(RECOG_H).
17641         * var-tracking.c: Include recog.h.
17642         (bb_stack_adjust_offset): Remove.
17643         (vt_stack_adjustments): Don't call it, instead just gather the
17644         adjustments using insn_stack_adjust_offset_pre_post on each bb insn.
17645         (adjust_stack_reference): Remove.
17646         (compute_cfa_pointer): New function.
17647         (hard_frame_pointer_adjustment, cfa_base_rtx): New static variables.
17648         (struct adjust_mem_data): New type.
17649         (adjust_mems, adjust_mem_uses, adjust_mem_stores, adjust_insn): New
17650         functions.
17651         (get_address_mode): New function.
17652         (replace_expr_with_values): Use it.
17653         (use_type): Don't do cselib_lookup for VAR_LOC_UNKNOWN_P.
17654         Use get_address_mode.  For cfa_base_rtx return MO_CLOBBER.
17655         (adjust_sets): Remove.
17656         (add_uses): Don't add extra MO_VAL_USE for cfa_base_rtx plus constant.
17657         Use get_address_mode.
17658         (get_adjusted_src): Remove.
17659         (add_stores): Don't call it.  Never reuse expr SET.  Don't add extra
17660         MO_VAL_USE for cfa_base_rtx plus constant.  Use get_address_mode.
17661         (add_with_sets): Don't call adjust_sets.
17662         (fp_setter, vt_init_cfa_base): New functions.
17663         (vt_initialize): Change return type to bool.  Move most of pool etc.
17664         initialization to the beginning of the function from end.  Pass
17665         CSELIB_RECORD_MEMORY | CSELIB_PRESERVE_CONSTANTS to cselib_init.
17666         If !frame_pointer_needed, call vt_stack_adjustment before mos
17667         vector is filled, call vt_init_cfa_base if argp/framep has been
17668         eliminated to sp.  If frame_pointer_needed and argp/framep has
17669         been eliminated to hard frame pointer, set
17670         hard_frame_pointer_adjustment and call vt_init_cfa_base after
17671         encountering fp setter in the prologue.  For MO_ADJUST, call
17672         log_op_type before pusing the op into mos vector, not afterwards.
17673         Call adjust_insn before cselib_process_insn/add_with_sets,
17674         call cancel_changes (0) afterwards.
17675         (variable_tracking_main_1): Adjust for vt_initialize calling
17676         vt_stack_adjustments and returning whether it succeeded or not.
17678 2010-03-15  Aldy Hernandez  <aldyh@redhat.com>
17680         * graphite-sese-to-poly.c (rewrite_cross_bb_scalar_deps): Skip
17681         debug statements.
17683 2010-03-15  Jakub Jelinek  <jakub@redhat.com>
17685         * dwarf2out.c (dwarf2out_frame_debug): Don't assert drap_reg
17686         has been set.
17687         (based_loc_descr): Use DW_OP_fbreg for vdrap_reg even when
17688         drap_reg has not been set.
17690 2010-03-15  Michael Matz  <matz@suse.de>
17692         PR middle-end/43300
17693         * tree-outof-ssa.c (emit_partition_copy): New argument sizeexp,
17694         use it to expand block copies.
17695         (insert_partition_copy_on_edge, insert_rtx_to_part_on_edge,
17696         insert_part_to_rtx_on_edge): Adjust callers of emit_partition_copy.
17697         (insert_value_copy_on_edge): Use store_expr for BLKmode values.
17699 2010-03-15  Richard Guenther  <rguenther@suse.de>
17701         PR tree-optimization/43367
17702         * tree-cfg.c (gimple_can_merge_blocks_p): Simplify PHI
17703         elimination check.
17705 2010-03-15  Richard Guenther  <rguenther@suse.de>
17707         PR tree-optimization/43317
17708         * ipa-struct-reorg.c (create_new_general_access): Update stmt.
17710 2010-03-15  Martin Jambor  <mjambor@suse.cz>
17712         PR tree-optimization/43141
17713         * tree-sra.c (create_abstract_origin): New function.
17714         (modify_function): Call create_abstract_origin.
17716 2010-03-15  Chris Demetriou  <cgd@google.com>
17718         * Makefile.in (stmp-int-hdrs): Don't chmod include/stdint.h if it
17719         wasn't copied.
17721 2010-03-13  Sebastian Pop  <sebastian.pop@amd.com>
17723         PR middle-end/43354
17724         * graphite-sese-to-poly.c (rewrite_close_phi_out_of_ssa): Do not
17725         call insert_out_of_ssa_copy for default definitions.
17727 2010-03-13  Sebastian Pop  <sebastian.pop@amd.com>
17729         * graphite-clast-to-gimple.c (my_long_long): Defined.
17730         (gcc_type_for_cloog_iv): Use it instead of long_long_integer_type_node.
17731         * graphite-sese-to-poly.c (my_long_long): Defined.
17732         (scop_ivs_can_be_represented): Use it.
17734 2010-03-13  Sebastian Pop  <sebastian.pop@amd.com>
17736         * doc/invoke.texi: Fix documentation of graphite-max-nb-scop-params,
17737         graphite-max-bbs-per-function, and loop-block-tile-size.
17738         * params.def (PARAM_GRAPHITE_MAX_NB_SCOP_PARAMS): Replace "maximal"
17739         with "maximum".
17740         (PARAM_GRAPHITE_MAX_BBS_PER_FUNCTION): Same.
17742 2010-03-13  Sebastian Pop  <sebastian.pop@amd.com>
17744         * graphite-clast-to-gimple.c (gcc_type_for_iv_of_clast_loop): Remove
17745         forward declaration.
17746         * graphite-sese-to-poly.c (reduction_phi_p): Remove FIXME comment.
17747         (add_upper_bounds_from_estimated_nit): New.
17748         (build_loop_iteration_domains): Use it.
17750 2010-03-13  Sebastian Pop  <sebastian.pop@amd.com>
17752         * doc/invoke.texi (PARAM_LOOP_BLOCK_TILE_SIZE): Document.
17754 2010-03-13  Sebastian Pop  <sebastian.pop@amd.com>
17756         PR middle-end/43306
17757         * tree-chrec.c (evolution_function_right_is_integer_cst): CHREC_RIGHT
17758         should be an INTEGER_CST.  Also handle CASE_CONVERT.
17760 2010-03-13  Sebastian Pop  <sebastian.pop@amd.com>
17762         * graphite.c (graphite_initialize): To bound the number of bbs per
17763         function, use PARAM_GRAPHITE_MAX_BBS_PER_FUNCTION.
17764         * params.def (PARAM_GRAPHITE_MAX_BBS_PER_FUNCTION): Declared.
17765         * doc/invoke.texi: Document it.
17767 2010-03-13  Sebastian Pop  <sebastian.pop@amd.com>
17769         * graphite-sese-to-poly.c (build_poly_scop): Do not return bool.
17770         * graphite-sese-to-poly.h (build_poly_scop): Same.
17772 2010-03-13  Sebastian Pop  <sebastian.pop@amd.com>
17774         * graphite-sese-to-poly.c (build_poly_scop): Limit scops following
17775         the number of parameters in the scop.  Use as an upper bound
17776         PARAM_GRAPHITE_MAX_NB_SCOP_PARAMS.
17777         * params.def (PARAM_GRAPHITE_MAX_NB_SCOP_PARAMS): Declared.
17778         * doc/invoke.texi: Document it.
17780 2010-03-13  Jerry Quinn  <jlquinn@optonline.net>
17782         * Makefile.in (TEXI_GCCINT_FILES): Remove c-tree.texi.
17783         * doc/c-tree.texi: Remove.
17784         * doc/generic.texi: Merge c-tree.texi here.
17785         * doc/gccint.texi (Trees): Remove menu entry.
17786         (c-tree.texi): Remove @include.
17787         * doc/rtl.texi (Reading RTL): Update pxref from Trees to GENERIC.
17788         * doc/languages.texi (Reading RTL): Ditto.
17790 2010-03-12  Steve Ellcey  <sje@cup.hp.com>
17792         PR target/42869
17793         * config/ia64/sync.md (sync_compare_and_swap): Move memory fence.
17795 2010-03-12  Michael Meissner  <meissner@linux.vnet.ibm.com>
17797         PR middle-end/42431
17798         * gcc/config/rs6000/rs6000.c (rs6000_emit_move): Delete band-aid
17799         code added to work around reload clobbering CONST insns.
17801 2010-03-12  Jakub Jelinek  <jakub@redhat.com>
17803         * cselib.c (LONG_TERM_PRESERVED_VALUE_P): Remove.
17804         (cselib_preserve_definitely, cselib_clear_preserve): Remove.
17805         (cselib_preserve_only_values): Remove retain argument, don't
17806         traverse hash table with cselib_{preserve_definitely,clear_preserve}.
17807         * cselib.h (cselib_preserve_only_values): Remove retain argument.
17808         * var-tracking.c (micro_operation): Move insn field before union.
17809         Add DEF_VEC_O and DEF_VEC_ALLOC_O for this type.
17810         (struct variable_tracking_info_def): Remove n_mos field, change
17811         mos into a vector of micro_operations.
17812         (count_uses, count_uses_1, count_stores, count_with_sets): Remove.
17813         (bb_stack_adjust_offset, log_op_type, add_uses, add_stores,
17814         compute_bb_dataflow, emit_notes_in_bb): Adjust for VTI (bb)->mos
17815         changing into a vector.
17816         (add_with_sets): Likewise.  Ensure MO_VAL_USE uops from add_stores
17817         come before all other uops generated by add_stores.
17818         (vt_add_function_parameters): Adjust for cselib_preserve_only_values
17819         argument removal.
17820         (vt_initialize): Likewise.  Adjust for VTI (bb)->mos changing into
17821         a vector.  Run just one pass over the bbs instead of separate counting
17822         and computation phase.
17823         (vt_finalize): Free VTI (bb)->mos vector instead of array.
17825         PR debug/43329
17826         * tree-inline.c (remap_decls): Put old_var rather than origin_var
17827         into *nonlocalized_list vector.
17828         * dwarf2out.c (gen_formal_parameter_die): Call decl_ultimate_origin
17829         even if origin is non-NULL.
17830         (gen_variable_die): Likewise.
17831         (process_scope_var): Don't change origin.
17832         (gen_decl_die): Likewise.
17833         * tree-cfgcleanup.c (remove_forwarder_block): Check single_pred_p
17834         before adding new edges instead of after it, fix moving over
17835         debug stmts.
17837 2010-03-11  David S. Miller  <davem@davemloft.net>
17839         * configure.ac (gcc_cv_as_cfi_advance_working): Skip a multiple
17840         of four.
17841         * configure: Rebuild.
17843 2010-03-11  Martin Jambor  <mjambor@suse.cz>
17845         PR tree-optimization/43257
17846         * tree.c (assign_assembler_name_if_neeeded): New function.
17847         (free_lang_data_in_cgraph): Assembler name assignment moved to the
17848         above new function.
17849         * tree.h (assign_assembler_name_if_neeeded): Declare.
17850         * cgraphunit.c (cgraph_analyze_function): Create an assembler name for
17851         the function if needed.
17853 2010-03-11  Chris Demetriou  <cgd@google.com>
17855         * Makefile.in (stmp-int-hdrs): Make include/unwind.h,
17856         include/stdint-gcc.h, and include/stdint.h world-readable.
17858 2010-03-11  Richard Guenther  <rguenther@suse.de>
17860         PR tree-optimization/43255
17861         * tree-vrp.c (process_assert_insertions_for): Do not insert
17862         asserts for trivial conditions.
17864 2010-03-11  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
17866         PR tree-optimization/43280
17867         * tree-ssa-math-opts.c (find_bswap_1): Modify symbolic number
17868         generation.  Move calculation of size out of the if branch.
17869         (find_bswap): Modify compare number generation.
17871 2010-03-11  Richard Guenther  <rguenther@suse.de>
17873         PR lto/43200
17874         * lto-streamer-in.c (maybe_fixup_decls): Simplify.
17875         (input_gimple_stmt): Fixup handled component types during
17876         operand read.  Also fix up decls in ADDR_EXPRs.
17878 2010-03-10  Eric Botcazou  <ebotcazou@adacore.com>
17880         * config/sparc/sol2-bi.h (CC1_SPEC): Default to -mcpu=v9 for -m32.
17881         * config/sparc/t-sol2-64 (MULTILIB_DIRNAMES): Use sparcv8plus.
17883 2010-03-10  Jan Hubicka  <jh@suse.cz>
17885         PR c/43288
17886         * ipa.c (function_and_variable_visibility) Normalize COMMON bits.
17887         * varasm.c (get_variable_section): Don't do that here...
17888         (make_decl_rtl): ... and here.
17889         (do_assemble_alias): Produce decl RTL.
17890         (assemble_alias): Likewise.
17892 2010-03-10  Jakub Jelinek  <jakub@redhat.com>
17894         PR debug/43290
17895         * reg-notes.def (REG_CFA_SET_VDRAP): New note.
17896         * dwarf2out.c (dwarf2out_frame_debug_expr): Remove rule 20 - setting
17897         of fde->vdrap_reg.
17898         (dwarf2out_frame_debug): Handle REG_CFA_SET_VDRAP note.
17899         (based_loc_descr): Only express drap or vdrap regno based expressions
17900         using DW_OP_fbreg when not optimizing.
17901         * config/i386/i386.c (ix86_get_drap_rtx): When not optimizing,
17902         make the vDRAP = DRAP assignment RTX_FRAME_RELATED_P and add
17903         REG_CFA_SET_VDRAP note.
17905 2010-03-10  Alexander Monakov  <amonakov@ispras.ru>
17907         PR tree-optimization/43236
17908         * tree-loop-distribution.c (generate_memset_zero): Fix off-by-one
17909         error in calculation of base address in reverse iteration case.
17910         (generate_builtin): Take number of latch executions if the statement
17911         is in the latch.
17913 2010-03-10  Andrey Belevantsev  <abel@ispras.ru>
17915         PR middle-end/42859
17916         * tree-eh.c: Include pointer-set.h.
17917         (lower_eh_dispatch): Filter out duplicate case labels and
17918         remove the unneeded edge when the label is unused.  Return
17919         true when some edges are removed.
17920         (execute_lower_eh_dispatch): When any lowering resulted in
17921         removing an edge, also delete unreachable blocks.
17923 2010-03-10  Jakub Jelinek  <jakub@redhat.com>
17925         PR bootstrap/43287
17926         * config/rs6000/rs6000.c (rs6000_delegitimize_address): Handle
17927         UNSPEC_MACHOPIC_OFFSET.
17929 2010-03-09  Andreas Schwab  <schwab@linux-m68k.org>
17931         PR target/43294
17932         * config/m68k/m68k.c (TARGET_DELEGITIMIZE_ADDRESS): Define.
17933         (m68k_delegitimize_address): New function.
17935 2010-03-09  Jakub Jelinek  <jakub@redhat.com>
17937         PR debug/43299
17938         * dwarf2out.c (const_ok_for_output_1): Return 1 for UNSPECs.
17940         PR debug/43299
17941         * var-tracking.c (adjust_sets): New function.
17942         (count_with_sets, add_with_sets): Use it.
17943         (get_adjusted_src): New inline function.
17944         (add_stores): Use it.
17946         PR debug/43304
17947         * var-tracking.c (vt_expand_loc_callback) <case SUBREG>: If dummy,
17948         call cselib_dummy_expand_value_rtx_cb instead of
17949         cselib_expand_value_rtx_cb.
17951         PR debug/43293
17952         * config/i386/t-i386 (i386.o): Depend on debug.h and dwarf2out.h.
17953         * config/i386/i386.c: Include debug.h and dwarf2out.h.
17954         (ix86_file_end): If dwarf2out_do_cfi_asm (), emit .cfi_startproc
17955         and .cfi_endproc around the pic thunks.
17956         (output_set_got): For TARGET_DEEP_BRANCH_PREDICTION pic, ensure
17957         all queued unwind info register saves are saved before the call.
17958         For !TARGET_DEEP_BRANCH_PREDICTION pic, ensure the call is
17959         considered as sp-=4 for unwind info and the pop as sp+=4 which
17960         also clobbers dest, but doesn't actually restore it.
17962         PR debug/43290
17963         * config/i386/i386.c (ix86_get_drap_rtx): Don't set
17964         RTX_FRAME_RELATED_P.
17966 2010-03-09  Jie Zhang  <jie@codesourcery.com>
17968         * config/arm/arm.md (thumb_mulsi3_v6): Remove trailing
17969         whitespaces in output template.
17971 2010-03-09  Jie Zhang  <jie@codesourcery.com>
17973         * ira-lives.c (check_and_make_def_use_conflict): Don't fall
17974         out array boundary.
17976 2010-03-08  Jakub Jelinek  <jakub@redhat.com>
17978         * Makefile.in (check_gcc_parallelize): Run dg-torture.exp and
17979         builtins.exp in a separate job.
17981 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
17983         * graphite-sese-to-poly.c (add_param_constraints): Use
17984         lower_bound_in_type and upper_bound_in_type.
17986 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
17988         * graphite-sese-to-poly.c (add_param_constraints): Use sizetype
17989         instead of unsigned_type_node.
17991 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
17992             Reza Yazdani  <reza.yazdani@amd.com>
17994         PR middle-end/43065
17995         * graphite-sese-to-poly.c (add_param_constraints): Insert bounds
17996         on pointer type parameters.
17998 2010-03-08  Tobias Grosser  <grosser@fim.uni-passau.de>
18000         PR middle-end/42644
18001         PR middle-end/42130
18002         * graphite-clast-to-gimple.c (clast_to_gcc_expression): Also
18003         handle conversions from pointer to integers.
18004         (gcc_type_for_cloog_iv): Choose the smalles signed integer as an
18005         induction variable, to be able to work with code generated by CLooG.
18006         * graphite-sese-to-poly.c (scop_ivs_can_be_represented): New.
18007         (build_poly_scop): Bail out if we cannot codegen a loop.
18009 2010-03-08  Tobias Grosser  <grosser@fim.uni-passau.de>
18011         * graphite-clast-to-gimple.c (translate_clast): Do not short-cut
18012         code generation with gloog_error.
18014 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
18016         * sese.c (expand_scalar_variables_ssa_name): Add new argument for type.
18017         Call fold_convert on all the returned values.
18018         (expand_scalar_variables_expr): Pass to
18019         expand_scalar_variables_ssa_name the type of the resulting expression.
18021 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
18023         * graphite-ppl.c (ppl_min_for_le_polyhedron): Renamed
18024         ppl_min_for_le_pointset.
18025         Use ppl_Pointset_Powerset_C_Polyhedron_minimize.
18026         * graphite-ppl.h (ppl_min_for_le_polyhedron): Update declaration.
18028 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
18030         * graphite-dependences.c (map_into_dep_poly): Removed.
18031         (dependence_polyhedron_1): Use combine_context_id_scat.
18033 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
18035         * graphite-poly.h (struct poly_scattering): Add layout documentation.
18036         (struct poly_bb): Same.
18037         (combine_context_id_scat): New.
18039 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
18041         PR middle-end/42326
18042         * sese.c (name_defined_in_loop_p): Return false for default
18043         definitions.
18045 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
18047         * graphite-clast-to-gimple.c (find_cloog_iv_in_expr): Simplify
18048         and clean up the logic.
18050 2010-03-08  Sebastian Pop  <sebastian.pop@amd.com>
18052         * graphite-sese-to-poly.c (add_param_constraints): Enabled: remove
18053         early return.
18055 2010-03-08  Jakub Jelinek  <jakub@redhat.com>
18057         * var-tracking.c (remove_cselib_value_chains): Define only for
18058         ENABLE_CHECKING.
18059         (dataflow_set_preserve_mem_locs, dataflow_set_remove_mem_locs,
18060         delete_slot_part, emit_notes_for_differences_1): Don't call
18061         remove_cselib_value_chains here.
18062         (set_slot_part, emit_notes_for_differences_2): Don't call
18063         add_cselib_value_chains here.
18064         (preserved_values): New vector.
18065         (preserve_value): New function.
18066         (add_uses, add_stores, vt_add_function_parameters): Use it
18067         instead of cselib_preserve_value.
18068         (changed_values_stack): New vector.
18069         (check_changed_vars_0): New function.
18070         (check_changed_vars_1, check_changed_vars_2): Use it.
18071         (emit_notes_for_changes): Call set_dv_changed (*, false) on all
18072         changed_values_stack VALUEs.
18073         (vt_emit_notes): For all preserved_values call
18074         add_cselib_value_chains.  If ENABLE_CHECKING call
18075         remove_cselib_value_chains before verifying value_chains is empty.
18076         Initialize and free changed_values_stack.
18077         (vt_initialize): Initialize preserved_values.
18078         (vt_finalize): Free preserved_values.
18080 2010-03-08  Richard Guenther  <rguenther@suse.de>
18082         PR tree-optimization/43269
18083         * tree-ssa-dse.c (dse_possible_dead_store_p): Fix post-dom
18084         region detection.
18086 2010-03-08  Martin Jambor  <mjambor@suse.cz>
18088         * ipa-prop.h (struct ipa_param_descriptor): Removed the called field.
18089         (ipa_is_param_called): Removed.
18090         * ipa-prop.c (ipa_note_param_call): Do not set the called flag.
18091         (ipa_print_node_params): Do not print the called flag.
18092         (ipa_write_node_info): Do not stream the called flag.
18093         (ipa_read_node_info): Likewise.
18095 2010-03-07  Jakub Jelinek  <jakub@redhat.com>
18097         PR debug/43176
18098         * Makefile.in (var-tracking.o): Depend on pointer-set.h.
18099         * cselib.c (struct expand_value_data): Add dummy field.
18100         (cselib_expand_value_rtx, cselib_expand_value_rtx_cb): Initialize
18101         dummy to false.
18102         (cselib_dummy_expand_value_rtx_cb): New function.
18103         (cselib_expand_value_rtx_1): If evd->dummy is true, don't allocate
18104         any rtl.
18105         * cselib.h (cselib_dummy_expand_value_rtx_cb): New prototype.
18106         * var-tracking.c: Include pointer-set.h.
18107         (variable): Change n_var_parts to char from int.  Add
18108         cur_loc_changed and in_changed_variables fields.
18109         (variable_canonicalize): Remove.
18110         (shared_var_p): New inline function.
18111         (unshare_variable): Maintain cur_loc_changed and
18112         in_changed_variables fields.  If var was in changed_variables,
18113         replace it there with new_var.  Just copy cur_loc instead of
18114         resetting it to something else.
18115         (variable_union): Don't recompute cur_loc.  Use shared_var_p.
18116         (dataflow_set_union): Don't call variable_canonicalize.
18117         (loc_cmp): If both x and y are DEBUG_EXPRs, compare uids
18118         of their DEBUG_EXPR_TREE_DECLs.
18119         (canonicalize_loc_order_check): Verify that cur_loc is NULL
18120         and in_changed_variables and cur_loc_changed is false.
18121         (variable_merge_over_cur): Clear cur_loc, in_changed_variables
18122         and cur_loc_changed.  Don't update cur_loc here.
18123         (variable_merge_over_src): Don't call variable_canonicalize.
18124         (dataflow_set_preserve_mem_locs): Use shared_var_p.  When
18125         removing loc that is equal to cur_loc, clear cur_loc,
18126         set cur_loc_changed and ensure variable_was_changed is called.
18127         (dataflow_set_remove_mem_locs): Use shared_var_p.  Only
18128         compare pointers in cur_loc check, if it is equal to loc,
18129         clear cur_loc and set cur_loc_changed.  Don't recompute cur_loc here.
18130         (variable_different_p): Remove compare_current_location argument,
18131         don't compare cur_loc.
18132         (dataflow_set_different_1): Adjust variable_different_p caller.
18133         (variable_was_changed): If dv had some var in changed_variables
18134         already, reset in_changed_variables flag for it and propagate
18135         cur_loc_changed over to the new variable.  On empty var
18136         always set cur_loc_changed.  Set in_changed_variables on whatever
18137         var is added to changed_variables.
18138         (set_slot_part): Clear cur_loc_changed and in_changed_variables.
18139         Use shared_var_p.  When removing loc that is equal to cur_loc,
18140         clear cur_loc and set cur_loc_changed.  If cur_loc is NULL at the
18141         end, don't set it to something else, just call variable_was_changed.
18142         (delete_slot_part): Use shared_var_p.  When cur_loc equals to
18143         loc being removed, clear cur_loc and set cur_loc_changed.
18144         Set cur_loc_changed if all locations have been removed.
18145         (struct expand_loc_callback_data): New type.
18146         (vt_expand_loc_callback): Add dummy mode in which no rtxes are
18147         allocated.  Always create SUBREGs if simplify_subreg failed.
18148         Prefer to use cur_loc, when that fails and still in
18149         changed_variables (and seen first time) recompute it.  Set
18150         cur_loc_changed of variables which had to change cur_loc and
18151         compute elcd->cur_loc_changed if any of the subexpressions used
18152         had to change cur_loc.
18153         (vt_expand_loc): Adjust to pass arguments in
18154         expand_loc_callback_data structure.
18155         (vt_expand_loc_dummy): New function.
18156         (emitted_notes): New variable.
18157         (emit_note_insn_var_location): For VALUEs and DEBUG_EXPR_DECLs
18158         that weren't used for any other decl in current
18159         emit_notes_for_changes call call vt_expand_loc_dummy to update
18160         cur_loc.  For -fno-var-tracking-assignments, set cur_loc to
18161         first loc_chain location if NULL before.  Always use just
18162         cur_loc instead of first loc_chain location.  When cur_loc_changed
18163         is false, when not --enable-checking=rtl just don't emit any note.
18164         When rtl checking, compute the note and assert it is the same
18165         as previous note.  Clear cur_loc_changed and in_changed_variables
18166         at the end before removing from changed_variables.
18167         (check_changed_vars_3): New function.
18168         (emit_notes_for_changes): Traverse changed_vars to call
18169         check_changed_vars_3 on each changed var.
18170         (emit_notes_for_differences_1): Clear cur_loc_changed and
18171         in_changed_variables.  Recompute cur_loc of new_var.
18172         (emit_notes_for_differences_2): Clear cur_loc if new variable appears.
18173         (vt_emit_notes): Initialize and destroy emitted_notes.
18175 2010-03-07  Bernd Schmidt  <bernd.schmidt@analog.com>
18177         PR rtl-optimization/42220
18178         * regrename.c (scan_rtx) <case STRICT_LOW_PART, ZERO_EXTRACT>:
18179         Use verify_reg_tracked to determine if we should use OP_OUT rather
18180         than OP_INOUT.
18181         (build_def_use): If we see an in-out operand for a register that we
18182         know nothing about, treat is an output if possible, fail the block if
18183         not.
18185 2010-03-06  Alexandre Oliva  <aoliva@redhat.com>
18187         PR debug/42897
18188         * gimple-iterator.c (gsi_remove): Propagate only PHI DEFs removed
18189         permanently.
18191 2010-03-06  Alexandre Oliva  <aoliva@redhat.com>
18193         PR debug/42897
18194         * tree-vect-loop.c (vect_transform_loop): Kill out-of-loop debug
18195         uses of relevant DEFs that are dead outside the loop too.
18197 2010-03-06  Alexandre Oliva  <aoliva@redhat.com>
18199         * var-tracking.c (dataflow_set_merge): Swap src and src2.
18200         Reverted:
18201         2010-01-13  Jakub Jelinek  <jakub@redhat.com>
18202         PR debug/41371
18203         * var-tracking.c (values_to_unmark): New variable.
18204         (find_loc_in_1pdv): Clear VALUE_RECURSED_INTO of values in
18205         values_to_unmark vector.  Moved body to...
18206         (find_loc_in_1pdv_1): ... this.  Don't clear VALUE_RECURSED_INTO,
18207         instead queue it into values_to_unmark vector.
18208         (vt_find_locations): Free values_to_unmark vector.
18210 2010-03-05  Eric Botcazou  <ebotcazou@adacore.com>
18212         * Makefile.in (PLUGINCC, PLUGINCFLAGS): New variables.
18213         (site.exp): Export them when plugins are enabled.
18215 2010-03-05  Sebastian Pop  <sebastian.pop@amd.com>
18217         PR middle-end/42326
18218         * tree-chrec.c (chrec_fold_plus_1): Do not handle convert expressions
18219         that contain scevs.
18220         (chrec_fold_multiply): Same.
18222 2010-03-04  Andrew Pinski  <andrew_pinski@caviumnetworks.com>
18224         PR c/43248
18225         * c-decl.c (build_compound_literal): Return early if init is
18226         an error_mark_node.
18228 2010-03-04  Martin Jambor  <mjambor@suse.cz>
18230         PR tree-optimization/43164
18231         PR tree-optimization/43191
18232         * tree-sra.c (type_consists_of_records_p): Reject records with
18233         zero-size bit-fields at the end.
18235 2010-03-04  Mike Stump  <mikestump@comcast.net>
18237         * Makefile.in (TAGS): Remove *.y.
18239 2010-03-04  Richard Guenther  <rguenther@suse.de>
18241         PR tree-optimization/40761
18242         * tree-ssa-pre.c (compute_antic): Walk reverse postorder
18243         in reverse order.
18244         (my_rev_post_order_compute): New function.
18245         (init_pre): Call it.
18247 2010-03-04  Changpeng Fang  <changpeng.fang@amd.com>
18249         PR middle-end/43209
18250         * tree-ssa-loop-ivopts.c (determine_use_iv_cost_condition): Do not
18251         decrease the cost of an IV candidate when the cost is infinite.
18253 2010-03-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18255         * doc/extend.texi (Vector Extensions, X86 Built-in Functions):
18256         Use '3DNow!' for the extension of that name, ensure normal space
18257         after the string.
18258         * doc/invoke.texi (i386 and x86-64 Options): Likewise.
18260 2010-03-03  Jeff Law  <law@redhat.com>
18262         * PR middle-end/32693
18263         * expmed.c (store_bit_field_1): Use gen_lowpart_SUBREG rather
18264         than gen_rtx_SUBREG.
18265         (extract_bit_field_1): Likewise.
18267 2010-03-03  Janis Johnson  <janis187@us.ibm.com>
18269         * doc/sourcebuild.texi (Test directives): Document that arguments
18270         include-opts and exclude-opts are now optional for dg-skip-if,
18271         dg-xfail-if, dg-xfail-run-if, and dg-shouldfail.
18273 2010-03-03  Jason Merrill  <jason@redhat.com>
18275         PR c++/12909
18276         * cgraph.h (varpool_node): Add extra_name field.
18277         * varpool.c (varpool_extra_name_alias): New.
18278         (varpool_assemble_decl): Emit extra name aliases.
18279         (varpool_mark_needed_node): Look past an extra name alias.
18280         * lto-streamer.h (LTO_tags): Add LTO_var_decl_alias.
18281         * lto-streamer-in.c (lto_input_tree): Read it.
18282         * lto-streamer-out.c (output_unreferenced_globals): Write it.
18284 2010-03-03  Eric Botcazou  <ebotcazou@adacore.com>
18286         * config.gcc (sparc64-*-solaris2*, sparc-*-solaris2*): Merge into...
18287         (sparc*-*-solaris2*): ...this.
18289 2010-03-03  Jakub Jelinek  <jakub@redhat.com>
18291         PR debug/43229
18292         * cfgexpand.c (expand_debug_expr): Handle DOT_PROD_EXPR,
18293         WIDEN_MULT_EXPR and WIDEN_SUM_EXPR.  Return NULL without
18294         ICE for vector expressions, ADDR_SPACE_CONVERT_EXPR,
18295         FIXED_CONVERT_EXPR, OBJ_TYPE_REF and WITH_SIZE_EXPR.
18297         PR debug/43237
18298         * dwarf2out.c (add_bound_info): If a decl bound doesn't have decl_die,
18299         fallthrough to default handling, just with want_address 0 instead of 2.
18300         For single element lists, add_AT_loc directly, otherwise create an
18301         artificial variable DIE and stick location list to it.
18303         PR debug/43177
18304         * var-tracking.c (loc_cmp): Don't assert VALUEs have the same mode.
18305         (VAL_EXPR_HAS_REVERSE): Define.
18306         (reverse_op): New function.
18307         (add_stores): For reversible operations add an extra MO_VAL_USE.
18309 2010-03-02  Jason Merrill  <jason@redhat.com>
18311         * c-pretty-print.c (pp_c_specifier_qualifier_list): Print vector size.
18313 2010-03-02  Eric Botcazou  <ebotcazou@adacore.com>
18315         * config.gcc (sparc-*-linux*): Do not include sparc/gas.h.
18316         (sparc64-*-linux*): Likewise.
18317         (sparc64-*-solaris2*): Include assembler files before linker ones.
18318         (sparc-*-solaris2*): Simplify and reorder to match previous case.
18319         * config/sparc/gas.h: Delete.
18320         * config/sparc/sol2-64.h: Add copyright notice.
18321         * config/sparc/sol2-gas-bi.h: Likewise.
18322         * config/sparc/sol2-gld.h: Likewise.
18323         * config/sparc/sysv4.h (TARGET_ASM_NAMED_SECTION): Delete.
18324         * config/sparc/sol2.h (TARGET_ASM_NAMED_SECTION): Redefine.
18325         * config/sparc/sol2-gas.h (TARGET_ASM_NAMED_SECTION): Likewise.
18326         * config/sparc/sparc.c (TARGET_ASM_ALIGNED_SI_OP): Never redefine.
18327         (sparc_elf_asm_named_section): Rename into...
18328         (sparc_solaris_elf_asm_named_section): ...this.  Always define.
18330 2010-03-02  Uros Bizjak  <ubizjak@gmail.com>
18332         * config/alpha/alpha.c (override_options): Fix -mtune error message.
18334 2010-03-02  Jeff Law  <law@redhat.com>
18336         PR middle-end/42431
18337         * reload1.c (rtx_p, substitute_stack): Declare.
18338         (substitute): Record addresses of changed rtxs.
18339         (gen_reload_chain_without_interm_reg_p): Don't use copy_rtx anymore.
18340         Restore the original rtx when complete.
18341         (reload): Free subsitute_stack when complete.
18343 2010-03-02  Janis Johnson  <janis187@us.ibm.com>
18345         * doc/gccint.texi (menu): Add Testsuites as a chapter.
18346         * doc/sourcebuild.texi (Testsuites): Move up a level to be a
18347         new chapter.
18348         (Test Idioms, Test Directives, Ada Tests, C Tests, libgcj Tests,
18349         LTO Testing, gcov Testing, profopt Testing, compat Testing,
18350         Torture Tests): Change from subsection to section.
18352 2010-03-02  Jakub Jelinek  <jakub@redhat.com>
18353             Steven Bosscher  <steven@gcc.gnu.org>
18355         * var-tracking.c (vt_initialize): Scan insns in ebb chunks
18356         instead of bb.
18358 2010-03-02  Reza Yazdani  <reza.yazdani@amd.com>
18360         PR middle-end/42640
18361         * tree-loop-distribution.c (update_phis_for_loop_copy): Replaced
18362         the assignment from the new induction variable to the assignment
18363         of the value from the original loop PHI function.
18365 2010-03-01  Janis Johnson  <janis187@us.ibm.com>
18366             Daniel Jacobowitz  <dan@codesourcery.com>
18368         * doc/sourcebuild.texi (Test directives): Clarify options to
18369         dg-skip-if.
18371 2010-03-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
18373         * configure.ac (gcc_cv_as_cfi_directive) [i?86-*-solaris*]:
18374         Disable cfi directives unless GCC and gas agree on using read-only
18375         .eh_frame sections for 64-bit.
18376         * configure: Regenerate.
18378 2010-03-01  Richard Guenther  <rguenther@suse.de>
18380         PR tree-optimization/43220
18381         * tree-ssa-ccp.c (optimize_stack_restore): Do not optimize
18382         BUILT_IN_STACK_{SAVE,RESTORE} around alloca.
18384 2010-03-01  Richard Guenther  <rguenther@suse.de>
18385             Martin Jambor  <mjambor@suse.cz>
18387         PR middle-end/41250
18388         * gimplify.c (gimplify_body): Unset DECL_HAS_VALUE_EXPR_P on
18389         gimplified parameters.
18391 2010-03-01  Christian Bruel  <christian.bruel@st.com>
18393         * except.c (dw2_build_landing_pads): set LABEL_PRESERVE_P.
18395 2010-03-01  H.J. Lu  <hongjiu.lu@intel.com>
18397         * config/i386/linux64.h (ASM_SPEC): Use SPEC_32 and SPEC_64.
18399 2010-03-01  Richard Guenther  <rguenther@suse.de>
18401         PR middle-end/43213
18402         * expr.c (expand_assignment): Use the alias-oracle to tell
18403         if the rhs aliases the result decl.
18405 2010-03-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
18407         PR pch/14940
18408         * config/host-solaris.c (HOST_HOOKS_GT_PCH_GET_ADDRESS): Redefine
18409         to sol_gt_pch_get_address.
18410         (TRY_EMPTY_VM_SPACE): Define for all combinations of 32 and
18411         64-bit, SPARC and x86.
18412         (sol_gt_pch_get_address): New function.
18414 2010-03-01  Marco Poletti  <poletti.marco@gmail.com>
18416         * toplev.h (inform_n, error_n): Declare.
18417         * diagnostic.c (inform_n, error_n): New function.
18419 2010-03-01  Jakub Jelinek  <jakub@redhat.com>
18421         * cfgexpand.c (expand_used_vars): If an artificial non-ignored var
18422         has no rtl yet when processing local_decls, queue it and recheck
18423         if deferred stack allocation hasn't assigned it rtl.
18425 2010-02-28  Kaz Kojima  <kkojima@gcc.gnu.org>
18427         * config/sh/sh.c (unspec_bbr_uid): New.
18428         (gen_block_redirect): Use it instead of INSN_UID.
18429         (gen_far_branch): Likewise.
18431 2010-02-28  H.J. Lu  <hongjiu.lu@intel.com>
18433         * config/i386/darwin.h (TARGET_SUBTARGET32_ISA_DEFAULT): Make
18434         it the same as TARGET_SUBTARGET64_ISA_DEFAULT.
18436 2010-02-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18438         * doc/invoke.texi (Warning Options, RX Options): Fix typos.
18439         (Warning Options): -Wno-conversion-null is valid for
18440         Objective-C++ as well.
18441         * doc/tm.texi (Named Address Spaces): Likewise.
18442         * doc/plugins.texi (Plugins): Replace TABs with spaces.
18443         * doc/tree-ssa.texi (Tree SSA): Likewise.
18445 2010-02-27  H.J. Lu  <hongjiu.lu@intel.com>
18447         PR bootstrap/43202
18448         * config.gcc: Don't enable SSE math for i[34567]86-*-darwin*
18449         by default.  Don't set the default arch for
18450         i[34567]86-*-darwin*|x86_64-*-darwin*.
18452 2010-02-27  H.J. Lu  <hongjiu.lu@intel.com>
18454         PR bootstrap/43202
18455         * config.gcc: Enable SSE math for i[34567]86-*-darwin* by
18456         default.  Set the default 32bit/64bit archs with $with_arch
18457         instead of $arch for i[34567]86-*-*|x86_64-*-* targets.
18459 2010-02-27  Richard Guenther  <rguenther@suse.de>
18461         PR tree-optimization/43186
18462         * params.def (PARAM_MAX_UNROLL_ITERATIONS): New param.
18463         * doc/invoke.texi (max-completely-peel-loop-nest-depth): Document.
18464         * tree-ssa-loop-ivcanon.c (tree_unroll_loops_completely): Limit
18465         unroller iterations.
18467 2010-02-27  H.J. Lu  <hongjiu.lu@intel.com>
18469         * config.gcc: Set the default 32bit/64bit archs if 64bit ISA is
18470         required and i[34567]86-*-* targets don't support 64bit ISA.
18472 2010-02-26  Eric Botcazou  <ebotcazou@adacore.com>
18474         PR ada/43096
18475         * tree-ssa-alias.c (same_type_for_tbaa): Return -1 if the types have
18476         the same alias set.
18478 2010-02-26  H.J. Lu  <hongjiu.lu@intel.com>
18480         * config.gcc: Set the default arch at least to Prescott for
18481         i[34567]86-*-darwin* and Pentium 4 for i[34567]86-*-* targets
18482         if SSE math is enabled.
18484 2010-02-26  Manuel López-Ibáñez  <manu@gcc.gnu.org>
18486         * diagnostic.c (diagnostic_initialize): Update.
18487         (diagnostic_report_diagnostic): Test inhibit_notes_p for
18488         informative notes.
18489         * diagnostic.h (diagnostic_context): New bool inhibit_notes_p.
18490         (diagnostic_inhibit_notes): New.
18491         * toplev.c (process_options): inhibit notes with -fcompare-debug.
18493 2010-02-26  Manuel López-Ibáñez  <manu@gcc.gnu.org>
18495         PR c/20631
18496         * doc/cpp.texi: Use c90 instead of c89 and gnu90 instead of gnu89.
18497         * doc/standards.texi: Likewise.
18498         * doc/extend.texi: Likewise.
18499         * doc/trouble.texi: Likewise.
18500         * doc/cppopts.texi: Likewise.
18501         * doc/install.texi: Likewise.
18502         * c.opt (std=c90,std=gnu90): New options.
18503         * c-opts.c (c_common_handle_option): Handle them.
18505 2010-02-26  Manuel López-Ibáñez  <manu@gcc.gnu.org>
18507         PR c/24577
18508         * c-decl.c (undeclared_variable): Use an informative note.
18510 2010-02-26  Richard Guenther  <rguenther@suse.de>
18512         PR tree-optimization/43186
18513         * gimple.h (gimple_fold): Remove.
18514         * gimple.c (gimple_fold): Remove.  Inline into single user ...
18515         * tree-cfgcleanup.c (cleanup_control_expr_graph): ... here.
18516         Try harder for conditions.
18518 2010-02-26  Jakub Jelinek  <jakub@redhat.com>
18520         PR debug/43190
18521         * function.c (used_types_insert): Don't skip through named pointer
18522         types.  Don't use TYPE_MAIN_VARIANT if the original type has a name
18523         and it is different from the main variant's type.
18525 2010-02-26  Nick Clifton  <nickc@redhat.com>
18527         * config/rx/rx.md (sminsi3): Remove bogus alternative.
18529 2010-02-26  H.J. Lu  <hongjiu.lu@intel.com>
18531         * config.gcc: Support --with-fpmath=sse for x86.
18533         * config/i386/ssemath.h: New.
18535         * doc/install.texi (--with-fpmath=sse): Documented.
18537 2010-02-26  Richard Guenther  <rguenther@suse.de>
18539         PR tree-optimization/43188
18540         * tree-vect-stmts.c (get_vectype_for_scalar_type): Do not build
18541         vector types of over-aligned element type.
18543 2010-02-26  Uros Bizjak  <ubizjak@gmail.com>
18545         PR target/43175
18546         * config/i386/i386.c (expand_vec_perm_blend): Use correct
18547         operands in V8HImode subregs.  Fix operand order in VEC_MERGE rtx.
18549 2010-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
18551         * doc/invoke.texi (-fvar-tracking-assignments): Fix typo.
18553 2010-02-26  Jakub Jelinek  <jakub@redhat.com>
18555         * Makefile.in (var-tracking.o): Depend on $(DIAGNOSTIC_H).
18556         * var-tracking.c: Include diagnostic.h.
18557         (debug_dv): New function.
18558         (dump_var): Print DEBUG_EXPR_DECLs as D#N instead of D.-N.
18560         PR debug/43160
18561         * var-tracking.c (dv_onepart_p): Return true for DEBUG_EXPR_DECLs.
18562         (add_value_chain, add_value_chains, remove_value_chain,
18563         remove_value_chains): Handle DEBUG_EXPRs.
18564         (check_changed_vars_1, check_changed_vars_2): Handle DEBUG_EXPR_DECLs.
18566         PR debug/43161
18567         * regcprop.c (struct queued_debug_insn_change): New type.
18568         (struct value_data_entry): Add debug_insn_changes field.
18569         (struct value_data): Add n_debug_insn_changes field.
18570         (debug_insn_changes_pool): New variable.
18571         (free_debug_insn_changes, apply_debug_insn_changes,
18572         cprop_find_used_regs_1, cprop_find_used_regs): New functions.
18573         (kill_value_one_regno): Call free_debug_insn_changes if needed.
18574         (init_value_data): Clear debug_insn_changes and n_debug_insn_changes
18575         fields.
18576         (replace_oldest_value_reg): Don't change DEBUG_INSNs, instead queue
18577         changes for them.
18578         (copyprop_hardreg_forward_1): Don't call apply_change_group for
18579         DEBUG_INSNs.  For a real insn, if there are queued DEBUG_INSN
18580         changes, call cprop_find_used_regs via note_stores.
18581         (copyprop_hardreg_forward): When copying vd from predecessor
18582         which has any queued DEBUG_INSN changes, make sure the pointers are
18583         cleared.  At the end call df_analyze and then if there are any
18584         DEBUG_INSN changes queued at the end of some basic block for still
18585         live registers, apply them.
18586         (pass_cprop_hardreg): Set TODO_df_finish in todo_flags_finish.
18588 2010-02-25  Uros Bizjak  <ubizjak@gmail.com>
18590         * config.gcc (i[34567]86-*-* | x86_64-*-*): Split long line.
18591         (arm*-*-*): Ditto.
18593 2010-02-25  H.J. Lu  <hongjiu.lu@intel.com>
18595         * config.gcc: Set arch/cpu for i[34567]86-*-*|x86_64-*-*
18596         targets.  Set the default with_cpu/with_arch from arch/cpu.
18597         Allow x86-64 and native for with_cpu/with_arch.
18599 2010-02-25  Nicolas Benoit  <nbenoit@tuxfamily.org>
18601         * ebitmap.c: Change calls to verify_popcount with calls to
18602         sbitmap_verify_popcount.
18603         (ebitmap_clear_bit): Fixed map->cacheindex test and
18604         map>cache update when bit clearing results in an empty
18605         element.
18607 2010-02-25  Michael Meissner  <meissner@linux.vnet.ibm.com>
18609         PR target/43154
18610         * config/rs6000/vector.md (VEC_64): New iterator for V2DF, V2DI.
18611         (vec_interleave_high<mode>): Rename from vec_interleave_highv2df
18612         and support both V2DF and V2DI modes.
18613         (vec_interleave_low<mode>): Rename from vec_interleave_lowv2df and
18614         support both V2DF and V2DI modes.
18615         (general): Delete trailing whitespace from a few patterns.
18617         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins): Add
18618         V2DF/V2DI interleave high/low builtins.
18620         * config/rs6000/rs6000-builtin.def (VSX_BUILTIN_VEC_MERGE*): Add
18621         new VSX builtins.
18623         * config/rs6000/rs6000.c (bdesc_2arg): Add support for V2DF/V2DI
18624         interleave high/low functions.
18626 2010-02-25  Gerald Pfeifer  <gerald@pfeifer.com>
18628         * doc/extend.texi (Symbol-Renaming Pragmas): Fix spelling of
18629         #pragma extern_prefix.
18631 2010-02-25  Jakub Jelinek  <jakub@redhat.com>
18633         PR debug/43166
18634         * cfgexpand.c (expand_debug_expr) <case VAR_DECL>: If mode is
18635         BLKmode, assert op0 is a MEM and just adjust its mode.
18637         PR debug/43165
18638         * cfgexpand.c (expand_debug_expr): Don't call simplify_gen_subreg
18639         if bitpos isn't multiple of mode's bitsize.
18641 2010-02-24  Manuel López-Ibáñez  <manu@gcc.gnu.org>
18643         * c.opt (-ftemplate-depth=): New.
18644         (-ftemplate-depth-): Deprecate.
18645         * optc-gen.awk: Handle -ftemplate-depth=.
18646         * opth-gen.awk: Likewise.
18647         * c-opts.c (c_common_handle_option): Likewise.
18648         * doc/invoke.texi (-ftemplate-depth-): Replace with -ftemplate-depth=.
18650 2010-02-24  Jason Merrill  <jason@redhat.com>
18652         * doc/invoke.texi: Improve -Wabi and -fabi-version docs.
18654 2010-02-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
18656         * cfg.c (alloc_aux_for_block): Remove inline.
18657         (alloc_aux_for_edge): Likewise.
18659 2010-02-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
18661         * config.gcc: Fix typo in mips-sgi-irix6.[0-4]* obsoletion.
18663 2010-02-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
18665         * config/i386/sol2.h (NO_DBX_BNSYM_ENSYM): Define.
18666         * config/i386/sol2-gas.h: New file.
18667         * config.gcc (i[34567]86-*-solaris2*): Use it.
18669 2010-02-24  Manuel López-Ibáñez  <manu@gcc.gnu.org>
18671         PR c/43128
18672         * c-typeck.c (ep_convert_and_check): New.
18673         (build_conditional_expr): Use it.
18674         (build_binary_op): Likewise.
18676 2010-02-24  Jakub Jelinek  <jakub@redhat.com>
18678         * regcprop.c (copyprop_hardreg_forward_1): Don't call df_insn_rescan.
18680         PR debug/43150
18681         * gimplify.c (gimplify_type_sizes): Clear DECL_IGNORED_P for VLA
18682         bounds even for -O+.
18683         * var-tracking.c (track_expr_p): If !need_rtl, don't mandate
18684         expr needs to have DECL_NAME set.
18686 2010-02-24  Nick Clifton  <nickc@redhat.com>
18688         * config/mep/mep.c: Include gimple.h.
18689         (mep_function_uses_sp): Delete unused function.
18690         (mep_gimplify_va_arg_expr): Change types of pre_p and post_p
18691         parameters.  Use unsigned integers to count args.  Return a
18692         NULL_RTX instead of an error_mark_node.  Toidy up formatting.
18694 2010-02-23  Jakub Jelinek  <jakub@redhat.com>
18696         PR target/43107
18697         * config/i386/i386.c (avx_vpermilp_parallel): Reject indexes
18698         greater or equal to nelt instead of 2 * nelt.
18699         (expand_vec_perm_1): When op0 and op1 are equal, mask indexes
18700         with nelt - 1.
18702 2010-02-23  Jason Merrill  <jason@redhat.com>
18704         PR debug/42800
18705         * cfgexpand.c (expand_used_vars): Keep artificial non-ignored vars
18706         in cfun->local_decls even if they have register types.
18708         PR c++/42837
18709         * stor-layout.c (place_field): Don't warn about unnecessary
18710         DECL_PACKED if the type is packed.
18712 2010-02-23  Jakub Jelinek  <jakub@redhat.com>
18714         PR target/43139
18715         * config/i386/i386.c (ix86_delegitimize_address): Delegitimize all
18716         GOTOFF relocs, even when the base reg isn't pic pointer.
18718 2010-02-23  Michael Matz  <matz@suse.de>
18720         PR debug/43077
18721         * cfgexpand (expand_debug_expr): Expand TERed ssa names in place.
18722         (expand_gimple_basic_block): Generate and use debug temps if there
18723         are debug uses left after the last real use of TERed ssa names.
18724         Unlink debug immediate uses when they are expanded.
18726 2010-02-23  Manuel López-Ibáñez  <manu@gcc.gnu.org>
18728         PR 43123
18729         * config/i386/i386.c (override_options): Reorganise to provide
18730         better error messages.
18732 2010-02-22  Sebastian Pop  <sebastian.pop@amd.com>
18734         PR middle-end/43083
18735         * graphite-scop-detection.c (create_single_exit_edge): Move
18736         the call to find_single_exit_edge to....
18737         (create_sese_edges): ...here.  Don't handle multiple edges
18738         exiting the function.
18739         (build_graphite_scops): Don't handle multiple edges
18740         exiting the function.
18742 2010-02-22  Sebastian Pop  <sebastian.pop@amd.com>
18744         PR middle-end/43097
18745         * sese.c (get_rename): Assert that old_name is an SSA_NAME.
18746         (rename_variables_in_stmt): Continue when the use is not an SSA_NAME.
18748 2010-02-22  Sebastian Pop  <sebastian.pop@amd.com>
18750         PR middle-end/43026
18751         * sese.c (expand_scalar_variables_expr): Handle COMPONENT_REF.
18753 2010-02-22  Manuel López-Ibáñez  <manu@gcc.gnu.org>
18755         PR c++/43126
18756         * c-typeck.c (convert_arguments): Print declaration location.
18757         * c-common.c (validate_nargs): Rename as
18758         builtin_function_validate_nargs.
18759         (check_builtin_function_arguments): Update.
18761 2010-02-22  Richard Guenther  <rguenther@suse.de>
18763         PR lto/43045
18764         * tree-inline.c (declare_return_variable): Use the type of
18765         the call stmt lhs if available.
18767 2010-02-22  Duncan Sands  <baldrick@free.fr>
18769         * passes.c (register_pass): Always consider all pass lists when
18770         ref_pass_instance_number is zero.
18772 2010-02-22  Richard Guenther  <rguenther@suse.de>
18774         PR tree-optimization/42749
18775         * tree-tailcall.c (adjust_return_value_with_ops): Drop update
18776         parameter.  Do arithmetic in the original type.
18777         (update_accumulator_with_ops): Likewise.
18778         (adjust_accumulator_values): Adjust.
18780 2010-02-22  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
18782         * config/s390/s390.md ("movqi"): Re-add the mem->mem alternative.
18783         (QI to BLKmode splitter): New splitter.
18785 2010-02-22  H.J. Lu  <hongjiu.lu@intel.com>
18787         * config/i386/i386.c (initial_ix86_tune_features): Turn on
18788         X86_TUNE_INTER_UNIT_MOVES for m_ATOM.
18790 2010-02-22  Richard Guenther  <rguenther@suse.de>
18792         * tree-vect-slp.c (vect_slp_analyze_bb): Fix typo.
18794 2010-02-22  Hans-Peter Nilsson  <hp@bitrange.com>
18796         Migrate crti, crtn, crtbegin, crtend build rules to libgcc.
18797         * config/mmix/t-mmix (EXTRA_MULTILIB_PARTS): Don't set.
18798         ($(T)crti.o, $(T)crtn.o): Remove rules.
18800 2010-02-21  Tobias Burnus  <burnus@net-b.de>
18802         PR fortran/35259
18803         * doc/invoke.texi (-fassociative-math): Document that this
18804         option is automatically enabled for Fortran.
18806 2010-02-20  David S. Miller  <davem@davemloft.net>
18808         * configure.ac: Test if linker and assembler properly support
18809         GOTDATA_OP relocations.
18810         * configure: Rebuild.
18811         * config.in: Likewise.
18812         * config/sparc/sparc.md (UNSPEC_MOVE_GOTDATA): New.
18813         (movsi_lo_sum_pic): Use %gdop_*() relocs if available.
18814         (movsi_high_pic): Likewise.
18815         (movdi_lo_sum_pic): Likewise.
18816         (movdi_high_pic): Likewise.
18817         (movsi_pic_gotdata_op): New pattern.
18818         (movdi_pic_gotdata_op): Likewise.
18819         * config/sparc/sparc.c (legitimize_pic_address): If flag_pic is 2,
18820         emit gen_mov{si,di}_pic_gotdata_op for the GOT slot load.
18822 2010-02-20  Uros Bizjak  <ubizjak@gmail.com>
18824         PR target/43067
18825         * config/i386/sse.md (xop_mulv2div2di3_low): Change type
18826         attribute to ssemul.
18827         (xop_mulv2div2di3_high): Ditto.
18829 2010-02-20  Manuel López-Ibáñez  <manu@gcc.gnu.org>
18831         PR c++/35669
18832         * c.opt (Wconversion-null): New option.
18833         * doc/invoke.texi (Wconversion-null): Document.
18835 2010-02-20  Manuel López-Ibáñez  <manu@gcc.gnu.org>
18837         * common.opt (Wlarger-than-): Add Undocumented.
18839 2010-02-19  Mike Stump  <mikestump@comcast.net>
18841         * config/t-darwin (gt-darwin.h): Remove as Makefile now handles it.
18843 2010-02-19  Jason Merrill  <jason@redhat.com>
18845         PR target/40332
18846         * configure.ac (gcc_cv_as_cfi_advance_working): Check 32-bit advance.
18847         * configure: Likewise.
18849 2010-02-20  Alan Modra  <amodra@gmail.com>
18851         PR middle-end/42344
18852         * cgraph.h (cgraph_make_decl_local): Declare.
18853         * cgraph.c (cgraph_make_decl_local): New function.
18854         (cgraph_make_node_local): Use it.
18855         * cgraphunit.c (cgraph_function_versioning): Likewise.
18856         * ipa.c (function_and_variable_visibility): Likewise.
18858 2010-02-19  Jakub Jelinek  <jakub@redhat.com>
18860         PR bootstrap/43121
18861         * except.c (sjlj_emit_function_enter): Don't call
18862         add_reg_br_prob_note, instead add REG_BR_PROB note to the last insn
18863         directly.
18864         * rtl.h (add_reg_br_prob_note): Remove prototype.
18866 2010-02-19  Manuel López-Ibáñez  <manu@gcc.gnu.org>
18868         PR 41779
18869         * c-common.c (conversion_warning): Remove widening conversions
18870         before checking the conversion of integers to reals.
18872 2010-02-19  Mike Stump  <mikestump@comcast.net>
18874         PR middle-end/43125
18875         * c-decl.c (merge_decls): Merge DECL_PRESERVE_P.
18877         PR objc/43061
18878         * cgraphunit.c (process_function_and_variable_attributes): Check
18879         DECL_PRESERVE_P instead of looking up attribute "used".
18880         * ipa-pure-const.c (check_decl): Likewise.
18881         * ipa-reference.c (has_proper_scope_for_analysis): Likewise.
18882         * ipa-type-escape.c (has_proper_scope_for_analysis): Likewise.
18883         * config/sol2.c (solaris_insert_attributes): Set DECL_PRESERVE_P
18884         instead of attribute "used".
18885         * config/sol2-c.c (solaris_pragma_init): Likewise.
18886         (solaris_pragma_fini): Likewise.
18888 2010-02-19  Jakub Jelinek  <jakub@redhat.com>
18890         * ipa-struct-reorg.c (make_field_acc_node, gen_cluster, peel_field):
18891         Use XCNEW instead of xcalloc.
18892         (add_access_to_acc_sites, create_new_var_node, add_alloc_site): Use
18893         XNEW instead of xmalloc.
18894         (get_fields): Use XNEWVEC instead of xmalloc.
18896         PR debug/43084
18897         * ipa-struct-reorg.c (add_access_to_acc_sites): For debug stmts don't
18898         populate vars array.
18899         (create_new_general_access): For debug stmts just reset value.
18900         (get_stmt_accesses): For accesses within debug stmts just record them
18901         using add_access_to_acc_sites instead of preventing the peeling or
18902         counting them as accesses.
18904         PR middle-end/42233
18905         * dojump.c (do_jump) <case TRUTH_NOT_EXPR>: Invert priority.
18907 2010-02-19  Richard Guenther  <rguenther@suse.de>
18909         PR tree-optimization/42916
18910         * tree-vect-slp.c (vect_slp_analyze_bb): Count only real
18911         instructions.
18913 2010-02-19  Andreas Schwab  <schwab@linux-m68k.org>
18915         * configure.ac: Replace all uses of changequote in macro arguments
18916         with proper quoting.
18918 2010-02-19  Jakub Jelinek  <jakub@redhat.com>
18920         PR middle-end/42233
18921         * loop-doloop.c (add_test): Adjust do_compare_rtx_and_jump caller.
18923 2010-02-19  Richard Guenther  <rguenther@suse.de>
18925         PR tree-optimization/42944
18926         * tree-ssa-alias.c (call_may_clobber_ref_p_1): Massage
18927         test for aliasing with errno.
18929 2010-02-19  Jakub Jelinek  <jakub@redhat.com>
18931         PR middle-end/42233
18932         * expr.h (jumpifnot, jumpifnot_1, jumpif, jumpif_1, do_jump,
18933         do_jump_1, do_compare_rtx_and_jump): Add PROB argument.
18934         * dojump.c: Include output.h.
18935         (inv): New inline function.
18936         (jumpifnot, jumpifnot_1, jumpif, jumpif_1, do_jump_1, do_jump,
18937         do_jump_by_parts_greater_rtx, do_jump_by_parts_greater,
18938         do_jump_by_parts_zero_rtx, do_jump_by_parts_equality_rtx,
18939         do_jump_by_parts_equality, do_compare_and_jump): Add PROB
18940         argument, pass it down to other calls.
18941         (do_compare_rtx_and_jump): Likewise.  If PROB is not -1,
18942         add REG_BR_PROB note to the conditional jump.
18943         * cfgexpand.c (add_reg_br_prob_note): Removed.
18944         (expand_gimple_cond): Don't call it, add the probability
18945         as last argument to jumpif_1/jumpifnot_1.
18946         * Makefile.in (dojump.o): Depend on output.h.
18947         * builtins.c (expand_errno_check): Adjust do_compare_rtx_and_jump
18948         callers.
18949         * expmed.c (emit_store_flag_force, do_cmp_and_jump): Likewise.
18950         * stmt.c (do_jump_if_equal): Likewise.
18951         * cfgrtl.c (rtl_lv_add_condition_to_bb): Likewise.
18952         * loop-unswitch.c (compare_and_jump_seq): Likewise.
18953         * config/rs6000/rs6000.c (rs6000_aix_emit_builtin_unwind_init):
18954         Likewise.
18955         * optabs.c (expand_doubleword_shift, expand_abs): Likewise.
18956         * expr.c (expand_expr_real_1): Adjust do_jump, jumpifnot and
18957         jumpifnot_1 callers.
18958         (expand_expr_real_2): Adjust jumpifnot_1 and do_compare_rtx_and_jump
18959         callers.
18960         (store_expr): Adjust jumpifnot caller.
18961         (store_constructor): Adjust jumpif caller.
18963         PR middle-end/42233
18964         * gimplify.c (gimple_boolify): For __builtin_expect call
18965         gimple_boolify also on its first argument.
18967 2010-02-18  Uros Bizjak  <ubizjak@gmail.com>
18969         * configure.ac (gnu-unique-object): Wrap regexps using [] in
18970         changequote block.
18971         (__stack_chk_fail): Ditto.  Remove quadrigraphs.
18972         * configure: Regenerated.
18974 2010-02-18  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
18976         * config/spu/spu-c.c (spu_resolve_overloaded_builtin): Call
18977         lang_hooks.types_compatible_p instead of comptypes.
18979 2010-02-18  Sebastian Huber  <sebastian.huber@embedded-brains.de>
18981         * config/arm/lib1funcs.asm (__prefer_thumb__): New define.
18982         (udivsi3, aeabi_uidivmod, divsi3, aeabi_idivmod): Use Thumb-1 variant
18983         if __prefer_thumb__ is defined.
18985 2010-02-18  Martin Jambor  <mjambor@suse.cz>
18987         PR tree-optimization/43066
18988         * tree-sra.c (build_ref_for_offset_1): Return false on encountering an
18989         array with zero-sized element type.
18991 2010-02-18  Jakub Jelinek  <jakub@redhat.com>
18993         * dwarf2out.c (add_var_loc_to_decl): Change last argument to
18994         rtx, allocate struct var_loc_node here and return it to the
18995         caller, and only if it is actually needed.
18996         (dwarf2out_var_location): Adjust add_var_loc_to_decl caller,
18997         move it earlier and return immediately if it returns NULL.
18999 2010-02-17  Mikael Pettersson  <mikpe@it.uu.se>
19001         * config/sparc/gas.h: New file.  Restore
19002         TARGET_ASM_NAMED_SECTION to its ELF default.
19003         * config/sparc/sysv4.h (TARGET_ASM_NAMED_SECTION): Do not
19004         check !HAVE_GNU_AS.
19005         * config/sparc/sparc.c (sparc_elf_asm_named_section):
19006         Likewise.  Add ATTRIBUTE_UNUSED to prototype.
19007         * config.gcc (sparc*-*-linux*): Include sparc/gas.h
19008         after sparc/sysv4.h.
19010 2010-02-17  Dave Korn  <dave.korn.cygwin@gmail.com>
19012         * config/i386/mingw32.h (LIBGCJ_SONAME): Fix cut'n'pasto in DLL name.
19014 2010-02-17  Steven Bosscher  <steven@gcc.gnu.org>
19016         * gensupport.c (process_one_cond_exec): Derive name for COND_EXEC
19017         patterns from predicated pattern.
19019 2010-02-17  Uros Bizjak  <ubizjak@gmail.com>
19021         PR target/43103
19022         * config/i386/sse.md (xop_vpermil2<mode>3): Use avxmodesuffixf2c
19023         for insn mnemonic suffix.
19025 2010-02-17  Richard Guenther  <rguenther@suse.de>
19027         * tree-vrp.c (vrp_visit_phi_node): Restrict SCEV analysis
19028         to loop PHI nodes.
19030 2010-02-17  Jakub Jelinek  <jakub@redhat.com>
19032         PR debug/42918
19033         * caller-save.c (save_call_clobbered_regs): If BB ends with
19034         a DEBUG_INSN, move any notes in between last real insn and the last
19035         DEBUG_INSN after the last DEBUG_INSN.
19037 2010-02-16  Joern Rennecke  <joern.rennecke@embecosm.com>
19039         * tm.texi (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD_SPEC):
19040         Fix return type.  Fix argument type.  Explain meaning of return value.
19042 2010-02-16  Richard Guenther  <rguenther@suse.de>
19044         PR tree-optimization/41043
19045         * tree-vrp.c (vrp_var_may_overflow): Only ask SCEV for real loops.
19046         (vrp_visit_assignment_or_call): Do not ask SCEV for regular
19047         statements ...
19048         (vrp_visit_phi_node): ... but only for loop PHI nodes.
19050 2010-02-16  Ira Rosen  <irar@il.ibm.com>
19052         PR tree-optimization/43074
19053         * tree-vectorizer.h (VECTORIZABLE_CYCLE_DEF): New.
19054         * tree-vect-loop.c (vect_analyze_loop_operations): Add
19055         vectorizable cycles in hybrid SLP check.
19056         * tree-vect-slp.c (vect_detect_hybrid_slp_stmts): Likewise.
19058 2010-02-16  Richard Guenther  <rguenther@suse.de>
19060         * alias.c (memrefs_conflict_p): Distinguish must-alias from don't know.
19061         (true_dependence): If memrefs_conflict_p computes must-alias
19062         trust it.  Move TBAA check after offset-based disambiguation.
19063         (canon_true_dependence): Likewise.
19065 2010-02-16  Alexandre Oliva  <aoliva@redhat.com>
19067         * params.def (PARAM_MAX_VARTRACK_SIZE): New.
19068         * doc/invoke.texi: Document it.
19069         * var-tracking.c: Include toplev.h and params.h.
19070         (vt_find_locations): Return bool indicating success.  Compute
19071         hash sizes unconditionally.  Check new parameter, report.
19072         (variable_tracking_main_1): Check vt_find_locations results and
19073         retry.  Renamed from...
19074         (variable_tracking_main): ... this.  New wrapper to preserve
19075         flag_var_tracking_assignments.
19076         * Makefile.in (var-tracking.o): Adjust dependencies.
19078 2010-02-16  Jack Howarth  <howarth@bromo.med.uc.edu>
19079             Jakub Jelinek  <jakub@redhat.com>
19081         PR target/42854
19082         * config/darwin.h (ASM_WEAKEN_DECL): Don't check weak attribute
19083         if weak_import attribute is present.
19084         * config/darwin.c (machopic_select_section): Likewise.
19086 2010-02-15  Joern Rennecke  <joern.rennecke@embecosm.com>
19088         * doc/tm.texi (TARGET_VECTORIZE_BUILTIN_VECTORIZATION_COST): Document.
19089         (TARGET_VECTORIZE_VECTOR_ALIGNMENT_REACHABLE): Likewise.
19090         (TARGET_VECTORIZE_BUILTIN_VEC_PERM): Likewise.
19091         (TARGET_VECTORIZE_BUILTIN_VEC_PERM_OK): Likewise.
19093         * doc/tm.texi (TARGET_VECTORIZE_BUILTIN_CONVERSION): Fix argument
19094         types.
19096         * doc/tm.texi (TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION):
19097         Fix argument types.
19099         * doc/tm.texi (TARGET_SCHED_DFA_NEW_CYCLE): Add argument names.
19100         Rewrite text to refer to the names.
19102 2010-02-15  Sebastian Pop  <sebastian.pop@amd.com>
19104         * config/i386/i386-builtin-types.def
19105         (V2DF_FTYPE_V2DF_V2DF_V2DI_INT): Declared.
19106         (V4DF_FTYPE_V4DF_V4DF_V4DI_INT): Declared.
19107         (V4SF_FTYPE_V4SF_V4SF_V4SI_INT): Declared.
19108         (V8SF_FTYPE_V8SF_V8SF_V8SI_INT): Declared.
19109         * config/i386/i386.c (enum ix86_builtins): Add IX86_BUILTIN_VPERMIL2PD,
19110         IX86_BUILTIN_VPERMIL2PS, IX86_BUILTIN_VPERMIL2PD256, and
19111         IX86_BUILTIN_VPERMIL2PS256.
19112         (MULTI_ARG_4_DF2_DI_I): Defined.
19113         (MULTI_ARG_4_DF2_DI_I1): Defined.
19114         (MULTI_ARG_4_SF2_SI_I): Defined.
19115         (MULTI_ARG_4_SF2_SI_I1): Defined.
19116         (bdesc_multi_arg): Add __builtin_ia32_vpermil2pd,
19117         __builtin_ia32_vpermil2ps, __builtin_ia32_vpermil2pd256, and
19118         __builtin_ia32_vpermil2ps256.
19119         (ix86_expand_multi_arg_builtin): Handle MULTI_ARG_4_DF2_DI_I,
19120         MULTI_ARG_4_DF2_DI_I1, MULTI_ARG_4_SF2_SI_I, and
19121         MULTI_ARG_4_SF2_SI_I1.  Handle builtins with 4 arguments.
19122         (ix86_expand_args_builtin): Handle MULTI_ARG_4_DF2_DI_I,
19123         MULTI_ARG_4_DF2_DI_I1, MULTI_ARG_4_SF2_SI_I, and
19124         MULTI_ARG_4_SF2_SI_I1.  Handle CODE_FOR_xop_vpermil2v2df3,
19125         CODE_FOR_xop_vpermil2v4sf3, CODE_FOR_xop_vpermil2v4df3, and
19126         CODE_FOR_xop_vpermil2v8sf3.
19127         * config/i386/i386.md (UNSPEC_VPERMIL2): Declared.
19128         * config/i386/sse.md (xop_vpermil2<mode>3): New insn pattern.
19129         * config/i386/xopintrin.h (_mm_permute2_pd): New.
19130         (_mm256_permute2_pd): New.
19131         (_mm_permute2_ps): New.
19132         (_mm256_permute2_ps): New.
19134 2010-02-15  Nick Clifton  <nickc@redhat.com>
19136         * config/h8300/h8300.c (h8300_push_pop): Use bool type for
19137         boolean parameters.  Use emit_jump_insn when emitting a pop
19138         instruction containing a return insn.
19139         (push): Use 'true' rather than '1' as second parameter to F.
19140         (h8300_expand_prologue): Likewise.
19141         Use 'true' and 'false' for boolean parameters to h8300_push_pop.
19142         (h8300_expand_epilogue): Likewise.
19144 2010-02-15  Richard Guenther  <rguenther@suse.de>
19146         PR middle-end/43068
19147         * cgraphunit.c (thunk_adjust): Skip adjusting by fixed_offset
19148         if that is zero.
19150 2010-02-15  Nick Clifton  <nickc@redhat.com>
19152         * config/mn10300/mn10300.h (FUNCTION_ARG_REGNO_P): Revert previous
19153         delta.
19155 2010-02-14  Marco Poletti  <poletti.marco@gmail.com>
19157         * intl.c (fake_ngettext): New function.
19158         * intl.h (fake_ngettext): Declare.
19159         (ngettext): Define macro.
19160         * collect2.c (notice_translated): New function.
19161         (main): Use notice_translated and ngettext.
19162         * collect2.h (notice_translated): Declare.
19164 2010-02-14  Steven Bosscher  <steven@gcc.gnu.org>
19166         * reorg.c (delete_computation): Comment fixes.
19167         * caller-save.c (setup_save_areas): Idem.
19168         * sel-sched-dump.c (dump_lv_set): Idem.
19169         * rtl.def: Idem.
19171 2010-02-14  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
19173         * config/s390/s390.c (s390_sched_init): New function.
19174         (TARGET_SCHED_INIT): Target hook defined.
19176 2010-02-12  Dave Korn  <dave.korn.cygwin@gmail.com>
19177             Jack Howarth  <howarth@bromo.med.uc.edu>
19178             Iain Sandoe  <iain.sandoe@sandoe-acoustics.co.uk>
19180         PR target/42982
19181         Partial revert of unintended change in fix for PR41605.
19182         * config/darwin.h: Fix typo.
19183         * config/darwin9.h: Same.
19185 2010-02-11  Jakub Jelinek  <jakub@redhat.com>
19187         * c-pch.c (pch_init): Clear v.
19189 2010-02-11  Sebastian Pop  <sebastian.pop@amd.com>
19191         PR middle-end/42930
19192         * graphite-scop-detection.c (graphite_can_represent_scev): Call
19193         graphite_can_represent_init for MULT_EXPR.
19195 2010-02-11  Sebastian Pop  <sebastian.pop@amd.com>
19197         PR middle-end/42914
19198         PR middle-end/42530
19199         * graphite-sese-to-poly.c (remove_phi): New.
19200         (translate_scalar_reduction_to_array): Call remove_phi.
19202 2010-02-11  Sebastian Pop  <sebastian.pop@amd.com>
19204         PR middle-end/42771
19205         * graphite-clast-to-gimple.c (gloog): Call rename_sese_parameters.
19206         * graphite-clast-to-gimple.h (gloog): Update declaration.
19207         * graphite-poly.c (new_scop): Clear POLY_SCOP_P.
19208         * graphite-poly.h (struct poly_bb): Add missing comments.
19209         (struct scop): Add poly_scop_p field.
19210         (POLY_SCOP_P): New.
19211         * graphite-sese-to-poly.c (build_poly_scop): Set POLY_SCOP_P.
19212         * graphite.c (graphite_transform_loops): Build the polyhedral
19213         representation for each scop before code generation.
19214         * sese.c (rename_variables_in_operand): Removed.
19215         (rename_variables_in_expr): Return the renamed expression.
19216         (rename_sese_parameters): New.
19217         * sese.h (rename_sese_parameters): Declared.
19219 2010-02-11  Richard Guenther  <rguenther@suse.de>
19221         PR tree-optimization/42998
19222         * tree-ssa-pre.c (create_expression_by_pieces): Treat
19223         POINTER_PLUS_EXPR properly.
19225 2010-02-11  Sebastian Pop  <sebastian.pop@amd.com>
19226             Changpeng Fang  <changpeng.fang@amd.com>
19228         PR middle-end/40886
19229         * tree-ssa-loop-ivopts.c (determine_use_iv_cost_condition): Decrement
19230         the cost of an IV candidate when the IV is used in a test against zero.
19232         * gcc.dg/tree-ssa/ivopts-3.c: New.
19234 2010-02-11  Richard Guenther  <rguenther@suse.de>
19236         PR lto/41664
19237         * tree-ssa-alias.c (refs_may_alias_p_1): Canonicalize
19238         pointer-vs-decl case by swapping refs.  Handle some cases
19239         of pointer-vs-decl disambiguations more conservatively.
19240         * cfgexpand.c (gimple_expand_cfg): Set gimple_df->in_ssa_p
19241         to false after expanding.
19243 2010-02-11  Richard Guenther  <rguenther@suse.de>
19245         PR driver/43021
19246         * gcc.c (process_command): Handle LTO file@offset case more
19247         appropriately.
19249 2010-02-11  Jakub Jelinek  <jakub@redhat.com>
19251         * reload1.c (eliminate_regs_1): If insn is DEBUG_INSN, avoid any
19252         modifications outside of the DEBUG_INSN.  Accept CLOBBERs inside
19253         of DEBUG_INSNs.
19254         (eliminate_regs_in_insn): Eliminate regs even in DEBUG_INSNs.
19256         * dwarf2out.c (mem_loc_descriptor) <case MEM>: Use DW_OP_deref_size
19257         if MEM's mode size isn't DWARF2_ADDR_SIZE.
19258         (mem_loc_descriptor) <do_scompare>: Allow also VOIDmode arguments.
19259         Optimize eq/ne comparisons when both arguments are known to be
19260         zero-extended.
19261         (mem_loc_descriptor) <do_ucompare>: Allow also VOIDmode arguments.
19262         Don't mask operands unnecessarily if they are known to be already
19263         zero-extended.
19265 2010-02-10  Vladimir Makarov  <vmakarov@redhat.com>
19267         * ira-conflicts.c (add_insn_allocno_copies): Use find_reg_note
19268         instead of loop.
19270 2010-02-10  Richard Guenther  <rguenther@suse.de>
19272         PR tree-optimization/43017
19273         * tree-vrp.c (vrp_int_const_binop): Trust int_const_binop
19274         for wrapping signed arithmetic.
19276 2010-02-10  Jakub Jelinek  <jakub@redhat.com>
19278         PR debug/43010
19279         * dwarf2out.c (retry_incomplete_types): Don't call gen_type_die
19280         if no debug info should be emitted for it.
19282 2010-02-10  Kaz Kojima  <kkojima@gcc.gnu.org>
19284         * config/sh/sh.c (find_barrier): Skip call insn with a REG_EH_REGION
19285         note when flag_exceptions is set.
19287 2010-02-10  Duncan Sands  <baldrick@free.fr>
19289         * Makefile.in (PLUGIN_HEADERS): Add debug.h.
19291 2010-02-10  Richard Guenther  <rguenther@suse.de>
19293         PR c/43007
19294         * tree.c (get_unwidened): Handle constants.
19295         * convert.c (convert_to_integer): Handle TRUNC_DIV_EXPR.
19297 2010-02-10  Martin Jambor  <mjambor@suse.cz>
19299         PR lto/42985
19300         * ipa-prop.c (ipa_update_after_lto_read): Count parameters and
19301         check for variable argument counts independently.
19303 2010-02-10  Christian Bruel  <christian.bruel@st.com>
19305         PR target/42841
19306         * config/sh/sh.c (find_barrier): Increase length for non delayed
19307         conditional branches.
19309 2010-02-10  Christian Bruel  <christian.bruel@st.com>
19311         * config/sh/sh.c (find_barrier): Don't emit a CP inside the GP setting.
19313 2010-02-10  Jakub Jelinek  <jakub@redhat.com>
19315         * builtins.c (set_builtin_user_assembler_name): Also handle
19316         ffs if int is smaller than word.
19318 2010-02-09  Vladimir Makarov  <vmakarov@redhat.com>
19320         PR middle-end/42973
19321         * ira-conflicts.c (get_dup): Remove.
19322         (process_reg_shuffles): Add new parameter.  Use it as an
19323         additional guard for copy generation.
19324         (add_insn_allocno_copies): Rewrite.
19326 2010-02-09  Alexander Monakov  <amonakov@ispras.ru>
19328         * common.opt (fsched2-use-traces): Preserved for backward
19329         compatibility.
19330         * doc/invoke.texi: Remove the documentation about option
19331         -fsched2-use-traces.
19332         * sched-rgn.c (rest_of_handle_sched2): Remove usage of
19333         flag_sched2_use_traces.
19334         * opts.c (common_handle_option): Add OPT_fsched2_use_traces to
19335         the backward compatibility flag section.
19337 2010-02-09  Richard Guenther  <rguenther@suse.de>
19339         PR tree-optimization/43008
19340         * tree-ssa-structalias.c (handle_lhs_call): Pass in the fndecl,
19341         make HEAP variables initialized from global memory if they
19342         are not known builtin functions.
19343         (find_func_aliases): Adjust.
19345 2010-02-09  Richard Guenther  <rguenther@suse.de>
19347         PR tree-optimization/43000
19348         * tree-vrp.c (vrp_int_const_binop): Only handle unsigned
19349         arithmetic manually.
19351 2010-02-08  Jakub Jelinek  <jakub@redhat.com>
19353         PR tree-optimization/42931
19354         * tree-loop-linear.c (try_interchange_loops): Don't call
19355         double_int_mul if estimated_loop_iterations failed.
19357 2010-02-08  Martin Jambor  <mjambor@suse.cz>
19359         PR middle-end/42898
19360         * tree-sra.c (build_accesses_from_assign): Do not mark in
19361         should_scalarize_away_bitmap if stmt has volatile ops.
19362         (sra_modify_assign): Do not process assigns piecemeal if if stmt
19363         has volatile ops.
19365 2010-02-08  Joern Rennecke  <joern.rennecke@embecosm.com>
19367         * doc/tm.texi (TARGET_UNWIND_WORD_MODE): Document.
19369 2010-02-07  Adam Nemet  <adambnmet@gmail.com>
19371         * config/mips/mips.md (*<optab>_trunc<mode>_exts): Fix comment
19372         before the pattern.
19374 2010-02-07  Andrew Pinski  <pinskia@gmail.com>
19376         PR middle-end/42946
19377         * df-core.c (df_finish_pass): Change type of saved_flags to int.
19379 2010-02-07  Sebastian Pop  <sebastian.pop@amd.com>
19381         PR middle-end/42988
19382         * graphite-dependences.c (dependence_polyhedron): Set PDDR_KIND
19383         to unknown_dependence.
19384         (graphite_legal_transform_dr): Handle the unknown_dependence.
19385         (graphite_carried_dependence_level_k): Same.
19387 2010-02-07  Sebastian Pop  <sebastian.pop@amd.com>
19389         * ChangeLog.graphite: Remove testsuite/ or gcc/testsuite/.
19391 2010-02-07  Richard Guenther  <rguenther@suse.de>
19393         PR middle-end/42991
19394         * expr.c (get_inner_reference): Always initialize *pbitsize.
19396 2010-02-07  Richard Guenther  <rguenther@suse.de>
19398         PR middle-end/42956
19399         * gimplify.c (gimple_fold_indirect_ref): Avoid generating
19400         new ARRAY_REFs on variable size element or minimal index arrays.
19401         Complete.
19402         * tree-ssa-loop-ivopts.c (find_interesting_uses_address): Use
19403         gimple_fold_indirect_ref.
19405 2010-02-06  Richard Earnshaw  <rearnsha@arm.com>
19407         PR target/42957
19408         * arm.c (arm_override_options): Just return if the user has specified
19409         an invalid fpu name.
19411 2010-02-03  Jason Merrill  <jason@redhat.com>
19413         PR c++/42870
19414         * config/i386/cygming.h (ASM_OUTPUT_DEF_FROM_DECLS): Call
19415         i386_pe_maybe_record_exported_symbol.
19417 2010-02-05  Steve Ellcey  <sje@cup.hp.com>
19419         PR target/42924
19420         * config/pa/pa.c (TARGET_DELEGITIMIZE_ADDRESS): Redefine.
19421         (pa_delegitimize_address): New function.
19423 2010-02-05  Ozkan Sezer  <sezeroz@gmail.com>
19425         * config/i386/msformat-c.c (ms_printf_length_specs): Set the
19426         scalar_identity_flag for the size_t/ptrdiff_t %Id and %Iu specs.
19428 2010-02-05  Richard Guenther  <rguenther@suse.de>
19430         PR lto/42762
19431         * lto-streamer-in.c (get_resolution): Deal with references
19432         to undefined functions.
19434 2010-02-05  Richard Guenther  <rguenther@suse.de>
19436         * tree-ssa-ccp.c (get_symbol_constant_value): Strip all conversions.
19437         (fold_const_aggregate_ref): Likewise.
19438         (ccp_fold_stmt): Substitute loads.
19439         (maybe_fold_reference): Verify types before substituting.
19440         Unshare properly.
19441         (fold_gimple_assign): Unshare properly.
19442         (fold_stmt_1): Insert conversion if necessary before replacing the RHS.
19444 2010-02-05  Nathan Froyd  <froydnj@codesourcery.com>
19446         * config/rs6000/rs6000.c (rs6000_override_options): Invert check
19447         for rs6000_gen_cell_microcode.
19449 2010-02-04  Richard Guenther  <rguenther@suse.de>
19451         PR rtl-optimization/42952
19452         * dse.c (const_or_frame_p): Remove MEM handling.
19454 2010-02-04  Nick Clifton  <nickc@redhat.com>
19456         * config/mn10300/mn10300.c (TARGET_ASM_OUTPUT_MI_THUNK): Define.
19457         (TARGET_ASM_CAN_OUTPUT_MI_THUNK): Define.
19458         (function_arg): Use NULL_RTX and FIRST_ARGUMENT_REGNUM.
19459         (mn10300_asm_output_mi_thunk): New function.
19460         (mn10300_can_output_mu_thunk): New function.
19461         * config/mn10300/mn10300.h (FIRST_ARGUMENT_REGNUM): Define.
19462         (FUNCTION_ARG_REGNO_P): Fix comment.  Accept d0 and d1.
19463         (FUNCTION_ARG): Delete incorrect comment.
19465 2010-02-03  Jason Merrill  <jason@redhat.com>
19467         PR c++/40138
19468         * fold-const.c (operand_equal_p): Handle erroneous types.
19470 2010-02-03  Kaushik Phatak  <kaushik.phatak@kpitcummins.com>
19472         * config/h8300/h8300.md (can_delay): Fix attibute condition.
19474 2010-02-03  Vladimir Makarov  <vmakarov@redhat.com>
19476         PR rtl-optimization/42941
19477         * sched-deps.c (setup_insn_reg_pressure_info): Use xcalloc instead
19478         of xmalloc.
19480 2010-02-03  Jason Merrill  <jason@redhat.com>
19482         PR c++/35652
19483         * builtins.c (c_strlen): Use EXPR_LOCATION in diagnostics.
19485 2010-02-03  Alexandre Oliva  <aoliva@redhat.com>
19487         PR debug/42896
19488         * cselib.h (struct cselib_val_struct): Add uid.  Rename value to hash.
19489         (cselib_reset_table): Renamed from...
19490         (cselib_reset_table_with_next_value): ... this.
19491         (cselib_get_next_uid): Renamed from...
19492         (cselib_get_next_unknown_value): ... this.
19493         * cselib.c (next_uid): Renamed from...
19494         (next_unknown_value): ... this.
19495         (cselib_clear_table): Adjust.
19496         (cselib_reset_table): Adjust.  Renamed from...
19497         (cselib_reset_table_with_next_value): ... this.
19498         (cselib_get_next_uid): Adjust.  Renamed from...
19499         (cselib_get_next_unknown_value): ... this.
19500         (get_value_hash): Use hash.
19501         (cselib_hash_rtx): Likewise.
19502         (new_cselib_val): Adjust.  Set and dump uid.
19503         (cselib_lookup_mem): Pass next_uid as hash.
19504         (cselib_subst_to_values): Likewise.
19505         (cselib_log_lookup): Dump uid.
19506         (cselib_lookup): Pass next_uid as hash.  Adjust.
19507         (cselib_process_insn): Adjust.
19508         (cselib_init): Initialize next_uid.
19509         (cselib_finish): Adjust.
19510         (dump_cselib_table): Likewise.
19511         * dse.c (canon_address): Dump value uid.
19512         * print-rtl.c (print_rtx): Print value uid.
19513         * var-tracking.c (VARIABLE_HASH_VAL): Dropped.
19514         (dvuid): New type.
19515         (dv_uid): New function, sort of renamed from...
19516         (dv_htab_hash): ... this, reimplemented in terms of it and...
19517         (dv_uid2hash): ... this.  New.
19518         (variable_htab_eq): Drop excess assertions.
19519         (tie_break_pointers): Removed.
19520         (canon_value_cmp): Compare uids.
19521         (variable_post_merge_New_vals): Print uids.
19522         (vt_add_function_parameters): Adjust.
19523         (vt_initialize): Reset table.  Adjust.
19525 2010-02-03  Richard Guenther  <rguenther@suse.de>
19527         PR tree-optimization/42944
19528         * tree-ssa-alias.c (ref_maybe_used_by_call_p_1): Handle calloc.
19529         (call_may_clobber_ref_p_1): Likewise.  Properly handle
19530         malloc and calloc clobbering errno.
19532 2010-02-03  Steven Bosscher  <steven@gcc.gnu.org>
19534         * doc/invoke.texi: Fix name of sched1 dump.
19536         * opts.c (decode_options): Set flag_tree_switch_conversion
19537         only conditionally on optimize >= 2.
19539         * gcse.c: Assorted comment fixes in pass description.
19541 2010-02-03  Anthony Green  <green@moxielogic.com>
19543         * config/moxie/moxie.c (moxie_asm_trampoline_template): Introduce
19544         nop padding in order to maintain alignment of storage location of
19545         target function address.
19546         (moxie_trampoline_init): Store target function address at newly
19547         aligned location.
19548         * config/moxie/moxie.h (TRAMPOLINE_ALIGNMENT): Increase alignment
19549         to 32.
19550         (TRAMPOLINE_SIZE): Increase size by 2 bytes for alignment padding.
19552 2010-02-03  Richard Guenther  <rguenther@suse.de>
19554         PR middle-end/42927
19555         * tree-cfg.c (verify_gimple_assign_binary): Fix shift verification.
19557 2010-02-03  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
19559         * config.gcc: Reenable check for obsolete targets.
19560         Obsolete alpha*-dec-osf4*, alpha*-dec-osf5.0*, mips-sgi-irix5*,
19561         mips-sgi-irix6.[0-4]*.
19563 2010-02-02  Nick Clifton  <nickc@redhat.com>
19565         * config/rx/rx.c (rx_is_legitimate_constant): Treat a maximum
19566         constant size of 4 as being the same as 0.
19567         * doc/invoke.texi (RX Options): Document that -mmax-constant-size
19568         can take values in the range 0..4.
19570 2010-02-02  Jack Howarth  <howarth@bromo.med.uc.edu>
19572         PR java/41991
19573         * unwind-dw2-fde-darwin.c: Re-export _Unwind_FindEnclosingFunction()
19574         as _darwin10_Unwind_FindEnclosingFunction().
19575         * libgcc-libsystem.ver: New.
19577 2010-02-01  Vladimir Makarov  <vmakarov@redhat.com>
19579         PR target/41399
19580         * sched-deps.c (sched_analyze_insn): Ignore fixed registers for
19581         implicitly set registers.
19583 2010-02-01  Richard Earnshaw  <rearnsha@arm.com>
19585         * arm.c (FL_FOR_ARCH_7A): is also a superset of ARMv6K.
19586         (arm_override_options): Allow automatic selection of the thread
19587         pointer register if thumb2.
19588         (legitimize_pic_address): Improve code sequences for Thumb2.
19589         (arm_call_tls_get_addr): Likewise.
19590         (legitimize_tls_address): Likewise.
19591         * arm.md (pic_load_addr_arm): Delete.  Replace with ...
19592         (pic_load_addr_32bit): ... this.  New named pattern.
19593         * thumb2.md (pic_load_addr_thumb2): Delete.
19594         (pic_load_dot_plus_four): Delete.
19595         (tls_load_dot_plus_four): New named pattern.
19597 2010-02-01  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
19599         PR libgomp/29986
19600         * doc/install.texi (Specific): Add sparc-sun-solaris2.10 entry.
19601         Document fix for TLS bug.
19603 2010-01-31  Richard Guenther  <rguenther@suse.de>
19605         * tree-sra.c (ptr_parm_has_direct_uses): Rewrite to be
19606         conservatively correct.
19608 2010-01-31  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
19610         PR target/42850
19611         Revert:
19612         2010-01-02  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
19614         * config/pa/t-slibgcc-dwarf-ver (SHLIB_SOVERSION): Bump by two.
19616 2010-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
19618         * doc/install.texi: Update recommended GMP/MPFR/MPC versions.
19620 2010-01-31  Kai Tietz  <kai.tietz@onevision.com>
19622         * config.gcc: Adjust order of makefile fragments for mingw targets.
19624 2010-01-31  Richard Guenther  <rguenther@suse.de>
19626         PR middle-end/42898
19627         * gimplify.c (gimplify_init_constructor): For volatile LHS
19628         initialize a temporary.
19630 2010-01-31  Matthias Klose  <doko@ubuntu.com>
19632         * configure.ac: Fix __stack_chk_fail check for cross builds configured
19633         --with-headers
19634         * configure: Regenerate.
19636 2010-01-29  Eric Botcazou  <ebotcazou@adacore.com>
19638         * tree-ssa-alias.c (same_type_for_tbaa): Return -1 if the types have
19639         the same alias set and their sizes different constantness.
19640         (aliasing_component_refs_p): Revert 2009-10-24 change.
19642 2010-01-29  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
19644         * config/sparc/sparc.c (sparc_elf_asm_named_section): Declare decl
19645         unused.
19647 2010-01-29  Richard Guenther  <rguenther@suse.de>
19649         * tree-ssa-ccp.c (ccp_fold_stmt): Unshare values we substitute.
19650         Assert we successfully updated the call.
19652 2010-01-29  Jakub Jelinek  <jakub@redhat.com>
19654         PR rtl-optimization/42889
19655         * df.h (df_set_bb_dirty_nonlr): New prototype.
19656         * df-core.c (df_set_bb_dirty_nonlr): New function.
19657         * df-scan.c (df_insn_rescan): Call it instead of
19658         df_set_bb_dirty for DEBUG_INSNs.
19660 2010-01-29  Richard Guenther  <rguenther@suse.de>
19662         PR middle-end/37448
19663         * ipa-inline.c (cgraph_decide_inlining_incrementally): Avoid
19664         quadratic behavior in most cases.
19666 2010-01-28  Uros Bizjak  <ubizjak@gmail.com>
19668         PR target/42891
19669         * config/i386/i386.c (ix86_expand_int_movcc): Convert tmp to SImode
19670         in the call to gen_x86_movsicc_0_m1.
19672 2010-01-28  Richard Guenther  <rguenther@suse.de>
19674         PR tree-optimization/42871
19675         * tree-ssa-pre.c (phi_translate_set): Make sure to retain leaders.
19677 2010-01-28  Richard Guenther  <rguenther@suse.de>
19679         * tree-ssa-ccp.c (ccp_fold_stmt): Fold calls and propagate
19680         into call arguments.
19682 2010-01-28  Richard Guenther  <rguenther@suse.de>
19684         PR middle-end/42883
19685         * tree-cfgcleanup.c (remove_forwarder_block): Do not remove
19686         the forwarder if the destination is an EH landing pad.
19688 2010-01-28  Razya Ladelsky  <razya@il.ibm.com>
19690         * tree-parloops.c (transform_to_exit_first_loop): Update the basic
19691         block list passed to gimple_duplicate_sese_tail.
19692         (parallelize_loops): Avoid parallelization when the function
19693         has_nonlocal_label.
19694         Avoid parallelization when the preheader is IRREDUCIBLE.
19695         Try to optimize when estimated_loop_iterations_int is unresolved.
19696         Add the loop's location to the dump file.
19697         * tree-cfg.c (add_phi_args_after_redirect): Remove.
19698         (gimple_duplicate_sese_tail): Remove the check for the latch.
19699         Redirect nexits to the exit block.
19700         Remove handling of the incoming edges to the latch.
19701         Redirect the backedge from the copied latch to the exit bb.
19703 2010-01-28  Michael Matz  <matz@suse.de>
19705         PR target/42881
19706         * config/i386/i386.c (ix86_expand_vector_init_duplicate):
19707         Wrap force_reg into a sequence, emit it before user.
19709 2010-01-28  Stephen Thomas  <stephen.thomas@arm.com>
19711         * config/arm/arm.md (bswapsi2): Add support for bswapsi2.
19712         (arm_rev): New.
19713         (arm_legacy_rev): Likewise.
19714         (thumb_legacy_rev): Likewise.
19716 2010-01-27  Jakub Jelinek  <jakub@redhat.com>
19718         * dwarf2out.c (mem_loc_descriptor): Remove special casing of
19719         CONSTANT_POOL_ADDRESS_P SYMBOL_REFs.  If for MEM recursive call
19720         on MEM's address failed, try avoid_constant_pool_reference and
19721         recurse if it returned something different.
19722         (loc_descriptor): If for MEM mem_loc_descriptor failed on the
19723         address, try avoid_constant_pool_reference and recurse if it
19724         returned something different.
19725         (dw_loc_list_1): If for MEM mem_loc_descriptor failed on the
19726         address and avoid_constant_pool_reference returned something
19727         different, don't set have_address.
19729 2010-01-27  Alexandre Oliva  <aoliva@redhat.com>
19731         PR debug/42861
19732         * var-tracking.c (val_store): Add modified argument, obey it.
19733         Adjust callers.
19734         (count_uses): Move down logging of main.
19735         (compute_bb_dataflow): Use val_store for MO_VAL_USEs that
19736         don't need resolution.
19737         (emit_notes_in_bb): Likewise.
19739 2010-01-27  Richard Guenther  <rguenther@suse.de>
19741         PR middle-end/42878
19742         * tree-inline.c (remap_decl): Delay remapping of SSA name
19743         default definitions until we need them.
19745 2010-01-27  Jakub Jelinek  <jakub@redhat.com>
19747         * config/rs6000/rs6000.c (TARGET_DELEGITIMIZE_ADDRESS): Redefine.
19748         (rs6000_delegitimize_address): New function.
19750         * config/s390/s390.c (s390_delegitimize_address): Call
19751         delegitimize_mem_from_attrs.
19753         PR middle-end/42874
19754         * tree-inline.c (cannot_copy_type_1): Removed.
19755         (copy_forbidden): Don't forbid copying of functions containing
19756         records/unions with variable length fields.
19758 2010-01-27  Christian Bruel  <christian.bruel@st.com>
19760         Revert:
19761         PR target/42841
19762         * config/sh/sh.c (find_barrier): Increase length for non delayed
19763         conditional branches.
19765 2010-01-27  Matthias Klose  <doko@ubuntu.com>
19767         * configure.ac (gnu-unique-object): Fix ldd version check.
19768         * configure: Regenerate.
19770 2010-01-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
19772         * config/sparc/sparc.c (sparc_elf_asm_named_section): Test for
19773         HAVE_GNU_AS value.
19774         * config/sparc/sysv4.h [HAVE_GNU_AS] (TARGET_ASM_NAMED_SECTION):
19775         Test for HAVE_GNU_AS value.
19777 2010-01-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
19779         * config.gcc (mips-sgi-irix[56]*): Set use_gcc_stdint.
19780         * config/mips/iris.h (INT8_TYPE, INT16_TYPE, INT32_TYPE,
19781         INT64_TYPE): Define.
19782         (UINT8_TYPE, UINT16_TYPE, UINT32_TYPE, UINT64_TYPE): Define.
19783         (INT_LEAST8_TYPE, INT_LEAST16_TYPE, INT_LEAST32_TYPE,
19784         INT_LEAST64_TYPE): Define.
19785         (UINT_LEAST8_TYPE, UINT_LEAST16_TYPE, UINT_LEAST32_TYPE,
19786         UINT_LEAST64_TYPE): Define.
19787         (INT_FAST8_TYPE, INT_FAST16_TYPE, INT_FAST32_TYPE)
19788         INT_FAST64_TYPE): Define.
19789         (UINT_FAST8_TYPE, UINT_FAST16_TYPE, UINT_FAST32_TYPE,
19790         UINT_FAST64_TYPE): Define.
19791         (INTMAX_TYPE, UINTMAX_TYPE): Define.
19792         (INTPTR_TYPE, UINTPTR_TYPE): Define.
19793         (SIG_ATOMIC_TYPE): Define.
19795 2010-01-26  Richard Guenther  <rguenther@suse.de>
19797         * df-scan.c (df_scan_set_bb_info): Remove assert.
19798         (df_insn_rescan_debug_internal): Merge asserts.
19799         (df_install_ref): Likewise.
19800         (df_mark_reg): Use bitmap_set_range.
19801         (df_hard_reg_used_p): Remove assert.
19802         (df_hard_reg_used_count): Likewise.
19804 2010-01-26  Richard Guenther  <rguenther@suse.de>
19806         PR rtl-optimization/42685
19807         * web.c (web_main): Ignore DEBUG_INSNs.
19809 2010-01-26  Joern Rennecke  <amylaar@spamcop.net>
19811         * doc/tm.texi (TARGET_HANDLE_C_OPTION): Explain arguments.
19813         (TARGET_RESOLVE_OVERLOADED_BUILTIN): Add loc parameter.
19814         Fix types of fndecl and arglist parameters.
19816 2010-01-26  Richard Guenther  <rguenther@suse.de>
19818         PR middle-end/42806
19819         * tree-eh.c (unsplit_eh): Skip debug insns.
19821 2010-01-26  Richard Guenther  <rguenther@suse.de>
19823         PR tree-optimization/42250
19824         * ipa-type-escape.c (type_escape_execute): Do not analyze clones.
19826 2010-01-26  Jakub Jelinek  <jakub@redhat.com>
19828         PR fortran/42866
19829         * omp-low.c (expand_omp_sections): Only use single_pred if
19830         l2_bb is single_pred_p.
19832 2010-01-25  Christian Bruel  <christian.bruel@st.com>
19834         PR target/42841
19835         * config/sh/sh.c (find_barrier): Increase length for non delayed
19836         conditional branches.
19837         (sh_insn_length_adjustment): Use JUMP_TABLE_DATA_P.
19839 2010-01-24  David S. Miller  <davem@davemloft.net>
19841         * config/sparc/sysv4.h (TARGET_ASM_NAMED_SECTION): Only
19842         define if not using GAS.
19843         * config/sparc/sparc.c (sparc_elf_asm_named_section):
19844         Likewise.  Delete SECTION_MERGE code, which is only applicable
19845         when using GAS.
19847 2010-01-24  Mark Mitchell  <mark@codesourcery.com>
19849         PR c++/42748
19850         * config/arm/arm.c (arm_mangle_type): Do not warn about changes to
19851         mangling of va_list in system headers.
19853 2010-01-23  Toon Moene  <toon@moene.org>
19855         * tree-predcom.c (combine_chains): Return NULL, not false.
19857 2010-01-23  Joern Rennecke  <amylaar@spamcop.net>
19859         * tree-loop-distribution.c (distribute_loop): Fix declaration and
19860         initialization of variable res to agree with return type.
19862 2010-01-22  Steve Ellcey  <sje@cup.hp.com>
19864         * Makefile.in (tree-sra.o): Add $(EXPR_H) dependency.
19865         * tree-sra.c: Add include of expr.h.
19867 2010-01-22  Jakub Jelinek  <jakub@redhat.com>
19869         * tree-into-ssa.c (maybe_register_def): If stmt ends the bb,
19870         insert the debug stmt on the single non-EH edge from the stmt.
19872 2010-01-22  Richard Henderson  <rth@redhat.com>
19874         PR tree-opt/42833
19875         * tree-sra.c (sra_modify_assign): Delay re-gimplification of
19876         the RHS until after generate_subtree_copies has insertted its
19877         code before the current statement.
19879 2010-01-22  Joern Rennecke  <amylaar@spamcop.net>
19881         * doc/tm.texi (TARGET_MIN_DIVISIONS_FOR_RECIP_MUL): Fix return type.
19883         * gcc-plugin.h (plugin_init): Use "C" likage for c++.
19885 2010-01-21  Martin Jambor  <mjambor@suse.cz>
19887         PR tree-optimization/42585
19888         * tree-sra.c (struct access): New field grp_total_scalarization.
19889         (dump_access): Dump the new field.
19890         (should_scalarize_away_bitmap): New variable.
19891         (cannot_scalarize_away_bitmap): Likewise.
19892         (sra_initialize): Allocate new bitmaps.
19893         (sra_deinitialize): Free new bitmaps.
19894         (create_access_1): New function.
19895         (create_access): Parts moved to create_access_1.
19896         (type_consists_of_records_p): New function.
19897         (completely_scalarize_record): Likewise.
19898         (build_access_from_expr): Set bit in cannot_scalarize_away_bitmap.
19899         (build_accesses_from_assign): Set bits in should_scalarize_away_bitmap.
19900         (sort_and_splice_var_accesses): Hint groups with a total_scalarization
19901         access.
19902         (analyze_all_variable_accesses): Completely scalarize small eligible
19903         records.
19905 2010-01-21  Martin Jambor  <mjambor@suse.cz>
19907         * tree-sra.c (build_ref_for_offset_1): Allow for zero size fields.
19909 2010-01-21  Andrew Haley  <aph@redhat.com>
19911         * gcc.c (process_command): Move lang_specific_driver before
19912         setting cc_libexec_prefix.
19914 2010-01-21  Richard Guenther  <rguenther@suse.de>
19916         PR middle-end/19988
19917         * fold-const.c (negate_expr_p): Pretend only negative
19918         real constants are easily negatable.
19920 2010-01-20  Janis Johnson  <janis187@us.ibm.com>
19921             Jason Merrill  <jason@redhat.com>
19923         * tree.h (TYPE_TRANSPARENT_UNION): Replace with ...
19924         (TYPE_TRANSPARENT_AGGR): this, for union and record.
19925         * calls.c (initialize argument_information): Handle it.
19926         * c-common.c (handle_transparent_union_attribute): Use new name.
19927         * c-decl.c (finish_struct): Ditto.
19928         * c-typeck.c (type_lists_compatible_p): Ditto.
19929         (convert_for_assignment): Use new name and also handle record.
19930         * function.c (aggregate_value_p): Handle it.
19931         (pass_by_reference): Ditto.
19932         (assign_parm_data_types): Ditto.
19933         * print-tree.c (print_node): Ditto.
19934         * lto-streamer-in.c (unpack_ts_type_value_fields): Ditto.
19935         * lto-streamer-out.c (pack_ts_type_value_fields): Ditto.
19936         * tree.c (first_field): New fn.
19938 2010-01-21  Dave Korn  <dave.korn.cygwin@gmail.com>
19940         PR target/42818
19941         * config/i386/cygwin.h (CXX_WRAP_SPEC_LIST): Always apply wrappers,
19942         even when linking statically, for now.
19944 2010-01-20  Alexandre Oliva  <aoliva@redhat.com>
19946         PR debug/42715
19947         * var-tracking.c (use_type): Choose MO_VAL_SET for REGs set
19948         without a cselib val.
19949         (count_uses): Accept MO_VAL_SET with no val on stores.
19950         (add_stores): Likewise.
19952 2010-01-20  Jakub Jelinek  <jakub@redhat.com>
19954         * var-tracking.c (check_value_val): Add a compile time assertion.
19955         (dv_is_decl_p): Simplify.
19956         (dv_as_decl, dv_as_value, dv_from_decl, dv_from_value): Only use
19957         gcc_assert if ENABLE_CHECKING.
19959 2010-01-20  Alexandre Oliva  <aoliva@redhat.com>
19961         PR debug/42782
19962         * var-tracking.c: Include tree-flow.h.
19963         (mem_dies_at_call): New.
19964         (dataflow_set_preserve_mem_locs): Use it.
19965         (dataflow_set_remove_mem_locs): Likewise.
19966         (dump_var): Renamed from dump_variable.  Adjust all callers.
19967         (dump_var_slot): Renamed from dump_variable_slot.  Likewise.
19968         * Makefile.in (var-tracking.o): Adjust deps.
19970 2010-01-20  Joern Rennecke  <amylaar@spamcop.net>
19972         * doc/tm.texi (TARGET_SCHED_SET_SCHED_FLAGS): Fix argument list.
19974 2010-01-20  Richard Guenther  <rguenther@suse.de>
19976         PR tree-optimization/42717
19977         * tree-ssa-dce.c (get_live_post_dom): Remove.
19978         (forward_edge_to_pdom): Take an arbitrary edge to copy
19979         degenerate PHI args from.
19980         (remove_dead_stmt): Use the first post-dominator even if it
19981         does not contain live statements as redirection destination.
19983 2010-01-20  Richard Guenther  <rguenther@suse.de>
19985         * tree-inline.c (estimate_num_insns): Handle EH builtins.
19987 2010-01-20  Jakub Jelinek  <jakub@redhat.com>
19989         * sel-sched.c (create_speculation_check): Remove set but not used
19990         variable twin.
19991         (try_transformation_cache): Remove set but not used variable ds.
19992         (calculate_privileged_insns): Remove set but not used variables
19993         cur_insn and min_spec_insn.
19994         (find_best_expr): Remove set but not used variable avail_n.
19995         * tree-predcom.c (base_names_in_chain_on): Remove set but not used
19996         variable e.
19997         * cgraphunit.c (assemble_thunk): Remove set but not used variable
19998         false_label.
19999         * haifa-sched.c (remove_notes): Remove set but not used variable prev.
20000         * graphite-clast-to-gimple.c (gloog): Remove set but not used variable
20001         new_scop_exit_edge.
20003 2010-01-20  Felyza Wishbringer  <fwishbringer@gmail.com>
20005         PR bootstrap/42786
20006         * config.gcc (i[34567]86-*-*): Fix handling of athlon64 and athlon-fx
20007         cpu types.  Add support for *-sse3 cpu types.
20008         (x86_64-*-*): Ditto.
20010 2010-01-20  Jakub Jelinek  <jakub@redhat.com>
20012         PR middle-end/42803
20013         * varasm.c (narrowing_initializer_constant_valid_p): Add CACHE
20014         argument, call initializer_constant_valid_p_1 instead of
20015         initializer_constant_valid_p, pass CACHE to it, return NULL
20016         immediately if first call returns NULL.
20017         (initializer_constant_valid_p_1): New function.
20018         (initializer_constant_valid_p): Use it.
20020 2010-01-20  Thomas Quinot  <quinot@adacore.com>
20022         * tree.def (PLACEHOLDER_EXPR): Fix comment.
20024 2010-01-20  Jakub Jelinek  <jakub@redhat.com>
20026         * dwarf2out.c (mem_loc_descriptor): Use DW_OP_mod for UMOD instead
20027         of MOD, handle MOD using DW_OP_{over,over,div,mul,minus}.
20028         (loc_list_from_tree): Don't handle unsigned division.  Handle
20029         signed modulo using DW_OP_{over,over,div,mul,minus}.
20030         * unwind-dw2.c (execute_stack_op): Handle DW_OP_mod using unsigned
20031         modulo instead of signed.
20033 2010-01-20  DJ Delorie  <dj@redhat.com>
20035         * config/h8300/h8300.c (F): Add "in_epilogue" flag.
20036         (Fpa): Pass it
20037         (h8300_emit_stack_adjustment): Propogate it.
20038         (push): Pass it.
20039         (h8300_expand_prologue): Likewise.
20040         (h8300_expand_epilogue): Likewise.
20042 2010-01-19  Michael Matz  <matz@suse.de>
20044         PR tree-optimization/41783
20045         * tree-data-ref.c (toplevel): Include flags.h.
20046         (dump_data_dependence_relation):  Also dump the inputs if the
20047         result will be unknown.
20048         (split_constant_offset_1): Look through some conversions.
20049         * tree-predcom.c (determine_roots_comp): Restart a new chain if
20050         the offset from last element is too large.
20051         (ref_at_iteration): Deal also with MISALIGNED_INDIRECT_REF.
20052         (reassociate_to_the_same_stmt): Handle vector registers.
20053         * tree-vect-data-refs.c (vect_equal_offsets): Handle unary operations
20054         (e.g. conversions).
20055         * tree-vect-loop-manip.c (vect_gen_niters_for_prolog_loop): Add
20056         wide_prolog_niters argument, emit widening instructions.
20057         (vect_do_peeling_for_alignment): Adjust caller, use widened
20058         variant of the iteration cound.
20059         * Makefile.in (tree-data-ref.o): Add $(FLAGS_H).
20061 2010-01-19  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
20063         PR target/38697
20064         * config/arm/neon-testgen.m (emit_automatics): New parameter
20065         features. Adjust for Fixed_return_reg feature.
20066         (test_intrinsic): Call emit_automatics with new feature.
20067         * config/arm/neon.ml: Update copyright years.
20068         (features): New Fixed_return_reg feature.
20069         (ops): Update feature for Vget_low.
20071 2010-01-19  Jakub Jelinek  <jakub@redhat.com>
20073         PR tree-optimization/42719
20074         * tree-outof-ssa.c (trivially_conflicts_p): Don't consider debug
20075         stmt uses.
20077         PR debug/42728
20078         * fwprop.c (all_uses_available_at): Return false if def_set dest
20079         is a REG that is used in def_insn.
20081 2010-01-19  Joern Rennecke  <amylaar@spamcop.net>
20083         * doc/tm.texi (TARGET_FIXED_CONDITION_CODE_REGS): Add argument names.
20085         (TARGET_CC_MODES_COMPATIBLE): Put return value in braces.
20086         Add argument names.
20088         (TARGET_SCHED_INIT_SCHED_CONTEXT): Clarify language.
20090         * target.h (struct gcc_target) <secondary_reload>: Change type
20091         of last argument to secondary_reload_info *.
20093 2010-01-18  Uros Bizjak  <ubizjak@gmail.com>
20095         PR target/42774
20096         * config/alpha/predicates.md (aligned_memory_operand): Return 0 for
20097         memory references with unaligned offsets.  Remove CQImode handling.
20098         (unaligned_memory_operand): Return 1 for memory references with
20099         unaligned offsets.  Remove CQImode handling.
20101 2010-01-18  Richard Guenther  <rguenther@suse.de>
20103         PR middle-end/39954
20104         * cfgexpand.c (expand_call_stmt): TER pointer arguments in
20105         builtin calls.
20107 2010-01-18  Richard Guenther  <rguenther@suse.de>
20109         PR tree-optimization/42781
20110         * tree-ssa-structalias.c (find_what_var_points_to): Skip
20111         restrict processing only if the original variable was artificial.
20113 2010-01-18  Joern Rennecke  <amylaar@spamcop.net>
20115         * doc/tm.texi (TARGET_ASM_FUNCTION_EPILOGUE): Update text on where to
20116         find number of popped argument bytes.
20118         (TARGET_INVALID_WITHIN_DOLOOP): Put return value in braces.
20119         Fix the text that describes the return value for invalid insns.
20121         (TARGET_SCHED_NEEDS_BLOCK_P): Fix return type.  Fix argument list.
20123         (TARGET_SCHED_IS_COSTLY_DEPENDENCE): Fix argument types.
20124         Clarify what 'cost of the -dependence' is.  Fix quoting.
20126         * toplev.c (default_get_pch_validity): Rename argument to "sz".
20127         * doc/tm.texi (TARGET_GET_PCH_VALIDITY): Likewise.
20129 2010-01-17  Jakub Jelinek  <jakub@redhat.com>
20131         * dwarf2out.c (mem_loc_descriptor): Don't ICE on
20132         {S,U}S_{PLUS,MINUS,NEG,ABS,ASHIFT}.
20134 2010-01-17  Richard Guenther  <rguenther@suse.de>
20136         PR middle-end/42248
20137         * function.c (split_complex_args): Take a VEC to modify.
20138         (assign_parms_augmented_arg_list): Build a VEC instead of
20139         a chain of PARM_DECLs.
20140         (assign_parms_unsplit_complex): Take a VEC of arguments.
20141         Do not fixup unmodified parms.
20142         (assign_parms): Deal with the VEC.
20143         (gimplify_parameters): Likewise.
20145 2010-01-17  Richard Guenther  <rguenther@suse.de>
20147         * tree-ssa-uncprop.c (uncprop_into_successor_phis): Fix PHI
20148         node existence check.
20149         * tree-vect-loop.c (vect_analyze_loop_form): Likewise.
20150         * tree-cfgcleanup.c (merge_phi_nodes): Likewise.
20151         * tree-ssa-dce.c (forward_edge_to_pdom): Likewise.
20152         * tree-cfg.c (gimple_execute_on_growing_pred): Likewise.
20153         (gimple_execute_on_growing_pred): Likewise.
20155 2010-01-17  Richard Guenther  <rguenther@suse.de>
20157         PR tree-optimization/42773
20158         * tree-ssa-pre.c (phi_translate_set): Fix check for PHI node existence.
20159         (compute_antic_aux): Likewise.
20160         (compute_partial_antic_aux): Likewise.
20162 2010-01-17  Jie Zhang  <jie.zhang@analog.com>
20164         PR debug/42767
20165         * dwarf2out.c (mem_loc_descriptor): Handle SS_TRUNCATE
20166         and US_TRUNCATE.
20168 2010-01-17  Joern Rennecke  <amylaar@spamcop.net>
20170         * doc/tm.texi (TARGET_INIT_LIBFUNCS): Put @findex entries in order of
20171         appearance.
20173         (TARGET_LEGITIMATE_ADDRESS_P): Add return type.
20174         Fix markup for strict argument.
20176         (TARGET_SCHED_REORDER2): Fix argument types.
20178         (TARGET_SCHED_DFA_PRE_CYCLE_INSN): Fix return type.
20179         (TARGET_SCHED_DFA_POST_CYCLE_INSN): Likewise.
20181         (TARGET_SCHED_DFA_PRE_ADVANCE_CYCLE): Fix name.
20182         (TARGET_SCHED_DFA_POST_ADVANCE_CYCLE): Likewise.
20184         (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD):
20185         Add argument name.
20187         (TARGET_SCHED_ALLOC_SCHED_CONTEXT): Remove duplicate documentation.
20188         (TARGET_SCHED_INIT_SCHED_CONTEXT): Likewise.
20189         (TARGET_SCHED_SET_SCHED_CONTEXT): Likewise.
20190         (TARGET_SCHED_CLEAR_SCHED_CONTEXT): Likewise.
20191         (TARGET_SCHED_FREE_SCHED_CONTEXT): Likewise.
20193         (TARGET_SCHED_SET_SCHED_CONTEXT): Fix typo.
20195         (TARGET_SCHED_GEN_SPEC_CHECK): Fix name.
20197         (TARGET_ASM_RELOC_RW_MASK): Add return type.
20198         (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Fix return type.
20200         (TARGET_STRIP_NAME_ENCODING): Fix markup of return type and parameter.
20202         (TARGET_ASM_FILE_START): Put @findex before paragraph start.
20203         Use prototype.
20205         (TARGET_ASM_NAMED_SECTION): Fix argument list.
20207         (TARGET_HAVE_NAMED_SECTIONS): Use @deftypevr.
20208         (TARGET_HAVE_SWITCHABLE_BSS_SECTIONS): Likewise.
20210         (TARGET_ASM_RECORD_GCC_SWITCHES_SECTION): Use @deftypevr.
20212         (TARGET_ASM_ASSEMBLE_VISIBILITY): Fix argument types.
20214         (TARGET_ASM_MARK_DECL_PRESERVED): Fix argument and markup
20215         referring to it.  Fix language.
20217         (TARGET_HAVE_CTORS_DTORS): Use @deftypevr.
20219         (TARGET_ASM_FINAL_POSTSCAN_INSN): Adjust name of first argument.
20221         (TARGET_ASM_EMIT_UNWIND_LABEL): Add argument types.
20223         (TARGET_ASM_EMIT_EXCEPT_TABLE_LABEL): Add type to argument.
20225         (TARGET_UNWIND_EMIT): Remove space between 'FILE *' and
20226         '@var{stream}.  Remove stray 'and'.
20228         (TARGET_ARM_EABI_UNWINDER): Use @deftypevr.
20230         (TARGET_ASM_OUTPUT_DWARF_DTPREL): Adjust name of first argument.
20232         (TARGET_SET_DEFAULT_TYPE_ATTRIBUTES): Add missing article.
20234         (TARGET_OPTION_VALID_ATTRIBUTE_P): Fix name, it was
20235         misspelled as TARGET_VALID_OPTION_ATTRIBUTE_P.
20237         (TARGET_GET_PCH_VALIDITY): Put 'void *' in braces.
20238         Fix description of return value.
20239         Rename argument "sz" to "len."
20241         (TARGET_CXX_GUARD_MASK_BIT): Add missing article.
20242         Clarify meaning of 'true' return value.
20244         (TARGET_SHIFT_TRUNCATION_MASK): Fix return type.
20246         (TARGET_MODE_REP_EXTENDED): Fix two inconsisent uses of
20247         rep_mode versus mode_rep.
20249         (TARGET_HANDLE_PRAGMA_EXTERN_PREFIX): Document.
20251         (TARGET_BUILTIN_DECL): Fix name.
20253         (TARGET_COMMUTATIVE_P): Fix type of first argument.
20255         (TARGET_SET_CURRENT_FUNCTION): Mention possibility of cfun being NULL.
20257         (TARGET_BRANCH_TARGET_REGISTER_CLASS): Fix return type.
20259         (TARGET_USE_LOCAL_THUNK_ALIAS_P): Document as macro instead of hook.
20261         (TARGET_RELAXED_ORDERING): Use @deftypevr.
20263         (TARGET_GET_DRAP_RTX): Note that this is a hook.
20264         Clarify language.
20266         (TARGET_BUILTIN_RECIPROCAL): Fix argument types.
20267         Rename argument tm_fn to md_fn.
20269         (TARGET_OPTION_PRINT): Fix argument list.
20271 2010-01-16  Harsha Jagasia  <harsha.jagasia@amd.com>
20273         PR target/42664
20274         * config/i386/i386.c (ix86_fixup_binary_operands):
20275         Revert FMA4 fixup of operands.
20277 2010-01-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20279         PR gcc/42525
20280         * Makefile.in (write_entries_to_file, install-plugin):
20281         Use \012 instead of \n with tr.
20283 2010-01-16  Richard Sandiford  <r.sandiford@uk.ibm.com>
20285         * configure.ac (HAVE_AS_REF): New C macro.
20286         * configure: Regenerate.
20287         * config.in: Likewise.
20288         * collect2.c (main): Only postpone SCAN_DWEH to the second pass
20289         if HAVE_AS_REF.
20290         * config/rs6000/aix.h (ASM_OUTPUT_DWARF_TABLE_REF): Only define
20291         if HAVE_AS_REF.
20293 2010-01-16  Joern Rennecke  <amylaar@spamcop.net>
20295         * doc/tm.texi (TARGET_USE_BLOCKS_FOR_CONSTANT_P): Fix argument types.
20297         (TARGET_SUPPORT_VECTOR_MISALIGNMENT): Fix argument types.
20299         (TARGET_USE_ANCHORS_FOR_SYMBOL_P): Fix argument types.
20301         (TARGET_SCHED_ALLOC_SCHED_CONTEXT): Put 'void *' in braces.
20303         (TARGET_IN_SMALL_DATA_P): Fix argument type.
20305         (TARGET_BINDS_LOCAL_P): Fix argument type.
20307         (TARGET_ASM_FILE_END): Use prototype.
20309         (TARGET_ASM_RECORD_GCC_SWITCHES): Don't put 'int' in braces.
20311         (TARGET_DWARF_CALLING_CONVENTION): Fix argument type.
20313         (TARGET_COMP_TYPE_ATTRIBUTES): Fix argument types.
20315         (TARGET_VALID_DLLIMPORT_ATTRIBUTE_P): Fix argument type.
20317         (TARGET_EMUTLS_VAR_ALIGN_FIXED): Don't put 'bool' in braces.
20318         (TARGET_EMUTLS_DEBUG_FORM_TLS_ADDRESS): Likewise.
20320         (TARGET_PCH_VALID_P): Put 'const char *' in braces.
20321         (TARGET_CHECK_PCH_TARGET_FLAGS): Likewise.
20323         (TARGET_ADDR_SPACE_LEGITIMATE_ADDRESS_P): Don't put 'bool' in braces.
20324         (TARGET_ADDR_SPACE_SUBSET_P): Likewise.
20325         (TARGET_ADDR_SPACE_LEGITIMIZE_ADDRESS): Don't put 'rtx' in braces.
20326         (TARGET_ADDR_SPACE_CONVERT): Likewise.
20328         (TARGET_CASE_VALUES_THRESHOLD): Put 'unsigned int' in braces.
20330         (TARGET_MACHINE_DEPENDENT_REORG: Use prototype.
20332         (TARGET_INIT_BUILTINS): Use prototype.
20334         (TARGET_INVALID_ARG_FOR_UNPROTOTYPED_FN):
20335         Put 'const char *' in braces.  Fix parameter types.
20336         (TARGET_INVALID_CONVERSION): Fix parameter types.
20337         (TARGET_INVALID_UNARY_OP, TARGET_INVALID_BINARY_OP): Likewise.
20338         (TARGET_INVALID_PARAMETER_TYPE, TARGET_INVALID_RETURN_TYPE): Likewise.
20340         (TARGET_PROMOTED_TYPE): Remove braces around 'tree'.
20341         Fix argument type.
20343         (TARGET_CONVERT_TO_TYPE): Remove braces around 'tree'.
20345         (TARGET_ALLOCATE_STACK_SLOTS_FOR_ARGS): Remove braces around 'bool'.
20347 2010-01-15  Joern Rennecke  <amylaar@spamcop.net>
20349         * doc/tm.texi (TARGET_HELP): Fix return type.
20351         (TARGET_PROMOTE_FUNCTION_MODE): Put 'enum machine_mode'
20352         in braces.  Fix argument types.
20354         (TARGET_LIBGCC_CMP_RETURN_MODE): Use prototype.
20356         (TARGET_LIBGCC_SHIFT_COUNT_MODE): Use prototype.
20358         (TARGET_MS_BITFIELD_LAYOUT_P): Fix argument type.
20360         (TARGET_DECIMAL_FLOAT_SUPPORTED_P): Don't put 'bool' in braces.
20361         (TARGET_FIXED_POINT_SUPPORTED_P): Likewise.
20363         (TARGET_MANGLE_TYPE): Fix argument types.
20365         (TARGET_IRA_COVER_CLASSES): Use prototype.
20367         (TARGET_BUILTIN_SETJMP_FRAME_VALUE): Fix return type.  Use prototype.
20369         (TARGET_CAN_ELIMINATE): Use identifiers for argument names.
20371         (TARGET_PROMOTE_PROTOTYPES): Fix argument type.
20373         (TARGET_MUST_PASS_IN_STACK): Fix argument type.
20375         (TARGET_CALLEE_COPIES): Fix argument types.
20377         (TARGET_SPLIT_COMPLEX_ARG): Fix argument type.
20379         (TARGET_GIMPLIFY_VA_ARG_EXPR): Fix argument types.
20381         (TARGET_FUNCTION_VALUE): Fix argument types.
20383         (TARGET_RETURN_IN_MSB): Fix argument type.
20385         (TARGET_RETURN_IN_MEMORY): Fix argument types.
20387         (TARGET_ASM_CAN_OUTPUT_MI_THUNK): Fix argument types.
20389         (TARGET_EXTRA_LIVE_ON_ENTRY): Fix argument type.
20391         (TARGET_STRICT_ARGUMENT_NAMING): Make literal in text
20392         agree with return type.
20394         (TARGET_PRETEND_OUTGOING_VARARGS_NAMED): Add Prototype.
20396 2010-01-15  Jing Yu  <jingyu@google.com>
20398         PR rtl-optimization/42691
20399         * combine.c (try_combine): Set changed_i3_dest to 1 when I2 and I3 set
20400         a pseudo to a constant and are merged, and adjust comments.
20402 2010-01-15  Eric Botcazou  <ebotcazou@adacore.com>
20404         * config/i386/sse.md (avx_vperm2f128<mode>3): Fix typo.
20406 2010-01-15  Richard Guenther  <rguenther@suse.de>
20408         PR middle-end/42739
20409         * tree-cfgcleanup.c (remove_forwarder_block): Move destination
20410         labels of computed or non-local gotos to the destination.
20411         * tree-cfg.c (gimple_verify_flow_info): Verify that a EH
20412         landing pad label is the first label.
20414 2010-01-15  Richard Guenther  <rguenther@suse.de>
20416         * tree-ssa-loop-im.c (gen_lsm_tmp_name): Fix bogus fallthru.
20418 2010-01-14  Michael Meissner  <meissner@linux.vnet.ibm.com>
20420         PR target/42747
20421         * config/rs6000/rs6000.md (sqrtdf2): Split into expander and insn
20422         to allow generation of the xssqrtdp instruction on power7.
20423         (sqrtdf2_fpr): Ditto.
20425 2010-01-14  Jakub Jelinek  <jakub@redhat.com>
20427         PR middle-end/42674
20428         * c-decl.c (finish_function): Don't emit -Wreturn-type warnings in
20429         functions with noreturn attribute.
20431         PR c++/42608
20432         * varasm.c (declare_weak): Add weak attribute to decl if it
20433         doesn't have one already.
20434         (assemble_external): Only add decls to weak_decls if they also
20435         have weak attribute.
20437 2010-01-14  Alexandre Oliva  <aoliva@redhat.com>
20439         * var-tracking.c (var_reg_delete): Don't delete the association
20440         between REGs and values or one-part variables if the register
20441         isn't clobbered.
20443 2010-01-14  Jakub Jelinek  <jakub@redhat.com>
20445         PR debug/42657
20446         * tree-inline.c (copy_debug_stmt): Don't reset debug stmt just
20447         because its first operand is a non-localized variable.
20449 2010-01-14  Martin Jambor  <mjambor@suse.cz>
20451         PR tree-optimization/42706
20452         * tree-sra.c (encountered_recursive_call): New variable.
20453         (encountered_unchangable_recursive_call): Likewise.
20454         (sra_initialize): Initialize both new variables.
20455         (callsite_has_enough_arguments_p): New function.
20456         (scan_function): Call decl and flags check only for IPA-SRA, check
20457         whether there is a recursive call and whether it has enough arguments.
20458         (all_callers_have_enough_arguments_p): New function.
20459         (convert_callers): Look for recursive calls only when
20460         encountered_recursive_call is set.
20461         (ipa_early_sra): Bail out either if
20462         !all_callers_have_enough_arguments_p or
20463         encountered_unchangable_recursive_call.
20465 2010-01-14  Alexander Monakov  <amonakov@ispras.ru>
20467         * sel-sched.c: Add 2010 to copyright years.
20468         * sel-sched-ir.c: Likewise.
20469         * sel-sched-ir.h: Likewise.
20471 2010-01-14  Martin Jambor  <mjambor@suse.cz>
20473         PR tree-optimization/42714
20474         * tree-sra.c (sra_ipa_modify_assign): Handle incompatible-type
20475         constructors specially.
20477 2010-01-14  Andi Kleen  <ak@linux.intel.com>
20479         * config/i386/drivers-i386.c (detect_caches_intel):
20480         Add l2sizekb parameter and fill in.
20481         (host_detect_local_cpu): Add l2sizekb, fill in.
20482         Add Atom small cache heuristic.
20484 2010-01-14  Andi Kleen  <ak@linux.intel.com>
20486         * config/i386/drivers-i386.c (detect_caches_cpuid4):
20487         Add level3 parameter and fill in.
20488         (detect_caches_intel): Handle level3 cache.
20490 2010-01-14  Andi Kleen  <ak@linux.intel.com>
20492         * config/i386/drivers-i386.c (host_detect_local_cpu):
20493         Fix core duo detection.
20495 2010-01-14  Andi Kleen  <ak@linux.intel.com>
20497         * config/i386/drivers-i386.c (host_detect_local_cpu):
20498         Fix Atom detection.
20500 2010-01-14  Alexander Monakov  <amonakov@ispras.ru>
20502         * config/rs6000/rs6000.c (rs6000_variable_issue): Rename to...
20503         (rs6000_variable_issue_1): this.  Use...
20504         (rs6000_variable_issue): here.  Reimplement.  Print debug info.
20506 2010-01-14  Alexander Monakov  <amonakov@ispras.ru>
20508         * sel-sched-ir.c (sel_restore_other_notes): Rename to
20509         sel_restore_notes.  Update all callers.  Call reemit_notes
20510         for all insns.
20512 2010-01-14  Andrey Belevantsev  <abel@ispras.ru>
20514         PR rtl-optimization/42246
20515         * sel-sched-ir.h (get_all_loop_exits): Include exits from inner
20516         loops.
20518 2010-01-14  Andrey Belevantsev  <abel@ispras.ru>
20520         * sel-sched.c (compute_av_set_at_bb_end): Do not test that number of
20521         all successors is the same as number of successors in current region.
20523 2010-01-14  Alexander Monakov  <amonakov@ispras.ru>
20525         * sel-sched.c (maybe_emit_renaming_copy): Exit early when expression
20526         to rename is not separable.  Otherwise check that its LHS is not NULL.
20528 2010-01-14  Alexander Monakov  <amonakov@ispras.ru>
20530         * sel-sched.c (choose_best_reg_1):  Loop over all regs for mode.
20532 2010-01-14  Alexander Monakov  <amonakov@ispras.ru>
20534         * sel-sched.c (mark_unavailable_hard_regs): Do not try to search
20535         available registers when failed to discover LHS register class.
20536         Fix indentation.  Update comment.
20538 2010-01-14  Andrey Belevantsev  <abel@ispras.ru>
20539             Alexander Monakov  <amonakov@ispras.ru>
20541         PR rtl-optimization/42389
20542         * sel-sched.c (advance_one_cycle): Set FENCE_ISSUE_MORE
20543         to can_issue_more.
20544         (advance_state_on_fence): Likewise.
20545         (sel_target_adjust_priority): Print debug output only when
20546         sched_verbose >= 4, not 2.
20547         (get_expr_cost): Do not issue all unique insns on the next cycle.
20548         (fill_insns): Initialize can_issue_more from the value saved
20549         with the fence.
20550         * sel-sched-ir.c (flist_add): New parameter issue_more.
20551         Init FENCE_ISSUE_MORE with it.
20552         (merge_fences): Likewise.
20553         (init_fences): Update call to flist_add.
20554         (add_to_fences, add_clean_fence_to_fences)
20555         (add_dirty_fence_to_fences): Likewise.
20556         (move_fence_to_fences): Update call to merge_fences.
20557         (invoke_reorder_hooks): Do not reset can_issue_more on insns from
20558         sched groups.
20559         * sel-sched-ir.h (struct _fence): New field issue_more.
20560         (FENCE_ISSUE_MORE): New accessor macro.
20562 2010-01-14  Andrey Belevantsev  <abel@ispras.ru>
20564         PR rtl-optimization/42388
20565         * sel-sched-ir.c (maybe_tidy_empty_bb): Do not delete empty blocks
20566         that have no predecessors nor successors.  Do not call move_bb_info
20567         for empty blocks outside of current region.
20569 2010-01-14  Alexander Monakov  <amonakov@ispras.ru>
20571         PR rtl-optimization/42294
20572         * sel-sched-ir.h (struct _sel_insn_data): Update comment.
20573         * sel-sched.c (move_exprs_to_boundary): Transitively add all
20574         originators' originators.
20576 2010-01-14  Alexander Monakov  <amonakov@ispras.ru>
20578         PR rtl-optimization/39453
20579         PR rtl-optimization/42246
20580         * sel-sched-ir.c (considered_for_pipelining_p): Do not test
20581         for pipelining_p.
20582         (sel_add_loop_preheaders): Add preheader to last_added_blocks.
20584 2010-01-14  Andrey Belevantsev  <abel@ispras.ru>
20585             Alexander Monakov  <amonakov@ispras.ru>
20587         PR middle-end/42245
20588         * sel-sched-ir.c (sel_recompute_toporder): New.  Use it...
20589         (maybe_tidy_empty_bb): ... here.  Make static.  Add new
20590         argument.  Update all callers.
20591         (tidy_control_flow): ... and here.  Recompute topological order
20592         of basic blocks in region if necessary.
20593         (sel_redirect_edge_and_branch): Change return type.  Return true
20594         if topological order might have been invalidated.
20595         (purge_empty_blocks): Export and move from...
20596         * sel-sched.c (purge_empty_blocks): ... here.
20597         * sel-sched-ir.h (sel_redirect_edge_and_branch): Update prototype.
20598         (maybe_tidy_empty_bb): Delete prototype.
20599         (purge_empty_blocks): Declare.
20601 2010-01-14  Andrey Belevantsev  <abel@ispras.ru>
20603         PR rtl-optimization/42249
20604         * sel-sched.c (try_replace_dest_reg): When chosen register
20605         and original register is the same, do not bail out early, but
20606         still check all original insns for validity of replacing destination
20607         register.  Set EXPR_TARGET_AVAILABLE to 1 before leaving function
20608         in this case.
20610 2010-01-14  Jakub Jelinek  <jakub@redhat.com>
20612         PR c/42721
20613         Port from no-undefined-overflow branch:
20614         2009-03-09  Richard Guenther  <rguenther@suse.de>
20616         * fold-const.c (add_double_with_sign): Fix unsigned overflow detection.
20618 2010-01-14  Richard Guenther  <rguenther@suse.de>
20620         PR lto/42665
20621         * gimple.c (iterative_hash_gimple_type): Avoid hashing error_mark_node.
20623 2010-01-14  Ira Rosen  <irar@il.ibm.com>
20625         PR tree-optimization/42709
20626         * tree-vect-slp.c (vect_get_constant_vectors): Use constant's type
20627         as scalar type in creation of constant vector operand.
20629 2010-01-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20631         PR testsuite/42414
20632         * Makefile.in ($(TESTSUITEDIR)/site.exp, check-%)
20633         (check-parallel-%): Match `testsuite' directory component only
20634         at the end.
20636 2010-01-14  Shujing Zhao  <pearly.zhao@oracle.com>
20638         PR translation/39521
20639         * gcc.c (do_spec_1): Wrapped the error and notice messages of specs
20640         strings with _().
20642 2010-01-13  Richard Guenther  <rguenther@suse.de>
20644         PR tree-optimization/42730
20645         * tree-ssa-ccp.c (maybe_fold_stmt_indirect): Add shortcut for
20646         offset zero.
20648 2010-01-13  Steve Ellcey  <sje@cup.hp.com>
20650         PR target/pr42542
20651         * config/ia64/ia64.c (ia64_expand_vecint_compare): Convert GTU to GT
20652         for V2SI by subtracting (-(INT MAX) - 1) from both operands to make
20653         them signed.
20655 2010-01-13  Bernd Schmidt  <bernd.schmidt@analog.com>
20657         * config/bfin/libgcc-bfin.ver: Regenerate based on current
20658         libgcc-std.ver.  Add entries for ___smulsi3_highpart and
20659         ___umulsi3_highpart.
20661         * config/bfin/bfin.c (bfin_reorg): Call run_selective_scheduling
20662         rather than schedule_insns if the pass is enabled.
20664 2010-01-13  Martin Jambor  <mjambor@suse.cz>
20666         PR tree-optimization/42704
20667         * tree-sra.c (sra_modify_assign): Do not delete assignments to
20668         SSA_NAMEs.
20670 2010-01-13  Martin Jambor  <mjambor@suse.cz>
20672         PR tree-optimization/42703
20673         * tree-sra.c (analyze_access_subtree): Check that we can build a
20674         reference to the original data within the aggregate.
20676 2010-01-13  Richard Guenther  <rguenther@suse.de>
20678         PR tree-optimization/42705
20679         * tree-ssa-reassoc.c (build_and_add_sum): Insert stmts after labels.
20681 2010-01-13  Richard Guenther  <rguenther@suse.de>
20683         PR middle-end/42716
20684         * fold-const.c (fold_unary_loc): Fold INDIRECT_REFs.
20686 2010-01-13  Jakub Jelinek  <jakub@redhat.com>
20688         PR debug/41371
20689         * var-tracking.c (values_to_unmark): New variable.
20690         (find_loc_in_1pdv): Clear VALUE_RECURSED_INTO of values in
20691         values_to_unmark vector.  Moved body to...
20692         (find_loc_in_1pdv_1): ... this.  Don't clear VALUE_RECURSED_INTO,
20693         instead queue it into values_to_unmark vector.
20694         (vt_find_locations): Free values_to_unmark vector.
20696 2010-01-13  Wolfgang Gellerich  <gellerich@de.ibm.com>
20698         * config/s390/s390.c (override_options): Set
20699         default of max-pending-list-length to 256
20701 2010-01-13  Richard Guenther  <rguenther@suse.de>
20703         PR lto/42678
20704         * tree-pass.h (PROP_gimple_lcx): New.
20705         * cfgexpand.c (pass_expand): Require PROP_gimple_lcx.
20706         * passes.c (init_optimization_passes): Move pass_lower_complex_O0
20707         before the final cleanup_eh.
20708         (dump_properties): Dump PROP_gimple_lcx.
20709         * tree-complex.c (pass_lower_complex): Provide PROP_gimple_lcx.
20710         (tree_lower_complex_O0): Remove.
20711         (gate_no_optimization): Run if PROP_gimple_lcx is not set.
20712         (pass_lower_complex_O0): Provide PROP_gimple_lcx.  Run
20713         tree_lower_complex, schedule TODO_update_ssa.
20714         * lto-streamer-out.c (output_function): Stream the functions
20715         properties.
20716         * lto-streamer-in.c (input_function): Likewise.
20717         (lto_read_body): Do not override them here.
20719 2010-01-12  Joseph Myers  <joseph@codesourcery.com>
20721         PR c/42708
20722         * c-typeck.c (build_c_cast): Fold value cast to union type before
20723         wrapping it in a CONSTRUCTOR.
20725 2010-01-12  Jakub Jelinek  <jakub@redhat.com>
20727         PR rtl-optimization/42699
20728         * cse.c (cse_insn): Optimize lhs ZERO_EXTRACT if only CONST_INTs are
20729         involved.
20731 2010-01-12  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
20733         * config/mips/iris6.h (SUBTARGET_DONT_WARN_UNUSED_SPEC,
20734         SUBTARGET_WARN_UNUSED_SPEC): Move ...
20735         config/mips/iris.h (SUBTARGET_DONT_WARN_UNUSED_SPEC,
20736         SUBTARGET_WARN_UNUSED_SPEC): ... here
20737         * config/mips/iris5.h (LIBGCC_SPEC): Define.
20739 2010-01-12  Julian Brown  <julian@codesourcery.com>
20741         * config/arm/neon-schedgen.ml (Utils): Don't try to
20742         open missing module.
20743         (find_with_result): New.
20745 2010-01-12  Jakub Jelinek  <jakub@redhat.com>
20747         PR debug/42662
20748         * simplify-rtx.c (simplify_relational_operation_1): Avoid invalid rtx
20749         sharing when canonicalizing ({lt,ge}u (plus a b) b).
20751         PR tree-optimization/42645
20752         * tree-inline.c (processing_debug_stmt): Move earlier.  Make static.
20753         (remap_ssa_name): If processing_debug_stmt and name wasn't found in
20754         decl_map, set processing_debug_stmt to -1 and return name without
20755         any remapping.
20757 2010-01-11  Dave Korn  <dave.korn.cygwin@gmail.com>
20759         * doc/install.texi (Specific#x-x-cygwin): Document minimum required
20760         binutils version, and reword target configuration description.
20762 2010-01-11  Andy Hutchinson  <hutchinsonandy@gcc.gnu.org>
20764         * config/avr/avr.h (LINKER_NAME): Remove.
20766 2010-01-11  Janis Johnson  <janis187@us.ibm.com>
20768         PR target/42416
20769         * config/rs6000/rs6000.c (rs6000_override_options): On targets
20770         that support VSX, warn for -mno-altivec if vsx is not disabled,
20771         and disable vsx.
20773 2010-01-11  Joseph Myers  <joseph@codesourcery.com>
20774             Shujing Zhao  <pearly.zhao@oracle.com>
20776         PR translation/42469
20777         * common.opt (Wframe-larger-than=, fcompare-debug=, fdbg-cnt=,
20778         fira-verbose=, flto-compression-level=, fplugin-arg-): Use tab
20779         character between option name and help text.
20780         * c.opt (imultilib): Likewise.
20782 2010-01-10  Rafael Avila de Espindola  <espindola@google.com>
20784         * lto-streamer-out.c (output_unreferenced_globals): Output static
20785         variables.
20787 2010-01-10  Steven Bosscher  <steven@gcc.gnu.org>
20789         PR rtl-optimization/42621
20790         * bb-reorder.c (gate_duplicated_computed_gotos): Only run if not
20791         optimizing for size.
20792         (duplicate_computed_gotos): Remove now-redundant check.
20794 2010-01-10  Steve Ellcey  <sje@cup.hp.com>
20796         PR target/37454
20797         * configure.ac: Save and restore LDFLAGS and LIBS
20798         * configure: Regenerate.
20800 2010-01-10  Richard Guenther  <rguenther@suse.de>
20802         PR middle-end/42667
20803         * builtins.c (fold_builtin_strlen): Add type argument and
20804         convert the resulting length to it.
20805         (fold_builtin_1): Adjust.
20807 2010-01-09  Jakub Jelinek  <jakub@redhat.com>
20809         * config/rs6000/rs6000.c (rs6000_emit_set_long_const): Shorten
20810         sequence for DImode constants >= 0x80000000UL <= 0xFFFFFFFFUL by
20811         1 insn.
20812         (num_insns_constant_wide): Adjust for that change.
20814 2010-01-09  Alexandre Oliva  <aoliva@redhat.com>
20816         PR debug/42631
20817         * web.c (union_defs): Add used argument, to combine uses of
20818         uninitialized regs.
20819         (entry_register): Adjust type and tests of used argument.
20820         (web_main): Widen used for new use.  Pass it to union_defs.
20821         * df.h (union_defs): Adjust prototype.
20823 2010-01-09  Alexandre Oliva  <aoliva@redhat.com>
20825         PR debug/42630
20826         * loop-unroll.c (referenced_in_one_insn_in_loop_p): Count debug
20827         uses in new incoming argument.  Free body.
20828         (reset_debug_uses_in_loop): New.
20829         (analyze_insn_to_expand_var): Call the latter if the former found
20830         anything.  Fix whitespace.  Reject invalid dest overlaps before
20831         going through all insns in the loop.
20833 2010-01-09  Alexandre Oliva  <aoliva@redhat.com>
20835         PR debug/42629
20836         * haifa-sched.c (dying_use_p): Debug insns don't count.
20838 2010-01-09  Alexandre Oliva  <aoliva@redhat.com>
20840         PR middle-end/42363
20841         * gimplify.c (gimplify_modify_expr): Drop lhs on noreturn calls.
20842         * tree-cfg.c (is_ctrl_altering_stmt): Don't compute flags twice.
20843         (verify_gimple_call): Reject LHS in noreturn calls.
20845 2010-01-09  Alexandre Oliva  <aoliva@redhat.com>
20847         PR debug/42604
20848         PR debug/42395
20849         * tree-vect-loop-manip.c (adjust_info): New type.
20850         (adjust_vec): New pointer to vector.
20851         (adjust_debug_stmts_now, adjust_vec_debug_stmts): New.
20852         (adjust_debug_stmts, adjust_phi_and_debug_stmts): New.
20853         (slpeel_update_phis_for_duplicate_loop): Use them.
20854         (slpeel_update_phi_nodes_for_guard1): Likewise.
20855         (slpeel_update_phi_nodes_for_guard2): Likewise.
20856         (slpeel_tree_peel_loop_to_edge): Likewise.
20857         (vect_update_ivs_after_vectorizer): Likewise.
20859 2010-01-09  Alexandre Oliva  <aoliva@redhat.com>
20861         * vec.h (DEF_VEC_ALLOC_FUNC_O_STACK): Drop excess paren.
20862         (DEF_VEC_ALLOC_FUNC_I_STACK): Likewise.
20864 2010-01-09  Alexandre Oliva  <aoliva@redhat.com>
20866         * config/i386/i386.c (ix86_vectorize_builtin_vec_perm): Silence
20867         bogus uninitialized warning.
20869 2010-01-09  Richard Guenther  <rguenther@suse.de>
20871         PR middle-end/42512
20872         * tree-scalar-evolution.c (interpret_loop_phi): Make sure
20873         the evolution is compatible with the initial condition.
20875 2010-01-09  Jakub Jelinek  <jakub@redhat.com>
20877         * gcc.c (process_command): Update copyright notice dates.
20878         * gcov.c (print_version): Likewise.
20879         * gcov-dump.c (print_version): Likewise.
20880         * mips-tfile.c (main): Likewise.
20881         * mips-tdump.c (main): Likewise.
20883 2010-01-08  Andy Hutchinson  <hutchinsonandy@gcc.gnu.org>
20885         PR target/41885
20886         * config/avr/avr.md (rotlqi3): Add CONST_INT_P check.
20887         (rotlhi3): Delete.
20888         (rotlhi3_8): Delete.
20889         (rotlsi3): Delete.
20890         (rotlsi3_8): Delete.
20891         (rotlsi3_16): Delete.
20892         (rotlsi3_24): Delete.
20893         (rotl<mode>3): New.
20894         (*rotw<mode>3): New.
20895         (*rotb<mode>3): New.
20896         * config/avr/avr.c (avr_rotate_bytes): New function.
20897         * config/avr/avr-proto.h (avr_rotate_bytes): New function.
20899 2010-01-08  Steve Ellcey  <sje@cup.hp.com>
20901         PR target/37454
20902         * configure.ac: Modify -rdynamic check.
20903         * configure: Regenerate.
20905 2010-01-08  DJ Delorie  <dj@redhat.com>
20907         * config/sh/sh.c (sh_expand_epilogue): Fix interrupt handler
20908         register popping order.
20910 2010-01-08  Richard Guenther  <rguenther@suse.de>
20912         PR lto/42528
20913         * c.opt (fsigned-char): Also let LTO handle this option.
20914         (funsigned-char): Likewise.
20916 2010-01-07  Richard Guenther  <rguenther@suse.de>
20918         * gimple.h (gss_for_code): Wrap gcc_assert in ENABLE_CHECKING.
20919         (gimple_op): Likewise.
20920         (gimple_op_ptr): Likewise.
20921         (gimple_assign_set_lhs): Remove gcc_assert.
20922         (gimple_assign_set_rhs1): Likewise.
20923         (gimple_assign_set_rhs2): Likewise.
20924         (gimple_call_set_lhs): Likewise.
20925         (gimple_call_set_fn): Likewise.
20926         (gimple_call_set_fndecl): Likewise.
20927         (gimple_call_fndecl): Likewise.
20928         (gimple_call_return_type): Likewise.
20929         (gimple_call_set_chain): Likewise.
20930         (gimple_call_num_args): Likewise.
20931         (gimple_call_set_arg): Likewise.
20932         (gimple_cond_set_code): Likewise.
20933         (gimple_cond_set_lhs): Likewise.
20934         (gimple_cond_set_rhs): Likewise.
20935         (gimple_cond_set_true_label): Likewise.
20936         (gimple_cond_set_false_label): Likewise.
20937         (gimple_label_set_label): Likewise.
20938         (gimple_goto_set_dest): Likewise.
20939         (gimple_debug_bind_get_var): Wrap gcc_assert in ENABLE_CHECKING.
20940         (gimple_debug_bind_get_value): Likewise.
20941         (gimple_debug_bind_get_value_ptr): Likewise.
20942         (gimple_debug_bind_set_var): Likewise.
20943         (gimple_debug_bind_set_value): Likewise.
20944         (gimple_debug_bind_reset_value): Likewise.
20945         (gimple_debug_bind_has_value_p): Likewise.
20946         (gimple_return_retval_ptr): Remove gcc_assert.
20947         (gimple_return_retval): Likewise.
20948         (gimple_return_set_retval): Likewise.
20949         * tree-flow.h (struct gimple_df): Remove nonlocal_all member.
20950         (safe_referenced_var_iterator): Remove.
20951         (FOR_EACH_REFERENCED_VAR_SAFE): Likewise.
20952         * tree-flow-inline.h (gimple_nonlocal_all): Remove.
20953         (fill_referenced_var_vec): Remove.
20954         (first_readonly_imm_use): Remove redundant gcc_assert.
20955         (phi_arg_index_from_use): Combine gcc_asserts.
20956         (move_use_after_head): Wrap gcc_assert in ENABLE_CHECKING.
20957         (first_imm_use_stmt): Remove redundant gcc_assert.
20958         * tree-cfg.c (verify_gimple_call): Verify function and chain
20959         operands.  Verify arguments.
20960         (verify_types_in_gimple_stmt): Verify condition code and labels.
20962 2010-01-07  Richard Guenther  <rguenther@suse.de>
20964         PR tree-optimization/42641
20965         * sese.c (rename_map_elt_info): Use the SSA name version, do
20966         not hash pointers.
20968 2010-01-07  Jakub Jelinek  <jakub@redhat.com>
20970         PR tree-optimization/42625
20971         * cgraph.c (cgraph_make_node_local): Clear DECL_COMDAT*,
20972         TREE_PUBLIC, DECL_WEAK and DECL_EXTERNAL also for same_body aliases.
20974 2010-01-07  Duncan Sands  <baldrick@free.fr>
20976         * Makefile.in (PLUGIN_HEADERS): Add version.h.
20978 2010-01-07  Uros Bizjak  <ubizjak@gmail.com>
20980         PR target/42511
20981         * ifcvt.c (dead_or_predicable): Also remove REG_EQUAL note when
20982         note itself is not function_invariant_p.
20984 2009-01-07  Steven Bosscher  <steven@gcc.gnu.org>
20986         * gcse.c (execute_rtl_cprop, execute_rtl_pre, execute_rtl_hoist):
20987         Do not add the DF_NOTE problem.
20988         * store-motion.c (execute_rtl_store_motion): Likewise.
20990 2010-01-07  Martin Jambor  <mjambor@suse.cz>
20992         PR tree-optimization/42157
20993         * tree-sra.c (compare_access_positions): Stabilize sort if both
20994         accesses have integer types, return zero immediately if they are the
20995         same.
20997 2010-01-06  Richard Henderson  <rth@redhat.com>
20999         PR middle-end/41883
21000         * haifa-sched.c (add_to_note_list): Merge into ...
21001         (concat_note_lists): ... here, and ...
21002         (unlink_other_notes, rm_other_notes): Merge into...
21003         (remove_notes): ... here.  Create REG_SAVE_NOTEs for
21004         NOTE_INSN_EPILOGUE_BEG.
21006 2010-01-06  Richard Guenther  <rguenther@suse.de>
21008         * ipa-inline.c (cgraph_decide_inlining_incrementally): Do
21009         not inline regular functions into always-inline functions.
21011 2010-01-06  Nick Clifton  <nickc@redhat.com>
21013         * config/rx/rx.h (enum rx_cpu_type): Add RX200.
21014         (CC1_SPEC): Issue an error message if -mcpu=rx200 and -fpu are
21015         used together.
21016         (OVERRIDE_OPTIONS): Delete.
21017         (OPTIMIZATION_OPTIONS): Define.
21018         (ALLOW_RX_FPU_INSNS): Define only in terms of -fpu option.
21019         * config/rx/rx.c (rx_handle_option): Issue an error message if
21020         -mcpu=rx200 and -fpu are used together.
21021         (rx_set_optimization_options): New function.  Issue an error
21022         message if an optimization attribute attempts to reset the FPU/
21023         math optimization pairing.
21024         * config/rx/rx-protos.h (rx_set_optimization_options): Prototype.
21025         * config/rx/rx.opt: Set the default to 32-bit doubles.
21026         * config/rx/t-rx: Add multilibs for -nofpu option.
21027         * doc/invoke.texi: Update documentation of RX options.
21029 2010-01-06  Richard Guenther  <rguenther@suse.de>
21031         * tree-ssa-pre.c (name_to_id): New global.
21032         (alloc_expression_id): Simplify SSA name handling.
21033         (lookup_expression_id): Likewise.
21034         (init_pre): Zero name_to_id.
21035         (fini_pre): Free it.
21037 2010-01-06  Uros Bizjak  <ubizjak@gmail.com>
21039         * ifcvt.c (if_convert): Output slim multiple dumps with TDF_SLIM.
21041 2010-01-05  H.J. Lu  <hongjiu.lu@intel.com>
21043         PR target/42542
21044         * config/i386/sse.md (smaxv2di3): New.
21045         (umaxv2di3): Likewise.
21046         (sminv2di3): Likewise.
21047         (uminv2di3): Likewise.
21049 2010-01-05  Eric Botcazou  <ebotcazou@adacore.com>
21051         PR target/42564
21052         * config/sparc/sparc.h (SPARC_SYMBOL_REF_TLS_P): Delete.
21053         * config/sparc/sparc-protos.h (legitimize_pic_address): Likewise.
21054         (legitimize_tls_address): Likewise.
21055         (sparc_tls_referenced_p): Likewise.
21056         * config/sparc/sparc.c (sparc_expand_move): Use legitimize_tls_address
21057         and adjust calls to legitimize_pic_address.
21058         (legitimate_constant_p) Use sparc_tls_referenced_p.
21059         (legitimate_pic_operand_p): Likewise.
21060         (sparc_legitimate_address_p): Do not use SPARC_SYMBOL_REF_TLS_P.
21061         (sparc_tls_symbol_ref_1): Delete.
21062         (sparc_tls_referenced_p): Make static, recognize specific patterns.
21063         (legitimize_tls_address): Make static, handle CONST patterns.
21064         (legitimize_pic_address): Make static, remove unused parameter and
21065         adjust recursive calls.
21066         (sparc_legitimize_address): Make static, use sparc_tls_referenced_p
21067         and adjust call to legitimize_pic_address.
21068         (sparc_output_mi_thunk): Likewise.
21070 2010-01-05  Paolo Bonzini  <bonzini@gnu.rg>
21071             H.J. Lu  <hongjiu.lu@intel.com>
21073         PR target/42542
21074         * config/i386/i386.c (ix86_expand_int_vcond): Convert GTU to GT
21075         for V4SI and V2DI by subtracting (-(INT MAX) - 1) from both
21076         operands to make them signed.
21078         Revert:
21079         2010-01-04  H.J. Lu  <hongjiu.lu@intel.com>
21081         PR target/42542
21082         * config/i386/i386.c (ix86_expand_int_vcond): Don't convert
21083         GTU to GT for V4SI and V2DI.
21085         * config/i386/sse.md (umaxv4si3): Enabled for SSE4.1 and XOP.
21086         (umin<mode>3): Removed.
21087         (uminv8hi3): New.
21088         (uminv4si3): Likewise.
21090 2010-01-05  Martin Jambor  <mjambor@suse.cz>
21092         PR tree-optimization/42462
21093         * ipa-inline.c (compute_inline_parameters): Pass node->decl instead of
21094         current_function_decl to helper functions and macros.
21096 2010-01-05  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
21098         PR bootstrap/41771
21099         * flags.h: Don't include real.h.
21100         (HONOR_NANS, HONOR_SNANS, HONOR_INFINITIES, HONOR_SIGNED_ZEROS,
21101         HONOR_SIGN_DEPENDENT_ROUNDING): Move ...
21102         * real.h (HONOR_NANS, HONOR_SNANS, HONOR_INFINITIES,
21103         HONOR_SIGNED_ZEROS, HONOR_SIGN_DEPENDENT_ROUNDING): ... here.
21104         * dominance.c: Update copyright.
21105         * gimple.c (walk_gimple_op): Remove inline.
21106         * tree-ssa-reassoc.c: Include real.h.
21107         * Makefile.in (FLAGS_H): Remove $(REAL_H).
21108         (tree-ssa-reassoc.o): Depend on $(REAL_H).
21110 2010-01-05  Nick Clifton  <nickc@redhat.com>
21112         * config/rx/rx.c (rx_get_stack_layout): Fix allocation of second
21113         register to push into the stack frame when the accumulator has to
21114         be saved during interrupts.
21116 2010-01-05  Eric Fisher  <joefoxreal@gmail.com>
21118         * doc/invoke.texi: Remove the documentation about option
21119         -Wunreachable-code.
21120         * common.opt (Wunreachable-code):  Preserved for backward
21121         compatibility.
21122         * tree-cfg.c: Remove the implementation of -Wunreachable-code.
21123         * opts.c (common_handle_option): Add OPT_Wunreachable_code to
21124         the backward compatibility flag section.
21126 2010-01-05  Richard Guenther  <rguenther@suse.de>
21128         * tree-ssa-pre.c (bitmap_value_insert_into_set): Optimize.
21130 2010-01-05  Jakub Jelinek  <jakub@redhat.com>
21132         PR other/42611
21133         * cfgexpand.c (expand_one_var): Diagnose too large variables.
21135         PR tree-optimization/42508
21136         * tree-sra.c (convert_callers): Check for recursive call
21137         by comparing cgraph nodes instead of decls.
21138         (modify_function): Call ipa_modify_formal_parameters also
21139         on all same_body aliases.
21141         * cgraphunit.c (cgraph_materialize_all_clones): Compare
21142         cgraph nodes when checking for same_body aliases.
21144 2010-01-05  Richard Guenther  <rguenther@suse.de>
21146         * tree-ssa-pre.c (get_or_alloc_expr_for_name): Avoid redundant
21147         allocation and lookup.
21148         (get_or_alloc_expr_for_constant): Likewise.
21149         (phi_translate): Sink allocation.
21151 2010-01-04  Richard Guenther  <rguenther@suse.de>
21153         * tree-ssa-sccvn.c (get_or_alloc_constant_value_id): Allocate
21154         a new entry only if needed.
21155         * tree-ssa-dom.c (lookup_avail_expr): Likewise.
21156         * tree-ssa-coalesce.c (find_coalesce_pair): Avoid one
21157         hashtable lookup.
21158         * tree-ssa-pre.c (sorted_array_from_bitmap_set): Pre-allocate
21159         the result array.
21160         (phi_translate): Handle CONSTANTs early.
21162 2010-01-04  Martin Jambor  <mjambor@suse.cz>
21164         PR tree-optimization/42398
21165         * tree-sra.c (struct access): Removed flag grp_different_types.
21166         (dump_access): Do not dump the removed flag.
21167         (sort_and_splice_var_accesses): Do not set the removed flag.
21168         (sra_modify_expr): Check for type compatibility directly.
21170 2010-01-04  Martin Jambor  <mjambor@suse.cz>
21172         PR tree-optimization/42366
21173         * ipa-cp.c (ipcp_init_stage): Always call ipa_compute_jump_functions on
21174         edges with variable number of parameters.
21175         * ipa-prop.c (ipa_write_node_info): Stream out uses_analysis_done
21176         flag instead of asserting it.
21177         (ipa_read_node_info): Read uses_analysis_done flag.
21179 2010-01-04  Richard Guenther  <rguenther@suse.de>
21181         * tree-ssa-sccvn.c (vn_reference_op_compute_hash): Use
21182         iterative_hash_* as intended.
21183         (vn_reference_compute_hash): Likewise.  Simplify hashing
21184         SSA names.
21185         (vn_reference_lookup_2): Likewise.
21186         (vn_nary_op_compute_hash): Likewise.
21187         (vn_phi_compute_hash): Likewise.
21188         (expressions_equal_p): Remove strange code.
21189         * tree-ssa-pre.c (pre_expr_eq): Use gcc_unreachable ().
21190         (pre_expr_hash): Likewise.  Simplify hashing SSA names.
21191         (bitmap_insert_into_set_1): Take value-id as parameter.
21192         (add_to_value): Pass it.
21193         (bitmap_insert_into_set): Likewise.
21194         (bitmap_value_insert_into_set): Likewise.  Remove redundant check.
21196 2010-01-04  Jakub Jelinek  <jakub@redhat.com>
21198         PR driver/42442
21199         * gcc.c (SWITCH_IGNORE_PERMANENTLY): Define.
21200         (do_self_spec): For switches with SWITCH_IGNORE set set also
21201         SWITCH_IGNORE_PERMANENTLY.
21202         (check_live_switch): Check SWITCH_IGNORE_PERMANENTLY instead
21203         of SWITCH_IGNORE.
21205 2010-01-04  Rafael Avila de Espindola  <espindola@google.com>
21207         * lto-streamer-out.c (output_unreferenced_globals): Output the full
21208         tree of an unreferenced global var.
21210 2010-01-04  H.J. Lu  <hongjiu.lu@intel.com>
21212         PR target/42542
21213         * config/i386/i386.c (ix86_expand_int_vcond): Don't convert
21214         GTU to GT for V4SI and V2DI.
21216         * config/i386/sse.md (umaxv4si3): Enabled for SSE4.1 and XOP.
21217         (umin<mode>3): Removed.
21218         (uminv8hi3): New.
21219         (uminv4si3): Likewise.
21221 2010-01-04  H.J. Lu  <hongjiu.lu@intel.com>
21223         PR lto/42581
21224         * collect2.c (main): Turn on trace in collect2 if -v is passed
21225         to gcc with LTO.
21227 2010-01-03  Jerry Quinn  <jlquinn@optonline.net>
21229         * doc/c-tree.texi (RETURN_STMT): Change to RETURN_EXPR.  Update
21230         description of expression operand.
21232 2010-01-03  Andrew Jenner  <andrew@codesourcery.com>
21234         * configure.ac: Add install-html to target_list for Make-hooks.
21235         * configure: Regenerate.
21236         * fortran/Make-lang.in (F95_HTMLFILES): New.
21237         (fortran.html): Use it.
21238         (fortran.install-html): New.
21239         * Makefile.in (install-html): Add lang.install-html.
21240         * java/Make-lang.in (JAVA_HTMLFILES): New.
21241         (java.html): Use it.
21242         (java.install-html): New.
21243         * objc/Make-lang.in (objc.install-html): New.
21244         * objcp/Make-lang.in (obj-c++.install-html): New.
21245         * cp/Make-lang.in (c++.install-html): New.
21246         * ada/gcc-interface/Make-lang.in (ada.install-html): New.
21247         * lto/Make-lang.in (lto.install-html): New.
21249 2010-01-03  H.J. Lu  <hongjiu.lu@intel.com>
21251         PR lto/42520
21252         * gcc.c (LINK_COMMAND_SPEC): Pass -m* and -v to -plugin-opt.
21254 2009-01-03  Steven Bosscher  <steven@gcc.gnu.org>
21256         PR rtl-optimization/41862
21257         * store-motion.c (store_killed_in_insn, compute_store_table,
21258         remove_reachable_equiv_notes, replace_store_insn,
21259         build_store_vectors): Ignore all DEBUG_INSNs.
21261 2010-01-03  H.J. Lu  <hongjiu.lu@intel.com>
21263         PR lto/41564
21264         * common.opt: Add dumpdir.
21266         * gcc.c (cc1_options): Add "-dumpbase %B" only if -dumpbase
21267         isn't specified.
21268         (option_map): Add --dumpdir.
21270         * gcc.h (DEFAULT_WORD_SWITCH_TAKES_ARG): Add dumpdir.
21272         * lto-wrapper.c (run_gcc): Add -dumpbase and -dumpdir for -o.
21274         * opts.c (decode_options): Try dump_dir_name first if
21275         dump_base_name isn't an absolute path.
21276         (common_handle_option): Handle OPT_dumpdir.
21278         * toplev.c (dump_dir_name): New.
21279         (print_switch_values): Also ignore -dumpdir.
21281         * toplev.h (dump_dir_name): New.
21283 2010-01-03  Richard Guenther  <rguenther@suse.de>
21285         PR tree-optimization/42589
21286         * tree-ssa-math-opts.c (execute_optimize_bswap): Allow
21287         double-word expansion of bswap32.
21289 2010-01-03  Steven Bosscher  <steven@gcc.gnu.org>
21291         * postreload-gcse.c (insert_expr_in_table): Replace BLOCK_NUM
21292         with BLOCK_FOR_INSN.
21293         * auto-inc-dec.c (attempt_change, get_next_ref, find_inc): Likewise.
21294         * ifcvt.c (noce_get_alt_condition, noce_try_abs,
21295         noce_process_if_block): Likewise.
21296         * gcse.c (compute_local_properties, insert_expr_in_table,
21297         insert_set_in_table, canon_list_insert, find_avail_set,
21298         pre_insert_copy_insn): Likewise.
21300         * basic-block.h (BLOCK_NUM): Move from here...
21301         * sched-int.h (BLOCK_NUM): ... to here to localize it in the scheduler.
21303 2010-01-03  Richard Guenther  <rguenther@suse.de>
21305         PR tree-optimization/42438
21306         * tree-ssa-pre.c (struct bb_bitmap_sets): Add
21307         contains_may_not_return_call flag.
21308         (BB_MAY_NOTRETURN): New.
21309         (valid_in_sets): Trapping nary operations are not valid
21310         in blocks that may not return.
21311         (insert_into_preds_of_block): Remove check for trapping expressions.
21312         (compute_avail): Compute also BB_MAY_NOTRETURN.
21314 2010-01-03  Gerald Pfeifer  <gerald@pfeifer.com>
21316         * doc/invoke.texi: Add 2010 to copyright years.
21318 2010-01-03  Eric Botcazou  <ebotcazou@adacore.com>
21320         * config/sparc/sparc.c: Fix formatting nits.
21322 2010-01-02  Gerald Pfeifer  <gerald@pfeifer.com>
21323             Alexander Monakov  <amonakov@ispras.ru>
21325         * doc/invoke.texi (Optimize Options): Reword introduction a bit.
21327 2010-01-02  Richard Guenther  <rguenther@suse.de>
21329         PR middle-end/42577
21330         * tree-vrp.c (check_all_array_refs): Skip non-excutable blocks.
21331         (simplify_switch_using_ranges): Mark to be removed edges
21332         as non-executable.
21334 2010-01-02  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
21336         * config/pa/t-slibgcc-dwarf-ver (SHLIB_SOVERSION): Bump by two.
21338         * collect2.c (scan_libraries): Add missing argument in call to
21339         scan_prog_file.
21341 2010-01-02  Uros Bizjak  <ubizjak@gmail.com>
21343         PR target/42448
21344         * config/alpha/predicates.md (aligned_memory_operand): Return false
21345         for CQImode.
21346         (unaligned_memory_operand): Return true for CQImode.
21347         * config/alpha/alpha.c (get_aligned_mem): Assert that location
21348         doesn not cross aligned SImode word boundary.
21350 2010-01-02  Anatoly Sokolov  <aesok@post.ru>
21352         * config/avr/avr.h (REG_OK_FOR_BASE_P, REG_OK_FOR_INDEX_P, XEXP_):
21353         Remove.
21354         * config/avr/avr-protos.h (avr_init_once, avr_optimization_options,
21355         avr_change_section, avr_reg_class_from_letter) : Remove declaration.
21357 2010-01-02  Richard Guenther  <rguenther@suse.de>
21359         PR lto/41597
21360         * toplev.c (compile_file): Emit LTO marker properly.  Change
21361         it to __gnu_lto_v1.
21362         * collect2.c (scan_prog_file): Adjust for changed LTO marker.
21364 2010-01-01  Richard Guenther  <rguenther@suse.de>
21366         PR debug/42455
21367         * tree-sra.c (analyze_all_variable_accesses): Work in DECL_UID order.
21369 2010-01-01  Richard Guenther  <rguenther@suse.de>
21371         PR c/42570
21372         * c-decl.c (grokdeclarator): For zero-size arrays force
21373         structural equality checks as layout_type does.
21375 2010-01-01  H.J. Lu  <hongjiu.lu@intel.com>
21377         * builtins.c: Update copyright to 2010.
21379 2010-01-01  H.J. Lu  <hongjiu.lu@intel.com>
21381         PR lto/42531
21382         * lto-streamer-out.c (produce_asm): Revert the last change.
21383         (copy_function): Likewise.
21385         * lto-streamer.c (lto_get_section_name): Skip any leading
21386         asterisk in name.
21388 2010-01-01  Richard Guenther  <rguenther@suse.de>
21390         PR middle-end/42559
21391         * builtins.c (get_object_alignment): Do not use DECL_ALIGN
21392         for LABEL_DECLs.
21395 Copyright (C) 2010 Free Software Foundation, Inc.
21397 Copying and distribution of this file, with or without modification,
21398 are permitted in any medium without royalty provided the copyright
21399 notice and this notice are preserved.