OSDN Git Service

2008-07-02 Martin Jambor <mjambor@suse.cz>
[pf3gnuchains/gcc-fork.git] / gcc / ChangeLog
1 2008-07-02  Martin Jambor  <mjambor@suse.cz>
2
3         * tree-switch-conversion.c: Included timevar.h which I forgot before.
4         
5 2008-07-02  Martin Jambor  <mjambor@suse.cz>
6
7         * tree-switch-conversion.c: Included timevar.h
8         (pass_convert_switch): Added a timevar id (TV_TREE_SWITCH_CONVERSION).
9
10         * timevar.def: Added TV_TREE_SWITCH_CONVERSION.
11
12 2008-07-02  Martin Jambor  <mjambor@suse.cz>
13
14         * tree-switch-conversion.c: Corrected various comments and
15         whitespace issues
16         (build_constructors): Fixed minor formatting mistakes.
17
18         * invoke.texi (Optimize Options): Corrected the
19         switch-conversion-max-branch-ratio parameter.
20
21 2008-07-02  Mark Shinwell  <shinwell@codesourcery.com>
22
23         * final.c (asm_insn_count): Return zero for an empty asm body.
24
25 2008-07-02  Richard Guenther  <rguenther@suse.de>
26
27         * bitmap.h (bitmap_set_bit): Return bool.
28         (bitmap_clear_bit): Likewise.
29         * bitmap.c (bitmap_set_bit): Return if the bit changed.  Only
30         write to the bitmap if it would.
31         (bitmap_clear_bit): Likewise.
32         * tree-ssa-structalias.c (add_implicit_graph_edge): Use
33         bitmap_set_bit return value.
34         (add_pred_graph_edge): Likewise.
35         (add_graph_edge): Likewise.
36         (do_sd_constraint): Likewise.
37         (do_ds_constraint): Likewise.
38
39 2008-07-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
40
41         * config/alpha/alpha.c (alpha_need_linkage, alpha_use_linkage):
42         Fix -Wc++-compat and/or -Wcast-qual warnings.
43         * config/i386/netware.c (gen_stdcall_or_fastcall_decoration,
44         gen_regparm_prefix): Likewise.
45         * vmsdbgout.c (write_modbeg, lookup_filename,
46         vmsdbgout_source_line, vmsdbgout_init): Likewise.
47
48 2008-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
49
50         * config/i386/mingw32.h (TARGET_USE_JCR_SECTION): Undef to let
51         defaults.h definition apply.
52
53 2008-07-01  Daniel Jacobowitz  <dan@codesourcery.com>
54
55         * function.c (assign_parm_remove_parallels): New.
56         (assign_parm_setup_block_p): Do not return true for non-BLKmode
57         PARALLELs.
58         (assign_parm_setup_block): Do not handle them.
59         (assign_parm_setup_reg, assign_parm_setup_stack): Call
60         assign_parm_remove_parallels.
61
62 2008-07-01  Daniel Jacobowitz  <dan@codesourcery.com>
63
64         * c-typeck.c (convert_for_assignment): Use
65         vector_targets_convertible_p.
66         * c-common.c (vector_targets_convertible_p): New.
67         * c-common.h (vector_targets_convertible_p): New prototype.
68         * config/rs6000/rs6000.c (rs6000_is_opaque_type): Do not check
69         opaque_p_V2SI_type_node.
70
71 2008-07-01  Steve Ellcey  <sje@cup.hp.com>
72
73         * config/ia64/ia64.c (ia64_cannot_force_const_mem): Do not allow
74         RFmode constants.
75
76 2008-07-01  Uros Bizjak  <ubizjak@gmail.com>
77
78         * config/i386/i386.c (ix86_build_signbit_mask): Generate TImode and
79         TFmode constants via two element DImode vector for hosts with
80         HOST_BITS_PER_WIDE_INT < 64.
81         (ix86_init_builtins): Define __builtin_fabsq and __builtin_copysignq
82         also for HOST_BITS_PER_WIDE_INT < 64.
83
84 2008-07-01  Richard Guenther  <rguenther@suse.de>
85
86         PR tree-optimization/36666
87         * tree-ssa-structalias.c (get_constraint_for_1): Declare.
88         (get_constraint_exp_from_ssa_var): Split into ...
89         (get_constraint_exp_for_temp): ... this ...
90         (get_constraint_for_ssa_var): ... and that.
91         Return constraint expressions for all touched sub-fields
92         if the results address is not taken.
93         (process_constraint): Remove assertion that aggregate
94         assignments do not happen at this place.
95         (get_constraint_for_component_ref): Add address_p argument.
96         Return constraint expressions for all touched sub-fields
97         if the results address is not taken.
98         (do_deref): Use get_constraint_exp_for_temp.
99         (get_constraint_for_1): Rename from ...
100         (get_constraint_for): ... this.  Add the old function as wrapper.
101         (do_structure_copy): Use get_constraint_for_1.
102
103 2008-07-01  Martin Jambor  <mjambor@suse.cz>
104
105         * Makefile.in (tree-switch-conversion.o): Add.
106         (OBJS-common): Add tree-swtch-conversion.o.
107         * passes.c (init_optimization_passes): Add pass_convert_switch.
108         * tree-pass.h: (pass_convert_switch): Add.
109         * tree-switch-conversion.c: New file.
110         * gcc.dg/tree-ssa/cswtch.c: New testcase.
111         * common.opt (ftree-cswtch): New option.
112         * params.h (PARAM_SWITCH_CONVERSION_BRANCH_RATIO): New parameter.
113         * params.def (PARAM_SWITCH_CONVERSION_BRANCH_RATIO): New parameter.
114         * opts.c (decode_options): Set flag_tree_switch_conversion when
115         optimization level is >= 2.
116         * doc/invoke.texi (Optimize Options): Added description of
117         -ftree-swtch-conversion and switch-conversion-max-branch-ratio.
118
119 2008-06-30  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
120
121         * config/darwin-driver.c (darwin_default_min_version): Fix
122         -Wc++-compat warnings.
123
124 2008-06-30  Uros Bizjak  <ubizjak@gmail.com>
125
126         * config/i386/i386.md (*movti_rex64): Add "!" to "r" constraint
127         of operand 0.
128
129 2008-06-30  Kenneth Zadeck <zadeck@naturalbridge.com>
130
131         * ifcvt.c (cond_move_process_if_block): Free vectors on false return.
132         
133 2008-06-30  Kenneth Zadeck <zadeck@naturalbridge.com>
134
135         PR rtl-optimization/34744
136         * df-scan.c (df_scan_free_ref_vec, df_scan_free_mws_vec): New macros.
137         (df_scan_free_internal): Free data structures not
138         allocated in storage pools.
139         (df_mw_hardreg_chain_delete_eq_uses): Use df_scan_free_mws_vec.
140         (df_refs_add_to_chains): Use df_scan_free_ref_vec and
141         df_scan_free_mws_vec.
142         * dse.c (dse_step6): Free offset_map_p and offset_map_n
143         unconditionally.
144
145 2008-06-30  H.J. Lu  <hongjiu.lu@intel.com>
146
147         * config/i386/i386.c (contains_aligned_value_p): Return true
148         for __float128.
149         (ix86_function_arg_boundary): Return its natural boundary
150         for __float128.
151         (return_in_memory_32): Don't check TDmode.
152         (ix86_split_to_parts): Support splitting into 4 parts and
153         support TFmode for 32bit target.
154         (ix86_split_long_move): Support splitting into 4 parts.
155         (bdesc_args): Enable IX86_BUILTIN_FABSQ and IX86_BUILTIN_COPYSIGNQ
156         for SSE2.
157         (ix86_init_mmx_sse_builtins): Move __float80 and __float128 to ...
158         (ix86_init_builtins): Here.
159         (ix86_scalar_mode_supported_p): Always return true for TFmode.
160         (ix86_c_mode_for_suffix): Always return TFmode and XFmode for
161         'q' and 'w', respectively. 
162
163         * config/i386/i386.md (movtf): Check TARGET_SSE2 instead of
164         TARGET_64BIT.
165         (movtf_internal): Likewise.
166         (<code>tf2): Likewise.
167         (*absnegtf2_sse): Likewise.
168         (copysign<mode>3): Likewise.
169         (copysign<mode>3_const): Likewise.
170         (copysign<mode>3_var): Likewise.
171         (define_split UNSPEC_COPYSIGN): Likewise.
172         * config/i386/sse.md (*nandtf3): Likewise.
173         (<code>tf3): Likewise.
174         (*<code>tf3): Likewise.
175
176 2008-06-30  Joey Ye  <joey.ye@intel.com>
177             H.J. Lu  <hongjiu.lu@intel.com>
178
179         * global.c (compute_regsets): Set frame_pointer_needed here.
180         * reload1.c (init_elim_table): Don't set frame_pointer_needed here.
181
182 2008-06-30  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>
183
184         * doc/install.texi (specific): Expand Windows build notes.
185
186 2008-06-30  Ira Rosen  <irar@il.ibm.com>
187
188         PR tree-optimization/36648
189         * tree-vect-transform.c (vect_do_peeling_for_loop_bound): Divide
190         number of prolog iterations by step. Fix the comment.
191
192 2008-06-30  Richard Guenther  <rguenther@suse.de>
193
194         PR middle-end/36671
195         * tree-ssa-structalias.c (handle_lhs_call): Add flags argument,
196         handle calls from ECF_MALLOC functions.
197         (handle_pure_call): ECF_MALLOC functions do not return
198         call-used memory.
199         (find_func_aliases): Handle all calls, adjust calls to handle_lhs_call.
200
201 2008-06-29  Andreas Schwab  <schwab@suse.de>
202
203         * config/m68k/m68k.c (print_operand): Always print a float
204         constant in hex.
205         * config/m68k/m68k.h (ASM_OUTPUT_FLOAT_OPERAND)
206         (ASM_OUTPUT_DOUBLE_OPERAND, ASM_OUTPUT_LONG_DOUBLE_OPERAND):
207         Remove macros.
208
209         * config/rs6000/x-linux64: Remove never used file.
210
211 2008-06-29  Richard Guenther  <rguenther@suse.de>
212
213         * tree-ssa-structalias.h (compute_points_to_sets): Adjust
214         prototype.
215         (struct alias_info): Move ...
216         * tree-ssa-alias.c: ... here.
217         (update_alias_info): Declare.
218         (compute_may_aliases): Call it.
219         (update_alias_info): New function.
220         * tree-ssa-structalias.c (update_alias_info): Move ...
221         * tree-ssa-alias.c (update_alias_info_1): ... here.
222         * tree-ssa-structalias.c (process_constraint_1): Remove
223         unused from_call argument.  Rename to ...
224         (process_constraint): ... this.  Delete old wrapper.
225         (make_constraint_to): Adjust callers.
226         (handle_const_call): Likewise.
227         (handle_pure_call): Likewise.
228         (init_base_vars): Likewise.
229         (handle_lhs_call): Likewise.  Remove unnecessary constraint.
230         (find_func_aliases): We don't need structure copies for
231         complex types.
232         (make_constraint_from_anything): Remove.
233         (create_variable_info_for): For globals make constraints
234         from escaped, not from anything.
235         (compute_points_to_sets): Do not call update_alias_info.
236         (ipa_pta_execute): Use make_constraint_from.
237
238 2008-06-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
239
240         * Makefile.in (CXX_COMPAT_WARN, cxx_compat_warn): Delete.
241         (bitmap.o-warn, dominance.o-warn): New.
242         * configure.ac (cxx_compat_warn): Delete.
243         (loose_warn): Add -Wcast-qual and -Wc++-compat.
244         * system.h: Remove #pragma diagnostic for -Wcast-qual and
245         -Wc++-compat.
246         * configure: Regenerate.
247
248         * optabs.c (libfunc_decl_hash, libfunc_decl_eq): Fix -Wcast-qual
249         warnings.
250
251 2008-06-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
252
253         * alloc-pool.c (create_alloc_pool): Fix -Wc++-compat warnings.
254         * df-scan.c (df_notes_rescan): Likewise.
255         * ggc-page.c (set_page_table_entry): Likewise.
256         * intl.c (gcc_gettext_width): Likewise.
257         * varasm.c (get_unnamed_section, get_noswitch_section,
258         get_section): Likewise.
259
260 2008-06-28  Andrew Jenner  <andrew@codesourcery.com>
261
262         * regrename.c (build_def_use): Don't copy RTX.
263
264 2008-06-28  Sandra Loosemore  <sandra@codesourcery.com>
265
266         * doc/extend.texi (Variable Attributes): Use @ref instead of @xref.
267         (Type Attributes): Fix nesting of @table and @subsection.  Adjust
268         punctuation.  Use @ref instead of @xref.
269         (Function Names): Remove stray @display/@end display.
270         (C++ Attributes): Use @ref instead of @xref.
271         (Deprecated Features): Fix punctuation around @xref.
272         (Backwards Compatibility): Likewise.
273         * doc/rtl.texi (Incdec): Remove stray @table/@end table.
274
275 2008-06-28  Joseph Myers  <joseph@codesourcery.com>
276
277         * config/rs6000/predicates.md (easy_fp_constant): Reject TFmode
278         constants for E500 double.
279
280 2008-06-28  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
281
282         * doc/rtl.texi (const_vector): Document const_fixed as legitimate
283         element type of const_vector.
284
285 2008-06-28  Uros Bizjak  <ubizjak@gmail.com>
286
287         * config/i386/i386.md (addti3, adddi3, addsi3, addhi3, addqi3):
288         Remove FLAGS_REG clobber from expander pattern.
289         (subti3, subdi3, subsi3, subhi3, subqi3): Ditto.
290         (anddi3, andsi3, andhi3, andqi3): Ditto.
291         (iordi3, iorsi3, iorhi3, iorqi3): Ditto.
292         (xordi3, xorsi3, xorhi3, xorqi3): Ditto.
293         (negti2, negdi2, negsi2, neghi2, negqi2): Ditto.
294         (ashlsi3, ashlhi3, ashlqi3): Ditto.
295         (ashrsi3, ashrhi3, ashrqi3): Ditto.
296         (lshrsi3, lshrhi3, lshrqi3): Ditto.
297         (rotldi3, rotlsi3, rotlhi3, rotlqi3): Ditto.
298         (rotrdi3, rotrsi3, rotrhi3, rotrqi3): Ditto.
299
300 2008-06-28  Richard Guenther  <rguenther@suse.de>
301
302         * tree-ssa-structalias.c (callused_id, var_callused,
303         callused_tree): Add.
304         (handle_pure_call): New function.
305         (find_func_aliases): Call it.
306         (find_what_p_points_to): Handle the call-used set.
307         (clobber_what_escaped): Likewise.
308         (compute_call_used_vars): New function.
309         (init_base_vars): Init the call-used variable.
310         (do_sd_constraint): Do not propagate the solution from CALLUSED
311         but use CALLUSED as a placeholder.
312         (solve_graph): Likewise.
313         * tree-flow-inline.h (gimple_call_used_vars): New function.
314         * tree-flow.h (struct gimple_df): Add call_used_vars bitmap.
315         (compute_call_used_vars): Declare.
316         * tree-ssa-alias.c (set_initial_properties): Call
317         compute_call_used_vars.
318         (reset_alias_info): Clear call-used variables.
319         (add_call_clobber_ops): Assert we are not called for const/pure
320         functions.  Remove handling of them.
321         (add_call_read_ops): Handle pure functions by adding the
322         call-used set of variables as VUSEs.
323         * tree-ssa.c (init_tree_ssa): Allocate call-used bitmap.
324         (delete_tree_ssa): Free it.
325         * tree-dfa.c (remove_referenced_var): Clear the var from the
326         call-used bitmap.
327
328 2008-06-28  Kai Tietz  <kai.tietz@onevision.com>
329
330         * tree.c (build_varargs_function_type_list): New.
331         (build_function_type_list_1): New.
332         (build_function_type_list): Use build_function_type_list_1.
333         * tree.h (build_varargs_function_type_list): New.
334
335 2008-06-28  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
336
337         PR target/34856
338         * config/spu/spu.c (spu_builtin_splats): Do not generate
339         invalid CONST_VECTOR expressions.
340         (spu_expand_vector_init): Likewise.
341
342 2008-06-28  Richard Sandiford  <rdsandiford@googlemail.com>
343
344         * optabs.c (libfunc_decls): New variable.
345         (libfunc_decl_hash, libfunc_decl_eq): New functions.
346         (init_one_libfunc): Reuse decls and SYMBOL_REFs when asked
347         for the same function twice.
348
349 2008-06-27  Uros Bizjak  <ubizjak@gmail.com>
350
351         * config/i386/i386.md (ashlti3, ashrti3, lshrti3): Expand using
352         ix86_expand_binary_operator directly.
353         (*ashlti3_1): Rename from ashlti3_1.  Use nonmemory_operand predicate
354         for operand 2.
355         (*ashrti3_1): Ditto.
356         (*lshrti3_1): Ditto.
357         (*ashlti3_2, *ashrti3_2, *lshrti3_2): Remove insn patterns.
358         (ashlti, ashrti and lshrti splitters): Handle nonmemory operand 2
359         using only one splitter.  Conditionaly execute splitter before or
360         after peephole2 pass.
361         (ashlti, ashrti and lshrti peephole2): Define peephole2 patterns.
362         (x86_shld): Rename from x86_shld_1.  Compress operand 2 constraints.
363         Use only one alternative in asm template.
364         (x86_64_shld): Compress operand 2 constraints. Use only one alternative
365         in asm template.
366         (*ashldi3_cmp_rex64): Use const_1_to_63_operand operand predicate and
367         "J" operand constraint for operand 2.
368         (*ashldi3_cconly_rex64): Ditto.
369         (*ashrdi3_cmp_rex64): Ditto.
370         (*ashrdi3_cconly_rex64): Ditto.
371         (*lshrdi3_cmp_rex64): Ditto.
372         (*lshrdi3_cconly_rex64): Ditto.
373         * config/i386/predicates.md (const_1_to_63_operand): New predicate.
374         * config/i386/i386.md (print_operand) ['s']: Print ", " using fputs.
375         (split_ashr, split_ashl, split_lshr): Use gen_x86_shrd instead of
376         gen_x86_shrd_1.
377
378 2008-06-27  Jakub Jelinek  <jakub@redhat.com>
379
380         * gimplify.c (omp_is_private): Don't return true if decl is not
381         already private on #pragma omp for or #pragma omp parallel for.
382
383         PR debug/36617
384         * tree-cfg.c (struct move_stmt_d): Replace block field with
385         orig_block and new_block fields.
386         (move_stmt_r): Only set TREE_BLOCK to p->new_block if
387         if it used to be NULL, p->orig_block or if p->orig_block is NULL.
388         (move_block_to_fn): Replace vars_map and new_label_map arguments
389         with struct move_stmt_d pointer.
390         (replace_block_vars_by_duplicates): New function.
391         (move_sese_region_to_fn): Add ORIG_BLOCK argument.  Adjust
392         move_block_to_fn caller.  If ORIG_BLOCK is non-NULL, move over
393         all subblocks of ORIG_BLOCK to the new function.  Call
394         replace_block_vars_by_duplicates.
395         * tree-flow.h (move_sese_region_to_fn): Adjust prototype.
396         * omp-low.c (expand_omp_taskreg): Set TREE_USED on DECL_INITIAL
397         BLOCK of the new function.  Adjust move_sese_region_to_fn caller.
398         Prune vars with original DECL_CONTEXT from child_cfun->local_decls.
399         (expand_omp): Temporarily set input_location to the location of
400         region's controlling stmt.
401         (lower_omp_sections, lower_omp_for): Add a BLOCK into outermost
402         BIND_EXPR, push ctx->block_vars and gimplification vars into
403         the BIND_EXPR and its block's BLOCK_VARS instead of directly
404         into dest function.
405         (lower_omp_single): Set TREE_USED on the BIND_EXPR's BLOCK if
406         there are any BLOCK_VARS.
407         (lower_omp_taskreg): Set BLOCK on a BIND_EXPR containing the
408         OMP_PARALLEL or OMP_TASK stmt.
409         (lower_omp): Save and restore input_location around the lower_omp_1
410         call.
411
412 2008-06-27  Richard Guenther  <rguenther@suse.de>
413
414         PR tree-optimization/36400
415         PR tree-optimization/36373
416         PR tree-optimization/36344
417         * tree-ssa-structalias.c (var_escaped, escaped_tree, escaped_id,
418         var_nonlocal, nonlocal_tree, nonlocal_id): New globals
419         (update_alias_info): Remove call clobbering code.
420         (make_constraint_to): New helper function.
421         (make_escape_constraint): Likewise.
422         (handle_rhs_call): Use it on all pointer containing arguments.
423         Also mark the static chain escaped.
424         (handle_lhs_call): Make constraints from NONLOCAL and ESCAPED
425         instead of ANYTHING.
426         (make_constraint_from): New helper split out from ...
427         (make_constraint_from_anything): ... here.
428         (find_func_aliases): Add constraints for escape sites.
429         (intra_create_variable_infos): Make constraints from NONLOCAL
430         for parameters.
431         (find_what_p_points_to): Interpret NONLOCAL and ESCAPED the same
432         as ANYTHING.
433         (clobber_what_p_points_to): Remove.
434         (clobber_what_escaped): New function.
435         (init_base_vars): Init NONLOCAL and ESCAPED.
436         (do_sd_constraint): Do not propagate the solution from ESCAPED
437         but use ESCAPED as a placeholder.
438         (solve_graph): Likewise.
439         * tree-flow.h (clobber_what_p_points_to): Remove.
440         (clobber_what_escaped): Declare.
441         * tree-ssa-alias.c (set_initial_properties): Call it.
442         Remove code clobbering escaped pointers.
443
444 2008-06-27  Richard Sandiford  <rdsandiford@googlemail.com>
445
446         * function.c (allocate_struct_function): Only allocate a unique
447         funcdef_no if the decl is nonzero.
448
449 2008-06-27  Richard Sandiford  <rdsandiford@googlemail.com>
450
451         * config/mips/mips-protos.h (mips_split_const_insns): Declare.
452         * config/mips/mips.c (mips_split_const_insns): New function.
453         * config/mips/mips.md (move_type): New attribute.
454         (mode): Move attribute definition earlier in file.  Add "TI" and "TF".
455         (dword_mode): New attribute.
456         (type): Avoid long line.  Map "move_type"s to "type"s,
457         choosing "multi" for doubleword moves if appropriate.
458         Swap MTC/MFC comments to match their declaration order.
459         (extended_mips16): Default to "yes" if "move_type" is "sll0",
460         "type" is "branch" or "jal" is "direct".
461         (length): Handle "extended_mips16" first.  Make the default
462         "0" for "ghost" instructions.  Set the length from "move_type".
463         (truncdisi2, truncdihi2, truncdiqi2): Use "move_type" instead
464         of "type", with "sll0" for the register alternative.  Remove the
465         "extended_mips16" attribute.
466         (zero_extendsidi2, *clear_upper32): Use "move_type" instead
467         of "type", with "shift_shift" for the register alternative.
468         Remove the "length" attribute.
469         (*extend<SHORT:mode><GPR:mode>2, *extendqihi2): Likewise.
470         (*zero_extend<SHORT:mode><GPR:mode>2): Use "move_type" instead
471         of "type", with "andi" for the register alternative.
472         (*zero_extendqihi2): Likewise.
473         (*zero_extend<SHORT:mode><GPR:mode>2_mips16e): Use a "move_type"
474         of "andi" instead of a "type" of "arith".
475         (*zero_extend<SHORT:mode><GPR:mode>2_mips16): Use "move_type"
476         instead of "type".
477         (*zero_extendqihi2_mips16, mov_<load>l, mov_<load>r, mov_<store>l)
478         (mov_<store>r, *mov<mode>_ra): Likewise.
479         (extendsidi2): Use "move_type" instead of "type", with "move"
480         for the register alternative.
481         (*extend<SHORT:mode><GPR:mode>2_mips16e): Use "move_type" instead
482         of "type", with "signext" for the register alternative.
483         (*extend<SHORT:mode><GPR:mode>2_se<SHORT:size>): Likewise.
484         (*extendqihi2_mips16e, *extendqihi2_seb): Likewise.
485         (fix_truncdfsi2_insn, fix_truncsfsi2_insn, fix_truncdfdi2)
486         (fix_truncsfdi2, floatsidf2, floatdidf2, floatsisf2, floatdisf2)
487         (floatdisf2, *branch_equality<mode>_mips16): Likewise.
488         (unnamed branch insn): Likewise.
489         (*movdi_gp32_fp64): Fold into...
490         (*movdi_32bit): ...here.
491         (*movdf_hardfloat_64bit, *movdf_hardfloat_32bit): Combine into...
492         (*movdf_hardfloat): ...this new pattern.
493         (*movdf_softfloat): Remove redundant FPR alternatives.
494         (*movti, *movti_mips16, *movtf, *movtf_mips16): Add "mode" attributes.
495         (*movv2sf_hardfloat_64bit, *movv2sf_hardfloat_32bit): Combine into...
496         (*movv2sf): ...this new pattern.  Use "DF" rather than "SF" for
497         the "move" attribute.
498         (*movdi_32bit): Use "move_type" instead of "type" and remove the
499         "length" attribute.  Use "fpload" and "fpstore" instead of "load"
500         and "store" for COP loads and stores.
501         (*movdi_32bit_mips16, *movdi_64bit, *movsi_internal, movcc)
502         (*movhi_internal, *movhi_mips16, *movqi_internal, *movqi_mips16)
503         (*movsf_hardfloat, *movsf_softfloat, *movsi_mips16, *movdf_hardfloat)
504         (*movdf_softfloat, *movdf_mips16, *movti, *movti_mips16, *movtf)
505         (*movtf_mips16, *movv2sf): Likewise.
506         (mfhi<GPR:mode>_<HILO:mode>, mflo<GPR:mode>_<HILO:mode>)
507         (load_low<mode>, load_high<mode>, store_word<mode>, mthc1<mode>)
508         (mfhc1<mode>): Use "move_type" instead of "move".
509         (*low<mode>_mips16): Use "extended_mips16" instead of "length".
510         (loadgp_blockage): Remove the "length" attribute.
511         (blockage, set_got_version, update_got_version): Likewise.
512         (call_internal): Remove the "extended_mips16" attribute.
513         (call_value_internal, call_value_multiple_internal): Likewise.
514         * config/mips/loongson.md (mov<mode>_internal): Use "move_type"
515         instead of "move".
516         * config/mips/mips-dsp.md (mips_lbux, mips_lhx, mips_lwx): Remove
517         the "length" attribute.
518
519 2008-06-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
520
521         * c-format.c (handle_format_attribute): Fix -Wc++-compat and/or
522         -Wcast-qual warnings.
523         * c-pragma.c (dpm_eq, handle_pragma_push_macro,
524         handle_pragma_pop_macro): Likewise.
525         * collect2.c (resolve_lib_name): Likewise.
526         * config/arc/arc.c (arc_init): Likewise.
527         * config/arm/arm.c (neon_builtin_compare,
528         locate_neon_builtin_icode): Likewise.
529         * config/arm/pe.c (arm_mark_dllexport, arm_pe_unique_section): Likewise.
530         * config/bfin/bfin.c (bfin_init_machine_status,
531         bfin_optimize_loop): Likewise.
532         * config/bfin/bfin.h (TARGET_CPU_CPP_BUILTINS): Likewise.
533         * config/cris/cris.c (cris_init_expanders): Likewise.
534         * config/darwin-c.c (frameworks_in_use, add_framework): Likewise.
535         * config/darwin.c (machopic_indirection_eq,
536         machopic_indirection_name, machopic_output_indirection): Likewise.
537         * config/frv/frv.c (frv_init_machine_status, frv_compare_insns,
538         frv_io_check_address, frv_io_handle_set, frv_io_handle_use_1,
539         frv_optimize_membar): Likewise.
540         * config/i386/cygwin.h (mingw_scan,
541         GCC_DRIVER_HOST_INITIALIZATION): Likewise.
542         * config/i386/cygwin1.c (mingw_scan): Likewise.
543         * config/i386/i386.c (machopic_output_stub): Likewise.
544         * config/i386/winnt.c (gen_stdcall_or_fastcall_suffix,
545         i386_pe_unique_section): Likewise.
546         * config/ia64/ia64.c (ia64_init_machine_status,
547         ia64_h_i_d_extended, get_free_bundle_state, bundling, ia64_reorg):
548         Likewise.
549         * config/iq2000/iq2000.c, iq2000_init_machine_status): Likewise.
550         * config/m68hc11/m68hc11.c (m68hc11_encode_label): Likewise.
551         * config/m68k/m68k.c (m68k_handle_option,
552         m68k_sched_md_init_global): Likewise.
553         * config/mcore/mcore.c (mcore_mark_dllexport, mcore_mark_dllimport,
554         mcore_unique_section): Likewise.
555         * config/mips/mips.c (mips_block_move_straight,
556         mips16_rewrite_pool_refs, mips_sim_wait_regs_2, mips_sim_record_set):
557         Likewise.
558         * config/mmix/mmix.c (mmix_init_machine_status,
559         mmix_encode_section_info): Likewise.
560         * config/pa/pa.c (pa_init_machine_status, hppa_encode_label): Likewise.
561         * config/rs6000/rs6000.c (rs6000_init_machine_status,
562         print_operand_address, output_toc, redefine_groups,
563         rs6000_elf_encode_section_info, machopic_output_stub): Likewise.
564         * config/s390/s390.c (s390_init_machine_status): Likewise.
565         * config/score/score.c (score_block_move_straight,
566         score_block_move_loop_body): Likewise.
567         * config/sparc/sparc.c (sparc_init_machine_status): Likewise.
568         * config/xtensa/xtensa.c (xtensa_init_machine_status): Likewise.
569         * emit-rtl.c (find_auto_inc): Likewise.
570         * gcc.c (translate_options, process_command): Likewise.
571         * reorg.c (dbr_schedule): Likewise.
572         * sdbout.c (sdbout_start_source_file, sdbout_init): Likewise.
573         * xcoffout.c (xcoffout_declare_function): Likewise.
574
575 2008-06-27  Daniel Berlin  <dberlin@dberlin.org>
576
577         * tree-ssa-structalias.c (find_func_aliases): Trivial fix to get
578         ipa-pta working again.
579
580 2008-06-27  David Edelsohn  <edelsohn@gnu.org>
581
582         * config/rs6000/t-aix52: Append large data option to LDFLAGS for
583         genautomata.
584
585 2008-06-27  Edmar Wienskoski  <edmar@freescale.com>
586
587         * config.gcc (powerpc*-*-*): Add new core e500mc.
588         * config/rs6000/e500mc.md: New file.
589         * config/rs6000/rs6000.c (processor_costs): Add new costs for
590         e500mc.
591         (rs6000_override_options): Add e500mc case to
592         processor_target_table. Altivec and Spe options not allowed
593         with e500mc. Add isel instruction to e500mc by
594         default. Initialize rs6000_cost for e500mc.
595         (rs6000_issue_rate): Set issue rate for e500mc.
596         * config/rs6000/rs6000.h (processor_type): Add
597         PROCESSOR_PPCE500MC.
598         (ASM_CPU_SPEC): Add e500mc.
599         Set TARGET_ISEL to rs6000_isel.
600         * config/rs6000/e500.h: Remove redefinition of TARGET_ISEL.
601         (CHECK_E500_OPTIONS): Remove TARGET_ISEL.
602         * config/rs6000/rs6000.md (define_attr "cpu"): Add ppce500mc.
603         Include e500mc.md.
604         * doc/invoke.texi: Add e500mc to list of cpus.
605
606 2008-06-27  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
607
608         PR c/34867
609         * c-lex.c (lex_charconst): Initialize unsignedp.
610
611 2008-06-27  Olivier Hainque  <hainque@adacore.com>
612
613         * gimplify.c (gimplify_modify_expr_to_memset): Assert our
614         documented assumptions.
615
616 2008-06-26  H.J. Lu  <hongjiu.lu@intel.com>
617
618         * dwarf2out.c: Remove trailing white spaces.  Break long line
619         in comments.
620
621 2008-06-26  Richard Sandiford  <rdsandiford@googlemail.com>
622
623         * libfuncs.h (LTI_synchronize): New libfunc_index.
624         (synchronize_libfunc): Declare.
625         * builtins.c (expand_builtin_synchronize): Consider using
626         synchronize_libfunc before falling back on an asm blockage.
627         * config/mips/mips.c: Include libfuncs.h
628         (mips_init_libfuncs): Initialize synchronize_libfunc for TARGET_MIPS16.
629
630 2008-06-26  Nathan Froyd  <froydnj@codesourcery.com>
631
632         * config/rs6000/rs6000.c (emit_allocate_stack): Add copy_r11
633         parameter.  Copy stack_reg to r11 where appropriate.
634         (no_global_regs_above): Add gpr parameter.
635         (rs6000_stack_info): Only add padding for SPE save area if we
636         are saving SPE GPRs and CR.
637         (saveres_routine_syms): New variable.
638         (FIRST_SAVRES_REGISTER, LAST_SAVRES_REGISTER, N_SAVRES_REGISTERS):
639         Define.
640         (rs6000_savres_routine_sym): New function.
641         (rs6000_emit_stack_reset, rs6000_restore_saved_cr): New functions,
642         split out of...
643         (rs6000_emit_epilogue): ...here.  Use rs6000_use_multiple_p and
644         rs6000_savres_strategy.  Restore GPRs out-of-line if appropriate.
645         Tweak FPR out-of-line saving.
646         (rs6000_make_savres_rtx): New function.
647         (rs6000_use_multiple_p): New function.
648         (rs6000_savres_strategy): New function.
649         (rs6000_emit_prologue): Use rs6000_savres_strategy.  Save GPRs
650         out-of-line if appropriate.
651         * config/rs6000/sysv4.h (FP_SAVE_INLINE): Save FPRs out-of-line
652         if we are optimizing for size.
653         (GP_SAVE_INLINE): Define.
654         (SAVE_FP_SUFFIX, RESTORE_FP_SUFFIX): Only use _l on 64-bit targets.
655         * config/rs6000/darwin.h (GP_SAVE_INLINE): Define.
656         * config/rs6000/aix.h (GP_SAVE_INLINE): Define.
657         * config/rs6000/rs6000.md (*save_gpregs_<mode>): New insn.
658         (*save_fpregs_<mode>): Add use of r11.
659         (*restore_gpregs_<mode>): New insn.
660         (*return_and_restore_gpregs_<mode>): New insn.
661         (*return_and_restore_fpregs_<mode>): Adjust to clobber LR and
662         use r11.
663         * config/rs6000/spe.md (*save_gpregs_spe): New insn.
664         (*restore_gpregs_spe): New insn.
665         (*return_and_restore_gpregs_spe): New insn.
666         * config/rs6000/predicates.md (save_world_operation): Fix check.
667
668 2008-06-26  Steven Bosscher  <steven@gcc.gnu.org>
669
670         * tree-into-ssa (insert_phi_nodes_for): 'var' must be a DECL at
671         this point, so assert that.
672
673 2008-06-26  Steven Bosscher  <steven@gcc.gnu.org>
674
675         * cfganal.c: Include vec.h and vecprim.h.
676         (compute_idf): Import from...
677         * tree-into-ssa (compute_idf): ...here.
678         * basic-block.h (compute_idf): Export.
679
680 2008-06-26  Joseph Myers  <joseph@codesourcery.com>
681
682         * c-decl.c (merge_decls): Use !current_function_decl to check for
683         extern declaration of C99 inline function being at file scope.
684
685 2008-06-25  John David Anglin  <dave.anglin@gcc-cnrc.gc.ca>
686
687         * config.gcc (hppa[12]*-*-hpux10*): Don't use fixproto.
688
689 2008-06-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
690
691         * alias.c (record_alias_subset, init_alias_analysis): Fix
692         -Wc++-compat and/or -Wcast-qual warnings.
693         * attribs.c (lookup_attribute_spec): Likewise.
694         * bb-reorder.c (find_traces, rotate_loop, find_traces_1_round,
695         copy_bb, connect_traces,
696         find_rarely_executed_basic_blocks_and_cr): Likewise.
697         * bt-load.c (find_btr_def_group, add_btr_def, new_btr_user,
698         note_btr_set, migrate_btr_defs): Likewise.
699         * builtins.c (result_vector, expand_builtin_memcpy,
700         expand_builtin_mempcpy_args, expand_builtin_strncpy,
701         builtin_memset_read_str, expand_builtin_printf,
702         fold_builtin_memchr, rewrite_call_expr, fold_builtin_printf):
703         Likewise.
704         * caller-save.c (mark_set_regs): Likewise.
705         * calls.c (expand_call, emit_library_call_value_1): Likewise.
706         * cgraph.c (cgraph_edge): Likewise.
707         * combine.c (likely_spilled_retval_1): Likewise.
708         * coverage.c (htab_counts_entry_hash, htab_counts_entry_eq,
709         htab_counts_entry_del, get_coverage_counts): Likewise.
710         * cselib.c (new_elt_list, new_elt_loc_list, entry_and_rtx_equal_p,
711         new_cselib_val): Likewise.
712         * dbgcnt.c (dbg_cnt_process_opt): Likewise.
713         * dbxout.c (dbxout_init, dbxout_type, output_used_types_helper):
714         Likewise.
715         * df-core.c (df_compact_blocks): Likewise.
716         * df-problems.c (df_grow_bb_info, df_chain_create): Likewise.
717         * df-scan.c (df_grow_reg_info, df_ref_create,
718         df_insn_create_insn_record, df_insn_rescan, df_notes_rescan,
719         df_ref_compare, df_ref_create_structure, df_bb_refs_record,
720         df_record_entry_block_defs, df_record_exit_block_uses,
721         df_bb_verify): Likewise.
722         * df.h (DF_REF_EXTRACT_WIDTH_CONST, DF_REF_EXTRACT_OFFSET_CONST,
723         DF_REF_EXTRACT_MODE_CONST): New.
724         * dominance.c (get_immediate_dominator, get_dominated_by,
725         nearest_common_dominator, root_of_dom_tree,
726         iterate_fix_dominators, first_dom_son, next_dom_son): Fix
727         -Wc++-compat and/or -Wcast-qual warnings.
728         * dse.c (clear_alias_set_lookup, get_group_info, gen_rtx_MEM,
729         record_store, replace_read, check_mem_read_rtx, scan_insn,
730         dse_step1, dse_record_singleton_alias_set): Likewise.
731         * dwarf2asm.c (dw2_force_const_mem): Likewise.
732
733 2008-06-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
734
735         * dwarf2out.c (new_cfi, queue_reg_save, dwarf2out_begin_prologue,
736         dwarf2out_frame_init, new_loc_descr, new_die, lookup_decl_die,
737         lookup_decl_loc, add_var_loc_to_decl, compute_section_prefix,
738         assign_symbol_names, htab_cu_hash, htab_cu_eq, htab_cu_del,
739         build_abbrev_table, new_loc_list, output_comp_unit, add_arange,
740         add_ranges_num, add_ranges_by_labels, file_info_cmp,
741         file_name_acquire, output_file_names, add_const_value_attribute,
742         premark_used_types_helper, file_table_eq, file_table_hash,
743         lookup_filename, dwarf2out_var_location, dwarf2out_source_line,
744         dwarf2out_init, file_table_relative_p): Fix -Wc++-compat and/or
745         -Wcast-qual warnings.
746         * ebitmap.c (ebitmap_array_grow, ebitmap_array_init,
747         ebitmap_alloc, ebitmap_ior, ebitmap_and_compl): Likewise.
748         * emit-rtl.c (get_mem_attrs, get_reg_attrs, gen_rtvec,
749         gen_reg_rtx, start_sequence, init_emit): Likewise.
750         * et-forest.c (et_new_occ, et_new_tree): Likewise.
751         * except.c (init_eh_for_function, gen_eh_region,
752         remove_unreachable_regions, add_ehl_entry, duplicate_eh_regions_1,
753         arh_to_landing_pad, arh_to_label, add_action_record,
754         add_call_site, switch_to_exception_section): Likewise.
755         * expmed.c (synth_mult): Likewise.
756         * expr.c (gen_group_rtx, emit_group_load, emit_group_store,
757         store_expr): Likewise.
758         * final.c (shorten_branches, final_scan_insn, debug_queue_symbol):
759         Likewise.
760         * function.c (assign_stack_temp_for_type,
761         allocate_struct_function, match_asm_constraints_1): Likewise.
762         * gcov-io.c (gcov_allocate): Likewise.
763         * gcse.c (GNEW, GCNEW, GNEWVEC, GCNEWVEC, GRESIZEVEC, GNEWVAR,
764         GCNEWVAR, GRESIZEVAR, GOBNEW, GOBNEWVAR): New.
765         (gcse_main, alloc_gcse_mem, alloc_gcse_mem, alloc_reg_set_mem,
766         record_one_set, insert_expr_in_table, insert_set_in_table,
767         dump_hash_table, compute_hash_table_work, alloc_hash_table,
768         pre_ldst_expr_hash, pre_ldst_expr_eq, find_rtx_in_ldst,
769         reg_set_info, reg_clear_last_set): Fix -Wc++-compat and/or
770         -Wcast-qual warnings.
771
772 2008-06-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
773
774         * cse.c (approx_reg_cost_1, cse_insn): Fix -Wc++-compat and/or
775         -Wcast-qual warnings.
776         * gcc.c (process_command): Likewise.
777         * genattrtab.c (oballoc): Use XOBNEW.
778         (oballocvec): Define.
779         (attr_hash_add_rtx, attr_hash_add_string, attr_string,
780         get_attr_value, fill_attr, make_length_attrs, gen_attr, gen_insn,
781         gen_delay, find_attr, gen_insn_reserv, gen_bypass_1): Fix
782         -Wc++-compat and/or -Wcast-qual warnings.
783         * genautomata.c (XCREATENODE, XCREATENODEVEC, XCREATENODEVAR,
784         XCOPYNODE, XCOPYNODEVEC, XCOPYNODEVAR): New.
785         (gen_cpu_unit, gen_query_cpu_unit, gen_bypass, gen_excl_set,
786         gen_presence_absence_set, gen_automaton, gen_regexp_el,
787         gen_regexp_repeat, gen_regexp_allof, gen_regexp_oneof,
788         gen_regexp_sequence, gen_reserv, gen_insn_reserv, process_excls,
789         add_excls, process_presence_absence_names,
790         process_presence_absence_patterns, add_presence_absence,
791         process_regexp, add_advance_cycle_insn_decl, get_free_alt_state,
792         get_free_state, add_arc, get_free_automata_list_el,
793         form_reserv_sets_list, copy_insn_regexp, transform_1, transform_2,
794         transform_3, cache_presence, create_ainsns, create_automata,
795         create_state_ainsn_table, dfa_insn_code_enlarge,
796         output_trans_func, output_min_issue_delay_func,
797         output_dead_lock_func, output_reset_func,
798         output_get_cpu_unit_code_func, output_dfa_start_func,
799         expand_automata): Likewise.
800         * genextract.c (gen_insn): Likewise.
801         * gengtype-lex.l: Likewise.
802         * gengtype.c (read_input_list, adjust_field_type,
803         process_gc_options): Likewise.
804         * genoutput.c (note_constraint): Likewise.
805         * genpreds.c (mangle, add_constraint): Likewise.
806         * genrecog.c (process_define_predicate, new_decision,
807         add_to_sequence): Likewise.
808         * gensupport.c (record_insn_name): Likewise.
809
810 2008-06-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
811
812         * config/i386/driver-i386.c (detect_caches_amd,
813         detect_caches_intel, host_detect_local_cpu): Fix -Wc++-compat
814         and/or -Wcast-qual warnings.
815         *ggc-common.c (ggc_mark_roots, gt_pch_note_object,
816         gt_pch_note_reorder, relocate_ptrs, write_pch_globals,
817         gt_pch_save): Likewise.
818         * ggc-page.c (push_depth, push_by_depth, alloc_anon, alloc_page,
819         gt_ggc_m_S, clear_marks, ggc_pch_read): Likewise.
820         * global.c (compute_regsets): Likewise.
821         * graph.c (print_rtl_graph_with_bb, clean_graph_dump_file,
822         finish_graph_dump_file): Likewise.
823         * haifa-sched.c (schedule_block, extend_h_i_d, extend_ready,
824         unlink_bb_notes): Likewise.
825         * integrate.c (get_hard_reg_initial_val): Likewise.
826         * ipa-prop.c (ipa_push_func_to_list): Likewise.
827         * ipa-struct-reorg.c (gen_var_name, gen_cluster_name): Likewise.
828         * local-alloc.c (update_equiv_regs): Likewise.
829         * loop-invariant.c (check_invariant_table_size,
830         hash_invariant_expr, eq_invariant_expr, find_or_insert_inv):
831         Likewise.
832         * loop-iv.c (check_iv_ref_table_size, analyzed_for_bivness_p,
833         altered_reg_used, mark_altered): Likewise.
834         * loop-unroll.c (si_info_eq, ve_info_eq, allocate_basic_variable,
835         insert_var_expansion_initialization,
836         combine_var_copies_in_loop_exit, apply_opt_in_copies,
837         release_var_copies): Likewise.
838         * matrix-reorg.c (mat_acc_phi_hash, mat_acc_phi_eq, mtt_info_eq,
839         analyze_matrix_decl, add_allocation_site, analyze_transpose,
840         analyze_accesses_for_phi_node, check_var_notmodified_p,
841         check_allocation_function, find_sites_in_func,
842         record_all_accesses_in_func, transform_access_sites,
843         transform_allocation_sites): Likewise.
844         * omp-low.c (new_omp_region, create_omp_child_function_name,
845         check_omp_nesting_restrictions, check_combined_parallel,
846         lower_omp_2, diagnose_sb_1, diagnose_sb_2): Likewise.
847         * optabs.c (no_conflict_move_test, gen_libfunc, gen_fp_libfunc,
848         gen_intv_fp_libfunc, gen_interclass_conv_libfunc,
849         gen_intraclass_conv_libfunc, set_optab_libfunc, set_conv_libfunc):
850         Likewise.
851         * opts-common.c (prune_options): Likewise.
852         * opts.c (add_input_filename, print_filtered_help,
853         get_option_state): Likewise.
854         * params.c (add_params): Likewise.
855         * passes.c (set_pass_for_id, next_pass_1,
856         do_per_function_toporder, pass_fini_dump_file): Likewise.
857         * postreload.c (reload_cse_simplify_operands): Likewise.
858         * predict.c (tree_predicted_by_p, tree_predict_edge,
859         clear_bb_predictions, combine_predictions_for_bb): Likewise.
860
861 2008-06-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
862
863         * ra.h (add_neighbor): Fix -Wc++-compat and/or -Wcast-qual
864         warnings.
865         * recog.c (check_asm_operands, validate_change_1): Likewise.
866         * reg-stack.c (check_asm_stack_operands, subst_asm_stack_regs,
867         subst_asm_stack_regs): Likewise.
868         * regclass.c (regclass, som_hash, som_eq, record_subregs_of_mode,
869         cannot_change_mode_set_regs, invalid_mode_change_p): Likewise.
870         * regmove.c (reg_is_remote_constant_p): Likewise.
871         * regrename.c (regrename_optimize, scan_rtx_reg,
872         kill_clobbered_value, kill_set_value, kill_autoinc_value):
873         Likewise.
874         * regstat.c (regstat_init_n_sets_and_refs, regstat_compute_ri,
875         regstat_compute_calls_crossed): Likewise.
876         * reload1.c (init_reload, new_insn_chain,
877         has_nonexceptional_receiver, reload, copy_reloads,
878         calculate_needs_all_insns, init_elim_table): Likewise.
879         * rtl-factoring.c (compute_rtx_cost, fill_hash_bucket): Likewise.
880         * rtl.c (shallow_copy_rtx_stat): Likewise.
881         * rtlanal.c (parms_set): Likewise.
882         * sbitmap.c (sbitmap_alloc, sbitmap_alloc_with_popcount,
883         sbitmap_resize, sbitmap_vector_alloc): Likewise.
884         * sched-ebb.c (earliest_block_with_similiar_load,
885         add_deps_for_risky_insns): Likewise.
886         * sched-rgn.c (find_rgns, gather_region_statistics, extend_rgns,
887         schedule_region): Likewise.
888         * see.c (eq_descriptor_pre_extension,
889         hash_descriptor_pre_extension, hash_del_pre_extension,
890         eq_descriptor_properties, hash_descriptor_properties,
891         hash_del_properties, see_seek_pre_extension_expr,
892         see_initialize_data_structures, see_print_register_properties,
893         see_print_pre_extension_expr, see_delete_merged_def_extension,
894         see_delete_unmerged_def_extension, see_emit_use_extension,
895         see_pre_delete_extension, see_map_extension, see_commit_changes,
896         see_analyze_merged_def_local_prop,
897         see_analyze_merged_def_local_prop,
898         see_analyze_unmerged_def_local_prop, see_analyze_use_local_prop,
899         see_set_prop_merged_def, see_set_prop_unmerged_def,
900         see_set_prop_unmerged_use, see_print_one_extension,
901         see_merge_one_use_extension, see_merge_one_def_extension,
902         see_store_reference_and_extension, see_update_uses_relevancy,
903         see_update_defs_relevancy): Likewise.
904         * statistics.c (hash_statistics_hash, hash_statistics_eq,
905         hash_statistics_free, curr_statistics_hash): Likewise.
906         * stmt.c (parse_output_constraint, decl_overlaps_hard_reg_set_p,
907         expand_asm_operands, expand_return, case_bit_test_cmp,
908         expand_case): Likewise.
909         * stor-layout.c (start_record_layout): Likewise.
910         * stringpool.c (ggc_alloc_string, gt_pch_n_S,
911         gt_pch_save_stringpool): Likewise.
912         * tree-data-ref.c (hash_stmt_vertex_info,
913         have_similar_memory_accesses_1, ref_base_address_1): Likewise.
914         * tree-ssa-phiopt.c (name_to_bb_hash): Likewise.
915
916 2008-06-25  Uros Bizjak  <ubizjak@gmail.com>
917
918         PR target/36627
919         * config/i386/i386.md : Change constraints of HImode and QImode
920         immediate operands from "i" to "n".  Change SImode "ni" constraint to
921         "i" and SImode "rmi" constraint to "g".  Remove all constraints
922         from const0_operand and const1_operand predicated operands.
923         (i): Change QImode and HImode attribute from "i" to "n".
924         (*subqi_2): Change HImode operands to QImode.
925         (*subqi_3): Ditto.
926
927 2008-06-25  Olivier Hainque  <hainque@adacore.com>
928
929         * Makefile.in (GTFILES_H): Use | instead of ; as separator in
930         sed substitutions.
931
932 2008-06-25  Richard Guenther  <rguenther@suse.de>
933
934         * tree-ssa-structalias.c (fieldoff_compare): Make sure to
935         not overflow the result type.
936
937 2008-06-25  Richard Guenther  <rguenther@suse.de>
938
939         * tree-vn.c (vn_add): Handle TRUTH_*_EXPR.
940         (vn_lookup): Likewise.
941
942 2008-06-25  Richard Guenther  <rguenther@suse.de>
943
944         PR tree-optimization/35518
945         * fold-const.c (fold_ternary): Strip trivial BIT_FIELD_REFs.
946         * tree-sra.c (instantiate_element): Use fold_build3 to build
947         BIT_FIELD_REFs.
948         (try_instantiate_multiple_fields): Likewise.
949
950 2008-06-24  Andrew Pinski  <andrew_pinski@playstation.sony.com>
951
952         * config/rs6000/rs6000.md: Change all string instruction's clobber to
953         be early clobbers.
954
955 2008-06-24  Andrew Pinski  <andrew_pinski@playstation.sony.com>
956
957         * config/rs6000/rs6000.c (rs6000_emit_epilogue): Set
958         use_backchain_to_restore_sp to true
959         if the offset of the link register save area would go over the 32k - 1
960         offset limit of the load
961         instructions.
962
963 2008-06-25  Hans-Peter Nilsson  <hp@axis.com>
964
965         * doc/invoke.texi (Optimize Options) <fstrict-aliasing>: Add
966         anchor for the type-punning blurb.  Cross-reference "Structures
967         unions enumerations and bit-fields implementation".  Provide a
968         cast-through-pointer example.  Make final sentence self-contained.
969         * doc/implement-c.texi (Structures unions enumerations and
970         bit-fields implementation): Cross-reference the type-punning blurb
971         in the -fstrict-aliasing documentation.
972
973 2008-06-24  Andrew Pinski  <andrew_pinski@playstation.sony.com>
974
975         PR middle-end/36594
976         * builtins.c (expand_builtin_nonlocal_goto): Stabilize the address of
977         the memory instead of the memory itself for the save area.
978
979 2008-06-24  Olivier Hainque  <hainque@adacore.com>
980             Nicolas Roche  <roche@adacore.com>
981
982         * gengtype.c (srcdir_len): size_t instead of int.
983         (get_file_realbasename): New function.  For F a filename, the real
984         basename of F, with all the path components stripped.
985         (get_file_srcdir_relative_path): New function.  For F a filename, the
986         relative path to F from $(srcdir).
987         (get_file_basename): Rewrite using get_file_srcdir_relative_path and
988         get_file_realbasename.  Adjust the head comment.
989         (get_prefix_langdir_index): New function. For F a filename, return the
990         lang_dir_names[] relative index of the language directory that is
991         a prefix in F.
992         (get_file_langdir): For F a filename, return the name of the language
993         directory where F is located.
994         (get_file_gtfilename): New function. The gt- output file name for an
995         input filename F.
996         (get_output_file_with_visibility): Replace in-line computations with
997         uses of get_file_gtfilename and get_prefix_langdir_index.
998         * Makefile.in (GTFILES_H): Adjust to match what gengtype generates.
999
1000 2008-06-24  Jakub Jelinek  <jakub@redhat.com>
1001
1002         PR tree-optimization/36504
1003         * tree-ssa-loop-prefetch.c (gather_memory_references_ref): Skip
1004         references without base address.
1005
1006 2008-06-23  Uros Bizjak  <ubizjak@gmail.com>
1007
1008         PR middle-end/36584
1009         * calls.c (expand_call): Increase alignment for recursive functions.
1010
1011 2008-06-23  Anatoly Sokolov  <aesok@post.ru>
1012
1013         * config/avr/avr.c (avr_function_value): Add new 'outgoing' argument.
1014         (TARGET_FUNCTION_VALUE): New define.
1015         * config/avr/avr-protos.h (avr_function_value): Remove declaration.
1016         * config/avr/avr.h (FUNCTION_VALUE): Remove.
1017
1018 2008-06-23  Uros Bizjak  <ubizjak@gmail.com>
1019
1020         * config/i386/i386.md (fmodxf3): Change sequence of move instructions.
1021         (fmod<mode>3): Ditto.
1022         (remainderxf3): Ditto.
1023         (remainder<mode>3): Ditto.
1024
1025 2008-06-23  Jakub Jelinek  <jakub@redhat.com>
1026
1027         PR target/36533
1028         * emit-rtl.c (set_reg_attrs_from_value): Do nothing if
1029         REG is a hard register.
1030
1031         PR tree-optimization/36508
1032         * tree-ssa-pre.c (compute_antic): Allow num_iterations up to
1033         499, don't check it at all in release compilers.
1034
1035 2008-06-23  Uros Bizjak  <ubizjak@gmail.com>
1036
1037         * config/i386/i386.md (*fop_<mode>_1_i387): Use SSE_FLOAT_MODE_P
1038         together with SSE_TARGET_MATH to disable insn pattern.
1039         (*fop_<MODEF:mode>_2_i387): Ditto.
1040         (*fop_<MODEF:mode>_3_i387): Ditto.
1041
1042 2008-06-22  Andy Hutchinson  <hutchinsonandy@aim.com>
1043
1044         * config/avr/avr.h (SUPPORTS_INIT_PRIORITY): Define.
1045         
1046 2008-06-22  Laurynas Biveinis  <laurynas.biveinis@gmail.com>
1047
1048         PR middle-end/34906
1049         * gimplify.c (gimplify_asm_expr): Check the return code of
1050         parse_output_constraint call, set function return and is_inout
1051         value if it failed.
1052
1053 2008-06-22  Ian Lance Taylor  <iant@google.com>
1054
1055         * c-lex.c (narrowest_unsigned_type): Change itk to int.
1056         (narrowest_signed_type): Likewise.
1057         * c-typeck.c (c_common_type): Change local variable mclass to enum
1058         mode_class, twice.
1059         (parser_build_binary_op): Compare the TREE_CODE_CLASS with
1060         tcc_comparison, not the tree code itself.
1061         * c-common.c (def_fn_type): Pass int, not an enum, to va_arg.
1062         (c_expand_expr): Cast modifier to enum expand_modifier.
1063         * c-common.h (C_RID_CODE): Add casts.
1064         (C_SET_RID_CODE): Define.
1065         * c-parser.c (c_parse_init): Use C_SET_RID_CODE.
1066         (c_lex_one_token): Add cast to avoid warning.
1067         (c_parser_objc_type_name): Rename local typename to type_name.
1068         (check_no_duplicate_clause): Change code parameter to enum
1069         omp_clause_code.
1070         (c_parser_omp_var_list_parens): Change kind parameter to enum
1071         omp_clause_code.
1072         (c_parser_omp_flush): Pass OMP_CLAUSE_ERROR, not 0, to
1073         c_parser_omp_list_var_parens.
1074         (c_parser_omp_threadprivate): Likewise.
1075         * cp/lex.c (init_reswords): Use C_SET_RID_CODE.
1076         * cp/parser.c (cp_lexer_get_preprocessor_token): Likewise.
1077         * c-format.c (NO_FMT): Define.
1078         (printf_length_specs): Use NO_FMT.
1079         (asm_fprintf_length_specs): Likewise.
1080         (gcc_diag_length_specs): Likewise.
1081         (scanf_length_specs): Likewise.
1082         (strfmon_length_specs): Likewise.
1083         (gcc_gfc_length_specs): Likewise.
1084         (printf_flag_specs): Change 0 to STD_C89.
1085         (asm_fprintf_flag_specs): Likewise.
1086         (gcc_diag_flag_specs): Likewise.
1087         (gcc_cxxdiag_flag_specs): Likewise.
1088         (scanf_flag_specs): Likewise.
1089         (strftime_flag_specs): Likewise.
1090         (strfmon_flag_specs): Likewise.
1091         (print_char_table): Likewise.
1092         (asm_fprintf_char_table): Likewise.
1093         (gcc_diag_char_table): Likewise.
1094         (gcc_tdiag_char_table): Likewise.
1095         (gcc_cdiag_char_table): Likewise.
1096         (gcc_cxxdiag_char_table): Likewise.
1097         (gcc_gfc_char_table): Likewise.
1098         (scan_char_table): Likewise.
1099         (time_char_table): Likewis.
1100         (monetary_char_table): Likewise.
1101         * c-format.h (BADLEN): Likewise.
1102
1103 2008-06-21  Ian Lance Taylor  <iant@google.com>
1104
1105         * tree.h (enum tree_code): Include all-tree.def, not tree.def.
1106         Define END_OF_BASE_TREE_CODES around inclusion.
1107         * tree.c (tree_code_type): New global array.
1108         (tree_code_length, tree_code_name): Likewise.
1109         * Makefile.in (TREE_H): Add all-tree.def, c-common.def, and
1110         $(lang_tree_files).
1111         (all-tree.def, s-alltree): New targets.
1112         (gencheck.h, s-gencheck): Remove.
1113         (tree.o): Depend upon all-tree.def.
1114         (build/gencheck.o): Remove gencheck.h dependency.
1115         (mostlyclean): Don't remove gencheck.h.
1116         * c-common.h (enum c_tree_code): Remove.
1117         * c-lang.c (tree_code_type): Remove.
1118         (tree_code_length, tree_code_name): Remove.
1119         * gencheck.c (tree_codes): Include all-tree.def, rather than
1120         tree.def, c-common.def, and gencheck.h.  Undefined DEFTREECODE
1121         after it is used.
1122         * tree-browser.c (tb_tree_codes): Include all-tree.def, rather
1123         than tree.def.
1124         * cp/cp-tree.h (enum cplus_tree_code): Remove.
1125         (operator_name_info): Size to MAX_TREE_CODES.
1126         (assignment_operator_name_info): Likewise.
1127         * cp/cp-lang.c (tree_code_type): Remove.
1128         (tree_code_length, tree_code_name): Remove.
1129         * cp/lex.c (operator_name_info): Size to MAX_TREE_CODES.
1130         (assignment_operator_name_info): Likewise.
1131         * cp/decl.c (grok_op_properties): Change LAST_CPLUS_TREE_CODE to
1132         MAX_TREE_CODES.
1133         * cp/mangle.c (write_expression): Likewise.
1134         * cp/Make-lang.in (CXX_TREE_H): Remove cp/cp-tree.def.
1135         * fortran/f95-lang.c (tree_code_type): Remove.
1136         (tree_code_length, tree_code_name): Remove.
1137         * java/java-tree.h (enum java_tree_code): Remove.
1138         * java/lang.c (tree_code_type): Remove.
1139         (tree_code_length, tree_code_name): Remove.
1140         * java/Make-lang.in (JAVA_TREE_H): Remove java/java-tree.def.
1141         * objc/objc-act.h (enum objc_tree_code): Remove.
1142         * objc/objc-lang.c (tree_code_type): Remove.
1143         (tree_code_length, tree_code_name): Remove.
1144         * objcp/objcp-lang.c (tree_code_type): Remove.
1145         (tree_code_length, tree_code_name): Remove.
1146         * ada/ada-tree.h (enum gnat_tree_code): Remove.
1147         * ada/Make-lang.in (ADA_TREE_H): Remove ada/ada-tre.def.
1148         * ada/misc.c (tree_code_type): Remove.
1149         (tree_code_length, tree_code_name): Remove.
1150
1151 2008-06-21  Bernhard Fischer  <aldot@gcc.gnu.org>
1152
1153         * tree-ssa-pre.c (fini_antic): Bitmap_sets have to be freed before
1154         the grand_bitmap_obstack.
1155
1156 2008-06-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1157
1158         * ggc.h (GGC_RESIZEVAR): New, reorder macros.
1159         * tracer.c (tail_duplicate): Fix for -Wc++-compat.
1160         * tree-affine.c (aff_combination_expand, free_name_expansion): Likewise.
1161         * tree-cfg.c (replace_by_duplicate_decl, replace_ssa_name,
1162         move_stmt_r, new_label_mapper): Likewise.
1163         * tree-complex.c (cvc_lookup): Likewise.
1164         * tree-dfa.c (create_function_ann): Likewise.
1165         * tree-dump.c (dump_register): Likewise.
1166         * tree-if-conv.c (tree_if_conversion, add_to_predicate_list,
1167         find_phi_replacement_condition): Likewise.
1168         * tree-inline.c (copy_phis_for_bb, estimate_num_insns_1,
1169         tree_function_versioning): Likewise.
1170         * tree-into-ssa.c (cmp_dfsnum): Likewise.
1171         * tree-iterator.c (tsi_link_before, tsi_link_after): Likewise.
1172         * tree-nested.c (lookup_field_for_decl, lookup_tramp_for_decl,
1173         get_nonlocal_debug_decl, convert_nonlocal_reference,
1174         convert_nonlocal_omp_clauses, get_local_debug_decl,
1175         convert_local_reference, convert_local_omp_clauses,
1176         convert_nl_goto_reference, convert_nl_goto_receiver,
1177         convert_tramp_reference, convert_call_expr): Likewise.
1178         * tree-outof-ssa.c (contains_tree_r): Likewise.
1179         * tree-parloops.c (reduction_phi, initialize_reductions,
1180         eliminate_local_variables_1, add_field_for_reduction,
1181         add_field_for_name, create_phi_for_local_result,
1182         create_call_for_reduction_1, create_loads_for_reductions,
1183         create_stores_for_reduction, create_loads_and_stores_for_name):
1184         Likewise.
1185         * tree-phinodes.c (allocate_phi_node): Likewise.
1186         * tree-predcom.c (order_drefs, execute_pred_commoning_cbck): Likewise.
1187         * tree-sra.c (sra_elt_hash, sra_elt_eq, lookup_element): Likewise.
1188         * tree-ssa-alias.c (get_mem_sym_stats_for): Likewise.
1189         * tree-ssa-coalesce.c (compare_pairs): Likewise.
1190         * tree-ssa-loop-im.c (mem_ref_in_stmt, memref_hash, memref_eq,
1191         memref_free, gather_mem_refs_stmt, vtoe_hash, vtoe_eq, vtoe_free,
1192         record_vop_access, get_vop_accesses, get_vop_stores): Likewise.
1193         * tree-ssa-loop-prefetch.c (determine_loop_nest_reuse): Likewise. 
1194         * tree-ssa-sccvn.c (VN_INFO_GET, free_phi, free_reference,
1195         vn_nary_op_insert): Likewise.
1196         * tree-ssa.c (redirect_edge_var_map_add,
1197         redirect_edge_var_map_clear, redirect_edge_var_map_dup): Likewise.
1198         * tree-vectorizer.c (vectorize_loops): Likewise.
1199         * tree.c (make_node_stat, copy_node_stat, build_int_cst_wide,
1200         build_fixed, build_real, make_tree_binfo_stat, make_tree_vec_stat,
1201         tree_cons_stat, build1_stat, build_variant_type_copy,
1202         decl_init_priority_lookup, decl_fini_priority_lookup,
1203         decl_priority_info, decl_restrict_base_lookup,
1204         decl_restrict_base_insert, decl_debug_expr_lookup,
1205         decl_debug_expr_insert, decl_value_expr_lookup,
1206         decl_value_expr_insert, type_hash_eq, type_hash_lookup,
1207         type_hash_add, get_file_function_name, tree_check_failed,
1208         tree_not_check_failed, tree_range_check_failed,
1209         omp_clause_range_check_failed, build_omp_clause,
1210         build_vl_exp_stat): Likewise.
1211         * value-prof.c (gimple_histogram_value,
1212         gimple_duplicate_stmt_histograms): Likewise.
1213         * var-tracking.c (attrs_list_insert, attrs_list_copy,
1214         unshare_variable, variable_union_info_cmp_pos, variable_union,
1215         dataflow_set_different_1, dataflow_set_different_2,
1216         vt_find_locations, variable_was_changed, set_variable_part,
1217         emit_notes_for_differences_1, emit_notes_for_differences_2): Likewise.
1218         * varasm.c (prefix_name, emutls_decl, section_entry_eq,
1219         section_entry_hash, object_block_entry_eq,
1220         object_block_entry_hash, create_block_symbol,
1221         initialize_cold_section_name, default_function_rodata_section,
1222         strip_reg_name, set_user_assembler_name, const_desc_eq,
1223         build_constant_desc, output_constant_def, lookup_constant_def,
1224         const_desc_rtx_hash, const_desc_rtx_eq, const_rtx_hash_1,
1225         create_constant_pool, force_const_mem, compute_reloc_for_rtx_1,
1226         default_internal_label): Likewise.
1227         * varray.c (varray_init, varray_grow): Likewise.
1228         * vec.c (vec_gc_o_reserve_1, vec_heap_o_reserve_1): Likewise.
1229
1230 2008-06-20  Uros Bizjak  <ubizjak@gmail.com>
1231
1232         * config/i386/i386.md (*jcc_fused_1): Handle all valid compare
1233         operators for "test" insn.  Macroize insn using SWI mode macro.
1234         (*jcc_fused_2): Ditto.
1235         (*jcc_fused_3): Macroize insn using SWI mode macro.
1236         (*jcc_fused_4): Ditto.
1237
1238 2008-06-20  Bernhard Fischer  <aldot@gcc.gnu.org>
1239
1240         * tree-ssa-pre.c: Fix typo in comment.
1241         (init_antic, fini_antic): Add explicit funtions for
1242         initializing and deinitializing ANTIC and AVAIL sets.
1243         (create_expression_by_pieces): Fix typo in comment.
1244         Remove redundant set of new_stuff and use NULL_TREE instead of NULL.
1245         (execute_pre): Eventually dump details about ANTIC_IN.
1246
1247 2008-06-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1248
1249         * collect2.c (main, add_to_list): Fix for -Wc++-compat.
1250         * gcc.c (translate_options, init_spec, store_arg, read_specs,
1251         add_to_obstack, file_at_path, find_a_file, execute,
1252         add_preprocessor_option, add_assembler_option, add_linker_option,
1253         process_command, insert_wrapper, do_option_spec, do_self_spec,
1254         spec_path, do_spec_1, is_directory, main, used_arg,
1255         getenv_spec_function): Likewise.
1256         * tlink.c (symbol_hash_lookup, file_hash_lookup,
1257         demangled_hash_lookup, symbol_push, file_push, frob_extension):
1258         Likewise.
1259
1260 2008-06-19  Kenneth Zadeck <zadeck@naturalbridge.com>
1261
1262         * doc/rtl.texi: Updated subreg section.
1263
1264 2008-06-19  Jakub Jelinek  <jakub@redhat.com>
1265
1266         PR c++/36523
1267         * cgraphunit.c (cgraph_process_new_functions): Don't clear
1268         node->needed and node->reachable.
1269         * cgraphbuild.c (record_reference): Handle OMP_PARALLEL and OMP_TASK.
1270         * omp-low.c (delete_omp_context): Call finalize_task_copyfn.
1271         (expand_task_call): Don't call expand_task_copyfn.
1272         (expand_task_copyfn): Renamed to...
1273         (finalize_task_copyfn): ... this.
1274
1275 2008-06-19  Jan Hubicka  <jh@suse.cz>
1276
1277         * builtins.c (expand_builtin_nonlocal_goto): Stabilize r_sp before
1278         clobbering framepointer.
1279
1280 2008-06-19  Jan Hubicka  <jh@suse.cz>
1281
1282         * tree-optimize.c (execute_early_local_optimizations): Set
1283         cgraph_state only at first invocation.
1284
1285 2008-06-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1286
1287         * system.h (-Wc++-compat): Activate as a warning, no an error.
1288
1289 2008-06-19  Uros Bizjak  <ubizjak@gmail.com>
1290
1291         * config/i386/i386.md (*jcc_fused_1): Use ASM_COMMENT_START
1292         instead of "#" in insn asm template.
1293         (*jcc_fused_2): Ditto.
1294
1295 2008-06-19  Uros Bizjak  <ubizjak@gmail.com>
1296
1297         * config/i386/i386.h (ix86_tune_indices)
1298         [X86_TUNE_FUSE_CMP_AND_BRANCH]: New.
1299         (TARGET_FUSE_CMP_AND_BRANCH): New define.
1300         * config/i386/i386.md (*jcc_fused_1): New insn pattern
1301         (*jcc_fused_2): Ditto.
1302         * config/i386/i386.c (ix86_tune_features): Add m_CORE2 to
1303         X86_TUNE_FUSE_CMP_AND_BRANCH targets.
1304         (print operand): Handle 'E' and 'e' code.
1305
1306 2008-06-19  Anatoly Sokolov  <aesok@post.ru>
1307
1308         * config/avr/avr.c (avr_mcu_t): Add attiny13a.
1309         * config/avr/avr.h (LINK_SPEC, CRT_BINUTILS_SPECS): (Ditto.).
1310         * config/avr/t-avr (MULTILIB_MATCHES): (Ditto.).
1311
1312 2008-06-19  Bernhard Fischer  <aldot@gcc.gnu.org>
1313
1314         * cgraphunit.c (cgraph_finalize_function): Remove redundant setting of
1315         node->decl.
1316         (cgraph_expand_function): Use local copy of decl.
1317         (cgraph_expand_all_functions): Remove redundant initialization of
1318         order_pos.
1319         (cgraph_optimize): Reword internal_error message.
1320
1321 2008-06-19  Chung-Lin Tang  <ctang@marvell.com>
1322
1323         * arm-protos.h (arm_return_in_memory): Remove public
1324         arm_return_in_memory() prototype.
1325         * arm.c (arm_return_in_memory): Add static prototype, add target
1326         hook macro, change definition and comments.
1327         * arm.h (TARGET_RETURN_IN_MEMORY): Remove.
1328
1329 2008-06-19  Ben Elliston  <bje@au.ibm.com>
1330
1331         * dfp.h, dfp.c, config/dfp-bit.h, config/dfp-bit.c, real.h,
1332         real.c: Remove references to IEEE 754R.
1333         * doc/install.texi (Configuration): IEEE 754R -> IEEE 754-2008.
1334         * doc/libgcc.texi (Decimal float library routines): Likewise.
1335
1336 2008-06-18  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
1337
1338         * targhooks.h (struct gcc_target): New member unwind_word_mode.
1339         (default_unwind_word_mode): Add prototype.
1340         * targhooks.c (default_unwind_word_mode): New function.
1341         (default_eh_return_filter_mode): Return targetm.unwind_word_mode ()
1342         instead of word_mode.
1343         * target-def.h (TARGET_UNWIND_WORD_MODE): New macro.
1344         (TARGET_INITIALIZER): Use it.
1345
1346         * c-common.c (handle_mode_attribute): Support "unwind_word"
1347         mode attribute.
1348         * unwind-generic.h (_Unwind_Word, _Unwind_Sword): Use it.
1349
1350         * except.c (init_eh): Use targetm.unwind_word_mode () instead of
1351         word_mode to access SjLj_Function_Context member "data".
1352         (sjlj_emit_dispatch_table): Likewise.  Also, perform type
1353         conversion from targetm.eh_return_filter_mode () to
1354         targetm.unwind_word_mode () if they differ.
1355
1356         * builtin-types.def (BT_UNWINDWORD): New primitive type.
1357         (BT_FN_UNWINDWORD_PTR): New function type.
1358         (BT_FN_WORD_PTR): Remove.
1359         * builtins.def (BUILT_IN_EXTEND_POINTER): Use BT_FN_UNWINDWORD_PTR.
1360         * except.c (expand_builtin_extend_pointer): Convert pointer to
1361         targetm.unwind_word_mode () instead of word_mode.
1362
1363         * config/spu/spu-protos.h (spu_eh_return_filter_mode): Remove.
1364         * config/spu/spu.c (spu_eh_return_filter_mode): Remove.
1365         (spu_unwind_word_mode): New function.
1366         (TARGET_EH_RETURN_FILTER_MODE): Do not define.
1367         (TARGET_UNWIND_WORD_MODE): Define.
1368         * config/spu/t-spu-elf (TARGET_LIBGCC2_CFLAGS): Remove -D__word__=SI.
1369
1370 2008-06-18  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
1371
1372         * config/spu/spu.c (reg_align): Remove.
1373         (regno_aligned_for_load): Also accept ARG_POINTER_REGNUM.
1374         (spu_split_load): Use regno_aligned_for_load instead of reg_align.
1375         (spu_split_store): Likewise.
1376
1377 2008-06-18  Bernhard Fischer  <aldot@gcc.gnu.org>
1378
1379         * gcc/tree-vn.c: Fix typo in comment.
1380
1381 2008-06-18  Jan Hubicka  <jh@suse.cz>
1382
1383         * cgraphunit.c (cgraph_optimize): Output debug info when doing
1384         toplevel reorder too.
1385
1386 2008-06-18  Jan Hubicka  <jh@suse.cz>
1387
1388         * c-opts.c (c_common_post_options): PCH is not compatible with
1389         no-unit-at-a-time.
1390         * opts.c (handle_options): Enable unit-at-a-time at O0 along with
1391         -fno-toplevel-reorder by default now.
1392
1393 2008-06-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1394
1395         PR documentation/30739
1396         * doc/install.texi (Prerequisites): Document dependency on awk.
1397
1398 2008-06-18  Uros Bizjak  <ubizjak@gmail.com>
1399             Ian Lance Taylor  <iant@google.com>
1400
1401         PR rtl-optimization/35604
1402         * jump.c (redirect_exp_1): Skip the condition of an IF_THEN_ELSE. We
1403         only want to change jump destinations, not eventual label comparisons.
1404
1405 2008-06-16  Jan Hubicka  <jh@suse.cz>
1406
1407         * cgraphunit.c (cgraph_expand_pending_functions): Give up at
1408         syntax errors.
1409         (cgraph_analyze_function): Likewise.
1410
1411 2008-06-16  Jan Hubicka  <jh@suse.cz>
1412
1413         * cgraph.h (cgraph_mark_if_needed): New function.
1414         * cgraphunit.c (cgraph_mark_if_needed): New function.
1415         * c-decl.c (duplicate_decl): Use it.
1416
1417 2008-06-16  Jan Hubicka  <jh@suse.cz>
1418
1419         * cgraph.c (cgraph_add_new_function): When in expansion state, do
1420         lowering.
1421
1422 2008-06-16  Jan Hubicka  <jh@suse.cz>
1423
1424         * tree-outof-ssa.c (pass_out_of_ssa): Do not depend on PROP_alias.
1425
1426 2008-06-16  Daniel Jacobowitz  <dan@codesourcery.com>
1427             Kazu Hirata  <kazu@codesourcery.com>
1428             Maxim Kuvyrkov  <maxim@codesourcery.com
1429
1430         * config.gcc (mips64el-st-linux-gnu): Use mips/st.h and mips/t-st.
1431         * config.host: Use driver-native.o and mips/x-native for mips*-linux*.
1432         * config/mips/linux.h (host_detect_local_cpu): Declare, add to
1433         EXTRA_SPEC_FUNCTIONS.
1434         (MARCH_MTUNE_NATIVE_SPECS, BASE_DRIVER_SELF_SPECS): New macros.
1435         (DRIVER_SELF_SPECS): Adjust.
1436         * config/mips/linux64.h (DRIVER_SELF_SPECS): Update.
1437         * config/mips/st.h, config/mips/t-st: New.
1438         * config/mips/driver-native.c, config/mips/x-native: New.
1439         * doc/invoke.texi (MIPS): Document 'native' value for -march and
1440         -mtune options.
1441
1442 2008-06-18  Maxim Kuvyrkov  <maxim@codesourcery.com>
1443
1444         * config/mips/mips.h (ISA_HAS_CONDMOVE): Slice ISA_HAS_FP_CONDMOVE
1445         from it.
1446         (ISA_HAS_FP_CONDMOVE): New macro.
1447         (ISA_HAS_FP_MADD4_MSUB4, ISA_HAS_FP_MADD3_MSUB3): New macros.
1448         (ISA_HAS_NMADD_NMSUB): Rename to ISA_HAS_NMADD4_NMSUB4.
1449         (ISA_HAS_NMADD3_NMSUB3): New macro.
1450         * config/mips/mips.c (mips_rtx_costs): Update.
1451         * config/mips/mips.md (MOVECC): Don't use FP conditional moves when
1452         compiling for ST Loongson 2E/2F.
1453         (madd<mode>): Rename to madd4<mode>.  Update.
1454         (madd3<mode>): New pattern.
1455         (msub<mode>): Rename to msub4<mode>.  Update.
1456         (msub3<mode>): New pattern.
1457         (nmadd<mode>): Rename to nmadd4<mode>.  Update.
1458         (nmadd3<mode>): New pattern.
1459         (nmadd<mode>_fastmath): Rename to nmadd4<mode>_fastmath.  Update.
1460         (nmadd3<mode>_fastmath): New pattern.
1461         (nmsub<mode>): Rename to nmsub4<mode>.  Update.
1462         (nmsub3<mode>): New pattern.
1463         (nmsub<mode>_fastmath): Rename to nmsub4<mode>_fastmath.  Update.
1464         (nmsub3<mode>_fastmath): New pattern.
1465         (mov<SCALARF:mode>_on_<MOVECC:mode>, mov<mode>cc): Update.
1466
1467 2008-06-18  Steven Bosscher  <steven@gcc.gnu.org>
1468
1469         * df.h (struct df_ref): Replace 'insn' field with 'insn_info' field.
1470         (DF_REF_INSN_INFO): New.
1471         (DF_REF_INSN, DF_REF_INSN_UID): Rewrite macros using DF_REF_INSN_INFO.
1472         (DF_REF_IS_ARTIFICIAL): Artificial refs are now identified as refs
1473         with a NULL DF_REF_INSN_INFO.
1474         (DF_INSN_INFO_GET, DF_INSN_INFO_SET): Renamed from DF_INSN_GET and
1475         DF_INSN_SET.
1476         (DF_INSN_INFO_LUID, DF_INSN_INFO_DEFS, DF_INSN_INFO_USES,
1477         DF_INSN_INFO_EQ_USES): New.
1478         (DF_INSN_LUID, DF_INSN_DEFS, DF_INSN_USES, DF_INSN_EQ_USES,
1479         DF_INSN_UID_LUID, DF_INSN_UID_DEFS, DF_INSN_UID_USES,
1480         DF_INSN_UID_EQ_USES): Rewrite using DF_INSN_INFO_* macros.
1481         * df-core.c: Update comment for above changes.
1482         (df_insn_debug_regno): Use DF_INSN_INFO_GET instead of INSN_UID and
1483         DF_INSN_UID_* macros.
1484         (df_ref_debug): Check for NULL DF_REF_INSN_INFO.
1485         * df-scan.c (df_ref_record): Take a df_insn_info instead of an
1486         insn rtx.  Update all callers.
1487         (df_def_record_1, df_defs_record, df_uses_record, df_get_call_refs,
1488         df_ref_create_structure, df_insn_refs_collect): Likewise.
1489         (df_ref_equal_p): Compare DF_REF_INSN_INFO pointers for the refs.
1490         * df-problems.c (df_chain_dump): Test for non-NULL DF_REF_INSN_INFO.
1491         (df_live_bb_local_compute): Retrieve DF_INSN_INFO, use DF_INSN_INFO_*
1492         macros to access the insn refs.
1493         (df_chain_top_dump, df_chain_bottom_dump, df_byte_lr_alloc): Likewise.
1494         * fwprop.c (use_killed_between): Use DF_REF_INSN accessor macro.
1495         (all_uses_available): Retrieve DF_INSN_INFO for def_insn, and use it
1496         for accessing the refs.
1497         (try_fwprop_subst): Likewise.
1498         * ddg.c (add_cross_iteration_register_deps): Use DF_REF_INSN macro.
1499         * web.c (union_defs): Retrieve DF_INSN_INFO for def_insn, and use it
1500         for accessing the refs.
1501         * loop-invariant.c (invariant_for_use): Use DF_REF_BB macro.
1502         (check_dependencies): Use DF_INSN_INFO_GET, use DF_INSN_INFO_* macros
1503         to look at the insn refs.
1504         (record_uses): Likewise.
1505         * dce.c (deletable_insn_p): Don't tolerate artificial DEFs in this
1506         function anymore.
1507         (mark_artificial_uses): Don't mark_insn for artificial refs.
1508         (mark_reg_rependencies): Likewise.
1509
1510         * doc/rtl.texi: Remove documentation of ADDRESSOF.
1511
1512 2008-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1513
1514         * configure: Regenerate.
1515
1516 2008-06-17  Eric B. Weddington  <eric.weddington@atmel.com>
1517
1518         * config/avr/avr.c (avr_mcu_t): Remove atmega32hvb.
1519         * config/avr/avr.h (LINK_SPEC, CRT_BINUTILS_SPECS): Likewise. 
1520         * config/avr/t-avr (MULTILIB_MATCHES): Likewise. 
1521
1522 2008-06-17  Eric B. Weddington  <eric.weddington@atmel.com>
1523
1524         * config/avr/avr.c (avr_mcu_t): Add attiny167.
1525         * config/avr/avr.h (LINK_SPEC, CRT_BINUTILS_SPECS): Likewise. 
1526         * gcc/config/avr/t-avr (MULTILIB_MATCHES): Likewise. 
1527
1528 2008-06-17  Eric B. Weddington  <eric.weddington@atmel.com>
1529
1530         * config/avr/avr.c (avr_mcu_t): Add atmega32u4.
1531         * config/avr/avr.h (LINK_SPEC, CRT_BINUTILS_SPECS): Likewise. 
1532         * config/avr/t-avr (MULTILIB_MATCHES): Likewise. 
1533
1534 2008-06-17  Bernhard Fischer  <aldot@gcc.gnu.org>
1535
1536         * tree-ssa-sccvn.c: Fix format of comments.
1537
1538 2008-06-17  Bernhard Fischer  <aldot@gcc.gnu.org>
1539
1540         * cgraph.c: Remove unneeded forward declarations of eq_node()
1541         and hash_node().
1542
1543 2008-06-17  Steven Bosscher  <steven@gcc.gnu.org>
1544
1545         * see.c (see_analyse_one_def): Do not look for REG_LIBCALL and
1546         REG_RETVAL notes.
1547         (see_update_relevancy): Likewise.
1548         * fwprop.c (try_fwprop_subst): Likewise.
1549         * rtlanal.c (noop_move_p): Likewise.
1550         * builtins.c (expand_buitlin_mathfn): Don't try to add REG_EQUAL
1551         notes to non-existing libcall blocks.
1552         * cse.c (cse_insn): Change prototype.  Don't update libcall notes.
1553         Remove orig_set.
1554         (cse_extended_basic_block): Don't track libcall and no-conflict notes.
1555         (dead_libcall_p): Remove.
1556         (delete_trivially_dead_insns): Don't use it.
1557         * web.c (union_defs): Remove comment about keeping nops.
1558         * gcse.c (hash_scan_insn): Don't take libcall pointers.
1559         (compute_hash_table_work): Don't track libcall notes.
1560         (do_local_cprop): Don't take libcall pointers.  Don't update
1561         libcall notes.
1562         (adjust_libcall_notes): Deleted.
1563         (local_cprop_pass): Remove stack for nested libcalls (which shouldn't
1564         ever have existed in the first place).
1565         (replace_store_insn): Don't try to remove libcall notes.
1566         * lower-subreg.c (move_libcall_note, move_retval_note): Deleted.
1567         (resolve_reg_notes): Don't call them.
1568         (resolve_simple_move): Likewise.
1569         (decompose_multiword_subregs): Remove block handling REG_RETVAL notes.
1570         Don't remove REG_RETVAL notes.
1571         * emit-rtl.c (try_split): Don't update libcall notes.
1572         (emit_copy_of_insn_after): Dito.
1573         * cselib.c (cselib_current_insn_in_libcall): Remove.
1574         (cselib_process_insn): Don't set/clear it.
1575         (new_elt_loc_list): Don't record it.
1576         (cselib_init): Don't initialize it.
1577         * cselib.c (struct elt_loc_list): Remove in_libcall field.
1578         * loop-invariant.c (find_invariant_insn): Don't look for libcall
1579         notes.
1580         * sched-deps.c (sched_analyze_insn): Don't group libcall blocks.
1581         (sched_analyze): Don't set up deps->libcall_block_tail_insn.
1582         (init_deps): Don't initialize it.
1583         * sched-int.h (struct deps): Rremove libcall_block_tail_insn field.
1584         * combine.c (delete_noop_moves): Don't update libcall notes.
1585         (can_combine_p): Remove now pointless #if 0 block.
1586         (try_combine): Remove another obsolete #if 0 block.
1587         (distribute_notes): Don't distribute libcall notes.
1588         * reg-notes.def (REG_LIBCALL, REG_RETVAL): Remove.
1589         * dce.c (libcall_dead_p): Remove.
1590         (delete_unmarked_insns): Don't handle libcall blocks.
1591         (preserve_libcall_for_dce): Remove.
1592         (prescan_insns_for_dce): Don't special-case libcall block insns.
1593         * reload1 (reload): Don't handle libcall notes. 
1594         * doc/rtl.texi (REG_LIBCALL, REG_RETVAL, REG_LIBCALL_ID): Remove
1595         documentation.
1596
1597 2008-06-16  Eric B. Weddington  <eric.weddington@atmel.com>
1598
1599         * config/avr/avr.c (avr_mcu_t): Add atmega32c1.
1600         * config/avr/avr.h (LINK_SPEC, CRT_BINUTILS_SPECS): Likewise.
1601         * config/avr/t-avr (MULTILIB_MATCHES): Likewise.
1602
1603 2008-06-16  Eric B. Weddington  <eric.weddington@atmel.com>
1604
1605         * config/avr/avr.c (avr_mcu_t): Add atmega32m1.
1606         * config/avr/avr.h (LINK_SPEC, CRT_BINUTILS_SPECS): Likewise.
1607         * config/avr/t-avr (MULTILIB_MATCHES): Likewise. 
1608
1609 2008-06-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1610
1611         * Makefile.in (FLAGS_TO_PASS): Add $(datarootdir).
1612
1613 2008-06-16  Ira Rosen  <irar@il.ibm.com>
1614
1615         PR tree-optimization/36493
1616         * tree-vect-transform.c (vect_create_data_ref_ptr): Remove TYPE from
1617         the arguments list. Use VECTYPE to create vector pointer.
1618         (vectorizable_store): Fail if accesses through a pointer to vectype
1619         do not alias the original memory reference operands.
1620         Call vect_create_data_ref_ptr without the removed argument.
1621         (vectorizable_load): Likewise.
1622         (vect_setup_realignment): Call vect_create_data_ref_ptr without the
1623         removed argument.
1624
1625 2008-06-015  Andy Hutchinson  <hutchinsonandy@aim.com>
1626
1627         PR target/36336
1628         * config/avr/avr.h (LEGITIMIZE_RELOAD_ADDRESS): Add check for 
1629         reg_equiv_constant.
1630
1631 2008-06-15  Maxim Kuvyrkov  <maxim@codesourcery.com>
1632
1633         * config/mips/loongson2ef.md: New file.
1634         * config/mips/mips.md (UNSPEC_LOONGSON_ALU1_TURN_ENABLED_INSN)
1635         (UNSPEC_LOONGSON_ALU2_TURN_ENABLED_INSN)
1636         (UNSPEC_LOONGSON_FALU1_TURN_ENABLED_INSN)
1637         (UNSPEC_LOONGSON_FALU2_TURN_ENABLED_INSN): New constants.
1638         (define_attr "cpu"): Rename loongson2e and loongson2f to loongson_2e
1639         and loongson_2f.
1640         (loongson2ef.md): New include.
1641         * config/mips/loongson.md (vec_pack_ssat_<mode>, vec_pack_usat_<mode>)
1642         (add<mode>3, paddd, ssadd<mode>3, usadd<mode>3)
1643         (loongson_and_not_<mode>, loongson_average_<mode>, loongson_eq_<mode>)
1644         (loongson_gt_<mode>, loongson_extract_halfword)
1645         (loongson_insert_halfword_0, loongson_insert_halfword_2)
1646         (loongson_insert_halfword_3, loongson_mult_add, smax<mode>3)
1647         (umax<mode>3, smin<mode>3, umin<mode>3, loongson_move_byte_mask)
1648         (umul<mode>3_highpart, smul<mode>3_highpart, loongson_smul_lowpart)
1649         (loongson_umul_word, loongson_pasubub, reduc_uplus_<mode>)
1650         (loongson_psadbh, loongson_pshufh, loongson_psll<mode>)
1651         (loongson_psra<mode>, loongson_psrl<mode>, sub<mode>3, psubd)
1652         (sssub<mode>3, ussub<mode>3, vec_interleave_high<mode>)
1653         (vec_interleave_low<mode>): Define type attribute.
1654         * config/mips/mips.c (mips_ls2): New static variable.
1655         (mips_issue_rate): Update to handle tuning for Loongson 2E/2F.
1656         (mips_ls2_init_dfa_post_cycle_insn, mips_init_dfa_post_cycle_insn)
1657         (sched_ls2_dfa_post_advance_cycle, mips_dfa_post_advance_cycle):
1658         Implement target scheduling hooks.
1659         (mips_multipass_dfa_lookahead): Update to handle tuning for
1660         Loongson 2E/2F.
1661         (mips_sched_init): Initialize data for Loongson scheduling.
1662         (mips_ls2_variable_issue): New static function.
1663         (mips_variable_issue): Update to handle tuning for Loongson 2E/2F.
1664         Add sanity check.
1665         (TARGET_SCHED_INIT_DFA_POST_CYCLE_INSN)
1666         (TARGET_SCHED_DFA_POST_ADVANCE_CYCLE): Override target hooks.
1667         * config/mips/mips.h (TUNE_LOONGSON_2EF): New macros.
1668         (ISA_HAS_XFER_DELAY, ISA_HAS_FCMP_DELAY, ISA_HAS_HILO_INTERLOCKS):
1669         Handle ST Loongson 2E/2F cores.
1670         (CPU_UNITS_QUERY): Define macro to enable querying of DFA units.
1671
1672 2008-06-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1673
1674         * omp-low.c (extract_omp_for_data): Fix comment typo.
1675         * c.opt: Fix typo.
1676
1677 2008-06-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1678
1679         * doc/sourcebuild.texi (Config Fragments): Remove obsolete
1680         FIXME note about gcc/config.guess.
1681         * doc/options.texi (Option file format): Remove non-ASCII bytes.
1682         * doc/cpp.texi: Expand TABs, drop indentation outside examples.
1683         * doc/cppopts.texi: Likewise.
1684         * doc/extend.texi: Likewise.
1685         * doc/gcc.texi: Likewise.
1686         * doc/gccint.texi: Likewise.
1687         * doc/gcov.texi: Likewise.
1688         * doc/gty.texi: Likewise.
1689         * doc/hostconfig.texi: Likewise.
1690         * doc/install.texi: Likewise.
1691         * doc/invoke.texi: Likewise.
1692         * doc/loop.texi: Likewise.
1693         * doc/makefile.texi: Likewise.
1694         * doc/md.texi: Likewise.
1695         * doc/passes.texi: Likewise.
1696         * doc/tm.texi: Likewise.
1697         * doc/tree-ssa.texi: Likewise.
1698         * doc/trouble.texi: Likewise.
1699
1700 2008-06-15  Mark Shinwell  <shinwell@codesourcery.com>
1701             Nathan Sidwell  <nathan@codesourcery.com>
1702             Maxim Kuvyrkov  <maxim@codesourcery.com>
1703             Richard Sandiford  <rdsandiford@googlemail.com>
1704         
1705         * config/mips/mips-modes.def: Add V8QI, V4HI and V2SI modes.
1706         * config/mips/mips-protos.h (mips_expand_vector_init): New.
1707         * config/mips/mips-ftypes.def: Add function types for Loongson-2E/2F
1708         builtins.
1709         * config/mips/mips.c (mips_split_doubleword_move): Handle new modes.
1710         (mips_hard_regno_mode_ok_p): Allow 64-bit vector modes for Loongson.
1711         (mips_vector_mode_supported_p): Add V2SImode, V4HImode and
1712         V8QImode cases.
1713         (LOONGSON_BUILTIN, LOONGSON_BUILTIN_ALIAS): New.
1714         (CODE_FOR_loongson_packsswh, CODE_FOR_loongson_packsshb,
1715         (CODE_FOR_loongson_packushb, CODE_FOR_loongson_paddw,
1716         (CODE_FOR_loongson_paddh, CODE_FOR_loongson_paddb,
1717         (CODE_FOR_loongson_paddsh, CODE_FOR_loongson_paddsb)
1718         (CODE_FOR_loongson_paddush, CODE_FOR_loongson_paddusb)
1719         (CODE_FOR_loongson_pmaxsh, CODE_FOR_loongson_pmaxub)
1720         (CODE_FOR_loongson_pminsh, CODE_FOR_loongson_pminub)
1721         (CODE_FOR_loongson_pmulhuh, CODE_FOR_loongson_pmulhh)
1722         (CODE_FOR_loongson_biadd, CODE_FOR_loongson_psubw)
1723         (CODE_FOR_loongson_psubh, CODE_FOR_loongson_psubb)
1724         (CODE_FOR_loongson_psubsh, CODE_FOR_loongson_psubsb)
1725         (CODE_FOR_loongson_psubush, CODE_FOR_loongson_psubusb)
1726         (CODE_FOR_loongson_punpckhbh, CODE_FOR_loongson_punpckhhw)
1727         (CODE_FOR_loongson_punpckhwd, CODE_FOR_loongson_punpcklbh)
1728         (CODE_FOR_loongson_punpcklhw, CODE_FOR_loongson_punpcklwd): New.
1729         (mips_builtins): Add Loongson builtins.
1730         (mips_loongson_2ef_bdesc): New.
1731         (mips_bdesc_arrays): Add mips_loongson_2ef_bdesc.
1732         (mips_builtin_vector_type): Handle unsigned versions of vector modes.
1733         (MIPS_ATYPE_UQI, MIPS_ATYPE_UDI, MIPS_ATYPE_V2SI, MIPS_ATYPE_UV2SI)
1734         (MIPS_ATYPE_V4HI, MIPS_ATYPE_UV4HI, MIPS_ATYPE_V8QI, MIPS_ATYPE_UV8QI):
1735         New.
1736         (mips_expand_vector_init): New.
1737         * config/mips/mips.h (HAVE_LOONGSON_VECTOR_MODES): New.
1738         (TARGET_CPU_CPP_BUILTINS): Define __mips_loongson_vector_rev
1739         if appropriate.
1740         * config/mips/mips.md: Add unspec numbers for Loongson
1741         builtins.  Include loongson.md.
1742         (MOVE64): Include Loongson vector modes.
1743         (SPLITF): Include Loongson vector modes.
1744         (HALFMODE): Handle Loongson vector modes.
1745         * config/mips/loongson.md: New.
1746         * config/mips/loongson.h: New.
1747         * config.gcc: Add loongson.h header for mips*-*-* targets.
1748         * doc/extend.texi (MIPS Loongson Built-in Functions): New.
1749
1750 2008-06-14  Joseph Myers  <joseph@codesourcery.com>
1751
1752         * config.gcc (arc-*-elf*, avr-*-*, fr30-*-elf, frv-*-elf,
1753         h8300-*-elf*, h8300-*-*, i[34567]86-*-elf*, x86_64-*-elf*,
1754         i[34567]86-*-aout*, i[34567]86-*-coff*, ia64*-*-elf*,
1755         iq2000*-*-elf*, m32r-*-elf*, m32rle-*-elf*, m32r-*-linux*,
1756         m32rle-*-linux*, m68hc11-*-*|m6811-*-*, m68hc12-*-*|m6812-*-*,
1757         m68k-*-coff*, mcore-*-elf, mcore-*-pe*, mipsisa64sr71k-*-elf*,
1758         mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*, mips-*-elf* |
1759         mipsel-*-elf*, mips64-*-elf* | mips64el-*-elf*, mips64vr-*-elf* |
1760         mips64vrel-*-elf*, mips64orion-*-elf* | mips64orionel-*-elf*,
1761         mipstx39-*-elf* | mipstx39el-*-elf*, mn10300-*-*, pdp11-*-,
1762         powerpc-*-elf*, powerpcle-*-elf*, sh-*-elf* | sh[12346l]*-*-elf* |
1763         sh-*-symbianelf* | sh[12346l]*-*-symbianelf* | sh-*-linux* |
1764         sh[2346lbe]*-*-linux* | sh-*-netbsdelf* | shl*-*-netbsdelf* |
1765         sh5-*-netbsd* | sh5l*-*-netbsd* | sh64-*-netbsd* |
1766         sh64l*-*-netbsd*, sh-*-*, sparc-*-elf*, sparc64-*-elf*,
1767         v850e1-*-*, v850e-*-*, v850-*-*, xstormy16-*-elf, m32c-*-elf*):
1768         Remove use_fixproto=yes.
1769         (ia64*-*-hpux*): Remove comment about using fixproto.
1770         (m68k-*-uclinuxoldabi*, m68k-*-uclinux*): Remove use_fixproto=no.
1771
1772 2008-06-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1773
1774         * configure.ac: Update gthr-default.h lazily, to avoid unneeded
1775         library rebuilds.
1776         * configure: Regenerate.
1777
1778 2008-06-13  Eric Botcazou  <ebotcazou@adacore.com>
1779
1780         PR middle-end/36520
1781         * builtins.c (get_memory_rtx): Test for the presence of DECL_SIZE_UNIT
1782         before evaluating it.
1783
1784 2008-06-13  Jakub Jelinek  <jakub@redhat.com>
1785
1786         PR c/36507
1787         * c-decl.c (merge_decls): Don't clear DECL_EXTERNAL for
1788         nested inline functions.
1789         (start_decl, start_function): Don't invert DECL_EXTERNAL
1790         for nested inline functions.
1791
1792 2008-06-13  Richard Sandiford  <rdsandiford@googlemail.com>
1793
1794         * config/mips/mips.md: Remove TARGET_DEBUG_D_MODE conditions from
1795         splits that must be made for correctness.
1796
1797 2008-06-13  Richard Sandiford  <rdsandiford@googlemail.com>
1798
1799         * config/mips/mips.c (BUILTIN_AVAIL_NON_MIPS16): New macro.
1800         (AVAIL_NON_MIPS16): Likewise.
1801         (mips_builtin_description): Replace target_flags with a predicate.
1802         (paired_single, sb1_paired_single, mips3d, dsp, dspr2, dsp_32)
1803         (dspr2_32): New availability predicates.
1804         (MIPS_BUILTIN): New macro.
1805         (DIRECT_BUILTIN, CMP_SCALAR_BUILTINS, CMP_PS_BUILTINS)
1806         (CMP_4S_BUILTINS, MOVTF_BUILTINS, CMP_BUILTINS)
1807         (DIRECT_NO_TARGET_BUILTIN, BPOSGE_BUILTIN): Use it.
1808         Replace the TARGET_FLAGS parameters with AVAIL parameters.
1809         (mips_ps_bdesc, mips_sb1_bdesc, mips_dsp_bdesc)
1810         (mips_dsp_32only_bdesc): Merge into...
1811         (mips_builtins): ...this new array.
1812         (mips_bdesc_map, mips_bdesc_arrays): Delete.
1813         (mips_init_builtins): Update after above changes.
1814         (mips_expand_builtin_1): Merge into...
1815         (mips_expand_builtin): ...here and update after above changes.
1816
1817 2008-06-12  Paul Brook  <paul@codesourcery.com>
1818
1819         * longlong.h (__arm__): Define count_leading_zeros.
1820         * config/arm/lib1funcs.asm (xxh, xxl, yyh, yyl): Define.
1821         (clzsi2, clzdi2): New functions.
1822         * config/arm/bpabi-v6m.S (xxh, xxl, yyh, yyl): Remove.
1823         * config/arm/bpabi.S (xxh, xxl, yyh, yyl): Remove.
1824         * config/arm/t-strongarm-elf (LIB1ASMFUNCS): Ditto.
1825         * config/arm/t-vxworks (LIB1ASMFUNCS): Ditto.
1826         * config/arm/t-pe (LIB1ASMFUNCS): Ditto.
1827         * config/arm/t-arm-elf (LIB1ASMFUNCS): Ditto.
1828         * config/arm/t-arm-coff (LIB1ASMFUNCS): Ditto.
1829         * config/arm/t-linux (LIB1ASMFUNCS): Ditto.
1830         * config/arm/t-symbian (LIB1ASMFUNCS): Ditto.
1831         * config/arm/t-wince-pe (LIB1ASMFUNCS): Ditto.
1832
1833 2008-06-12  Kazu Hirata  <kazu@codesourcery.com>
1834
1835         * config/m68k/m68k.c (m68k_tune_flags): New.
1836         (override_options): Compute m68k_tune_flags.
1837         (MULL_COST, MULW_COST): Update for various variants of CFV2.
1838         * config/m68k/m68k.h (TUNE_MAC, TUNE_EMAC): New.
1839
1840 2008-06-12  Jakub Jelinek  <jakub@redhat.com>
1841
1842         PR middle-end/36506
1843         * omp-low.c (expand_omp_sections): Initialize l2 to avoid bogus warning.
1844
1845 2008-06-12  Eric Botcazou  <ebotcazou@adacore.com>
1846
1847         * tree-inline.c (copy_body_r): Copy TREE_SIDE_EFFECTS along with
1848         TREE_THIS_VOLATILE on INDIRECT_REF nodes.
1849
1850 2008-06-12  Eric Botcazou  <ebotcazou@adacore.com>
1851
1852         * expr.c (store_field): Do a block copy from BLKmode to BLKmode-like.
1853         (get_inner_reference): Use BLKmode for byte-aligned BLKmode bitfields.
1854
1855 2008-06-12  Jakub Jelinek  <jakub@redhat.com>
1856
1857         PR middle-end/36506
1858         * omp-low.c (expand_omp_sections): Handle #pragma omp sections with
1859         reductions.
1860
1861 2008-06-12  Richard Guenther  <rguenther@suse.de>
1862
1863         PR tree-optimization/36345
1864         * tree-flow.h (struct ptr_info_def): Align escape_mask,
1865         add memory_tag_needed flag.
1866         (may_alias_p): Declare.
1867         * tree-ssa-alias.c (may_alias_p): Export.
1868         (set_initial_properties): Use memory_tag_needed flag.
1869         (update_reference_counts): Likewise.
1870         (reset_alias_info): Reset memory_tag_needed flag.
1871         (create_name_tags): Check memory_tag_needed flag.
1872         (dump_points_to_info_for): Dump it.
1873         * tree-ssa-structalias.c (struct variable_info): Remove
1874         directly_dereferenced flag.
1875         (new_var_info): Do not initialize it.
1876         (process_constraint_1): Do not set it.
1877         (update_alias_info): Set is_dereferenced flag.
1878         (set_uids_in_ptset): Use may_alias_p.
1879         (set_used_smts): Check memory_tag_needed flag.
1880         (find_what_p_points_to): Likewise.  Pass is_dereferenced flag.
1881         * tree-ssa-alias.c (verify_flow_sensitive_alias_info): Check
1882         memory_tag_needed flag.
1883         * tree-ssa-alias-warnings.c (dsa_named_for): Try to recover
1884         from broken design.
1885
1886 2008-06-12  Kai Tietz  <kai.tietz@onevision.com>
1887
1888         * config/i386/i386.c (ix86_compute_frame_layout): Disable
1889         red zone for w64 abi.
1890         (ix86_expand_prologue): Likewise.
1891         (ix86_force_to_memory): Likewise.
1892         (ix86_free_from_memory): Likewise.
1893
1894 2008-06-11  Edmar Wienskoski  <edmar@freescale.com>
1895
1896         PR target/36425
1897         * config/rs6000/rs6000.c (rs6000_override_options): Set
1898         rs6000_isel conditionally to the absence of comand line override.
1899         * config/rs6000/linuxspe.h (SUBSUBTARGET_OVERRIDE_OPTIONS):
1900         Remove duplicate rs6000_isel setting.
1901         * config/rs6000/eabispe.h: Ditto.
1902
1903 2008-06-11  Richard Guenther  <rguenther@suse.de>
1904
1905         * alias.c (get_alias_set): Use the element alias-set for arrays.
1906         (record_component_aliases): For arrays and vectors do nothing.
1907         * c-common.c (strict_aliasing_warning): Handle the cases
1908         of alias set zero explicitly.
1909         * Makefile.in (dfp.o-warn): Add -Wno-error.
1910
1911 2008-06-11  Joseph Myers  <joseph@codesourcery.com>
1912
1913         * config.gcc (all_defaults): Add arch_32 arch_64 cpu_32 cpu_64
1914         tune_32 tune_64.
1915         (i[34567]86-*-* | x86_64-*-*): Add arch_32 arch_64 cpu_32 cpu_64
1916         tune_32 tune_64 to supported_defaults.  Allow values not
1917         supporting 64-bit mode for arch_32, cpu_32 and tune_32 for
1918         x86_64.  Do not override cpu_32 or cpu_64 values from target name.
1919         (i[34567]86-*-linux*, i[34567]86-*-solaris2.1[0-9]*): Only default
1920         with_cpu_64 to generic for 64-bit-supporting configurations, not
1921         with_cpu.  Remove FIXMEs.
1922         * doc/install.texi (--with-cpu-32, --with-cpu-64, --with-arch-32,
1923         --with-arch-64, --with-tune-32, --with-tune-64): Document.
1924         * config/i386/i386.h (OPT_ARCH32, OPT_ARCH64): Define.
1925         (OPTION_DEFAULT_SPECS): Add tune_32, tune_64, cpu_32, cpu_64,
1926         arch_32 and arch_64.
1927
1928 2008-06-11  Eric Botcazou  <ebotcazou@adacore.com>
1929             Olivier Hainque  <hainque@adacore.com>
1930
1931         * builtins.c (get_memory_rtx): Accept byte-addressable bitfields.
1932         Use DECL_SIZE_UNIT to retrieve the size of the field.
1933
1934 2008-06-11  Joseph Myers  <joseph@codesourcery.com>
1935
1936         * config/arm/arm.c (arm_init_neon_builtins): Move initialization
1937         with function calls after declarations.  Lay out
1938         neon_float_type_node before further use.
1939
1940 2008-06-11  Richard Guenther  <rguenther@suse.de>
1941
1942         * tree-flow.h (may_point_to_global_var): Declare.
1943         * tree-ssa-alias.c (may_point_to_global_var): New function.
1944         * tree-ssa-sink.c (is_hidden_global_store): Use it.
1945
1946 2008-06-10  Kazu Hirata  <kazu@codesourcery.com>
1947
1948         * configure.ac: Teach that fido supports .debug_line.
1949         * configure: Regenerate.
1950
1951 2008-06-10  Tom Tromey  <tromey@redhat.com>
1952
1953         * c-lex.c (fe_file_change): Pass SOURCE_LINE to start_source_file
1954         debug hook.
1955
1956 2008-06-10  Joseph Myers  <joseph@codesourcery.com>
1957
1958         * dfp.c (WORDS_BIGENDIAN): Define to 0 if not defined.
1959         (encode_decimal64, decode_decimal64, encode_decimal128,
1960         decode_decimal128): Reverse order of 32-bit parts of value if host
1961         and target endianness differ.
1962
1963 2008-06-10  Vinodha Ramasamy  <vinodha@google.com>
1964
1965         * value_prob.c (tree_divmod_fixed_value_transform): Use gcov_type.
1966         Avoid division by 0.
1967         (tree_mod_pow2_value_transform): Likewise.
1968         (tree_ic_transform): Likewise.
1969         (tree_stringops_transform): Likewise.
1970         (tree_mod_subtract_transform): Likewise.
1971         * tree-inline-c (copy_bb): Corrected int type to gcov_type.
1972         (copy_edges_for_bb): Likewise.
1973         (initialize_cfun): Likewise.
1974
1975 2008-06-10  Uros Bizjak  <ubizjak@gmail.com>
1976
1977         * config/i386/i386.md (*btdi_rex64): Change operand 1 predicate to
1978         nonmemory_operand. Add "N" operand constraint.
1979         (*btsi): Ditto.
1980         (*jcc_btdi_mask_rex64): New instruction and split pattern.
1981         (*jcc_btsi_mask): Ditto.
1982         (*jcc_btsi_mask_1): Ditto.
1983
1984 2008-06-10  Joseph Myers  <joseph@codesourcery.com>
1985
1986         * config/rs6000/rs6000.c (build_opaque_vector_type): Set
1987         TYPE_CANONICAL for copied element type.
1988
1989 2008-06-10  Uros Bizjak  <ubizjak@gmail.com>
1990
1991         PR target/36473
1992         * config/i386/i386.c (ix86_tune_features) [TUNE_USE_BT]:
1993         Add m_CORE2 and m_GENERIC.
1994         * config/i386/predicates.md (bt_comparison_operator): New predicate.
1995         * config/i386/i386.md (*btdi_rex64): New instruction pattern.
1996         (*btsi): Ditto.
1997         (*jcc_btdi_rex64): New instruction and split pattern.
1998         (*jcc_btsi): Ditto.
1999         (*jcc_btsi_1): Ditto.
2000         (*btsq): Fix Intel asm dialect operand order.
2001         (*btrq): Ditto.
2002         (*btcq): Ditto.
2003
2004 2008-06-09  Andy Hutchinson  <hutchinsonandy@aim.com>
2005
2006         PR middle-end/36447
2007         * simplify-rtx.c (simplify_subreg): Add check for shift count 
2008         greater than size.
2009
2010 2008-06-09  Richard Sandiford  <rdsandiford@googlemail.com>
2011
2012         * doc/md.texi: Synchronize with later constraints.md change.
2013         * longlong.h (umul_ppmm): Replace the MIPS asm implementation
2014         with a C implementation.
2015         * config/mips/mips.c (mips_legitimize_move): Remove MFHI and
2016         MFLO handling.
2017         (mips_subword): Assume TImode for CONST_INTs if TARGET_64BIT.
2018         (mips_split_doubleword_move): Use special MTHI and MFHI instructions
2019         when moving to and from MD_REGNUM.
2020         (mips_output_move): Don't handle moves from GPRs to HI_REGNUM.
2021         Handle moves from LO_REGNUM to GPRs using MFLO, MACC or DMACC.
2022         Handle byte and halfword moves.
2023         (mips_hard_regno_mode_ok_p): Handle MD_REGS and DSP_ACC_REGS
2024         separately.
2025         * config/mips/constraints.md (h): Turn into NO_REGS.
2026         (l, x): Update documentation.
2027         * config/mips/mips.md (UNSPEC_MFHILO): Delete.
2028         (UNSPEC_MFHI, UNSPEC_MTHI, UNSPEC_SET_HILO): New.
2029         (UNSPEC_TLS_LDM, UNSPEC_TLS_GET_TP): Renumber.
2030         (HILO): New mode iterator.
2031         (MOVE128): Add TI.
2032         (any_div): New code iterator.
2033         (u): Extend code attribute to div and udiv.
2034         (*add<mode>3_mips16, *movdi_64bit_mips16, *movsi_mips16): Use
2035         d_operand in the splitters.  Remove redundant CONST_INT checks.
2036         (mulsi3_mult3, mul<mode>3_internal, mul<mode>3_r4000, *mul_acc_si)
2037         (*macc, *msac, *msac_using_macc, *macc2, *msac2, *mul_sub_si)
2038         (*muls): Remove "=h" clobbers.  Adjust peephole2s and define_splits
2039         accordingly, using normal moves instead of unspecs to move LO into
2040         a GPR.  Use d_operand and lo_operand instead of *_REG_P checks.
2041         (<u>mulsidi3): Handle expansion in C code.
2042         (<u>mulsidi3_32bit_internal): Rename to...
2043         (<u>mulsidi3_32bit): ...this.
2044         (<u>mulsidi3_32bit_r4000): Fix insn separator.
2045         (*<u>mulsidi3_64bit): Rename to...
2046         (<u>mulsidi3_64bit): ...this.  Combine DImode "=h" and "=l" clobbers
2047         into a TImode "=x" clobber.  In the split, use an UNSPEC_SET_HILO
2048         to set LO and HI to the multiplication result.  Use a normal move
2049         for MFLO and an unspec for MFHI.
2050         (*<u>mulsidi3_64bit_parts): Replace with...
2051         (<u>mulsidi3_64bit_hilo): ...this new instruction.
2052         (<su>mulsi3_highpart): Extend to TARGET_FIX_R4000.
2053         (<su>mulsi3_highpart_internal): Turn into a define_insn_and_split
2054         and extend it to TARGET_FIX_R4000.  Store the destination in a GPR
2055         instead of HI.  Split the instruction into a separate multiplication
2056         and MFHI if !TARGET_FIX_R4000.
2057         (<su>muldi3_highpart): Likewise.
2058         (<su>mulsi3_highpart_mulhi_internal): Remove the first alternative
2059         and the "=h" clobber.
2060         (*<su>mulsi3_highpart_neg_mulhi_internal): Likewise.
2061         (<u>mulditi3): New expander.
2062         (<u>mulditi3_internal, <u>mulditi3_r4000): New patterns.
2063         (madsi): Remove "=h" clobber.
2064         (divmod<mode>4, udivmod<mode>4): Turn into define_insn_and_splits.
2065         Force the modulus result to be a GPR and split the instruction into
2066         a division followed by an MFHI after reload.
2067         (<u>divmod<GPR:mode>4_hilo_<HILO:mode>): New instruction.
2068         (*lea_high64): Use d_operand in the define_peephole2.  Likewise
2069         the MIPS16 HIGH define_split.
2070         (*movdi_32bit, *movdi_gp32_fp64, *movdi_32bit_mips16): Change type
2071         of acc<->gpr moves to "multi".
2072         (*movdi_64bit): Replace the single "x" alternative with
2073         alternatives for moving into and out of "a".
2074         (*movhi_internal, *movqi_internal): Likewise.  Use mips_output_move.
2075         (*movsi_internal): Extend the "d<-A" alternative to "d<-a".
2076         (*movdi_64bit_mips16, *movsi_mips16): Add d<-a alternatives.
2077         Use d_operand in the splitters.  Remove redundant CONST_INT checks.
2078         (*movhi_mips16, *movqi_mips16): Likewise.  Use mips_output_move.
2079         (movti): New expander.
2080         (*movti, *movti_mips16): New insns.
2081         (mfhilo_<mode>, *mfhilo_<mode>, *mfhilo_<mode>_macc): Delete.
2082         (mfhi<GPR:mode>_<HILO:mode>): New pattern.
2083         (mthi<GPR:mode>_<HILO:mode>): Likewise.
2084         * config/mips/predicates.md (fpr_operand): Delete.
2085         (d_operand): New predicate.
2086
2087 2008-06-09  Michael Meissner  <michael.meissner@amd.com>
2088
2089         * config.gcc (i[34567]86-*-*): Put test in quotes to prevent
2090         failure on some Bourne shells.
2091         (x86_64-*-*): Ditto.
2092
2093 2008-06-09  Kai Tietz  <kai.tietz@onevision.com>
2094
2095         * config/i386/cygming.h (TARGET_SUBTARGET64_DEFAULT): New.
2096
2097 2008-06-09  Eric Botcazou  <ebotcazou@libertysurf.fr>
2098
2099         * doc/install.texi (*-*-solaris2*): Remove obsolete contents.
2100         (sparc-sun-solaris2*): Likewise.
2101
2102 2008-06-09  Arnaud Charlet  <charlet@adacore.com
2103
2104         * doc/install.texi: Update requirements to build the Ada compiler.
2105
2106 2008-06-08  Steven Bosscher  <stevenb.gcc@gmail.com>
2107
2108         * df-scan.c (struct df_scan_problem_data): Remove the
2109         mw_link_pool alloc pool.
2110         (df_scan_free_internal): Don't free it.
2111         (df_scan_alloc): Don't allocate it.
2112         * df.h (struct df_link): Update comment.
2113
2114 2008-06-08  Nathan Sidwell  <nathan@codesourcery.com>
2115
2116         * except.h: Correct checks for when SJLJ exceptions must be used.
2117
2118 2008-06-08  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2119
2120         * doc/invoke.texi (Wenum-compare): Mention that it is enabled by
2121         default.
2122         
2123 2008-06-08  Joseph Myers  <joseph@codesourcery.com>
2124
2125         PR tree-optimization/36218
2126         * configure.ac: Use LDFLAGS="${LDFLAGS_FOR_BUILD}" when running
2127         configure for the build system.
2128         (BUILD_LDFLAGS): Define.
2129         * configure: Regenerate.
2130         * Makefile.in (BUILD_LDFLAGS): Define to @BUILD_LDFLAGS@.
2131
2132 2008-07-08  Anatoly Sokolov  <aesok@post.ru>
2133
2134         PR target/36424
2135         * config/avr/avr.h (HARD_REGNO_RENAME_OK): Define.
2136         * config/avr/avr.c (avr_hard_regno_rename_ok): New function. 
2137         * config/avr/avr-protos.h (avr_hard_regno_rename_ok): New prototype. 
2138
2139 2008-06-07  Danny Smith  <dannysmith@users.sourceforge.net>
2140
2141         * config/i386/cygming.h (MAYBE_UWIN_CPP_BUILTINS): Remove.
2142
2143 2008-06-07  Joseph Myers  <joseph@codesourcery.com>
2144
2145         * config.gcc (Obsolete configurations): Remove list of
2146         configurations.
2147         (Unsupported targets list): Add *-*-linux*aout*, *-*-linux*libc1*,
2148         *-*-solaris2.[0-6], *-*-solaris2.[0-6].*, *-*-sysv*.  Remove other
2149         targets matched by those patterns.
2150         (strongarm*-*-*, ep9312*-*-*, xscale-*-*, parisc*-*-*,
2151         m680[012]0-*-*, *-*-linux*libc1*, *-*-linux*aout*,
2152         alpha*-*-unicosmk*, strongarm*-*-freebsd*, ep9312-*-elf,
2153         arm*-*-kaos*, cris-*-aout, parisc*64*-*-linux*, parisc*-*-linux*,
2154         hppa1.1-*-pro*, hppa1.1-*-osf*, hppa1.1-*-bsd*,
2155         i[34567]86-sequent-ptx4*, i[34567]86-sequent-sysv4*,
2156         i[34567]86-*-beoself*, i[34567]86-*-beos*, i[34567]86-*-sco3.2v5*,
2157         i[34567]86-*-sysv5*, i[34567]86-*-sysv4*, i[34567]86-*-uwin*,
2158         i[34567]86-*-kaos*, m68020-*-elf*, m68010-*-netbsdelf*,
2159         mips-wrs-windiss, mt-*-elf, powerpc-*-beos*, powerpc-*-chorusos*,
2160         powerpc-wrs-windiss*, powerpcle-*-sysv*, powerpc-*-kaos*,
2161         powerpcle-*-kaos*, sh*-*-kaos*, sparc-*-sysv4*, strongarm-*-elf*,
2162         strongarm-*-pe, strongarm-*-kaos*, vax-*-bsd*, vax-*-sysv*,
2163         vax-*-ultrix*, xscale-*-elf, xscale-*-coff,
2164         i[34567]86-*-linux*aout*, i[34567]86-*-linux*libc1): Remove.
2165         Make code for Solaris 7 and greater unconditional for Solaris.
2166         (ep9312-*-*, parisc1*, m680[012]0-*-*, parisc*-*-*, mt-*-*):
2167         Remove --with-* handling.
2168         * config/rs6000/sysv4.h (-mwindiss): Remove from all specs.
2169         (LIB_WINDISS_SPEC, CPP_OS_WINDISS_SPEC, STARTFILE_WINDISS_SPEC,
2170         ENDFILE_WINDISS_SPEC, LINK_START_WINDISS_SPEC,
2171         LINK_OS_WINDISS_SPEC): Remove.
2172         * config/rs6000/sysv4.opt (mwindiss): Remove.
2173         * configure.ac (strongarm*-*-*, xscale*-*-*): Remove.
2174         * configure: Regenerate.
2175         * doc/cpp.texi: Don't mention BeOS.
2176         * doc/extend.texi (interrupt): Don't mention MS1.
2177         * doc/install.texi: (i386-@var{any}-sysv, m68k-bull-sysv,
2178         m68k-hp-hpux, m68000-hp-hpux, m68000-att-sysv,
2179         alphaev5-cray-unicosmk*, xscale-*-*, i?86-*-linux*aout,
2180         i?86-*-sco3.2v5*, i?86-*-udk, m68k-hp-hpux, powerpc-*-sysv4,
2181         powerpc-*-sysv4, powerpcle-*-sysv4, *-*-sysv*, vax-dec-ultrix):
2182         Remove.
2183         * doc/invoke.texi (MT Options): Remove.
2184         (-mwindiss): Remove.
2185         (CRIS Options): Remove cris-axis-aout references.
2186         (HPPA Options): Don't mention hppa1.1-*-pro.
2187         * doc/md.texi: (MorphoTech family): Remove.
2188         * libgcc2.c: Don't handle UWIN.
2189         * config/alpha/t-unicosmk: Remove.
2190         * config/alpha/unicosmk.h: Remove.
2191         * config/arm/kaos-arm.h: Remove.
2192         * config/arm/kaos-strongarm.h: Remove.
2193         * config/arm/strongarm-coff.h: Remove.
2194         * config/arm/strongarm-elf.h: Remove.
2195         * config/arm/strongarm-pe.h: Remove.
2196         * config/arm/t-strongarm-pe: Remove.
2197         * config/arm/t-xscale-coff: Remove.
2198         * config/arm/t-xscale-elf: Remove.
2199         * config/arm/xscale-coff.h: Remove.
2200         * config/arm/xscale-elf.h: Remove.
2201         * config/chorus.h: Remove.
2202         * config/cris/aout.h: Remove.
2203         * config/cris/aout.opt: Remove.
2204         * config/cris/t-aout: Remove.
2205         * config/i386/beos-elf.h: Remove.
2206         * config/i386/kaos-i386.h: Remove.
2207         * config/i386/ptx4-i.h: Remove.
2208         * config/i386/sco5.h: Remove.
2209         * config/i386/sco5.opt: Remove.
2210         * config/i386/sysv4-cpp.h: Remove.
2211         * config/i386/sysv5.h: Remove.
2212         * config/i386/t-beos: Remove.
2213         * config/i386/t-sco5: Remove.
2214         * config/i386/t-uwin: Remove.
2215         * config/i386/uwin.asm: Remove.
2216         * config/i386/uwin.h: Remove.
2217         * config/kaos.h: Remove.
2218         * config/mips/windiss.h: Remove.
2219         * config/mt: Remove directory.
2220         * config/pa/pa-osf.h: Remove.
2221         * config/pa/pa-pro-end.h: Remove.
2222         * config/pa/t-pro: Remove.
2223         * config/ptx4.h: Remove.
2224         * config/rs6000/beos.h: Remove.
2225         * config/rs6000/kaos-ppc.h: Remove.
2226         * config/rs6000/t-beos: Remove.
2227         * config/rs6000/windiss.h: Remove.
2228         * config/sh/kaos-sh.h: Remove.
2229         * config/sol2-6.h: Remove.
2230         * config/sparc/sol26-sld.h: Remove.
2231         * config/sparc/sysv4-only.h: Remove.
2232         * config/vax/bsd.h: Remove.
2233         * config/vax/t-memfuncs: Remove.
2234         * config/vax/ultrix.h: Remove.
2235         * config/vax/vaxv.h: Remove.
2236         * config/windiss.h: Remove.
2237
2238 2008-06-06  Uros Bizjak <ubizjak@gmail.com>
2239
2240         PR rtl-optimization/36438
2241         * cse.c (fold_rtx) [ASHIFT, LSHIFTRT, ASHIFTRT]: Break out early
2242         for vector shifts with constant scalar shift operands.
2243
2244 2008-06-06  Sandip Matte  <sandip@rmicorp.com>
2245
2246         * doc/invoke.texi: Document -march=xlr.
2247         * config/mips/xlr.md: New file.
2248         * config/mips/mips.md: Include it.
2249         (cpu): Add "xlr".
2250         * config/mips/mips.h (PROCESSOR_XLR): New processor_type.
2251         * config/mips/mips.c (mips_cpu_info_table): Add an XLR entry.
2252         (mips_rtx_cost_data): Likewise.
2253
2254 2008-06-06  Nathan Froyd  <froydnj@codesourcery.com>
2255
2256         * config/rs6000/rs6000.c (rs6000_mode_dependent_address): Remove
2257         PRE_INC and PRE_DEC cases.
2258
2259 2008-06-06  Jakub Jelinek  <jakub@redhat.com>
2260
2261         PR rtl-optimization/36419
2262         * except.c (expand_resx_expr): Call do_pending_stack_adjust () before
2263         the emitting jump insn.
2264
2265         PR target/36362
2266         * gimplify.c (gimplify_expr) <case TRUTH_NOT_EXPR>: If *expr_p type
2267         is not bool, boolify the whole *expr_p and convert to the desired type.
2268
2269 2008-06-06  Jakub Jelinek  <jakub@redhat.com>
2270
2271         * c-cppbuiltin.c (c_cpp_builtins): Change _OPENMP value to 200805.
2272         * langhooks.h (struct lang_hooks_for_decls): Add omp_finish_clause.
2273         Add omp_private_outer_ref hook, add another argument to
2274         omp_clause_default_ctor hook.
2275         * langhooks-def.h (LANG_HOOKS_OMP_FINISH_CLAUSE): Define.
2276         (LANG_HOOKS_OMP_PRIVATE_OUTER_REF): Define.
2277         (LANG_HOOKS_OMP_CLAUSE_DEFAULT_CTOR): Change to
2278         hook_tree_tree_tree_tree_null.
2279         (LANG_HOOKS_DECLS): Add LANG_HOOKS_OMP_FINISH_CLAUSE and
2280         LANG_HOOKS_OMP_PRIVATE_OUTER_REF.
2281         * hooks.c (hook_tree_tree_tree_tree_null): New function.
2282         * hooks.h (hook_tree_tree_tree_tree_null): New prototype.
2283         * tree.def (OMP_TASK): New tree code.
2284         * tree.h (OMP_TASK_COPYFN, OMP_TASK_ARG_SIZE, OMP_TASK_ARG_ALIGN,
2285         OMP_CLAUSE_PRIVATE_OUTER_REF, OMP_CLAUSE_LASTPRIVATE_STMT,
2286         OMP_CLAUSE_COLLAPSE_ITERVAR, OMP_CLAUSE_COLLAPSE_COUNT,
2287         OMP_TASKREG_CHECK, OMP_TASKREG_BODY, OMP_TASKREG_CLAUSES,
2288         OMP_TASKREG_FN, OMP_TASKREG_DATA_ARG, OMP_TASK_BODY,
2289         OMP_TASK_CLAUSES, OMP_TASK_FN, OMP_TASK_DATA_ARG,
2290         OMP_CLAUSE_COLLAPSE_EXPR): Define.
2291         (enum omp_clause_default_kind): Add OMP_CLAUSE_DEFAULT_FIRSTPRIVATE.
2292         (OMP_DIRECTIVE_P): Add OMP_TASK.
2293         (OMP_CLAUSE_COLLAPSE, OMP_CLAUSE_UNTIED): New clause codes.
2294         (OMP_CLAUSE_SCHEDULE_AUTO): New schedule kind.
2295         * tree.c (omp_clause_code_name): Add OMP_CLAUSE_COLLAPSE
2296         and OMP_CLAUSE_UNTIED entries.
2297         (omp_clause_num_ops): Likewise.  Increase OMP_CLAUSE_LASTPRIVATE
2298         num_ops to 2.
2299         (walk_tree_1): Handle OMP_CLAUSE_COLLAPSE and OMP_CLAUSE_UNTIED.
2300         Walk OMP_CLAUSE_LASTPRIVATE_STMT.
2301         * tree-pretty-print.c (dump_omp_clause): Handle
2302         OMP_CLAUSE_SCHEDULE_AUTO, OMP_CLAUSE_UNTIED, OMP_CLAUSE_COLLAPSE,
2303         OMP_CLAUSE_DEFAULT_FIRSTPRIVATE.
2304         (dump_generic_node): Handle OMP_TASK and collapsed OMP_FOR loops.
2305         * c-omp.c (c_finish_omp_for): Allow pointer iterators.  Remove
2306         warning about unsigned iterators.  Change decl/init/cond/incr
2307         arguments to TREE_VECs, check arguments for all collapsed loops.
2308         (c_finish_omp_taskwait): New function.
2309         (c_split_parallel_clauses): Put OMP_CLAUSE_COLLAPSE clause to
2310         ws_clauses.
2311         * c-parser.c (c_parser_omp_for_loop): Parse collapsed loops.  Call
2312         default_function_array_conversion on init.  Add par_clauses argument.
2313         If decl is present in parallel's lastprivate clause, change it to
2314         shared and add lastprivate clause for decl to OMP_FOR_CLAUSES.
2315         Add clauses argument, on success set OMP_FOR_CLAUSES to it.  Look up
2316         collapse count in clauses.
2317         (c_parser_omp_for, c_parser_omp_parallel): Adjust
2318         c_parser_omp_for_loop callers.
2319         (OMP_FOR_CLAUSE_MASK): Add 1 << PRAGMA_OMP_CLAUSE_COLLAPSE.
2320         (c_parser_pragma): Handle PRAGMA_OMP_TASKWAIT.
2321         (c_parser_omp_clause_name): Handle collapse and untied clauses.
2322         (c_parser_omp_clause_collapse, c_parser_omp_clause_untied): New
2323         functions.
2324         (c_parser_omp_clause_schedule): Handle schedule(auto).
2325         Include correct location in the error message.
2326         (c_parser_omp_all_clauses): Handle PRAGMA_OMP_CLAUSE_COLLAPSE
2327         and PRAGMA_OMP_CLAUSE_UNTIED.
2328         (OMP_TASK_CLAUSE_MASK): Define.
2329         (c_parser_omp_task, c_parser_omp_taskwait): New functions.
2330         (c_parser_omp_construct): Handle PRAGMA_OMP_TASK.
2331         * tree-nested.c (convert_nonlocal_omp_clauses,
2332         convert_local_omp_clauses): Handle OMP_CLAUSE_LASTPRIVATE_STMT,
2333         OMP_CLAUSE_REDUCTION_INIT, OMP_CLAUSE_REDUCTION_MERGE,
2334         OMP_CLAUSE_COLLAPSE and OMP_CLAUSE_UNTIED.
2335         Don't handle TREE_STATIC or DECL_EXTERNAL VAR_DECLs in
2336         OMP_CLAUSE_DECL.
2337         (conver_nonlocal_reference, convert_local_reference,
2338         convert_call_expr): Handle OMP_TASK the same as OMP_PARALLEL.  Use
2339         OMP_TASKREG_* macros rather than OMP_PARALLEL_*.
2340         (walk_omp_for): Adjust for OMP_FOR_{INIT,COND,INCR} changes.
2341         * tree-gimple.c (is_gimple_stmt): Handle OMP_TASK.
2342         * c-tree.h (c_begin_omp_task, c_finish_omp_task): New prototypes.
2343         * c-pragma.h (PRAGMA_OMP_TASK, PRAGMA_OMP_TASKWAIT): New.
2344         (PRAGMA_OMP_CLAUSE_COLLAPSE, PRAGMA_OMP_CLAUSE_UNTIED): New.
2345         * c-typeck.c (c_begin_omp_task, c_finish_omp_task): New functions.
2346         (c_finish_omp_clauses): Handle OMP_CLAUSE_COLLAPSE and
2347         OMP_CLAUSE_UNTIED.
2348         * c-pragma.c (init_pragma): Init omp task and omp taskwait pragmas.
2349         * c-common.h (c_finish_omp_taskwait): New prototype.
2350         * gimple-low.c (lower_stmt): Handle OMP_TASK.
2351         * tree-parloops.c (create_parallel_loop): Create 1 entry
2352         vectors for OMP_FOR_{INIT,COND,INCR}.
2353         * tree-cfg.c (remove_useless_stmts_1): Handle OMP_* containers.
2354         (make_edges): Handle OMP_TASK.
2355         * tree-ssa-operands.c (get_expr_operands): Handle collapsed OMP_FOR
2356         loops, adjust for OMP_FOR_{INIT,COND,INCR} changes.
2357         * tree-inline.c (estimate_num_insns_1): Handle OMP_TASK.
2358         * builtin-types.def (BT_PTR_ULONGLONG, BT_PTR_FN_VOID_PTR_PTR,
2359         BT_FN_BOOL_ULONGLONGPTR_ULONGLONGPTR,
2360         BT_FN_BOOL_BOOL_ULL_ULL_ULL_ULLPTR_ULLPTR,
2361         BT_FN_BOOL_BOOL_ULL_ULL_ULL_ULL_ULLPTR_ULLPTR,
2362         BT_FN_VOID_OMPFN_PTR_OMPCPYFN_LONG_LONG_BOOL_UINT): New.
2363         * omp-builtins.def (BUILT_IN_GOMP_TASK, BUILT_IN_GOMP_TASKWAIT,
2364         BUILT_IN_GOMP_LOOP_ULL_STATIC_START,
2365         BUILT_IN_GOMP_LOOP_ULL_DYNAMIC_START,
2366         BUILT_IN_GOMP_LOOP_ULL_GUIDED_START,
2367         BUILT_IN_GOMP_LOOP_ULL_RUNTIME_START,
2368         BUILT_IN_GOMP_LOOP_ULL_ORDERED_STATIC_START,
2369         BUILT_IN_GOMP_LOOP_ULL_ORDERED_DYNAMIC_START,
2370         BUILT_IN_GOMP_LOOP_ULL_ORDERED_GUIDED_START,
2371         BUILT_IN_GOMP_LOOP_ULL_ORDERED_RUNTIME_START,
2372         BUILT_IN_GOMP_LOOP_ULL_STATIC_NEXT,
2373         BUILT_IN_GOMP_LOOP_ULL_DYNAMIC_NEXT,
2374         BUILT_IN_GOMP_LOOP_ULL_GUIDED_NEXT,
2375         BUILT_IN_GOMP_LOOP_ULL_RUNTIME_NEXT,
2376         BUILT_IN_GOMP_LOOP_ULL_ORDERED_STATIC_NEXT,
2377         BUILT_IN_GOMP_LOOP_ULL_ORDERED_DYNAMIC_NEXT,
2378         BUILT_IN_GOMP_LOOP_ULL_ORDERED_GUIDED_NEXT,
2379         BUILT_IN_GOMP_LOOP_ULL_ORDERED_RUNTIME_NEXT): New builtins.
2380         * gimplify.c (gimplify_omp_for): Allow pointer type for decl,
2381         handle POINTER_PLUS_EXPR.  If loop counter has been replaced and
2382         original iterator is present in lastprivate clause or if
2383         collapse > 1, set OMP_CLAUSE_LASTPRIVATE_STMT.  Handle collapsed
2384         OMP_FOR loops, adjust for OMP_FOR_{INIT,COND,INCR} changes.
2385         (gimplify_expr): Handle OMP_SECTIONS_SWITCH and OMP_TASK.
2386         (enum gimplify_omp_var_data): Add GOVD_PRIVATE_OUTER_REF.
2387         (omp_notice_variable): Set GOVD_PRIVATE_OUTER_REF if needed,
2388         if it is set, lookup var in outer contexts too.  Handle
2389         OMP_CLAUSE_DEFAULT_FIRSTPRIVATE.  Handle vars that are supposed
2390         to be implicitly determined firstprivate for task regions.
2391         (gimplify_scan_omp_clauses): Set GOVD_PRIVATE_OUTER_REF if needed,
2392         if it is set, lookup var in outer contexts too.  Set
2393         OMP_CLAUSE_PRIVATE_OUTER_REF if GOVD_PRIVATE_OUTER_REF is set.
2394         Handle OMP_CLAUSE_LASTPRIVATE_STMT, OMP_CLAUSE_COLLAPSE and
2395         OMP_CLAUSE_UNTIED.  Take region_type as last argument
2396         instead of in_parallel and in_combined_parallel.
2397         (gimplify_omp_parallel, gimplify_omp_for, gimplify_omp_workshare):
2398         Adjust callers.
2399         (gimplify_adjust_omp_clauses_1): Set OMP_CLAUSE_PRIVATE_OUTER_REF if
2400         GOVD_PRIVATE_OUTER_REF is set.  Call omp_finish_clause langhook.
2401         (new_omp_context): Set default_kind to
2402         OMP_CLAUSE_DEFAULT_UNSPECIFIED for OMP_TASK regions.
2403         (omp_region_type): New enum.
2404         (struct gimplify_omp_ctx): Remove is_parallel and is_combined_parallel
2405         fields, add region_type.
2406         (new_omp_context): Take region_type as argument instead of is_parallel
2407         and is_combined_parallel.
2408         (gimple_add_tmp_var, omp_firstprivatize_variable, omp_notice_variable,
2409         omp_is_private, omp_check_private): Adjust ctx->is_parallel and
2410         ctx->is_combined_parallel checks.
2411         (gimplify_omp_task): New function.
2412         (gimplify_adjust_omp_clauses): Handle OMP_CLAUSE_COLLAPSE and
2413         OMP_CLAUSE_UNTIED.
2414         * omp-low.c (extract_omp_for_data): Use schedule(static)
2415         for schedule(auto).  Handle pointer and unsigned iterators.
2416         Compute fd->iter_type.  Handle POINTER_PLUS_EXPR increments.
2417         Add loops argument.  Extract data for collapsed OMP_FOR loops.
2418         (expand_parallel_call): Assert sched_kind isn't auto,
2419         map runtime schedule to index 3.
2420         (struct omp_for_data_loop): New type.
2421         (struct omp_for_data): Remove v, n1, n2, step, cond_code fields.
2422         Add loop, loops, collapse and iter_type fields.
2423         (workshare_safe_to_combine_p): Disallow combined for if
2424         iter_type is unsigned long long.  Don't combine collapse > 1 loops
2425         unless all bounds and steps are constant.  Adjust extract_omp_for_data
2426         caller.
2427         (expand_omp_for_generic): Handle pointer, unsigned and long long
2428         iterators.  Handle collapsed OMP_FOR loops.  Adjust
2429         for struct omp_for_data changes.  If libgomp function doesn't return
2430         boolean_type_node, add comparison of the return value with 0.
2431         (expand_omp_for_static_nochunk, expand_omp_for_static_chunk): Handle
2432         pointer, unsigned and long long iterators.  Adjust for struct
2433         omp_for_data changes.
2434         (expand_omp_for): Assert sched_kind isn't auto, map runtime schedule
2435         to index 3.  Use GOMP_loop_ull*{start,next} if iter_type is
2436         unsigned long long.  Allocate loops array, pass it to
2437         extract_omp_for_data.  For collapse > 1 loops use always
2438         expand_omp_for_generic.
2439         (omp_context): Add sfield_map and srecord_type fields.
2440         (is_task_ctx, lookup_sfield): New functions.
2441         (use_pointer_for_field): Use is_task_ctx helper.  Change first
2442         argument's type from const_tree to tree.  Clarify comment.
2443         In OMP_TASK disallow copy-in/out sharing.
2444         (build_sender_ref): Call lookup_sfield instead of lookup_field.
2445         (install_var_field): Add mask argument.  Populate both record_type
2446         and srecord_type if needed.
2447         (delete_omp_context): Destroy sfield_map, clear DECL_ABSTRACT_ORIGIN
2448         in srecord_type.
2449         (fixup_child_record_type): Also remap FIELD_DECL's DECL_SIZE{,_UNIT}
2450         and DECL_FIELD_OFFSET.
2451         (scan_sharing_clauses): Adjust install_var_field callers.  For
2452         firstprivate clauses on explicit tasks allocate the var by value in
2453         record_type unconditionally, rather than by reference.
2454         Handle OMP_CLAUSE_PRIVATE_OUTER_REF.  Scan OMP_CLAUSE_LASTPRIVATE_STMT.
2455         Use is_taskreg_ctx instead of is_parallel_ctx.
2456         Handle OMP_CLAUSE_COLLAPSE and OMP_CLAUSE_UNTIED.
2457         (create_omp_child_function_name): Add task_copy argument, use
2458         *_omp_cpyfn* names if it is true.
2459         (create_omp_child_function): Add task_copy argument, if true create
2460         *_omp_cpyfn* helper function.
2461         (scan_omp_parallel): Adjust create_omp_child_function callers.
2462         Rename parallel_nesting_level to taskreg_nesting_level.
2463         (scan_omp_task): New function.
2464         (lower_rec_input_clauses): Don't run constructors for firstprivate
2465         explicit task vars which are initialized by *_omp_cpyfn*.  
2466         Pass outer var ref to omp_clause_default_ctor hook if
2467         OMP_CLAUSE_PRIVATE_OUTER_REF or OMP_CLAUSE_LASTPRIVATE.
2468         Replace OMP_CLAUSE_REDUCTION_PLACEHOLDER decls in
2469         OMP_CLAUSE_REDUCTION_INIT.
2470         (lower_send_clauses): Clear DECL_ABSTRACT_ORIGIN if in task to
2471         avoid duplicate setting of fields.  Handle
2472         OMP_CLAUSE_PRIVATE_OUTER_REF.
2473         (lower_send_shared_vars): Use srecord_type if non-NULL.  Don't
2474         copy-out if TREE_READONLY, only copy-in.
2475         (expand_task_copyfn): New function.
2476         (expand_task_call): New function.
2477         (struct omp_taskcopy_context): New type.
2478         (task_copyfn_copy_decl, task_copyfn_remap_type, create_task_copyfn):
2479         New functions.
2480         (lower_omp_parallel): Rename to...
2481         (lower_omp_taskreg): ... this.  Use OMP_TASKREG_* macros where needed.
2482         Call create_task_copyfn if srecord_type is needed.  Adjust
2483         sender_decl type.
2484         (task_shared_vars): New variable.
2485         (check_omp_nesting_restrictions): Warn if work-sharing,
2486         barrier, master or ordered region is closely nested inside OMP_TASK.
2487         Add warnings for barrier if closely nested inside of work-sharing,
2488         ordered, or master region.
2489         (scan_omp_1): Call check_omp_nesting_restrictions even for
2490         GOMP_barrier calls.  Rename parallel_nesting_level to
2491         taskreg_nesting_level.  Handle OMP_TASK.
2492         (lower_lastprivate_clauses): Even if some lastprivate is found on a
2493         work-sharing construct, continue looking for them on parent parallel
2494         construct.
2495         (lower_omp_for_lastprivate): Add lastprivate clauses
2496         to the beginning of dlist rather than end.  Adjust for struct
2497         omp_for_data changes.
2498         (lower_omp_for): Add rec input clauses before OMP_FOR_PRE_BODY,
2499         not after it.  Handle collapsed OMP_FOR loops, adjust for
2500         OMP_FOR_{INIT,COND,INCR} changes, adjust extract_omp_for_data caller.
2501         (get_ws_args_for): Adjust extract_omp_for_data caller.
2502         (scan_omp_for): Handle collapsed OMP_FOR
2503         loops, adjust for OMP_FOR_{INIT,COND,INCR} changes.
2504         (lower_omp_single_simple): If libgomp function doesn't return
2505         boolean_type_node, add comparison of the return value with 0.
2506         (diagnose_sb_1, diagnose_sb_2): Handle collapsed OMP_FOR
2507         loops, adjust for OMP_FOR_{INIT,COND,INCR} changes.  Handle OMP_TASK.
2508         (parallel_nesting_level): Rename to...
2509         (taskreg_nesting_level): ... this.
2510         (is_taskreg_ctx): New function.
2511         (build_outer_var_ref, omp_copy_decl): Use is_taskreg_ctx instead
2512         of is_parallel_ctx.
2513         (execute_lower_omp): Rename parallel_nesting_level to
2514         taskreg_nesting_level.
2515         (expand_omp_parallel): Rename to...
2516         (expand_omp_taskreg): ... this.  Use OMP_TASKREG_* macros where needed.
2517         Call omp_task_call for OMP_TASK regions.
2518         (expand_omp): Adjust caller, handle OMP_TASK.
2519         (lower_omp_1): Adjust lower_omp_taskreg caller, handle OMP_TASK.
2520
2521         * bitmap.c (bitmap_default_obstack_depth): New variable.
2522         (bitmap_obstack_initialize, bitmap_obstack_release): Do nothing
2523         if argument is NULL and bitmap_default_obstack is already initialized.
2524         * ipa-struct-reorg.c (do_reorg_1): Call bitmap_obstack_release
2525         at the end.
2526         * matrix-reorg.c (matrix_reorg): Likewise.
2527
2528 2008-06-06  Uros Bizjak  <ubizjak@gmail.com>
2529
2530         * config/i386/i386.md (*indirect_jump): Macroize using P
2531         mode iterator.  Remove !TARGET_64BIT from insn constraints.
2532         (*tablejump_1): Ditto.
2533         (*indirect_jump_rex64): Remove insn pattern.
2534         (*tablejump_1_rex64): Ditto.
2535         (eh_return_<mode>): Macroize using P mode iterator from eh_return_di
2536         and eh_return_si insn patterns.
2537
2538 2008-06-06  Richard Guenther  <rguenther@suse.de>
2539
2540         * tree-ssa-structalias.c (merge_smts_into): Remove.
2541         (find_what_p_points_to): Do not bother to compute the
2542         points-to set for pt_anything pointers.
2543         * tree-ssa-operands.c (get_addr_dereference_operands): No NMT
2544         for pt_anything pointers is ok.
2545
2546 2008-06-06  Jan Hubicka  <jh@suse.cz>
2547
2548         * passes.c (execute_ipa_pass_list): Do not regenerate summaries.
2549
2550 2008-06-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2551
2552         * cgraph.c: Fix typos in comments.
2553         (cgraph_availability_names): Fix string typo.
2554         * fold-const.c: Fix typos in comments.
2555         (fold_binary): Fix typo in warning.
2556         * genautomata.c: Fix typos in comments.
2557         (check_presence_pattern_sets): Fix typo in local variable.
2558         (output_description): Fix typo in output.
2559         * ggc-zone.c (ggc_pch_finish): Fix typo in error message.
2560         * hwint.h: Likewise.
2561         * matrix-reorg.c (check_allocation_function): Likewise.
2562         * omega.c (smooth_weird_equations): Likewise.
2563         * auto-inc-dec.c: Fix typos in comments.
2564         * bb-reorder.c: Likewise.
2565         * builtins.c: Likewise.
2566         * c-common.c: Likewise.
2567         * c-cppbuiltin.c: Likewise.
2568         * c-parser.c: Likewise.
2569         * c-pretty-print.c: Likewise.
2570         * cfgcleanup.c: Likewise.
2571         * cfgexpand.c: Likewise.
2572         * cfghooks.c: Likewise.
2573         * cfglayout.c: Likewise.
2574         * cfgloopmanip.c: Likewise.
2575         * cgraphunit.c: Likewise.
2576         * coverage.c: Likewise.
2577         * dbxout.c: Likewise.
2578         * df-byte-scan.c: Likewise.
2579         * df-core.c: Likewise.
2580         * df-problems.c: Likewise.
2581         * df-scan.c: Likewise.
2582         * dfp.c: Likewise.
2583         * dominance.c: Likewise.
2584         * domwalk.c: Likewise.
2585         * dse.c: Likewise.
2586         * dwarf2out.c: Likewise.
2587         * emit-rtl.c: Likewise.
2588         * et-forest.c: Likewise.
2589         * function.c: Likewise.
2590         * function.h: Likewise.
2591         * gcc.c: Likewise.
2592         * gcov-io.c: Likewise.
2593         * gcov.c: Likewise.
2594         * gcse.c: Likewise.
2595         * genattrtab.c: Likewise.
2596         * ggc-page.c: Likewise.
2597         * gimplify.c: Likewise.
2598         * gthr-lynx.h: Likewise.
2599         * haifa-sched.c: Likewise.
2600         * ipa-cp.c: Likewise.
2601         * ipa-inline.c: Likewise.
2602         * ipa-prop.h: Likewise.
2603         * ipa-pure-const.c: Likewise.
2604         * ipa-struct-reorg.c: Likewise.
2605         * ipa-struct-reorg.h: Likewise.
2606         * ipa-type-escape.c: Likewise.
2607         * ipa.c: Likewise.
2608         * loop-doloop.c: Likewise.
2609         * mips-tfile.c: Likewise.
2610         * mkmap-flat.awk: Likewise.
2611         * mkmap-symver.awk: Likewise.
2612         * modulo-sched.c: Likewise.
2613         * omp-low.c: Likewise.
2614         * optabs.c: Likewise.
2615         * optabs.h: Likewise.
2616         * opts.c: Likewise.
2617         * passes.c: Likewise.
2618         * postreload-gcse.c: Likewise.
2619         * postreload.c: Likewise.
2620         * predict.c: Likewise.
2621         * pretty-print.h: Likewise.
2622         * profile.c: Likewise.
2623         * protoize.c: Likewise.
2624         * ra-conflict.c: Likewise.
2625         * real.c: Likewise.
2626         * recog.c: Likewise.
2627         * regclass.c: Likewise.
2628         * regs.h: Likewise.
2629         * reload.c: Likewise.
2630         * rtl-error.c: Likewise.
2631         * rtlanal.c: Likewise.
2632         * scan.h: Likewise.
2633         * sched-rgn.c: Likewise.
2634         * see.c: Likewise.
2635         * stmt.c: Likewise.
2636         * target.h: Likewise.
2637         * tree-dfa.c: Likewise.
2638         * tree-eh.c: Likewise.
2639         * tree-flow-inline.h: Likewise.
2640         * tree-inline.c: Likewise.
2641         * tree-into-ssa.c: Likewise.
2642         * tree-loop-distribution.c: Likewise.
2643         * tree-nested.c: Likewise.
2644         * tree-parloops.c: Likewise.
2645         * tree-pass.h: Likewise.
2646         * tree-pretty-print.c: Likewise.
2647         * tree-profile.c: Likewise.
2648         * tree-scalar-evolution.c: Likewise.
2649         * tree-sra.c: Likewise.
2650         * tree-ssa-alias-warnings.c: Likewise.
2651         * tree-ssa-ccp.c: Likewise.
2652         * tree-ssa-coalesce.c: Likewise.
2653         * tree-ssa-dom.c: Likewise.
2654         * tree-ssa-dse.c: Likewise.
2655         * tree-ssa-forwprop.c: Likewise.
2656         * tree-ssa-live.c: Likewise.
2657         * tree-ssa-live.h: Likewise.
2658         * tree-ssa-loop-im.c: Likewise.
2659         * tree-ssa-loop-ivopts.c: Likewise.
2660         * tree-ssa-loop-niter.c: Likewise.
2661         * tree-ssa-loop-prefetch.c: Likewise.
2662         * tree-ssa-phiopt.c: Likewise.
2663         * tree-ssa-phiprop.c: Likewise.
2664         * tree-ssa-sccvn.c: Likewise.
2665         * tree-ssa-ter.c: Likewise.
2666         * tree-ssa-threadupdate.c: Likewise.
2667         * tree-ssa.c: Likewise.
2668         * tree-vect-analyze.c: Likewise.
2669         * tree-vect-transform.c: Likewise.
2670         * tree-vectorizer.c: Likewise.
2671         * tree-vn.c: Likewise.
2672         * tree-vrp.c: Likewise.
2673         * tree.c: Likewise.
2674         * tree.def: Likewise.
2675         * tree.h: Likewise.
2676         * unwind-dw2-fde.c: Likewise.
2677         * unwind.inc: Likewise.
2678         * value-prof.c: Likewise.
2679         * vmsdbgout.c: Likewise.
2680
2681 2008-06-05  David Edelsohn  <edelsohn@gnu.org>
2682
2683         * config/rs6000/xcoff.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Do not
2684         always place FP constants in the TOC for TARGET_POWERPC64.
2685         * config/rs6000/linux64.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Same.
2686
2687 2008-06-05  Joseph Myers  <joseph@codesourcery.com>
2688
2689         * config.gcc (powerpc-*-linux*spe*): Use t-dfprules.
2690         * config/rs6000/dfp.md (negdd2, absdd2, negtd2, abstd2): Do not
2691         enable for TARGET_E500_DOUBLE.
2692         (*movdd_softfloat32): Also enable for !TARGET_FPRS.
2693         * config/rs6000/rs6000.c (invalid_e500_subreg): Treat decimal
2694         floating-point modes like integer modes for E500 double.
2695         (rs6000_legitimate_offset_address_p): Likewise.
2696         (rs6000_legitimize_address): Likewise.  Do not allow REG+REG
2697         addressing for DDmode for E500 double.
2698         (rs6000_hard_regno_nregs): Do not treat decimal floating-point
2699         modes as using 64-bits of registers for E500 double.
2700         (spe_build_register_parallel): Do not handle DDmode or TDmode.
2701         (rs6000_spe_function_arg): Do not handle DDmode or TDmode
2702         specially for E500 double.
2703         (function_arg): Do not call rs6000_spe_function_arg for DDmode or
2704         TDmode for E500 double.
2705         (rs6000_gimplify_va_arg): Only handle SDmode in registers
2706         specially if TARGET_HARD_FLOAT && TARGET_FPRS.
2707         (rs6000_split_multireg_move): Do not handle TDmode specially for
2708         E500 double.
2709         (spe_func_has_64bit_regs_p): Do not treat DDmode or TDmode as
2710         using 64-bit registers for E500 double.
2711         (emit_frame_save): Do not handle DDmode specially for E500 double.
2712         (gen_frame_mem_offset): Likewise.
2713         (rs6000_function_value): Do not call spe_build_register_parallel
2714         for DDmode or TDmode.
2715         (rs6000_libcall_value): Likewise.
2716         * config/rs6000/rs6000.h (LOCAL_ALIGNMENT, MEMBER_TYPE_FORCES_BLK,
2717         DATA_ALIGNMENT, CLASS_MAX_NREGS): Do not handle DDmode specially
2718         for E500 double.
2719
2720 2008-06-04  H.J. Lu  <hongjiu.lu@intel.com>
2721
2722         * config/i386/i386.c (setup_incoming_varargs_64): Fix a typo
2723         in comments.
2724
2725 2008-06-04  Junjie Gu <jgu@tensilica.com>
2726
2727         * config/xtensa/lib2funcs.S (__xtensa_nonlocal_goto): Use unsigned
2728         comparison for frame pointers.
2729
2730 2008-06-04  Andy Hutchinson  <hutchinsonandy@aim.com>
2731
2732         PR target/27386
2733         * config/avr/avr.h (PUSH_ROUNDING): Remove.
2734
2735 2008-06-04  Andy Hutchinson  <hutchinsonandy@aim.com>
2736
2737         PR target/30243
2738         * builtins.c (expand_builtin_signbit): Don't take lowpart when
2739         register is already smaller or equal to required mode. 
2740
2741 2008-06-04  Xinliang David Li  <davidxl@google.com>
2742
2743         * tree-call-cdce.c: New file. 
2744         (cond_dead_built_in_calls): New static variable.
2745         (input_domain): New struct.
2746         (check_pow): New function.
2747         (check_builtin_call): Ditto.
2748         (check_target_format): Ditto.
2749         (is_call_dce_candidate): Ditto.
2750         (gen_one_condition): Ditto.
2751         (gen_conditions_for_domain): Ditto.
2752         (get_domain): Ditto.
2753         (gen_conditions_for_pow_cst_base): Ditto.
2754         (gen_conditions_for_pow_int_base): Ditto.
2755         (gen_conditions_for_pow): Ditto.
2756         (get_no_error_domain): Ditto.
2757         (gen_shrink_wrap_conditions): Ditto.
2758         (shrink_wrap_one_built_in_call): Ditto.
2759         (shink_wrap_conditional_dead_built_in_calls): Ditto.
2760         (tree_call_cdce): Ditto.
2761         (gate_call_cdce): Ditto.
2762         (pass_call_cdce): New gimple pass.
2763         * passes.c: (init_optimization_passes): New pass.
2764         * tree-pass.h: New pass declaration.
2765         * opts.c (decode_options): New flag setting.
2766         * common.opt: Add -ftree-builtin-call-dce flag.
2767         * Makefile.in: Add new source file.
2768         * tempvar.def: New tv_id.
2769         * doc/invoke.texi (-ftree-builtin-call-dce): New flag.
2770
2771 2008-06-04  Richard Guenther  <rguenther@suse.de>
2772
2773         * tree-flow-inline.h (is_global_var): Do not check TREE_STATIC on MTAGs.
2774         (is_call_clobbered): Always check var_ann->call_clobbered.
2775         (mark_call_clobbered): Always set var_ann->call_clobbered.
2776         (clear_call_clobbered): Always clear var_ann->call_clobbered.
2777         * tree-ssa-alias.c (mark_non_addressable): Use clear_call_clobbered.
2778         (reset_alias_info): Clear call clobbering info on MTAGs and
2779         globals as well.
2780         (set_pt_anything): Set pt_global_mem.
2781         (create_tag_raw): Adjust comment.
2782         (may_be_aliased): Do not check TREE_PUBLIC on MTAGs.
2783
2784 2008-06-04  Joseph Myers  <joseph@codesourcery.com>
2785             Maxim Kuvyrkov  <maxim@codesourcery.com>
2786
2787         * config/m68k/m68k.opt (mxgot): New option.
2788         * config/m68k/m68k.c (legitimize_pic_address): Handle -mxgot.
2789         (m68k_output_addr_const_extra): New.
2790         * config/m68k/m68k.h (OUTPUT_ADDR_CONST_EXTRA): New.
2791         * config/m68k/m68k-protos.h (m68k_output_addr_const_extra): Declare.
2792         * config/m68k/m68k.md (UNSPEC_GOTOFF): Define.
2793         * doc/invoke.texi (M680x0 Options): Document -mxgot.
2794
2795 2008-06-04  Richard Guenther  <rguenther@suse.de>
2796
2797         * tree-ssa-structalias.c (handle_ptr_arith): Correctly handle
2798         negative or non-representable offsets.
2799
2800 2008-06-03  H.J. Lu  <hongjiu.lu@intel.com>
2801
2802         * config/i386/i386.c (ix86_gen_leave): New.
2803         (ix86_gen_pop1): Likewise.
2804         (ix86_gen_add3): Likewise.
2805         (ix86_gen_sub3): Likewise.
2806         (ix86_gen_sub3_carry): Likewise.
2807         (ix86_gen_one_cmpl2): Likewise.
2808         (ix86_gen_monitor): Likewise.
2809         (override_options): Initialize ix86_gen_leave, ix86_gen_pop1,
2810         ix86_gen_add3, ix86_gen_sub3, ix86_gen_sub3_carry,
2811         ix86_gen_one_cmpl2 and ix86_gen_monitor.
2812         (ix86_file_end): Use mov%z0 instead of mov{q}/mov{l}.
2813         (output_set_got): Use mov%z0, pop%z0 and add%z0 instead of
2814         mov{q}/mov{l}, pop{q}/pop{l} and add{q}/add{l}.
2815         (ix86_expand_epilogue): Updated.
2816         (print_operand): Handle integer register operand for 'z'.
2817         (ix86_expand_strlensi_unroll_1): Likewise.
2818         (ix86_expand_strlen): Likewise.
2819         (ix86_expand_builtin): Likewise.
2820         (x86_output_mi_thunk): Use mov%z1 and add%z1 instead of
2821         mov{q}/mov{l} and add{q}/add{l}.
2822
2823 2008-06-03  Kai Tietz  <kai.tietz@onevision.com>
2824
2825         * config/i386/i386.md (P): New mode iterator.
2826         (SFmode push_operand splitter): Macroize DImode and SImode pushes
2827         using P mode iterator.
2828         (DFmode push_operand splitter): Ditto.
2829         (XFmode push_operand splitter): Ditto.
2830         (DFmode float_extend SFmode push_operand splitter): Ditto.
2831         (XFmode float_extend SFmode push_operand splitter): Do not generate
2832         SImode pushes for 64bit target.  Macroize Dimode and SImode
2833         pushes using P mode iterator.
2834         (XFmode float_extend DFmode push_operand splitter): Ditto.
2835
2836 2008-06-03  Kai Tietz  <kai.tietz@onevision.com>
2837
2838         * config/i386/i386-protos.h (ix86_reg_parm_stack_space): New.
2839         * config/i386/i386.h (ix86_reg_parm_stack_space): Removed prototype.
2840         * config/i386/i386.c (ix86_reg_parm_stack_space): Changed
2841         return type to int.
2842         (ix86_call_abi_override): Remove check for call_used_regs.
2843
2844 2008-06-03  Richard Guenther  <rguenther@suse.de>
2845
2846         * tree-ssa-structalias.c (find_func_aliases): Add constraints
2847         for the lhs of calls if the return type contains pointers.
2848
2849 2008-06-03  Kai Tietz  <kai.tietz@onevision.com>
2850
2851         * doc/tm.texi (OVERRIDE_ABI_FORMAT): New.
2852         * doc/extend.texi (ms_abi,sysv_abi): New attribute description.
2853         * function.c (allocate_struct_function): Use of OVERRIDE_ABI_FORMAT.
2854         * config/i386/cygming.h (TARGET_64BIT_MS_ABI): Make use
2855         of cfun and DEFAULT_ABI to deceide abi mode.
2856         (DEFAULT_ABI): New.
2857         (REG_PARM_STACK_SPACE): Removed.
2858         (OUTGOING_REG_PARM_STACK_SPACE): Removed.
2859         (STACK_BOUNDARY): Use default target to deceide stack boundary.
2860         * config/i386/i386-protos.h (ix86_cfun_abi): New.
2861         (ix86_function_abi): Likewise.
2862         (ix86_function_type_abi): Likewise.
2863         (ix86_call_abi_override): Likewise.
2864         * confid/i386/i386.md (SSE_REGPARM_MAX): Replaced by abi
2865         specific define X86_64_SSE_REGPARM_MAX/X64_SSE_REGPARM_MAX.
2866         * config/i386/i386.c (override_options): Replace TARGET_64BIT_MS_ABI.
2867         (X86_64_VARARGS_SIZE): Replace REGPARM_MAX and SSE_REGPARM_MAX by abi
2868         specific defines.
2869         (X86_64_REGPARM_MAX): New.
2870         (X86_64_SSE_REGPARM_MAX): New.
2871         (X64_REGPARM_MAX): New.
2872         (X64_SSE_REGPARM_MAX): New.
2873         (X86_32_REGPARM_MAX): New.
2874         (X86_32_SSE_REGPARM_MAX): New.
2875         (ix86_handle_cconv_attribute): Replace TARGET_64BIT_MS_ABI.
2876         (ix86_function_regparm): Handle user calling abi.
2877         (ix86_function_arg_regno_p): Replace TARGET_64BIT_MS_ABI
2878         by DEFAULT_ABI versus SYSV_ABI check.
2879         (ix86_reg_parm_stack_space): New.
2880         (ix86_function_type_abi): New.
2881         (ix86_call_abi_override): New.
2882         (ix86_function_abi): New.
2883         (ix86_cfun_abi): New.
2884         (init_cumulative_args): Call abi specific initialization.
2885         (function_arg_advance): Remove TARGET_64BIT_MS_ABI.
2886         (function_arg_64): Extend SSE_REGPARM_MAX check.
2887         (function_arg (): Remove TARGET_64BIT_MS_ABI.
2888         (ix86_pass_by_reference): Likewise.
2889         (ix86_function_value_regno_p): Likewise.
2890         (function_value_64): Replace REGPARM_MAX, and SSE_REGPARM_MAX.
2891         (ix86_function_value_1): Replace TARGET_64BIT_MS_ABI.
2892         (return_in_memory_ms_64): Replace TARGET_64BIT_MS_ABI.
2893         (ix86_build_builtin_va_list): Replace TARGET_64BIT_MS_ABI.
2894         (setup_incoming_varargs_64): Adjust regparm for call abi.
2895         (ix86_setup_incoming_varargs): Replace TARGET_64BIT_MS_ABI.
2896         (ix86_va_start): Likewise.
2897         (ix86_gimplify_va_arg): Likewise.
2898         (ix86_expand_prologue): Likewise.
2899         (output_pic_addr_const): Likewise.
2900         (ix86_init_machine_status): Initialize call_abi by DEFAULT_ABI.
2901         (x86_this_parameter): Replace TARGET_64BIT_MS_ABI.
2902         (x86_output_mi_thunk): Likewise.
2903         (x86_function_profiler): Likewise.
2904         * config/i386/i386.h (TARGET_64BIT_MS_ABI): Use ix64_cfun_abi.
2905         (SYSV_ABI, MS_ABI): New constants.
2906         (DEFAULT_ABI): New.
2907         (init_regs): Add prototype of function in regclass.c file.
2908         (OVERRIDE_ABI_FORMAT): New.
2909         (CONDITIONAL_REGISTER_USAGE): Remove TARGET_64BIT_MS_ABI part.
2910         (REG_PARM_STACK_SPACE): Use ix86_reg_parm_stack_space.
2911         (OUTGOING_REG_PARM_STACK_SPACE): New.
2912         (ix86_reg_parm_stack_space): New prototype.
2913         (CUMULATIVE_ARGS): Add call_abi member.
2914         (machine_function): Add call_abi member.
2915         * config/i386/mingw32.h (EXTRA_OS_CPP_BUILTINS): Replace
2916         TARGET_64BIT_MS_ABI by DEFAULT_ABI compare to MS_ABI.
2917
2918 2008-06-02  Andy Hutchinson  <hutchinsonandy@aim.com> 
2919
2920         PR target/34879
2921         * config/avr/avr.c (TARGET_BUILTIN_SETJMP_FRAME_VALUE): Redefine.
2922         (avr_builtin_setjmp_frame_value): New function.
2923         * config/avr/avr.md (nonlocal_goto_receiver): Define.
2924         (nonlocal_goto): Define.
2925
2926 2008-06-02  Richard Sandiford  <rdsandiford@googlemail.com>
2927
2928         * config/mips/mips.c (mips_emit_loadgp): Return early if
2929         there is nothing do to, otherwise emit a blockage if
2930         !TARGET_EXPLICIT_RELOCS || crtl->profile.
2931         * config/mips/mips.md (loadgp_blockage): Use SI rather than DI.
2932
2933 2008-06-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2934
2935         * configure.ac: Drop unneeded backslash ending up in config.in.
2936         * acinclude.m4: Likewise.
2937         * config.in: Regenerate.
2938
2939 2008-05-26  Jan Hubicka  <jh@suse.cz>
2940
2941         * predict.c (maybe_hot_frequency_p): Break out of...
2942         (maybe_hot_bb_p): ... here.
2943         (maybe_hot_edge_p): New.
2944         * tree-ssa-coalesce.c (coalesce_cost_edge): Compute cost based on edge.
2945         * basic-block.h (maybe_hot_edge_p): Declare.
2946
2947 2008-05-31  Uros Bizjak  <ubizjak@gmail.com>
2948
2949         * config/i386/i386.md (*cmpfp_<mode>): Enable for optimize_size.
2950         (*cmpfp_<mode>_cc): Ditto.
2951         (*fp_jcc_8<mode>_387): Ditto.
2952         (*fop_<MODEF:mode>_2_i387): Ditto.
2953         (*fop_<MODEF:mode>_3_i387): Ditto.
2954         (*fop_xf_2_i387): Ditto.
2955         (*fop_xf_3_i387): Ditto.
2956
2957 2008-06-02  Tomas Bily  <tbily@suse.cz>
2958
2959         * tree-ssa-ifcombine.c (get_name_for_bit_test): Use CONVERT_EXPR_P.
2960
2961 2008-06-01  Richard Sandiford  <rdsandiford@googlemail.com>
2962
2963         * config/mips/mips.c (mips_valid_offset_p): New function.
2964         (mips_valid_lo_sum_p): Likewise.
2965         (mips_classify_address): Use them.
2966         (mips_force_address): New function.
2967         (mips_legitimize_address): Use it.
2968         * config/mips/mips.md (MOVE128): New mode iterator.
2969         (movtf): Require TARGET_64BIT.  Remove empty strings.
2970         (*movtf_internal): Rename to...
2971         (*movtf): ...this and require !TARGET_MIPS16.  Use "m" instead
2972         of "R" and use {,fp}{load,store} attributes instead of "multi".
2973         Use a separate define_split.
2974         (*movtf_mips16): New pattern.
2975
2976 2008-06-01  Richard Sandiford  <rdsandiford@googlemail.com>
2977
2978         * config/mips/mips-protos.h (mips_expand_before_return): Declare.
2979         * config/mips/mips.c (mips_expand_before_return): New function.
2980         (mips_expand_epilogue): Call it.
2981         * config/mips/mips.md (return): Turn into a define_expand.
2982         (*return): New insn.
2983
2984 2008-06-01  Richard Sandiford  <rdsandiford@googlemail.com>
2985
2986         * rtl.h (emit_clobber, gen_clobber, emit_use, gen_use): Declare.
2987         * emit-rtl.c (emit_clobber, gen_clobber, emit_use, gen_use): New
2988         functions.  Do not emit uses and clobbers of CONCATs; individually
2989         use and clobber their operands.
2990         * builtins.c (expand_builtin_setjmp_receiver): Use emit_clobber,
2991         gen_clobber, emit_use and gen_use.
2992         (expand_builtin_longjmp, expand_builtin_nonlocal_goto): Likewise.
2993         (expand_builtin_return): Likewise.
2994         * cfgbuild.c (count_basic_blocks): Likewise.
2995         * cfgrtl.c (rtl_flow_call_edges_add): Likewise.
2996         * explow.c (emit_stack_restore): Likewise.
2997         * expmed.c (extract_bit_field_1): Likewise.
2998         * expr.c (convert_move, emit_move_complex_parts): Likewise.
2999         (emit_move_multi_word, store_constructor): Likewise.
3000         * function.c (do_clobber_return_reg, do_use_return_reg): Likewise.
3001         (thread_prologue_and_epilogue_insns): Likewise.
3002         * lower-subreg.c (resolve_simple_move): Likewise.
3003         * optabs.c (widen_operand, expand_binop): Likewise.
3004         (expand_doubleword_bswap, emit_no_conflict_block): Likewise.
3005         * reload.c (find_reloads): Likewise.
3006         * reload1.c (eliminate_regs_in_insn): Likewise.
3007         * stmt.c (expand_nl_goto_receiver): Likewise.
3008         * config/alpha/alpha.md (builtin_longjmp): Likewise.
3009         * config/arc/arc.md (*movdi_insn, *movdf_insn): Likewise.
3010         * config/arm/arm.c (arm_load_pic_register): Likewise.
3011         (thumb1_expand_epilogue, thumb_set_return_address): Likewise.
3012         * config/arm/arm.md (untyped_return): Likewise.
3013         * config/arm/linux-elf.h (PROFILE_HOOK): Likewise.
3014         * config/avr/avr.c (expand_prologue): Likewise.
3015         * config/bfin/bfin.c (do_unlink): Likewise.
3016         * config/bfin/bfin.md (<optab>di3, adddi3, subdi3): Likewise.
3017         * config/cris/cris.c (cris_expand_prologue): Likewise.
3018         * config/darwin.c (machopic_indirect_data_reference): Likewise.
3019         (machopic_legitimize_pic_address): Likewise.
3020         * config/frv/frv.c (frv_frame_access, frv_expand_epilogue): Likewise.
3021         (frv_ifcvt_modify_insn, frv_expand_mdpackh_builtin): Likewise.
3022         * config/i386/i386.c (ix86_expand_vector_move_misalign): Likewise.
3023         (ix86_expand_convert_uns_didf_sse): Likewise.
3024         (ix86_expand_vector_init_general): Likewise.
3025         * config/ia64/ia64.md (eh_epilogue): Likewise.
3026         * config/iq2000/iq2000.c (iq2000_expand_epilogue): Likewise.
3027         * config/m32c/m32c.c (m32c_emit_eh_epilogue): Likewise.
3028         * config/m32r/m32r.c (m32r_reload_lr): Likewise.
3029         (config/iq2000/iq2000.c): Likewise.
3030         * config/mips/mips.md (fixuns_truncdfsi2): Likewise.
3031         (fixuns_truncdfdi2, fixuns_truncsfsi2, fixuns_truncsfdi2): Likewise.
3032         (builtin_longjmp): Likewise.
3033         * config/mn10300/mn10300.md (call, call_value): Likewise.
3034         * config/pa/pa.md (nonlocal_goto, nonlocal_longjmp): Likewise.
3035         * config/pdp11/pdp11.md (abshi2): Likewise.
3036         * config/rs6000/rs6000.c (rs6000_emit_move): Likewise.
3037         * config/s390/s390.c (s390_emit_prologue): Likewise.
3038         * config/s390/s390.md (movmem_long, setmem_long): Likewise.
3039         (cmpmem_long, extendsidi2, zero_extendsidi2, udivmoddi4): Likewise.
3040         (builtin_setjmp_receiver, restore_stack_nonlocal): Likewise.
3041         * config/sh/sh.c (prepare_move_operands): Likewise.
3042         (output_stack_adjust, sh_expand_epilogue): Likewise.
3043         (sh_set_return_address, sh_expand_t_scc): Likewise.
3044         * config/sparc/sparc.c (load_pic_register): Likewise.
3045         * config/sparc/sparc.md (untyped_return, nonlocal_goto): Likewise.
3046         * config/spu/spu.c (spu_expand_epilogue): Likewise.
3047         * config/v850/v850.c (expand_epilogue): Likewise.
3048
3049 2008-05-31  Anatoly Sokolov  <aesok@post.ru>
3050
3051         * config/avr/avr.md (UNSPECV_WRITE_SP_IRQ_ON): New constants.
3052         (UNSPECV_WRITE_SP_IRQ_OFF): (Ditto.).
3053         (movhi_sp_r_irq_off, movhi_sp_r_irq_on): New insn.
3054         * config/avr/avr.c (expand_prologue, expand_epilogue): Use 
3055         movhi_sp_r_irq_off and movhi_sp_r_irq_on insns for writing to the 
3056         stack pointer register.
3057         (output_movhi): Remove code for interrupt specific writing to the 
3058         stack pointer register.
3059
3060 2008-05-31  Richard Guenther  <rguenther@suse.de>
3061
3062         PR tree-optimization/34244
3063         * fold-const.c (tree_expr_nonnegative_warnv_p): Do not ask VRP.
3064         (tree_expr_nonzero_warnv_p): Likewise.
3065         * tree-vrp.c (vrp_expr_computes_nonnegative): Call
3066         ssa_name_nonnegative_p.
3067         (vrp_expr_computes_nonzero): Call ssa_name_nonzero_p.
3068         (extract_range_from_unary_expr): Use vrp_expr_computes_nonzero,
3069         not tree_expr_nonzero_warnv_p.
3070
3071         PR tree-optimization/36262
3072         Revert
3073         2007-11-29  Zdenek Dvorak  <ook@ucw.cz>
3074
3075         PR tree-optimization/34244
3076         * tree-vrp.c (adjust_range_with_scev): Clear scev cache.
3077         (record_numbers_of_iterations): New function.
3078         (execute_vrp): Cache the numbers of iterations of loops.
3079         * tree-scalar-evolution.c (scev_reset_except_niters):
3080         New function.
3081         (scev_reset): Use scev_reset_except_niters.
3082         * tree-scalar-evolution.h (scev_reset_except_niters): Declare.
3083
3084 2008-05-31  Bernd Schmidt  <bernd.schmidt@analog.com>
3085
3086         * config/bfin/bfin.h (TARGET_CPU_CPP_BUILTINS): Define
3087         __WORKAROUND_RETS when appropriate.
3088
3089 2008-05-31  Uros Bizjak  <ubizjak@gmail.com>
3090
3091         * config/i386/i386.md (*fop_<mode>_comm_mixed): Macroize from
3092         *fop_sf_comm_mixed and *fop_df_comm_mixed insn patterns using MODEF
3093         mode iterator.
3094         (*fop_<mode>_comm_sse): Macroize from *fop_sf_comm_sse and
3095         *fop_df_comm_sse insn patterns using MODEF mode iterator.
3096         (*fop_<mode>_comm_i387): Macroize from *fop_sf_comm_i387 and
3097         *fop_df_comm_i387 insn patterns using MODEF mode iterator.
3098         (*fop_<mode>_1_mixed): Macroize from *fop_sf_1_mixed and
3099         *fop_df_1_mixed insn patterns using MODEF mode iterator.
3100         (*fop_<mode>_1_sse): Macroize from *fop_sf_1_sse and
3101         *fop_df_1_sse insn patterns using MODEF mode iterator.
3102         (*fop_<mode>_1_i387): Macroize from *fop_sf_1_i387 and
3103         *fop_df_1_i387 insn patterns using MODEF mode iterator.
3104         (*fop_<MODEF:mode>_2_i387): Macroize from *fop_sf_2<mode>_i387 and
3105         *fop_df_2<mode>_i387 insn patterns using MODEF mode iterator.
3106         (*fop_<MODEF:mode>_3_i387): Macroize from *fop_sf_3<mode>_i387 and
3107         *fop_df_3<mode>_i387 insn patterns using MODEF mode iterator.
3108         (*fop_xf_2_i387): Rename from *fop_xf_2<mode>_i387.
3109         (*fop_xf_3_i387): Rename from *fop_xf_3<mode>_i387.
3110         (*fop_xf_4_i387): Use <MODE> for mode attribute.
3111         (*fop_xf_5_i387): Ditto.
3112         (*fop_xf_6_i387): Ditto.
3113
3114 2008-05-30  Richard Guenther  <rguenther@suse.de>
3115
3116         * builtins.c (build_string_literal): Avoid generating
3117         a non-gimple_val result.
3118
3119 2008-05-30  DJ Delorie  <dj@redhat.com>
3120
3121         * exec-tool.in: Use an environment variable (private) instead of a
3122         file (shared) as a semaphore, so as to not break parallel builds.
3123
3124 2008-05-30  Steven Bosscher  <stevenb.gcc@gmail.com>
3125
3126         * optabs.c (maybe_encapsulate_block): Remove.
3127         (emit_libcall_block): Adjust accordingly.
3128         * optabs.h (maybe_encapsulate_block): Remove prototype.
3129
3130         * config/rs6000/rs6000.c (rs6000_legitimize_tls_address):
3131         Don't use maybe_encapsulate_block.
3132
3133 2008-05-30  Steven Bosscher  <stevenb.gcc@gmail.com>
3134
3135         * config/rs6000/rs6000.c (rs6000_legitimize_address,
3136         rs6000_legitimize_reload_address, rs6000_emit_move): Make sure an
3137         rtx is a SYMBOL_REF before calling get_pool_constant.
3138
3139 2008-05-30  Eric Botcazou  <ebotcazou@adacore.com>
3140
3141         * fold-const.c (fold_unary) <CASE_CONVERT>: Add ??? comment.
3142
3143 2008-05-30  Danny Smith  <dannysmith@users.sourceforge.net>
3144
3145         * incpath.c: Use HOST_LACKS_INODE_NUMBERS conditional
3146         rather than OS names to choose INO_T_EQ definition.
3147         (DIRS_EQ) [!INO_T_EQ]: Don't worry about case in comparison.
3148         (add_path) [!INO_T_EQ]: Use lrealpath to fill canonical_name field.
3149
3150 2008-05-29  Daniel Franke  <franke.daniel@gmail.com>
3151
3152         PR target/36348
3153         * config/darwin-f.c: New.
3154         * config/t-darwin: Added rule to build darwin-f.o.
3155         * config.gcc: Defined new variable, fortran_target_objs.
3156         (*-*-darwin*): Set fortran_target_objs.
3157         * Makefile.in: Defined new variable FORTRAN_TARGET_OBJS.
3158         * configure.ac: Substitute fortran_target_objs, set FORTRAN_TARGET_OBJS.
3159         * configure: Regenerated.
3160
3161 2008-05-29  H.J. Lu  <hongjiu.lu@intel.com>
3162
3163         PR target/35771
3164         * config/i386/i386.c (ix86_function_arg_boundary): Convert to
3165         canonical type if needed.
3166
3167 2008-05-29  Eric Botcazou  <ebotcazou@adacore.com>
3168
3169         * tree-nested.c (check_for_nested_with_variably_modified): Fix typo.
3170
3171 2008-05-29  Richard Guenther  <rguenther@suse.de>
3172
3173         PR tree-optimization/36343
3174         PR tree-optimization/36346
3175         PR tree-optimization/36347
3176         * tree-flow.h (clobber_what_p_points_to): Declare.
3177         * tree-ssa-structalias.c (set_uids_in_ptset): Whether the
3178         pointed-to variable is dereferenced is irrelevant to whether
3179         the pointer can access the pointed-to variable.
3180         (clobber_what_p_points_to): New function.
3181         * tree-ssa-alias.c (set_initial_properties): Use it.
3182         * tree-ssa.c (verify_flow_sensitive_alias_info): Adjust
3183         call clobber check for NMTs.
3184
3185 2008-05-28  Seongbae Park  <seongbae.park@gmail.com>
3186         
3187         * value-prof.c (tree_ic_transform): Use HOST_WIDEST_INT_PRINT_DEC
3188         for printing gcov_type.
3189
3190 2008-05-28  Seongbae Park  <seongbae.park@gmail.com>
3191
3192         * tree-ssa-propagate.c (set_rhs): Preserve the histogram
3193         and the eh region information.
3194         * value-prof.c (gimple_move_stmt_histograms): New function.
3195         * value-prof.h (gimple_move_stmt_histograms): New function declaration.
3196
3197 2008-05-28  Andreas Tobler  <a.tobler@schweiz.org>
3198
3199         * config/pa/pa.md: Remove extern frame_pointer_needed declaration.
3200
3201 2008-05-28  Seongbae Park <seongbae.park@gmail.com>
3202
3203         * value-prof.c (tree_ic_transform): Print counts.
3204         * tree-profile.c (tree_gen_ic_func_profiler):
3205         Clear __gcov_indreict_call_callee variable to avoid misattribution
3206         of the profile.
3207
3208 2008-05-28  Rafael Espindola  <espindola@google.com>
3209
3210         * see.c (see_def_extension_not_merged): Use copy_rtx_if_shared to avoid
3211         invalid sharing.
3212
3213 2008-05-28  Richard Guenther  <rguenther@suse.de>
3214
3215         PR tree-optimization/36339
3216         * tree-ssa-alias.c (set_initial_properties): Move pt_anything
3217         and clobbering code out of the loop.
3218
3219 2008-05-28  Andreas Krebbel  <krebbel1@de.ibm.com>
3220
3221         * config/s390/constraints.md ('b', 'C', 'D', 'e'): New constraint
3222         letters defined.
3223
3224         * config/s390/s390.c (s390_compare_and_branch_condition_mask,
3225         s390_contiguous_bitmask_p, s390_symref_operand_p,
3226         s390_check_symref_alignment, s390_reload_larl_operand,
3227         s390_reload_symref_address): New functions.
3228         (s390_branch_condition_mnemonic): Support compare and branch
3229         instructions.
3230         (s390_mem_constraint): Avoid symrefs to accepted by the 'T'
3231         and 'W' constraints.
3232         (s390_secondary_reload): Add secondary reloads for unaligned
3233         symbol refs or symbol refs to floating point or QI/TI mode
3234         integer values.
3235         (legitimate_address_p): Accept symbol references as addresses.
3236         (s390_expand_insv): Use rotate and insert selected bits
3237         instruction for insv when building for z10.
3238         (print_operand_address): Handle symbol ref addresses.
3239         (print_operand): Output modifier 'c' added for signed byte values.
3240         (s390_encode_section_info): Mark symbol refs with
3241         SYMBOL_FLAG_NOT_NATURALLY_ALIGNED if appropriate.
3242
3243         * config/s390/s390.md (SIL,RRS,RIS): New instruction formats added.
3244         (length attribute): RRF, RRR have 4 byte length.
3245         (FPALL, INTALL): New mode iterators added.
3246         (*tstdi_sign, *cmpdi_ccs_sign, *cmpsi_ccs_sign,
3247         *cmp<mode>_ccs, *cmpdi_ccu_zero, *cmpdi_ccu, *cmpsi_ccu, *cmphi_ccu,
3248         *movdi_64, *movsi_zarch, *movhi, movmem<mode>, *movmem_short,
3249         *extendsidi2, *extendhidi2_extimm, *extendhisi2_extimm,
3250         *zero_extendsidi2, adddi3, *adddi3_31z, *adddi3_31, addsi3,
3251         *add<mode>3, *add<mode>3_carry1_cc, *add<mode>3_carry2_cc,
3252         *add<mode>3_cc, *add<mode>3_imm_cc, *muldi3_sign, muldi3,
3253         *mulsi3_sign, mulsi3, mulsidi3): Patterns enhanced with z10
3254         instructions.
3255         (*cmphi_ccs_z10, *cmpdi_ccs_signhi_rl, *cmpsi_ccu_zerohi_rlsi,
3256         *cmp<GPR:mode>_ccu_zerohi_rldi, *cmp_and_br_signed_<mode>,
3257         *cmp_and_br_unsigned_<mode>, reload<INTALL:mode><P:mode>_tomem_z10,
3258         reload<INTALL:mode><P:mode>_toreg_z10,
3259         reload<FPALL:mode><P:mode>_tomem_z10,
3260         reload<FPALL:mode><P:mode>_toreg_z10,
3261         reload<P:mode>_larl_odd_addend_z10, *execute_rl, *insv<mode>_z10,
3262         *insv<mode>_z10_noshift, *insv<mode>_or_z10_noshift,
3263         *zero_extendhi<mode>2_z10, *cmp_and_trap_signed_int<mode>,
3264         *cmp_and_trap_unsigned_int<mode>, prefetch): New pattern or expander
3265         definition.
3266         (movmem, clrmem, cmpmem): New splitters added.
3267
3268         * config/s390/predicates.md (larl_operand): Use
3269         SYMBOL_REF_FLAGS (op) & SYMBOL_FLAG_ALIGN1 replaced with
3270         SYMBOL_REF_ALIGN1_P.
3271         (s390_signed_integer_comparison,
3272         s390_unsigned_integer_comparison): New predicates.
3273
3274         * config/s390/s390-protos.h (s390_check_symref_alignment,
3275         s390_contiguous_bitmask_p, s390_reload_larl_operand,
3276         s390_reload_symref_address,
3277         s390_compare_and_branch_condition_mask): Prototypes added.
3278
3279         * config/s390/s390.h (TARGET_MEM_CONSTRAINT,
3280         SYMBOL_REF_ALIGN1_P, SYMBOL_FLAG_NOT_NATURALLY_ALIGNED,
3281         SYMBOL_REF_NOT_NATURALLY_ALIGNED_P): Macro definition added.
3282
3283 2008-05-28  Andreas Krebbel  <krebbel1@de.ibm.com>
3284
3285         * config/s390/s390.c (z10_cost): New cost function for z10.
3286         (s390_handle_arch_option, override_options): Support -march=z10 switch.
3287         (s390_issue_rate): Adjust issue rate for z10.
3288         * config/s390/s390.h (processor_type): Add PROCESSOR_2097_Z10.
3289         (processor_flags): Add PF_Z10.
3290         (TARGET_CPU_Z10, TARGET_Z10): New macro definitions.
3291         * config/s390/s390.md (cpu, cpu_facility attributes): Add z10.
3292         * gcc/config.gcc: Add z10.
3293
3294 2008-05-28  Richard Guenther  <rguenther@suse.de>
3295
3296         PR tree-optimization/36291
3297         * tree-flow. h (struct gimple_df): Remove var_anns member.
3298         * tree-flow-inline.h (gimple_var_anns): Remove.
3299         (var_ann): Simplify.
3300         * tree-dfa.c (create_var_ann): Simplify.
3301         (remove_referenced_var): Clear alias info from var_anns of globals.
3302         * tree-ssa.c (init_tree_ssa): Do not allocate var_anns.
3303         (delete_tree_ssa): Clear alias info from var_anns of globals.
3304         Do not free var_anns.
3305         (var_ann_eq): Remove.
3306         (var_ann_hash): Likewise.
3307
3308 2008-05-28  Mark Shinwell  <shinwell@codesourcery.com>
3309
3310         * config/mips/mips.c (mips_cpu_info_table): Add loongson2e
3311         and loongson2f entries.
3312         (mips_rtx_cost_data): Add entries for Loongson-2E/2F.
3313         * config/mips/mips.h (processor_type): Add Loongson-2E
3314         and Loongson-2F entries.
3315         (TARGET_LOONGSON_2E, TARGET_LOONGSON_2F, TARGET_LOONGSON_2EF): New.
3316         (MIPS_ISA_LEVEL_SPEC): Handle Loongson-2E/2F.
3317         * config/mips/mips.md (define_attr cpu): Add loongson2e and loongson2f.
3318         * doc/invoke.texi (MIPS Options): Document loongson2e
3319         and loongson2f processor names.
3320
3321 2008-05-27  H.J. Lu  <hongjiu.lu@intel.com>
3322
3323         PR target/35767
3324         PR target/35771
3325         * config/i386/i386.c (ix86_function_arg_boundary): Use
3326         alignment of canonical type.
3327         (ix86_expand_vector_move): Check unaligned memory access for
3328         all SSE modes.
3329
3330 2008-05-27  H.J. Lu  <hongjiu.lu@intel.com>
3331
3332         * dwarf2out.c (current_fde): Change return type to dw_fde_ref.
3333         Moved to the front of file.
3334
3335 2008-05-27  Xuepeng Guo  <xuepeng.guo@intel.com>
3336             H.J. Lu  <hongjiu.lu@intel.com>
3337
3338         * dwarf2out.c (current_fde): New.
3339         (add_cfi): Use it.
3340         (lookup_cfa:): Likewise.
3341         (dwarf2out_end_epilogue): Likewise.
3342         (dwarf2out_note_section_used): Likewise.
3343
3344 2008-05-27  Michael Matz  <matz@suse.de>
3345
3346         PR c++/27975
3347         * c.opt (Wenum-compare): New warning option.
3348         * doc/invoke.texi  (Warning Options): Document -Wenum-compare.
3349
3350 2008-05-27  Michael Matz  <matz@suse.de>
3351
3352         PR middle-end/36326
3353         * tree-gimple.c (is_gimple_mem_rhs): Remove work-around for
3354         non-BLKmode types.
3355         * tree-tailcall.c (find_tail_calls): Don't mark calls storing
3356         into memory as tail calls.
3357
3358 2008-05-27  Richard Guenther  <rguenther@suse.de>
3359
3360         PR tree-optimization/36339
3361         * tree-ssa-alias.c (set_initial_properties): Escaped pt_anything
3362         pointers cause all addressable variables to be call clobbered.
3363
3364 2008-05-27  Richard Guenther  <rguenther@suse.de>
3365
3366         PR tree-optimization/36245
3367         * tree-ssa-address.c (add_to_parts): Deal with non-pointer bases.
3368
3369 2008-05-27  Andreas Krebbel  <krebbel1@de.ibm.com>
3370
3371         * config/s390/s390.md: Replace all occurences of the 'm'
3372         constraint with 'RT'.
3373
3374 2008-05-27  Andreas Krebbel  <krebbel1@de.ibm.com>
3375
3376         * config/s390/s390.md ("cpu_facility", "enabled"): Attribute
3377         definitions added.
3378         ("*movdi_64dfp", "*movdi_64extimm", "*movdi_64"): Merged into
3379         "*movdi_64".
3380         ("*anddi3_extimm", "*anddi3"): Merged into "*anddi3".
3381         ("*iordi3_extimm", "*iordi3"): Merged into "*iordi3".
3382         ("*xordi3_extimm", "*xordi3"): Merged into "*xordi3".
3383
3384 2008-05-27  Andreas Krebbel  <krebbel1@de.ibm.com>
3385
3386         * reload.c: (find_reloads): Skip alternatives according to the
3387         "enabled" attribute. Constify the constraint variable.
3388         * recog.c (get_attr_enabled): Add default implementation.
3389         (extract_insn): Set the alternative_enabled_p array
3390         in the recog_data struct.
3391         (preprocess_constraints, constrain_operands): Skip
3392         alternatives according to the "enabled" attribute
3393         * recog.h (struct recog_data): New field alternative_enabled_p.
3394         (skip_alternative): New inline function.
3395         * regclass.c: (record_operand_costs): Check the "enabled" attribute.
3396         (record_reg_classes): Skip alternative according to the
3397         "enabled" attribute.
3398
3399         * doc/md.texi: Add documention for the "enabled" attribute.
3400
3401 2008-05-27  Andreas Krebbel  <krebbel1@de.ibm.com>
3402
3403         * defaults.h (TARGET_MEM_CONSTRAINT): New target macro added.
3404         * postreload.c (reload_cse_simplify_operands): Replace 'm'
3405         constraint with TARGET_MEM_CONSTRAINT.
3406         * recog.c (asm_operand_ok, preprocess_constraints,
3407         constrain_operands): Likewise.
3408         * regclass.c (record_reg_classes): Likewise.
3409         * reload.c (find_reloads, alternative_allows_const_pool_ref): Likewise.
3410         * reload1.c (maybe_fix_stack_asms): Likewise.
3411         * stmt.c (parse_output_constraint, parse_input_constraint): Likewise.
3412         * recog.h: Adjust comment.
3413         * genpreds.c (generic_constraint_letters): Remove 'm' constraint.
3414         * genoutput.c (note_constraint): Don't emit error for 'm' constraint.
3415         * doc/md.texi: Add a note to description of 'm' constraint.
3416         * doc/tm.texi: Document the new TARGET_MEM_CONSTRAINT macro.
3417
3418 2008-05-27  Eric Botcazou  <ebotcazou@adacore.com>
3419
3420         * tree-sra.c (sra_type_can_be_decomposed_p) <RECORD_TYPE>: Make sure
3421         that the bitfield is of integral type before testing its precision.
3422
3423 2008-05-27  Trevor Smigiel  <trevor_smigiel@playstation.sony.com>
3424             Sa Liu  <saliu@de.ibm.com> 
3425
3426         * config/spu/spu.c (spu_init_libfuncs): Add __multi3, __divti3, 
3427         __modti3, __udivti3, __umodti3 and __udivmodti4.
3428         * config/spu/t-spu-elf (LIB2FUNCS_STATIC_EXTRA): Add files
3429         that implement TImode mul and div functions.
3430         * config/spu/multi3.c: New. Implement __multi3.
3431         * config/spu/divmodti4.c: New. Implement _udivmodti4 and others.
3432         * testsuite/gcc.target/spu/muldivti3.c: New. Test TImode mul and div
3433         functions on SPU.
3434
3435 2008-05-26  Steven Bosscher  <stevenb.gcc@gmail.com>
3436
3437         * config/rs6000/rs6000.c (rs6000_legitimize_tls_address): Generate
3438         new tls_gd_* and tls_ld_* insns instead of an insn sequence.
3439         * config/rs6000/rs6000.md (TLSmode, tls_abi_suffix, tls_insn_suffix,
3440         tls_sysv_suffix): New mode and mode attribute iterators.
3441         (tls_gd_32, tls_gd_64, tls_ld_32, tls_ld_64): Remove.
3442         (lts_gd_aix*, tls_gd_sysv*, tls_ld_aix*, tls_ld_sysv*): New patterns.
3443         (tls_dtprel_*, tls_dtprel_ha_*, tls_dtprel_lo_*, tls_got_dtprel_*,
3444         tls_tprel_*, tls_tprel_ha_*, tls_tprel_lo_*, tls_got_tprel_*,
3445         tls_tls_*): Merge 32 bit and 64 bit variants using aforementioned
3446         iterators.
3447
3448 2008-05-26  Eric Botcazou  <ebotcazou@adacore.com>
3449
3450         PR tree-optimization/36329
3451         * tree.h (CALL_CANNOT_INLINE_P): Add access check.
3452         * tree-gimple.h (CALL_STMT_CANNOT_INLINE_P): New macro.
3453         * cgraphbuild.c (initialize_inline_failed): Use the latter
3454         macro in lieu of the former.
3455         * ipa-inline.c (cgraph_mark_inline): Likewise.
3456         (cgraph_decide_inlining_of_small_function): Likewise.
3457         (cgraph_decide_inlining): Likewise.
3458         (cgraph_decide_inlining_incrementally): Likewise.
3459
3460 2008-05-26  Tristan Gingold  <gingold@adacore.com>
3461             Anatoly Sokolov  <aesok@post.ru>
3462
3463         * config/avr/avr.md ("call_prologue_saves"): Use hi8(gs())/lo8(gs())
3464         instead of pm_lo8/pm_hi8 to makes this call working on avr6.
3465         * config/avr/avr.c (expand_prologue): Tune "call_prologue" 
3466         optimization for 'avr6' architecture.
3467
3468 2008-05-26  Andy Hutchinson  <hutchinsonandy@aim.com>
3469
3470         PR target/34932
3471         * config/avr/avr.md (*addhi3_zero_extend2): Remove.
3472
3473 2008-05-26  Richard Guenther  <rguenther@suse.de>
3474
3475         * tree-ssa-sccvn.c (expr_has_constants): Declare.
3476         (visit_reference_op_load): Initialize VN_INFO->has_constants properly.
3477
3478 2008-05-26  H.J. Lu  <hongjiu.lu@intel.com>
3479
3480         PR middle-end/36253
3481         * caller-save.c (insert_restore): Verify alignment of spill space.
3482         (insert_save): Likewise.
3483         * cfgexpand.c (LOCAL_ALIGNMENT): Removed.
3484         * defaults.h (LOCAL_ALIGNMENT): New. Provide default.
3485         (STACK_SLOT_ALIGNMENT): Likewise.
3486         * function.c (LOCAL_ALIGNMENT): Removed.
3487         (get_stack_local_alignment): New.
3488         (assign_stack_local): Use it.  Set alignment on stack slot.
3489         (assign_stack_temp_for_type): Use get_stack_local_alignment.
3490         * config/i386/i386.h (LOCAL_ALIGNMENT): Updated.
3491         (STACK_SLOT_ALIGNMENT): New.
3492         * config/i386/i386.c (ix86_local_alignment): Handle caller-save
3493         stack slot in XFmode.
3494
3495         * doc/tm.texi (STACK_SLOT_ALIGNMENT): New.
3496
3497 2008-05-26  Kai Tietz  <kai.tietz@onevision.com>
3498
3499         PR/36321
3500         * config/i386/i386.md (allocate_stack_worker_64): Make sure
3501         argument operand in rax isn't removed.
3502
3503 2008-05-26  Richard Guenther  <rguenther@suse.de>
3504
3505         PR middle-end/36300
3506         * fold-const.c (extract_muldiv_1): Use TYPE_OVERFLOW_WRAPS,
3507         not TYPE_UNSIGNED.  Use TYPE_PRECISION instead of GET_MODE_SIZE.
3508
3509 2008-05-26  Daniel Franke  <franke.daniel@gmail.com>
3510
3511         PR bootstrap/36331
3512         * c-cppbuiltin.c (define__GNUC__): Re-add definition of __GNUG__.
3513
3514 2008-05-26  Dominique Dhumieres  <dominiq@lps.ens.fr>
3515
3516         * config/darwin-c.c: Include "incpath.h" instead of "c-incpath.h".
3517         * config/t-darwin: Use "incpath.h" instead of "c-incpath.h".
3518
3519 2008-05-25  Eric Botcazou  <ebotcazou@adacore.com>
3520
3521         * tree-nested.c (convert_tramp_reference) <ADDR_EXPR>: Do not
3522         build a trampoline if we don't want one.
3523         * varasm.c (initializer_constant_valid_p) <ADDR_EXPR>: Do not
3524         return zero for nested functions if we don't want a trampoline.
3525
3526 2008-05-26  Daniel Franke  <franke.daniel@gmail.com>
3527
3528         * doc/invoke.texi: Added f77, f77-cpp-input to list of file types.
3529
3530 2008-05-26  Daniel Franke  <franke.daniel@gmail.com>
3531
3532         PR fortran/18428
3533         * c.opt: Removed undocumented option '-lang-fortran'.
3534         * c-common.h: Removed global variable 'lang_fortran'.
3535         * c-opts.c (c_common_handle_option): Removed code to handle
3536         option '-lang-fortran'. Updated includes.
3537         * c-cppbuiltin.c (c_cpp_builtins): Removed conditional
3538         definition of '__GFORTRAN__'.
3539         (define__GNUC__): Reimplemented to use BASEVER and
3540         cpp_define_formatted.
3541         (builtin_define_with_value_n): Removed.
3542         * c-incpath.h: Renamed to ...
3543         * incpath.h: ... this.
3544         * c-incpath.c: Renamed to ...
3545         * incpath.c: ... this. Updated includes.
3546         * fix-header.c: Updated includes.
3547         * Makefile.in: Replaced c-incpath.[ch] by incpath.[ch].
3548         (c-cppbuiltin.o): Added dependency on and definition of BASEVER.
3549         (OBJ-archive): Added cppdefault.o, incpath.o and prefix.o.
3550
3551 2008-05-25  Eric Botcazou  <ebotcazou@adacore.com>
3552
3553         * tree.h: Update the table of flags used on tree nodes.
3554         (TREE_NO_TRAMPOLINE): New accessor for static_flag.
3555         (SAVE_EXPR_RESOLVED_P): Use automatically-built access check.
3556         (FORCED_LABEL): Add access check.
3557         (CALL_EXPR_RETURN_SLOT_OPT): Likewise.
3558         (ASM_INPUT_P): Likewise.
3559         (ASM_VOLATILE_P): Likewise.
3560         (EH_FILTER_MUST_NOT_THROW): Access static_flag directly.
3561         (OMP_SECTION_LAST): Access private_flag directly.
3562         (OMP_RETURN_NOWAIT): Likewise.
3563         (OMP_PARALLEL_COMBINED): Likewise.
3564         (OMP_CLAUSE_PRIVATE_DEBUG): Access public_flag directly.
3565         (OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE): Likewise.
3566         * tree-ssa-propagate.c (STMT_IN_SSA_EDGE_WORKLIST): Access
3567         deprecated_flag directly.
3568
3569 2008-05-25  H.J. Lu  <hongjiu.lu@intel.com>
3570
3571         * final.c (frame_pointer_needed): Removed.
3572         * flags.h (frame_pointer_needed): Likewise.
3573
3574         * function.h (rtl_data): Add frame_pointer_needed.
3575         (frame_pointer_needed): New.
3576
3577 2008-05-25  Arthur Loiret  <arthur.loiret@u-psud.fr>
3578
3579         * config.gcc (sh2[lbe]*-*-linux*): Allow target.
3580
3581 2008-05-25  Steven Bosscher  <stevenb.gcc@gmail.com>
3582
3583         * gcse.c (hash_scan_set): Do not pick up a REG_EQUAL value if
3584         SRC is a REG.
3585
3586 2008-05-25  Alan Modra  <amodra@bigpond.net.au>
3587
3588         * c-common.c (strip_array_types): Move function to..
3589         * tree.c: ..here.
3590         (get_inner_array_type): Delete.
3591         * c-common.h (strip_array_types): Move declaration to..
3592         * tree.h: ..here.
3593         (get_inner_array_type): Delete.
3594         * config/i386/i386.c (x86_field_alignment): Use strip_array_types.
3595         * config/rs6000/aix.h (ADJUST_FIELD_ALIGN): Likewise.
3596         * config/rs6000/linux64.h (ADJUST_FIELD_ALIGN): Likewise.
3597         * config/pa/pa.c (emit_move_sequence): Likewise.
3598
3599 2008-05-24  H.J. Lu  <hongjiu.lu@intel.com>
3600
3601         * config/i386/i386.md (*sse_prologue_save_insn): Set length
3602         attribute to 34.
3603
3604 2008-05-24  Andy Hutchinson  <hutchinsonandy@aim.com>
3605
3606         * function.c: Include target hook for nonlocal_goto frame value.
3607
3608 2008-05-24  Richard Guenther  <rguenther@suse.de>
3609
3610         * tree-dfa.c (refs_may_alias_p): Re-instantiate case that a scalar
3611         variable can be only accessed through a pointer or a union.
3612
3613 2008-05-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3614
3615         * builtins.c (fold_builtin_fpclassify): Fix spelling of FP_INFINITE.
3616         * doc/extend.texi: Likewise.
3617
3618 2008-05-23  DJ Delorie  <dj@redhat.com>
3619
3620         * config/m32c/jump.md (untyped_call): Add.
3621
3622         * config/m32c/m32c.c (m32c_return_addr_rtx): Change pointer type
3623         for A24 to PSImode.
3624         (m32c_address_cost): Detail costs for indirect offsets.
3625
3626 2008-05-23  Rafael Espindola  <espindola@google.com>
3627
3628         * see.c (see_get_extension_data): Don't use SUBREG_REG to test
3629         if a node is a SUBREG.
3630         (see_analyze_one_def): Don't use SUBREG_REG to test if a node
3631         is a SUBREG.
3632
3633 2008-05-23  Paul Brook  <paul@codesourcery.com>
3634             Carlos O'Donell  <carlos@codesourcery.com>
3635
3636         * doc/extend.texi: Clarify use of __attribute__((naked)).
3637         * doc/tm.texi: Document TARGET_ALLOCATE_STACK_SLOTS_FOR_ARGS.
3638         * target.h (gcc_target): Add allocate_stack_slots_for_args.
3639         * function.c (use_register_for_decl): Use
3640         targetm.calls.allocate_stack_slots_for_args.
3641         * target-def.h (TARGET_CALLS): Add TARGET_ALLOCATE_STACK_SLOTS_FOR_ARGS.
3642         * config/arm/arm.c (arm_allocate_stack_slots_for_args): New function.
3643         (TARGET_ALLOCATE_STACK_SLOTS_FOR_ARGS): Define.
3644
3645 2008-05-23  Eric Botcazou  <ebotcazou@adacore.com>
3646
3647         * expr.c (highest_pow2_factor) <BIT_AND_EXPR>: New case.
3648
3649 2008-05-23  Steven Munroe  <sjmunroe@us.ibm.com>
3650
3651         * config/rs6000/darwin-ldouble.c (fmsub): Eliminate the full
3652         PACK/UNPACK between FP_SUB_Q and FD_TRUNC so that the result
3653         is only rounded once.
3654
3655 2008-05-23  Richard Guenther  <rguenther@suse.de>
3656
3657         * tree-ssa-operands.c (mark_difference_for_renaming): Use bitmap_xor.
3658
3659 2008-05-23  Uros Bizjak  <ubizjak@gmail.com>
3660             Jakub Jelinek  <jakub@redhat.com>
3661
3662         PR target/36079
3663         * configure.ac: Handle --enable-cld.
3664         * configure: Regenerated.
3665         * config.gcc: Add USE_IX86_CLD to tm_defines for x86 targets.
3666         * config/i386/i386.h (struct machine_function): Add needs_cld field.
3667         (ix86_current_function_needs_cld): New define.
3668         * config/i386/i386.md (UNSPEC_CLD): New unspec volatile constant.
3669         (cld): New isns pattern.
3670         (strmov_singleop, rep_mov, strset_singleop, rep_stos, cmpstrnqi_nz_1,
3671         cmpstrnqi_1, strlenqi_1): Set ix86_current_function_needs_cld flag.
3672         * config/i386/i386.opt (mcld): New option.
3673         * config/i386/i386.c (ix86_expand_prologue): Emit cld insn if
3674         TARGET_CLD and ix86_current_function_needs_cld.
3675         (override_options): Use -mcld by default for 32-bit code if
3676         USE_IX86_CLD.
3677
3678         * doc/install.texi (Options specification): Document --enable-cld.
3679         * doc/invoke.texi (Machine Dependent Options)
3680         [i386 and x86-64 Options]: Add -mcld option.
3681         (Intel 386 and AMD x86-64 Options): Document -mcld option.
3682
3683 2008-05-23  Kai Tietz  <kai.tietz@onevison.com>
3684         * config/i386/i386.c (return_in_memory_32): Add ATTRIBUTE_UNUSED.
3685         (return_in_memory_64): Likewise.
3686         (return_in_memory_ms_64): Likewise.
3687
3688 2008-05-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3689
3690         * builtin-types.def (BT_FN_INT_INT_INT_INT_INT_INT_VAR): New.
3691         * builtins.c (fold_builtin_fpclassify): New.
3692         (fold_builtin_varargs): Handle BUILT_IN_FPCLASSIFY.
3693         * builtins.def (BUILT_IN_FPCLASSIFY): New.
3694         * c-common.c (handle_type_generic_attribute): Adjust to accept
3695         fixed arguments before an elipsis.
3696         (check_builtin_function_arguments): Handle BUILT_IN_FPCLASSIFY.
3697         * doc/extend.texi: Document __builtin_fpclassify.
3698
3699 2008-05-22  Aldy Hernandez  <aldyh@redhat.com>
3700
3701         * omp-low.c (gate_expand_omp_ssa): Remove.
3702         (pass_expand_omp_ssa): Remove.
3703         (gate_expand_omp): Do not check for flag_openmp_ssa.
3704         * common.opt (-fopenmp-ssa): Remove.
3705         * passes.c (init_optimization_passes): Remove pass_expand_omp_ssa.
3706
3707 2008-05-22  Kaz Kojima  <kkojima@gcc.gnu.org>
3708
3709         * config/sh/sh.opt (mfixed-range): New option.
3710         * config/sh/sh-protos.h (sh_fix_range): Declare.
3711         * config/sh/sh.c (sh_fix_range): New function.
3712         * config/sh/sh.h (sh_fixed_range_str): Declare.
3713         (OVERRIDE_OPTIONS): Call sh_fix_range if sh_fixed_range_str
3714         is not empty.
3715         * doc/invoke.texi (SH Options): Document -mfixed-range.
3716
3717 2008-05-22  Kai Tietz  <kai.tietz@onevision.com>
3718
3719         * config/i386/sol2-10.h (SUBTARGET_RETURN_IN_MEMORY): Undefine
3720         it before the redeclaration.
3721
3722 2008-05-22  Anatoly Sokolov <aesok@post.ru>
3723
3724         * config/avr/avr.c (get_sequence_length): Add new function.
3725         (expand_prologue, expand_epilogue): Remove duplicate code.
3726
3727 2008-05-22  Rafael Espindola  <espindola@google.com>
3728
3729         * see.c (see_pre_insert_extensions): Use copy_rtx to avoid invalid rtx
3730         sharing.
3731
3732 2008-05-22  H.J. Lu  <hongjiu.lu@intel.com>
3733
3734         * defaults.h (UNITS_PER_SIMD_WORD): Add scalar mode as argument.
3735         * doc/tm.texi (UNITS_PER_SIMD_WORD): Likewise.
3736
3737         * tree-vect-analyze.c (vect_compute_data_ref_alignment): Replace
3738         UNITS_PER_SIMD_WORD with GET_MODE_SIZE (TYPE_MODE (vectype)).
3739         (vect_update_misalignment_for_peel): Likewise.
3740         (vector_alignment_reachable_p): Likewise.
3741         * tree-vect-transform.c (vectorizable_load): Likewise.
3742         * tree-vectorizer.c (vect_supportable_dr_alignment): Likewise.
3743         (get_vectype_for_scalar_type): Pass mode of scalar_type
3744         to UNITS_PER_SIMD_WORD.
3745
3746         * config/arm/arm.h (UNITS_PER_SIMD_WORD): Updated.
3747         * config/i386/i386.h (UNITS_PER_SIMD_WORD): Likewise.
3748         * config/mips/mips.h (UNITS_PER_SIMD_WORD): Likewise.
3749         * config/rs6000/rs6000.h (UNITS_PER_SIMD_WORD): Likewise.
3750         * config/sparc/sparc.h (UNITS_PER_SIMD_WORD): Likewise.
3751
3752 2008-05-22  Ira Rosen  <irar@il.ibm.com>
3753
3754         PR tree-optimization/36293
3755         * tree-vect-transform.c (vect_transform_strided_load): Don't check
3756         if the first load must be skipped because of a gap.
3757
3758 2008-05-22  Richard Guenther  <rguenther@suse.de>
3759
3760         * tree-dfa.c (refs_may_alias_p): Exit early if possible.  Handle
3761         more cases of offset disambiguation that is possible if
3762         strict-aliasing rules apply.
3763         * tree-ssa-loop-im.c (mem_refs_may_alias_p): Use refs_may_alias_p
3764         for basic offset and type-based disambiguation.
3765
3766 2008-05-21  H.J. Lu  <hongjiu.lu@intel.com>
3767
3768         * config/i386/i386.c (ix86_expand_vector_init_one_var): Use
3769         ix86_expand_vector_set on V16QImode for SSE4.1.
3770
3771 2008-05-21  Tom Tromey  <tromey@redhat.com>
3772
3773         * c.opt (Wimport): Mark as undocumented.
3774         * doc/invoke.texi (Option Summary): Don't mention -Wimport or
3775         -Wno-import.
3776         (Warning Options): Likewise.
3777         * doc/cppopts.texi: Don't mention -Wimport.
3778
3779 2008-05-21  Sebastian Pop  <sebastian.pop@amd.com>
3780
3781         PR tree-optimization/36287
3782         PR tree-optimization/36286
3783         * lambda-code.c (build_access_matrix): Do not use the loop->num
3784         for computing the number of induction variables: use the loop depth
3785         instead.
3786
3787 2008-05-21  Kai Tietz  <kai.tietz@onevision.com>
3788
3789         PR/36280
3790         * config/i386/cygming.h (ASM_OUTPUT_LABELREF): Honor
3791         option -f(no-)leading-underscore.
3792
3793 2008-05-21  H.J. Lu  <hongjiu.lu@intel.com>
3794
3795         * config/i386/i386.c (ix86_expand_vector_init_general): Use
3796         GET_MODE_NUNITS (mode).
3797
3798 2008-05-21  Peter Bergner  <bergner@vnet.ibm.com>
3799
3800         * doc/invoke.texi: Add cpu_type's 464 and 464fp.
3801         (-mmulhw): Add 464 to description.
3802         (-mdlmzb): Likewise.
3803         * config.gcc: Handle --with-cpu=464 and --with-cpu=464fp.
3804         * config/rs6000/rs6000.c (processor_target_table): Add 464 and
3805         464fp entries.
3806         * config/rs6000/rs6000.h (ASM_CPU_SPEC): Add 464 and 464fp support.
3807         * config/rs6000/t-fprules (MULTILIB_MATCHES_FLOAT): Include -mcpu=464.
3808         * config/rs6000/rs6000.md: Update comments for 464.
3809
3810 2008-05-21  Janis Johnson  <janis187@us.ibm.com>
3811
3812         * doc/sourcebuild.texi (Test Directives): Add dg-xfail-run-if.
3813
3814 2008-05-21  H.J. Lu  <hongjiu.lu@intel.com>
3815
3816         * config/i386/sse.md (vec_extractv4sf): Removed.
3817         (vec_extractv2df): Likewise.
3818         (vec_extractv2di): Likewise.
3819         (vec_extractv4si): Likewise.
3820         (vec_extractv8hi): Likewise.
3821         (vec_extractv16qi): Likewise.
3822         (vec_extract<mode>): New.
3823
3824 2008-05-21  H.J. Lu  <hongjiu.lu@intel.com>
3825
3826         * config/i386/sse.md (vec_setv4sf): Removed.
3827         (vec_setv2df): Likewise.
3828         (vec_setv2di): Likewise.
3829         (vec_setv4si): Likewise.
3830         (vec_setv8hi): Likewise.
3831         (vec_setv16qi): Likewise.
3832         (vec_set<mode>): New.
3833
3834 2008-05-21  H.J. Lu  <hongjiu.lu@intel.com>
3835
3836         * config/i386/i386.c (ix86_expand_vector_init_general): Remove
3837         goto for vec_concat and vec_interleave.
3838
3839 2008-05-21  H.J. Lu  <hongjiu.lu@intel.com>
3840
3841         * config/i386/sse.md (vec_initv4sf): Removed.
3842         (vec_initv2df): Likewise.
3843         (vec_initv2di): Likewise.
3844         (vec_initv4si): Likewise.
3845         (vec_initv8hi): Likewise.
3846         (vec_initv16qi): Likewise.
3847         (vec_init<mode>): New.
3848
3849 2008-05-21  Joseph Myers  <joseph@codesourcery.com>
3850
3851         * collect2.c (find_a_file): Use IS_ABSOLUTE_PATH.
3852
3853 2008-05-21  Tom Tromey  <tromey@redhat.com>
3854
3855         * ggc-zone.c (lookup_page_table_if_allocated): New function.
3856         (zone_find_object_offset): Likewise.
3857         (gt_ggc_m_S): Likewise.
3858         (highest_bit): Likewise.
3859         * ggc-page.c (gt_ggc_m_S): New function.
3860         * stringpool.c (string_stack): Remove.
3861         (init_stringpool): Update.
3862         (ggc_alloc_string): Use ggc_alloc.
3863         (maybe_delete_ident): New function.
3864         (ggc_purge_stringpool): Likewise.
3865         (gt_ggc_m_S): Remove.
3866         * ggc-common.c (ggc_protect_identifiers): New global.
3867         (ggc_mark_roots): Call ggc_purge_stringpool.  Use
3868         ggc_protect_identifiers.
3869         * ggc.h (ggc_protect_identifiers): Declare.
3870         (gt_ggc_m_S): Update.
3871         (ggc_purge_stringpool): Declare.
3872         * toplev.c (compile_file): Set and reset ggc_protect_identifiers.
3873         * gengtype.c (write_types_process_field) <TYPE_STRING>: Remove
3874         special case.
3875         (write_root): Cast gt_ggc_m_S to gt_pointer_walker.
3876
3877 2008-05-21  David S. Miller  <davem@davemloft.net>
3878
3879         * config.gcc (sparc-*-linux*): Always include sparc/t-linux in
3880         tmake_file.
3881
3882 2008-05-21  Eric Botcazou  <ebotcazou@adacore.com>
3883
3884         * cfgexpand.c (tree_expand_cfg): Zap the EH throw statement table
3885         once finished.
3886
3887 2008-05-20  David Daney  <ddaney@avtrex.com>
3888
3889         * config/mips/mips.md (UNSPEC_SYNC_NEW_OP_12,
3890         UNSPEC_SYNC_OLD_OP_12, UNSPEC_SYNC_EXCHANGE_12): New define_constants.
3891         (UNSPEC_SYNC_EXCHANGE, UNSPEC_MEMORY_BARRIER, UNSPEC_SET_GOT_VERSION,
3892         UNSPEC_UPDATE_GOT_VERSION): Renumber.
3893         (optab, insn): Add 'plus' and 'minus' to define_code_attr.
3894         (atomic_hiqi_op): New define_code_iterator.
3895         (sync_compare_and_swap<mode>): Call mips_expand_atomic_qihi instead of
3896         mips_expand_compare_and_swap_12.
3897         (compare_and_swap_12): Use MIPS_COMPARE_AND_SWAP_12 instead of
3898         MIPS_COMPARE_AND_SWAP_12_0.  Pass argument to MIPS_COMPARE_AND_SWAP_12.
3899         (sync_<optab><mode>, sync_old_<optab><mode>,
3900         sync_new_<optab><mode>, sync_nand<mode>, sync_old_nand<mode>,
3901         sync_new_nand<mode>): New define_expands for HI and QI mode operands.
3902         (sync_<optab>_12, sync_old_<optab>_12, sync_new_<optab>_12,
3903         sync_nand_12, sync_old_nand_12, sync_new_nand_12): New insns.
3904         (sync_lock_test_and_set<mode>): New define_expand for HI and QI modes.
3905         (test_and_set_12): New insn.
3906         (sync_old_add<mode>, sync_new_add<mode>, sync_old_<optab><mode>,
3907         sync_new_<optab><mode>, sync_old_nand<mode>,
3908         sync_new_nand<mode>, sync_lock_test_and_set<mode>):  Add early
3909         clobber to operand 0 for SI and DI mode insns.
3910         * config/mips/mips-protos.h (mips_gen_fn_6, mips_gen_fn_5,
3911         mips_gen_fn_4): New typedefs.
3912         (mips_gen_fn_ptrs): Define new union type.
3913         (mips_expand_compare_and_swap_12): Remove declaration.
3914         (mips_expand_atomic_qihi): Declare function.
3915         * config/mips/mips.c (mips_expand_compare_and_swap_12): Rename to...
3916         (mips_expand_atomic_qihi): ... this.  Use new generator function
3917         parameter.
3918         * config/mips/mips.h (MIPS_COMPARE_AND_SWAP_12): Add OPS parameter.
3919         (MIPS_COMPARE_AND_SWAP_12_0): Delete macro.
3920         (MIPS_COMPARE_AND_SWAP_12_ZERO_OP, MIPS_COMPARE_AND_SWAP_12_NONZERO_OP,
3921         MIPS_SYNC_OP_12, MIPS_SYNC_OP_12_NOT_NOP,
3922         MIPS_SYNC_OP_12_NOT_NOT, MIPS_SYNC_OLD_OP_12,
3923         MIPS_SYNC_OLD_OP_12_NOT_NOP, MIPS_SYNC_OLD_OP_12_NOT_NOP_REG,
3924         MIPS_SYNC_OLD_OP_12_NOT_NOT, MIPS_SYNC_OLD_OP_12_NOT_NOT_REG,
3925         MIPS_SYNC_NEW_OP_12, MIPS_SYNC_NEW_OP_12_NOT_NOP,
3926         MIPS_SYNC_NEW_OP_12_NOT_NOT, MIPS_SYNC_EXCHANGE_12,
3927         MIPS_SYNC_EXCHANGE_12_ZERO_OP, MIPS_SYNC_EXCHANGE_12_NONZERO_OP):
3928         New macros.
3929
3930 2008-05-20  H.J. Lu  <hongjiu.lu@intel.com>
3931
3932         * config/i386/i386.c (ix86_expand_vector_init_one_nonzero): Add
3933         the missing break.
3934
3935 2008-05-20  Anatoly Sokolov <aesok@post.ru>
3936
3937         * config/avr/avr.h (machine_function): Add 'is_OS_main' field.
3938         * config/avr/avr.c (avr_OS_main_function_p): Add new function.
3939         (avr_attribute_table): Add 'OS_main' function attribute.
3940         (avr_regs_to_save, expand_prologue, expand_epilogue): Handle
3941         functions with 'OS_main' attribute.
3942
3943 2008-05-20  Richard Guenther  <rguenther@suse.de>
3944
3945         PR tree-optimization/35204
3946         * tree-ssa-sccvn.c (extract_and_process_scc_for_name): New
3947         helper, split out from ...
3948         (DFS): ... here.  Make the DFS walk non-recursive.
3949
3950 2008-05-20  Sebastian Pop  <sebastian.pop@amd.com>
3951             Jan Sjodin  <jan.sjodin@amd.com>
3952
3953         PR tree-optimization/36181
3954         * tree-parloops.c (loop_has_vector_phi_nodes): New.
3955         (parallelize_loops): Don't parallelize when the loop has vector
3956         phi nodes.
3957
3958 2008-05-20  Jan Sjodin  <jan.sjodin@amd.com>
3959             Sebastian Pop  <sebastian.pop@amd.com>
3960
3961         * tree-loop-linear.c (gather_interchange_stats): Look in the access
3962         matrix, and never look at the tree representation of the memory
3963         accesses.
3964         (linear_transform_loops): Computes parameters and access matrices.
3965         * tree-data-ref.c (compute_data_dependences_for_loop): Returns false
3966         when fails.
3967         (access_matrix_get_index_for_parameter): New.
3968         * tree-data-ref.h (struct access_matrix): New.
3969         (AM_LOOP_NEST_NUM, AM_NB_INDUCTION_VARS, AM_PARAMETERS, AM_MATRIX,
3970         AM_NB_PARAMETERS, AM_CONST_COLUMN_INDEX, AM_NB_COLUMNS,
3971         AM_GET_SUBSCRIPT_ACCESS_VECTOR, AM_GET_ACCESS_MATRIX_ELEMENT,
3972         am_vector_index_for_loop): New.
3973         (struct data_reference): Add field access_matrix.
3974         (DR_ACCESS_MATRIX): New.
3975         (compute_data_dependences_for_loop): Update declaration.
3976         (lambda_collect_parameters, lambda_compute_access_matrices): Declared.
3977         * lambda.h (lambda_vector_vec_p): Declared.
3978         * lambda-code.c: Depend on pointer-set.h.
3979         (lambda_collect_parameters_from_af, lambda_collect_parameters,
3980         av_for_af_base, av_for_af, build_access_matrix,
3981         lambda_compute_access_matrices): New.
3982         * Makefile.in (lambda-code.o): Depend on pointer-set.h.
3983
3984 2008-05-20  Joseph Myers  <joseph@codesourcery.com>
3985
3986         * doc/install.texi2html: Generate gcc-vers.texi in $DESTDIR not
3987         $SOURCEDIR/include.
3988
3989 2008-05-20  Jan Sjodin  <jan.sjodin@amd.com>
3990             Sebastian Pop  <sebastian.pop@amd.com>
3991
3992         PR tree-optimization/36206
3993         * tree-scalar-evolution.c: Remove enum INSERT_SUPERLOOP_CHRECS,
3994         FOLD_CONVERSIONS.
3995         (instantiate_scev_1): Rename flags to fold_conversions.
3996         Do not check for INSERT_SUPERLOOP_CHRECS, keep SSA_NAMEs defined
3997         outeside instantiation_loop.
3998         * tree-chrec.h (evolution_function_is_affine_in_loop): New.
3999         (evolution_function_is_affine_or_constant_p): Removed.
4000         * tree-data-ref.c (dr_analyze_indices): Replace resolve_mixers with
4001         instantiate_scev.
4002         (analyze_siv_subscript): Pass in the loop nest number.
4003         Call evolution_function_is_affine_in_loop instead of 
4004         evolution_function_is_affine_p.
4005         (analyze_overlapping_iterations): Pass in the loop nest number.
4006
4007 2008-05-20  Jan Sjodin  <jan.sjodin@amd.com>
4008             Sebastian Pop  <sebastian.pop@amd.com>
4009
4010         PR tree-optimization/36206
4011         * tree-chrec.h (chrec_fold_op): New.
4012         * tree-data-ref.c (initialize_matrix_A): Traverse NOP_EXPR, PLUS_EXPR,
4013         and other trees.
4014
4015 2008-05-20  Nathan Sidwell  <nathan@codesourcery.com>
4016
4017         * c-incpath.c (INO_T_EQ): Do not define on non-inode systems.
4018         (DIRS_EQ): New.
4019         (remove_duplicates): Do not set inode on non-inode systems.
4020         Use DIRS_EQ.
4021
4022 2008-05-20  Sandra Loosemore  <sandra@codesourcery.com>
4023
4024         * config.gcc (tm_file): Update comments about relative pathnames.
4025
4026 2008-05-20  Richard Guenther  <rguenther@suse.de>
4027
4028         * tree-ssa-reassoc.c (fini_reassoc): Use the statistics infrastructure.
4029         * tree-ssa-sccvn.c (process_scc): Likewise.
4030         * tree-ssa-sink.c (execute_sink_code): Likewise.
4031         * tree-ssa-threadupdate.c (thread_through_all_blocks): Likewise.
4032         * tree-vrp.c (process_assert_insertions): Likewise.
4033         * tree-ssa-dce.c (eliminate_unnecessary_stmts): Likewise.
4034         (perform_tree_ssa_dce): Likewise.
4035         * tree-ssa-dom.c (tree_ssa_dominator_optimize): Likewise.
4036         (dump_dominator_optimization_stats): Likewise.
4037         * tree-vectorizer.c (vectorize_loops): Likewise.
4038
4039 2008-05-20  Richard Guenther  <rguenther@suse.de>
4040
4041         * tree-vn.c (vn_lookup_with_vuses): Do not use the alias oracle.
4042
4043 2008-05-20  Kai Tietz  <kai.tietz@onevision.com>
4044
4045         * config/i386/i386-protos.h (ix86_return_in_memory): Removed.
4046         (ix86_i386elf_return_in_memory): Likewise.
4047         (ix86_i386interix_return_in_memory): Likewise.
4048         * config/i386/i386-interix.h (TARGET_RETURN_IN_MEMORY): Removed.
4049         (SUBTARGET_RETURN_IN_MEMORY): New.
4050         * config/i386/i386elf.h: Likewise.
4051         * config/i386/ptx4-i.h: Likewise.
4052         * config/i386/sol2-10.h: Likewise.
4053         * config/i386/sysv4.h: Likewise.
4054         * config/i386/vx-common.h: Likewise.
4055         * config/i386/i386.h (TARGET_RETURN_IN_MEMORY): Removed.
4056         * config/i386/i386.c (ix86_return_in_memory): Made static and
4057         make use of optional SUBTARGET_RETURN_IN_MEMORY macro.
4058         (ix86_i386elf_return_in_memory): Removed.
4059         (ix86_i386interix_return_in_memory): Removed.
4060         (TARGET_RETURN_IN_MEMORY): Declared within i386.c only.
4061         * target-def.h (TARGET_RETURN_IN_MEMORY): Remove protection #ifdef.
4062
4063 2008-05-20  Alexandre Oliva  <aoliva@redhat.com>
4064
4065         * cselib.c (cselib_record_sets): Use correct mode for IF_THEN_ELSE.
4066
4067 2008-05-19  Xinliang David Li  <davidxl@google.com>
4068
4069         * tree-ssa-dce.c: Revert patches of 2008-05-17 and 2008-05-18. 
4070         * opts.c: Ditto.
4071         * common.opt: Ditto.
4072         * doc/invoke.texi: Ditto.
4073
4074 2008-05-19  Eric Botcazou  <ebotcazou@adacore.com>
4075
4076         * tree.c (substitute_in_expr) <tcc_vl_exp>: Fix thinko.
4077         (substitute_placeholder_in_expr) <tcc_vl_exp>: Minor tweak.
4078
4079 2008-05-19  H.J. Lu  <hongjiu.lu@intel.com>
4080
4081         * config/i386/i386.c (ix86_expand_vector_init_concat): Change
4082         sizes of operand array from 8/4 to 4/2.
4083         (ix86_expand_vector_init_general): Change size of operand array
4084         from 32 to 16.  Remove op0, op1 and half_mode.
4085
4086 2008-05-19  H.J. Lu  <hongjiu.lu@intel.com>
4087
4088         * config/i386/i386.c (ix86_expand_vector_init_concat): New.
4089         (ix86_expand_vector_init_interleave): Likewise.
4090         (ix86_expand_vector_init_general): Use them.  Assert
4091         word_mode == SImode when n_words == 4.
4092
4093 2008-05-19  Uros Bizjak  <ubizjak@gmail.com>
4094
4095         * config/i386/i386.c (ix86_secondary_reload): New static function.
4096         (TARGET_SECONDARY_RELOAD): New define.
4097         * config/i386/i386.h (SECONDARY_OUTPUT_RELOAD_CLASS): Remove.
4098         * config/i386/i386.md (reload_outqi): Remove.
4099
4100 2008-05-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4101
4102         PR middle-end/35509
4103         * builtins.c (mathfn_built_in_1): Renamed from mathfn_built_in.
4104         Add `implicit' parameter.  Handle BUILT_IN_SIGNBIT.
4105         (mathfn_built_in): Rewrite in terms of mathfn_built_in_1.
4106         (fold_builtin_classify): Handle BUILT_IN_ISINF_SIGN.
4107         (fold_builtin_1): Likewise.
4108         * builtins.def (BUILT_IN_ISINF_SIGN): New.
4109         c-common.c (check_builtin_function_arguments): Handle
4110         BUILT_IN_ISINF_SIGN.
4111         * doc/extend.texi: Document __builtin_isinf_sign.
4112         * fold-const.c (operand_equal_p): Handle COND_EXPR.
4113
4114 2008-05-18  Eric Botcazou  <ebotcazou@adacore.com>
4115
4116         * tree-ssa-dom.c (tree_ssa_dominator_optimize): If some blocks need
4117         EH cleanup at the end of the pass, search for those that have been
4118         turned into forwarder blocks and do the cleanup on their successor.
4119
4120 2008-05-18  Richard Guenther  <rguenther@suse.de>
4121
4122         * tree-cfg.c (verify_gimple_expr): Allow conversions from
4123         pointers to sizetype and vice versa.
4124
4125 2008-05-18 Xinliang David Li   <davidxl@google.com>
4126
4127         * gcc/tree-ssa-dce.c: Coding style fix.
4128         (check_pow): Documentation comment. 
4129         (check_log): Documenation comment. Coding style fix.
4130         (is_unnecessary_except_errno_call): Ditto.
4131         (gen_conditions_for_pow): Ditto.
4132         (gen_conditions_for_log): Ditto.
4133         (gen_shrink_wrap_conditions): Ditto.
4134         (shrink_wrap_one_built_in_calls): Ditto.
4135         * gcc/doc/invoke.texi: Better documentation string.
4136         * ChangeLog: Fix wrong change log entries from 
4137         May 17 checkin on function call DCE.
4138
4139 2008-05-17  Kaz Kojima  <kkojima@gcc.gnu.org>
4140
4141         * config/sh/sh.c (sh_output_mi_thunk): Update the use of init_flow.
4142
4143 2008-05-17  Kenneth Zadeck <zadeck@naturalbridge.com>
4144
4145         * doc/rtl.texi (RTL_CONST_CALL_P, RTL_PURE_CALL_P): Fixed typos.
4146         * df-problems.c (simulation routines): Fixed block comment to
4147         properly say how to add forwards scanning functions.
4148         
4149 2008-05-17  Eric Botcazou  <ebotcazou@adacore.com>
4150
4151         * tree-inline.c (setup_one_parameter): Remove dead code.
4152
4153 2008-05-17  Eric Botcazou  <ebotcazou@adacore.com>
4154
4155         * fold-const.c (fold_unary) <CASE_CONVERT>: Fold the cast into
4156         a BIT_AND_EXPR only for an INTEGER_TYPE.
4157
4158 2008-05-17 Xinliang David Li   <davidxl@google.com>
4159
4160         * gcc/tree-ssa-dce.c (cond_dead_built_in_calls): New static variable.
4161         (check_pow, check_log, is_unnecessary_except_errno_call): New 
4162         functions to check for eliminating math functions that are pure 
4163         except for setting errno.
4164         (gen_conditions_for_pow, gen_conditionas_for_log): New functions to
4165         general condition expressions for shrink-wrapping pow/log calls.
4166         (gen_shrink_wrap_conditions): Ditto.
4167         (shrink_wrap_one_built_in_call): Ditto.
4168         (shrink_wrap_conditional_dead_built_in_calls): Ditto.
4169         (mark_operand_necessary): If debugging, output if OP is necessary.
4170         (eliminate_unnecessary_stmts): Eliminate pow, log calls that are
4171         unnecessary.
4172         * gcc/opts.c (decode_options): set flag_tree_builtin_dce to 1 when
4173         opt level >= 2.
4174         * gcc/common.opt: New user flag -ftree-builtin-dce.
4175         * gcc/doc/invoke.texi (-ftree-builtin-dce): New option.
4176
4177 2008-05-16  David S. Miller  <davem@davemloft.net>
4178
4179         * config/sparc/linux.h (NO_PROFILE_COUNTERS): Undef before overriding.
4180         * config/sparc/linux64.h (NO_PROFILE_COUNTERS): Likewise.
4181
4182 2008-05-16  Uros Bizjak  <ubizjak@gmail.com>
4183
4184         PR target/36246
4185         * config/i386/i386.h (SECONDARY_MEMORY_NEEDED_MODE): New define.
4186
4187 2008-05-16  Kenneth Zadeck <zadeck@naturalbridge.com>
4188
4189         * ifcvt.c (dead_or_predicable): Rename
4190         df_simulate_one_insn_backwards to df_simulate_one_insn.
4191         * recog.c (peephole2_optimize): Ditto.
4192         * rtl-factoring.c (collect_pattern_seqs, clear_regs_live_in_seq):
4193         Ditto.
4194         * df.h: Rename df_simulate_one_insn_backwards to
4195         df_simulate_one_insn.  and delete df_simulate_one_insn_forwards.
4196         * df-problems.c (df_simulate_artificial_refs_at_top) Reversed
4197         scanning of defs and uses.
4198         (df_simulate_one_insn_backwards): Renamed to df_simulate_one_insn.
4199         (df_simulate_one_insn_forwards): Removed.
4200
4201 2008-05-16  Doug Kwan  <dougkwan@google.com>
4202
4203         * real.c (real_to_decimal, real_to_hexadecimal): Distinguish
4204         QNaN & SNaN.
4205         (real_from_string): Handle NaNs and Inf as approriate.
4206
4207 2008-05-16  Nathan Froyd  <froydnj@codesourcery.com>
4208
4209         * doc/gty.texi (Source Files Containing Type Information): Note
4210         that headers should appear first in the gtfiles list.
4211
4212 2008-05-16  Kenneth Zadeck <zadeck@naturalbridge.com>
4213
4214         * tree.def (COND_EXEC): Properly documented this code.
4215
4216 2008-05-16  Diego Novillo  <dnovillo@google.com>
4217
4218         * dwarf2asm.c (dw2_assemble_integer): Clarify comment.
4219         * tree-nested.c (get_trampoline_type): Set DECL_CONTEXT for
4220         the new field.
4221
4222 2008-05-16  Kenneth Zadeck <zadeck@naturalbridge.com>
4223
4224         * tree-ssa-dse (max_stmt_uid): Removed.
4225         (get_stmt_uid, dse_possible_dead_store_p, dse_optimize_stmt, 
4226         tree_ssa_dse): Encapsulate all uses of stmt_ann->uid.
4227         * tree-ssa-sccvn.c (compare_ops, init_scc_vn): Ditto.
4228         * function.h (cfun.last_stmt_uid): New field.
4229         * tree-flow-inline.h (set_gimple_stmt_uid, gimple_stmt_uid,
4230         gimple_stmt_max_uid, set_gimple_stmt_max_uid, inc_gimple_stmt_max_uid):
4231         New functions.
4232         * tree-dfa.c (renumber_gimple_stmt_uids): New function.
4233         (create_stmt_ann): Initialize the ann->uid field.
4234         * tree-ssa-pre.c (compute_avail): Encapsulate the stmt_ann->uid
4235         with new calls.
4236         * tree-flow.h (renumber_gimple_stmt_uids): New function.
4237
4238 2008-05-16  Nathan Froyd  <froydnj@codesourcery.com>
4239
4240         * tree-flow.h (init_empty_tree_cfg_for_function): Declare.
4241         * tree-cfg.c (init_empty_tree_cfg_for_function): Define.
4242         (init_empty_tree_cfg): Call it.
4243
4244 2008-05-16  Kenneth Zadeck <zadeck@naturalbridge.com>
4245
4246         * cfg.c (init_flow): Add argument THE_FUN.  Use it instead of cfun.
4247         Update all users.
4248
4249 2008-05-16  Kenneth Zadeck <zadeck@naturalbridge.com>
4250
4251         * doc/invoke.text (-fdump-tree-*-verbose): New option.
4252         * tree-dump.c (dump_options): New verbose option.
4253         * tree-pretty-print.c (dump_phi_nodes, dump_generic_bb_buff):
4254         Add verbose dump.
4255         * tree-pass.h (TDF_VERBOSE): New dump flag.
4256         * print-tree.c (print_node): Added code to be able to print PHI_NODES.
4257         (tree-flow.h): Added include.
4258         * Makefile.in (print-tree.o):  Added TREE_FLOW_H.
4259
4260 2008-05-16  Bernd Schmidt  <bernd.schmidt@analog.com>
4261
4262         * config/bfin/bfin.c (bfin_discover_loops): Delete empty loops.
4263
4264         From Jie Zhang  <jie.zhang@analog.com>
4265         * config/bfin/t-bfin-elf (MULTILIB_OPTIONS, MULTILIB_DIRNAMES,
4266         MULTILIB_MATCHES, MULTILIB_EXCEPTIONS): Remove mcpu=bf532-0.3,
4267         mcpu=bf561-none and mcpu=bf561-0.2.
4268         * config/bfin/t-bfin-uclinux (MULTILIB_OPTIONS, MULTILIB_DIRNAMES,
4269         MULTILIB_MATCHES, MULTILIB_EXCEPTIONS): Likewise.
4270         * config/bfin/t-bfin-linux (MULTILIB_OPTIONS, MULTILIB_DIRNAMES,
4271         MULTILIB_MATCHES, MULTILIB_EXCEPTIONS): Likewise.
4272         * config/bfin/bfin-protos.h (enum bfin_cpu_type): Add BFIN_CPU_UNKNOWN.
4273         * config/bfin/elf.h (STARTFILE_SPEC): Use specific CRT for BF561.
4274         (LIB_SPEC): Use proper linker script for bf561.  Error if no mcpu
4275         option.
4276         * config/bfin/bfin.c (bfin_cpu_type): Set to BFIN_CPU_UNKNOWN.
4277         (cputype_selected): Remove.
4278         (bfin_handle_option): Don't use cputype_selected.
4279         (override_options): When no mcpu option, enable all workarounds.
4280         Don't use bfin_workarounds.
4281         * config/bfin/bfin.h (DRIVER_SELF_SPECS): Don't set default
4282         processor type.
4283         (DEFAULT_CPU_TYPE): Don't define.
4284
4285 2008-05-16  Richard Guenther  <rguenther@suse.de>
4286
4287         * tree-ssa-propagate.c (substitute_and_fold): Fix stmt walking
4288         on deletion of the last stmt.
4289
4290 2008-05-15  H.J. Lu  <hongjiu.lu@intel.com>
4291
4292         * config/i386/i386.c (ix86_expand_vector_init_general): Optimize
4293         V8HImode for SSE2 and V16QImode for SSE4.1.
4294
4295 2008-05-15  Kenneth Zadeck <zadeck@naturalbridge.com>
4296
4297         * cgraph.h (compute_inline_parameters): Made public.
4298         * tree-pass.h (ipa_opt_pass): Removed function_generate_summary,
4299         variable_generate_summary, function_write_summary,
4300         variable_write_summary, variable_read_summary.  Added generate_summary,
4301         write_summary, read_summary.
4302         * cgraphunit.c (cgraph_process_new_functions): Changed call from
4303         pass_ipa_inline.function_generate_summary, to
4304         compute_inline_parameters. 
4305         * ipa-inline.c (compute_inline_parameters): Made public and added
4306         node parameter.
4307         (compute_inline_parameters_for_current): New function.
4308         (pass_inline_param): Now calls compute_inline_parameters_for_current.
4309         (inline_generate_summary): Removed parameter and made to loop over
4310         all cgraph nodes.
4311         (pass_ipa_inline): Updated for new IPA_PASS structure.
4312         * passes.c (execute_ipa_summary_passes): Now is called once per
4313         pass rather than once per node*pass.
4314         
4315 2008-05-15  Anatoly Sokolov <aesok@post.ru>
4316
4317         * config/avr/avr.c (avr_base_arch_macro, avr_have_movw_lpmx_p, 
4318         avr_have_mul_p, avr_asm_only_p): Remove variables.
4319         (avr_override_options): Remove initialization of removed variables.
4320         (avr_file_start):  Convert removed variables to fields of 
4321         'struct base_arch_s *avr_current_arch'. 
4322         * config/avr/avr.h (TARGET_CPU_CPP_BUILTINS): (Ditto.).
4323         (AVR_HAVE_MUL): (Ditto.).
4324         (AVR_HAVE_MOVW): (Ditto.).
4325         (AVR_HAVE_LPMX): (Ditto.). 
4326         (avr_base_arch_macro, avr_have_movw_lpmx_p, avr_have_mul_p, 
4327         avr_asm_only_p): Remove declaration.
4328
4329 2008-05-15  Diego Novillo  <dnovillo@google.com>
4330
4331         * config/arm/arm.c (arm_return_in_memory): Fix return type.
4332         * config/arm/arm-protos.h (arm_return_in_memory): Likewise.
4333
4334 2008-05-15  Adam Nemet  <anemet@caviumnetworks.com>
4335
4336         PR middle-end/36194
4337         * combine.c (check_conversion): Rename back to check_promoted_subreg.
4338         Don't call record_truncated_value from here.
4339         (record_truncated_value): Turn it into a for_each_rtx callback.
4340         (record_truncated_values): New function.
4341         (combine_instructions): Call note_uses with record_truncated_values.
4342         Change name of check_conversion to check_promoted_subreg. 
4343
4344 2008-05-15  Janis Johnson  <janis187@us.ibm.com>
4345
4346         * doc/sourcebuild.texi: Document support for torture tests.
4347
4348 2008-05-15  Uros Bizjak  <ubizjak@gmail.com>
4349
4350         * config/i386/sse.md (*vec_concatv2sf_sse4_1): Add "m" constraint
4351         to alternative 4 of operand 2.
4352
4353 2008-05-15  Richard Guenther  <rguenther@suse.de>
4354
4355         * tree-pass.h (current_pass): Declare.
4356         (get_pass_for_id): Likewise.
4357         * passes.c (passes_by_id, passes_by_id_size): New globals.
4358         (set_pass_for_id): New function.
4359         (get_pass_for_id): Likewise.
4360         (register_one_dump_file): Use set_pass_for_id to populate passes_by_id.
4361         (execute_function_todo): Flush per function statistics.
4362         * toplev.c (compile_file): Init statistics.
4363         (general_init): Do early statistics initialization.
4364         (finalize): Finish statistics.
4365         * statistics.h (statistics_early_init): Declare.
4366         (statistics_init): Likewise.
4367         (statistics_fini): Likewise.
4368         (statistics_fini_pass): Likewise.
4369         (statistics_counter_event): Likewise.
4370         (statistics_histogram_event): Likewise.
4371         * statistics.c: New file.
4372         * Makefile.in (OBJS-common): Add statistics.o.
4373         (statistics.o): Add dependencies.
4374         * doc/invoke.texi (-fdump-statistics): Document.
4375
4376         * tree-ssa-pre.c (compute_antic): Use statistics_histogram_event.
4377         (insert): Likewise.
4378         (execute_pre): Use statistics_counter_event.
4379         * tree-ssa-propagate.c (struct prop_stats_d): Add num_dce field.
4380         (substitute_and_fold): Increment it.  Use statistics_counter_event.
4381
4382 2008-05-15  Diego Novillo  <dnovillo@google.com>
4383
4384         http://gcc.gnu.org/ml/gcc-patches/2008-05/msg00893.html
4385
4386         * treestruct.def (TS_STRUCT_FIELD_TAG): Remove.
4387         * tree-ssa-alias.c (new_type_alias): Remove references to
4388         sub-variables from comment.
4389         * tree-ssa-operands.c (swap_tree_operands): Likewise.
4390
4391 2008-05-15  H.J. Lu  <hongjiu.lu@intel.com>
4392
4393         * config/i386/sse.md (*vec_concatv2sf_sse4_1): Set prefix_extra
4394         attribute to 1 only for insertps alternative.
4395
4396 2008-05-15  Bernd Schmidt  <bernd.schmidt@analog.com>
4397
4398         * config/bfin/bfin.md (loadbytes): New pattern.
4399         * config/bfin/bfin.c (enum bfin_builtins): Add BFIN_BUILTIN_LOADBYTES.
4400         (bfin_init_builtins): Initialize it.
4401         (bdesc_1arg): Add it.
4402
4403 2008-05-15  Sa Liu  <saliu@de.ibm.com>
4404
4405         * testsuite/gfortran.dg/c_kind_int128_test1.f03: New.
4406         * testsuite/gfortran.dg/c_kind_int128_test2.f03: New.
4407         * testsuite/lib/target-supports.exp: Add
4408         check_effective_target_fortran_integer_16.
4409
4410 2008-05-15  Bernd Schmidt  <bernd.schmidt@analog.com>
4411
4412         * config/bfin/bfin.h (TARGET_RETURN_IN_MEMORY): Don't define here.
4413         * config/bfin/bfin-protos.h (bfin_return_in_memory): Don't declare.
4414         * config/bfin/bfin.c (bfin_return_in_memory): Now static.  Return bool.
4415         (TARGET_RETURN_IN_MEMORY): Define.
4416
4417 2008-05-15  Richard Guenther  <rguenther@suse.de>
4418
4419         PR middle-end/36244
4420         * tree-ssa-alias.c (new_type_alias): Do not set TREE_READONLY.
4421         * tree-flow-inline.h (unmodifiable_var_p): Memory tags never
4422         represent unmodifiable vars.
4423
4424 2008-05-15  Richard Guenther  <rguenther@suse.de>
4425
4426         * tree-dfa.c (refs_may_alias_p): Allow all kinds of
4427         INDIRECT_REF and TARGET_MEM_REF.
4428         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Handle
4429         TARGET_MEM_REF.
4430
4431 2008-05-15  Uros Bizjak  <ubizjak@gmail.com>
4432             H.J. Lu  <hongjiu.lu@intel.com>
4433
4434         * config/i386/sse.md (*vec_concatv2sf_sse4_1): New insn pattern.
4435         (*vec_concatv2si_sse4_1): Use vector_move_operand predicate
4436         for operand 2.  Remove pinsr{q,d} with 0x0 immediate operand from
4437         insn alternatives.  Add missing alternatives.
4438         (*vec_concatv2di_rex64_sse4_1): Likewise.
4439         (*vec_concatv2si_sse2): Use "x" register constraint instead of "Y2".
4440         (*vec_concatv2di_rex64_sse): Rename from *vec_concatv2di_rex64.
4441         Require TARGET_SSE.
4442
4443 2008-05-15  Richard Guenther  <rguenther@suse.de>
4444
4445         PR tree-optimization/36009
4446         PR tree-optimization/36204
4447         * tree-ssa-loop-im.c (tree-ssa-propagate.h): Include.
4448         (determine_invariantness_stmt): Record the loop a store is
4449         always executed in.
4450         * Makefile.in (tree-ssa-loop-im.o): Add tree-ssa-propagate.h
4451         dependency.
4452
4453 2008-05-15  Richard Guenther  <rguenther@suse.de>
4454
4455         PR tree-optimization/34330
4456         * tree-ssa-alias.c (get_smt_for): Only assert that accesses
4457         through the pointer will alias the SMT.
4458
4459 2008-05-14  Andreas Tobler  <a.tobler@schweiz.org>
4460
4461         * config/sparc/sparc.h (NO_PROFILE_COUNTERS): Define as 0.
4462
4463 2008-05-14  H.J. Lu  <hongjiu.lu@intel.com>
4464
4465         * config/i386/sse.md (*sse4_1_pinsrq): Make it 64bit only.
4466
4467 2008-05-14  Michael Meissner  <michael.meissner@amd.com>
4468             Dwarakanath Rajagopal  <dwarak.rajagopal@amd.com>
4469
4470         * optabs.h (optab_index): Add OTI_vashl, OTI_vlshr, OTI_vashr,
4471         OTI_vrotl, OTI_vrotr to support vector/vector shifts.
4472         (vashl_optab): New optab for vector/vector shifts.
4473         (vashr_optab): Ditto.
4474         (vlshr_optab): Ditto.
4475         (vrotl_optab): Ditto.
4476         (vrotr_optab): Ditto.
4477         (optab_subtype): New enum for optab_for_tree_code call.
4478         (optab_for_tree_code): Add enum optab_subtype argument.
4479
4480         * optabs.c (optab_for_tree_code): Take an additional argument to
4481         distinguish between a vector shift by a scalar and vector shift by
4482         a vector.  Make lshr/ashr/ashl/rotl/rotr optabs just vector
4483         shifted by a scalar.  Use vlshr/vashr/vashl/vrotl/vrotr for the
4484         vector shift by a vector.
4485         (expand_widen_pattern_expr): Pass additional argument to
4486         optab_for_tree_code.
4487
4488         * genopinit.c (optabs): Add vashr_optab, vashl_optab, vlshr_optab,
4489         vrotl_optab, vrotr_optab.
4490
4491         * expr.c (expand_expr_real_1): Update calls to
4492         optab_for_tree_code to distinguish between vector shifted by a
4493         scalar and vector shifted by a vector.
4494         * tree-vectorizer.c (supportable_widening_operation): Ditto.
4495         (supportable_narrowing_operation): Ditto.
4496         * tree-vect-analyze.c (vect_build_slp_tree): Ditto.
4497         * tree-vect-patterns.c (vect_pattern_recog_1): Ditto.
4498         * tree-vect-transform.c (vect_model_reduction_cost): Ditto.
4499         (vect_create_epilog_for_reduction): Ditto.
4500         (vectorizable_reduction): Ditto.
4501         (vectorizable_operation): Ditto.
4502         (vect_strided_store_supported): Ditto.
4503         (vect_strided_load_supported): Ditto.
4504         * tree-vect-generic.c (expand_vector_operations_1): Ditto.
4505         * expmed.c (expand_shift): Ditto.
4506
4507         * doc/md.texi (ashl@var{m}3): Document that operand 2 is always a
4508         scalar type.
4509         (ashr@var{m}3): Ditto.
4510         (vashl@var{m}3): Document new vector/vector shift standard name.
4511         (vashr@var{m}3): Ditto.
4512         (vlshr@var{m}3): Ditto.
4513         (vrotl@var{m}3): Ditto.
4514         (vrotr@var{m}3): Ditto.
4515
4516         * config/i386/i386.md (PPERM_SRC): Move PPERM masks here from i386.c.
4517         (PPERM_INVERT): Ditto.
4518         (PPERM_REVERSE): Ditto.
4519         (PPERM_REV_INV): Ditto.
4520         (PPERM_ZERO): Ditto.
4521         (PPERM_ONES): Ditto.
4522         (PPERM_SIGN): Ditto.
4523         (PPERM_INV_SIGN): Ditto.
4524         (PPERM_SRC1): Ditto.
4525         (PPERM_SRC2): Ditto.
4526
4527         * config/i386/sse.md (mulv2di3): Add SSE5 support.
4528         (sse5_pmacsdql_mem): New SSE5 define_and_split that temporarily
4529         allows a memory operand to be the value being added, and split it
4530         to improve vectorization.
4531         (sse5_pmacsdqh_mem): Ditto.
4532         (sse5_mulv2div2di3_low): SSE5 32-bit multiply and extend function.
4533         (sse5_mulv2div2di3_high): Ditto.
4534         (vec_pack_trunc_v8hi): Add SSE5 pperm support.
4535         (vec_pack_trunc_v4si): Ditto.
4536         (vec_pack_trunc_v2di): Ditto.
4537         (sse5_pcmov_<mode>): Remove code that tried to use use
4538         andps/andnps instead of pcmov.
4539         (vec_widen_smult_hi_v4si): If we have SSE5, use the pmacsdql and
4540         pmacsdqh instructions.
4541         (vec_widen_smult_lo_v4si): Ditto.
4542
4543         * config/i386/i386.c (PPERM_SRC): Move PPERM masks to i386.md.
4544         (PPERM_INVERT): Ditto.
4545         (PPERM_REVERSE): Ditto.
4546         (PPERM_REV_INV): Ditto.
4547         (PPERM_ZERO): Ditto.
4548         (PPERM_ONES): Ditto.
4549         (PPERM_SIGN): Ditto.
4550         (PPERM_INV_SIGN): Ditto.
4551         (PPERM_SRC1): Ditto.
4552         (PPERM_SRC2): Ditto.
4553         (ix86_expand_sse_movcc): Move the SSE5 test after the if
4554         true/false tests.
4555         (ix86_expand_int_vcond): If SSE5 generate all possible integer
4556         comparisons.
4557         (ix86_sse5_valid_op_p): Allow num_memory to be negative, which
4558         says ignore whether the last reference is a memory operand.
4559
4560 2008-05-14  Michael Meissner  <michael.meissner@amd.com>
4561             Paolo Bonzini <bonzini at gnu dot org>
4562
4563         * config/rs6000/rs6000.c (bdesc_2arg): Change the names of vector
4564         shift patterns.
4565
4566         * config/rs6000/altivec.md (vashl<mode>3): Rename from ashl<mode>3.
4567         (vlshr<mode>3): Rename from vlshr<mode>3.
4568         (vashr<mode>3): Rename from vashr<mode>3.
4569         (mulv4sf3): Change the names of vector shift patterns.
4570         (mulv4si3): Ditto.
4571         (negv4sf2): Ditt.
4572
4573         * config/spu/spu.c (spu_initialize_trampoline): Rename vector
4574         shift insns.
4575
4576         * config/spu/spu-builtins.def (SI_SHLH): Rename vector shift insns.
4577         (SI_SHLHI): Ditto.
4578         (SI_SHL): Ditto.
4579         (SI_SHLI): Ditto.
4580         (SI_ROTH): Ditto.
4581         (SI_ROTHI): Ditto.
4582         (SI_ROT): Ditto.
4583         (SI_ROTI): Ditto.
4584         (SPU_RL_0): Ditto.
4585         (SPU_RL_1): Ditto.
4586         (SPU_RL_2): Ditto.
4587         (SPU_RL_3): Ditto.
4588         (SPU_RL_4): Ditto.
4589         (SPU_RL_5): Ditto.
4590         (SPU_RL_6): Ditto.
4591         (SPU_RL_7): Ditto.
4592         (SPU_SL_0): Ditto.
4593         (SPU_SL_1): Ditto.
4594         (SPU_SL_2): Ditto.
4595         (SPU_SL_3): Ditto.
4596         (SPU_SL_4): Ditto.
4597         (SPU_SL_5): Ditto.
4598         (SPU_SL_6): Ditto.
4599         (SPU_SL_7): Ditto.
4600
4601         * config/spu/spu.md (v): New iterator macro to add v for vector types.
4602         (floatunssidf2_internal): Change vector/vector shift names.
4603         (floatunsdidf2_internal): Ditto.
4604         (mulv8hi3): Ditto.
4605         (ashrdi3): Ditto.
4606         (ashrti3): Ditto.
4607         (cgt_df): Ditto.
4608         (cgt_v2df): Ditto.
4609         (dftsv): Ditto.
4610         (vashl<mode>3): Rename from ashl<mode>3.
4611         (vashr<mode>3): Rename from ashr<mode>3.
4612         (vlshr<mode>3): Rename from lshr<mode>3.
4613         (vrotl<mode>3): Rename from rotl<mode>3.
4614
4615 2008-05-14  Michael Meissner  <michael.meissner@amd.com>
4616
4617         PR target/36224
4618         * config/i386/sse.md (vec_widen_smult_hi_v4si): Delete, using unsigned
4619         multiply gives the wrong value when doing widening multiplies.
4620         (vec_widen_smult_lo_v4si): Ditto.
4621
4622 2008-05-14  Kenneth Zadeck <zadeck@naturalbridge.com>
4623
4624         * optabs.c (prepare_cmp_insn): Changed LCT_PURE_MAKE_BLOCK to
4625         LCT_PURE and LCT_CONST_MAKE_BLOCK to LCT_CONST in calls to
4626         emit_library_call_value. 
4627         * builtins.c (expand_builtin_powi, expand_builtin_memcmp): Ditto.
4628         * tree.h (ECF_LIBCALL_BLOCK): Removed.
4629         * calls.c (initialize_argument_information, precompute_arguments, 
4630         expand_call, emit_library_call_value_1): Remove ECF_LIBCALL_BLOCK.
4631         (precompute_arguments): Removed flags parameter.
4632         * rtl.h (LCT_CONST_MAKE_BLOCK, LCT_PURE_MAKE_BLOCK): Removed.
4633         
4634 2008-05-14  Richard Guenther  <rguenther@suse.de>
4635
4636         * tree-ssa-dse.c (dse_possible_dead_store_p): Remove dead code.
4637         Make sure to register the store if the use is a PHI_NODE.
4638
4639 2008-05-14  Olivier Hainque  <hainque@adacore.com>
4640
4641         * expr.c (expand_expr_real_1) <normal_inner_ref>: Force op0 to
4642         memory if the component is to be referenced in BLKmode according
4643         to get_inner_reference.
4644
4645 2008-05-14  Adam Nemet  <anemet@caviumnetworks.com>
4646
4647         * calls.c (emit_library_call_value_1): Restore code clearing
4648         ECF_LIBCALL_BLOCK to ensure that we only call end_sequence once.
4649
4650 2008-05-14  Olivier Hainque  <hainque@adacore.com>
4651             Nicolas Roche  <roche@adacore.com>
4652
4653         * configure.ac: Add support for a "gcc_subdir" variable in
4654         config-lang.in, to denote a subdirectory where the language/GCC
4655         integration files are to be found.
4656         * configure: Regenerate.
4657
4658 2008-05-14  Ira Rosen  <irar@il.ibm.com>
4659
4660         PR tree-optimization/36098
4661         * tree-vect-analyze.c (vect_analyze_group_access): Set the gap
4662         value for the first load in the group in case of a gap.
4663         (vect_build_slp_tree): Check that there are no gaps in loads.
4664
4665 2008-05-14  Kenneth Zadeck <zadeck@naturalbridge.com>
4666
4667         * doc/rtl.texi: Removed reference to REG_NO_CONFLICT notes.
4668         * optabs.c (expand_binop, expand_absneg_bit, expand_unop,
4669         expand_copysign_bit, ): Change call to emit_no_conflict_block to
4670         emit_insn and remove unneeded code to construct extra args.
4671         (emit_no_conflict_block): Removed.
4672         * optabls.h: (emit_no_conflict_block): Removed.
4673         * cse.c (cse_extended_basic_block): Remove search for
4674         REG_NO_CONFLICT note.
4675         * global.c: Removed incorrect comment added in revision 117.
4676         * expr.c (convert_move): Change call to emit_no_conflict_block to
4677         emit_insn.
4678         * recog.c: Change comments so that they do not mention
4679         REG_NO_CONFLICT.
4680         * local_alloc.c (combine_regs): Removed last parameter.
4681         (no_conflict_p): Removed.
4682         (block_alloc): Removed note, no_conflict_combined_regno and set
4683         local vars. Removed all code to process REG_NO_CONFLICT blocks.
4684         (combine_regs): Removed already_dead and code to look for
4685         REG_NO_CONFLICT notes.
4686         * lower_subreg (remove_retval_note): Removed code to look for
4687         REG_NO_CONFLICT block.
4688         (resolve_reg_notes): Removed REG_NO_CONFLICT case.
4689         (resolve_clobber): Remove code to process libcalls that have
4690         REG_NO_CONFLICT notes.
4691         * loop_invariant.c (find_invariant_insn): Removed REG_NO_CONFLICT
4692         case.
4693         * combine.c (can_combine_p, distribute_notes):  Removed
4694         REG_NO_CONFLICT case.
4695         * config/cris/cris.md (movdi pattern): Changed emit_no_conflict_block
4696         to emit_insns.
4697         * config/mn10300/mn10300.md (absdf2, negdf2 patterns): Ditto.
4698         * config/m68k/m68k.md (negdf2, negxf2, absdf2, absxf2 patterns):
4699         Ditto.
4700         * reg-notes.def (NO_CONFLICT): Removed.
4701
4702 2008-05-14  David S. Miller  <davem@davemloft.net>
4703
4704         * config/sparc/sparc.c (sparc_profile_hook): If
4705         NO_PROFILE_COUNTERS, don't generate and pass a label into mcount.
4706         * config/sparc/linux.h (NO_PROFILE_COUNTERS): Define as 1.
4707         * config/sparc/linux64.h (NO_PROFILE_COUNTERS): Likewise.
4708
4709 2008-05-14  Andreas Krebbel  <krebbel1@de.ibm.com>
4710
4711         * cse.c (cse_cc_succs): Invoke delete_insn_and_edges.
4712
4713 2008-05-13  Uros Bizjak  <ubizjak@gmail.com>
4714
4715         PR target/36222
4716         * config/i386/i386.c (ix86_expand_vector_init_general): Rearrange op0
4717         and op1 expansion before vector concat to have less live pseudos.
4718
4719 2008-05-13  H.J. Lu  <hongjiu.lu@intel.com>
4720
4721         * config/i386/i386.c (ix86_expand_vector_init_one_nonzero): Use
4722         ix86_expand_vector_set if supported.
4723
4724 2008-05-13  Diego Novillo  <dnovillo@google.com>
4725             Kenneth Zadeck  <zadeck@naturalbridge.com>
4726
4727         http://gcc.gnu.org/ml/gcc-patches/2008-05/msg00748.html
4728
4729         * tree.h (init_phinodes, fini_phinodes, release_phi_node,
4730         phinodes_print_statistics, init_ssanames, fini_ssanames,
4731         make_ssa_name, duplicate_ssa_name, duplicate_ssa_name_ptr_info,
4732         release_ssa_name, release_defs, replace_ssa_name_symbol,
4733         ssanames_print_statistics): Move ...
4734         * tree-flow.h: ... here.
4735         * tree-ssanames.c (init_ssanames): Add arguments FN and SIZE.
4736         Use FN instead of cfun.
4737         (make_ssa_name_fn): Rename from make_ssa_name.
4738         (pass_release_ssa_names): Add TODO_dump_func to finish flags.
4739         * tree-flow-inline.h (make_ssa_name): Move from
4740         tree-ssanames.c.  Convert to static inline.  Call make_ssa_name_fn.
4741         * omp-low.c (expand_omp_parallel):
4742         * tree-flow-inline.h (redirect_edge_var_map_result):
4743         * tree-ssa.c (init_tree_ssa): Add argument FN.
4744         Use it instead of cfun.  Update all users.
4745
4746 2008-05-13  Tom Tromey  <tromey@redhat.com>
4747
4748         PR preprocessor/22168:
4749         * doc/cpp.texi (Top): Update menu.
4750         (Alternatives to Wrapper #ifndef): New node.
4751         (Other Directives): Document deprecation.
4752         (Obsolete Features): Remove menu.
4753         (Assertions): Merge node into Obsolete Features.
4754         (Obsolete once-only headers): Move earlier; rename to Alternatives
4755         to Wrapper #ifndef.
4756         * doc/cppopts.texi: Update.
4757         * c.opt (Wdeprecated): Enable for C and ObjC.
4758         * doc/invoke.texi (Option Summary): Move -Wno-deprecated.
4759         (C++ Dialect Options): Move -Wno-deprecated from here to...
4760         (Warning Options): ... here.
4761
4762 2008-05-13  Richard Guenther  <rguenther@suse.de>
4763
4764         PR middle-end/36227
4765         * fold-const.c (fold_sign_changed_comparison): Do not allow
4766         changes in pointer-ness.
4767
4768 2008-05-12  Kaz Kojima  <kkojima@gcc.gnu.org>
4769
4770         PR target/24713
4771         * config/sh/sh.c (sh_expand_prologue): Don't clear
4772         RTX_FRAME_RELATED_P for push insns.
4773
4774 2008-05-12  Andy Hutchinson  <hutchinsonandy@aim.com>
4775
4776         * config/avr/avr.h (MAX_OFILE_ALIGNMENT): Define.
4777
4778 2008-05-12  Anatoly Sokolov <aesok@post.ru>
4779
4780         * config/avr/avr.h (machine_function): Add 'is_leaf' field.
4781         * config/avr/avr.c (avr_regs_to_save): Compute 'machine->is_leaf'.
4782         Use 'machine->is_leaf' instead of 'leaf_func_p'.
4783
4784 2008-05-12  H.J. Lu  <hongjiu.lu@intel.com>
4785
4786         * config/i386/sse.md (*sse_concatv4sf): Renamed to ...
4787         (*vec_concatv4sf_sse): This.
4788         (*sse2_concatv2si): Renamed to ...
4789         (*vec_concatv2si_sse2): This.
4790         (*sse1_concatv2si): Renamed to ...
4791         (*vec_concatv2si_sse): This.
4792         (*vec_concatv2di_rex): Renamed to ...
4793         (*vec_concatv2di_rex64): This.
4794         (*vec_concatv2si_sse4_1): New.
4795         (*vec_concatv2di_rex64_sse4_1): Likewise.
4796
4797 2008-05-12  Uros Bizjak  <ubizjak@gmail.com>
4798
4799         PR rtl-optimization/36111
4800         * recog.c (validate_replace_rtx_1): Unshare new RTL expression
4801         that was created for swappable operands.
4802
4803 2008-05-12  Samuel Tardieu  <sam@rfc1149.net>
4804
4805         PR ada/36001
4806         * Makefile.in: Substitute GNATMAKE and GNATBIND.
4807         * configure.ac: Add call to ACX_PROG_GNAT.
4808
4809 2008-05-11  Volker Reichelt  <v.reichelt@netcologne.de>
4810
4811         * optc-gen.awk: Fix comment typo.
4812
4813 2008-05-11  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>
4814
4815         * pretty-print.c (pp_integer_with_precision): Use
4816         HOST_LONG_LONG_FORMAT.
4817
4818 2008-05-10  Kenneth Zadeck  <zadeck@naturalbridge.com>
4819
4820         * gcse.c (store_killed_in_insn): Negated call to RTL_CONST_CALL_P.
4821                 
4822 2008-05-10  H.J. Lu  <hongjiu.lu@intel.com>
4823
4824         * config/i386/i386.c (bdesc_ptest): Removed.
4825         (ix86_builtin_type): Add INT_FTYPE_V2DI_V2DI_PTEST.
4826         (bdesc_args): Add __builtin_ia32_ptestz128,
4827         __builtin_ia32_ptestc128 and __builtin_ia32_ptestnzc128.
4828         (ix86_init_mmx_sse_builtins): Updated.
4829         (ix86_expand_args_builtin): Handle INT_FTYPE_V2DI_V2DI_PTEST.
4830         (ix86_expand_builtin): Updated.
4831
4832 2008-05-10  Richard Sandiford  <rdsandiford@googlemail.com>
4833
4834         * tree-cfg.c (valid_fixed_convert_types_p): New function.
4835         (verify_gimple_expr): Handle FIXED_CONVERT_EXPR.
4836
4837 2008-05-10  Uros Bizjak  <ubizjak@gmail.com>
4838
4839         * value-prof.c (interesting_stringop_to_profile): Do not
4840         return early for BUILT_IN_MEMPCPY.
4841
4842 2008-05-09  H.J. Lu  <hongjiu.lu@intel.com>
4843
4844         * calls.c (expand_call): Don't use callgraph to increase
4845         preferred_stack_boundary.
4846
4847         * cgraph.h (cgraph_rtl_info): Use unsigned on
4848         preferred_incoming_stack_boundary.
4849
4850         * final.c (rest_of_clean_state): Use unsigned on
4851         preferred_stack_boundary.
4852
4853 2008-05-09  Tom Tromey  <tromey@redhat.com>
4854
4855         PR preprocessor/22231:
4856         * c-opts.c (sanitize_cpp_opts): Disallow -MG if compilation is
4857         proceeding.
4858
4859 2008-05-09  Uros Bizjak  <ubizjak@gmail.com>
4860
4861         PR tree-optimization/36129
4862         * tree-ssa-ccp.c: Include value-prof.h.
4863         (execute_fold_all_builtins): Call gimple_remove_stmt_histograms if
4864         built-in function was folded to a constant.
4865         * Makefile.in (tree-ssa-ccp.c): Depend on value-prof.h
4866
4867 2008-05-09  Jan Sjodin  <jan.sjodin@amd.com>
4868             Sebastian Pop  <sebastian.pop@amd.com>
4869
4870         * tree-scalar-evolution.c: Document instantiate_scev.
4871         (instantiate_parameters_1): Renamed instantiate_scev_1.
4872         Don't use the same loop for instantiation_loop and evolution_loop.
4873         (instantiate_scev): New.
4874         (instantiate_parameters): Moved...
4875         (resolve_mixers): Update call to instantiate_scev_1 to pass the
4876         same loop twice.  Maintains the semantics for this function.
4877         * tree-scalar-evolution.h (instantiate_scev): Declare.
4878         (instantiate_parameters): ...here.  Now static inline.
4879         * tree-data-ref.c (dr_analyze_indices): Call instantiate_scev
4880         instead of resolve_mixers.
4881
4882 2008-05-09  Maxim Kuvyrkov  <maxim@codesourcery.com>
4883
4884         * rtl-factoring.c (collect_pattern_seqs): Fix typo.
4885
4886 2008-05-09  Tomas Bily  <tbily@suse.cz>
4887
4888         * config/pa/pa.c (reloc_needed): Use CASE_CONVERT.
4889         * tree-cfg.c (verify_expr, verify_gimple_expr): Likewise.
4890         * tree-ssa-structalias.c (get_constraint_for): Likewise.
4891         * c-common.c (c_common_truthvalue_conversion): Likewise.
4892         * tree-object-size.c (compute_object_offset): Likewise.
4893         * tree-inline.c (estimate_num_insns_1): Likewise.
4894         * varasm.c (const_hash_1, compare_constant, copy_constant)
4895         (compute_reloc_for_constant, output_addressed_constants)
4896         (initializer_constant_valid_p): Likewise.
4897         * c-omp.c (check_omp_for_incr_expr): Likewise.
4898         * gimplify.c (gimplify_expr): Likewise.
4899         * c-typeck.c (c_finish_return): Likewise.
4900         * tree-vectorizer.c (supportable_widening_operation)
4901         (supportable_narrowing_operation): Likewise.
4902         * c-pretty-print.c (pp_c_cast_expression, pp_c_expression): Likewise.
4903         * matrix-reorg.c (can_calculate_expr_before_stmt): Likewise.
4904         * expr.c (highest_pow2_factor, expand_expr_real_1): Likewise.
4905         * dwarf2out.c (loc_descriptor_from_tree_1, add_bound_info)
4906         (descr_info_loc): Likewise.
4907         * tree-ssa-loop-ivopts.c (may_be_nonaddressable_p): Likewise.
4908         * fold-const.c (operand_equal_p, make_range, extract_muldiv_1)
4909         (fold_unary): Likewise.
4910         * builtins.c (get_pointer_alignment): Likewise.
4911         * tree-scalar-evolution.c (interpret_rhs_modify_stmt)
4912         (instantiate_parameters_1): Likewise.
4913         * tree.c (expr_align, stabilize_reference): Likewise.
4914         * tree-pretty-print.c (dump_generic_node, op_prio): Likewise.
4915         * tree-ssa-loop-niter.c (derive_constant_upper_bound): Likewise.
4916         * convert.c (strip_float_extensions): Use CONVERT_EXPR_P.
4917         * tree-ssa-threadedge.c (simplify_control_stmt_condition): Likewise.
4918         * config/alpha/alpha.c (va_list_skip_additions): Likewise.
4919         * c-common.c (c_alignof_expr, check_function_arguments_recurse):
4920         Likewise.
4921         * tree-ssa.c (tree_ssa_useless_type_conversion): Likewise.
4922         * varasm.c (initializer_constant_valid_p, output_constant): Likewise.
4923         * tree-ssa-forwprop.c (get_prop_source_stmt, can_propagate_from)
4924         (forward_propagate_addr_expr_1, forward_propagate_addr_expr)
4925         (forward_propagate_comparison)
4926         (tree_ssa_forward_propagate_single_use_vars): Likewise.
4927         * cfgexpand.c (discover_nonconstant_array_refs_r): Likewise.
4928         * emit-rtl.c (component_ref_for_mem_expr)
4929         (set_mem_attributes_minus_bitpos): Likewise.
4930         * tree-ssa-phiopt.c (conditional_replacement): Likewise.
4931         * gimplify.c (gimplify_conversion, goa_lhs_expr_p, gimplify_expr):
4932         Likewise.
4933         * c-typeck.c (default_function_array_conversion, build_indirect_ref)
4934         (build_function_call, pointer_diff, build_compound_expr)
4935         (c_finish_return): Likewise.
4936         * tree-vect-analyze.c (vect_determine_vectorization_factor): Likewise.
4937         * matrix-reorg.c (get_inner_of_cast_expr, may_flatten_matrices_1):
4938         Likewise.
4939         * tree-ssa-ifcombine.c (recognize_single_bit_test): Likewise.
4940         * expr.c (is_aligning_offset): Likewise.
4941         * tree-ssa-alias.c (is_escape_site): Likewise.
4942         * tree-stdarg.c (va_list_counter_bump, check_va_list_escapes)
4943         (check_all_va_list_escapes): Likewise.
4944         * tree-ssa-loop-ivopts.c (determine_base_object)
4945         (determine_common_wider_type): Likewise.
4946         * dojump.c (do_jump): Likewise.
4947         * tree-ssa-sccvn.c (simplify_unary_expression): Likewise.
4948         * tree-gimple.c (is_gimple_cast): Likewise.
4949         * fold-const.c (decode_field_reference, )
4950         (fold_sign_changed_comparison, fold_unary, fold_comparison)
4951         (fold_binary): Likewise.
4952         * tree-ssa-alias-warnings.c (find_alias_site_helper)
4953         (already_warned_in_frontend_p): Likewise.
4954         * builtins.c (get_memory_rtx, fold_builtin_next_arg): Likewise.
4955         * tree.c (really_constant_p, get_unwidened): Likewise.
4956         * tree-ssa-loop-niter.c (expand_simple_operations): Likewise.
4957         * tree-ssa-loop-im.c (rewrite_bittest): Likewise.
4958         * tree-vrp.c (register_edge_assert_for_2, register_edge_assert_for_1):
4959         Likewise.
4960         * tree.h (STRIP_NOPS, STRIP_SIGN_NOPS, STRIP_TYPE_NOPS): Use
4961         CONVERT_EXPR_P.
4962         (CONVERT_EXPR_P): Define.
4963         (CASE_CONVERT): Define.
4964         
4965 2008-05-08  Kenneth Zadeck  <zadeck@naturalbridge.com>
4966
4967         PR middle-end/36117
4968         * dce.c (deletable_insn_p): Do not delete calls if df_in_progress.
4969         (delete_unmarked_insns): When deleting a call, call
4970         delete_unreachable_blocks.
4971         * rtl.texi (RTL_CONST_CALL_P, RTL_PURE_CALL_P,
4972         RTL_CONST_OR_PURE_CALL_P, RTL_LOOPING_CONST_OR_PURE_CALL_P): Fixed doc.
4973
4974 2008-05-08  Richard Guenther  <rguenther@suse.de>
4975
4976         * doc/invoke.texi (-fdump-tree-salias): Remove documentation.
4977         (-ftree-salias): Likewise.
4978         (salias-max-implicit-fields): Remove param documentation.
4979         (salias-max-array-elements): Likewise.
4980         * tree-pass.h (pass_create_structure_vars): Remove.
4981         * params.h (SALIAS_MAX_IMPLICIT_FIELDS): Remove.
4982         (SALIAS_MAX_ARRAY_ELEMENTS): Likewise.
4983         * tree-ssa-alias.c (create_structure_vars): Remove.
4984         (gate_structure_vars): Likewise.
4985         (pass_create_structure_vars): Likewise.
4986         (gate_build_alias): Likewise.
4987         (pass_build_alias): Adjust to run always and dump the function.
4988         * common.opt (ftree-salias): Hide.
4989         * passes.c (init_optimization_passes): Remove
4990         pass_create_structure_vars, adjust comment.
4991         * params.def (PARAM_SALIAS_MAX_IMPLICIT_FIELDS): Remove.
4992         (PARAM_SALIAS_MAX_ARRAY_ELEMENTS): Likewise.
4993         * opts.c (decode_options): Do not set flag_tree_salias.
4994         (common_handle_option): Add OPT_ftree_salias to the backward
4995         compatibility section.
4996
4997 2008-05-08  Richard Guenther  <rguenther@suse.de>
4998
4999         * tree-flow-inline.h (var_can_have_subvars): Move ...
5000         * tree-ssa-structalias.c (var_can_have_subvars): ... here.
5001         * tree-flow.h (var_can_have_subvars): Remove.
5002         (push_fields_onto_fieldstack): Remove.
5003         (sort_fieldstack): Likewise.
5004         (struct fieldoff): Move ...
5005         * tree-ssa-structalias.c (struct fieldoff): ... here.  Remove
5006         alias_set and base_for_components fields.
5007         (sort_fieldstack): Make static.
5008         (push_fields_onto_fieldstack): Likewise.  Remove code that
5009         handles anything but RECORD_TYPEs.  Remove alias_set and
5010         base_for_components handling.
5011         (create_variable_info_for): Adjust.
5012
5013 2008-05-08  Seongbae Park  <seongbae.park@gmail.com>
5014
5015         * common.opt (Wframe-larger-than=): Shorten the help message
5016         to one line.
5017         * doc/invoke.texi (Wframe-larger-than=): Add more description.
5018
5019 2008-05-08  Rafael Espindola  <espindola@google.com>
5020
5021         * tree-complex.c (expand_complex_div_wide): Don't create CONDs that
5022         trap.
5023         * tree-gimple.c (is_gimple_condexpr): Check that the expression doesn't
5024         trap and that both operands are gimple values.
5025         (canonicalize_cond_expr_cond): Use is_gimple_condexpr.
5026         * gcc/tree-eh.c (tree_could_trap_p): Correctly detect if a comparison
5027         is a fp operation.
5028
5029 2008-05-08  Richard Sandiford  <rsandifo@nildram.co.uk>
5030
5031         * read-rtl.c (join_c_conditions): Return the first string if the
5032         two strings are equal.
5033
5034 2008-05-08  Richard Sandiford  <rsandifo@nildram.co.uk>
5035
5036         * gensupport.h (pred_data): Add a "num_codes" field.
5037         (add_predicate_code): Declare.
5038         * gensupport.c (add_predicate_code): New function.
5039         (std_pred_table): Add an "allows_const_p" field.
5040         (std_preds): Set this field for predicates that allow RTX_CONST_OBJs.
5041         Remove the (incomplete) list of such codes from the codes field.
5042         (init_predicate_table): Use add_predicate_code.  Add all
5043         RTX_CONST_OBJs if allows_const_p is true.
5044         * genrecog.c (process_define_predicate): Use add_predicate_code.
5045
5046 2008-05-08  David Daney  <ddaney@avtrex.com>
5047             Richard Sandiford  <rsandifo@nildram.co.uk>
5048         
5049         * config/mips/mips.md (mips_expand_compare_and_swap_12): Handle
5050         special case of constant zero operands.
5051         * config/mips/mips.c (mips_expand_compare_and_swap_12): Zero extend
5052         old and new values.  Special case constant zero values.
5053         * config/mips/mips.h (MIPS_COMPARE_AND_SWAP): Skip 'sync' if compare
5054         fails.
5055         (MIPS_COMPARE_AND_SWAP_12): Handle constant zero operands.
5056         (MIPS_COMPARE_AND_SWAP_12_0): New macro.
5057
5058 2008-05-08  Paolo Bonzini  <bonzini@gnu.org>
5059
5060         PR target/36090
5061         * simplify-rtx.c (simplify_plus_minus): Create CONST of
5062         similar RTX_CONST_OBJ before CONST_INT.
5063
5064 2008-05-08  Steve Ellcey  <sje@cup.hp.com>
5065
5066         * stmt.c (expand_stack_restore): Change sa mode if needed.
5067
5068 2008-05-08  Richard Guenther  <rguenther@suse.de>
5069
5070         * config/i386/i386-protos.h (ix86_return_in_memory): Adjust
5071         return type to bool.
5072         (ix86_sol10_return_in_memory): Likewise.
5073         (ix86_i386elf_return_in_memory): Likewise.
5074         (ix86_i386interix_return_in_memory): Likewise.
5075         * config/i386/i386.c (ix86_return_in_memory): Likewise.
5076         (ix86_sol10_return_in_memory): Likewise.
5077         (ix86_i386elf_return_in_memory): Likewise.
5078         (ix86_i386interix_return_in_memory): Likewise.
5079
5080 2008-05-08  Kai Tietz  <kai.tietz@onevision.com>
5081
5082         PR bootstrap/36180
5083         * calls.c (compute_argument_block_size ): Add ATTRIBUTE_UNUSED to
5084         fndecl argument.
5085         (emit_library_call_value_1): Add ATTRIBUTE_UNUSED to variable fndecl.
5086         * target-def.h: Check that TARGET_RETURN_IN_MEMORY isn't
5087         declared in front.
5088
5089 2008-05-08  Richard Guenther  <rguenther@suse.de>
5090
5091         * tree-data-ref.c (dr_analyze_alias): Do not set DR_SUBVARS.
5092         * tree-data-ref.h (struct dr_alias): Remove subvars field.
5093         (DR_SUBVARS): Remove.
5094         * tree-dfa.c (dump_subvars_for): Remove.
5095         (debug_subvars_for): Likewise.
5096         (dump_variable): Do not dump subvars.
5097         (remove_referenced_var): Do not remove subvars.
5098         * tree-flow-inline.h (clear_call_clobbered): SFTs no longer exist.
5099         (lookup_subvars_for_var): Remove.
5100         (get_subvars_for_var): Likewise.
5101         (get_subvars_at): Likewise.
5102         (get_first_overlapping_subvar): Likewise.
5103         (overlap_subvar): Likewise.
5104         * tree-flow.h (subvar_t): Remove.
5105         (struct var_ann_d): Remove subvars field.
5106         * tree-ssa-alias.c (mark_aliases_call_clobbered): Remove queued
5107         argument.  Remove special handling of SFTs.
5108         (compute_tag_properties): Likewise.
5109         (set_initial_properties): Likewise.
5110         (compute_call_clobbered): Likewise.
5111         (count_mem_refs): Likewise.
5112         (compute_memory_partitions): Likewise.
5113         (compute_flow_insensitive_aliasing): Likewise.
5114         (setup_pointers_and_addressables): Likewise.
5115         (new_type_alias): Likewise.
5116         (struct used_part): Remove.
5117         (used_portions): Likewise.
5118         (struct used_part_map): Likewise.
5119         (used_part_map_eq): Likewise.
5120         (used_part_map_hash): Likewise.
5121         (free_used_part_map): Likewise.
5122         (up_lookup): Likewise.
5123         (up_insert): Likewise.
5124         (get_or_create_used_part_for): Likewise.
5125         (create_sft): Likewise.
5126         (create_overlap_variables_for): Likewise.
5127         (find_used_portions): Likewise.
5128         (create_structure_vars): Likewise.
5129         * tree.def (STRUCT_FIELD_TAG): Remove.
5130         * tree.h (MTAG_P): Adjust.
5131         (struct tree_memory_tag): Remove base_for_components and
5132         unpartitionable flags.
5133         (struct tree_struct_field_tag): Remove.
5134         (SFT_PARENT_VAR): Likewise.
5135         (SFT_OFFSET): Likewise.
5136         (SFT_SIZE): Likewise.
5137         (SFT_NONADDRESSABLE_P): Likewise.
5138         (SFT_ALIAS_SET): Likewise.
5139         (SFT_UNPARTITIONABLE_P): Likewise.
5140         (SFT_BASE_FOR_COMPONENTS_P): Likewise.
5141         (union tree_node): Remove sft field.
5142         * alias.c (get_alias_set): Remove special handling of SFTs.
5143         * print-tree.c (print_node): Remove handling of SFTs.
5144         * tree-dump.c (dequeue_and_dump): Likewise.
5145         * tree-into-ssa.c (mark_sym_for_renaming): Likewise.
5146         * tree-nrv.c (dest_safe_for_nrv_p): Remove special handling of SFTs.
5147         * tree-predcom.c (set_alias_info): Do not set subvars.
5148         * tree-pretty-print.c (dump_generic_node): Do not handle SFTs.
5149         * tree-ssa-loop-ivopts.c (get_ref_tag): Likewise.
5150         * tree-ssa-operands.c (access_can_touch_variable): Likewise.
5151         (add_vars_for_offset): Remove.
5152         (add_virtual_operand): Remove special handling of SFTs.
5153         (add_call_clobber_ops): Likewise.
5154         (add_call_read_ops): Likewise.
5155         (get_asm_expr_operands): Likewise.
5156         (get_modify_stmt_operands): Likewise.
5157         (get_expr_operands): Likewise.
5158         (add_to_addressable_set): Likewise.
5159         * tree-ssa.c (verify_ssa_name): Do not handle SFTs.
5160         * tree-tailcall.c (suitable_for_tail_opt_p): Likewise.
5161         * tree-vect-transform.c (vect_create_data_ref_ptr): Do not set subvars.
5162         * tree.c (init_ttree): Remove STRUCT_FIELD_TAG initialization.
5163         (tree_code_size): Remove STRUCT_FIELD_TAG handling.
5164         (tree_node_structure): Likewise.
5165         * tree-ssa-structalias.c (set_uids_in_ptset): Remove special
5166         handling of SFTs.
5167         (find_what_p_points_to): Likewise.
5168
5169 2008-05-08  Sa Liu  <saliu@de.ibm.com>
5170
5171         * config/spu/spu.md: Fixed subti3 pattern.
5172
5173 2008-05-08  Richard Guenther  <rguenther@suse.de>
5174
5175         PR middle-end/36154
5176         * tree-ssa-structalias.c (push_fields_onto_fieldstack): Make
5177         sure to create a representative for trailing arrays for PTA.
5178
5179 2008-05-08  Richard Guenther  <rguenther@suse.de>
5180
5181         PR middle-end/36172
5182         * fold-const.c (operand_equal_p): Two objects which types
5183         differ in pointerness are not equal.
5184
5185 2008-05-08  Kai Tietz  <kai.tietz@onevision.com>
5186
5187         * calls.c (compute_argument_block_size): Add argument tree fndecl.
5188         (OUTGOING_REG_PARM_STACK_SPACE): Add function type argument.
5189         (emit_library_call_value_1): Add new variable fndecl initialized by
5190         NULL_TREE. It should be the decl type of orgfun, but this information
5191         seems not to be available here, so it uses the default calling abi.
5192         * config/arm/arm.c (arm_return_in_memory): Add fntype argumen.
5193         * config/arm/arm.h (RETURN_IN_MEMORY): Replace RETURN_IN_MEMORY
5194         by TARGET_RETURN_IN_MEMORY.
5195         * config/i386/i386-interix.h: Likewise.
5196         * config/i386/i386.h: Likewise.
5197         * config/i386/i386elf.h: Likewise.
5198         * config/i386/ptx4-i.h: Likewise.
5199         * config/i386/sol2-10.h: Likewise.
5200         * config/i386/sysv4.h: Likewise.
5201         * config/i386/vx-common.h: Likewise.
5202         * config/cris/cris.h: Removed #if 0 clause.
5203         * config/arm/arm-protos.h (arm_return_in_memory): Add fntype argument.
5204         * config/i386/i386-protos.h (ix86_return_in_memory): Add fntype
5205         argument.
5206         (ix86_sol10_return_in_memory): Likewise.
5207         (ix86_i386elf_return_in_memory): New.
5208         (ix86_i386interix_return_in_memory): New.
5209         * config/mt/mt-protos.h (mt_return_in_memory): New.
5210         * config/mt/mt.c: Likewise.
5211         * config/mt/mt.h (OUTGOING_REG_PARM_STACK_SPACE): Add FNTYPE argument.
5212         (RETURN_IN_MEMORY):  Replace by TARGET_RETURN_IN_MEMORY.
5213         * config/bfin/bfin.h: Likewise.
5214         * config/bfin/bfin-protos.h (bfin_return_in_memory): Add fntype
5215         argument.
5216         * config/bfin/bfin.c: Likewise.
5217         * config/pa/pa.h (OUTGOING_REG_PARM_STACK_SPACE): Add FNTYPE argument.
5218         * config/alpha/unicosmk.h: Likewise.
5219         * config/i386/cygming.h: Likewise.
5220         * config/iq2000/iq2000.h: Likewise.
5221         * config/mips/mips.h: Likewise.
5222         * config/mn10300/mn10300.h: Likewise.
5223         * config/rs6000/rs6000.h: Likewise.
5224         * config/score/score.h: Likewise.
5225         * config/spu/spu.h: Likewise.
5226         * config/v850/v850.h: Likewise.
5227         * defaults.h: Likewise.
5228         * doc/tm.texi (OUTGOING_REG_PARM_STACK_SPACE): Adjust documentation.
5229         * expr.c (emit_block_move): Adjust use of
5230         OUTGOING_REG_PARM_STACK_SPACE.
5231         * function.c (STACK_DYNAMIC_OFFSET): Adjust use of
5232         OUTGOING_REG_PARM_STACK_SPACE.
5233         * targhooks.c (default_return_in_memory): Remove RETURN_IN_MEMORY.
5234
5235 2008-05-08  Jakub Jelinek  <jakub@redhat.com>
5236
5237         * tree-parloops.c (create_parallel_loop): Set OMP_RETURN_NOWAIT
5238         on OMP_RETURN for OMP_FOR.
5239
5240         PR debug/35896
5241         * dwarf2out.c (dw_expand_expr, common_check): Removed.
5242         (fortran_common): New function.
5243         (gen_variable_die): Call fortran_common instead of common_check,
5244         adjust for it returning tree instead of rtx.  Formatting.
5245
5246 2008-05-07  Kenneth Zadeck  <zadeck@naturalbridge.com>
5247
5248         PR rtl/7335
5249         PR rtl/33826
5250         * see.c (see_copy_insn): Copy new pure const attributes for new call.
5251         * c-decl.c (merge_decls): Ditto.
5252         * postreload.c (record_opr_changes): Change CONST_OR_PURE_CALL_P
5253         to RTL_CONST_OR_PURE_CALL_P.
5254         * tree.c (define_local_buitin): Rename DECL_IS_PURE to DECL_PURE_P.
5255         Initialized DECL_LOOPING_CONST_PURE.
5256         (process_call_operands): Set tree_side_effects properly.
5257         * tree.h (TREE_READONLY_DECL_P): Removed.
5258         (DECL_IS_PURE): Renamed to DECL_PURE_P.
5259         (DECL_LOOPING_OR_CONST_P): New macro.
5260         (struct tree_function_decl): Added looping_const_or_pure_p.
5261         (ECF_*) Renumbered.
5262         (ECF_LOOPING_OR_CONST_P): New macro.
5263         * rtlanal.c (pure_const_p): Removed.
5264         * builtins.c (expand_builtin): Rename DECL_IS_PURE to DECL_PURE_P.
5265         * reorg.c (delete_prior_computation) Changed CONST_OR_PURE_CALL_P
5266         to RTL_CONST_CALL_P.
5267         * ipa-pure-const.c (pure_const_state_e): Added looping field.
5268         (check_decl, check_tree, check_call, scan_function): Initialize
5269         looping.
5270         (analyze_function): Rename DECL_IS_PURE to DECL_PURE_P.
5271         (static_execute): Set looping true for recursive functions.
5272         Undo setting state to IPA_NEITHER for recursive functions.
5273         * cse.c (cse_insn): 
5274         * ifcvt.c (noce_can_store_speculate_p): Changed
5275         CONST_OR_PURE_CALL_P and pure_call_p to RTL_CONST_CALL_P or 
5276         RTL_CONST_OR_PURE_CALL_P.
5277         * dse.c (scan_insn): Ditto.
5278         * local-alloc.c (validate_equiv_mem, memref_used_between_p): Ditto.
5279         * gcse.c (oprs_not_seen_p) Changed CONST_OR_PURE_CALL_P to
5280         RTL_CONST_OR_PURE_CALL_P.
5281         (store_killed_in_insn): Changed CONST_OR_PURE_CALL_P and
5282         pure_call_p to RTL_CONST_CALL_P.
5283         * gimplify.c (gimplify_call_expr): Clear side effects for
5284         non-looping pure and constant calls.
5285         * calls.c (emit_call_1): Set rtl flags from ecf flags.
5286         (flags_from_decl_or_type): Set ecf flags from decl flags.
5287         (initialize_argument_information): Turn off
5288         ECF_LOOPING_CONST_OR_PURE when turning off ECF_CONST.
5289         Change const to pure if callee_copies is true rather than just
5290         turning off const.
5291         (expand_call): Turn off ECF_LOOPING_PURE_CONST_CALL and remove old
5292         way of marking pure calls.
5293         (emit_library_call_value_1): Turn off ECF_LOOPING_PURE_CONST_CALL.
5294         Remove hack that was supposed to fix pr7335 and remove old
5295         way of marking pure calls.
5296         * emit-rtl.c (emit_copy_of_insn_after): Copy RTL_CONST_CALL_P,
5297         RTL_PURE_CALL_P, RTL_LOOPING_CONST_OR_PURE_CALL_P.
5298         * cselib.c (cselib_process_insn): Changed CONST_OR_PURE_CALL_P to
5299         RTL_CONST_OR_PURE_CALL_P.
5300         * tree-ssa-pre.c (can_value_number_call): Fixed spacing.
5301         * loop-invariant.c (find_exits, find_invariant_bb): Changed
5302         CONST_OR_PURE_CALL_P to RTL_CONST_OR_PURE_CALL_P.
5303         * sched-deps.c (schedule_analyze): Ditto.
5304         * rtl.h (struct rtx_def): Use call field, unchanging field, and
5305         return_val field of calls to represent pure and const function info.
5306         (CONST_OR_PURE_CALL_P): Deleted macro.
5307         (RTL_CONST_CALL_P, RTL_PURE_CALL_P,
5308         RTL_LOOPING_CONST_OR_PURE_CALL_P, RTL_CONST_OR_PURE_P): New macros.
5309         * tree-inline.c (copy_body_r): Changed TREE_READONLY_DECL_P to
5310         TREE_READONLY.
5311         * tree-optimize.c (execute_fixup_cfg): Added test for
5312         ECF_LOOPING_CONST_OR_PURE.
5313         * c-common.c (handle_pure_attribute): Changed DECL_IS_PURE to
5314         DECL_PURE_P.
5315         * tree-cfg.c (update_call_expr_flags): Do not clear tree side
5316         effects for looping pure or const calls.
5317         (verify_gimple_expr): Added verification code. 
5318         * config/alpha/alpha.c (alpha_legitimize_address,
5319         alpha_emit_xfloating_libcall): Changed CONST_OR_PURE_CALL_P to
5320         RTL_CONST_CALL_P.
5321         * config/s390/s390.c (s390_emit_tls_call_insn): Ditto.
5322         * config/rs6000/rs6000.c (rs6000_legitimize_tls_address): Ditto.
5323         * config/mips/mips.c (mips_call_tls_get_addr): Ditto.
5324         * cfgrtl.c (need_fake_edge_p): Changed CONST_OR_PURE_CALL_P to
5325         RTL_CONST_OR_PURE_CALL_P.
5326         * dce.c (deletable_insn_p): Allow non looping, non sibling, pure
5327         and const calls to be deleted.
5328
5329 2008-05-07  Uros Bizjak  <ubizjak@gmail.com>
5330
5331         PR target/35714
5332         * config/i386/mmx.md (mmx_subv2sf3): New expander.
5333         (*mmx_subv2sf3): Rename from mmx_subv2sf3 insn pattern.
5334         (*mmx_eqv2sf3): Rename from mmx_eqv2sf3 insn pattern.
5335         (mmx_eqv2sf3): New expander.  Use ix86_fixup_binary_operands_no_copy
5336         to handle nonimmediate operands.
5337         (*mmx_paddwd): Rename from mmx_paddwd insn pattern.
5338         (mmx_paddwd): New expander.  Use ix86_fixup_binary_operands_no_copy
5339         to handle nonimmediate operands.
5340         (*mmx_pmulhrwv4hi3): Rename from mmx_pmulhrwv4hi3 insn pattern.
5341         (mmx_pmulhrwv4hi3): New expander.  Use
5342         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5343         (*sse2_umulv1siv1di3): Rename from sse2_umulv1siv1di3 insn pattern.
5344         (sse2_umulv1siv1di3): New expander.  Use
5345         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5346         (*mmx_eq<mode>3): Rename from mmx_eq<mode>3 insn pattern.
5347         (mmx_eq<mode>3): New expander.  Use
5348         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5349         (*mmx_uavgv8qi3): Rename from mmx_uavgv8qi3 insn pattern.
5350         (mmx_uavgv8qi3): New expander.  Use
5351         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5352         (*mmx_uavgv4hi3): Rename from mmx_uavgv4hi3 insn pattern.
5353         (mmx_uavgv4hi3): New expander.  Use
5354         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5355
5356         * config/i386/sse.md
5357         (sse_movhlps_exp): New expander.  Use ix86_fixup_binary_operands
5358         to handle nonimmediate operands.
5359         (sse_movlhps_exp): New expander.  Use ix86_fixup_binary_operands
5360         to handle nonimmediate operands.
5361         (sse_loadhps_exp): New expander.  Use ix86_fixup_binary_operands
5362         to handle nonimmediate operands.
5363         (sse_loadlps_exp): New expander.  Use ix86_fixup_binary_operands
5364         to handle nonimmediate operands.
5365         (sse2_unpckhpd_exp): New expander.  Use
5366         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5367         (sse2_unpcklpd_exp): New expander.  Use
5368         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5369         (sse_loadhpd_exp): New expander.  Use ix86_fixup_binary_operands
5370         to handle nonimmediate operands.
5371         (sse_loadlpd): New expander.  Use ix86_fixup_binary_operands
5372         to handle nonimmediate operands.
5373         (*sse2_<plusminus_insn><mode>3): Rename from
5374         sse2_<plusminus_insn><mode>3 insn pattern.
5375         (sse2_<plusminus_insn><mode>3): New expander.  Use
5376         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5377         (*sse2_umulv2siv2di3): Rename from sse2_umulv2siv2di3 insn pattern.
5378         (sse2_umulv2siv2di3): New expander.  Use
5379         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5380         (*sse4_1_mulv2siv2di3): Rename from sse4_1_mulv2siv2di3 insn pattern.
5381         (sse4_1_mulv2siv2di3): New expander.  Use
5382         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5383         (*sse2_pmaddwd): Rename from sse2_pmaddwd insn pattern.
5384         (sse2_pmaddwd): New expander.  Use
5385         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5386         (*sse2_eq<mode>3): Rename from sse2_eq<mode>3 insn pattern.
5387         (sse2_eq<mode>3): New expander.  Use
5388         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5389         (*sse4_1_eqv2di3): Rename from sse4_1_eqv2di3 insn pattern.
5390         (sse4_1_eqv2di3): New expander.  Use
5391         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5392         (*sse2_uavgv16qi3): Rename from sse2_uavgv16qi3 insn pattern.
5393         (sse2_uavgv16qi3): New expander.  Use
5394         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5395         (*sse2_uavgv16qi3): Rename from sse2_uavgv16qi3 insn pattern.
5396         (sse2_uavgv16qi3): New expander.  Use
5397         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5398         (*sse2_uavgv8hi3): Rename from sse2_uavgv8hi3 insn pattern.
5399         (sse2_uavgv8hi3): New expander.  Use
5400         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5401         (*ssse3_pmulhrswv8hi3): Rename from ssse3_pmulhrswv8hi3 insn pattern.
5402         (ssse3_pmulhrswv8hi3): New expander.  Use
5403         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5404         (*ssse3_pmulhrswv4hi3): Rename from ssse3_pmulhrswv4hi3 insn pattern.
5405         (ssse3_pmulhrswv4hi3): New expander.  Use
5406         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5407
5408         (<sse>_vm<plusminus_insn><mode>3): Do not use ix86_binary_operator_ok.
5409         (<sse>_vmmul<mode>3): Ditto.
5410         (divv4sf3): Do not use ix86_fixup_binary_operands_no_copy.
5411         (divv2df3): Ditto.
5412         (ssse3_pmaddubsw128): Use register_operand for operand 1.
5413         (ssse3_pmaddubsw): Ditto.
5414
5415         * config/i386/i386.c (struct_builtin_description)
5416         [IX86_BUILTIN_LOADHPS]: Use CODE_FOR_sse_loadhps_exp.
5417         [IX86_BUILTIN_STOREHPS]: Use CODE_FOR_sse_loadlps_exp.
5418         [IX86_BUILTIN_LOADHPD]: Use CODE_FOR_sse2_loadhpd_exp.
5419         [IX86_BUILTIN_LOADLPD]: Use CODE_FOR_sse2_loadlpd_exp.
5420         [IX86_BUILTIN_MOVHLPS]: Use CODE_FOR_sse_movhlps_exp.
5421         [IX86_BUILTIN_MOVLHPS]: Use CODE_FOR_sse_movlhps_exp.
5422         [IX86_BUILTIN_UNPCKHPD]: Use FOR_sse2_unpckhpd_exp.
5423         [IX86_BUILTIN_UNPCKLPD]: Use FOR_sse2_unpcklpd_exp.
5424         (ix86_fixup_binary_operands): Assert that src1
5425         and src2 must have the same mode when swapped.
5426         (ix86_expand_binop_builtin): Do not use ix86_fixup_binary_operands
5427         and ix86_binary_operator_ok.  Do not force operands in registers
5428         when optimizing.
5429
5430 2008-05-07  Jan Hubicka  <jh@suse.cz>
5431
5432         * cgraph.c (dump_cgraph_node): Update.
5433         * cgraph.h (cgraph_local_info): Break out inline summary.
5434         * cgraphunit.c (cgraph_process_new_functions): Use inliner analysis
5435         hook.
5436         * ipa-inline (inline_summary): New accestor function.
5437         (cgraph_clone_inlined_nodes, cgraph_check_inline_limits,
5438         cgraph_decide_inlining, compute_inline_parameters): Update.
5439         * ipa.c (cgraph_remove_unreachable_nodes): Remove statistics.
5440
5441 2008-05-07  Maxim Kuvyrkov  <maxim@codesourcery.com>
5442
5443         Cleanup ColdFire scheduling support and add V4 pipeline model.
5444
5445         * config/m68k/m68k.md (UNSPEC_TIE): New constant.
5446         (define_attr cpu): Add cfv4 value.
5447         (define_attr type, define_attr type1): Merge into a single 'type'
5448         attribute.  Update all uses.
5449         (define_attr opx_type, define_attr opy_type, define_attr opx_access):
5450         Rearrange and update.  Rename value 'reg' to 'Rn', add value 'FPn'.
5451         Update all uses.
5452         (define_attr opx_mem, define_attr opy_mem): Remove.
5453         (define_attr op_mem): Clean up, update comment.
5454         (define_attr size): Use specific values instead of general int.
5455         (define_attr guess, define_attr split): Remove.  Update all uses.
5456         (movdf_internal, tstsi_internal, tsthi_internal, tstqi_internal,
5457         tst<mode>_68881, pushexthisi_const, movsi_const0_68000_10,
5458         movsi_const0_68040_60, movsi_const0, movsi_cf, movstrictqi_cf,
5459         zero_extendhisi2_cf, zero_extendqisi2_cfv4, cfv4_extendhisi2,
5460         68k_extendhisi2, extendqihi2, cfv4_extendqisi2, 68k_extendqisi2,
5461         floatsi<mode>2_68881, ftrunc<mode>2_68881, ftrunc<mode>2_cf,
5462         fix<mode>qi2_68881, fix<mode>hi2_68881, fix<mode>si2_68881,
5463         adddi_dishl32, addsi3_5200, add<mode>3_floatsi_68881,
5464         add<mode>3_floathi_68881, add<mode>3_floatqi_68881,
5465         add<mode>3_68881, add<mode>3_cf, subdi_dishl32, subsi3,
5466         sub<mode>3_floatsi_68881, sub<mode>3_floathi_68881,
5467         sub<mode>3_floatqi_68881, sub<mode>3_68881, sub<mode>3_cf,
5468         mulhi3, mulhisi3, mulhisisi3_s, mulsi3_68020, mulsi3_cf,
5469         umulhisi3, mulhisisi3_z, mul<mode>3_floatsi_68881,
5470         mul<mode>3_floathi_68881, mul<mode>3_floatqi_68881, fmul<mode>3_cf,
5471         div<mode>3_cf, sqrt<mode>2_cf, abs<mode>2_cf, clzsi2,
5472         one_cmplsi2_5200, subreghi1ashrdi_const32, ashrsi3, lshrsi3,
5473         bsetmemqi, bsetmemqi_ext, bclrmemqi, bclrmemqi_ext,
5474         beq, bne, bgt, blt, bordered, bunordered, buneq, bunge, bungt, bunle,
5475         bunlt, bltgt, tablejump_internal, call, non_symbolic_call_value,
5476         symbolic_call_value_jsr, symbolic_call_value_bsr, link):
5477         Update or set attributes.
5478         (stack_tie): New fake instruction.
5479
5480         * config/m68k/m68k.h (TUNE_CFV4): New macro.
5481         (m68k_sched_attr_size): Update declaration.
5482         (m68k_sched_attr_type2): Remove.
5483         (m68k_sched_address_bypass_p, m68k_sched_indexed_address_bypass_p):
5484         Declare new bypass predicates.
5485
5486         * config/m68k/m68k.c (m68k_sched_issue_rate,
5487         m68k_sched_first_cycle_multipass_dfa_lookahead): Declare hook
5488         implementations.
5489         (TARGET_SCHED_ISSUE_RATE,
5490         TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD): Override hooks.
5491         (override_options): Handle scheduling for ColdFire V4 core.
5492         (m68k_expand_prologue): Emit stack_tie.
5493         (enum attr_op_type): Split value 'OP_TYPE_REG' to 'OP_TYPE_RN' and
5494         'OP_TYPE_FPN'.  Update all uses.
5495         (sched_guess_p): Remove.
5496         (sched_address_type): Handle symbolic addresses.
5497         (sched_get_operand): New static function.
5498         (sched_operand_type): Merge into sched_attr_op_type.
5499         (sched_attr_op_type): Handle FP registers, handle quick constants,
5500         update.
5501         (m68k_sched_attr_opx_type, m68k_sched_attr_opy_type): Update.
5502         (m68k_sched_attr_size): Update.  Move logic to ...
5503         (sched_get_attr_size_int): New static function.
5504         (sched_get_opxy_mem_type): New static function.
5505         (m68k_sched_attr_op_mem): Update.
5506         (m68k_sched_attr_type2): Remove.
5507         (sched_cfv4_bypass_data): New static variable.
5508         (m68k_sched_adjust_cost): Handle ColdFire V4 bypass.
5509         (m68k_sched_issue_rate): Implement scheduler hook.
5510         (struct _sched_ib: enabled_p): New field.
5511         (m68k_sched_variable_issue): Update.  Handle V4.
5512         (SCHED_DUMP_TODO, SCHED_DUMP_DONE, SCHED_DUMP_NOTHING,
5513         sched_dump_class_func_t, sched_dump_split_class,
5514         sched_dump_dfa_guess_unit_code, sched_dump_dfa_state,
5515         sched_dump_dfa_class, m68k_sched_dump): Remove.
5516         (m68k_sched_first_cycle_multipass_dfa_lookahead): Implement scheduler
5517         hook.
5518         (m68k_sched_init_global): Remove statisctics dumping, introduce
5519         sanity check that all instructions have pipeline reservations.  Handle
5520         ColdFire V4 core.
5521         (m68k_sched_dfa_pre_advance_cycle, m68k_sched_dfa_post_advance_cycle):
5522         Handle ColdFire V4 core.
5523         (sched_mem_operand_p, sched_get_reg_operand, sched_get_mem_operand):
5524         New static functions.
5525         (m68k_sched_address_bypass_p): New bypass predicate.
5526         (sched_get_indexed_address_scale): New static function.
5527         (m68k_sched_indexed_address_bypass_p): New bypass predicate.
5528
5529         * cf.md: Update comments.
5530         (define_attr type2): Remove.  Use 'type' attribute instead.
5531         Update all uses.
5532         (cf_ib): Rename to cfv123_ib.  Update all uses.
5533         (cf_oep): Rename to cfv123_oep.  Update all uses.
5534         (cf_chr): Rename to cfv123_chr.  Update all uses.
5535         (cf_mem): Rename to cfv123_mem.  Update all uses.
5536         (cf_mac): Move to more appropriate place.
5537         (cfv123_guess): New automaton and cpu_unit.
5538         (cfv123_*, cfv12_*, cfv1_*, cfv2_*, cfv3_*): Use type attribute.
5539         Update uses of 'size' attribute.  Handle before reload scheduling.
5540         (cfv123_guess): New dummy reservation for unhandled instructions.
5541         (cfv4_*): Pipeline description of ColdFire V4 core.
5542         (ignore): New reservation to handle 'ignore' type.
5543
5544 2008-05-07  Ian Lance Taylor  <iant@google.com>
5545
5546         PR middle-end/36013
5547         * gimplify.c (find_single_pointer_decl_1): Don't look through
5548         indirections.
5549         (find_single_pointer_decl): Adjust comments.
5550
5551 2008-05-07  Jakub Jelinek  <jakub@redhat.com>
5552
5553         PR middle-end/36137
5554         * fold-const.c (fold_binary): Use STRIP_SIGN_NOPS instead of
5555         STRIP_NOPS on arguments even for MIN_EXPR and MAX_EXPR.
5556
5557         PR middle-end/36106
5558         * omp-low.c (expand_omp_atomic_pipeline): Load value using the
5559         integral type rather than floating point, then VIEW_CONVERT_EXPR
5560         to the floating point type.
5561
5562 2008-05-07  Uros Bizjak  <ubizjak@gmail.com>
5563
5564         * config/i386/i386.c (ix86_expand_copysign): Force non-zero constant
5565         TFmode op0 to register.
5566
5567 2008-05-07  Alan Modra  <amodra@bigpond.net.au>
5568
5569         * c-decl.c (grokdeclarator): Comment typo.
5570
5571 2008-05-06  Aldy Hernandez  <aldyh@redhat.com>
5572
5573         * tree-flow.h: Remove prototype for computed_goto_p.
5574         * tree-cfg.c (computed_goto_p): Make static.
5575
5576 2008-05-06  H.J. Lu  <hongjiu.lu@intel.com>
5577
5578         PR target/35657
5579         * config/i386/i386.c (contains_128bit_aligned_vector_p): Renamed to ...
5580         (contains_aligned_value_p): This.  Handle _Decimal128.
5581         (ix86_function_arg_boundary): Only align _Decimal128 to its
5582         natural boundary and handle it properly.
5583
5584 2008-05-06  Martin Jambor  <mjambor@suse.cz>
5585
5586         * ipa-cp.c (ipcp_method_orig_node): Renamed to ipcp_get_orig_node.
5587         (ipcp_method_is_cloned): Renamed to ipcp_node_is_clone
5588         (ipcp_method_set_orig_node): Removed.
5589         (ipcp_cval_get_cvalue_type): Removed.
5590         (ipcp_method_get_scale): Renamed to ipcp_get_node_scale.
5591         (ipcp_method_set_scale): Renamed to ipcp_set_node_scale.
5592         (ipcp_cval_set_cvalue_type): Removed.
5593         (ipcp_cval_get_cvalue): Removed.
5594         (ipcp_cval_set_cvalue): Removed.
5595         (ipcp_type_is_const): Renamed to ipcp_lat_is_const.
5596         (ipcp_cval_equal_cvalues): Renamed to ipcp_lats_are_equal
5597         (ipcp_lats_are_equal): Changed parameters to two ipcp_lattice's
5598         (ipcp_cval_meet): Renamed to ipa_lattice_meet
5599         (ipcp_cval_changed): Changed to use ipcp_lat_is_const
5600         (ipcp_method_cval): Renamed to ipcp_get_ith_lattice
5601         (ipcp_get_ith_lattice): Changed parameters.
5602         (ipcp_cval_compute): Renamed to ipcp_lattice_from_jfunc
5603         (ipcp_lattice_from_jfunc): Changed parameters.
5604         (ipcp_redirect): Local lattice pointer instead of lattice type variable.
5605         (ipcp_method_cval_print): Added temporary variable info.
5606         (ipcp_redirect): Removed already unused local variable caller.
5607         (ipcp_redirect): New temporary variable orig_callee_info
5608         (ipcp_redirect): Removed newly unused local variable callee.
5609         (ipcp_redirect): Removed (a bit confusing) local variable type.
5610         (ipcp_insert_stage): Added local variable info.
5611         (ipcp_cval_changed): Renamed to ipcp_lattice_changed, parameters 
5612         renamed too
5613         (ipcp_formal_create): Removed.
5614         (ipcp_method_cval_set): Removed.
5615         (ipcp_propagate_stage): Renamed lattice variables.
5616         (ipcp_method_cval_set_cvalue_type): Removed.
5617         (ipcp_method_cval_print): Renamed to ipcp_print_all_lattices
5618         (ipcp_print_all_lattices): Changed printed strings to refer to 
5619         lattices rather than cvals.
5620         (ipcp_method_cval_init): Renamed to ipcp_initialize_node_lattices
5621         (ipcp_propagate_const): Changed formal parameters.
5622         (build_const_val): Changed formal parameters.
5623         (ipcp_insert_stage): Removed useless variable cvalue
5624         (build_const_val): Changed formal parameters.
5625         (ipcp_method_compute_scale): Renamed to ipcp_compute_node_scale
5626         (ipcp_after_propagate): Renamed to ipcp_change_tops_to_bottom
5627         (ipcp_callsite_param_print): Renamed to ipcp_print_all_jump_functions
5628         (ipcp_profile_mt_count_print): Renamed to ipcp_print_func_profile_counts
5629         (ipcp_print_func_profile_counts): Changed string from "method" to 
5630         "function"
5631         (ipcp_profile_cs_count_print): Renamed to ipcp_print_call_profile_counts
5632         (ipcp_profile_edge_print): Renamed to ipcp_print_edge_profiles
5633         (ipcp_profile_bb_print): Renamed to ipcp_print_bb_profiles
5634         (ipcp_structures_print): Renamed to ipcp_print_all_structures
5635         (ipcp_profile_print): Renamed to ipcp_print_profile_data
5636         (ipcp_lat_is_const): Changed parameters and made inline.
5637         (ipcp_replace_map_create): Renamed to ipcp_create_replace_map
5638         (ipcp_redirect): Renamed to ipcp_need_redirect_p
5639         (ipcp_need_redirect_p): Calls ipcp_lat_is_const instead of using 
5640         the predicate condition directly
5641         (ipcp_propagate_stage): Added local variable args. Removed local
5642         variable callee.  (Both are mere code simplifications.)
5643         (ipcp_method_dont_insert_const): Renamed to
5644         ipcp_node_not_modifiable_p.
5645         (ipcp_node_not_modifiable_p): Made inline.
5646         (ipcp_cloned_create): Renamed to ipcp_init_cloned_node
5647         (ipcp_propagate_const): Renamed to ipcp_propagate_one_const
5648         (ipcp_print_all_lattices): Removed variable cvalue
5649         (ipcp_method_scale_print): Renamed to ipcp_function_scale_print
5650         Updated comments.
5651
5652 2008-05-06  Olivier Hainque  <hainque@adacore.com>
5653
5654         * tree-sra.c (try_instantiate_multiple_fields): Early return
5655         if field has POINTER_TYPE.
5656
5657 2008-05-06  Kai Tietz  <kai.tietz@onevision.com>
5658
5659         * config/i386/i386.c (output_set_got): Fix for x86_64 output_emit_asm
5660         by using 'q' specifier for instruction.
5661         (ix86_file_end): Replaced case TARGET_64BIT_MS_ABI by TARGET_64BIT.
5662
5663 2008-05-06  Anatoly Sokolov <aesok@post.ru>
5664
5665         * config/avr/avr.md (*sbrx_branch, *sbix_branch, *sbix_branch_tmp):
5666         Change mode of zero_extract from QImode to HImode.
5667         (sign bit tests peepholes): (Ditto.).
5668
5669 2008-05-06  Uros Bizjak  <ubizjak@gmail.com>
5670
5671         * config/i386/mmx.md: Remove double backslashes from asm templates.
5672         (*mmx_addv2sf3): Rename from mmx_addv2sf3 insn pattern.
5673         (mmx_addv2sf3): New expander.  Use ix86_fixup_binary_operands_no_copy
5674         to handle nonimmediate operands.
5675         (*mmx_mulv2sf3): Rename from mmx_mulv2sf3 insn pattern.
5676         (mmx_mulv2sf3): New expander.  Use ix86_fixup_binary_operands_no_copy
5677         to handle nonimmediate operands.
5678         (*mmx_<code>v2sf3_finite): New insn pattern.
5679         (*mmx_<code>v2sf3): Rename from mmx_<code>v2sf3 insn pattern.
5680         (mmx_<code>v2sf3): New expander.  Use
5681         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5682         (mmx_<plusminus_insn><mode>3): New expander.  Use
5683         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5684         (*mmx_<plusminus_insn><mode>3): New insn pattern.
5685         (mmx_add<mode>3): Removed.
5686         (mmx_ssadd<mode>3): Ditto.
5687         (mmx_usadd<mode>3): Ditto.
5688         (mmx_sub<mode>3): Ditto.
5689         (mmx_sssub<mode>3): Ditto.
5690         (mmx_ussub<mode>3): Ditto.
5691         (*mmx_mulv4hi3): Rename from mmx_mulv4hi3 insn pattern.
5692         (mmx_mulv4hi3): New expander.  Use ix86_fixup_binary_operands_no_copy
5693         to handle nonimmediate operands.
5694         (*mmx_smulv4hi3_highpart): Rename from mmx_smulv4hi3_highpart
5695         insn pattern.
5696         (mmx_smulv4hi3_highpart): New expander.  Use
5697         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5698         (*mmx_umulv4hi3_highpart): Rename from mmx_umulv4hi3_highpart
5699         insn pattern.
5700         (mmx_umulv4hi3_highpart): New expander.  Use
5701         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5702         (*mmx_<code>v4hi3): Rename from mmx_<code>v4hi3 insn pattern.
5703         (mmx_<code>v4hi3): New expander.  Use
5704         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5705         (*mmx_<code>v8qi3): Rename from mmx_<code>v8qi3 insn pattern.
5706         (mmx_<code>v8qi3): New expander.  Use
5707         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5708         (*mmx_<code><mode>3): Rename from mmx_<code><mode>3 insn pattern.
5709         (mmx_<code><mode>3): New expander.  Use
5710         ix86_fixup_binary_operands_no_copy to handle nonimmediate operands.
5711
5712 2008-05-05  Jan Hubicka  <jh@suse.cz>
5713
5714         PR tree-optimization/36118
5715         * passes.c (pass_init_dump_file): Fix dump header.
5716
5717 2008-05-05  Andrew Pinski  <andrew_pinski@playstation.sony.com>
5718
5719         PR middle-end/36141
5720         * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Don't create
5721         VCE for function decls.
5722
5723 2008-05-05  H.J. Lu  <hongjiu.lu@intel.com>
5724
5725         * config/i386/sse.md (sse2_<plusminus_insn><mode>3): Fix a typo.
5726
5727 2008-05-05  H.J. Lu  <hongjiu.lu@intel.com>
5728
5729         * config/i386/i386.md (sat_plusminus): New.
5730         (plusminus_insn): Likewise.
5731         (plusminus_mnemonic): Likewise.
5732         (addsub): Removed.
5733         (comm): Add ss_plus, us_plus, ss_minus and us_minus.
5734         (*<addsub><mode>3_cc_overflow): Renamed to ...
5735         (*<plusminus_insn><mode>3_cc_overflow): This.
5736         (*<addsub>si3_zext_cc_overflow): Renamed to ...
5737         (*<plusminus_insn>si3_zext_cc_overflow): This.
5738
5739         * config/i386/sse.md (<addsub><mode>3): Renamed to ...
5740         (<plusminus_insn><mode>3): This.
5741         (*<addsub><mode>3): Renamed to ...
5742         (*<plusminus_insn><mode>3): This.
5743         (<sse>_vm<addsub><mode>3): Renamed to ...
5744         (<sse>_vm<plusminus_insn><mode>3): This.
5745         (sse3_h<addsub>v4sf3): Renamed to ...
5746         (sse3_h<plusminus_insn>v4sf3): This.
5747         (sse3_h<addsub>v2df3): Renamed to ...
5748         (sse3_h<plusminus_insn>v2df3): This.
5749         (<plusminus_insn><mode>3): New.
5750         (*<plusminus_insn><mode>3): Likewise.
5751         (sse2_<plusminus_insn><mode>3): Likewise.
5752         (add<mode>): Removed.
5753         (*add<mode>3): Likewise.
5754         (sse2_ssadd<mode>3): Likewise.
5755         (sse2_usadd<mode>3): Likewise.
5756         (sub<mode>3): Likewise.
5757         (*sub<mode>3): Likewise.
5758         (sse2_sssub<mode>3): Likewise.
5759         (sse2_ussub<mode>3): Likewise.
5760
5761 2008-05-05  Benjamin Kosnik  <bkoz@redhat.com>
5762
5763         * gthr-single.h: Add in required interface elements as per gthr.h.
5764         Add stub types for __gthread_key_t, __gthread_once_t. Add defines
5765         for __GTHREAD_ONCE_INIT, __GTHREAD_RECURSIVE_MUTEX_INIT.
5766         Generalize UNUSED macro. 
5767         (__gthread_once): Add.
5768         (__gthread_key_create): Add.
5769         (__gthread_key_delete): Add.
5770         (__gthread_getspecific): Add.
5771         (__gthread_setspecific): Add.
5772         
5773 2008-05-05  Andrew Pinski  <Andrew.Pinski@playstation.sony.com>
5774
5775         * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): If we have
5776         the same size types for the indirect reference on the rhs, then
5777         create a VCE.
5778
5779 2008-05-05  Uros Bizjak  <ubizjak@gmail.com>
5780
5781         * config/i386/i386.md
5782         (*float<SSEMODEI24:mode><MODEF:mode>2_sse_interunit): Use only
5783         one insn template instead of template series.
5784         (*xordi_1_rex64): Ditto.
5785         (*xordi_2_rex64): Ditto.
5786
5787 2008-05-05  Ira Rosen  <irar@il.ibm.com>
5788
5789         PR tree-optimization/36119
5790         * tree-vect-transform.c (vectorizable_assignment): Set NCOPIES to 1
5791         in case of SLP.
5792
5793 2008-06-04  Jan Hubicka  <jh@suse.cz>
5794
5795         tree-optimization/36100
5796         * tree-pass.h (pass_O0_always_inline): Declare.
5797         * ipa-inline.c (inline_transform): Remove dead code.
5798         (cgraph_gate_O0_always_inline, cgraph_O0_always_inline,
5799         pass_O0_always_inline): New.
5800         * passes.c (init_optimization_passes): Add pass_O0_always_inline.
5801
5802 2008-05-04  Kai Tietz  <kai.tietz@onevision.com>
5803
5804         * config/i386/i386.c (x86_output_mi_thunk): Use movq alternative
5805         mnemonic in this_param move for TARGET_64BIT.
5806
5807 2008-05-04  Uros Bizjak  <ubizjak@gmail.com>
5808
5809         * config/i386/i386.md (*strmovsi_1): Simplify asm alternatives.
5810         (*strmovsi_rex_1): Ditto.
5811         (*strsetsi_1): Ditto.
5812         (*strsetsi_rex_1): Ditto.
5813
5814         (add<mode>cc): Macroize expander from addqicc, addhicc, addsicc and
5815         adddicc expanders using SWI mode iterator.
5816
5817 2008-05-04  H.J. Lu  <hongjiu.lu@intel.com>
5818
5819         PR target/36121
5820         * config/i386/i386.c (ix86_expand_special_args_builtin): Remove three
5821         argument handling.
5822
5823 2008-05-04  David S. Miller  <davem@davemloft.net>
5824
5825         * config.gcc (sparc*-*-*): Always set need_64bit_hwint to yes.
5826         (sparc*-*-linux*): Use linux.h in tm_file.
5827         (sparc-*-linux*): If 'enabled_targets' is 'all', build a bi-arch
5828         compiler defaulting to 32-bit.
5829         (sparc*-*-*): Remove explicit target settings of need_64bit_hwint,
5830         no longer needed.
5831         * config/sparc/linux.h: Remove definitions now obtained
5832         properly from linux.h
5833         * config/sparc/linux64.h: Likewise.
5834         (ASM_CPU_DEFAULT_SPEC): Change this to ASM_CPU64_DEFAULT_SPEC, we
5835         don't want this setting for 32-bit builds in a biarch compiler.
5836         * doc/install.texi: Add sparc-linux to list of targets
5837         supporting --enable-targets=all.
5838
5839 2008-05-03  Andrew Pinski  <pinskia@gmail.com>
5840
5841         * Makefile.in (tree-ssa-phiprop.o): Fix dependencies.
5842
5843 2008-05-03  H.J. Lu  <hongjiu.lu@intel.com>
5844
5845         * config/i386/i386.c (ix86_builtin_type): Move V4SI_FTYPE_V4SF
5846         after V4SI_FTYPE_V8HI.
5847         (ix86_init_mmx_sse_builtins): Move case V4HI_FTYPE_V4HI after
5848         case V4SI_FTYPE_V2DF.
5849
5850 2008-05-03  Kenneth Zadeck  <zadeck@naturalbridge.com>
5851
5852         * doc/invoke.texi (max-flow-memory-locations): Removed.
5853         * params.def (PARAM_MAX_FLOW_MEMORY_LOCATIONS): Removed.
5854         
5855 2008-05-03  Richard Guenther  <rguenther@suse.de>
5856
5857         PR middle-end/34973
5858         * opts.c (set_Wstrict_aliasing): Handle the turn-off case.
5859
5860 2008-05-02  David S. Miller  <davem@davemloft.net>
5861
5862         * config.gcc (need_64bit_hwint): Document libcpp dependency.
5863
5864 2008-05-02  Simon Baldwin <simonb@google.com>
5865
5866         PR bootstrap/36108
5867         * c-common.h (warn_array_subscript_range): Removed.
5868         * c-common.c (warn_array_subscript_range): Ditto.
5869         * tree-vrp.c (check_array_ref): Revert to ignoring arrays with size 2.
5870         * c-typeck.c (build_array_ref): Remove warn_array_subscript_range.
5871
5872 2008-05-02  H.J. Lu  <hongjiu.lu@intel.com>
5873
5874         * config/i386/i386.c (ix86_special_builtin_type): New.
5875         (bdesc_special_args): Likewise.
5876         (ix86_expand_special_args_builtin): Likewise.
5877         (ix86_init_mmx_sse_builtins): Updated.
5878         (ix86_expand_builtin): Updated.
5879         (ix86_expand_store_builtin): Removed.
5880         (ix86_expand_unop_builtin): Likewise.
5881
5882         * config/i386/mm3dnow.h (__v2sf): Moved to ...
5883         * config/i386/mmintrin.h (__v2sf): Here.
5884
5885         * config/i386/xmmintrin.h (_mm_loadh_pi): Replace __v2si with
5886         const __v2sf.
5887         (_mm_loadl_pi): Likewise.
5888         (_mm_storeh_pi): Replace __v2si with __v2sf.
5889         (_mm_storel_pi): Likewise.
5890
5891         * doc/extend.texi: Correct __builtin_ia32_loadhps,
5892         __builtin_ia32_loadlps, __builtin_ia32_storehps,
5893         __builtin_ia32_storelps, __builtin_ia32_loadhpd and
5894         __builtin_ia32_loadlpd.
5895
5896 2008-05-02  H.J. Lu  <hongjiu.lu@intel.com>
5897
5898         * config/i386/i386.c (ix86_builtin_type): Add FLOAT_FTYPE_FLOAT,
5899         V4SF_FTYPE_V4SF_VEC_MERGE and V2DF_FTYPE_V2DF_VEC_MERGE.
5900         (bdesc_args): Updated.  Add scalar SSE builtins with vec_merge.
5901         (ix86_init_mmx_sse_builtins): Updated.
5902         (ix86_expand_args_builtin): Likewise.
5903         (ix86_expand_builtin): Likewise.
5904         (ix86_expand_unop1_builtin): Renamed to ...
5905         (ix86_expand_unop_vec_merge_builtin): This.
5906
5907 2008-05-01  Jan Hubicka  <jh@suse.cz>
5908
5909         PR bootstrap/36100
5910         * ipa-inline.c (inline_generate_summary): Make static.
5911         (inline_transform): Do not call inlining at -O0; make static.
5912         * passes.c (execute_todo): Add sanity check.
5913         (execute_one_ipa_transform_pass): Execute proper flags.
5914
5915 2008-05-01  Eric Botcazou  <ebotcazou@adacore.com>
5916
5917         * tree.h (TYPE_NONALIASED_COMPONENT): Expand comment.
5918         (DECL_NONADDRESSABLE_P): Likewise.
5919         * alias.c (record_component_aliases): Fix comment.
5920
5921 2008-05-01  Simon Baldwin <simonb@google.com>
5922
5923         * c-common.h (warn_array_subscript_range): New function.
5924         * c-common.c (warn_array_subscript_range): Ditto.
5925         * tree-vrp.c (check_array_ref): Corrected code to agree with
5926         comment, ignoring only arrays of size 0 or size 1.
5927         * c-typeck.c (build_array_ref): Call warn_array_subscript_range.
5928
5929 2008-05-01  H.J. Lu  <hongjiu.lu@intel.com>
5930
5931         * config/i386/i386.c (ix86_builtin_type): Replace
5932         DI_FTYPE_DI_DI_INT with V1DI2DI_FTYPE_V1DI_V1DI_INT.
5933         (bdesc_args): Updated.
5934         (ix86_init_mmx_sse_builtins): Likewise.
5935         (ix86_expand_args_builtin): Likewise.
5936
5937         * config/i386/tmmintrin.h (_mm_alignr_pi8): Replace long long
5938         with __v1di.
5939
5940         * doc/extend.texi: Correct __builtin_ia32_palignr.
5941
5942 2008-05-01  H.J. Lu  <hongjiu.lu@intel.com>
5943
5944         PR target/36095
5945         * config/i386/i386.c (bdesc_crc32): Removed.
5946         (ix86_expand_crc32): Likewise.
5947         (ix86_builtin_type): Replace V2DI2TI_FTYPE_V2DI2TI_INT with
5948         V2DI2TI_FTYPE_V2DI_INT, V2DI2TI_FTYPE_V2DI2TI_V2DI2TI_INT with
5949         V2DI2TI_FTYPE_V2DI_V2DI_INT.  Add UINT64_FTYPE_UINT64_UINT64,
5950         UINT_FTYPE_UINT_UINT, UINT_FTYPE_UINT_USHORT and
5951         UINT_FTYPE_UINT_UCHAR.
5952         (bdesc_args): Updated. Add crc32 builtins.
5953         (ix86_init_mmx_sse_builtins): Updated.
5954         (ix86_expand_args_builtin): Updated to support subreg.
5955
5956         * doc/extend.texi: Correct __builtin_ia32_crc32di.
5957
5958 2008-05-01  Jan Hubicka  <jh@suse.cz>
5959
5960         * tree-pass.h (opt_pass): Add IPA_PASS.
5961         (varpool_node, cgraph_node): Forward declare.
5962         (ipa_opt_pass): Define.
5963         (pass_ipa_inline): Turn into ipa_opt_pass.
5964         (pass_apply_inline): Remove.
5965         * ipa-inline.c (pass_ipa_inline): Turn into ipa_opt_pass.
5966         (apply_inline): Turn into ....
5967         (inline_transform): ... this one.
5968         (inline_generate_summary): New function.
5969         (pass_apply_inline): Remove.
5970         * function.h (ipa_opt_pass): Forward declare structure; typedef;
5971         vector.
5972         (struct function): Add ipa_transforms_to_apply.
5973         * passes.c (register_one_dump_file): Work on IPA_PASS.
5974         (init_optimization_passes): Remove pass_inline_parameters and
5975         pass_apply_inline.
5976         (pass_init_dump_file, pass_fini_dump_file): Break out from ....
5977         (execute_one_pass) ... here; apply transforms when possible.
5978         (add_ipa_transform_pass, execute_ipa_summary_asses,
5979         execute_one_ipa_transform_pass): New.
5980         (execute_ipa_pass_list): Update for IPA_PASS type.
5981
5982 2008-05-01  H.J. Lu  <hongjiu.lu@intel.com>
5983
5984         * config/i386/i386.c (ix86_builtin_type): Add
5985         V2DI_FTYPE_V2DI_V16QI, V2DI_FTYPE_V2DI_UINT_UINT and
5986         V2DI_FTYPE_V2DI_V2DI_UINT_UINT.
5987         (bdesc_args): Add SSE4a builtins.
5988         (ix86_init_mmx_sse_builtins): Updated.
5989         (ix86_expand_args_builtin): Likewise.
5990         (ix86_expand_builtin): Likewise.
5991
5992 2008-05-01  H.J. Lu  <hongjiu.lu@intel.com>
5993
5994         * config/i386/i386.c (ix86_builtin_type): Add
5995         V8HI_FTYPE_V8HI_V8HI_COUNT, V8HI_FTYPE_V8HI_SI_COUNT,
5996         V4SI_FTYPE_V4SI_V4SI_COUNT, V4SI_FTYPE_V4SI_SI_COUNT,
5997         V4HI_FTYPE_V4HI_V4HI_COUNT, V4HI_FTYPE_V4HI_SI_COUNT,
5998         V2DI_FTYPE_V2DI_V2DI_COUNT, V2DI_FTYPE_V2DI_SI_COUNT,
5999         V2SI_FTYPE_V2SI_V2SI_COUNT, V2SI_FTYPE_V2SI_SI_COUNT,
6000         V1DI_FTYPE_V1DI_V1DI_COUNT, V1DI_FTYPE_V1DI_SI_COUNT,
6001         V8HI_FTYPE_V8HI_INT, V4SI_FTYPE_V4SI_INT, V4HI_FTYPE_V4HI_INT,
6002         V2DI2TI_FTYPE_V2DI2TI_INT, V2DI2TI_FTYPE_V2DI2TI_V2DI2TI_INT
6003         and DI_FTYPE_DI_DI_INT.
6004         (bdesc_args): Add MMX/SSE shift, shuffle and palignr builtins.
6005         (ix86_init_mmx_sse_builtins): Updated.
6006         (ix86_expand_args_builtin): Likewise.
6007         (ix86_expand_builtin): Likewise.
6008         (ix86_expand_binop_imm_builtin): Removed.
6009
6010         * doc/extend.texi: Correct __builtin_ia32_palignr128.
6011
6012 2008-04-30  Richard Guenther  <rguenther@suse.de>
6013
6014         PR tree-optimization/32921
6015         * tree-ssa-loop-im.c (mem_refs_may_alias_p): Disambiguate with TBAA.
6016
6017 2008-04-30  Richard Sandiford  <rsandifo@nildram.co.uk>
6018
6019         * config/arm/arm.c (arm_unwind_emit): Use
6020         crtl->all_throwers_are_sibcalls instead of
6021         cfun->all_throwers_are_sibcalls.
6022         (arm_output_fn_unwind): Likewise.
6023         * config/frv/frv.c (frv_stack_info): Use crtl->uses_pic_offset_table
6024         instead of cfun->uses_pic_offset_table.
6025         (frv_expand_prologue): Likewise.
6026         (frv_frame_pointer_required): Likewise.
6027         (frv_expand_fdpic_call): Likewise.
6028         (frv_emit_movsi): Likewise.
6029         * config/iq2000/iq2000.c (iq2000_expand_prologue): Use
6030         cfun->returns_pcc_struct instead of
6031         current_function_returns_pcc_struct.
6032         * config/m32c/m32c.c (need_to_save): Use crtl->calls_eh_return
6033         instead of cfun->calls_eh_return.
6034         (m32c_pushm_popm): Likewise.
6035         * config/xtensa/xtensa.h (cfun->calls_alloca): Remove bogus
6036         "extern" declaration.
6037
6038 2008-04-30  Richard Guenther  <rguenther@suse.de>
6039
6040         PR tree-optimization/21636
6041         * tree-ssa-ccp.c (ccp_fold): Handle &p->x with p being a
6042         constant address.
6043         (evaluate_stmt): Print the likely value.
6044         (ccp_visit_stmt): Avoid excessive vertical spacing.
6045
6046 2008-04-30  Rafael Espindola  <espindola@google.com>
6047
6048         * builtins.c (fold_call_expr): Return realret.
6049         * tree-ssa-threadedge.c
6050         (record_temporary_equivalences_from_stmts_at_dest): Ignore calls to
6051         __builtin_object_size.
6052
6053 2008-04-30  Seongbae Park  <seongbae.park@gmail.com>
6054
6055         * gcc.c (wrapper_string): New variable.
6056         (insert_wrapper): New function.
6057         (execute): New option -wrapper.
6058         * doc/invoke.texi (Overall Options): New driver option -wrapper.
6059
6060 2008-04-30  Nathan Froyd  <froydnj@codesourcery.com>
6061
6062         * config/rs6000/crtresgpr.asm, config/rs6000/crtresxgpr.asm,
6063         config/rs6000/crtsavgpr.asm, config/rs6000/crtresfpr.asm,
6064         config/rs6000/crtresxfpr.asm, config/rs6000/crtsavfpr.asm: Break out
6065         from...
6066         * config/rs6000/crtsavres.asm: ...here.  Remove unneeded file.
6067         * config/rs6000/e500crtres32gpr.asm, config/rs6000/e500crtres64gpr.asm,
6068         config/rs6000/e500crtres64gprctr.asm,
6069         config/rs6000/e500crtrest32gpr.asm, config/rs6000/e500crtrest64gpr.asm,
6070         config/rs6000/e500crtresx32gpr.asm, config/rs6000/e500crtresx64gpr.asm,
6071         config/rs6000/e500crtsav32gpr.asm, config/rs6000/e500crtsav64gpr.asm,
6072         config/rs6000/e500crtsav64gprctr.asm,
6073         config/rs6000/e500crtsavg32gpr.asm, config/rs6000/e500crtsavg64gpr.asm,
6074         config/rs6000/e500crtsavg64gprctr.asm: New files.
6075         * config/rs6000/t-ppccomm: Add build rules for new files.
6076         (LIB2FUNCS_STATIC_EXTRA): Add new files.
6077         * config/rs6000/t-netbsd: Add build rules for new files.
6078         (LIB2FUNCS_STATIC_EXTRA): New variable.
6079         * config/rs6000/sysv4.h (ENDFILE_SPEC): Don't include crtsavres.o
6080         (CRTSAVRES_DEFAULT_SPEC): Likewise.
6081         * config/rs6000/netbsd.h (ENDFILE_SPEC): Likewise.
6082
6083 2008-04-30  H.J. Lu  <hongjiu.lu@intel.com>
6084
6085         * config/i386/i386.c (ix86_builtin_type): Add
6086         FLOAT128_FTYPE_FLOAT128_FLOAT128, V16QI_FTYPE_V16QI_V16QI,
6087         V16QI_FTYPE_V8HI_V8HI, V8QI_FTYPE_V8QI_V8QI,
6088         V8QI_FTYPE_V4HI_V4HI, V8HI_FTYPE_V8HI_V8HI,
6089         V8HI_FTYPE_V16QI_V16QI, V8HI_FTYPE_V4SI_V4SI,
6090         V4SI_FTYPE_V4SI_V4SI, V4SI_FTYPE_V8HI_V8HI,
6091         V4SI_FTYPE_V4SF_V4SF, V4SI_FTYPE_V2DF_V2DF,
6092         V4HI_FTYPE_V4HI_V4HI, V4HI_FTYPE_V8QI_V8QI,
6093         V4HI_FTYPE_V2SI_V2SI, V4SF_FTYPE_V4SF_V4SF,
6094         V4SF_FTYPE_V4SF_V4SF_SWAP, V4SF_FTYPE_V4SF_V2SI,
6095         V4SF_FTYPE_V4SF_V2DF, V4SF_FTYPE_V4SF_DI,
6096         V4SF_FTYPE_V4SF_SI, V2DI_FTYPE_V2DI_V2DI,
6097         V2DI_FTYPE_V16QI_V16QI, V2DI_FTYPE_V4SI_V4SI,
6098         V2DI_FTYPE_V2DF_V2DF, V2SI_FTYPE_V2SI_V2SI,
6099         V2SI_FTYPE_V4HI_V4HI, V2SI_FTYPE_V2SF_V2SF,
6100         V2DF_FTYPE_V2DF_V2DF, V2DF_FTYPE_V2DF_V2DF_SWAP,
6101         V2DF_FTYPE_V2DF_V4SF, V2DF_FTYPE_V2DF_DI,
6102         V2DF_FTYPE_V2DF_SI, V2SF_FTYPE_V2SF_V2SF,
6103         V1DI_FTYPE_V1DI_V1DI, V1DI_FTYPE_V8QI_V8QI and
6104         V1DI_FTYPE_V2SI_V2SI.
6105         (bdesc_2arg): Moved to ...
6106         (bdesc_args): Here.
6107         (ix86_init_mmx_sse_builtins): Updated.
6108         (ix86_expand_args_builtin): Updated.  Take a pointer
6109         to const struct builtin_description.  Handle comparison
6110         builtin functions.
6111         (ix86_expand_sse_compare): Take a new argument for swapping operands.
6112         (ix86_expand_builtin): Updated.
6113
6114         * config/i386/sse.md (ssse3_pmaddubswv8hi3): Renamed to ...
6115         (ssse3_pmaddubsw128): This.
6116         (ssse3_pmaddubswv4hi3): Renamed to ...
6117         (ssse3_pmaddubsw): This.
6118
6119         * doc/extend.texi (__builtin_ia32_packsswb128): Correct prototype.
6120         (__builtin_ia32_packssdw128): Likewise.
6121         (__builtin_ia32_packuswb128): Likewise.
6122         (__builtin_ia32_pmaddubsw): Likewise.
6123         (__builtin_ia32_pmaddubsw128): Likewise.
6124
6125 2008-04-30  Richard Guenther  <rguenther@suse.de>
6126
6127         PR tree-optimization/14847
6128         * tree-ssa-ifcombine.c (get_name_for_bit_test): New helper function.
6129         (recognize_bits_test): Use it.
6130         (recognize_single_bit_test): Likewise.
6131
6132 2008-04-30  Martin Jambor  <mjambor@suse.cz>
6133
6134         * ipa-cp.c (ipcp_init_stage): Calls ipa_set_called_with_variable_arg
6135         instead of setting number of formal parameters to zero.
6136         (ipcp_init_stage): Do not set the number of actual parameters to zero 
6137         either.
6138         (ipcp_propagate_stage): Explicitly skipping all calls to nodes
6139         which are called with variable number of arguments.
6140         (ipcp_insert_stage): Explicitely skipping all nodes which are
6141         called with variable number of arguments.
6142         (ipcp_callsite_param_print): Skipps callsites to nodes with varaible 
6143         number of parameters.
6144
6145         * ipa-prop.h (struct ipa_node_params): Added flag
6146         called_with_var_arguments
6147         (ipa_set_param_count): Added.  Changed sole setter to use it.
6148         (ipa_get_param_count): Added.  All readers of param_count
6149         converted to use it instead.
6150         (ipa_set_called_with_variable_arg): Added.
6151         (ipa_is_called_with_var_arguments): Added.
6152         (ipa_get_ith_param): Added.  All readers of param_decls converted
6153         to use it instead.
6154         (ipa_set_cs_argument_count): Added, sole writer to argument_count 
6155         changed to use it. 
6156         (ipa_get_cs_argument_count): Added, all readers of argument_count
6157         changed to cal it.
6158         (ipa_get_ith_jump_func): Added. Accessors of jump values changed 
6159         to use it.
6160         
6161         * ipa-prop.h (struct ipcp_formal): Renamed to ipcp_lattice
6162         (struct ipcp_lattice): Renamed cval_type to type
6163         (struct ipa_node_params): ipcp_cval renamed to ipcp_lattices
6164
6165         * ipa-cp.c (ipcp_cval_get_cvalue): Changed return value to tree
6166         (ipcp_cval_set_cvalue): Changed type of parameter value to tree
6167         (ipcp_insert_stage): Changed the type of variable cvalue to tree
6168         (ipcp_replace_map_create): Changed the type of parameter cvalue to tree
6169         (build_const_val): Changed the type of parameter cvalue to tree
6170         (ipcp_propagate_const): Changed the type of parameter cvalue to tree
6171         (ipcp_method_cval_set_cvalue_type): Renamed parameter cval_type1 to type
6172         
6173         * ipa-prop.h (struct ipcp_formal): Replaced cvalue with tree called 
6174         constant 
6175
6176         * ipa-prop.c (ipa_methodlist_init): Renamed to ipa_init_func_list
6177         (ipa_methodlist_not_empty): Removed, the sole user now checks directly
6178         (ipa_add_method): Renamed to ipa_push_func_to_list
6179         (ipa_remove_method): Renamed to ipa_pop_func_from_list
6180         (ipa_callsite_param_count): Removed.
6181         (ipa_callsite_param_count_set): Removed.
6182         (ipa_callsite_param): Removed.
6183         (ipa_callsite_callee): Removed.
6184         (ipa_callsite_compute_param): Renamed to ipa_compute_jump_functions
6185         (ipa_callsite_compute_count): Renamed to ipa_count_arguments
6186         (ipa_method_formal_count): Removed.
6187         (ipa_method_formal_count_set): Removed.
6188         (ipa_method_get_tree): Removed.
6189         (ipa_method_tree_map_create): Removed.
6190         (ipa_method_compute_tree_map): Renamed to ipa_create_param_decls_array
6191         (ipa_create_param_decls_array): Creates the array itself
6192         (ipa_create_param_decls_array): Temporary variable info instead of 
6193         a few dereferences.
6194         (ipa_method_formal_compute_count): Renamed to ipa_count_formal_params
6195         (ipa_method_compute_modify): Renamed to ipa_detect_param_modifications
6196         (get_type): Removed.
6197         (ipa_jf_get_info_type): Removed.
6198         (ipa_node_create): Renamed to ipa_create_node_params
6199         (ipa_free): Renamed to ipa_free_all_node_params
6200         (ipa_nodes_create): Renamed to ipa_create_all_node_params
6201         (ipa_edges_create): Renamed to ipa_create_all_edge_args
6202         (ipa_edges_free): Renamed to ipa_free_all_edge_args
6203         (ipa_nodes_free): Integrated into ipa_free_all_node_params and removed
6204         (ipa_free_all_node_params): Deallocation to jump_functions moved to 
6205         ipa_free_all_edge_args
6206         (ipa_method_tree_print): Renamed to ipa_print_all_tree_maps
6207         (ipa_method_modify_print): Renamed to ipa_print_all_params_modified
6208         (ipa_create_methodlist_node): Removed.
6209         (ipa_methodlist_method): Removed.
6210         (ipa_methodlist_method_set): Removed.
6211         (ipa_methodlist_next_method): Removed.
6212         (ipa_methodlist_next_method_set): Removed.
6213         (ipa_method_is_modified): Removed.
6214         (ipa_method_modify_create): Removed.
6215         (ipa_method_modify_init): Temporary variable info instead of a few 
6216         dereferences.
6217         (ipa_detect_param_modifications): Temporary variable info instead of 
6218         a few dereferences.
6219         (ipa_compute_jump_functions): Temporary variable info instead of 
6220         a few dereferences.
6221         (ipa_method_modify_set): Removed.
6222         (ipa_method_tree_map): Renamed to ipa_get_param_decl_index
6223         (ipa_get_param_decl_index): Now accepts struct ipa_node_params rather 
6224         than craph_node as the first parameter.
6225         (ipa_method_modify_stmt): Renamed to ipa_check_stmt_modifications
6226         (ipa_method_modify_init): Removed.
6227         (ipa_compute_jump_functions): Added a temp variable instead of 
6228         repeatadly dereferencing the cgraph_edge.aux pointer
6229         (ipa_callsite_param_set_type): Removed.
6230         (ipa_compute_jump_functions): i renamed to index and moved to 
6231         an inner block
6232         (ipa_callsite_param_set_info_type_formal): Removed.
6233         (ipa_callsite_param_set_info_type): Removed.
6234         (ipa_callsite_param_map_create): Removed.
6235         (ipa_callsite_tree): Removed.
6236         (ipa_callsite_caller): Removed.
6237         (ipa_pop_func_from_list): return_method removed to return_func
6238
6239         * ipa-prop.h (enum cvalue_type): Renamed to ipa_lattice_type,
6240         prefixed all values with IPA_. Changed all users.
6241         (enum jump_func_type): Rnamed UNKNOWN_IPATYPE to IPA_UNKNOWN, 
6242         CONST_IPATYPE to IPA_CONST, CONST_IPATYPE_REF to IPA_CONST_REF 
6243         and FORMAL_IPATYPE IPA_PASS_THROUGH. 
6244         (union parameter_info): Renamed to jump_func_value.
6245         (union jump_func_value): Renamed value to constant
6246         (struct ipa_jump_func): Renamed info_type to value
6247         (struct ipa_node): Renamed to ipa_node_params
6248         (struct ipa_node_params): Renamed ipa_arg_num to param_count
6249         (struct ipa_node_params): Renamed ipa_param_tree to param_decls
6250         (struct ipa_node_params): Renamed ipa_mod to modified_flags
6251         (struct ipa_edge): Renamed to ipa_edge_args
6252         (struct ipa_edge_args): Renamed ipa_param_num to argument_count
6253         (struct ipa_edge_args): Renamed ipa_param_map to jump_functions
6254         (struct ipa_methodlist): Renamed to ipa_func_list
6255         (struct ipa_func_list): method_p renamed to node, next_method
6256         renamed to next
6257         (ipa_methodlist_p): Removed, switched all users to struct pointer
6258         (IS_VALID_TREE_MAP_INDEX): Renamed to IS_VALID_JUMP_FUNC_INDEX
6259
6260 2008-04-30  Alan Modra  <amodra@bigpond.net.au>
6261
6262         * config/rs6000/rs6000.c (ALWAYS_RESTORE_ALTIVEC_BEFORE_POP): Define.
6263         (rs6000_emit_epilogue): Use backchain to restore only when we
6264         have a large frame.  Make use of frame pointer to restore if we
6265         have one.  Handle ALWAYS_RESTORE_ALTIVEC_BEFORE_POP.
6266
6267 2008-04-29  Paolo Bonzini  <bonzini@gnu.org>
6268
6269         * config/avr/avr.md (*sbrx_branch, *sbix_branch, *sbix_branch_tmp):
6270         Add mode to zero_extract.
6271         (sign bit tests peepholes): (Ditto.).
6272
6273 2008-04-29  H.J. Lu  <hongjiu.lu@intel.com>
6274
6275         * config/i386/i386.c (ix86_builtins): Replace Prescott New
6276         Instructions in comments with SSE3.
6277         (ix86_builtin_type): This.  Add FLOAT128_FTYPE_FLOAT128,
6278         INT64_FTYPE_V4SF, INT64_FTYPE_V2DF, INT_FTYPE_V16QI,
6279         INT_FTYPE_V8QI, INT_FTYPE_V4SF, INT_FTYPE_V2DF,
6280         V16QI_FTYPE_V16QI, V8HI_FTYPE_V8HI, V8HI_FTYPE_V16QI,
6281         V8QI_FTYPE_V8QI, V4SI_FTYPE_V4SI, V4SI_FTYPE_V16QI,
6282         V4SI_FTYPE_V4SF, V4SI_FTYPE_V8HI, V4SI_FTYPE_V2DF,
6283         V4HI_FTYPE_V4HI, V4SF_FTYPE_V4SF, V4SF_FTYPE_V4SI,
6284         V4SF_FTYPE_V2DF, V2DI_FTYPE_V2DI, V2DI_FTYPE_V16QI,
6285         V2DI_FTYPE_V8HI, V2DI_FTYPE_V4SI, V2DF_FTYPE_V2DF,
6286         V2DF_FTYPE_V4SI, V2DF_FTYPE_V4SF, V2DF_FTYPE_V2SI,
6287         V2SI_FTYPE_V2SI, V2SI_FTYPE_V4SF, V2SI_FTYPE_V2SF,
6288         V2SI_FTYPE_V2DF, V2SF_FTYPE_V2SF and V2SF_FTYPE_V2SI.
6289         (bdesc_sse_args): Renamed to ...
6290         (bdesc_args): This.  Add IX86_BUILTIN_PF2ID, IX86_BUILTIN_PFRCP,
6291         IX86_BUILTIN_PFRSQRT, IX86_BUILTIN_PI2FD, IX86_BUILTIN_PF2IW,
6292         IX86_BUILTIN_PSWAPDSI, IX86_BUILTIN_PSWAPDSF and
6293         IX86_BUILTIN_FABSQ.
6294         (bdesc_1arg): Moved to ...
6295         (bdesc_args): Here.
6296         (ix86_init_mmx_sse_builtins): Updated.  Replace Prescott New
6297         Instructions in comments with SSE3.
6298         (ix86_expand_sse_operands_builtin): Renamed to ...
6299         (ix86_expand_args_builtin): This.  Updated.
6300         (ix86_expand_unop1_builtin): Update comments.
6301         (ix86_expand_builtin): Updated.
6302
6303 2008-04-29  Richard Guenther  <rguenther@suse.de>
6304
6305         PR tree-optimization/36078
6306         * tree-ssa-loop-ivcanon.c (tree_unroll_loops_completely):
6307         Update virtual SSA form after cleaning up the CFG.
6308
6309 2008-04-29  Richard Guenther  <rguenther@suse.de>
6310
6311         PR middle-end/15255
6312         * fold-const.c (fold_binary): Fold (A + A) * C to A * 2*C.
6313
6314 2008-04-29  Richard Guenther  <rguenther@suse.de>
6315
6316         * tree-ssa-alias.c (finalize_ref_all_pointers): Remove.
6317         (compute_may_aliases): Do not call finalize_ref_all_pointers.
6318         (compute_flow_insensitive_aliasing): Do not treat
6319         PTR_IS_REF_ALL pointers special.
6320         (get_smt_for): Likewise.
6321         (may_alias_p): Re-structure.
6322         (is_escape_site): A ref-all pointer conversion is not an escape site.
6323         * tree-ssa-structalias.c (find_what_p_points_to): Do not treat
6324         PTR_IS_REF_ALL pointers special.
6325         * tree-ssa-structalias.h (struct alias_info): Remove
6326         ref_all_symbol_mem_tag field.
6327         (PTR_IS_REF_ALL): Remove.
6328
6329 2008-04-29  Richard Guenther  <rguenther@suse.de>
6330
6331         PR middle-end/36077
6332         * fold-const.c (extract_muldiv_1): In combining division constants
6333         make sure to never overflow.
6334
6335 2008-04-29  Nick Clifton  <nickc@redhat.com>
6336
6337         * doc/tm.texi (RETURN_ADDR_RTX): Fix typo.
6338
6339 2008-04-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6340
6341         PR bootstrap/35169
6342         * optc-gen.awk: Work around HP-UX/IA awk bug.
6343
6344 2008-04-28  Danny Smith  <dannysmith@users.sourceforge.net>
6345
6346         * config/i386/cygming-crtend.c (register_frame_ctor): Revert my
6347         2008-04-25 commit.
6348
6349 2008-04-28  Uros Bizjak  <ubizjak@gmail.com>
6350
6351         PR target/36073
6352         * config/i386/i386.md
6353         (*float<SSEMODEI24:mode><MODEF:mode>2_mixed_interunit):
6354         Change operand 1 predicate to nonimmediate_operand.
6355
6356 2008-04-28  Jakub Jelinek  <jakub@redhat.com>
6357
6358         PR debug/36060
6359         * dwarf2out.c (struct die_struct): Mark as chain_circular through
6360         die_sub field.
6361         * gengtype.c (walk_type, write_func_for_structure): Handle
6362         chain_circular.
6363         * doc/gty.texi: Document chain_circular.
6364
6365 2008-04-28  Richard Guenther  <rguenther@suse.de>
6366
6367         PR tree-optimization/36066
6368         * tree-vrp.c (execute_vrp): Cleanup the CFG only after finalizing
6369         SCEV and loop.
6370
6371 2008-04-28  Uros Bizjak  <ubizjak@gmail.com>
6372
6373         PR target/36064
6374         * config/i386/i386.md
6375         (floatdi<X87MODEF:mode>2_i387_with_xmm splitters):
6376         Use match_scratch instead of match_operand for operands 3 and 4.
6377
6378 2008-04-27  Richard Guenther  <rguenther@suse.de>
6379
6380         PR tree-optimization/18754
6381         PR tree-optimization/34223
6382         * tree-pass.h (pass_complete_unrolli): Declare.
6383         * tree-ssa-loop-ivcanon.c (try_unroll_loop_completely): Print
6384         loop size before and after unconditionally of UL_NO_GROWTH in effect.
6385         Rewrite loop into loop closed SSA form if it is not already.
6386         (tree_unroll_loops_completely): Re-structure to iterate over
6387         innermost loops with intermediate CFG cleanups.
6388         Unroll outermost loops only if requested or the code does not grow
6389         doing so.
6390         * tree-ssa-loop.c (gate_tree_vectorize): Don't shortcut if no
6391         loops are available.
6392         (tree_vectorize): Instead do so here.
6393         (tree_complete_unroll): Also unroll outermost loops.
6394         (tree_complete_unroll_inner): New function.
6395         (gate_tree_complete_unroll_inner): Likewise.
6396         (pass_complete_unrolli): New pass.
6397         * tree-ssa-loop-manip.c (find_uses_to_rename_use): Only record
6398         uses outside of the loop.
6399         (tree_duplicate_loop_to_header_edge): Only verify loop-closed SSA
6400         form if it is available.  
6401         * tree-flow.h (tree_unroll_loops_completely): Add extra parameter.
6402         * passes.c (init_optimization_passes): Schedule complete inner
6403         loop unrolling pass before the first CCP pass after final inlining.
6404
6405 2008-04-27  Nathan Sidwell  <nathan@codesourcery.com>
6406
6407         * targhooks.h (default_emutls_var_fields,
6408         default_emutls_var_init): Declare.
6409         * tree.h (DECL_THREAD_LOCAL): Compare against TLS_MODEL_REAL.
6410         * target.h (struct gcc_target): Add struct emutls member.
6411         * target-def.h (TARGET_EMUTLS_GET_ADDRESS,
6412         TARGET_EMUTLS_REGISTER_COMMON, TARGET_EMUTLS_VAR_SECTION,
6413         TARGET_EMUTLS_TMPL_SECTION, TARGET_EMUTLS_VAR_PREFIX,
6414         TARGET_EMUTLS_TMPL_PREFIX, TARGET_EMUTLS_VAR_FIELDS,
6415         TARGET_EMUTLS_VAR_INIT, TARGET_EMUTLS_DEBUG_FORM_TLS_ADDRESS,
6416         TARGET_EMUTLS_VAR_ALIGN_FIXED, TARGET_EMUTLS): New.
6417         (TARGET_INITIALIZER): Add TARGET_EMUTLS.
6418         * builtins.def (BUILT_IN_EMUTLS_GET_ADDRESS,
6419         BUILT_IN_EMUTLS_REGISTER_COMMON): Get name from targetm structure.
6420         * dwarf2out.c (loc_descriptor_from_tree_1): Check if emutls can
6421         emit debug information.
6422         * coretypes.h (tls_model): Add TLS_MODEL_EMULATED, TLS_MODEL_REAL.
6423         * varasm.c: Include targhooks.h.
6424         (emutls_object_section, emutls_tmpl_section): New.
6425         (EMUTLS_VAR_PREFIX, EMUTLS_TMPL_PREFIX): Remove.
6426         (EMUTLS_SEPARATOR): New.
6427         (prefix_name): New.
6428         (get_emutls_object_name): New.
6429         (default_emutls_var_fields): New, broken out of ...
6430         (get_emutls_object_type): ... here.  Adjust to use target hooks.
6431         (get_emutls_init_templ_addr): Adjust to use target hooks.
6432         (emutls_decl): Adjust to use target hooks.
6433         (emutls_finish): Likewise.
6434         (default_emutls_var_init): New, broken out of ...
6435         (assemble_variable): ... here.  Adjust to use target hooks.
6436         * output.h (enum section_category): Add SECCAT_EMUTLS_VAR,
6437         SECCAT_EMUTLS_TMPL.
6438         * c-common.c (handle_section_attribute): Prevent overriding
6439         sections for emulated tls with special sections.
6440         * config/i386/i386.c (x86_64_elf_select_section): Add
6441         SECCAT_EMUTLS_VAR and SECCAT_EMUTLS_TMPL.
6442         (x86_64_elf_unique_section): Likewise.
6443         * config/vxworks.c: Include tree.h.
6444         (vxworks_emutls_var_fields, vxworks_emutls_var_init): New.
6445         (vxworks_override_options): Set TLS scheme.
6446         * doc/tm.texi (Emulated TLS): New node.
6447
6448 2008-04-26  Simon Baldwin <simonb@google.com>
6449
6450         PR c/35652
6451         * builtins.c (c_strlen): Suppressed multiple warnings that can occur
6452         with propagated string constants.
6453
6454 2008-04-26  Uros Bizjak  <ubizjak@gmail.com>
6455
6456         * config/i386/i386.md (fix_trunc<mode>_i387_fisttp_with_temp): Use 'X'
6457         constraint for operand 2 when operand 0 is memory operand.
6458         (fix_truncdi_i387_with_temp): : Use 'X' constraint for operand 4 when
6459         operand 0 is memory operand.
6460         (fix_trunc<mode>_i387_with_temp): Ditto.
6461         (*floatsi<mode>2_vector_mixed_with_temp): Use 'X' constraint for
6462         operand 2 when operand 1 is memory operand.
6463         (*float<SSEMODEI24:mode><MODEF:mode>2_mixed_with_temp): Ditto.
6464         (*floatsi<mode>2_vector_sse_with_temp): Ditto.
6465         (*float<SSEMODEI24:mode><MODEF:mode>2_sse_with_temp): Ditto.
6466         (*float<SSEMODEI24:mode><X87MODEF:mode>2_i387_with_temp): Ditto.
6467         (floatdi<X87MODEF:mode>2_i387_with_xmm): Use 'X' constraint for
6468         operands 2,3 and 4 when operand 1 is memory operand.
6469         (fistdi2_with_temp): Use 'X' constraint for operand 2 when operand 0
6470         is memory operand.
6471         (fistdi2_floor_with_temp): Ditto.
6472         (fist<mode>2_floor_with_temp): Ditto.
6473         (fistdi2_ceil_with_temp): Ditto.
6474         (fist<mode>2_ceil_with_temp): Ditto.
6475         (*truncdfsf_fast_mixed): Merge alternatives 0 and 1.
6476
6477 2008-04-26  David Daney  <ddaney@avtrex.com>
6478
6479         * config/mips/mips.md (UNSPEC_COMPARE_AND_SWAP_12): New
6480         unspec_volitile.
6481         (UNSPEC_SYNC_OLD_OP, UNSPEC_SYNC_NEW_OP, UNSPEC_SYNC_EXCHANGE,
6482         UNSPEC_MEMORY_BARRIER, UNSPEC_SET_GOT_VERSION,
6483         UNSPEC_UPDATE_GOT_VERSION): Renumber.
6484         (sync_compare_and_swap<mode>): New expand for QI and HI modes.
6485         (compare_and_swap_12): New insn.
6486         * config/mips/mips-protos.h (mips_expand_compare_and_swap_12): Declare.
6487         * config/mips/mips.c (mips_force_binary): New function.
6488         (mips_emit_int_order_test, mips_expand_synci_loop): Use it.
6489         (mips_expand_compare_and_swap_12): New function.
6490         * config/mips/mips.h (MIPS_COMPARE_AND_SWAP_12): New macro.
6491
6492 2008-04-25  Jan Hubicka  <jh@suse.cz>
6493
6494         PR testsuite/35843
6495         * cfgexpand.c (pass_expand): Turn into RTL pass.
6496         * passes.c (execute_one_pass): Do pass typechecking after execution.
6497         * tree-pass.h (pass_expand): Turn into RTL pass.
6498
6499         * function.h (struct rtl_data): Move here fields
6500         accesses_prior_frames, calls_eh_return, saves_all_registers,
6501         has_nonlocal_goto, has_asm_statement, is_thunk,
6502         all_throwers_are_sibcalls, limit_stack, profile, uses_const_pool,
6503         uses_pic_offset_table, uses_eh_lsda, tail_call_emit,
6504         arg_pointer_save_area_init from struct function; turn into bool.
6505         (struct function): Move
6506         calls_eh_return, saves_all_registers, has_nonlocal_goto,
6507         has_asm_statement, is_thunk, all_throwers_are_sibcalls, limit_stack,
6508         profile, uses_const_pool, uses_pic_offset_table, uses_eh_lsda,
6509         tail_call_emit, arg_pointer_save_area_init
6510         into struct rtl_data.  Remove recursive_call_emit and gimplified flags.
6511         (current_function_returns_struct, current_function_returns_pcc_struct,
6512         current_function_calls_setjmp, current_function_calls_alloca,
6513         current_function_accesses_prior_frames,
6514         current_function_calls_eh_return, current_function_is_thunk,
6515         current_function_stdarg, current_function_profile,
6516         current_function_limit_stack, current_function_uses_pic_offset_table,
6517         current_function_uses_const_pool, current_function_has_nonlocal_label,
6518         current_function_saves_all_registers,
6519         current_function_has_nonlocal_goto,
6520         current_function_has_asm_statement): Remove accesor macros.
6521         * ra-conflict.c (global_conflicts): Update.
6522         * tree-tailcall.c (suitable_for_tail_opt_p): Update.
6523         (suitable_for_tail_call_opt_p): Update.
6524         * builtins.c (expand_builtin_return_addr): Update.
6525         (expand_builtin_setjmp_setup): Update.
6526         (expand_builtin_nonlocal_goto): Update.
6527         * final.c (final_start_function): Update.
6528         (profile_function): Update.
6529         (leaf_function_p): Update.
6530         (only_leaf_regs_used): Update.
6531         * df-scan.c (df_get_exit_block_use_set): Update.
6532         * dojump.c (clear_pending_stack_adjust): Update.
6533         * tree-stdarg.c (gate_optimize_stdarg): Update.
6534         * gimple-low.c (lower_function_body): Update.
6535         * global.c (compute_regsets): Update.
6536         (global_alloc): Update.
6537         * dwarf2out.c (dwarf2out_begin_prologue): Update.
6538         * expr.c (expand_assignment): Update.
6539         * dse.c (dse_step0): Update.
6540         (dse_step1): Update.
6541         * c-decl.c (store_parm_decls): Update.
6542         * local-alloc.c (combine_regs): Update.
6543         (find_free_reg): Update.
6544         * function.c (assign_parms_augmented_arg_list): Update.
6545         (assign_parm_find_data_types): Update.
6546         (assign_parms): Update.
6547         (allocate_struct_function): Update.
6548         (expand_function_start): Update.
6549         (expand_function_end): Update.
6550         (get_arg_pointer_save_area): Update.
6551         (thread_prologue_and_epilogue_insns): Update.
6552         (rest_of_match_asm_constraints): Update.
6553         * stor-layout.c (variable_size): Update.
6554         * gcse.c (gcse_main): Update.
6555         (bypass_jumps): Update.
6556         * gimplify.c (gimplify_function_tree): Update.
6557         * calls.c (emit_call_1): Update.
6558         (expand_call): Update.
6559         * bt-load.c (compute_defs_uses_and_gen): Update.
6560         * except.c (sjlj_assign_call_site_values): Update.
6561         (sjlj_emit_function_enter): Update.
6562         (can_throw_external): Update.
6563         (set_nothrow_function_flags): Update.
6564         (expand_builtin_unwind_init): Update.
6565         (expand_eh_return): Update.
6566         (convert_to_eh_region_ranges): Update.
6567         (output_function_exception_table): Update.
6568         * emit-rtl.c (gen_tmp_stack_mem): Update.
6569         * cfgexpand.c (expand_used_vars): Update.
6570         (tree_expand_cfg): Update.
6571         * cfgcleanup.c (rest_of_handle_jump): Update.
6572         * explow.c (allocate_dynamic_stack_space): Update.
6573         * varasm.c (assemble_start_function): Update.
6574         (force_const_mem): Update.
6575         (mark_constant_pool): Update.
6576         * tree-optimize.c (tree_rest_of_compilation): Update.
6577         * stack-ptr-mod.c (notice_stack_pointer_modification): Update.
6578         * tree-cfg.c (notice_special_calls): Update.
6579         (is_ctrl_altering_stmt): Update.
6580         (tree_can_make_abnormal_goto): Update.
6581         (tree_purge_dead_abnormal_call_edges): Update.
6582         * config/alpha/predicates.md: Update.
6583         * config/alpha/alpha.c (alpha_sa_mask): Update.
6584         (alpha_sa_size): Update.
6585         (alpha_does_function_need_gp): Update.
6586         (alpha_expand_prologue): Update.
6587         (alpha_start_function): Update.
6588         (alpha_output_function_end_prologue): Update.
6589         (alpha_expand_epilogue): Update.
6590         * config/frv/frv.c (frv_stack_info): Update.
6591         (frv_expand_epilogue): Update.
6592         * config/s390/s390.c (s390_regs_ever_clobbered): Update.
6593         (s390_register_info): Update.
6594         (s390_frame_info): Update.
6595         (s390_init_frame_layout): Update.
6596         (s390_can_eliminate): Update.
6597         (save_gprs): Update.
6598         * config/spu/spu.c (spu_split_immediate): Update.
6599         (need_to_save_reg): Update.
6600         (spu_expand_prologue): Update.
6601         (spu_expand_epilogue): Update.
6602         * config/sparc/sparc.md: Update.
6603         * config/sparc/sparc.c (eligible_for_return_delay): Update.
6604         (sparc_tls_got): Update.
6605         (legitimize_pic_address): Update.
6606         (sparc_emit_call_insn): Update.
6607         (sparc_expand_prologue): Update.
6608         (output_return): Update.
6609         (print_operand): Update.
6610         (sparc_function_ok_for_sibcall): Update.
6611         * config/sparc/sparc.h (EXIT_IGNORE_STACK): Update.
6612         * config/m32r/m32r.md: Update.
6613         * config/m32r/m32r.c (MUST_SAVE_RETURN_ADDR): Update.
6614         (m32r_compute_frame_size): Update.
6615         (m32r_expand_prologue): Update.
6616         (m32r_expand_epilogue): Update.
6617         (m32r_legitimize_pic_address): Update.
6618         * config/m32r/m32r.h (FRAME_POINTER_REQUIRED): Update.
6619         * config/i386/linux.h (SUBTARGET_FRAME_POINTER_REQUIRED): Update.
6620         * config/i386/i386.c (ix86_frame_pointer_required): Update.
6621         (gen_push): Update.
6622         (ix86_save_reg): Update.
6623         (ix86_compute_frame_layout): Update.
6624         (ix86_expand_prologue): Update.
6625         (ix86_expand_epilogue): Update.
6626         * config/sh/sh.c (output_stack_adjust): Update.
6627         (calc_live_regs): Update.
6628         (sh5_schedule_saves): Update.
6629         (sh_expand_prologue): Update.
6630         (sh_expand_epilogue): Update.
6631         (sh_setup_incoming_varargs): Update.
6632         (sh_allocate_initial_value): Update.
6633         (sh_get_pr_initial_val): Update.
6634         * config/sh/sh.h (SHMEDIA_REGS_STACK_ADJUST): Update.
6635         * config/sh/sh.md (label:): Update.
6636         * config/avr/avr.c (out_movhi_mr_r): Update.
6637         * config/crx/crx.h (enum): Update.
6638         * config/xtensa/xtensa.h (along): Update.
6639         * config/stormy16/stormy16.c Update.
6640         (xstormy16_compute_stack_layout): Update.
6641         * config/fr30/fr30.c (MUST_SAVE_RETURN_POINTER): Update.
6642         (fr30_expand_prologue): Update.
6643         * config/cris/cris.c (cris_conditional_register_usage): Update.
6644         (cris_reg_saved_in_regsave_area): Update.
6645         (cris_initial_frame_pointer_offset): Update.
6646         (cris_simple_epilogue): Update.
6647         (cris_expand_prologue): Update.
6648         (cris_expand_epilogue): Update.
6649         (cris_expand_pic_call_address): Update.
6650         (cris_asm_output_symbol_ref): Update.
6651         (cris_asm_output_label_ref): Update.
6652         * config/cris/cris.md Update.
6653         * config/iq2000/iq2000.c (compute_frame_size): Update.
6654         (iq2000_expand_epilogue): Update.
6655         * config/mt/mt.h (save_direction): Update.
6656         * config/mn10300/mn10300.c (mn10300_function_value): Update.
6657         * config/ia64/ia64.c (ia64_compute_frame_size): Update.
6658         (ia64_secondary_reload_class): Update.
6659         * config/m68k/m68k.c (m68k_save_reg): Update.
6660         (m68k_expand_prologue): Update.
6661         (m68k_expand_epilogue): Update.
6662         (legitimize_pic_address): Update.
6663         * config/rs6000/rs6000.c (rs6000_got_register): Update.
6664         (first_reg_to_save): Update.
6665         (first_altivec_reg_to_save): Update.
6666         (compute_vrsave_mask): Update.
6667         (compute_save_world_info): Update.
6668         (rs6000_stack_info): Update.
6669         (spe_func_has_64bit_regs_p): Update.
6670         (rs6000_ra_ever_killed): Update.
6671         (rs6000_emit_eh_reg_restore): Update.
6672         (rs6000_emit_allocate_stack): Update.
6673         (rs6000_emit_prologue): Update.
6674         (rs6000_emit_epilogue): Update.
6675         (rs6000_output_function_epilogue): Update.
6676         (output_profile_hook): Update.
6677         (rs6000_elf_declare_function_name): Update.
6678         * config/rs6000/rs6000.h (rs6000_args): Update.
6679         * config/rs6000/rs6000.md: Update.
6680         * config/mcore/mcore.c (mcore_expand_prolog): Update.
6681         * config/arc/arc.c (arc_output_function_epilogue): Update.
6682         * config/arc/arc.h (FRAME_POINTER_REQUIRED): Update.
6683         * config/darwin.c (machopic_function_base_name): Update.
6684         * config/score/score3.c (score3_compute_frame_size): Update.
6685         (rpush): Update.
6686         (rpop): Update.
6687         (score3_epilogue): Update.
6688         * config/score/score7.c (score7_compute_frame_size): Update.
6689         (score7_prologue): Update.
6690         (score7_epilogue): Update.
6691         * config/score/score.h (FRAME_POINTER_REQUIRED): Update.
6692         * config/arm/linux-elf.h (SUBTARGET_FRAME_POINTER_REQUIRED): Update.
6693         * config/arm/arm.c (use_return_insn): Update.
6694         (require_pic_register): Update.
6695         (arm_load_pic_register): Update.
6696         (arm_compute_save_reg0_reg12_mask): Update.
6697         (arm_compute_save_reg_mask): Update.
6698         (thumb1_compute_save_reg_mask): Update.
6699         (output_return_instruction): Update.
6700         (arm_output_function_prologue): Update.
6701         (arm_output_epilogue): Update.
6702         (arm_get_frame_offsets): Update.
6703         (arm_expand_prologue): Update.
6704         (thumb_pushpop): Update.
6705         (thumb_exit): Update.
6706         (thumb1_expand_prologue): Update.
6707         (thumb1_expand_epilogue): Update.
6708         (arm_unwind_emit): Update.
6709         (arm_output_fn_unwind): Update.
6710         * config/arm/arm.h (FRAME_POINTER_REQUIRED): Update.
6711         * config/arm/arm.md: Update.
6712         * config/pa/pa.md: Update.
6713         * config/pa/pa.c (legitimize_pic_address): Update.
6714         (compute_frame_size): Update.
6715         (hppa_expand_prologue): Update.
6716         (hppa_expand_epilogue): Update.
6717         (borx_reg_operand): Update.
6718         * config/pa/pa.h (FRAME_POINTER_REQUIRED): Update.
6719         (HARD_REGNO_RENAME_OK): Update.
6720         * config/mips/mips.c (mips_global_pointer): Update.
6721         (mips_save_reg_p): Update.
6722         (mips_compute_frame_info): Update.
6723         (mips_frame_pointer_required): Update.
6724         (mips_expand_prologue): Update.
6725         (mips_expand_epilogue): Update.
6726         (mips_can_use_return_insn): Update.
6727         (mips_reorg_process_insns): Update.
6728         * config/v850/v850.c (compute_register_save_size): Update.
6729         * config/mmix/mmix.h (FRAME_POINTER_REQUIRED): Update.
6730         * config/mmix/mmix.c (along): Update.
6731         (mmix_expand_epilogue): Update.
6732         * config/bfin/bfin.c (legitimize_pic_address): Update.
6733         (must_save_p): Update.
6734         (stack_frame_needed_p): Update.
6735         (add_to_reg): Update.
6736         (bfin_expand_prologue): Update.
6737         * stmt.c (expand_asm_operands): Update.
6738         * reload1.c (reload): Update.
6739         (init_elim_table): Update.
6740
6741 2008-04-25  Bob Wilson  <bob.wilson@acm.org>
6742         
6743         * optabs.c (expand_float): Fix REG_EQUAL for UNSIGNED_FLOAT libcall.
6744         
6745 2008-04-25  H.J. Lu  <hongjiu.lu@intel.com>
6746
6747         * config/i386/sse.md (mov<mode>): Replace SSEMODEI with SSEMODE.
6748         (*mov<mode>_internal): Likewise.  Support V4SF and V2DF.
6749         (mov<mode>): Removed.
6750         (*movv4sf_internal): Likewise.
6751         (*movv2df_internal): Likewise.
6752
6753 2008-04-25  Pompapathi V Gadad <Pompapathi.V.Gadad@nsc.com>
6754
6755         * config.gcc (crx-*-elf): Remove deprecation.
6756
6757 2008-04-25  Danny Smith  <dannysmith@users.sourceforge.net>
6758
6759         * config/i386/cygming-crtend.c (register_frame_ctor): Register
6760         __gcc_deregister_frame with atexit.
6761         (deregister_frame_dtor): Remove.
6762
6763 2008-04-24  Nathan Froyd  <froydnj@codesourcery.com>
6764             Nathan Sidwell  <nathan@codesourcery.com>
6765
6766         * config/rs6000/rs6000.opt (mspe): Remove Var property.
6767         (misel): Likewise.
6768         * config/rs6000/rs6000.h (rs6000_spe): Declare.
6769         (rs6000_isel): Likewise.
6770         * config/rs6000/rs6000.c (rs6000_spe): New variable.
6771         (rs6000_isel): New variable.
6772         (rs6000_handle_option): Handle OPT_mspe and OPT_misel.
6773
6774 2008-04-24  Jakub Jelinek  <jakub@redhat.com>
6775
6776         PR c++/35758
6777         * c-common.c (handle_vector_size_attribute): Call
6778         lang_hooks.types.reconstruct_complex_type instead of
6779         reconstruct_complex_type.
6780         * config/rs6000/rs6000.c (rs6000_handle_altivec_attribute): Likewise.
6781         * config/spu/spu.c (spu_handle_vector_attribute): Likewise.
6782         * langhooks.h (struct lang_hooks_for_types): Add
6783         reconstruct_complex_type hook.
6784         * langhooks-def.h (LANG_HOOKS_RECONSTRUCT_COMPLEX_TYPE): Define.
6785         (LANG_HOOKS_FOR_TYPES_INITIALIZER): Add it.
6786
6787 2008-04-24  Richard Guenther  <rguenther@suse.de>
6788
6789         * c-common.h (check_builtin_function_arguments): Declare.
6790         * c-common.c (validate_nargs): New function.
6791         (check_builtin_function_arguments): Likewise.
6792         * c-typeck.c (build_function_call): Call
6793         check_builtin_function_arguments.
6794         * builtins.c (fold_builtin_classify): Remove error reporting code.
6795         (fold_builtin_unordered_cmp): Likewise.
6796         (fold_builtin_1): Likewise.
6797         (fold_builtin_n): Likewise.
6798
6799 2008-04-24  Jakub Jelinek  <jakub@redhat.com>
6800
6801         PR tree-optimization/36008
6802         * fold-const.c (try_move_mult_to_index): If s == NULL, divide
6803         the original op1, rather than delta by step.
6804
6805 2008-04-22  Antoniu Pop  <antoniu.pop@gmail.com>
6806             Sebastian Pop  <sebastian.pop@amd.com>
6807
6808         * tree-parloops.c (take_address_of, eliminate_local_variables_1,
6809         eliminate_local_variables_stmt, eliminate_local_variables,
6810         separate_decls_in_loop_name, separate_decls_in_loop_stmt,
6811         separate_decls_in_loop, gen_parallel_loop): Make them work on a region
6812         of code delimited by two edges in the CFG.
6813         (separate_decls_in_loop_name): Renamed separate_decls_in_region_name.
6814         (separate_decls_in_loop_stmt): Renamed separate_decls_in_region_stmt.
6815         (separate_decls_in_loop): Renamed separate_decls_in_region.  Isolate 
6816         the case of parallelisation of reductions.
6817         (expr_invariant_in_region_p): New.
6818
6819         * tree-flow.h (gather_blocks_in_sese_region): Declared.
6820         * tree-cfg.c (gather_blocks_in_sese_region): Extern.
6821
6822 2008-04-24  Ira Rosen  <irar@il.ibm.com>
6823             Richard Guenther  <rguenther@suse.de>
6824
6825         PR tree-optimization/36034
6826         * tree-vect-analyze.c (vect_analyze_group_access): SLP is
6827         incapable of dealing with loads with gaps.
6828
6829 2008-04-24  Rafael Espindola  <espindola@google.com>
6830
6831         * tree-flow.h (vrp_evaluate_conditional): Change signature.
6832         * tree-ssa-propagate.c (fold_predicate_in): Update call to
6833         vrp_evaluate_conditional.
6834         * tree-vrp.c (vrp_evaluate_conditional_warnv): Remove.
6835         (vrp_evaluate_conditional): Split the cond argument.
6836         (vrp_visit_cond_stmt): Use vrp_evaluate_conditional_warnv_with_ops.
6837         (simplify_stmt_for_jump_threading): Update call to
6838         vrp_evaluate_conditional.
6839
6840 2008-04-24  Ira Rosen  <irar@il.ibm.com>
6841
6842         PR tree-optimization/35982
6843         * tree-vect-analyze.c (vect_check_interleaving): Check that the
6844         interleaved data-refs are of the same type.
6845
6846 2008-04-24  Danny Smith  <dannysmith@users.net>
6847
6848         * c-format.c (check_format_info_main): Use strncmp rather than a
6849         magic prefix to handle multichar length specs.
6850         * config/i386/msformat-c.c (format_length_info ms_printf_length_specs):
6851         Don't prefix "I64" and "I32" with '\0'.
6852
6853 2008-04-24  Jakub Jelinek  <jakub@redhat.com>
6854
6855         PR target/36015
6856         * config/i386/i386.c (init_cumulative_args): Don't pass anything
6857         in registers for -m32 only if stdarg_p (fntype).
6858
6859 2008-04-24  Uros Bizjak  <ubizjak@gmail.com>
6860
6861         PR rtl-optimization/36006
6862         * expmed.c (store_fixed_bit_field): Copy op0 rtx before moving
6863         temp to op0 in order to avoid invalid rtx sharing.
6864
6865 2008-04-23  Paolo Bonzini  <bonzini@gnu.org>
6866
6867         * tree-cfg.c (verify_expr): Check with is_gimple_address.  Don't
6868         check TREE_INVARIANT.
6869         * tree-gimple.c (is_gimple_address): New.
6870         (is_gimple_invariant_address): Simplify using decl_address_invariant_p.
6871         * tree-gimple.h (is_gimple_address): New.
6872         * tree.h (decl_address_invariant_p): New.
6873         * tree.c (make_node_stat): Don't set TREE_INVARIANT.
6874         (build_string): Likewise.
6875         (decl_address_invariant_p): New, from is_gimple_invariant_address.
6876         (tree_invariant_p_1): Likewise.
6877         (save_expr): Use it.
6878         (tree_invariant_p): New.
6879         (skip_simple_arithmetic): Use it.
6880         (stabilize_reference_1): Use it.
6881         (recompute_tree_invariant_for_addr_expr): Don't update TREE_INVARIANT,
6882         simplify.
6883         (build1_stat): Drop code to compute TREE_INVARIANT.
6884         (build2_stat): Drop code to compute TREE_INVARIANT.
6885         (build3_stat): Drop code to compute TREE_INVARIANT.
6886         (build4_stat): Drop code to compute TREE_INVARIANT.
6887         (build5_stat): Drop code to compute TREE_INVARIANT.
6888         (build7_stat): Drop code to compute TREE_INVARIANT.
6889         (merge_dllimport_decl_attributes): Don't mention TREE_INVARIANT.
6890         * tree.h (struct tree_base): Remove invariant_flag.
6891         (TREE_INVARIANT): Remove.
6892         * builtins.c (build_string_literal): Don't set TREE_INVARIANT.
6893         (fold_builtin_expect): Check TREE_CONSTANT.
6894         * tree-ssa-ccp.c (fold_stmt_r): Adjust comment.
6895         * c-tree.h (c_expr_to_decl): Drop third parameter.
6896         * c-typeck.c (build_external_ref): Don't set TREE_INVARIANT.
6897         (build_c_cast): Don't set TREE_INVARIANT.
6898         (pop_init_level): Don't set TREE_INVARIANT.
6899         (c_objc_common_truthvalue_conversion): Don't set TREE_INVARIANT.
6900         * gimplify.c (gimplify_init_ctor_preeval): Add assertion, test
6901         TREE_CONSTANT.
6902         (gimplify_init_constructor): Don't set TREE_INVARIANT.
6903         (gimplify_addr_expr): Adjust comment.
6904         * tree-mudflap.c (mf_build_string):
6905         * print-tree.c (print_node): Don't print TREE_INVARIANT.
6906         * tree-nested.c (convert_nonlocal_reference): Adjust comment.
6907         * c-common.c (fix_string_type): Don't set TREE_INVARIANT.
6908         * langhooks-def.h (lhd_expr_to_decl): Drop third parameter.
6909         * langhooks.c (lhd_expr_to_decl): Drop third parameter.
6910         * langhooks.h (struct lang_hooks): Drop third parameter from
6911         expr_to_decl.
6912
6913 2008-04-23  Richard Guenther  <rguenther@suse.de>
6914
6915         PR tree-optimization/27799
6916         PR tree-optimization/32921
6917         PR tree-optimization/32624
6918         * tree-ssa-structalias.c (merge_smts_into): Only merge the
6919         SMTs aliases and the tag itself into the solution.
6920         * tree-ssa-alias.c (compute_flow_sensitive_aliasing): Do not
6921         merge the points-to solution back into the SMT aliases.
6922         (may_alias_p): Use alias_set_subset_of instead of
6923         aliases_conflict_p.  A pointer which points to
6924         memory with alias set zero may access any variable.
6925
6926 2008-04-23  Richard Guenther  <rguenther@suse.de>
6927
6928         * alias.c (alias_set_subset_of): Correctly handle asking
6929         if zero is a subset of an alias set with zero child.
6930         * tree-ssa-alias.c (have_common_aliases_p): Simplify logic.
6931         (compute_flow_insensitive_aliasing): Correctly walk all
6932         pointers.  Do not unnecessarily union sets.
6933
6934 2008-04-23  Richard Guenther  <rguenther@suse.de>
6935
6936         PR middle-end/36021
6937         * c-common.c (handle_alloc_size_attribute): Use type_num_arguments.
6938
6939 2008-04-22  Tomas Bily  <tbily@suse.cz>
6940
6941         * tree-cfg.c (verify_expr): Check for NON_LVALUE_EXPR as
6942         unreachable case.
6943         * tree-vrp.c (extract_range_from_unary_expr): Removed unused
6944         NON_LVALUE_EXPR.
6945         * tree-ssa-threadedge.c (simplify_control_stmt_condition): Likewise.
6946         * tree-ssa-structalias.c (get_constraint_for): Likewise.
6947         * tree-inline.c (estimate_num_insns_1): Likewise.
6948         * varasm.c (const_hash_1, compare_constant, copy_constant)
6949         (compute_reloc_for_constant, output_addressed_constants): Likewise.
6950         * emit-rtl.c (component_ref_for_mem_expr)
6951         (set_mem_attributes_minus_bitpos): Likewise.
6952         * expr.c (highest_pow2_factor, expand_expr_real_1, )
6953         (is_aligning_offset): Likewise.
6954         * dwarf2out.c (loc_descriptor_from_tree_1, add_bound_info): Likewise.
6955         * tree-ssa-loop-ivopts.c (may_be_nonaddressable_p): Likewise.
6956         * dojump.c (do_jump): Likewise.
6957         * builtins.c (get_pointer_alignment, get_memory_rtx)
6958         (integer_valued_real_p, fold_builtin_next_arg): Likewise.
6959         * tree-scalar-evolution.c (instantiate_parameters_1): Likewise.
6960
6961 2008-04-23  Jakub Jelinek  <jakub@redhat.com>
6962
6963         PR rtl-optimization/36017
6964         * builtins.c (expand_errno_check): Clear CALL_EXPR_TAILCALL before
6965         expanding the library call.
6966
6967 2008-04-22  Ian Lance Taylor  <iant@google.com>
6968
6969         * fold-const.c (pointer_may_wrap_p): Call int_size_in_bytes rather
6970         than size_in_bytes.
6971
6972 2008-04-22  Pat Haugen  <pthaugen@us.ibm.com>
6973
6974         * config/rs6000/rs6000.c (rs6000_register_move_cost): Increase cost
6975         of LR/CTR moves for Power6.
6976
6977 2008-04-22  Kenneth Zadeck  <zadeck@naturalbridge.com>
6978
6979         PR middle-end/36003
6980         * passes.c (init_optimization_passes): Remove
6981         pass_fast_rtl_byte_dce.
6982         
6983 2008-04-22  Uros Bizjak  <ubizjak@gmail.com>
6984
6985         PR target/29096
6986         * config/i386/xmmintrin.h (_mm_cvtpi16_ps): Rearrange calls to
6987         builtin functions to generate faster code.
6988         (_mm_cvtpu16_ps): Ditto.
6989         (_mm_cvtpi32x2_ps): Ditto.
6990
6991 2008-04-22  Nick Clifton  <nickc@redhat.com>
6992
6993         * common.opt (ftree-loop-distribution): Add Optimization
6994         attribute.
6995
6996         * config/frv/frv.c (frv_stack_info): Use crtl instead of cfun.
6997         (frv_expand_builtin_va_start): Likewise.
6998
6999         * config/arm/arm.c (thumb_find_work_register): Fix location of
7000         argument register count.
7001
7002 2008-04-22  Maxim Kuvyrkov  <maxim@codesourcery.com>
7003
7004         Support scheduling for ColdFire V1 and V3 microarchitecture.
7005         Improve scheduling of multiplication instructions.
7006
7007         * config/m68k/m68k.md (cpu): Add cfv1 and cfv3.  Rename cf_v2 to cfv1.
7008         (mac): New instruction attribute.
7009         * config/m68k/m68k.c (override_options): Handle cfv1, cfv3 and mac.
7010         (m68k_sched_mac): New variable.
7011         (m68k_sched_attr_type2, m68k_sched_md_init_global): Update.
7012         Handle cfv1 and cfv3.
7013         (max_insn_size): New static variable.
7014         (struct _sched_ib): New type.
7015         (sched_ib): New static variable.
7016         (sched_ib_size, sched_ib_filled, sched_ib_insn): Convert variables
7017         to fields of 'struct _sched_ib sched_ib'.  Update all uses.
7018         (m68k_sched_variable_issue): Add modeling of cfv3 instruction buffer.
7019         Update.
7020         (m68k_sched_md_init_global, m68k_sched_md_finish_global,
7021         m68k_sched_md_init, m68k_sched_md_finish): Handle cfv1 and cfv3.  Init
7022         new variables.  Update.
7023         (m68k_sched_dfa_pre_advance_cycle, m68k_sched_dfa_post_advance_cycle):
7024         Add modeling of cfv3 instruction buffer.  Update.
7025         * config/m68k/m68k-protos.h (m68k_sched_mac): Declare.
7026         * config/m68k/m68k.h (TUNE_CFV3): New macro.
7027         * config/m68k/cf.md: Change substrings 'cf_v2' to 'cfv12' or 'cfv123'.
7028         (cf_* reservations): Rename to cfv12 or cfv123 to indicate cores
7029         a particular reservation applies to.
7030         (type2): Reorganize attribute values.  Rename alu to alu_reg,
7031         alu_l to alu, move_l to omove.  Join move to alu.  Split mul
7032         to mul_l and mul_w.
7033         (cf_ib_*): Simplify description of instruction buffer.
7034         (cf_ib_w0, cf_ib_w4, cf_ib_w5, cf_ib_w6): Remove.
7035         (cf_mem): Split into cf_mem1 and cf_mem2.
7036         (cf_v2_move_??): Rename to cfv12_alu_??.
7037         (cf_v2_move_l_??): Rename to cfv12_omove_??.
7038         (cf_v2_mul_??): Remove reservations.
7039         (cfv12_mul_l_??, cfv12_mul_w_??, cfv12_mac_w_??, cfv12_mac_l_??,
7040         cfv12_emac_??, cfv12_emac_w_i0): New reservations.
7041         (cfv12_rts, cfv12_call, cfv12_bcc, cfv12_bra, cfv12_jmp): Move to
7042         appropriate place.
7043         (cfv3_alu_10, cfv3_omove_10, cfv3_alu_i0, cfv3_omove_i0, cfv3_alu_01,
7044         cfv3_alu_0i, cfv3_alu_11, cfv3_omove_11, cfv3_alu_i1, cfv3_omove_i1,
7045         cfv3_alu_1i, cfv3_omove_1i, cfv3_pea_11, cfv3_pea_i1, cfv3_mul_w_10,
7046         cfv3_mul_l_10, cfv3_mul_w_i0, cfv3_mac_w_10, cfv3_mac_l_10,
7047         cfv3_mac_w_i0, cfv3_emac_10, cfv3_emac_w_i0, cfv3_rts, cfv3_call,
7048         cfv3_bcc, cfv3_bra, cfv3_jmp): New reservations.
7049         (cfv3_*_1, cfv3_*_2, cfv3_*_3): New instruction reservations that are
7050         expansions of the above reservations for instructions of sizes
7051         1, 2 and 3 words.
7052
7053 2008-04-22  Maxim Kuvyrkov  <maxim@codesourcery.com>
7054
7055         * rtl-factoring.c (collect_patterns_seqs): Handle CC0 targets.
7056
7057 2008-04-21  Adam Nemet  <anemet@caviumnetworks.com>
7058
7059         * coverage.c: Include tree-pass.h.
7060         (coverage_counter_alloc): Print da_file_name to the dump file.
7061
7062 2008-04-21  Kenneth Zadeck  <zadeck@naturalbridge.com>
7063
7064         * sbitmap.c (sbitmap_range_empty_p): New function.
7065         * sbitmap.h (sbitmap_range_empty_p): New function.
7066         * bitmap.h: Now includes obstack.h.
7067
7068 2008-04-21  Richard Sandiford  <rsandifo@nildram.co.uk>
7069             Kenneth Zadeck  <zadeck@naturalbridge.com>
7070
7071         * dbgcnt.def (ra_byte_scan): Added.
7072         * dbgcnt.c (dbg_cnt): Added code to print message to dump_file
7073         when the last hit happens for a counter.  
7074         * timevar.def (TV_DF_BYTE_LR): New variable.
7075         * tree-pass.h (pass_fast_rtl_byte_dce): New pass.
7076         * passes.c (pass_fast_rtl_byte_dce): New pass.
7077         * fwprop.c (update_df): Added mode to call df_ref_create.
7078         Renamed DF_REF_WIDTH and DF_REF_OFFSET to DF_REF_EXTRACT_WIDTH and
7079         DF_REF_EXTRACT_OFFSET.
7080         * df.h (DF_BYTE_LR, DF_BYTE_LR_BB_INFO, DF_BYTE_LR_IN, 
7081         DF_BYTE_LR_OUT, df_byte_lr): New macro.
7082         (df_mm): New enum.
7083         (df_ref_extract): Added mode field.
7084         (DF_REF_WIDTH, DF_REF_OFFSET) Renamed to DF_REF_EXTRACT_WIDTH and
7085         DF_REF_EXTRACT_OFFSET.
7086         (DF_REF_EXTRACT_MODE): New macro.
7087         (df_byte_lr_bb_info): New structure.
7088         (df_print_byte_regset, df_compute_accessed_bytes, 
7089         df_byte_lr_add_problem, df_byte_lr_get_regno_start,
7090         df_byte_lr_get_regno_len, df_byte_lr_simulate_defs,
7091         df_byte_lr_simulate_uses,
7092         df_byte_lr_simulate_artificial_refs_at_top,
7093         df_byte_lr_simulate_artificial_refs_at_end,
7094         df_compute_accessed_bytes): New function.
7095         (df_ref_create): Add parameter.
7096         (df_byte_lr_get_bb_info): New inline function.
7097         * df-scan.c (df_ref_record, df_uses_record,
7098         df_ref_create_structure): Added mode parameter.
7099         (df_ref_create, df_notes_rescan, df_ref_record, df_def_record_1, 
7100         df_defs_record, df_uses_record, df_get_conditional_uses,
7101         df_get_call_refs, df_insn_refs_collect, df_bb_refs_collect, 
7102         df_entry_block_defs_collect, df_exit_block_uses_collect):
7103         Added mode parameter to calls to df_ref_record, df_uses_record,
7104         df_ref_create_structure.
7105         (df_ref_equal_p, df_ref_compare): Added test for modes.
7106         (df_ref_create_structure): Added code to set mode.  Renamed
7107         DF_REF_WIDTH and DF_REF_OFFSET to DF_REF_EXTRACT_WIDTH and
7108         DF_REF_EXTRACT_OFFSET.
7109         * df-core.c (df_print_byte_regset): New function.
7110         * df-byte-scan.c: New file.
7111         * df-problems.c (df_rd_transfer_function): Removed unnecessary
7112         calls to BITMAP_FREE.  
7113         (df_byte_lr_problem_data, df_problem problem_BYTE_LR): New structure.
7114         (df_byte_lr_get_regno_start, df_byte_lr_get_regno_len,
7115         df_byte_lr_set_bb_info, df_byte_lr_free_bb_info, 
7116         df_byte_lr_check_regs, df_byte_lr_expand_bitmap, 
7117         df_byte_lr_alloc, df_byte_lr_reset, df_byte_lr_bb_local_compute,
7118         df_byte_lr_local_compute, df_byte_lr_init,
7119         df_byte_lr_confluence_0, df_byte_lr_confluence_n, 
7120         df_byte_lr_transfer_function, df_byte_lr_free, 
7121         df_byte_lr_top_dump, df_byte_lr_bottom_dump,
7122         df_byte_lr_add_problem, df_byte_lr_simulate_defs, 
7123         df_byte_lr_simulate_uses,
7124         df_byte_lr_simulate_artificial_refs_at_top,
7125         df_byte_lr_simulate_artificial_refs_at_end): New function.
7126         * dce.c (byte_dce_process_block): New function.
7127         (dce_process_block): au is now passed in rather than computed
7128         locally.  Changed loops that look at artificial defs to not look
7129         for conditional or partial ones, because there never are any.  
7130         (fast_dce): Now is able to drive byte_dce_process_block or 
7131         dce_process_block depending on the kind of dce being done.
7132         (rest_of_handle_fast_dce): Add parameter to fast_dce.
7133         (rest_of_handle_fast_byte_dce): New function.
7134         (rtl_opt_pass pass_fast_rtl_byte_dce): New pass.
7135         * Makefile.in (df-byte-scan.o, debugcnt.o): Added dependencies.
7136
7137 2008-04-21  Daniel Franke  <franke.daniel@gmail.com>
7138
7139         PR fortran/35019
7140         * gcc.h: Added fortran options that take arguments to
7141         DEFAULT_SWITCH_TAKES_ARG and DEFAULT_WORD_SWITCH_TAKES_ARG
7142         macros.
7143
7144 2008-04-20  Eric Botcazou  <ebotcazou@adacore.com>
7145
7146         * tree-sra.c (sra_walk_expr) <VIEW_CONVERT_EXPR>: Disable
7147         scalarization if on the LHS and not a full access.
7148
7149 2008-04-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7150
7151         * Makefile.in (s-gtyp-input): Remove tmp-gi.list before writing it.
7152
7153 2008-04-18  Rafael Espindola  <espindola@google.com>
7154
7155         * tree-vrp.c (find_case_label_index): Fix the binary search.
7156         (find_case_label_range): New.
7157         (vrp_visit_switch_stmt): Use find_case_label_range.
7158         (simplify_switch_using_ranges): Use find_case_label_range.
7159
7160 2008-04-18  Eric Botcazou  <ebotcazou@adacore.com>
7161
7162         * gimplify.c (gimplify_modify_expr_rhs) <COND_EXPR>: Gimplify the LHS
7163         using the is_gimple_lvalue predicate instead of is_gimple_min_lval.
7164
7165 2008-04-18  Tom Tromey  <tromey@redhat.com>
7166
7167         PR libcpp/15500:
7168         * doc/cpp.texi (Implementation-defined behavior): Mention
7169         -finput-charset.
7170
7171 2008-04-18  Ian Lance Taylor  <iant@google.com>
7172
7173         * fold-const.c (pointer_may_wrap_p): New static function.
7174         (fold_comparison): Add another test for pointer overflow.  Use
7175         pointer_may_wrap_p to disable some false positives.
7176
7177 2008-04-18  Kris Van Hees <kris.van.hees@oracle.com>
7178           
7179         * c-common.c (CHAR16_TYPE, CHAR32_TYPE): New macros.
7180         (fname_as_string): Match updated cpp_interpret_string prototype.
7181         (fix_string_type): Support char16_t* and char32_t*.
7182         (c_common_nodes_and_builtins): Add char16_t and char32_t (and
7183         derivative) nodes.  Register as builtin if C++0x.
7184         (c_parse_error): Support CPP_CHAR{16,32}.
7185         * c-common.h (RID_CHAR16, RID_CHAR32): New elements. 
7186         (enum c_tree_index) <CTI_CHAR16_TYPE, CTI_SIGNED_CHAR16_TYPE,
7187         CTI_UNSIGNED_CHAR16_TYPE, CTI_CHAR32_TYPE, CTI_SIGNED_CHAR32_TYPE,
7188         CTI_UNSIGNED_CHAR32_TYPE, CTI_CHAR16_ARRAY_TYPE,
7189         CTI_CHAR32_ARRAY_TYPE>: New elements.
7190         (char16_type_node, signed_char16_type_node, unsigned_char16_type_node,
7191         char32_type_node, signed_char32_type_node, char16_array_type_node,
7192         char32_array_type_node): New defines.
7193         * c-lex.c (cb_ident): Match updated cpp_interpret_string prototype.
7194         (c_lex_with_flags): Support CPP_CHAR{16,32} and CPP_STRING{16,32}.
7195         (lex_string): Support CPP_STRING{16,32}, match updated
7196         cpp_interpret_string and cpp_interpret_string_notranslate prototypes.
7197         (lex_charconst): Support CPP_CHAR{16,32}.
7198         * c-parser.c (c_parser_postfix_expression): Support CPP_CHAR{16,32}
7199         and CPP_STRING{16,32}.
7200
7201 2008-04-18  Paolo Bonzini  <bonzini@gnu.org>
7202
7203         PR bootstrap/35457
7204         * aclocal.m4: Regenerate.
7205         * configure: Regenerate.
7206
7207 2008-04-18  Jan Hubicka  <jh@suse.cz>
7208
7209         * except.c (dw2_size_of_call_site_table,
7210         sjlj_size_of_call_site_table): Use vector API for call_site_record.
7211
7212         * cgraphbuild.c (build_cgraph_edges): Update.
7213         * tree-pass.h: Update comment.
7214         * final.c (leaf_function_p): Update.
7215         (leaf_renumber_regs): Update.
7216         (rest_of_clean_state): Update.
7217         * omp-low.c (expand_omp_parallel): Update.
7218         * ipa-reference.c (analyze_function): Update.
7219         * reorg.c (find_end_label): Update.
7220         (optimize_skip): Update.
7221         (fill_simple_delay_slots): Update.
7222         (fill_simple_delay_slots): Update.
7223         (make_return_insns): Update.
7224         (dbr_schedule): Update.
7225         * gimple-low.c (record_vars_into): Update.
7226         * cfgbuild.c (make_edges): Update.
7227         * function.c (assign_stack_local): Update.
7228         (assign_parm_adjust_stack_rtl): Update.
7229         (locate_and_pad_parm): Update.
7230         (allocate_struct_function): Do not initialize stack_alignment_needed
7231         and preferred_stack_boundary here.
7232         (stack_protect_prologue): Update.
7233         (stack_protect_epilogue): Update.
7234         (expand_function_start): Initialize stack_alignment_needed,
7235         preferred_stack_boundary and max_jumptable_ents.
7236         (expand_function_end): Update.
7237         (free_after_compilation): Do not NULLify epilogue_delay_list.
7238         * function.h (struct rtl_data): Add stack_protect_guard,
7239         stack_alignment_needed,
7240         preferred_stack_boundary, epilogue_delay_list.
7241         (struct function): Remove value_histograms, stack_alignment_needed,
7242         preferred_stack_boundary, epilogue_delay_list, max_jumptable_ents,
7243         last_label_uid,
7244         unexpanded_var_list, stack_protect_guard.
7245         (current_function_epilogue_delay_list): Remove.
7246         * ipa-type-escape.c (analyze_function): Update.
7247         * gimplify.c (pop_gimplify_context): Update comment.
7248         * calls.c (expand_call): Update.
7249         (emit_library_call_value_1): Update.
7250         * except.c (set_nothrow_function_flags): Update.
7251         * cfgexpand.c (get_decl_align_unit): Update.
7252         (create_stack_guard): Update.
7253         (estimated_stack_frame_size): Update.
7254         (expand_used_vars): Update.
7255         (tree_expand_cfg): Free histogram earliers, init expansion variables.
7256         * explow.c (allocate_dynamic_stack_space): Update.
7257         * tree-ssa-live.c (remove_unused_locals): Update.
7258         * varasm.c (mark_constant_pool): Update.
7259         * tree-inline.c (remap_decls): Update.
7260         (initialize_cfun): Update.
7261         (declare_return_variable): Update.
7262         (inline_forbidden_p): Update.
7263         (expand_call_inline): Update.
7264         (declare_inline_vars): Update.
7265         (tree_function_versioning): Update.
7266         * tree-flow.h (value_histograms): New.
7267         (VALUE_HISTOGRAMS): New macro.
7268         * basic-block.h (control_flow_graph): Add max_jumptable_ents,
7269         last_label_uid.
7270         * tree-cfg.c (set_bb_for_stmt): Update.
7271         (replace_by_duplicate_decl): Update.
7272         (move_block_to_fn): Update.
7273         (new_label_mapper): Update.
7274         (dump_function_to_file): Update.
7275         * ipa-struct-reorg.c (build_data_structure): Update.
7276         * cfgrtl.c (print_rtl_with_bb): Update.
7277         * reload1.c (reload): Update.
7278         (reload): Update.
7279         * config/i386/i386.c (setup_incoming_varargs_64,
7280         ix86_compute_frame_layout): Update.
7281         * config/arc/arc.c (arc_output_function_epilogue): Update.
7282
7283 2008-04-18  Marius Strobl <marius@FreeBSD.org>
7284
7285         * gthr-posix.h (__gthread_active_p): Use the Solaris implementation
7286         for FreeBSD as well.
7287         * gthr-posix95.h: Likewise.
7288
7289 2008-04-17  Richard Sandiford  <rsandifo@nildram.co.uk>
7290
7291         PR rtl-optimization/35838
7292         * dse.c (find_shift_sequence): Use subreg_lowpart_offset to work
7293         out the byte offset of the first subreg.
7294
7295 2008-04-17  Uros Bizjak  <ubizjak@gmail.com>
7296
7297         * config/i386/i386.md (addti3 splitter): Pass arrays of 3 operands
7298         to split_ti instead of three separate calls with single member arrays.
7299         (subti3 splitter): Ditto.
7300         (adddi3 splitter): Ditto with split_di.
7301         (subdi3 splitter): Ditto.
7302         (negti2 splitter): Pass arrays of 2 operands to split_ti instead of
7303         two separate calls with single member arrays.  Swap match_dup
7304         operands 1 and 2 to better fit into the array.
7305         (negdi2 splitter): Ditto with split_di.
7306         (movdfcc splitter):  Pass arrays of 2 operands to split_di instead of
7307         two separate calls with single member arrays.  Swap match_dup operands
7308         6 and 7 to better fit into the array.
7309
7310 2008-04-17  H.J. Lu  <hongjiu.lu@intel.com>
7311
7312         * config/i386/i386.c (sse_builtin_type): New.
7313         (bdesc_sse_args): Likewise.
7314         (bdesc_sse_3arg): Removed.
7315         (bdesc_2arg): Remove IX86_BUILTIN_AESKEYGENASSIST128.
7316         (bdesc_1arg): Remove IX86_BUILTIN_ROUNDPD and
7317         IX86_BUILTIN_ROUNDPS.
7318         (ix86_init_mmx_sse_builtins): Handle bdesc_sse_args.  Remove
7319         bdesc_sse_3arg.  Remove IX86_BUILTIN_ROUNDPD and
7320         IX86_BUILTIN_ROUNDPS.
7321         (ix86_expand_sse_4_operands_builtin): Removed.
7322         (ix86_expand_sse_operands_builtin): New.
7323         (ix86_expand_unop_builtin): Remove CODE_FOR_sse4_1_roundpd
7324         and CODE_FOR_sse4_1_roundps.
7325         (ix86_expand_builtin): Remove IX86_BUILTIN_AESKEYGENASSIST128.
7326         Handle bdesc_sse_args.  Remove bdesc_sse_3arg.
7327
7328 2008-04-17  Alan Modra  <amodra@bigpond.net.au>
7329
7330         PR target/35907
7331         * config/rs6000/rs6000.c (rs6000_emit_epilogue): Restore vr and vrsave
7332         regs before frame pop when needed.  If use_backchain_to_restore_sp
7333         then load backchain into a temp reg to restore vr and vrsave.  Add
7334         code to restore vr after frame pop if possible.
7335
7336 2008-04-17  Richard Guenther  <rguenther@suse.de>
7337
7338         * tree-vn.c (expressions_equal_p): Do not check type
7339         equality or compatibility before calling operand_equal_p.
7340         * fold-const.c (operand_equal_p): Check equivalence of
7341         integer constants before bailing out due to signedness or
7342         precision differences.
7343         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Ignore
7344         spurious differences in type qualification.  Ignore types
7345         for COMPONENT_REFs at all.
7346
7347 2008-04-17  Christian Bruel  <christian.bruel@st.com>
7348
7349         * config/sh/sh.c (expand_cbranchdi4): Use original operands for
7350         msw_skip comparison.
7351         
7352 2008-04-16  Jakub Jelinek  <jakub@redhat.com>
7353
7354         PR c/35739
7355         * tree-nrv.c (tree_nrv): Don't optimize if result_type is GIMPLE
7356         reg type.
7357
7358         PR tree-optimization/35899
7359         * tree-inline.c (expand_call_inline): Use GIMPLE_STMT_OPERAND
7360         rather than TREE_OPERAND.
7361
7362 2008-04-16  Uros Bizjak  <ubizjak@gmail.com>
7363
7364         PR target/35944
7365         * config/i386/i386.md (fmodxf3): Copy operand 1 and operand 2 into
7366         temporary registers.  Change operand predicate to general_operand.
7367         (remainderxf3): Ditto.
7368
7369 2008-04-16  Richard Guenther  <rguenther@suse.de>
7370
7371         * Makefile.in (tree-affine.o): Add $(FLAGS_H) dependency.
7372         * tree-affine.c (aff_combination_expand): Look through some
7373         conversions.
7374
7375 2008-04-15  Doug Kwan  <dougkwan@google.com>
7376
7377         * dwarf2asm.c (dw2_assemble_integer): Cast to unsigned HOST_WIDE_INT
7378         for hex printing.
7379         * tree-pretty-print.c (dump_generic_node): Ditto.
7380         * final.c (output_addr_const): Ditto.
7381         * dwarf2out.c (output_cfi): Ditto.
7382         * c-pretty-print.c (pp_c_integer_constant): Ditto.
7383         * print-rtl.c (print_rtx): Ditto.
7384         * print-tree.c (print_node_brief, print_node): Ditto.
7385         * c-common.c (match_case_to_enum_1): Ditto.
7386         * sched-vis.c (print_value): Ditto.
7387         * config/i386/i386.c (print_operand): Cast to long unsigned int
7388         for hex printing.
7389
7390 2008-04-15  Danny Smith  <dannysmith@users.sourceforge.net>
7391         * libgcc2.c [L_trampoline]: Remove  unnecessary prototype for
7392         MS Windows VirtualProtect function.
7393
7394 2008-04-15  Jan Hubicka  <jh@suse.cz>
7395
7396         * gengtype.c (write_root): Param_is argument is OK.
7397         * expr.c (expand_expr_real_1): Update call of get_exception_*.
7398         * function.h: Include varray.h
7399         (rtl_eh): New stucture based on except.c one.
7400         (call_site_record): New forward declaration and vector type.
7401         * calls.c (emit_call_1): Do not call
7402         note_current_region_may_contain_throw.
7403         * except.c (eh_status): Remove cur_region, try_region since they are
7404         unused.
7405         Move filter, exc_ptr, ttype_data, ehspec_data, action_record_data and
7406         exception_handler_label_map, ehr_stackadj, ehr_handler, ehr_label,
7407         sjlj_fc, sjlj_exit_after to rth_eh in function.h. 
7408         Remove call_site_data_used, call_site_data_size.
7409         Turn call_site_record into vector in function.h.
7410         (note_current_region_may_contain_throw): Remove.
7411         (get_exception_pointer, get_exception_filter): Do not take struct
7412         function argument; update.
7413         (add_ehl_entry, find_exception_handler_labels, ehspec_filter_hash,
7414         add_ttypes_entry, add_ehspec_entry, assign_filter_values,
7415         build_post_landing_pads, dw2_build_landing_pads,
7416         sjlj_assign_call_site_values, sjlj_mark_call_sites,
7417         sjlj_emit_function_enter, sjlj_emit_function_enter, 
7418         sjlj_emit_function_exit, sjlj_emit_dispatch_table,
7419         sjlj_build_landing_pads, finish_eh_generation,
7420         remove_exception_handler_label, remove_eh_handler,
7421         maybe_remove_eh_handler, add_reachable_handler,
7422         reachable_handlers, expand_builtin_eh_return, expand_eh_return,
7423         add_action_record, collect_one_action_chain, add_call_site,
7424         convert_to_eh_region_ranges, sjlj_size_of_call_site_table,
7425         sjlj_output_call_site_table, output_function_exception_table,
7426         * except.h (note_current_region_may_contain_throw): Remove
7427         (get_exception_pointer, get_exception_filter): Do not take struct
7428         function argument.
7429         * Makefile.in (GTFILES): Put varargs before struct function.
7430
7431 2008-04-15  Eric Botcazou  <ebotcazou@adacore.com>
7432
7433         * tree-ssa-structalias.c (get_constraint_for_component_ref): Do not
7434         punt for STRING_CST.
7435         (get_constraint_for): Deal with STRING_CST here instead.
7436
7437 2008-04-15  Richard Guenther  <rguenther@suse.de>
7438
7439         * tree-ssa-propagate.c (substitute_and_fold): Substitute
7440         statements in a basic-block with a backward walk.  Do not
7441         substitute into dead statements but instead remove those.
7442
7443 2008-04-15  Richard Guenther  <rguenther@suse.de>
7444
7445         * params.def (PARAM_MAX_FIELDS_FOR_FIELD_SENSITIVE): Set default
7446         to zero, thus disable creation of SFTs.
7447
7448 2008-04-15  Eric Botcazou  <ebotcazou@adacore.com>
7449
7450         * tree-predcom.c (suitable_reference_p): Return false if the
7451         reference can throw.
7452
7453 2008-04-15  Jakub Jelinek  <jakub@redhat.com>
7454
7455         PR c/35751
7456         * c-decl.c (finish_decl): If extern or static var has variable
7457         size, set TREE_TYPE (decl) to error_mark_node.
7458
7459 2008-04-15  Rafael Espindola  <espindola@google.com>
7460
7461         * fold-const.c (tree_call_nonnegative_warnv_p): Remove local
7462         variable arg1.
7463
7464 2008-04-15  Richard Guenther  <rguenther@suse.de>
7465
7466         * tree-ssa-sccvn.h (vn_reference_lookup): Adjust prototype.
7467         * tree-ssa-sccvn.c (vn_reference_lookup): New parameter maywalk.
7468         (visit_reference_op_load): Do walk vuse-vdef chains on
7469         vn_reference_lookup.
7470         (visit_reference_op_store): But do not here.
7471         * tree-vn.c (vn_lookup): Do not walk vuse-vdef chains on
7472         vn_reference_lookup.
7473         (vn_lookup_with_vuses): But do so here.
7474
7475 2008-04-14  Ian Lance Taylor  <iant@google.com>
7476
7477         * fold-const.c (fold_overflow_warning): Remove assertion.
7478
7479 2008-04-15  Ben Elliston  <bje@au.ibm.com>
7480
7481         * config/alpha/alpha.c (alpha_initialize_trampoline): Remove temp,
7482         temp1 local variables.
7483
7484 2008-04-15  Zuxy Meng  <zuxy.meng@gmail.com>
7485
7486         PR target/35661
7487         * config/i386/winnt.c (i386_pe_section_type_flags): Mark
7488         ".text.unlikely" section as executable.
7489
7490 2008-04-14  James E. Wilson  <wilson@tuliptree.org>
7491
7492         * config/ia64/ia64.c (rtx_needs_barrier): Handle
7493         UNSPEC_FR_SQRT_RECIP_APPROX_RES.
7494         * config/ia64/ia64.c (UNSPEC_FR_SQRT_RECIP_APPROX_RES): Define.
7495         (divsi3_internal, divdi3_internal_lat, divdi3_internal_thr,
7496         divsf3_internal_lat, sqrt_approx, sqrtsf2_internal_thr,
7497         divdf3_internal_lat, sqrtdf2_internal_thr, divxf3_internal_lat,
7498         divxf3_internal_thr, sqrtxf2_internal_thr, recip_approx): Use it.
7499
7500 2008-04-14  Ian Lance Taylor  <iant@google.com>
7501
7502         * flags.h (POINTER_TYPE_OVERFLOW_UNDEFINED): Define.
7503         * fold-const.c (fold_comparison): If appropriate, test
7504         POINTER_TYPE_OVERFLOW_UNDEFINED, and issue an overflow warning.
7505         (fold_binary): Test POINTER_TYPE_OVERFLOW_UNDEFINED when
7506         reassociating a pointer type.
7507         * doc/invoke.texi (Optimize Options): Document that
7508         -fstrict-overflow applies to pointer wraparound.
7509
7510 2008-04-13  Jan Hubicka  <jh@suse.cz>
7511
7512         * m32.c (m32c_pushm_popm): Use crtl->retrun_rtx.
7513
7514 2008-04-12  Andrew Pinski  <pinskia@gmail.com>
7515
7516         * config/rs6000/rs6000.c (compute_save_world_info): Set lr_save_p if
7517         we are going to "save the world".
7518
7519 2008-04-13  Hans-Peter Nilsson  <hp@axis.com>
7520
7521         * config/cris/cris.md ("*andhi_lowpart_non_v32", "*andhi_lowpart_v32")
7522         ("*andqi_lowpart_non_v32", "*andqi_lowpart_v32"): Use "+" for the
7523         operand 0 constraint, not "=".
7524
7525 2008-04-11  James E. Wilson  <wilson@tuliptree.org>
7526
7527         * system.h: Change ASSERT_CHECKING to ENABLE_ASSERT_CHECKING.
7528
7529 2008-04-11  H.J. Lu  <hongjiu.lu@intel.com>
7530
7531         * dse.c (record_store): Use HOST_BITS_PER_WIDE_INT instead
7532         of size of positions_needed * CHAR_BIT.
7533
7534 2008-04-11  H.J. Lu  <hongjiu.lu@intel.com>
7535
7536         PR middle-end/35897
7537         * dse.c (store_info): Change positions_needed to unsigned
7538         HOST_WIDE_INT.
7539         (lowpart_bitmask): New.
7540         (record_store): Cast to unsigned HOST_WIDE_INT for
7541         positions_needed.  Assert width <= size of positions_needed *
7542         CHAR_BIT.  Call lowpart_bitmask to initialize positions_needed.
7543         (check_mem_read_rtx): Use unsigned HOST_WIDE_INT on mask.  Call
7544         lowpart_bitmask to set mask.
7545
7546 2008-04-11  Bernd Schmidt  <bernd.schmidt@analog.com>
7547
7548         * config/bfin/constraints.md: New file.
7549         * config/bfin/bfin.md: Include it.
7550         (adddi3): Use satisfies_constraint functions instead of the old macros.
7551         * config/bfin/bfin.h (REG_CLASS_FROM_LETTER, CONSTRAINT_LEN,
7552         CONST_18UBIT_IMM_P, CONST_16BIT_IMM_P, CONST_16UBIT_IMM_P,
7553         CONST_7BIT_IMM_P, CONST_7NBIT_IMM_P, CONST_5UBIT_IMM_P,
7554         CONST_4BIT_IMM_P, CONST_4UBIT_IMM_P, CONST_3BIT_IMM_P,
7555         CONST_3UBIT_IMM_P, CONST_OK_FOR_K, CONST_OK_FOR_P, CONST_OK_FOR_M,
7556         CONST_OK_FOR_CONSTRAINT_P, CONST_DOUBLE_OK_FOR_LETTER,
7557         EXTRA_CONSTRAINT): Delete.
7558         * config/bfin/predicates.md (highbits_operand, reg_or_7bit_operand,
7559         reg_or_neg7bit_operand): Use satisfies_constraint functions instead
7560         of the old macros.
7561         * config/bfin/bfin.c: Include "tm-constrs.h".
7562         (bfin_secondary_reload, split_load_immediate, bfin_rtx_costs):
7563         Use satisfies_constraint functions instead of the old macros.
7564         * doc/md.texi (Blackfin Constraints): Update file name reference.
7565
7566 2008-04-11  Richard Guenther  <rguenther@suse.de>
7567
7568         PR tree-optimization/35869
7569         * tree-vrp.c (execute_vrp): Move switch statement update after
7570         jump threading.  Schedule another cfg cleanup run.
7571
7572 2008-04-11  Volker Reichelt  <v.reichelt@netcologne.de>
7573
7574         PR c/35744
7575         * attribs.c (decl_attributes): Return early on errorneous node.
7576
7577 2008-04-10  Oleg Ryjkov  <olegr@google.com>
7578
7579         * tree.h (struct tree_base): Added a new flag default_def_flag.
7580         (SSA_NAME_IS_DEFAULT_DEF): Changed to use the new flag.
7581
7582 2008-04-11  Kaz Kojima  <kkojima@gcc.gnu.org>
7583
7584         * config.gcc (need_64bit_hwint): Need 64bit hwint for sh-*-*.
7585
7586 2008-04-10  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
7587
7588         PR target/35768
7589         * pa.md: Define mode iterator P.  Define mode attribute dwc.
7590         (dcacheflush): Update pattern to use iterator P and attribute dwc.
7591         (icacheflush): Likewise.
7592         * pa.h (INITIALIZE_TRAMPOLINE): Use dcacheflushsi/icacheflushsi if
7593         !TARGET_64BIT, and dcacheflushdi/icacheflushdi if TARGET_64BIT.
7594
7595 2008-04-11  Ben Elliston  <bje@au.ibm.com>
7596
7597         * config/spu/spu.c (spu_init_builtins): Mark builtins as nothrow.
7598
7599 2008-04-10  Rafael Espindola  <espindola@google.com>
7600
7601         * tree-vrp.c (extract_range_from_binary_expr): Don't handle
7602         TRUTH_ANDIF_EXPR or TRUTH_ORIF_EXPR.
7603         (extract_range_from_expr): The same.
7604
7605 2008-04-10  Adam Nemet  <anemet@caviumnetworks.com>
7606
7607         * config/mips/mips.md (GPR2): New mode iterator.
7608         (seq): Add comment.
7609         (*seq_<mode>, *seq_<mode>_mips16, *sne_<mode>, *sgt<u>_<mode>,
7610         *sgt<u>_<mode>_mips16, *sge<u>_<mode>, *slt<u>_<mode>,
7611         *slt<u>_<mode>_mips16 *sle<u>_<mode>, *sle<u>_<mode>_mips16):
7612         Rewrite these to take two modes, the mode of comparison and the
7613         mode of the destination.
7614         * config/mips/mips.c (mips_expand_scc): Instead of having
7615         paradoxical subreg as destination, expand "narrowing" scc if mode
7616         of comparison is SI and target is requested in DI mode.
7617         (mips_emit_int_order_test): Update comment.  Make mode of
7618         comparison match CMP0 rather than TARGET.  When creating inverse
7619         target use mode of TARGET.
7620
7621 2008-04-10  Adam Nemet  <anemet@caviumnetworks.com>
7622
7623         * gcov-dump.c (tag_summary): Only print summaries for the first
7624         GCOV_COUNTERS_SUMMABLE counters.
7625
7626 2008-04-10  Uros Bizjak  <ubizjak@gmail.com>
7627
7628         * config/i386/i386.md (absneg): New code iterator.
7629         (absnegprefix): New code attribute.
7630         (<code><mode>2): Macroize expander from abs<mode>2 and neg<mode>2
7631         patterns using absneg code iterator.
7632         (<code>tf2): Macroize expander from abstf2 and negtf2 patterns
7633         using absneg code iterator.
7634         (*<code><mode>2_1): Macroize insn pattern from *abs<mode>2_1 and
7635         *neg<mode>2 patterns using absneg code iterator.
7636         (*<code>extendsfdf2): Macroize insn pattern from *absextendsfdf2 and
7637         *negextendsfdf2 patterns using absneg code iterator.
7638         (*<code>extendsfxf2): Macroize insn pattern from *absextendsfxf2 and
7639         *negextendsfxf2 patterns using absneg code iterator.
7640         (*<code>extendsfdf2): Macroize insn pattern from *absextendsfdf2 and
7641         *negextendsfdf2 patterns using absneg code iterator.
7642         * config/i386/sse.md (<code><mode>2): Macroize expander from
7643         abs<mode>2 and neg<mode>2 patterns using absneg code iterator. 
7644
7645 2008-04-10  Andreas Krebbel  <krebbel1@de.ibm.com>
7646
7647         * config/s390/s390.h: Remove the remains of the recent search
7648         & replace action of current_function_outgoing_args_size.
7649
7650 2008-04-10  Ira Rosen  <irar@il.ibm.com>
7651
7652         PR tree-optimization/35821
7653         * tree-vect-transform.c (vect_create_data_ref_ptr): Add check that
7654         NEW_STMT_LIST is not NULL.
7655
7656 2008-04-09  David Edelsohn  <edelsohn@gnu.org>
7657
7658         PR libstdc++/35597
7659         * toplev.c (process_options): Remove -ffunction-sections debugging
7660         warning.
7661
7662 2008-04-09  Peter Bergner  <bergner@vnet.ibm.com>
7663
7664         PR middle-end/PR28690
7665         * explow.c (break_out_memory_refs): Use simplify_gen_binary rather
7666         than gen_rtx_fmt_ee to perform more canonicalizations.
7667
7668 2008-04-08  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
7669
7670         PR driver/35665
7671         * collect2.c (write_c_file): Don't wrap in "#ifdef __cplusplus".
7672
7673 2008-04-09  Richard Guenther  <rguenther@suse.de>
7674
7675         * tree-cfg.c (verify_stmt): Print complete bogus stmt.
7676         (dump_function_to_file): Dump function arguments with types.
7677
7678 2008-04-08  Richard Guenther  <rguenther@suse.de>
7679
7680         * fold-const.c (fold_widened_comparison): Do not allow
7681         sign-changes that change the result.
7682
7683 2008-04-08  Janis Johnson  <janis187@us.ibm.com>
7684
7685         PR target/35839
7686         * config/rs6000/rs6000.c (rs6000_check_sdmode): Handle additional
7687         kinds of indirect references.
7688
7689 2008-04-08  David Edelsohn  <edelsohn@gnu.org>
7690
7691         * config/rs6000/rs6000.c (rs6000_output_function_epilogue): Update
7692         GNU Fortran language string.
7693
7694 2008-04-08  Rafael Espindola  <espindola@google.com>
7695
7696         * fold-canst.c (tree_call_nonnegative_warnv_p): New.
7697         (tree_invalid_nonnegative_warnv_p): Use tree_call_nonnegative_warnv_p.
7698         * tree.h (tree_call_nonnegative_warnv_p): New.
7699
7700 2008-04-08  Jan Hubicka  <jh@suse.cz>
7701
7702         * function.c (free_after_compilation): Clear out regno_reg_rtx
7703         pointer.
7704
7705 2008-04-08  Peter Bergner  <bergner@vnet.ibm.com>
7706
7707         Revert
7708         2008-04-07  Peter Bergner  <bergner@vnet.ibm.com>
7709
7710         PR middle-end/PR28690
7711         * rtlanal.c: (commutative_operand_precedence): Give SYMBOL_REF's the
7712         same precedence as REG_POINTER and MEM_POINTER operands.
7713
7714 2008-04-08  Richard Guenther  <rguenther@suse.de>
7715
7716         PR middle-end/35834
7717         * tree-ssa-address.c (create_mem_ref): Use POINTER_PLUS_EXPR
7718         for adding index to base.
7719
7720 2008-04-08  Kai Tietz  <kai.tietz@onevision.com>
7721
7722         * config/i386/mingw32.h (ENABLE_EXECUTE_STACK): New.
7723         (MINGW_ENABLE_EXECUTE_STACK): New.
7724         (IN_LIBGCC2): For libgcc include windows.h file for
7725         function declarations.
7726
7727 2008-04-08  Hans-Peter Nilsson  <hp@axis.com>
7728
7729         * config/cris/cris.c (cris_address_cost): For a PLUS, swap tem1
7730         and tem2 if tem1 is not a REG or MULT.
7731
7732 2008-04-08  Jan Hubicka  <jh@suse.cz>
7733
7734         * function.h (incomming_args): Break out of struct function.
7735         (function_subsections): Break out of struct function.
7736         (rtl_data): Add args, subsections fields. Break out outgoing_args_size,
7737         return_rtx and hard_reg_initial_vals from struct function.
7738         Kill inl_max_label_num.
7739         (current_function_pops_args, current_function_args_info,
7740         current_function_args_size, current_function_args_size,
7741         current_function_pretend_args_size,
7742         current_function_outgoing_args_size,
7743         current_function_internal_arg_pointer, current_function_return_rtx):
7744         Kill compatibility accestor macros.
7745         * builtins.c (expand_builtin_apply_args_1): Update.
7746         (expand_builtin_next_arg): Update.
7747         * df-scan.c (df_get_call_refs): Update.
7748         * dbxout.c (dbxout_function_end): Update.
7749         * dwarf2out.c (dwarf2out_switch_text_section): Update.
7750         (output_line_info): Update.
7751         (secname_for_decl): Update.
7752         (dwarf2out_var_location): Update.
7753         * function.c (free_after_compilation): Update.
7754         (assign_parm_find_stack_rtl): Update.
7755         (assign_parms): Update.
7756         (expand_dummy_function_end): Update.
7757         (expand_function_end): Update.
7758         * calls.c (mem_overlaps_already_clobbered_arg_p): Update.
7759         (expand_call): Update.
7760         (emit_library_call_value_1): Update.
7761         (store_one_arg): Update.
7762         * varasm.c (initialize_cold_section_name): Update.
7763         (unlikely_text_section): Update.
7764         (unlikely_text_section_p): Update.
7765         (assemble_start_function): Update.
7766         (assemble_end_function): Update.
7767         (default_section_type_flags): Update.
7768         (switch_to_section): Update.
7769         * integrate.c (set_decl_abstract_flags): Update.
7770         (get_hard_reg_initial_val): Update.
7771         (has_hard_reg_initial_val): Update.
7772         (allocate_initial_values): Update.
7773         * resource.c (init_resource_info): Update.
7774         * config/alpha/alpha.c (NUM_ARGS): Update.
7775         (direct_return): Update.
7776         (alpha_va_start): Update.
7777         (alpha_sa_size): Update.
7778         (alpha_initial_elimination_offset): Update.
7779         (alpha_expand_prologue): Update.
7780         (alpha_start_function): Update.
7781         (alpha_expand_epilogue): Update.
7782         (unicosmk_initial_elimination_offset):
7783         * config/alpha/alpha.md (call expander): Update.
7784         * config/s390/s390.c (s390_register_info): Update.
7785         (s390_register_info): Update.
7786         (s390_frame_info): Update.
7787         (s390_initial_elimination_offset): Update.
7788         (s390_build_builtin_va_list): Update.
7789         (s390_va_start): Update.
7790         * config/spu/spu.c (direct_return): Update.
7791         (spu_expand_prologue): Update.
7792         (spu_initial_elimination_offset): Update.
7793         (spu_build_builtin_va_list): Update.
7794         (spu_va_start): Update.
7795         * config/sparc/sparc.c (sparc_init_modes): Update.
7796         (sparc_compute_frame_size): Update.
7797         (function_value): Update.
7798         * config/m32r/m32r.c (m32r_compute_frame_size): Update.
7799         * config/i386/i386.md (return expander): Update.
7800         * config/i386/i386.c (ix86_va_start): Update.
7801         (ix86_can_use_return_insn_p): Update.
7802         (ix86_compute_frame_layout): Update.
7803         (ix86_expand_epilogue): Update.
7804         * config/sh/sh.c (output_stack_adjust): Update.
7805         (calc_live_regs): Update.
7806         (sh_expand_prologue): Update.
7807         (sh_builtin_saveregs): Update.
7808         (sh_va_start): Update.
7809         (initial_elimination_offset): Update.
7810         (sh_allocate_initial_value): Update.
7811         (sh_function_ok_for_sibcall): Update.
7812         (sh_get_pr_initial_val): Update.
7813         * config/sh/sh.md (return expander): Update.
7814         * config/avr/avr.c (frame_pointer_required_p): UPdate.
7815         * config/crx/crx.c (crx_compute_frame): UPdate.
7816         (crx_initial_elimination_offset): UPdate.
7817         * config/xtensa/xtensa.c (compute_frame_size): Update
7818         (xtensa_builtin_saveregs): Update.
7819         (xtensa_va_start): Update.
7820         (order_regs_for_local_alloc): Update.
7821         * config/stormy16/stormy16.c (xstormy16_compute_stack_layout): Update.
7822         (xstormy16_expand_builtin_va_start): Update.
7823         * config/fr30/fr30.c (fr30_compute_frame_size): Update.
7824         * config/m68hc11/m68hc11.md (return expanders): Update.
7825         * config/m68hc11/m68hc11.c (expand_prologue): Update.
7826         (expand_epilogue): Update.
7827         * config/cris/cris.c (cris_initial_frame_pointer_offset): Update.
7828         (cris_simple_epilogue): Update.
7829         (cris_expand_prologue): Update.
7830         (cris_expand_epilogue): Update.
7831         * config/iq2000/iq2000.c (iq2000_va_start): Update.
7832         (compute_frame_size): Update.
7833         * config/mt/mt.c (mt_compute_frame_size): Update.
7834         * config/mn10300/mn10300.c (expand_prologue): Update.
7835         (expand_epilogue): Update.
7836         (initial_offset): Update.
7837         (mn10300_builtin_saveregs):
7838         * config/mn10300/mn10300.md (return expander): Update.
7839         * config/ia64/ia64.c (ia64_compute_frame_size): Update.
7840         (ia64_initial_elimination_offset): Update.
7841         (ia64_initial_elimination_offset): Update.
7842         (ia64_expand_prologue): Update.
7843         * config/m68k/m68k.md (return expander): Update.
7844         * config/rs6000/rs6000.c (rs6000_va_start): Update.
7845         (rs6000_stack_info): Update.
7846         * config/mcore/mcore.c (layout_mcore_frame): Update.
7847         (mcore_expand_prolog): Update.
7848         * config/arc/arc.c (arc_compute_frame_size): Update.
7849         * config/score/score3.c (score3_compute_frame_size): Update.
7850         * config/score/score7.c (score7_compute_frame_size): Update.
7851         * config/arm/arm.c (use_return_insn): Update.
7852         (thumb_find_work_register): Update.
7853         (arm_compute_save_reg_mask): Update.
7854         (arm_output_function_prologue): Update.
7855         (arm_output_epilogue): Update.
7856         (arm_size_return_regs): Update.
7857         (arm_get_frame_offsets): Update.
7858         (arm_expand_prologue): Update.
7859         (thumb_exit): Update.
7860         (thumb_unexpanded_epilogue): Update.
7861         (thumb1_output_function_prologue): Update.
7862         * config/pa/pa.md (return expander): Update.
7863         * config/pa/pa.c (compute_frame_size): Update.
7864         (hppa_builtin_saveregs): Update.
7865         * config/mips/mips.c (mips_va_start): Update.
7866         (mips16_build_function_stub): Update.
7867         (mips_compute_frame_info): Update.
7868         (mips_restore_gp): Update.
7869         (mips_output_function_prologue): Update.
7870         (mips_expand_prologue): Update.
7871         * config/v850/v850.c (compute_frame_size): Update.
7872         (expand_prologue): * config/mmix/mmix.c (along): update.
7873         (mmix_initial_elimination_offset): update.
7874         (mmix_reorg): update.
7875         (mmix_use_simple_return): update.
7876         (mmix_expand_prologue): update.
7877         (mmix_expand_epilogue): Update.
7878         * config/bfin/bfin.c (bfin_initial_elimination_offset): Update.
7879         (emit_link_insn): Update.
7880
7881 2008-04-08  Anatoly Sokolov <aesok@post.ru>
7882
7883         * config/avr/avr.h (TARGET_CPU_CPP_BUILTINS): Define 
7884         __AVR_HAVE_EIJMP_EICALL__ macro if device have EIJMP and EICALL 
7885         instructions.
7886         * config/avr/avr.c (avr_mcu_types): Set AVR31 architecture for 
7887         atmega103 device.
7888
7889 2008-04-07  Jan Hubicka  <jh@suse.cz>
7890
7891         * function.h (rtl): Rename to x_rtl.
7892         (crtl): New define.
7893         (return_label, naked_return_label, stack_slot_list, parm_birth_insn,
7894         frame_offset, stack_check_probe_note, arg_pointer_save_area,
7895         used_temp_slots avail_temp_slots, temp_slot_level,
7896         nonlocal_goto_handler_labels): Update accesstors.
7897         (rtl): New global variable.
7898         (struct function): Move some fileds to rtl_data.
7899         (get_arg_pointer_save_area): Update prototype.
7900         * builtins.c (expand_builtin_setjmp_receiver): Update call of
7901         get_arg_pointer_save_area.
7902         * expr.c (init_expr): Update
7903         * function.c (get_frame_size): Update
7904         (assign_stack_local): Update
7905         (expand_function_end): Update.
7906         (get_art_pointer_save_area): Update
7907         * function.h 
7908         * emit-rtl.c (rtl): Declare.
7909         (regno_reg_rtx): Declare.
7910         (first_insn, last_insn, cur_insn_uid, last_location, first_label_num):
7911         Update.
7912         (gen_reg_rtx): Update.
7913         * varasm.c (n_deferred_constatns): Update accestor.
7914         (init_varasm_status): Do not allocate varasm_status.
7915         (force_const_mem, get_pool_size, output_constant_pool): Update.
7916         * stmt.c (force_label_rtx): Do not use x_ prefixes.
7917         (expand_nl_goto_receiver): Update get_arg_pointer_save_area.
7918         * m32c/m32.c (m32c_leaf_function_p, m32c_function_needs_enter): Update.
7919         * sparc/sparc.h (INIT_EXPANDERS): Update.
7920         * ia64/ia64.h (INIT_EXPANDERS): Update.
7921
7922 2008-04-07  James E. Wilson  <wilson@tuliptree.org>
7923
7924         * reload.c (push_secondary_reload): Add missing break to for loop.
7925
7926 2008-04-07  Peter Bergner  <bergner@vnet.ibm.com>
7927
7928         PR middle-end/PR28690
7929         * rtlanal.c: Update copyright years.
7930         (commutative_operand_precedence): Give SYMBOL_REF's the same precedence
7931         as REG_POINTER and MEM_POINTER operands.
7932         * emit-rtl.c (gen_reg_rtx_and_attrs): New function.
7933         (set_reg_attrs_from_value): Call mark_reg_pointer as appropriate.
7934         * rtl.h (gen_reg_rtx_and_attrs): Add prototype for new function.
7935         * gcse.c: Update copyright years.
7936         (pre_delete): Call gen_reg_rtx_and_attrs.
7937         (hoist_code): Likewise.
7938         (build_store_vectors): Likewise.
7939         (delete_store): Likewise.
7940         * loop-invariant.c (move_invariant_reg): Likewise.
7941         Update copyright years.
7942
7943 2008-04-07  Uros Bizjak  <ubizjak@gmail.com>
7944
7945         * config/i386/i386.md ("*sse_prologue_save_insn"): Use braced output
7946         control string instead of quoted.
7947
7948 2008-04-07  Kenneth Zadeck  <zadeck@naturalbridge.com>
7949
7950         * doc/rtl.texi: Rewrite of subreg section.
7951
7952 2008-04-07  Kai Tietz  <kai.tietz@onevision.com>
7953
7954         PR/35842
7955         * config/i386/i386.c (legitimize_pic_address): Add treating
7956         of dllimport SYM_REF's.
7957         (legitimize_dllimport_symbol): Add prototype.
7958
7959 2008-04-07  Eric Botcazou  <ebotcazou@adacore.com>
7960
7961         * fold-const.c (fold) <ARRAY_REF>: New case.  Try to fold constant
7962         reference in constructor with non self-referential type.
7963
7964 2008-04-07  Eric Botcazou  <ebotcazou@adacore.com>
7965
7966         Removal of Return with Depressed Stack Pointer support
7967         * tree.h (TYPE_RETURNS_STACK_DEPRESSED): Delete.
7968         (ECF_SP_DEPRESSED): Likewise.
7969         (ECF_LIBCALL_BLOCK, ECF_NOVOPS): Adjust.
7970         * calls.c (emit_call_1): Do not test ECF_SP_DEPRESSED.
7971         (flags_from_decl_or_type): Do not test TYPE_RETURNS_STACK_DEPRESSED.
7972         (expand_call): Do not test ECF_SP_DEPRESSED.
7973         * dse.c (dse_step0): Do not test TYPE_RETURNS_STACK_DEPRESSED.
7974         * function.c (keep_stack_depressed): Delete.
7975         (handle_epilogue_set): Likewise.
7976         (update_epilogue_consts): Likewise.
7977         (emit_equiv_load): Likewise.
7978         (thread_prologue_and_epilogue_insns): Remove support for Return with
7979         Depressed Stack Pointer.
7980         * print-tree.c (print_node): Do not test TYPE_RETURNS_STACK_DEPRESSED.
7981
7982 2008-04-06  Richard Guenther  <rguenther@suse.de>
7983
7984         PR tree-optimization/35400
7985         * tree-vrp.c (vrp_evaluate_conditional): Only query value-range
7986         information from SSA_NAMEs.
7987
7988 2008-04-06  Anatoly Sokolov <aesok@post.ru>
7989
7990         * config/avr/avr.h (avr_mega_p): Remove declaration.
7991         (AVR_MEGA): Remove macro.
7992         * config/avr/avr.c (avr_mega_p): Remove variable.
7993         (avr_override_options): Remove inicializion of avr_mega_p.
7994         Use AVR_HAVE_JMP_CALL instead of AVR_MEGA.
7995         (print_operand): Use AVR_HAVE_JMP_CALL instead of AVR_MEGA.
7996         (avr_jump_mode): (Ditto.).
7997         (avr_output_progmem_section_asm_op): (Ditto.).
7998         (avr_asm_init_sections): (Ditto.).
7999         (avr_asm_init_sections): (Ditto.).
8000         (avr_rtx_costs): (Ditto.).
8001         * config/avr/avr.md: (Ditto.).
8002         * config/avr/avr.h: Use '__AVR_HAVE_JMP_CALL__' instead of 
8003         '__AVR_MEGA__'.
8004
8005 2008-04-06  Richard Guenther  <rguenther@suse.de>
8006
8007         PR tree-optimization/35842
8008         * tree-ssa-address.c (fixed_address_object_p): Adjust to match
8009         is_gimple_invariant_address.
8010
8011 2008-04-06  Francois-Xavier Coudert  <fxcoudert@gcc.gnu.org>
8012
8013         * gcc.c (default_compilers): Sync Fortran extensions list with
8014         that in fortran/lang-specs.h.
8015         * doc/invoke.texi: Likewise.
8016         * dbxout.c (get_lang_number): Use "GNU Fortran" in "GNU F95".
8017         * dwarf2out.c (gen_compile_unit_die): Likewise.
8018
8019 2008-04-06  Tom G. Christensen  <tgc@jupiterrise.com>
8020
8021         * gthr-posix95.h (__gthread_cond_wait_recursive): Add missing &.
8022
8023 2008-04-05  Uros Bizjak  <ubizjak@gmail.com>
8024
8025         PR target/12329
8026         * config/i386/i386.c (ix86_function_regparm): Error if regparm(3)
8027         attribute is used for nested functions.
8028
8029 2008-04-05  Jan Hubicka  <jh@suse.cz>
8030
8031         * emit-rtl.c (init_emit): xcalloc regno_pointer_align.
8032
8033         * tree-dump.c (dump_enable_all): Remove prototype; do not accept
8034         letter argument.
8035         (dump_files): Update.
8036         (enable_rtl_dump_file): Do not accept letter argument.
8037         * tree-pass.h (dump_file_info): Remove letter argument.
8038         * toplev.c (decode_d_option): Update -da handling.
8039         * toplev.h (enable_rtl_dump_file): Update prototype.
8040         * passes.c (register_one_dump_file): Do not accept IPA argument; work
8041         it out based on pass type.
8042         (register_dump_files_1): Likewise.
8043         (init_optimization_passes): Update register_one_dump_file calls.
8044         (execute_one_pass): Sanity check that IPA passes are called at IPA
8045         level and RTL passes at RTL level.
8046         (execute_pass_list): IPA pass can not be after or subpass of
8047         GIMPLE/RTL pass.
8048         (execute_ipa_pass_list): Handle IPA subpasses of IPA subpasses and
8049         disallov RTL subpasses of IPA subpasses.
8050
8051 2008-04-05  Ben Elliston  <bje@au.ibm.com>
8052
8053         * tree-cfg.c (need_fake_edge_p): Return false for calls to
8054         builtins that return exactly once and do not throw. Cache call to
8055         call_expr_flags.
8056
8057 2008-04-04 Andy Hutchinson <hutchinsonandy@aim.com>
8058
8059         PR rtl-optimization/34916
8060         PR middle-end/35519
8061         * combine.c (create_log_links): Do not create duplicate LOG_LINKS
8062         between instruction pairs.
8063
8064 2008-04-04  Naveen.H.S  <naveen.hs@kpitcummins.com>
8065
8066         * doc/invoke.texi: Document -mbitops for SH.
8067         * config/sh/constraints.md (K03, K12, Sbv, Sbw): New constraints.
8068         * config/sh/predicates.md (bitwise_memory_operand): New predicate.
8069         * config/sh/sh.c (print_operand): Add %t operand code.
8070         * config/sh/sh.h (GO_IF_LEGITIMATE_INDEX): Add condition for SH2A.
8071         * config/sh/sh.md (*iorsi3_compact): Fix condition for SH2A.
8072         (extendqisi2_compact): Add the alternative for SH2A 4-byte mov.b.
8073         (extendqihi2): Likewise.
8074         (movqi_i): Likewise.
8075         (insv): Use bset, bclr and bst instructions for SH2A if possible.
8076         (extv): Use bld instruction for SH2A if possible.
8077         (extzv): Likewise.
8078         (bclr_m2a, bclrmem_m2a, bset_m2a, bsetmem_m2a, bst_m2a, bld_m2a,
8079         bldsign_m2a, bld_reg, *bld_regqi, band_m2a, bandreg_m2a,
8080         bor_m2a, borreg_m2a, bxor_m2a, bxorreg_m2a): New insns.
8081         (bset.b, bclr.b): Define peepholes.
8082         * config/sh/sh.opt (mbitops): New option.
8083
8084 2008-04-04  Janis Johnson  <janis187@us.ibm.com>
8085
8086         PR target/35620
8087         * config/rs6000/rs6000.c (rs6000_check_sdmode): Handle indirect ref
8088         and view convert expression.
8089
8090 2008-04-04  Jakub Jelinek  <jakub@redhat.com>
8091
8092         PR target/35364
8093         * tree-cfg.c (remove_useless_stmts_1): Handle OMP_* containers.
8094
8095 2008-04-04  H.J. Lu  <hongjiu.lu@intel.com>
8096
8097         * config.gcc (extra_headers): Add wmmintrin.h for x86 and x86-64.
8098
8099         * config/i386/cpuid.h (bit_AES): New.
8100         (bit_PCLMUL): Likewise.
8101
8102         * config/i386/i386.c (pta_flags): Add PTA_AES and PTA_PCLMUL.
8103         (override_options): Handle PTA_AES and PTA_PCLMUL.  Enable
8104         SSE2 if AES or PCLMUL is enabled.
8105         (ix86_builtins): Add IX86_BUILTIN_AESENC128,
8106         IX86_BUILTIN_AESENCLAST128, IX86_BUILTIN_AESDEC128,
8107         IX86_BUILTIN_AESDECLAST128, IX86_BUILTIN_AESIMC128,
8108         IX86_BUILTIN_AESKEYGENASSIST128 and IX86_BUILTIN_PCLMULQDQ128.
8109         (bdesc_sse_3arg): Add IX86_BUILTIN_PCLMULQDQ128.
8110         (bdesc_2arg): Add IX86_BUILTIN_AESENC128,
8111         IX86_BUILTIN_AESENCLAST128, IX86_BUILTIN_AESDEC128,
8112         IX86_BUILTIN_AESDECLAST128 and IX86_BUILTIN_AESKEYGENASSIST128.
8113         (bdesc_1arg): Add IX86_BUILTIN_AESIMC128.
8114         (ix86_init_mmx_sse_builtins): Define __builtin_ia32_aesenc128,
8115         __builtin_ia32_aesenclast128, __builtin_ia32_aesdec128,
8116         __builtin_ia32_aesdeclast128,__builtin_ia32_aesimc128,
8117         __builtin_ia32_aeskeygenassist128 and
8118         __builtin_ia32_pclmulqdq128.
8119         * config/i386/i386.c (ix86_expand_binop_imm_builtin): New.
8120         (ix86_expand_builtin): Use it for IX86_BUILTIN_PSLLDQI128 and
8121         IX86_BUILTIN_PSRLDQI128.  Handle IX86_BUILTIN_AESKEYGENASSIST128.
8122
8123         * config/i386/i386.h (TARGET_AES): New.
8124         (TARGET_PCLMUL): Likewise.
8125         (TARGET_CPU_CPP_BUILTINS): Handle TARGET_AES and TARGET_PCLMUL.
8126
8127         * config/i386/i386.md (UNSPEC_AESENC): New.
8128         (UNSPEC_AESENCLAST): Likewise.
8129         (UNSPEC_AESDEC): Likewise.
8130         (UNSPEC_AESDECLAST): Likewise.
8131         (UNSPEC_AESIMC): Likewise.
8132         (UNSPEC_AESKEYGENASSIST): Likewise.
8133         (UNSPEC_PCLMUL): Likewise.
8134
8135         * config/i386/i386.opt (maes): New.
8136         (mpclmul): Likewise.
8137
8138         * config/i386/sse.md (aesenc): New pattern.
8139         (aesenclast): Likewise.
8140         (aesdec): Likewise.
8141         (aesdeclast): Likewise.
8142         (aesimc): Likewise.
8143         (aeskeygenassist): Likewise.
8144         (pclmulqdq): Likewise.
8145
8146         * config/i386/wmmintrin.h: New.
8147
8148         * doc/extend.texi: Document AES and PCLMUL built-in function.
8149
8150         * doc/invoke.texi: Document -maes and -mpclmul.
8151
8152 2008-04-04  Paolo Bonzini  <bonzini@gnu.org>
8153
8154         * function.c (free_after_parsing): Replace with
8155         cxx_push_function_context from C++ front-end.
8156         (allocate_struct_function): Don't call langhook.
8157         * langhooks.h (struct lang_hooks_for_functions): Delete.
8158         (struct lang_hooks): Add back missing_noreturn_ok_p here, delete
8159         member "function".
8160         * langhooks-def.h (LANG_HOOKS_MISSING_NORETURN_OK_P): Add.
8161         (LANG_HOOKS_FUNCTION_INIT, LANG_HOOKS_FUNCTION_FINAL,
8162         LANG_HOOKS_FUNCTION_MISSING_NORETURN_OK_P,
8163         LANG_HOOKS_FUNCTION_INITIALIZER): Delete.
8164         (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_MISSING_NORETURN_OK_P,
8165         remove LANG_HOOKS_FUNCTION_INITIALIZER.
8166         * tree-cfg.c: Adjust call to missing_noreturn_ok_p langhook.
8167
8168         * c-objc-common.h (LANG_HOOKS_FUNCTION_MISSING_NORETURN_OK_P):
8169         Rename to LANG_HOOKS_MISSING_NORETURN_OK_P.
8170         
8171 2008-04-04  Jakub Jelinek  <jakub@redhat.com>
8172
8173         PR c/35440
8174         * c-pretty-print.c (pp_c_initializer_list): Handle CONSTRUCTOR
8175         for all types.
8176
8177 2008-04-04  Richard Guenther  <rguenther@suse.de>
8178
8179         PR middle-end/35823
8180         * fold-const.c (optimize_minmax_comparison): Use the correct
8181         type for the constant in the simplified comparison.
8182
8183 2008-04-04  Zuxy Meng <zuxy.meng@gmail.com>
8184
8185         * config/i386/driver-i386.c (describe_cache): Add l2_sizekb argument.
8186         Pass L2 size as "--param l2-cache-size" to the compiler.
8187         (decode_l2_cache): New function to decode L2 cache parameters using
8188         0x8000006 extended cpuid function.
8189         (detect_caches_amd): Determine parameters of L2 cache using
8190         decode_l2_caches function.
8191         (decode_caches_intel): Decode L2 cache parameters.
8192         (detect_caches_intel): Determine L2 cache parameters using
8193         decode_caches_intel and decode_l2_caches functions.
8194
8195 2008-04-03  Bob Wilson  <bob.wilson@acm.org>
8196
8197         * config/xtensa/xtensa.c (xtensa_secondary_reload_class): Use a
8198         secondary input reload for subword loads from the constant pool.
8199
8200 2008-04-03  Janis Johnson  <janis187@us.ibm.com>
8201
8202         PR target/35713
8203         * config/rs6000/rs6000.c (rs6000_gimplify_va_arg): Use integer
8204           constants of the appropriate size for runtime calculations.
8205
8206         PR c/35712
8207         * dfp.c (decimal_from_decnumber): Retain trailing zeroes for
8208           decimal-float literal constant zero.
8209
8210 2008-04-03  Jakub Jelinek  <jakub@redhat.com>
8211
8212         PR c/35738
8213         * c-parser.c (c_parser_omp_atomic): Call
8214         default_function_array_conversion on the RHS.
8215
8216         PR middle-end/35818
8217         * omp-low.c (scan_sharing_clauses) <case OMP_CLAUSE_SHARED>: Don't
8218         call is_variable_sized if decl has incomplete type.
8219
8220 2008-04-03  H.J. Lu  <hongjiu.lu@intel.com>
8221
8222         * config/i386/i386-protos.h (ix86_aligned_p): Removed.
8223
8224 2008-04-03  Adam Nemet  <anemet@caviumnetworks.com>
8225
8226         * config/mips/mips.md (any_gt, any_ge, any_lt, any_le): New code
8227         iterators.
8228         (u): Add attribute values for gt, gtu, ge, geu, lt, ltu, le and leu.
8229         (sgt<u>): Merge sgt and sgtu into new expander.
8230         (sgt, sgtu): Remove expanders.
8231         (*sgt<u>_<mode>): Merge *sgt_<mode> and *sgtu_<mode> into new pattern.
8232         (*sgt_<mode>, *sgtu_<mode>): Remove patterns.
8233         (*sgt<u>_<mode>_mips16): Merge *sgt_<mode>_mips16 and
8234         *sgtu_<mode>_mips16 into new pattern.
8235         (*sgt_<mode>_mips16, *sgtu_<mode>_mips16): Remove patterns.
8236         (sge<u>): Merge sge and sgeu into new expander.
8237         (sge, sgeu): Remove expanders.
8238         (*sge<u>_<mode>): Merge *sge_<mode> and second *sge_<mode> into
8239         new pattern.
8240         (*sge_<mode>, second *sge_<mode>): Remove patterns.
8241         (slt<u>): Merge slt and sltu into new expander.
8242         (slt, sltu): Remove expanders.
8243         (*slt<u>_<mode>): Merge *slt_<mode> and *sltu_<mode> into new pattern.
8244         (*slt_<mode>, *sltu_<mode>): Remove patterns.
8245         (*slt<u>_<mode>_mips16): Merge *slt_<mode>_mips16 and
8246         *sltu_<mode>_mips16 into new pattern.
8247         (*slt_<mode>_mips16, *sltu_<mode>_mips16): Remove patterns.
8248         (sle<u>): Merge sle and sleu into new expander.
8249         (sle, sleu): Remove expanders.
8250         (*sle<u>_<mode>): Merge *sle_<mode> and *sleu_<mode> into new pattern.
8251         (*sle_<mode>, *sleu_<mode>): Remove patterns.
8252         (*sle<u>_<mode>_mips16): Merge *sle_<mode>_mips16 and
8253         *sleu_<mode>_mips16 into new pattern.
8254         (*sle_<mode>_mips16, *sleu_<mode>_mips16): Remove patterns.
8255
8256 2008-04-03  Jan Hubicka  <jh@suse.cz>
8257
8258         PR tree-optimization/35795
8259         * alpha/alpha.c (alpha_output_mi_thunk_osf): Free after compilation.
8260         * sparc/sparc.c (sparc_output_mi_thunk): Likewise.
8261         * ia64/ia64.c (ia64_output_mi_thunk): Likewise.
8262         * m68k/m68k.c (m68k_output_mi_thunk): Likewise.
8263         * score/score3.c (score3_output_mi_thunk): Likewise.
8264         * score/score7.c (score7_output_mi_thunk): Likewise.
8265         * mips/mips.c (mips_output_mi_thunk): Likewise.
8266
8267 2008-04-03  Richard Guenther  <rguenther@suse.de>
8268
8269         * tree-vrp.c (extract_range_from_unary_expr): Handle all
8270         conversions.  Simplify code.
8271
8272 2008-04-03  Kaz Kojima  <kkojima@gcc.gnu.org>
8273
8274         * config/sh/sh.c (sh_output_mi_thunk): Free cfun.
8275
8276 2008-04-03  Tom Tromey  <tromey@redhat.com>
8277             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8278
8279         * config/m68k/t-uclinux (generated_files): Add sysroot-suffix.h.
8280         * config/bfin/t-bfin-linux (generated_files): Add
8281         linux-sysroot-suffix.h.
8282         * doc/install.texi (Prerequisites): Require make 3.80.
8283         * doc/sourcebuild.texi (Front End Directory): Document new
8284         variable.
8285         * Makefile.in (generated_files): New variable.
8286         (ALL_HOST_OBJS): New variable.
8287         ($(ALL_HOST_OBJS)): New target.
8288
8289 2008-04-03  Paolo Bonzini  <bonzini@gnu.org>
8290
8291         * tree-inline.c (copy_generic_body, copy_decl_no_change): Export.
8292         (remap_block): Call id->transform_lang_insert_block instead
8293         of langhook.
8294         (optimize_inline_calls, unsave_expr_now, tree_function_versioning):
8295         Set id.transform_lang_insert_block to NULL.
8296         (clone_body): Move to cp/optimize.c
8297         * tree-inline.h (struct copy_body_data): Change
8298         transform_lang_insert_block to function pointer.
8299         (copy_generic_body, copy_decl_no_change): Export.
8300         * langhooks.h (struct lang_hooks_for_decls): Kill insert_block.
8301         * langhooks-def.h (LANG_HOOKS_INSERT_BLOCK): Kill.
8302         (LANG_HOOKS_DECLS): Remove LANG_HOOKS_INSERT_BLOCK.
8303
8304         * c-tree.h (insert_block): Kill.
8305         * c-decl.c (insert_block): Kill.
8306
8307 2008-04-03  Paolo Bonzini  <bonzini@gnu.org>
8308
8309         * c-objc-common.h (LANG_HOOKS_FUNCTION_ENTER_NESTED,
8310         LANG_HOOKS_FUNCTION_LEAVE_NESTED): Delete.
8311         * c-tree.h (c_push_function_context, c_pop_function_context): Remove
8312         argument.
8313         * c-decl.c (c_push_function_context, c_pop_function_context): Remove
8314         argument, call {push,pop}_function_context from here.
8315         * c-parser.c: Use c_{push,pop}_function_context.
8316
8317         * function.c (push_function_context_to): Move meat ...
8318         (push_function_context): ... here.  Simplify.
8319         * function.c (pop_function_context_from): Move meat ...
8320         (pop_function_context): ... here.  Simplify.
8321         * langhooks.h (struct lang_hooks_for_functions): Remove enter_nested,
8322         leave_nested).
8323         * langhooks-def.h (LANG_HOOKS_FUNCTION_ENTER_NESTED,
8324         LANG_HOOKS_FUNCTION_LEAVE_NESTED): Delete.
8325         (LANG_HOOKS_FUNCTION_INITIALIZER): Delete them from here.
8326         * tree.h (push_function_context_to, pop_function_context_from): Remove.
8327
8328 2008-04-03  Ben Elliston  <bje@au.ibm.com>
8329
8330         * expmed.c (extract_force_align_mem_bit_field): Remove.
8331
8332 2008-04-03  Richard Guenther  <rguenther@suse.de>
8333
8334         PR middle-end/35800
8335         * expr.h (try_casesi): Adjust prototype.
8336         * expr.c (try_casesi): Take fallback label as extra parameter.
8337         Use that for gen_casesi if default_label is NULL.
8338         * stmt.c (expand_case): Pass fallback label to try_casesi,
8339         make sure to fill gaps with a fallback label if default_label
8340         is not present.
8341
8342 2008-04-03  Dominique d'Humieres <dominiq@lps.ens.fr>
8343
8344         PR target/35801
8345         * config/rs6000/rs6000.c (rs6000_output_mi_thunk): Free cfun.
8346
8347 2008-04-03  Ben Elliston  <bje@au.ibm.com>
8348
8349         * expmed.c (extract_split_bit_field): Remove if (0) code.
8350         * tree-ssa-structalias.c (do_sd_constraint): Likewise.
8351         (do_ds_constraint): Likewise.
8352
8353 2008-04-02  Joseph Myers  <joseph@codesourcery.com>
8354
8355         * doc/cppopts.texi (-dU): Document.
8356         * c-common.h (flag_dump_macros): Update comment.
8357         * c-opts.c (handle_OPT_d): Handle -dU.
8358         * c-ppoutput.c (macro_queue, define_queue, undef_queue,
8359         dump_queued_macros, cb_used_define, cb_used_undef): New.
8360         (init_pp_output): Handle -dU.
8361         (cb_line_change): Call dump_queued_macros.
8362         * toplev.c (decode_d_option): Accept -dU as preprocessor option.
8363
8364 2008-04-02  Anatoly Sokolov <aesok@post.ru>
8365
8366         * config/avr/predicates.md (io_address_operand): New predicate. 
8367         * config/avr/avr-protos.h (avr_io_address_p): Remove declaration.
8368         * config/avr/avr.c (avr_io_address_p): Remove function.
8369         (out_movqi_r_mr): Use 'io_address_operand' predicate instead of 
8370         'avr_io_address_p' function.
8371         (out_movhi_r_mr): (Ditto.).
8372         (out_movqi_mr_r): (Ditto.).
8373         (out_movhi_mr_r): (Ditto.).
8374         (avr_address_cost): (Ditto.).
8375
8376 2008-04-02  Uros Bizjak  <ubizjak@gmail.com>
8377
8378         * config/i386/i386.md (*float<SSEMODEI24:mode><X87MODEF:mode>2_1):
8379         Emit gen_floatdi<X87MODEF:mode>2_i387_with_xmm for DImode values
8380         in 32bit mode when XMM registers are available to avoid store
8381         forwarding stalls.
8382         (floatdi<X87MODEF:mode>2_i387_with_xmm): New insn pattern and
8383         corresponding post-reload splitters.
8384
8385 2008-04-02  H.J. Lu  <hongjiu.lu@intel.com>
8386
8387         * config/i386/i386.c (bdesc_sse_3arg): Add __builtin_ia32_shufps
8388         and __builtin_ia32_shufpd.  Provide __builtin_ia32_roundsd and
8389         __builtin_ia32_roundss.
8390         (ix86_init_mmx_sse_builtins): Remove __builtin_ia32_shufps,
8391         __builtin_ia32_shufpd, __builtin_ia32_roundsd and
8392         __builtin_ia32_roundss.
8393         (ix86_expand_builtin): Don't handle IX86_BUILTIN_SHUFPS and
8394         IX86_BUILTIN_SHUFPD here.
8395
8396 2008-04-02  H.J. Lu  <hongjiu.lu@intel.com>
8397
8398         * config/i386/i386.md (plogic): New.
8399         (plogicprefix): Likewise.
8400
8401         * config/i386/mmx.md (mmx_<code><mode>3): New.
8402         (mmx_and<mode>3): Removed.
8403         (mmx_ior<mode>3): Likewise.
8404         (mmx_xor<mode>3): Likewise.
8405
8406         * config/i386/sse.md (<code><mode>3): New.
8407         (*<code><mode>3): Likewise.
8408         (*<code><mode>3): Likewise.
8409         (<code><mode>3): Likewise.
8410         (*sse_<code><mode>3): Likewise.
8411         (*sse2_<code><mode>3): Likewise.
8412         (<code>tf3): Likewise.
8413         (*<code>tf3): Likewise.
8414         (and<mode>3): Likewise.
8415         (*and<mode>3): Likewise.
8416         (ior<mode>3): Removed.
8417         (*ior<mode>3): Likewise.
8418         (xor<mode>3): Likewise.
8419         (*xor<mode>3): Likewise.
8420         (*and<mode>3): Likewise.
8421         (*ior<mode>3): Likewise.
8422         (*xor<mode>3): Likewise.
8423         (and<mode>3): Likewise.
8424         (*sse_and<mode>3): Likewise.
8425         (*sse2_and<mode>3): Likewise.
8426         (andtf3): Likewise.
8427         (*andtf3): Likewise.
8428         (ior<mode>3): Likewise.
8429         (*sse_ior<mode>3): Likewise.
8430         (*sse2_ior<mode>3): Likewise.
8431         (iortf3): Likewise.
8432         (*iortf3): Likewise.
8433         (xor<mode>3): Likewise.
8434         (*sse_xor<mode>3): Likewise.
8435         (*sse2_xor<mode>3): Likewise.
8436         (xortf3): Likewise.
8437         (*xortf3): Likewise.
8438
8439 2008-04-02  Richard Guenther  <rguenther@suse.de>
8440
8441         PR tree-optimization/14495
8442         PR tree-optimization/34793
8443         * tree-vrp.c (struct switch_update): New structure.
8444         (to_remove_edges, to_update_switch_stmts): New VECs.
8445         (simplify_switch_using_ranges): New function.  Remove not taken
8446         case labels and edges.
8447         (simplify_stmt_using_ranges): Call it.
8448         (identify_jump_threads): Mark edges we have queued for removal
8449         so we don't thread them.
8450         (execute_vrp): Remove edges queued for removal, update SWITCH_STMT
8451         case label vector.
8452         * tree-cfg.c (group_case_labels): Deal with missing default label.
8453         (tree_verify_flow_info): Allow missing default label.
8454         * stmt.c (emit_case_bit_tests): Deal with NULL default_label.
8455         (emit_case_nodes): Likewise.
8456         (expand_case): Do not rely on the default label to be present.
8457         * expr.c (try_casesi): Deal with NULL default_label.
8458         (do_tablejump): Likewise.
8459
8460 2008-04-02  Richard Guenther  <rguenther@suse.de>
8461
8462         PR tree-optimization/14495
8463         * tree-vrp.c (vrp_visit_cond_stmt): Do not handle
8464         SWITCH_EXPR here ...
8465         (vrp_visit_switch_stmt): ... but here (new function).
8466         (find_case_label_index): New helper function.
8467         (vrp_visit_stmt): Dispatch to vrp_visit_switch_stmt.
8468
8469 2008-04-02  Paolo Bonzini  <bonzini@gnu.org>
8470
8471         * fwprop.c: Fix ISO-C99ism.
8472
8473 2008-04-02  Paolo Bonzini  <bonzini@gnu.org>
8474
8475         PR bootstrap/35752
8476         * Makefile.in (objdir): Set it here.
8477         * configure.ac: Not here.  Find dynamic linker characteristics.
8478         * exec-tool.in: Use them.
8479         * aclocal.m4: Regenerate.
8480         * configure: Regenerate.
8481
8482 2008-04-02  Paolo Bonzini  <bonzini@gnu.org>
8483
8484         * expr.c (expand_var): Delete it.
8485         * expr.h (expand_var): Delete prototype.
8486         * function.c (expand_function_start): Use expand_decl instead.
8487         * cfgexpand.c (expand_one_static_var, expand_one_var): Don't call
8488         langhook.
8489
8490 2008-04-02  Andy Hutchinson <hutchinsonamdy@aim.com>
8491
8492         PR rtl-optimization/35542
8493         * fwprop.c (forward_propagate_and_simplify): Replace
8494         loc_reg_mentioned_in_p with reg_mentioned_p.
8495
8496 2008-04-02  Paolo Bonzini  <bonzini@gnu.org>
8497
8498         PR rtl-optimization/35281
8499         * fwprop.c (PR_CAN_APPEAR, PR_HANDLE_MEM): New.
8500         (propagate_rtx_1): Handle PR_HANDLE_MEM.
8501         (propagate_rtx): Pass PR_HANDLE_MEM if appropriate.
8502         (varying_mem_p): Move above propagate_rtx.
8503         (all_uses_available_at): Do not check MEMs.
8504
8505 2008-04-02  Rafael Espindola  <espindola@google.com>
8506
8507         * tree-vrp.c (extract_code_and_val_from_cond): Remove.
8508         (register_edge_assert_for_2): Split the cond argument.
8509         (register_edge_assert_for_1): Adjust for the change in
8510         register_edge_assert_for_2.
8511         (register_edge_assert_for): Split the cond argument.
8512         (find_switch_asserts): Adjust for the change in
8513         register_edge_assert_for.
8514
8515 2008-04-02  Kai Tietz  <kai.tietz@onevision.com>
8516
8517         * config.gcc: Add for x86_64-*-mingw* the t-crtfm to tbuild.
8518         * config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Add 8 byte
8519         offsets for 64-bit mingw.
8520         * config/i386/i386.c (ix86_pass_by_reference): Correct calling
8521         abi for x86_64-pc-mingw.
8522
8523 2008-04-02  Richard Guenther  <rguenther@suse.de>
8524
8525         * tree-vrp.c (extract_range_from_assert): Make sure to not
8526         produce range min/max with TREE_OVERFOW set.
8527         If merging a anti-range and a range keep the anti-range if
8528         the range covers all values of the type.
8529         (register_edge_assert_for_2): Only allow sign-changing
8530         conversions in detecting canonical range checks.  Also
8531         register an assert for the unsigned name if useful.
8532
8533         PR tree-optimization/35787
8534         * tree-vrp.c (vrp_val_max): New function.
8535         (vrp_val_min): Likewise.
8536         (vrp_val_is_max): Move earlier, use vrp_val_{min,max}.
8537         (vrp_val_is_min): Likewise.
8538         (supports_overflow_infinity): Use vrp_val_{min,max}.
8539         (negative_overflow_infinity): Likewise.
8540         (positive_overflow_infinity): Likewise.
8541         (is_negative_overflow_infinity): Use vrp_val_is_{min,max}.
8542         (is_positive_overflow_infinity): Likewise.
8543         (is_overflow_infinity): Likewise.
8544         (avoid_overflow_infinity): Use vrp_val_{min,max} and
8545         vrp_val_is_{min,max}.
8546         (set_and_canonicalize_value_range): Canonicalize anti-ranges
8547         to ranges if possible.  Avoid empty ranges.
8548
8549 2008-04-01  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
8550
8551         PR middle-end/35705
8552         * fold-const.c (get_pointer_modulus_and_residue): Return modulus 1 if
8553         the expression is a function address.
8554
8555 2008-04-01  George Helffrich  <george@gcc.gnu.org>
8556
8557         PR fortran/35154, fortran/23057
8558         * dbxout.c: Emit .stabs debug info for Fortran COMMON block
8559         variables as base symbol name + offset using N_BCOMM/N_ECOMM.
8560         (is_fortran, dbxout_common_name, dbxout_common_check): New functions.
8561         (dbxout_symbol_location): Transform N_LCSYM to N_GSYM for storage
8562         in common.
8563         (dbxout_syms): Check for COMMON-based symbol and wrap in
8564         N_BCOMM/N_ECOMM stab bracket, including as many symbols as possible
8565         in bracket for efficiency.
8566
8567         * dwarf2out.c: Emit DWARF debug info for Fortran COMMON block
8568         using DW_TAG_common_block + member offset.
8569         (add_pubname_string): New function.
8570         (dw_expand_expr): New function to find block name and offset for
8571         COMMON var.
8572         (common_check): New function to check whether symbol in Fortran COMMON.
8573         (gen_variable_die): If COMMON, use DW_TAG_common_block.
8574
8575 2008-04-01  Volker Reichelt  <v.reichelt@netcologne.de>
8576
8577         PR c/35436
8578         * c-format.c (init_dynamic_gfc_info): Ignore invalid locus type.
8579
8580 2008-04-02  Ben Elliston  <bje@au.ibm.com>
8581
8582         * config/v850/v850.md (casesi): Remove if (0) code.
8583         * config/i386/uwin.h (ASM_DECLARE_FUNCTION_NAME): Likewise.
8584         * config/alpha/alpha.c (alpha_initialize_trampoline): Likewise.
8585
8586 2008-04-01  Uros Bizjak  <ubizjak@gmail.com>
8587
8588         * config/i386/i386.md (rex64suffix): New mode attribute.
8589         (floathi<mode>2): Disable expander for SSE math.
8590         (*floathi<mode>2_1): New insn insn_and_split pattern.
8591         (*floathi<mode>2_i387_with_temp): New macroized instruction pattern and
8592         corresponding post-reload splitters.
8593         (*floathi<mode>2_i387): New macroized insn pattern.
8594         (float<SSEMODEI24:mode><X87MODEF:mode>2): New macroized expander.
8595         (*float<SSEMODEI24:mode><X87MODEF:mode>2_1): New macroized
8596         insn_and_split pattern.
8597         (*floatsi<mode>2_vector_mixed_with_temp, *floatsi<mode>2_vector_mixed):
8598         New macroized instruction patterns and corresponding post-reload
8599         splitters.
8600         (*floatsi<mode>2_mixed_with_temp): New macroized instruction pattern
8601         and corresponding post-reload splitters.
8602         (*floatsi<mode>2_mixed_interunit, *floatsi<mode>2_mixed_nointerunit):
8603         New macroized instruction patterns.
8604         (*floatsi<mode>2_vector_sse_with_temp, *floatsi<mode>2_vector_sse): New
8605         macroized instruction patterns and corresponding post-reload splitters.
8606         (*floatsi<mode>2_sse_with_temp): New macroized instruction pattern and
8607         corresponding post-reload splitters.
8608         (*floatsi<mode>2_sse_interunit, *floatsi<mode>2_mixed_nointerunit):
8609         New macroized instruction patterns.
8610         (*floatsi<mode>2_i387_with_temp): New macroized instruction pattern and
8611         corresponding post-reload splitters.
8612         (*floatsi<mode>2_i387): New macroized instruction patterns.
8613
8614 2008-04-01  H.J. Lu  <hongjiu.lu@intel.com>
8615
8616         * config/i386/i386.md (smaxmin): New.
8617         (umaxmin): Likewise.
8618         (maxminiprefix): Likewise.
8619         (maxminfprefix): Likewise.
8620         (<code><mode>3): Likewise.
8621         (smin<mode>3): Removed.
8622         (smax<mode>3): Likewise.
8623
8624         * config/i386/mmx.md (mmx_<code>v2sf3): New.
8625         (mmx_<code>v4hi3): Likewise.
8626         (mmx_<code>v8qi3): Likewise.
8627         (mmx_smaxv2sf3): Removed.
8628         (mmx_sminv2sf3): Likewise.
8629         (mmx_umaxv8qi3): Likewise.
8630         (mmx_smaxv4hi3): Likewise.
8631         (mmx_uminv8qi3): Likewise.
8632         (mmx_sminv4hi3): Likewise.
8633
8634         * config/i386/sse.md (<addsub><mode>3): New.
8635         (*<addsub><mode>3): Likewise.
8636         (<sse>_vm<addsub><mode>3): Likewise.
8637         (<maxmin><mode>3): Likewise.
8638         (*<maxmin><mode>3_finite): Likewise.
8639         (*<maxmin><mode>3): Likewise.
8640         (<sse>_vm<maxmin><mode>3): Likewise.
8641         (sse3_h<addsub>v4sf3): Likewise.
8642         (sse3_h<addsub>v2df3): Likewise.
8643         (<maxmin>v16qi3): Likewise.
8644         (*<maxmin>v16qi3): Likewise.
8645         (<maxmin>v8hi3): Likewise.
8646         (*<maxmin>v8hi3): Likewise.
8647         (*sse4_1_<maxmin><mode>3): Likewise.
8648         (*sse4_1_<maxmin><mode>3): Likewise.
8649         (add<mode>3): Removed.
8650         (*add<mode>3): Likewise.
8651         (<sse>_vmadd<mode>3): Likewise.
8652         (sub<mode>3): Likewise.
8653         (*sub<mode>3): Likewise.
8654         (<sse>_vmsub<mode>3): Likewise.
8655         (smin<mode>3): Likewise.
8656         (*smin<mode>3_finite): Likewise.
8657         (*smin<mode>3): Likewise.
8658         (<sse>_vmsmin<mode>3): Likewise.
8659         (smax<mode>3): Likewise.
8660         (*smax<mode>3_finite): Likewise.
8661         (*smax<mode>3): Likewise.
8662         (<sse>_vmsmax<mode>3): Likewise.
8663         (sse3_haddv4sf3): Likewise.
8664         (sse3_haddv2df3): Likewise.
8665         (sse3_hsubv4sf3): Likewise.
8666         (sse3_hsubv2df3): Likewise.
8667         (umaxv16qi3): Likewise.
8668         (*umaxv16qi3): Likewise.
8669         (smaxv8hi3): Likewise.
8670         (*smaxv8hi3): Likewise.
8671         (*sse4_1_smax<mode>3): Likewise.
8672         (*sse4_1_umax<mode>3): Likewise.
8673         (uminv16qi3): Likewise.
8674         (*uminv16qi3): Likewise.
8675         (sminv8hi3): Likewise.
8676         (*sminv8hi3): Likewise.
8677         (*sse4_1_smin<mode>3): Likewise.
8678         (*sse4_1_umin<mode>3): Likewise.
8679
8680 2008-04-01  Rafael Espindola  <espindola@google.com>
8681
8682         * tree-cfg.c (verify_expr): remove in_phi.
8683         (verify_stmt): Don't call walk_tree with verify_expr. Use
8684         is_gimple_min_invariant instead of is_gimple_val.
8685
8686 2008-04-01  Joseph Myers  <joseph@codesourcery.com>
8687
8688         * doc/include/gpl_v3.texi: Update for manpage generation.
8689         * doc/gcc.texi, doc/gccint.texi: Include gpl_v3.texi instead of
8690         gpl.texi.
8691         * doc/sourcebuild.texi: Document gpl_v3.texi as well as gpl.texi.
8692         * Makefile.in (TEXI_GCC_FILES, TEXI_GCCINT_FILES): Include
8693         gpl_v3.texi instead of gpl.texi.
8694         (gpl.pod): New.
8695
8696 2008-04-01  Jakub Jelinek  <jakub@redhat.com>
8697
8698         PR pch/13675
8699         * c-pch.c (c_common_read_pch): On error close (fd) resp. fclose (f).
8700
8701 2008-04-01  Rafael Espindola  <espindola@google.com>
8702
8703         * tree-vrp.c (extract_code_and_val_from_cond_with_ops): New.
8704         (extract_code_and_val_from_cond): Use
8705         extract_code_and_val_from_cond_with_ops.
8706
8707 2008-04-01  Jan Hubicka  <jh@suse.cz>
8708
8709         * function.c (free_after_compilation): Free epilogue_delay_list.
8710         (prepare_function_start): Assert that previous compilation was freed.
8711
8712 2008-04-01  Jan Hubicka  <jh@suse.cz>
8713             Jim Wilson  <wilson@tuliptree.org>
8714             Andreas Tobler <andreast@gcc.gnu.org>
8715
8716         PR middle-end/35781
8717         * m32c/m32.c (m32c_leaf_function_p, m32c_function_needs_enter): Use
8718         rtl.emit instead cfun->emit.
8719         * sparc/sparc.h (INIT_EXPANDERS): Likewise.
8720         * ia64/ia64.h (INIT_EXPANDERS): Likewise.
8721
8722 2008-04-01  Ben Elliston  <bje@au.ibm.com>
8723
8724         * doc/c-tree.texi (Function Basics): Fix grammatical error.
8725
8726 2008-03-31  Seongbae Park <seongbae.park@gmail.com>
8727
8728         * common.opt (fprofile-dir=, fprofile-use=, fprofile-generate=):
8729         New options
8730         (fprofile-use): Add var flag_profile_use
8731         * coverage.c (coverage_begin_output): Do not open a gcno file for
8732         output only if -ftest-coverage is set.
8733         Do not add getpwd() to gcda file path.
8734         (build_gcov_info): Check the new flag
8735         flag_profile_datafile_relative_path.
8736         (coverage_init): Use profile_data_prefix.
8737         Read profile counter only if flag_profile_use is set.
8738         * opts.c (common_handle_option): New option fprofile-use=,
8739         fprofile-dir=, fprofile-generate=.
8740         * toplev.c (profile_data_prefix): New variable definition.
8741         * toplev.h (profile_data_prefix): New declaration.
8742         * doc/invoke.tex (Option Summary, Optimization Options):
8743         Add new options.
8744
8745 2008-03-31  James E. Wilson  <wilson@tuliptree.org>
8746
8747         * varasm.c (output_constant_pool_1): In LABEL_REF check,
8748         use tmp consistently.
8749
8750         PR target/35695
8751         * config/ia64/div.md (recip_approx_rf): Use UNSPEC not DIV.
8752         * config/ia64/ia64.c (rtx_needs_barrier): Handle
8753         UNSPEC_FR_RECIP_APPROX_RES.
8754         * config/ia64/ia64.md (UNSPEC_FR_RECIP_APPROX_RES): Define.
8755
8756 2008-03-31  Volker Reichelt  <v.reichelt@netcologne.de>
8757
8758         PR c/35750
8759         * c-decl.c (store_parm_decls_oldstyle): Skip invalid parameters.
8760
8761 2008-03-31  Andrew Pinski  <andrew_pinski@playstation.sony.com>
8762
8763         PR middle-end/30186
8764         * fold-const.c (fold_indirect_ref_1): Support accessing non first
8765         element of the vector via a pointer.
8766
8767 2008-03-31  Ian Lance Taylor  <iant@google.com>
8768
8769         * tlink.c (scan_linker_output): Look for symbol name in single quotes.
8770
8771 2008-03-31  Jan Hubicka  <jh@suse.cz>
8772
8773         * builtins.c (expand_builtin_setjmp_receiver): Update call of
8774         get_arg_pointer_save_area.
8775         * expr.c (init_expr): Just clear out rtl.expr.
8776         * function.c (free_after_compilation): Clear out whole RTL structure.
8777         (get_func_frame_size): Merge into ...
8778         (get_frame_size): ... this one.
8779         (assign_stack_local_1): Merge into ...
8780         (assign_stack_local): ... this one.
8781         (expand_function_end): Update call of get_arg_pointer_save_area.
8782         (get_art_pointer_save_area): Remove cfun argument.
8783         * function.h (emit_status): regno_pointer_align does not need length
8784         attribute. Move x_regno_reg_rtx to ...
8785         (regno_reg_rtx): ... new global array.
8786         (reg_rtx_no, seq_stack, REGNO_POINTER_ALIGN): Update accestors.
8787         (pending_stack_adjust, inhibit_defer_pop, saveregs_value,
8788         apply_args_value, forced_labels, stack_pointer_delta):
8789         Update accestors.
8790         (struct varasm_status): Move here from varasm.c
8791         (struct rtl_data): New. Move here some fields from struct function.
8792         (return_label, naked_return_label, stack_slot_list, parm_birth_insn,
8793         frame_offset, stack_check_probe_note, arg_pointer_save_area,
8794         used_temp_slots avail_temp_slots, temp_slot_level,
8795         nonlocal_goto_handler_labels): Update accesstors.
8796         (rtl): New global variable.
8797         (struct function): Move some fileds to rtl_data.
8798         (get_arg_pointer_save_area): Update prototype.
8799         * emit-rtl.c (rtl): Declare.
8800         (regno_reg_rtx): Declare.
8801         (first_insn, last_insn, cur_insn_uid, last_location, first_label_num):
8802         Update.
8803         (gen_reg_rtx): Update.
8804         (init_virtual_regs): Do not tate emit_status argument.
8805         (init_emit): Do not allocate emit.
8806         * varasm.c (varasm_statuc): Move to function.h.
8807         (n_deferred_constatns): Update accestor.
8808         (init_varasm_status): Do not allocate varasm_status.
8809         (force_const_mem, get_pool_size, output_constant_pool): Update.
8810         * stmt.c (force_label_rtx): Do not use x_ prefixes.
8811         (expand_nl_goto_receiver): Update get_arg_pointer_save_area.
8812
8813 2008-03-31  Zdenek Dvorak  <ook@ucw.cz>
8814
8815         PR rtl-optimization/35729
8816         * loop-invariant.c (check_maybe_invariant): Disallow volatile memory
8817         references.
8818
8819 2008-03-31  H.J. Lu  <hongjiu.lu@intel.com>
8820
8821         PR target/32000
8822         * config/i386/i386.md (*movti_internal): Emit unaligned SSE
8823         load/store if memory is unaligned.
8824         (*movti_rex64): Likewise.
8825
8826         * config/i386/predicates.md (misaligned_operand): New.
8827
8828 2008-03-31  Andrew Pinski  <pinskia@gmail.com>
8829
8830         PR tree-opt/35431
8831         * tree-ssa-phiopt.c (conditional_replacement): Return early for
8832         complex types.
8833
8834 2008-03-31  Jan Beulich  <jbeulich@novell.com>
8835
8836         * config/ia64/constraints.md: Add 'j' constraint.
8837         * config/ia64/ia64.md (movsi_internal): Add addp4 case.
8838         (movdi_internal): Likewise.
8839
8840 2008-03-30  Volker Reichelt  <v.reichelt@netcologne.de>
8841
8842         PR c/35748
8843         * c-typeck.c (build_c_cast): Skip invalid fields in unions.
8844
8845 2008-03-30  H.J. Lu  <hongjiu.lu@intel.com>
8846
8847         PR target/35757
8848         * config/i386/i386.c (ix86_expand_sse_4_operands_builtin): Issue
8849         proper error message for the third argument on blendpd and
8850         blendps.
8851
8852         * config/i386/sse.md (blendbits): New.
8853         (sse4_1_blendp<ssemodesuffixf2c>): Use it.
8854
8855 2008-03-30  Eric Botcazou  <ebotcazou@adacore.com>
8856
8857         * fold-const.c (fold_binary) <BIT_IOR_EXPR>: Add missing conversions.
8858
8859 2008-03-30  Richard Guenther  <rguenther@suse.de>
8860
8861         PR middle-end/31023
8862         * fold-const.c (fold_sign_changed_comparison): Do leave
8863         conversions to base-types alone.
8864
8865 2008-03-29  Andrew Pinski  <andrew_pinski@playstation.sony.com>
8866
8867         * config/rs6000/rs6000.c (rs6000_stack_info): Don't force saving of
8868         the link register if one altivec register is be saved.
8869
8870 2008-03-30  Ben Elliston  <bje@au.ibm.com>
8871
8872         * final.c (final_scan_insn): Remove if (0) code.
8873
8874 2008-03-28  Volker Reichelt  <v.reichelt@netcologne.de>
8875
8876         * c-parser.c (c_parser_next_token_is_keyword): Simplify.
8877
8878 2008-03-28  H.J. Lu  <hongjiu.lu@intel.com>
8879
8880         * config/i386/sse.md (*and<mode>3): Pass <MODE>mode instead
8881         of V4SFmode to ix86_binary_operator_ok.
8882
8883 2008-03-28  Uros Bizjak  <ubizjak@gmail.com>
8884
8885         * config/i386/i386.c (override_options): Initialize
8886         ix86_veclib_handler to ix86_veclibabi_svml when
8887         -mveclibabi=svml is used.
8888         (ix86_veclibabi_svml): New function for SVML ABI style
8889         vectorization support.
8890         * doc/invoke.texi (-mveclibabi) [svml]: Document new target option.
8891
8892 2008-03-28  Rafael Espindola  <espindola@google.com>
8893
8894         * fold-const.c (tree_unary_nonnegative_warnv_p): Make it public.
8895         (tree_binary_nonnegative_warnv_p): Make it public.
8896         (tree_single_nonnegative_warnv_p): Make it public.
8897         (tree_invalid_nonnegative_warnv_p): Make it public.
8898         (tree_unary_nonzero_warnv_p): Make it public.
8899         (tree_binary_nonzero_warnv_p): Make it public
8900         (tree_single_nonzero_warnv_p): Make it public.
8901         * tree-vrp.c (vrp_evaluate_conditional_warnv_with_ops): New function.
8902         (extract_range_from_binary_expr): Split the expr argument.
8903         (extract_range_from_unary_expr): Split the expr argument.
8904         (extract_range_from_comparison): Split the expr argument.
8905         (extract_range_from_expr): Use the new aux functions.
8906         (vrp_evaluate_conditional_warnv): Use
8907         vrp_evaluate_conditional_warnv_with_ops.
8908         * tree.h (tree_unary_nonzero_warnv_p): Declare.
8909         (tree_binary_nonzero_warnv_p): Declare.
8910         (tree_single_nonzero_warnv_p): Declare.
8911         (tree_expr_nonzero_warnv_p): Declare.
8912         (tree_unary_nonnegative_warnv_p): Declare.
8913         (tree_binary_nonnegative_warnv_p): Declare.
8914         (tree_single_nonnegative_warnv_p): Declare.
8915         (tree_invalid_nonnegative_warnv_p): Declare.
8916
8917 2008-03-28  Richard Guenther  <rguenther@suse.de>
8918
8919         PR tree-optimization/30317
8920         PR tree-optimization/30911
8921         PR tree-optimization/34793
8922         * tree-vrp.c (set_and_canonicalize_value_range): New function.
8923         (struct assert_locus_d): New member EXPR.
8924         (register_new_assert_for): Add EXPR parameter to support
8925         ASSERT_EXPR <name, expr OP limit>.
8926         (register_edge_assert_for_1): Adjust callers.
8927         (find_assert_locations): Likewise.
8928         (process_assert_insertions_for): Build condition from expression.
8929         (extract_range_from_assert): Handle ASSERT_EXPRs
8930         of the form ASSERT_EXPR <name, expr OP limit>.
8931         (register_edge_assert_for_2): New helper registering
8932         asserts for comparisons.  Recognize range tests of the form
8933         (unsigned)i - CST1 OP CST2.
8934         (register_edge_assert_for_1): Use it.
8935         (register_edge_assert_for): Likewise.
8936         (needs_overflow_infinity): Integer sub-types
8937         do not need overflow infinities.
8938         (vrp_val_is_max): The extreme values of integer sub-types
8939         are those of the base type.
8940         (vrp_val_is_min): Likewise.
8941         * tree.def (ASSERT_EXPR): Document extra allowed conditional
8942         expressions.
8943
8944 2008-03-28  Nick Clifton  <nickc@redhat.com>
8945
8946         PR target/31110
8947         * config/mn10300/mn10300.c (mn10300_secondary_reload_class):
8948         Return GENERAL_REGS for stack adjustment reloads.
8949
8950 2008-03-28  Andrew Pinski  <andrew_pinski@playstation.sony.com>
8951
8952         PR target/31334
8953         * config/rs6000/rs6000.c (rs6000_expand_vector_init): Create a
8954         const_vector when all the vectors are constant.
8955
8956 2008-03-27  Bob Wilson  <bob.wilson@acm.org>
8957
8958         * config/xtensa/xtensa.c (gen_float_relational): Handle unordered
8959         comparisons.
8960         * config/xtensa/xtensa.md (any_cond): Add unordered comparisons.
8961         (any_scc_sf): Add uneq, unlt, unle and unordered operators.
8962         (scc_sf): New.
8963         (s<code>_sf): Use new scc_sf attribute for opcode names.
8964
8965 2008-03-27  Tom Tromey  <tromey@redhat.com>
8966
8967         * doc/sourcebuild.texi, doc/install.texi, configure, aclocal.m4,
8968         configure.ac, Makefile.in, config/t-darwin, config/m32c/t-m32c,
8969         config/spu/t-spu-elf, config/i386/t-interix,
8970         config/i386/t-cygming, config/i386/x-i386, config/i386/t-cygwin,
8971         config/i386/x-darwin, config/i386/x-mingw32,
8972         config/i386/t-netware, config/i386/x-cygwin, config/i386/t-nwld,
8973         config/sh/t-sh, config/sh/t-symbian, config/x-linux,
8974         config/t-sol2, config/x-hpux, config/x-darwin, config/ia64/t-ia64,
8975         config/x-solaris, config/t-vxworks, config/m68k/t-uclinux,
8976         config/rs6000/x-rs6000, config/rs6000/x-darwin64,
8977         config/rs6000/x-darwin, config/rs6000/t-rs6000,
8978         config/score/t-score-elf, config/arm/t-strongarm-pe,
8979         config/arm/t-pe, config/arm/t-arm, config/arm/t-wince-pe,
8980         config/v850/t-v850, config/v850/t-v850e, config/bfin/t-bfin-linux:
8981         Revert automatic dependency patch.
8982
8983 2008-03-27  H.J. Lu  <hongjiu.lu@intel.com>
8984
8985         PR target/35657
8986         * config/i386/i386.c (ix86_function_arg_boundary): Align
8987         decimal floating point to its natural boundary.
8988
8989 2008-03-27  Richard Guenther  <rguenther@suse.de>
8990
8991         PR middle-end/35716
8992         * fold-const.c (fold_comparison): Restrict distinct decl
8993         comparison folding to VAR_DECLs and PARM_DECLs.  Do not
8994         solely rely on operand_equal_p.
8995
8996 2008-03-27  Richard Guenther  <rguenther@suse.de>
8997
8998         PR c/32511
8999         * c-common.c (handle_weak_attribute): Reject combination of
9000         weak and inline.
9001
9002 2008-03-27  Richard Guenther  <rguenther@suse.de>
9003
9004         PR tree-optimization/32810
9005         * tree-ssa-ccp.c (get_symbol_constant_value): Strip useless
9006         conversions from DECL_INITIAL.
9007         (fold_const_aggregate_ref): Likewise from constructor elements.
9008
9009 2008-03-27  Zdenek Dvorak  <ook@ucw.cz>
9010
9011         * tree-affine.h (aff_combination_expand): Declare.
9012         (get_inner_reference_aff): Likewise.
9013         * tree-affine.c (aff_combination_expand): Split out from
9014         tree_to_aff_combination_expand.
9015         (get_inner_reference_aff): New function.
9016         * tree-parloops.c (loop_parallel_p): Free vectorizer info.
9017         * tree-ssa-loop-im.c: Include tree-affine.h and pointer-set.h.
9018         (struct lim_aux_data): sm_done field removed.
9019         (mem_ref_loc_p, mem_ref_locs_p): New types.
9020         (struct mem_ref): Added id, stored, accesses_in_loop,
9021         indep_loop, dep_loop, indep_ref, dep_ref fields.
9022         Removed is_stored, locs and next fields.
9023         (memory_accesses): New variable.
9024         (movement_possibility): Do not allow moving statements
9025         that store to memory.
9026         (outermost_indep_loop, simple_mem_ref_in_stmt, mem_ref_in_stmt):
9027         New functions.
9028         (determine_max_movement): For statements with memory references,
9029         find the outermost loop in that the reference is independent.
9030         (move_computations_stmt): Mark the virtual operands for renaming.
9031         (memref_free, mem_ref_alloc, mem_ref_locs_alloc, mark_ref_stored,
9032         gather_mem_refs_stmt, gather_mem_refs_in_loops, vtoe_hash, vtoe_eq,
9033         vtoe_free, record_vop_access, get_vop_accesses, get_vop_stores,
9034         add_vop_ref_mapping, create_vop_ref_mapping_loop,
9035         create_vop_ref_mapping, analyze_memory_references,
9036         cannot_overlap_p, mem_refs_may_alias_p, rewrite_mem_ref_loc,
9037         get_all_locs_in_loop, ref_always_accessed_p,
9038         refs_independent_p, record_indep_loop, ref_indep_loop_p_1,
9039         ref_indep_loop_p, can_sm_ref_p, find_refs_for_sm,
9040         store_motion_loop, store_motion): New functions.
9041         (struct vop_to_refs_elt): New type.
9042         (record_mem_ref_loc, free_mem_ref_locs, rewrite_mem_refs,
9043         memref_hash, memref_eq, hoist_memory_references): Rewritten.
9044         (schedule_sm): Replaced by...
9045         (execute_sm): ... this.
9046         (determine_lsm_ref, hoist_memory_references,
9047         loop_suitable_for_sm, gather_mem_refs_stmt, gather_mem_refs,
9048         find_more_ref_vops, free_mem_ref, free_mem_refs,
9049         determine_lsm_loop, determine_lsm): Removed.
9050         (tree_ssa_lim_finalize): Free data structures used by store motion.
9051         (tree_ssa_lim): Call analyze_memory_references.  Use
9052         store_motion instead of determine_lsm.
9053
9054 2008-03-27  Paolo Bonzini  <bonzini@gnu.org>
9055
9056         * config.cc (m68hc11, m6811, m68hc12, m6812): Add usegas.h,
9057         rename tmake_file to m68hc11/t-m68hc11.
9058         (mcore): Set inhibit_libc to true.
9059         * config.host (alpha*-dec-*vms*): Set extra_programs.
9060         (interix3*): Don't use host_xmake_file.
9061         * configure.ac: Let config.gcc override inhibit_libc.
9062         * configure: Regenerate.
9063
9064         * config/alpha/x-vms (EXTRA_PROGRAMS): Remove.
9065         * config/t-openbsd-thread: Remove commented out lines.
9066         
9067         * config/x-interix: Remove.
9068
9069         * config/m68hc11/t-m68hc11-gas: Rename to...
9070         * config/m68hc11/t-m68hc11: ... this.  Remove T_CPPFLAGS.
9071
9072         * config/mcore/t-mcore: Remove T_CFLAGS.
9073         * config/mcore/t-mcore-pe: Likewise.
9074
9075 2008-03-27  Paolo Bonzini  <bonzini@gnu.org>
9076
9077         * configure.ac: Replace custom __GNU_SOURCE test with
9078         AC_USE_SYSTEM_EXTENSIONS.  Move it earlier.
9079         * aclocal.m4: Regenerate.
9080         * configure: Regenerate.
9081         * config.in: Regenerate.
9082
9083 2008-03-27  Richard Guenther  <rguenther@suse.de>
9084
9085         * fold-const.c (target.h): Include.
9086         (fold_comparison): Fold comparison of addresses of decls
9087         that bind locally or of constants.  Consolidate address folding code.
9088         * tree-vrp.c (operand_less_p): Deal with non-INTEGER_CST
9089         results from fold_binary_to_constant.
9090         (compare_values_warnv): Likewise.
9091
9092 2008-03-27  Andrew Pinski  <pinskia@gmail.com>
9093
9094         PR middle-end/35429
9095         * fold-const.c (fold_truthop): Check for integeral types when folding
9096         a == 0 && b == 0 and a != 0 || b != 0 .
9097
9098 2008-03-26  Eric Botcazou  <ebotcazou@adacore.com>
9099
9100         * tree.c (get_unwidened): Remove code fiddling with COMPONENT_REF.
9101
9102 2008-03-26  Andreas Schwab  <schwab@suse.de>
9103
9104         * doc/invoke.texi: Fix use of @item vs. @itemx.
9105
9106 2008-03-26  Tom Tromey  <tromey@redhat.com>
9107
9108         * Makefile.in (build/gensupport.o, build/print-rtl.o,
9109         build/read-rtl.o, build/rtl.o, build/gencondmd.o, build/genattr.o,
9110         build/genattrtab.o, build/genautomata.o, build/gencheck.o,
9111         build/gencodes.o, build/genconditions.o, build/genconfig.o,
9112         build/genconstants.o, build/genemit.o, build/genextract.o,
9113         build/genflags.o, build/genmddeps.o, build/genopinit.o,
9114         build/genoutput.o, build/genpeep.o, build/genrecog.o): Depend on
9115         options.h.
9116
9117 2008-03-26  Richard Guenther  <rguenther@suse.de>
9118
9119         Revert
9120         2008-03-26  Richard Guenther  <rguenther@suse.de>
9121
9122         * fold-const.c (target.h): Include.
9123         (fold_comparison): Fold comparison of addresses of two decls
9124         that bind locally.  Consolidate address folding code.
9125
9126 2008-03-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9127
9128         * builtins.c (expand_builtin_pow, fold_builtin_cabs,
9129         fold_builtin_sqrt, fold_builtin_cbrt, fold_builtin_logarithm,
9130         fold_builtin_hypot, fold_builtin_pow): Remove uses of dconst3,
9131         dconstsqrt2, dconstthird, dconste and/or dconst10.
9132         * config/i386/i386.c (ix86_emit_swsqrtsf): Likewise.
9133         * emit-rtl.c (dconst3, dconst10, dconstm2, dconstthird,
9134         dconstsqrt2, dconste): Delete.
9135         (init_emit_once): Likewise.  Simplify initializing dconstm1.
9136         Constify variable.
9137         * real.c (get_real_const): New.
9138         * real.h (dconst3, dconst10, dconstm2, dconstthird,
9139         dconstsqrt2, dconste): Delete.
9140         (real_value_const, get_real_const): New.
9141
9142 2008-03-26  H.J. Lu  <hongjiu.lu@intel.com>
9143
9144         * config/i386/cygming.h (BIGGEST_ALIGNMENT): Removed.
9145
9146         * config/i386/i386.c (ix86_function_arg_boundary): Check
9147         BIGGEST_ALIGNMENT instead of 128.
9148         (setup_incoming_varargs_64): Likewise.
9149
9150 2008-03-26  Tom Tromey  <tromey@redhat.com>
9151
9152         * Makefile.in (DEPFILES): Add missing '/'.
9153
9154 2008-03-26  Richard Guenther  <rguenther@suse.de>
9155
9156         * fold-const.c (target.h): Include.
9157         (fold_comparison): Fold comparison of addresses of two decls
9158         that bind locally.  Consolidate address folding code.
9159
9160 2008-03-26  Nick Clifton  <nickc@redhat.com>
9161
9162         PR target/31232
9163         * config/stormy16/stormy16.c (xstormy16_legitimate_address_p): Do
9164         not allow INT+INT as a legitimate addressing mode.
9165
9166 2008-03-26  Richard Guenther  <rguenther@suse.de>
9167
9168         * tree-flow.h (widen_bitfield): Remove declaration.
9169         * tree-ssa-ccp.c (visit_assignment): Remove unneeded code.
9170         (widen_bitfield): Remove function.
9171         * tree-ssa-dom.c (record_equivalences_from_stmt): Remove unneeded
9172         code.
9173
9174 2008-03-25  Andrew Pinski  <andrew_pinski@playstation.sony.com>
9175
9176         PR target/31558
9177         * config/rs6000/rs6000-c.c (rs6000_builtin_type_compatible): Handle
9178         error_mark_node's.
9179
9180 2008-03-25  Richard Sandiford  <rsandifo@nildram.co.uk>
9181
9182         PR rtl-optimization/35232
9183         * reload1.c (reg_reloaded_call_part_clobbered): Clarify comment.
9184         (forget_old_reloads_1, forget_marked_reloads): Don't clear
9185         reg_reloaded_call_part_clobbered here.
9186         (reload_regs_reach_end_p): New function.
9187         (reload_reg_rtx_for_input): New variable.
9188         (reload_reg_rtx_for_output): Likewise.
9189         (emit_input_reload_insns): Use reloadreg rather than rl->reg_rtx
9190         when reassigning a pseudo register.  Load reloadreg from 
9191         reload_reg_rtx_for_input, moving the mode and register
9192         calculation to...
9193         (do_input_reload): ...here.  Use the mode-adjusted reg_rtx
9194         instead of the original when deciding whether an input reload
9195         would be a no-op or whether an output reload can be deleted.
9196         (emit_output_reload_insns): Use the mode-adjusted reg_rtx
9197         when setting up new_spill_reg_store.  Load it from
9198         reload_reg_rtx_for_output, moving the mode and register
9199         calculation to...
9200         (do_output_reload): ...here.  Use the mode-adjusted reg_rtx
9201         instead of the original when deciding whether an output reload
9202         would be a no-op.  Do the same when modifying insn notes.
9203         Use rtx_equal_p instead of == to compare the registers.
9204         (inherit_piecemeal_p): Take a mode and two register numbers
9205         as argument.
9206         (emit_reload_insns): Clear new_spill_reg_store for every hard
9207         register in the reload register.  Remove spill registers
9208         from reg_reloaded_valid before considering whether to record
9209         inheritance information for them.  Use reload_reg_rtx_for_output
9210         instead of reg_rtx when recording output reloads.  Use
9211         reload_reg_rtx_for_input instead of reg_rtx when recording
9212         input reloads.  Set or clear reg_reloaded_call_part_clobbered
9213         at the same time as setting reg_reloaded_valid.
9214         (delete_output_reload): Add a new_reload_reg parameter and use it
9215         instead of rld[j].reg_rtx.
9216         (emit_input_reload_insns, do_input_reload, do_output_reload): Adjust
9217         calls accordingly.
9218
9219 2008-03-25  Tom Tromey  <tromey@redhat.com>
9220
9221         * Makefile.in (build/gensupport.o): Depend on insn-modes.h.
9222         (build/genattr.o): Likewise.
9223         (build/genattrtab.o): Likewise.
9224         (build/gencodes.o): Likewise.
9225         (build/genconfig.o): Likewise.
9226         (build/genconstants.o): Likewise.
9227         (build/genemit.o): Likewise.
9228         (build/genextract.o): Likewise.
9229         (build/genflags.o): Likewise.
9230
9231 2008-03-25  Bob Wilson  <bob.wilson@acm.org>
9232         
9233         * config/xtensa/xtensa.c (xtensa_va_start): Use build_int_cst
9234         instead of size_int for integer types.
9235         (xtensa_gimplify_va_arg_expr): Likewise.  Convert index to sizetype
9236         to match type of MINUS_EXPR.
9237         
9238 2008-03-25  Tom Tromey  <tromey@redhat.com>
9239
9240         * configure: Rebuilt.
9241         * configure.ac (BUILD_DEPMODE): Extract CCDEPMODE from temporary
9242         Makefile.
9243
9244 2008-03-25  Tom Tromey  <tromey@redhat.com>
9245
9246         * config/x-solaris (host-solaris.o): Update.
9247         * config/x-linux (host-linux.o): Update.
9248         * config/x-hpux (host-hpux.o): Update.
9249         * config/x-darwin (host-darwin.o): Update.
9250         * config/v850/t-v850e (v850-c.o): Update.
9251         * config/v850/t-v850 (v850-c.o): Update.
9252         * config/t-vxworks (vxworks.o): Update.
9253         * config/t-sol2 (sol2-c.o, sol2.o): Update.
9254         * config/t-darwin (darwin.o, darwin-c.o, darwin-driver.o): Update.
9255         * config/spu/t-spu-elf (spu-c.o): Update.
9256         (spu.o): Remove.
9257         * config/sh/t-symbian (sh-c.o): Update.
9258         (symbian.o): Update.
9259         * config/sh/t-sh (sh-c.o): Update.
9260         * config/score/t-score-elf (score7.o, score3.o): Update.
9261         * config/rs6000/x-rs6000 (driver-rs6000.o): Update.
9262         * config/rs6000/x-darwin64 (host-ppc64-darwin.o): Update.
9263         * config/rs6000/x-darwin (host-ppc-darwin.o): Update.
9264         * config/rs6000/t-rs6000 (rs6000-c.o): Update.
9265         (rs6000.o): Remove.
9266         * config/m68k/t-uclinux (generated_files): Add sysroot-suffix.h.
9267         * config/m32c/t-m32c (m32c-pragma.o): Update.
9268         * config/ia64/t-ia64 (ia64-c.o): Update.
9269         * config/i386/x-mingw32 (host-mingw32.o): Update.
9270         * config/i386/x-i386 (driver-i386.o): Update.
9271         * config/i386/x-darwin (host-i386-darwin.o): Update.
9272         * config/i386/x-cygwin (host-cygwin.o): Update.
9273         * config/i386/t-nwld (nwld.o): Update.
9274         * config/i386/t-netware (netware.o): Update.
9275         * config/i386/t-interix (winnt.o): Update.
9276         * config/i386/t-cygwin (cygwin1.o, cygwin2.o): Update.
9277         * config/i386/t-cygming (winnt.o, winnt-cxx.o, winnt-stubs.o,
9278         msformat-c.o): Update.
9279         * config/bfin/t-bfin-linux (generated_files): Add
9280         linux-sysroot-suffix.h.
9281         * config/arm/t-wince-pe (pe.o): Update.
9282         * config/arm/t-strongarm-pe (pe.o): Update.
9283         * config/arm/t-pe (pe.o): Update.
9284         * config/arm/t-arm (arm-c.o): Update.
9285         * doc/install.texi (Prerequisites): Require make 3.80.
9286         * Makefile.in: Remove .o targets.
9287         (CCDEPMODE, DEPDIR, depcomp, BUILD_DEPMODE): New variables.
9288         (OBSTACK_H, FIBHEAP_H, PARTITION_H, MD5_H, BCONFIG_H): Remove.
9289         (simple_generated_h, simple_generated_c): Move earlier.
9290         (generated_files): New variable.
9291         (TARGET_H, MACHMODE_H, HOOKS_H, HOSTHOOKS_DEF_H, LANGHOOKS_DEF_H,
9292         TARGET_DEF_H, RTL_BASE_H, RTL_H, PARAMS_H, BUILTINS_DEF, TREE_H,
9293         BASIC_BLOCK_H, GCOV_IO_H, COVERAGE_H, DEMANGLE_H, RECOG_H,
9294         ALIAS_H, EMIT_RTL_H, FLAGS_H, FUNCTION_H, EXPR_H, OPTABS_H,
9295         REGS_H, RA_H, RESOURCE_H, SCHED_INT_H, INTEGRATE_H, CFGLAYOUT_H,
9296         CFGLOOP_H, IPA_UTILS_H, IPA_REFERENCE_H, IPA_TYPE_ESCAPE_H,
9297         CGRAPH_H, DF_H, RESOURCE_H, DDG_H, GCC_H, GGC_H, TIMEVAR_H,
9298         INSN_ATTR_H, C_COMMON_H, C_PRAGMA_H, C_TREE_H, SYSTEM_H,
9299         PREDICT_H, DECNUM_H, MKDEPS_H, SYMTAB_H, TREE_DUMP_H,
9300         TREE_GIMPLE_H, TREE_FLOW_H, TREE_SSA_LIVE_H, PRETTY_PRINT_H,
9301         DIAGNOSTIC_H, C_PRETTY_PRINT_H, SCEV_H, LAMBDA_H, TREE_DATA_REF_H,
9302         VARRAY_H, TREE_INLINE_H, REAL_H, DBGCNT_H, EBIMAP_H): Remove.
9303         (.c.o): Remove.
9304         (COMPILE.base, COMPILE): New variables.
9305         (%.o): New pattern rule.
9306         (ALL_HOST_OBJS): New variable.
9307         (xgcc$(exeext), cpp$(exeext)): Remove extra version.o.
9308         (dummy-checksum.o, cc1-checksum.o): Remove.
9309         (DRIVER_SHLIB): New variable.
9310         (DRIVER_DEFINES): Use it.
9311         (gencondmd.c): Move out of build/.
9312         (s-conditions): Update.
9313         (BUILDCOMPILE.base, BUILDCOMPILE): New variables.
9314         (ALL_BUILD_OBJS): Likewise.
9315         (build/%.o): Use BUILDCOMPILE.
9316         (build/ggc-none.o, build/ggc-none.o, build/min-insn-modes.o,
9317         build/print-rtl.o, build/read-rtl.o, build/rtl.o, build/vec.o,
9318         build/gencondmd.o, build/genattrtab.o, build/genautomata.o,
9319         build/gencheck.o, build/gencodes.o, build/genconditions.o,
9320         build/genconfig.o, build/genconstants.o, build/genemit.o,
9321         build/genextract.o, build/genflags.o, build/genmddeps.o,
9322         build/genopinit.o, build/genoutput.o, build/genpeep.o,
9323         build/genpreds.o, build/genrecog.o, build/gcov-iov.o,
9324         build/gen-protos.o, build/scan.o, build/fix-header.o,
9325         build/scan-decls.o): Simplify.
9326         (collect2.o, c-opts.o, gcc.o, gccspec.o, gcc-options.o,
9327         cppdefault.o, protoize.o, unprotoize.o, intl.o, version.o,
9328         prefix.o, toplev.o): Reduce to variable setting.
9329         (libbackend.o): Use COMPILE.  Remove most dependencies.  Move later.
9330         ($(out_object_file), gcc-options.o): New targets.
9331         ($(ALL_HOST_OBJS)): New target.  Include dependency files.
9332         * configure: Rebuilt.
9333         * configure.ac: Call ZW_CREATE_DEPDIR, ZW_PROG_COMPILER_DEPENDENCIES.
9334         * doc/sourcebuild.texi (Front End Directory): Document new variable.
9335
9336 2008-03-25  Douglas Gregor  <doug.gregor@gmail.com>
9337
9338         * c-common.c (c_sizeof_or_alignof_type): If we're not allowed to
9339         complain when we hit an error, return ERROR_MARK_NODE.
9340
9341 2008-03-25  Naveen.H.S  <naveen.hs@kpitcummins.com>
9342
9343         * config/sh/constraints.md (Pso, Psz): New constraints.
9344         * config/sh/sh.c (print_operand): Add %V and %W operand codes.
9345         * config/sh/sh.md (*andsi3_bclr, *iorsi3_bset): New insns.
9346
9347 2008-03-25  Naveen.H.S  <naveen.hs@kpitcummins.com>
9348
9349         * config/sh/sh.c (sh_expand_t_scc): Emit movrt for SH2A if possible.
9350         * config/sh/sh.md (xorsi3_movrt, movrt): New insns.
9351
9352 2008-03-25  Naveen.H.S  <naveen.hs@kpitcummins.com>
9353
9354         * config/sh/sh.md (prefetch): Add condition for SH2A target.
9355         (prefetch_sh2a): New.   
9356
9357 2008-03-25  Jayant Sonar  <Jayant.sonar@kpitcummins.com>
9358             Naveen.H.S  <naveen.hs@kpitcummins.com>
9359
9360         * config/sh/constraints.md (I28): New constraint.
9361         * config/sh/sh.c (broken_move): Add support for movi20s.
9362         * config/sh/sh.md (movsi_ie): Add the alternative for movi20s.
9363
9364 2008-03-25  Anil Paranjape  <anil.paranjape@kpitcummins.com>
9365             Jayant Sonar  <Jayant.sonar@kpitcummins.com>
9366             Naveen.H.S  <naveen.hs@kpitcummins.com>
9367
9368         * config/sh/sh.c (SH_ATTRIBUTES): Define.
9369         (SYMBOL_FLAG_FUNCVEC_FUNCTION): Define.
9370         (print_operand): Handle resbank in %@ operand code.
9371         (sh_encode_section_info): New.
9372         (push_regs): Add conditions for resbank.
9373         (sh_expand_epilogue): Likewise.
9374         (sh_insert_attributes): Likewise.
9375         (sh_attribute_table): Likewise.
9376         (sh_handle_resbank_handler_attribute): New.
9377         (sh2a_handle_function_vector_handler_attribute): New.
9378         (sh2a_is_function_vector_call): New.
9379         (sh2a_get_function_vector_number): New.
9380         (sh2a_function_vector_p): New.
9381         (sh_cfun_resbank_handler_p): New.
9382         * config/sh/sh.md (calli): Emit jsr/n if possible.
9383         (calli_tbr_rel): New.
9384         (calli_pcrel): Emit jsr/n if possible.
9385         (return_i): Emit rts/n if possible.
9386         (call_valuei_tbr_rel): New.
9387         (call_valuei_pcrel): Add condition for SH2A target.
9388         (call_value): Likewise.
9389         * config/sh/sh-protos.h (sh_cfun_resbank_handler_p): Declare.
9390         (sh2a_get_function_vector_number): Likewise.
9391         (sh2a_is_function_vector_call): Likewise.
9392         * doc/extend.texi: Document TBR relative addressing of SH2A.
9393         (resbank): Add description for SH2A.
9394
9395 2008-03-24  Richard Guenther  <rguenther@suse.de>
9396
9397         PR c/22371
9398         * gimplify.c (gimplify_modify_expr): For frontend type-correct
9399         pointer assignments change conversions according to middle-end rules.
9400         (gimplify_modify_expr_rhs): Deal with NULL TARGET_EXPR_INITIAL.
9401         * configure.ac: Include type checking in yes.
9402         * configure: Regenerate.
9403
9404 2008-03-24  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
9405
9406         * diagnostic.c (diagnostic_count_diagnostic): Delete.
9407         (diagnostic_report_diagnostic): Update. Handle ICEs here.
9408         
9409 2008-03-24  Nathan Sidwell  <nathan@codesourcery.com>
9410
9411         * gthr-vxworks.h (UNUSED): Define.
9412
9413 2008-03-23  H.J. Lu  <hongjiu.lu@intel.com>
9414
9415         * config/i386/i386.h (STATIC_CHAIN_REGNUM): Use R10_REG and CX_REG.
9416
9417 2008-03-23  Zuxy Meng <zuxy.meng@gmail.com>
9418
9419         * doc/extend.texi (Function Attributes): Add missing comma in the
9420         example of the "alloc_size" attribute.
9421         
9422 2008-03-23  Uros Bizjak  <ubizjak@gmail.com>
9423
9424         Revert:
9425         2008-03-05  H.J. Lu  <hongjiu.lu@intel.com>
9426
9427         * config/i386/i386-modes.def: Use 4 byte alignment on DI for
9428         32bit host.
9429
9430         2008-03-19  Uros Bizjak  <ubizjak@gmail.com>
9431
9432         PR target/35496
9433         * stor-layout.c (update_alignment_for_field): Set minimum alignment
9434         of the underlying type of a MS bitfield layout to the natural
9435         alignment of the type.
9436
9437         2008-03-22  Uros Bizjak  <ubizjak@gmail.com>
9438
9439         * config/i386/i386.c (assign_386_stack_local): Align DImode slots
9440         to their natural alignment to avoid store forwarding stalls.
9441
9442 2008-03-22  Richard Guenther  <rguenther@suse.de>
9443
9444         * tree-cfg.c (verify_expr): Recurse again for invariant addresses.
9445         For PHI nodes verify the address is invariant.
9446         * tree-ssa-ccp.c (ccp_decl_initial_min_invariant): Remove.
9447         (get_symbol_constant_value): Use is_gimple_min_invariant.
9448         (maybe_fold_stmt_indirect): Likewise.
9449
9450 2008-03-22  Richard Sandiford  <rsandifo@nildram.co.uk>
9451
9452         PR rtl-optimization/33927
9453         * Makefile.in (dse.o): Depend on $(TM_P_H).
9454         * expr.h (extract_low_bits): Declare.
9455         * expmed.c (extract_low_bits): New function.
9456         * rtlhooks.c (gen_lowpart_general): Generalize SUBREG handling.
9457         * dse.c: Include tm_p.h.
9458         (find_shift_sequence): Remove the read_reg argument and return the
9459         read value.  Emit the instructions instead of returning them.
9460         Iterate on new_mode rather than calculating it each time.
9461         Check MODES_TIEABLE_P.  Use simplify_gen_subreg to convert the
9462         source to NEW_MODE and extract_low_bits to convert the shifted
9463         value to READ_MODE.
9464         (replace_read): Allow the load and store to have different mode
9465         classes.  Use extract_low_bits when SHIFT == 0.  Create the shift
9466         or extraction instructions before trying the replacement.  Update
9467         dump-file code accordingly, avoiding use of REGNO (store_info->rhs).
9468
9469 2008-03-22  Uros Bizjak  <ubizjak@gmail.com>
9470
9471         * config/i386/i386.c (assign_386_stack_local): Align DImode slots
9472         to their natural alignment to avoid store forwarding stalls.
9473
9474 2008-03-21  Andrew Pinski  <andrew_pinski@playstation.sony.com>
9475
9476         PR target/27946
9477         * config/rs6000/rs6000.md (floatdidf2): Discouraging fprs and
9478         encouraging but not allowing gprs for input;
9479         change the input constraint to !f#r.
9480         (fix_truncdfdi2): Discouraging fprs and encouraging but not allowing
9481         gprs for output;
9482         change the output constraint to !f#r.
9483
9484 2008-03-21  Uros Bizjak  <ubizjak@gmail.com>
9485
9486         PR target/13958
9487         * config/i386/i386.md ("*floatunssi<mode2>_1"): New pattern with
9488         corresponding post-reload splitters.
9489         ("floatunssi<mode>2"): Expand to unsigned_float x87 insn pattern
9490         when x87 FP math is selected.
9491         * config/i386/i386-protos.h (ix86_expand_convert_uns_sixf_sse):
9492         New function prototype.
9493         * config/i386/i386.c (ix86_expand_convert_uns_sixf_sse): New
9494         unreachable function to ease macroization of insn patterns.
9495
9496 2008-03-21  Martin Jambor  <mjambor@suse.cz>
9497
9498         * tree-data-ref.c (dump_data_dependence_relation): Avoid data
9499         reference dumps if ddr is NULL or dependence is unknown.
9500
9501 2008-03-20  Kaz Kojima  <kkojima@gcc.gnu.org>
9502
9503         * config/sh/linux-atomic.asm (ATOMIC_TEST_AND_SET): Take
9504         unsigned extension into account.
9505         (ATOMIC_COMPARE_AND_SWAP): Likewise.
9506         (ATOMIC_FETCH_AND_OP, ATOMIC_FETCH_AND_COMBOP): Likewise.
9507         Do computations on a scratch register.
9508
9509 2008-03-21  Richard Guenther  <rguenther@suse.de>
9510
9511         * tree-scalar-evolution.c (chrec_contains_symbols_defined_in_loop):
9512         Use is_gimple_min_invariant instead of TREE_INVARIANT.
9513         * tree-ssa-loop-ivopts.c (force_expr_to_var_cost): Likewise.
9514         * tree-ssa-dom.c (record_equality): Likewise.
9515         * tree-inline.c (copy_body_r): Likewise.
9516         * tree-ssa-pre.c (make_values_for_stmt): Remove test for
9517         TREE_INVARIANT.
9518
9519 2008-03-20  Kaz Kojima  <kkojima@gcc.gnu.org>
9520
9521         * config/sh/sh.c (split_branches): Pass zero to redirect_jump
9522         as 'delete_unused' argument.
9523
9524 2008-03-20  Richard Guenther  <rguenther@suse.de>
9525
9526         * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Remove
9527         special casing of constant qualifiers.
9528         * tree-ssa.c (useless_type_conversion_p_1): Instead do not
9529         care about them in general.
9530         * tree-ssa-ccp.c (ccp_fold): Addresses are constant or not
9531         regardless of their type.
9532         (fold_stmt_r): Forcefully fold *& if we end up with that.
9533
9534 2008-03-20  Paul Brook  <paul@codesourcery.com>
9535
9536         * config.gcc (arm*-*-uclinux*): Remove duplicate arm/uclinux-elf.h.
9537         * config/arm/uclinux-eabi.h (SUBTARGET_EXTRA_LINK_SPEC): Add extra
9538         linker flags.
9539         * config/arm/bpabi.h (SUBTARGET_EXTRA_LINK_SPEC): Provide default
9540         definition.
9541         (LINK_SPEC): Use SUBTARGET_EXTRA_LINK_SPEC.
9542         * config/arm/unwind-arm.h (_Unwind_decode_target2): Add uClinux.
9543
9544 2008-03-20  Volker Reichelt  <v.reichelt@netcologne.de>
9545
9546         * common.opt (Wmudflap): New option.
9547         * tree-mudflap.c (mf_xform_derefs_1): Guard warning by OPT_Wmudflap.
9548         (mx_register_decls): Likewise.
9549         (mudflap_finish_file): Likewise.
9550         * doc/invoke.texi: Document -Wno-mudflap.
9551
9552 2008-03-20  Kai Tietz  <kai.tietz@onevision.com>
9553
9554         * c-format.c (replace_format_name_to_system_name): New.
9555         (cmp_attribs): New.
9556         (convert_format_name_to_system_name): New.
9557         (decode_format_attr): Add use of convert_format_name_to_system_name.
9558         (format_types_orig): Add gnu_ prefix to names.
9559         (check_format_info_main): Special treating of \0 escaped names for
9560         supporting multi-character format specifiers as I32, I64.
9561         (TARGET_OVERRIDES_FORMAT_ATTRIBUTES): Use of user defined attributes.
9562         (gnu_target_overrides_format_attributes): New.
9563         * c-format.h: Add structure target_ovr_attr to hold
9564         system specific formatter names.
9565         * config.gcc: Add for x86&x86_64 cygwin and mingw32 targets the
9566         msformat-c.o file to c_target_objs and cxx_target_objs.
9567         * config/i386/mingw32.h (TARGET_OVERRIDES_FORMAT_ATTRIBUTES): New.
9568         (TARGET_OVERRIDES_FORMAT_ATTRIBUTES_COUNT): New.
9569         (TARGET_N_FORMAT_TYPES): New.
9570         * config/i386/msformat-c.c: New.
9571         * config/i386/t-cygming: Add build rule for msformat-c.o.
9572         * doc/extend.texi: Add new format names gnu_* and ms_* and
9573         further details.
9574         * doc/tm.texi: (TARGET_OVERRIDES_FORMAT_ATTRIBUTES): New.
9575
9576 2008-03-20  Ira Rosen  <irar@il.ibm.com>
9577
9578         * doc/invoke.texi (-O3): Add -ftree-vectorize to the list of
9579         optimizations turned on under -O3.
9580         (ftree-vectorize): Add that the flag is turned on with -O3.
9581
9582 2008-03-20  Ben Elliston  <bje@au.ibm.com>
9583
9584         * regmove.c (try_auto_increment): Fix spelling error in comment.
9585         * final.c (final_scan_insn): Likewise.
9586
9587 2008-03-20  Uros Bizjak  <ubizjak@gmail.com>
9588
9589         PR target/14552
9590         * config/i386/mmx.md (*mov<mode>_internal_rex64"): Adjust register
9591         allocator preferences for "y" and "r" class registers.
9592         ("*mov<mode>_internal"): Ditto.
9593         ("*movv2sf_internal_rex64"): Ditto.
9594         ("*movv2sf_internal"): Ditto.
9595
9596 2008-03-19  Michael Matz  <matz@suse.de>
9597
9598         PR middle-end/35616
9599         * calls.c (expand_call): Check overlap of arguments with call
9600         address for sibcalls.
9601
9602 2008-03-19  Uros Bizjak  <ubizjak@gmail.com>
9603
9604         PR target/35496
9605         * stor-layout.c (update_alignment_for_field): Set minimum alignment
9606         of the underlying type of a MS bitfield layout to the natural
9607         alignment of the type.
9608
9609 2008-03-19  Jan Hubicka  <jh@suse.cz>
9610
9611         PR other/35094
9612         * toplev.c (decode_d_option): Handle all CPP flags.
9613         * tree-vrp.c: Update tree_pass descriptors.
9614         * regrename.c: Update tree_pass descriptors.
9615         * fwprop.c: Update tree_pass descriptors.
9616         * doc/invoke.texi: Remove documentation of dropped -d? flags.
9617         * tree-into-ssa.c: Update tree_pass descriptors.
9618         * tree-dump.c: Update tree_pass descriptors.
9619         * tree-complex.c: Update tree_pass descriptors.
9620         * tree-dump.h: Update tree_pass descriptors.
9621         * see.c: Update tree_pass descriptors.
9622         * cgraphbuild.c: Update tree_pass descriptors.
9623         * tracer.c: Update tree_pass descriptors.
9624         * tree-loop-distribution.c: Update tree_pass descriptors.
9625         * cgraph.c: Update tree_pass descriptors.
9626         * postreload-gcse.c: Update tree_pass descriptors.
9627         * postreload.c: Update tree_pass descriptors.
9628         * tree-ssa-loop-ch.c: Update tree_pass descriptors.
9629         * tree-tailcall.c: Update tree_pass descriptors.
9630         * tree-pass.h (tree_opt_pass): Rename to ...
9631         (opt_pass) ... this one; add "type" field and remove letter field.
9632         (gimple_opt_pass, rtl_opt_pass, simple_ipa_opt_pass): New.
9633         (execute_pass_list, execute_ipa_pass_list, all_passes, all_ipa_passes,
9634         all_lowering_passes): Update declaration.
9635         * ipa-cp.c: Update tree_pass descriptors.
9636         * final.c: Update tree_pass descriptors.
9637         * omp-low.c: Update tree_pass descriptors.
9638         * tree-ssa-dse.c: Update tree_pass descriptors.
9639         * ipa-reference.c: Update tree_pass descriptors.
9640         * tree-ssa-uncprop.c: Update tree_pass descriptors.
9641         * auto-inc-dec.c: Update tree_pass descriptors.
9642         * reorg.c: Update tree_pass descriptors.
9643         * cgraphunit.c: Update tree_pass descriptors.
9644         * tree-ssa-copyrename.c: Update tree_pass descriptors.
9645         * tree-ssa-ccp.c: Update tree_pass descriptors.
9646         * df-core.c: Update tree_pass descriptors.
9647         * mode-switching.c: Update tree_pass descriptors.
9648         * tree-nomudflap.c: Update tree_pass descriptors.
9649         * modulo-sched.c: Update tree_pass descriptors.
9650         * ipa-pure-const.c: Update tree_pass descriptors.
9651         * cse.c: Update tree_pass descriptors.
9652         * web.c: Update tree_pass descriptors.
9653         * tree-stdarg.c: Update tree_pass descriptors.
9654         * tree-ssa-math-opts.c: Update tree_pass descriptors.
9655         * tree-ssa-dom.c: Update tree_pass descriptors.
9656         * tree-nrv.c: Update tree_pass descriptors.
9657         * tree-ssa-alias.c: Update tree_pass descriptors.
9658         * loop-init.c: Update tree_pass descriptors.
9659         * gimple-low.c: Update tree_pass descriptors.
9660         * ipa-inline.c: Update tree_pass descriptors.
9661         * tree-ssa-sink.c: Update tree_pass descriptors.
9662         * global.c: Update tree_pass descriptors.
9663         * ifcvt.c: Update tree_pass descriptors.
9664         * jump.c: Update tree_pass descriptors.
9665         * predict.c: Update tree_pass descriptors.
9666         * tree-ssa-loop.c: Update tree_pass descriptors.
9667         * recog.c: Update tree_pass descriptors.
9668         * dse.c: Update tree_pass descriptors.
9669         * tree-ssa-ifcombine.c: Update tree_pass descriptors.
9670         * tree-eh.c: Update tree_pass descriptors.
9671         * regmove.c: Update tree_pass descriptors.
9672         * local-alloc.c
9673         * function.c: Update tree_pass descriptors.
9674         * tree-vectorizer.c: Update tree_pass descriptors.
9675         * gcse.c: Update tree_pass descriptors.
9676         * ipa-type-escape.c: Update tree_pass descriptors.
9677         * tree-if-conv.c: Update tree_pass descriptors.
9678         * init-regs.c: Update tree_pass descriptors.
9679         * ipa.c: Update tree_pass descriptors.
9680         * tree-ssa-phiopt.c: Update tree_pass descriptors.
9681         * rtl-factoring.c: Update tree_pass descriptors.
9682         * lower-subreg.c: Update tree_pass descriptors.
9683         * bt-load.c: Update tree_pass descriptors.
9684         * tree-dfa.c: Update tree_pass descriptors.
9685         * except.c: Update tree_pass descriptors.
9686         * emit-rtl.c: Update tree_pass descriptors.
9687         * cfgexpand.c: Update tree_pass descriptors.
9688         * tree-cfgcleanup.c: Update tree_pass descriptors.
9689         * cfgcleanup.c: Update tree_pass descriptors.
9690         * tree-ssa-pre.c: Update tree_pass descriptors.
9691         * tree-sra.c: Update tree_pass descriptors.
9692         * tree-mudflap.c: Update tree_pass descriptors.
9693         * tree-ssa-copy.c: Update tree_pass descriptors.
9694         * cfglayout.c: Update tree_pass descriptors.
9695         * tree-ssa-forwprop.c: Update tree_pass descriptors.
9696         * tree-ssa-dce.c: Update tree_pass descriptors.
9697         * tree-ssa.c: Update tree_pass descriptors.
9698         * regclass.c: Update tree_pass descriptors.
9699         * integrate.c: Update tree_pass descriptors.
9700         * tree-optimize.c: Update tree_pass descriptors.
9701         * tree-ssa-phiprop.c: Update tree_pass descriptors.
9702         * tree-object-size.c: Update tree_pass descriptors.
9703         * combine.c: Update tree_pass descriptors.
9704         * tree-outof-ssa.c: Update tree_pass descriptors.
9705         * bb-reorder.c: Update tree_pass descriptors.
9706         * stack-ptr-mod.c: Update tree_pass descriptors.
9707         * var-tracking.c: Update tree_pass descriptors.
9708         * tree-profile.c: Update tree_pass descriptors.
9709         * tree-vect-generic.c: Update tree_pass descriptors.
9710         * reg-stack.c: Update tree_pass descriptors.
9711         * sched-rgn.c: Update tree_pass descriptors.
9712         * tree-ssa-structalias.c: Update tree_pass descriptors.
9713         * tree-cfg.c: Update tree_pass descriptors.
9714         * passes.c (current_pass): Update declaration.
9715         (finish_optimization_passes): Update.
9716         (all_passes, all_ipa_passes, all_lowering_passes): Update declaration.
9717         (register_one_dump_file, register_dump_files_1, next_pass_1):
9718         Update arguments.
9719         (init_optimization_passes): Update handling of new types.
9720         (execute_one_pass, execute_pass_list, execute_ipa_pass_list): Update.
9721         * ipa-struct-reorg.c: Update tree_pass descriptors.
9722         * tree-ssa-reassoc.c: Update tree_pass descriptors.
9723         * combine-stack-adj.c: Update tree_pass descriptors.
9724         * cfgrtl.c: Update tree_pass descriptors.
9725         * dce.c: Update tree_pass descriptors.
9726         * tree-ssanames.c: Update tree_pass descriptors.
9727
9728 2008-03-19  Richard Guenther  <rguenther@suse.de>
9729
9730         PR middle-end/35609
9731         * tree-ssa.c (walk_data): New structure.
9732         (warn_uninitialized_var): If not always_executed warn with "maybe"
9733         instead of "is".
9734         (execute_early_warn_uninitialized): Compute post-dominators.
9735         Initialize always_executed before processing each basic block.
9736
9737 2008-03-18  Mikulas Patocka  <mikulas@artax.karlin.mff.cuni.cz>
9738
9739         PR target/35504
9740         * config/i386/i386.c (x86_this_parameter): Calculate correct location
9741         of "this" pointer when "regparm = N" or "fastcall" is in effect.
9742
9743 2008-03-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9744
9745         * doc/include/texinfo.tex: Update to version 2008-03-17.10.
9746
9747 2008-03-18  Paolo Bonzini  <bonzini@gnu.org>
9748
9749         * expr.c (store_expr): Assume lang_hooks.reduce_bit_field_operations
9750         is true.
9751         (expand_expr_real_1) <REDUCE_BIT_FIELD>: Don't look at ignore.
9752         (expand_expr_real_1): Assume lang_hooks.reduce_bit_field_operations
9753         is true.  Add "&& !ignore" condition to reduce_bit_field.  Modify
9754         target after ignore has been set, and move there also the commputation
9755         of subtarget and original_target.
9756         * langhooks-def.h (LANG_HOOKS_REDUCE_BIT_FIELD_OPERATIONS): Delete.
9757         (LANG_HOOKS_INITIALIZER): Remove it.
9758         * langhooks.h (struct lang_hooks): Remove reduce_bit_field_operations.
9759
9760 2008-03-18  Richard Guenther  <rguenther@suse.de>
9761
9762         * tree-ssa-sccvn.c (visit_reference_op_load): If the lookup
9763         found an expression with constants, note that in the VN for the lhs.
9764         * tree-ssa-pre.c (eliminate): Visit COND_EXPR statements and
9765         fold them to constants if possible.  Run cleanup_cfg if done so.
9766         (execute_pre): Return todo.
9767         (do_pre): Likewise.
9768         (execute_fre): Likewise.
9769         * tree-ssa-forwprop.c (can_propagate_from): Allow propagation
9770         of constants.
9771         (get_prop_source_stmt): Look through pointer conversions.
9772
9773 2008-03-18  Jan Hubicka  <jh@suse.cz>
9774
9775         * tree-pretty-print.c: Include predict.h.
9776         (dump_generic_node): Dump predictor.
9777         * tree.h (PREDICT_EXPR_OUTCOME, PREDICT_EXPR_PREDICTION): Update.
9778         * tree-gimple.c (is_gimple_stmt): Add PREDICT_EXPR.
9779         * gimple-low.c (lower_stmt): Likewise.
9780         * expr.c (expand_expr_real): Likewise.
9781         * predict.c (tree_bb_level_predictions): Use PREDICT_EXPRs and remove
9782         them.
9783         (build_predict_expr, build_predict_expr): New.
9784         * predict.h (predictor_name, build_predict_expr): Update.
9785         * c-typeck.c (c_finish_bc_stmt): Add prediction.
9786         * gimplify.c (gimplify_expr): Add PREDICT_EXPR.
9787         * predict.def (PRED_CONTINUE): Update hitrate.
9788         * tree.def (PREDICT_EXPR): Define.
9789         * tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Mark PREDICT_EXPR;
9790         do not handle BIND_EXPR.
9791         * tree-inline.c (estimate_num_insns_1): PREDICT_EXPR is free.
9792         * tree-cfg.c (verify_gimple_stmt): PREDICT_EXPR is valid.
9793         * tree-ssa-operands.c (get_expr_operands): PREDICT_EXPR takes no
9794         operands.
9795
9796 2008-03-18  Michael Matz  <matz@suse.de>
9797
9798         * gcov-io.h (__gcov_merge_ior, __gcov_fork): Mark hidden.
9799
9800 2008-03-18  Richard Guenther  <rguenther@suse.de>
9801
9802         * tree-gimple.h (is_gimple_invariant_address): Declare.
9803         (is_gimple_constant): Likewise.
9804         * tree-gimple.c (is_gimple_constant): New function.
9805         (is_gimple_invariant_address): Likewise.
9806         (is_gimple_min_invariant): Implement in terms of is_gimple_constant
9807         and is_gimple_invariant_address.
9808         * tree-ssa-loop-niter.c (expand_simple_operations): Revert
9809         previous change.
9810         * tree-data-ref.c (get_references_in_stmt): A SSA_NAME is not
9811         an addressable base.
9812
9813 2008-03-18  Jakub Jelinek  <jakub@redhat.com>
9814
9815         PR middle-end/35611
9816         * gimplify.c (gimplify_expr): Gimplify second operand of
9817         OMP_ATOMIC_LOAD.
9818
9819 2008-03-17  Richard Guenther  <rguenther@suse.de>
9820
9821         PR tree-optimization/19637
9822         * fold-const.c (fold_unary): Remove restrictions of removing
9823         intermediate pointer-conversions (P2)(P1)P0.
9824         * tree-ssa-ccp.c (maybe_fold_stmt_addition): Recover from
9825         conversion to void pointer.
9826         (get_maxval_strlen): Handle addresses of the form &(*p)[0].
9827
9828 2008-03-16  James E. Wilson  <wilson@tuliptree.org>
9829
9830         PR debug/31510
9831         * dbxout.c (dbxout_expand_expr, case VAR_DECL): Return NULL for
9832         emulated thread local variables.
9833
9834 2008-03-16  Richard Guenther  <rguenther@suse.de>
9835
9836         PR middle-end/35607
9837         * tree-ssa-loop-niter.c (expand_simple_operations): Do not
9838         expand TREE_INVARIANT operations that are not gimple invariant.
9839
9840 2008-03-16  Hans-Peter Nilsson  <hp@axis.com>
9841
9842         * doc/extend.texi (Alignment): Say that the ABI controls
9843         the __alignof__ for non-strict-alignment targets rather
9844         than being a recommendation.
9845
9846 2008-03-15  Paul Brook  <paul@codesourcery.com>
9847
9848         * config/arm/arm.c (arm_unwind_emit): Suppress unused unwinding
9849         annotations.
9850         (arm_output_fn_unwind): Mark functions that can not be unwound.
9851
9852 2008-03-15  Paul Brook  <paul@codesourcery.com>
9853
9854         * config/arm/arm.c (arm_rtx_costs_1): Add costs for ARMv6 value
9855         extension instructions.
9856
9857 2008-03-15  Richard Guenther  <rguenther@suse.de>
9858
9859         * tree-ssa-ccp.c (ccp_fold): Also read from constant values
9860         and fold constant aggregate refs.
9861         (fold_const_aggregate_ref): Handle string constants
9862         and constructors in ARRAY_REFs.  Handle INDIRECT_REF.
9863         (evaluate_stmt): Simplify now that ccp_fold folds constant
9864         aggregate refs.
9865
9866 2008-03-15  Paul Brook  <paul@codesourcery.com>
9867
9868         * config/arm/arm.md (insv): Use gen_insv_t2 and gen_insv_zero.
9869         (extzv): Use gen_extzv_t2.
9870         (insv_t2, insv_zero, extv, extzv_t2): New patterns.
9871
9872 2008-03-15  Richard Guenther  <rguenther@suse.de>
9873
9874         * tree-ssa-ccp.c (get_symbol_constant_value): Export.
9875         (fold_const_aggregate_ref): Likewise.
9876         (get_value): Return NULL if we don't have any values.
9877         (ccp_finalize): Set const_val to NULL after freeing it.
9878         * tree-flow.h (get_symbol_constant_value): Declare.
9879         (fold_const_aggregate_ref): Likewise.
9880         * tree-ssa-sccvn.c (try_to_simplify): Use them.
9881
9882 2008-03-15  Richard Guenther  <rguenther@suse.de>
9883
9884         PR middle-end/35593
9885         * tree-ssa-ccp.c (maybe_fold_offset_to_array_ref): Make sure
9886         to not produce negative array indices if not allowed.  Add
9887         parameter to indicate that.
9888         (maybe_fold_offset_to_component_ref): Allow negative array
9889         indices only for the first member of a structure.
9890         (maybe_fold_offset_to_reference): Allow negative array indices.
9891         (maybe_fold_stmt_addition): Likewise.
9892
9893 2008-03-15  Bjoern Haase  <bjoern.m.haase@web.de>
9894             Anatoly Sokolov <aesok@post.ru>
9895
9896         * config/avr/avr.c (avr_arch_types): Add avr6 entry.
9897         (avr_arch): Add ARCH_AVR6.
9898         (avr_mcu_types): Add 'atmega2560' and 'atmega2561' entry.
9899         (initial_elimination_offset): Initialize and use 'avr_pc_size' 
9900         instead of fixed value 2.
9901         (print_operand_address): Use gs() asm specifier instead of pm().
9902         (avr_assemble_integer): (Ditto.).
9903         (avr_output_addr_vec_elt): (Ditto.).
9904         (print_operand): Handle "!" code.
9905         * config/avr/avr.h (TARGET_CPU_CPP_BUILTINS): Add 
9906         __AVR_3_BYTE_PC__, __AVR_2_BYTE_PC__ and __AVR_HAVE_JMP_CALL__.
9907         (AVR_HAVE_EIJMP_EICALL): Define.
9908         (AVR_3_BYTE_PC): Redefine.
9909         (AVR_2_BYTE_PC): (Ditto.).
9910         (PRINT_OPERAND_PUNCT_VALID_P): Add '!' code.
9911         (LINK_SPEC): Add atmega2560 and atmega2561.
9912         (CRT_BINUTILS_SPEC): Add atmega2560 (crtm2560.o) and atmega2561 
9913         (crtm2561.o).
9914         * config/avr/avr.md (call_insn): Use eicall instead of icall 
9915         for 3 byte PC devices.
9916         (call_value_insn): (Ditto.).
9917         (*tablejump_enh): Use eijmp instead of ijmp for 3 byte PC devices.
9918         (indirect_jump): Use only for for 2 byte PC devices.
9919         (*tablejump): (Ditto.).
9920         (*indirect_jump_avr6): Add insn.
9921         (*tablejump_rjmp): Don't use for 3 byte PC devices.
9922         * config/avr/libgcc.S (__prologue_saves__): Use eijmp 
9923         instead of ijmp for 3 byte PC devices.
9924         (__tablejump2__): (Ditto.).
9925         * config/avr/t-avr (MULITLIB_OPTIONS): Add avr6 architecture.
9926         (MULITLIB_DIRNAMES): (Ditto.). 
9927         (MULTILIB_MATCHES): Add atmega2560 and atmega2561 to list.
9928
9929 2008-03-15  Uros Bizjak  <ubizjak@gmail.com>
9930
9931         * config/i386/mmx.md ("sse2_umulv1siv2di3"): Rename from
9932         "sse2_umulsidi3".  Use V1DI mode for operand 0.
9933         ("mmx_psadbw"): Use V1DI mode for operand 0.
9934         * config/i386/i386-modes.def (V1SI): New vector mode.
9935         * config/i386/i386.c (struct builtin_description)
9936         [IX86_BUILTIN_PMULUDQ]: Use CODE_FOR_sse2_umulv1siv1di3.
9937         (v1di_ftype_v8qi_v8qi): Rename from di_ftype_v8qi_v8qi.
9938         (v1di_ftype_v2si_v2si): Rename from di_ftype_v2si_v2si.
9939         (ix86_init_mmx_sse_builtins) [__builtin_ia32_psadbw]: Use
9940         v1di_ftype_v8qi_v8qi type.
9941         [__builtin_ia32_pmuludq]: Use v1di_ftype_v2si_v2si type.
9942
9943         * doc/extend.texi (X86 Built-in Functions) [__builtin_ia32_psadbw,
9944         __builtin_ia32_pmuludq]: Fix the mode of return value.
9945
9946 2008-03-15  Richard Guenther  <rguenther@suse.de>
9947
9948         PR middle-end/35595
9949         * tree-ssa-pre.c (bitmap_find_leader): Handle expression
9950         being a PHI_NODE.
9951
9952 2008-03-14  Bob Wilson  <bob.wilson@acm.org>
9953         
9954         * doc/invoke.texi (Option Summary, Xtensa Options): Document
9955         -mserialize-volatile and -mno-serialize-volatile Xtensa options.
9956         * config/xtensa/xtensa.c (print_operand): Do not emit MEMW instructions
9957         unless TARGET_SERIALIZE_VOLATILE is enabled.
9958         * config/xtensa/xtensa.md (*lsiu, *ssiu): Likewise.
9959         * config/xtensa/xtensa.h (TARGET_DEFAULT): Add MASK_SERIALIZE_VOLATILE.
9960         * config/xtensa/xtensa.opt (mserialize_volatile): New option.
9961
9962 2008-03-14  Richard Guenther  <rguenther@suse.de>
9963
9964         PR tree-optimization/34172
9965         * tree-flow.h (refs_may_alias_p): Declare.
9966         (get_single_def_stmt): Likewise.
9967         (get_single_def_stmt_from_phi): Likewise.
9968         (get_single_def_stmt_with_phi): Likewise.
9969         * tree-dfa.c (refs_may_alias_p): New function.
9970         (get_single_def_stmt): Likewise.
9971         (get_single_def_stmt_from_phi): Likewise.
9972         (get_single_def_stmt_with_phi): Likewise.
9973         * tree-ssa-sccvn.c (get_def_ref_stmt_vuses): New function.
9974         (vn_reference_lookup_1): New helper function.
9975         (vn_reference_lookup): Walk the virtual use-def chain to
9976         continue searching for a match if the def does not alias the
9977         reference we are looking for.
9978
9979 2008-03-14  David Edelsohn  <edelsohn@gnu.org>
9980
9981         * doc/install.texi (Binaries): Remove UCLA archive.  Add HVCC
9982         archive and Perzl.  Update The Written Word listing.
9983
9984 2008-03-14  Richard Guenther  <rguenther@suse.de>
9985
9986         PR tree-optimization/34043
9987         PR tree-optimization/33989
9988         * tree-ssa-pre.c (execute_pre): Allow SCCVN to do insertion
9989         when doing FRE.
9990         (bitmap_find_leader): Use extra argument to verify dominance
9991         relationship inside a basic-block.
9992         (can_PRE_operation): Add VIEW_CONVERT_EXPR.
9993         (find_leader_in_sets): Adjust.
9994         (create_component_ref_by_pieces): Take extra argument for
9995         dominance check, handle lookup failures.
9996         (find_or_generate_expression): Likewise.
9997         (create_expression_by_pieces): Likewise.
9998         (insert_into_preds_of_block): Adjust.
9999         (create_value_expr_from): If asked for, verify all operands
10000         are in the blocks AVAIL_OUT set.
10001         (make_values_for_stmt): Check for SSA_NAMEs that are life
10002         over an abnormal edge.
10003         (compute_avail): Remove such check.
10004         (do_SCCVN_insertion): New function.
10005         (eliminate): If we do not find a leader suitable for replacement
10006         insert a replacement expression from SCCVN if available.
10007         * tree-ssa-sccvn.h (run_scc_vn): Update prototype.
10008         (struct vn_ssa_aux): Add needs_insertion flag.
10009         * tree-ssa-sccvn.c (may_insert): New global flag.
10010         (copy_reference_ops_from_ref): Value-number union member access
10011         based on its size, not type and member if insertion is allowed.
10012         (visit_reference_op_load): For a weak match from union type
10013         punning lookup a view-converted value and insert a SSA_NAME
10014         for that value if that is not found.
10015         (visit_use): Make dumps shorter.  Do not disallow value numbering
10016         SSA_NAMEs that are life over an abnormal edge to constants.
10017         (free_scc_vn): Release inserted SSA_NAMEs.
10018         (run_scc_vn): New flag to specify whether insertion is allowed.
10019         Process SSA_NAMEs in forward order.
10020         * tree-ssa-loop-im.c (for_each_index): Handle invariant
10021         ADDR_EXPRs inside VIEW_CONVERT_EXPR.
10022         * fold-const.c (fold_unary): Fold VIEW_CONVERT_EXPRs from/to
10023         pointer type to/from integral types that do not change the
10024         precision to regular conversions.
10025
10026 2008-03-13  Uros Bizjak  <ubizjak@gmail.com>
10027
10028         * doc/extend.texi (X86 Built-in Functions) [__builtin_ia32_psll?,
10029         __builtin_ia32_psrl?, __builtin_ia32_psra?, __builtin_ia32_psll?i,
10030         __builtin_ia32_psrl?i, __builtin_ia32_psra?i, __builtin_ia32_psll?128,
10031         __builtin_ia32_psrl?128, __builtin_ia32_psra?128]: Fix the mode of
10032         input arguments and the mode of return value.  Built-in functions
10033         that operate on whole 64-bit MMX register now use V1DI mode.
10034
10035 2008-03-13  Alon Dayan  <alond@il.ibm.com>
10036             Olga Golovanevsky  <olga@il.ibm.com>
10037
10038         PR tree-optimization/35041
10039         * ipa-struct-reorg.c (find_pos_in_stmt_1): Add another option
10040         to locate the right position in a statement.
10041
10042 2008-03-13  Uros Bizjak  <ubizjak@gmail.com>
10043
10044         PR target/34000
10045         PR target/35553
10046         * config/i386/xmmintrin.h:  Change all static inline functions to
10047         extern inline and add __gnu_inline__ attribute.
10048         * config/i386/bmintrin.h: Ditto.
10049         * config/i386/smmintrin.h: Ditto.
10050         * config/i386/tmmintrin.h: Ditto.
10051         * config/i386/mmintrin-common.h: Ditto.
10052         * config/i386/ammintrin.h: Ditto.
10053         * config/i386/emmintrin.h: Ditto.
10054         * config/i386/pmmintrin.h: Ditto.
10055         * config/i386/mmintrin.h: Ditto.
10056         * config/i386/mm3dnow.h: Ditto.
10057
10058 2008-03-13  Jakub Jelinek  <jakub@redhat.com>
10059
10060         PR middle-end/35185
10061         * omp-low.c (lower_regimplify, init_tmp_var, save_tmp_var): Removed.
10062         (lower_omp_2): New function.
10063         (lower_omp_1, lower_omp): Rewritten.
10064
10065 2008-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
10066
10067         PR 35054
10068         * doc/extend.texi (Structure-Packing Pragmas): Replace "Win32"
10069         with the phrase "Microsoft Windows compilers".
10070         (Push/Pop Macro Pragmas): New subsection. Document
10071         #pragma push_macro and pragma pop_macro.
10072
10073 2008-03-12  Paul Brook  <paul@codesourcery.com>
10074
10075         * config/arm/arm.c (output_move_double): Prefer LDRD to LDM.
10076
10077 2008-03-12  Paul Brook  <paul@codesourcery.com>
10078
10079         * config/arm/thumb2.md: Extend peephole to cover 3-arg subs.
10080         (thumb2_alusi3_short): Exclude PLUS and MINUS.
10081         (thumb2_addsi_shortim): Rename ...
10082         (thumb2_addsi_short): ... to this.  Allow register operands.
10083         (thumb2_subsi_short): New pattern.
10084         (thumb2_one_cmplsi2_short,
10085         thumb2_negsi2_short): New patterns and peepholes.
10086
10087 2008-03-12  Paul Brook  <paul@codesourcery.com>
10088
10089         * config/arm/arm.c (arm_size_rtx_costs): Use ARM costs for Thumb-2.
10090
10091 2008-03-12  Uros Bizjak  <ubizjak@gmail.com>
10092
10093         * config/i386/i386.md (int_cond): New code iterator.
10094         (fp_cond): Ditto.
10095         ("s<code>"): Macroize expander from seq, sne, sgt, sgtu, slt, sltu,
10096         sge, sgeu, sle and sleu expanders usign int_cond code iterator.
10097         ("s<code>"): Macroize expander from sunordered, sordered, suneq, sunge,
10098         sungt, sunle, sunlt and sltgt expanders usign fp_cond code iterator.
10099         ("b<code>"): Macroize expander from beq, bne, bgt, bgtu, blt, bltu,
10100         bge, bgeu, ble and bleu expanders usign int_cond code iterator.
10101         ("b<code>"): Macroize expander from bunordered, bordered, buneq, bunge,
10102         bungt, bunle, bunlt and bltgt expanders usign fp_cond code iterator.
10103
10104 2008-03-12  Paul Brook  <paul@codesourcery.com>
10105
10106         * config/arm/arm.c (use_return_insn): Use offsets->saved_regs_mask
10107         instead of {arm,thumb}_compute_save_reg_mask.
10108         (output_return_instruction): Ditto.
10109         (thumb_unexpanded_epilogue): Ditto.
10110         (thumb1_expand_prologue): Ditto.
10111         (thumb1_output_function_prologue): Ditto.
10112         (arm_set_return_address): Ditto.
10113         (thumb_set_return_address): Ditto.
10114         (arm_get_frame_offsets): Set offsets->saved_regs_mask.  Push extra
10115         regs to achieve stack alignment.
10116         (thumb1_compute_save_reg_mask): Fix compiler warning.
10117         (arm_output_epilogue): Use offsets->saved_regs_mask.
10118         Adjust stack pointer by poping call clobered registers.
10119         (arm_expand_prologue): Use offsets->saved_regs_mask.
10120         Adjust stack pointer by pushing extra registers.
10121         * config/arm.h (arm_stack_offsets): Add saved_regs_mask.
10122
10123 2008-03-12  Paolo Bonzini  <bonzini@gnu.org>
10124
10125         PR tree-opt/35422
10126         * fold-const.c (fold_unary) <NOP_EXPR>: Distribute a narrowing
10127         conversion to the operands of a multiplication.
10128
10129 2008-03-12  Richard Guenther  <rguenther@suse.de>
10130
10131         * Makefile.in (OBJS-common): Add tree-ssa-phiprop.o
10132         (tree-ssa-phiprop.o): Copy dependencies from tree-ssa-forwprop.o.
10133         * timevar.def (TV_TREE_PHIPROP): Add.
10134         * tree-ssa-phiprop.c: Split from tree-ssa-forwprop.c, added
10135         pass description.  Use TV_TREE_PHIPROP.
10136         * tree-ssa-forwprop.c: Remove phiprop code.
10137
10138 2008-03-12  Jakub Jelinek  <jakub@redhat.com>
10139
10140         PR middle-end/35549
10141         * omp-low.c (maybe_lookup_decl): Constify first argument.
10142         (use_pointer_for_field): Change last argument from bool to
10143         omp_context *.  Disallow shared copy-in/out in nested
10144         parallel if decl is shared in outer parallel too.
10145         (build_outer_var_ref, scan_sharing_clauses,
10146         lower_rec_input_clauses, lower_copyprivate_clauses,
10147         lower_send_clauses, lower_send_shared_vars): Adjust callers.
10148
10149 2008-03-12  Victor Kaplansky  <victork@il.ibm.com>
10150             Ira Rosen  <irar@il.ibm.com>
10151
10152         * tree-vectorizer.c (free_stmt_vec_info): New function.
10153         (destroy_loop_vec_info): Move code to free_stmt_vec_info().
10154         Call free_stmt_vec_info(). Free LOOP_VINFO_STRIDED_STORES..
10155         * tree-vectorizer.h (free_stmt_vec_info): Declare.
10156         * tree-vect-transform.c (vectorizable_conversion): Free
10157         vec_oprnds0 if it was allocated.
10158         (vect_permute_store_chain): Remove unused VECs.
10159         (vectorizable_store): Free VECs that are allocated in the..
10160         function.
10161         (vect_transform_strided_load, vectorizable_load): Likewise.
10162         (vect_remove_stores): Simplify the code.
10163         (vect_transform_loop): Move code to vect_remove_stores().
10164         Call vect_remove_stores() and free_stmt_vec_info().
10165
10166 2008-03-11  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
10167
10168         * pa.h (TARGET_LONG_PIC_SDIFF_CALL): Conditionalize define on
10169         TARGET_HPUX.  Revise comment.
10170         (TARGET_LONG_PIC_PCREL_CALL): Revise comment.
10171         * pa.c (output_call): Update for revised TARGET_LONG_PIC_SDIFF_CALL.
10172         Use sr4 variant of `be' instruction when not generating PIC code.
10173         (attr_length_call): Adjust for above change.
10174
10175 2008-03-11  Andrew Pinski  <andrew_pinski@playstation.sony.com>
10176
10177         * ipa-reference.c (static_execute): Remove module_statics_const and
10178         associated setting code.
10179
10180 2008-03-11  Uros Bizjak  <ubizjak@gmail.com>
10181
10182         PR target/35540
10183         * config/i386/i386.md (paritysi2, paritydi2): Use register_operand
10184         predicate for operand 1.
10185         (paritysi2_cmp): Use register_operand predicate for operand 2.
10186         Use earlyclobber modifier for operand 1.  Remove support for
10187         memory operands.
10188         (paritydi2_cmp): Use register_operand predicate for operand 3.
10189         Use earlyclobber modifier for operand 1.  Remove support for
10190         memory operands.
10191
10192 2008-03-11  Paul Brook  <paul@codesourcery.com>
10193             Vladimir Prus  <vladimir@codesourcery.com>
10194
10195         * config/arm/arm.c (use_return_insn): Check TARGET_APCS_FRAME.
10196         (arm_compute_save_reg0_reg12_mask): Always
10197         check if register 11 must be saved.  Always safe hard frame pointer
10198         when frame_pointer_needeed.
10199         (arm_compute_save_reg_mask): Save IP and PC
10200         only with apcs frames.
10201         (arm_output_epilogue): Adjust Thumb2 codepath to
10202         be also invoked and work for ARM non-apcs frames.
10203         (arm_expand_prologue): Don't bother saving IP
10204         for non-apcs frame, since it's not clobbered by
10205         prologue code.  Implement non-apcs frame
10206         layout.
10207
10208 2008-03-11  Paolo Bonzini  <bonzini@gnu.org>
10209
10210         PR rtl-optimization/35281
10211         * expr.c (convert_move): Use a new pseudo for the intermediate
10212         from_mode->word_mode result.
10213
10214 2008-03-11  Paolo Bonzini  <bonzini@gnu.org>
10215
10216         * langhooks-def.h (LANG_HOOKS_CLEAR_BINDING_STACK): Delete.
10217         * langhooks.h (struct lang_hooks): Delete clear_binding_stack member.
10218         * toplev.c (compile_file): Don't call it.
10219
10220 2008-03-11  Uros Bizjak  <ubizjak@gmail.com>
10221
10222         PR middle-end/35526
10223         * expr.c (store_expr): Call emit_block_move if the mode
10224         of "temp" RTX is BLKmode.
10225
10226 2008-03-11  Andrew Pinski  <andrew_pinski@playstation.sony.com>
10227             Richard Guenther  <rguenther@suse.de>
10228
10229         PR tree-optimization/31358
10230         * tree-ssa-loop-manip.c (create_iv): Call force_gimple_operand for
10231         the step with a NULL_TREE.
10232         * tree-ssa-loop-ivopts.c (find_bivs): Convert the step
10233         to sizetype if type is a pointer type.
10234         (add_candidate_1): Don't convert the base and step to
10235         the generic type if the orginal type is a pointer type.
10236         (add_iv_value_candidates): Use sizetype for the step
10237         if type is a pointer type.
10238         (cand_value_at): Likewise.
10239         * tree-ssa-address.c (add_to_parts): Use POINTER_PLUS_EXPR
10240         for pointer types.
10241         * tree-affine.c (tree_to_aff_combination <POINTER_PLUS_EXPR>):
10242         Don't convert the tem affine to the type.
10243         (add_elt_to_tree): Use sizetype for the step if a pointer.
10244         Use POINTER_PLUS_EXPR for pointers.
10245         (aff_combination_to_tree): Use sizetype for the step if a
10246         pointer.
10247
10248 2008-03-10  Vladimir Makarov  <vmakarov@redhat.com>
10249
10250         * config/i386/sse.md (ssse3_pmaddubswv8hi3, ssse3_pmaddubswv4hi3):
10251         Remove commutativity hint.
10252
10253 2008-03-10  Jakub Jelinek  <jakub@redhat.com>
10254
10255         PR c/35438
10256         PR c/35439
10257         * c-parser.c (c_parser_omp_threadprivate): Don't add vars with
10258         errorneous type.  Check that v is a VAR_DECL.
10259
10260         PR middle-end/35099
10261         * tree-cfg.c (new_label_mapper): Update cfun->last_label_uid.
10262
10263 2008-03-10  H.J. Lu  <hongjiu.lu@intel.com>
10264
10265         PR tree-optimization/35494
10266         * tree-ssa-ccp.c (get_symbol_constant_value): Check if value
10267         may be overriden at link and run time.
10268
10269 2008-03-10  Richard Guenther  <rguenther@suse.de>
10270
10271         PR tree-optimization/34677
10272         * tree-ssa-pre.c (modify_expr_node_pool): Remove.
10273         (poolify_tree): Likewise.
10274         (modify_expr_template): Likewise.
10275         (poolify_modify_stmt): Likewise.
10276         (insert_fake_stores): Handle all component-ref style stores
10277         in addition to INDIRECT_REF.  Also handle complex types.
10278         Do not poolify the inserted load.
10279         (realify_fake_stores): Do not rebuild the tree but only
10280         make it a SSA_NAME copy.
10281         (init_pre): Remove initialzation of modify_expr_template.
10282         Do not allocate modify_expr_node_pool.
10283         (fini_pre): Do not free modify_expr_node_pool.
10284
10285 2008-03-10  Paul Brook  <paul@codesourcery.com>
10286
10287         * config/arm/arm.md (UNSPEC_STACK_ALIGN, UNSPEC_PIC_OFFSET): Renumber
10288         to avoid conflicts.
10289
10290 2008-03-10  Paul Brook  <paul@codesourcery.com>
10291             Mark Shinwell  <shinwell@codesourcery.com>
10292
10293         * config/arm/cortex-r4.md: New.
10294         * config/arm/thumb2.md (divsi3, udivsi3): Annotate with
10295         insn attributes.
10296         * config/arm/arm.md: Include cortex-r4.md.
10297         (insn): Add smmls, sdiv and udiv values.
10298         (generic_sched): Don't use generic scheduling for Cortex-R4.
10299         (arm_issue_rate): New function.
10300         (TARGET_SCHED_ISSUE_RATE): Define.
10301
10302 2008-03-10  Sebastian Pop  <sebastian.pop@amd.com>
10303
10304         * doc/invoke.texi (-ftree-loop-distribution): Add an example.
10305
10306 2008-03-10  Richard Guenther  <rguenther@suse.de>
10307
10308         * tree-ssa-pre.c (get_sccvn_value): Simplify.
10309         (compute_avail): Do not add stmt uses to AVAIL_OUT.
10310
10311 2008-03-10  Paolo Bonzini  <bonzini@gnu.org>
10312
10313         * langhooks-def.h (LANG_HOOKS_REDUCE_BIT_FIELD_OPERATIONS):
10314         Set default to true.
10315
10316 2008-03-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10317
10318         * c.opt (Wsynth): Deprecate.
10319         * doc/invoke.texi (Option Summary, Warning Options): Document
10320         -Wno-format-contains-nul.
10321
10322 2008-03-09  Uros Bizjak  <ubizjak@gmail.com>
10323
10324         PR target/35496
10325         * config/i386/i386.c (ix86_constant_alignment): Compute alignment using
10326         ALIGN_MODE_128 for VECTOR_CST and INTEGER_CST in addition to REAL_CST.
10327
10328 2008-03-09  Ira Rosen  <irar@il.ibm.com>
10329
10330         * config/rs6000/rs6000.c (builtin_description): Rename vector
10331         left shift operations.
10332         * config/rs6000/altivec.md (UNSPEC_VSL): Remove.
10333         (altivec_vsl<VI_char>): Rename to ...
10334         (ashl<mode>3): ... new name.
10335         (mulv4sf3, mulv4si3, negv4sf2): Replace gen_altivec_vslw with
10336         gen_ashlv4si3.
10337         (absv4sf2): Convert to use ashift:V4SI instead of UNSPEC_VSL.
10338
10339 2008-03-08  Richard Guenther  <rguenther@suse.de>
10340
10341         * coverage.h (tree_coverage_counter_addr): Declare.
10342         * coverage.c (tree_coverage_counter_addr): New function.
10343         * tree-profile.c (tree_gen_edge_profiler): Unshare counter
10344         before using again.
10345         (tree_gen_pow2_profiler): Use tree_coverage_counter_addr.
10346         (tree_gen_one_value_profiler): Likewise.
10347         (tree_gen_ic_profiler): Likewise.
10348         (tree_gen_average_profiler): Likewise.
10349         (tree_gen_ior_profiler): Likewise.
10350
10351 2008-03-08  Richard Guenther  <rguenther@suse.de>
10352
10353         * tree-ssa-sccvn.h (vn_binary_op_lookup): Remove.
10354         (vn_binary_op_insert): Likewise.
10355         (vn_unary_op_lookup): Likewise.
10356         (vn_unary_op_insert): Likewise.
10357         (vn_nary_op_lookup): Declare.
10358         (vn_nary_op_insert): Likewise.
10359         * tree-ssa-sccvn.c (struct vn_tables_s): Merge unary
10360         and binary hashes, use a single obstack for unary_op_pool
10361         and binary_op_pool.
10362         (struct vn_binary_op_s, struct vn_unary_op_s): Replace with
10363         a single struct vn_nary_op_s.  Store tree code length and
10364         a variable number of operands.
10365         (struct vn_reference_op_struct): Remove unused op2.
10366         (vn_reference_op_eq): Do not compare op2.
10367         (vn_reference_op_compute_hash): Do not compute hash of op2.
10368         (vn_unary_op_hash, vn_binary_op_hash): Replace with vn_nary_op_hash.
10369         (vn_unary_op_compute_hash, vn_binary_op_compute_hash): Replace
10370         with vn_nary_op_compute_hash.
10371         (vn_unary_op_eq, vn_binary_op_eq): Replace with vn_nary_op_eq.
10372         (vn_unary_op_lookup, vn_binary_op_lookup): Replace with
10373         vn_nary_op_lookup.
10374         (vn_unary_op_insert, vn_binary_op_insert): Replace with
10375         vn_nary_op_insert.
10376         (visit_unary_op): Call nary functions.
10377         (visit_binary_op): Likewise.
10378         (process_scc): Adjust for struct vn_tables_s changes.
10379         (allocate_vn_table): Likewise.
10380         (free_vn_table): Likewise.
10381         * tree-vn.c (vn_add): Call nary functions.
10382         (vn_lookup): Likewise.
10383
10384 2008-03-08  Jakub Jelinek  <jakub@redhat.com>
10385
10386         PR target/35498
10387         * config/rs6000/rs6000.c (rs6000_expand_compare_and_swapqhi): Shift
10388         wdst back after sync_compare_and_swapqhi_internal.
10389
10390 2008-03-08  Uros Bizjak  <ubizjak@gmail.com>
10391
10392         PR target/22152
10393         * config/i386/i386-modes.def (V1DI): New vector mode.
10394         * config/i386/i386.h (VALID_MMX_REG_MODE): Add V1DImode.
10395         * config/i386/mmx.md (MMXMODEI8): New mode iterator.
10396         (MMXMODE248): Ditto.
10397         (MMXMODE): Add V1DI mode.
10398         (mmxvecsize): Change DI mode to V1DI mode.
10399         ("mov<mode>): Use MMXMODEI8 mode iterator.
10400         ("*mov<mode>_internal_rex64"): Ditto.
10401         ("*mov<mode>_internal"): Ditto.
10402         ("mmx_add<mode>3"): Ditto.  Handle V1DImode for TARGET_SSE2.
10403         ("mmx_sub<mode>3"): Ditto.
10404         ("mmx_adddi3"): Remove insn pattern.
10405         ("mmx_subdi3"): Ditto.
10406         ("mmx_ashr<mode>3"): Use SImode and "yN" constraint for operand 2.
10407         ("mmx_lshr<mode>3"): Ditto. Use MMXMODE248 mode iterator.
10408         ("mmx_ashl<mode>3"): Ditto.
10409         ("mmx_lshrdi3"): Remove insn pattern.
10410         ("mmx_ashldi3"): Ditto.
10411         * config/i386/i386.c (classify_argument): Handle V1DImode.
10412         (function_arg_advance_32): Ditto.
10413         (function_arg_32): Ditto.
10414         (struct builtin_description) [IX86_BUILTIN_PADDQ]: Use
10415         mmx_addv1di3 insn pattern.
10416         [IX86_BUILTIN_PSUBQ]: Use mmx_subv1di3 insn pattern.
10417         [IX86_BUILTIN_PSLL?, IX86_BUILTIN_PSRL?, IX86_BUILTIN_PSRA?,
10418         IX86_BUILTIN_PSLL?I, IX86_BUILTIN_PSRL?I, IX86_BUILTIN_PSRA?I,
10419         IX86_BUILTIN_PSLL?I128, IX86_BUILTIN_PSRL?I128, IX86_BUILTIN_PSRA?I128]:
10420         Remove definitions of built-in functions.
10421         (V1DI_type_node): New node.
10422         (v1di_ftype_v1di_int): Ditto.
10423         (v1di_ftype_v1di_v1di): Ditto.
10424         (v2si_ftype_v2si_si): Ditto.
10425         (v4hi_ftype_v4hi_di): Remove node.
10426         (v2si_ftype_v2si_di): Ditto.
10427         (ix86_init_mmx_sse_builtins): Handle V1DImode.
10428         (__builtin_ia32_psll?, __builtin_ia32_psrl?, __builtin_ia32_psra?):
10429         Redefine builtins using def_builtin_const with *_ftype_*_int node.
10430         (__builtin_ia32_psll?i, __builtin_ia32_psrl?i, __builtin_ia32_psra?i):
10431         Add new builtins using def_builtin_const.
10432         (ix86_expand_builtin) [IX86_BUILTIN_PSLL?, IX86_BUILTIN_PSRL?,
10433         IX86_BUILTIN_PSRA?, IX86_BUILTIN_PSLL?I, IX86_BUILTIN_PSRL?I,
10434         IX86_BUILTIN_PSRA?I]: Handle builtin definitions.
10435         * config/i386/mmintrin.h (__v1di): New typedef.
10436         (_mm_add_si64): Cast arguments to __v1di type.
10437         (_mm_sub_si64): Ditto.
10438         (_mm_sll_pi16): Cast __count to __v4hi type.
10439         (_mm_sll_pi32): Cast __count to __v2si type.
10440         (_mm_sll_si64): Cast arguments to __v1di type.
10441         (_mm_srl_pi16): Cast __count to __v4hi type.
10442         (_mm_srl_pi32): Cast __count to __v2si type.
10443         (_mm_srl_si64): Cast arguments to __v1di type.
10444         (_mm_sra_pi16): Cast __count to __v4hi type.
10445         (_mm_sra_pi32): Cast __count to __v2si type.
10446         (_mm_slli_pi16): Use __builtin_ia32_psllwi.
10447         (_mm_slli_pi32): Use __builtin_ia32_pslldi.
10448         (_mm_slli_si64): Use __builtin_ia32_psllqi. Cast __m to __v1di type.
10449         (_mm_srli_pi16): Use __builtin_ia32_psrlwi.
10450         (_mm_srli_pi32): Use __builtin_ia32_psrldi.
10451         (_mm_srli_si64): Use __builtin_ia32_psrlqi. Cast __m to __v1di type.
10452         (_mm_srai_pi16): Use __builtin_ia32_psrawi.
10453         (_mm_srai_pi32): Use __builtin_ia32_psradi.
10454         * config/i386/i386.md (UNSPEC_NOP): Remove unspec definition.
10455         * doc/extend.texi (X86 Built-in Functions) [__builtin_ia32_psll?,
10456         __builtin_ia32_psrl?, __builtin_ia32_psra?, __builtin_ia32_psll?i,
10457         __builtin_ia32_psrl?i, __builtin_ia32_psra?i]: Add new builtins.
10458
10459 2008-03-07  Joseph Myers  <joseph@codesourcery.com>
10460
10461         * doc/include/texinfo.tex: Update to version 2008-03-07.10.
10462
10463 2008-03-07  Peter Bergner  <bergner@vnet.ibm.com>
10464
10465         PR target/35373
10466         * config/rs6000/rs6000.c (rs6000_legitimize_address): Don't generate
10467         reg+const addressing for Altivec modes.  Don't generate reg+reg
10468         addressing for TFmode or TDmode quantities.
10469
10470 2008-03-07  Paolo Bonzini  <bonzini@gnu.org>
10471
10472         * c-common.c (vector_types_convertible_p): Call langhook
10473         instead of comptypes.
10474
10475 2008-03-06  Andrew Pinski  <andrew_pinski@playstation.sony.com>
10476
10477         PR tree-opt/35402
10478         * tree-ssa-ccp.c (get_symbol_constant_value): Handle
10479         integral and scalar float variables which have a
10480         NULL DECL_INITIAL.
10481
10482 2008-03-06  Nathan Froyd  <froydnj@codesourcery.com>
10483
10484         * dwarf2out.c (dwarf2out_frame_debug_expr): Consult the
10485         dwarf_register_span hook when emitting unwind information for
10486         register-to-memory saves.
10487         * config/rs6000/rs6000.c (spe_synthesize_frame): Delete.
10488         (rs6000_frame_related): Remove call to spe_synthesize_frame.
10489
10490 2008-03-06  Jakub Jelinek  <jakub@redhat.com>
10491
10492         * gimplify.c (goa_lhs_expr_p): Allow different ADDR_EXPR nodes
10493         for the same VAR_DECL.
10494
10495 2008-03-06  Tom Tromey  <tromey@redhat.com>
10496
10497         * treelang: Delete.
10498         * doc/standards.texi (Standards): Don't mention treelang.
10499         * doc/invoke.texi (Overall Options): Don't mention treelang.
10500         * doc/install.texi (Prerequisites): Don't mention bison or
10501         treelang.
10502         (Configuration): Don't mention treelang.
10503         (Building): Likewise.
10504         * doc/frontends.texi (G++ and GCC): Don't mention treelang.
10505
10506 2008-03-06  Paolo Bonzini  <bonzini@gnu.org>
10507
10508         * simplify-rtx.c (simplify_subreg): Remove useless shifts from
10509         word-extractions out of a multi-word object.
10510
10511 2008-03-06  Richard Guenther  <rguenther@suse.de>
10512
10513         * tree.def (BIT_FIELD_REF): Constrain result type and its precision.
10514         * tree-cfg.c (verify_expr): Verify BIT_FIELD_REF constraints on
10515         result type and precision.
10516         * expr.c (get_inner_reference): Set unsignedp based on the result
10517         type of BIT_FIELD_REF.
10518         * tree.h (BIT_FIELD_REF_UNSIGNED): Remove.
10519         * tree-sra.c (instantiate_element): Do not set BIT_FIELD_REF_UNSIGNED.
10520         (try_instantiate_multiple_fields): Likewise.  Use the correct type
10521         for BIT_FIELD_REF.
10522         (sra_build_assignment): Likewise.
10523         (sra_build_elt_assignment): Likewise.
10524         (sra_explode_bitfield_assignment): Likewise.
10525         * print-tree.c (print_node): Do not check BIT_FIELD_REF_UNSIGNED.
10526         * tree-vect-transform.c (vect_create_epilog_for_reduction): Do not
10527         set BIT_FIELD_REF_UNSIGNED.
10528         (vectorizable_load): Likewise.
10529
10530 2008-03-06  Andreas Krebbel  <krebbel1@de.ibm.com>
10531
10532         * cse.c (cse_extended_basic_block): Invalidate artificial defs
10533         at bb start.
10534
10535 2008-03-06  Richard Guenther  <rguenther@suse.de>
10536
10537         * alias.c (struct alias_set_entry): Move has_zero_child field
10538         to pack with alias_set.
10539
10540 2008-03-05  H.J. Lu  <hongjiu.lu@intel.com>
10541
10542         * config/i386/i386-modes.def: Use 4 byte alignment on DI for
10543         32bit host.
10544
10545 2008-03-05  Ian Lance Taylor  <iant@google.com>
10546
10547         * alias.h (alias_set_type): Change from HOST_WIDE_INT to int.
10548
10549 2008-03-05  Kenneth Zadeck  <zadeck@naturalbridge.com>
10550
10551         * fwprop.c (update_df): Support width and offset parameters of
10552         df_ref_create.
10553         * ra-conflict.c (mark_reg_store, clear_reg_in_live,
10554         global_conflicts): Change DF_REF_EXTRACT to either
10555         DF_REF_ZERO_EXTRACT or DF_REF_SIGN_EXTRACT.  Change
10556         DF_REF_STRICT_LOWER_PART to DF_REF_STRICT_LOW_PART.
10557         * df-scan.c (df_ref_record, df_defs_record,
10558         df_ref_create_structure, df_def_record_1, df_uses_record,
10559         df_get_conditional_uses, df_get_call_refs, df_insn_refs_collect,
10560         df_bb_refs_collect, df_entry_block_defs_collect,
10561         df_exit_block_uses_collect): Support new width and offset fields.
10562         (ref_extract_pool): New storage pool.
10563         (df_free_ref): New function.
10564         (df_reg_chain_unlink, df_free_collection_rec,
10565         df_sort_and_compress_refs): Call df_free_ref.
10566         (df_ref_equal_p, df_ref_compare): Compare offset and width fields
10567         of df_ref_extract.
10568         (df_ref_create_structure): Allocate df_ref_extract if offset and
10569         width fields are used.
10570         (df_def_record_1): Get offset and width from ZERO_EXTRACT.
10571         (df_uses_record): Get offset and width from ZERO_EXTRACT 
10572         and SIGN_EXTRACT.
10573         * global.c (build_insn_chain): Change DF_REF_EXTRACT to either
10574         DF_REF_ZERO_EXTRACT or DF_REF_SIGN_EXTRACT.  Change
10575         DF_REF_STRICT_LOWER_PART to DF_REF_STRICT_LOW_PART.
10576         * df.h (df_ref_flags): Change DF_REF_EXTRACT to either
10577         DF_REF_ZERO_EXTRACT or DF_REF_SIGN_EXTRACT.  Change
10578         DF_REF_STRICT_LOWER_PART to DF_REF_STRICT_LOW_PART.
10579         (df_ref_extract): New structure.
10580         (DF_REF_WIDTH, DF_REF_OFFSET): New macros.
10581         (df_ref_create): Add width and offset parameters.
10582         
10583 2008-03-05  Richard Guenther  <rguenther@suse.de>
10584
10585         * tree-ssa-structalias.c (get_constraint_for_component_ref):
10586         Use ranges_overlap_p.
10587         (offset_overlaps_with_access): Rename
10588         to ranges_overlap_p and move ...
10589         * tree-flow-inline.h (ranges_overlap_p): ... here.
10590
10591         * tree.h (get_inner_reference, handled_component_p): Update
10592         comments.
10593
10594         * tree.h (record_component_aliases, get_alias_set,
10595         alias_sets_conflict_p, alias_sets_must_conflict_p,
10596         objects_must_conflict_p): Move declarations ...
10597         * alias.h (record_component_aliases, get_alias_set,
10598         alias_sets_conflict_p, alias_sets_must_conflict_p,
10599         objects_must_conflict_p): ... here.
10600         Include coretypes.h.
10601         * Makefile.in (ALIAS_H): Add coretypes.h dependency.
10602
10603 2008-03-05  Aldy Hernandez  <aldyh@redhat.com>
10604
10605         * cfg.c: Include tree-flow.h.
10606         (remove_edge_raw): Call redirect_edge_var_map_clear.
10607         (redirect_edge_succ_nodup): Call redirect_edge_var_map_dup.
10608         * tree-flow-inline.h (redirect_edge_var_map_def): New.
10609         (redirect_edge_var_map_result): New.
10610         * tree-cfgcleanup.c (remove_forwarder_block_with_phi): Replace
10611         PENDING_STMT use with redirect_edge_var_map_*.
10612         * tree-ssa.c (edge_var_maps): New definition.
10613         (redirect_edge_var_map_add): New.
10614         (redirect_edge_var_map_clear): New.
10615         (redirect_edge_var_map_dup): New.
10616         (redirect_edge_var_map_vector): New.
10617         (redirect_edge_var_map_destroy): New.
10618         (ssa_redirect_edge): Replace PENDING_STMT use with
10619         redirect_edge_var_map_*.
10620         (flush_pending_stmts): Same.
10621         (delete_tree_ssa): Destroy edge var map.
10622         * tree-flow.h (struct _edge_var_map): New.
10623         Define edge_var_map vector type.
10624         Declare redirect_edge_var_map_* prototypes.
10625         * Makefile.in (cfg.o): Depend on TREE_FLOW_H.
10626         * tree-cfg.c (reinstall_phi_args): Replace
10627         PENDING_STMT use with redirect_edge_var_map_*.
10628
10629 2008-03-05  Richard Guenther  <rguenther@suse.de>
10630
10631         PR tree-optimization/35472
10632         * tree-ssa-dse.c (dse_optimize_stmt): Do not delete a store
10633         whose single use_stmt has a overlapping set of loaded and
10634         stored symbols as that use_stmt might be a noop assignment then.
10635
10636 2008-03-05  Joel Sherrill <joel.sherrill@oarcorp.com>
10637
10638         * gthr-rtems.h: Implement __gthread_mutex_destroy.
10639
10640 2008-03-05  Richard Guenther  <rguenther@suse.de>
10641
10642         PR c++/35336
10643         * tree.def (BIT_FIELD_REF): Document that operands 1 and 2
10644         should be constants.
10645         * tree-cfg.c (verify_expr): Verify it.
10646         * fold-const.c (fold_truthop): Remove code generating
10647         BIT_FIELD_REFs of structure bases.
10648         (fold_binary): Likewise.
10649         (fold_ternary): Position and size of BIT_FIELD_REFs are
10650         always host integers.
10651         (make_bit_field_ref): Remove.
10652         (optimize_bit_field_compare): Remove.
10653         (all_ones_mask_p): Remove.
10654
10655 2008-03-05  Gabor Loki  <loki@gcc.gnu.org>
10656
10657         PR gcc/33009
10658         * rtl-factoring.c (clear_regs_live_in_seq): Fix backward steps.
10659         (split_block_and_df_analyze): New. Split basic block and rebuild
10660         dataflow.
10661         (block_label_after): Use SPLIT_BLOCK_AND_DF_ANALYZE instead of
10662         SPLIT_BLOCK.
10663         (split_pattern_seq): Likewise.
10664         (erase_matching_seqs): Likewise.
10665         (split_pattern_seq): Skip return insn in case of REG_NORETURN note.
10666
10667 2008-03-04  Geoff Keating  <geoffk@apple.com>
10668
10669         * fold-const.c (tree_single_nonnegative_warnv_p): Fix mixed
10670         declaration and code.
10671         (tree_invalid_nonnegative_warnv_p): Likewise.
10672
10673 2008-03-05  Serge Belyshev  <belyshev@depni.sinp.msu.ru>
10674
10675         * doc/install.texi (Testing): Correct quoting for the RUNTESTFLAGS
10676         examples.  Truncate option-names then causing overfull hbox.
10677
10678 2008-03-04  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
10679
10680         PR target/35222
10681         * configure.ac (CONFIG_SJLJ_EXCEPTIONS): Force SJLJ exceptions
10682         on hpux10.
10683         * configure: Rebuilt.
10684
10685 2008-03-04  Rafael Espindola  <espindola@google.com>
10686
10687         * fold-const.c (tree_simple_nonnegative_warnv_p): New.
10688         (tree_unary_nonnegative_warnv_p): New.
10689         (tree_binary_nonnegative_warnv_p): New.
10690         (tree_single_nonnegative_warnv_p): New.
10691         (tree_invalid_nonnegative_warnv_p): New.
10692         (tree_expr_nonnegative_warnv_p): Redefine in term of the new functions.
10693
10694 2008-03-04  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
10695
10696         PR 28322
10697         * opts.c (handle_option): Postpone 'unknown option' errors only for
10698         warning options.
10699
10700 2008-03-04  H.J. Lu  <hongjiu.lu@intel.com>
10701
10702         PR target/35453
10703         * config/i386/smmintrin.h (SIDD_XXX): Renamed to ...
10704         (_SIDD_XXX): This.
10705
10706 2008-03-04  Rafael Espindola  <espindola@google.com>
10707
10708         * fold-const.c (tree_unary_nonzero_warnv_p): New.
10709         (tree_binary_nonzero_warnv_p): New.
10710         (tree_single_nonzero_warnv_p): New.
10711         (tree_expr_nonzero_warnv_p): Redefine using the new functions.
10712
10713 2008-03-04  Uros Bizjak  <ubizjak@gmail.com>
10714
10715         PR middle-end/35456
10716         * fold-const.c (fold_cond_expr_with_comparison): Prevent
10717         transformations for modes that have signed zeros.
10718         * ifcvt.c (noce_try_abs): Ditto.
10719
10720 2008-03-04  Joseph Myers  <joseph@codesourcery.com>
10721
10722         * config/i386/i386.c (override_options): Force
10723         -maccumulate-outgoing-args on if TARGET_STACK_PROBE.
10724
10725 2008-03-04  Jan Hubicka  <jh@suse.cz>
10726
10727         PR c++/35262
10728         * ipa-inline.c (cgraph_decide_inlining_of_small_function): Fix typo
10729         in last commit.
10730
10731 2008-03-04  Danny Smith  <dannysmith@users.sourceforge.net>
10732
10733         * config/i386/i386.md (allocate_stack_worker_32): Use  __chkstk
10734         label to probe the stack.
10735
10736 2008-03-04  Danny Smith  <dannysmith@users.sourceforge.net>
10737
10738         * gthr-win32.h [__GTHREAD_HIDE_WIN32API]
10739         (__gthr_win32_mutex_destroy): Declare.
10740         [__GTHREAD_HIDE_WIN32API] (__gthread_mutex_destroy): Use
10741         __gthr_win32_mutex_destroy.
10742         * config/i386/gthr-win32.c  (__gthr_win32_mutex_destroy): Define.
10743
10744 2008-03-03  Jan Hubicka  <jh@suse.cz>
10745
10746         PR c++/35262
10747         * ipa-inline.c (cgraph_decide_inlining_of_small_function): Be more
10748         aggressive on inlining cold calls.
10749
10750 2008-03-03  Richard Guenther  <rguenther@suse.de>
10751
10752         * tree-ssa-sccvn.c (visit_reference_op_store): Do not insert
10753         struct copies into the expression table.
10754         (simplify_unary_expression): Handle VIEW_CONVERT_EXPR.
10755         (try_to_simplify): Likewise.
10756         * fold-const.c (fold_unary): Fold VIEW_CONVERT_EXPR of
10757         integral and pointer arguments which do not change the
10758         precision to NOP_EXPRs.
10759         * tree-ssa-loop-ivopts.c (may_be_nonaddressable_p): Adjust
10760         VIEW_CONVERT_EXPR case.
10761
10762 2008-03-02  Sebastian Pop  <sebastian.pop@amd.com>
10763
10764         * tree-scalar-evolution.c (instantiate_parameters_1): An SSA_NAME
10765         defined in a loop at depth 0 is invariant.
10766         * tree-chrec.c (evolution_function_is_invariant_rec_p): Ditto.
10767         * tree-ssa-loop-ivopts.c (expr_invariant_in_loop_p): Should never
10768         be called at loop depth 0.
10769
10770 2008-03-02  Jakub Jelinek  <jakub@redhat.com>
10771
10772         PR driver/35420
10773         * gcc.c (process_command): Update copyright notice dates.
10774         * gcov.c (print_version): Likewise.
10775         * gcov-dump.c (print_version): Likewise.
10776         * mips-tfile.c (main): Likewise.
10777         * mips-tdump.c (main): Likewise.
10778
10779 2008-03-02  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
10780
10781         PR 24924
10782         * c-common.c (flag_permissive): Delete.
10783         (constant_expression_warnings): Check flags first.
10784         (constant_expression_error): New.
10785         * c-common.h (flag_permissive): Delete.
10786         (constant_expression_error): Declare.
10787         * flags.h (flag_permissive): Declare. Update description.
10788         * diagnostic.c (pedwarn): Update.
10789         (permerror): New.
10790         * diagnostic.h: (pedantic_error_kind): Rename as pedantic_warning_kind.
10791         (permissive_error_kind): New.
10792         * toplev.c (flag_permissive): Define. Update description.
10793         * toplev.h (permissive_error_kind): Declare.
10794         * c-errors.c (pedwarn_c99): Use pedantic_warning_kind.
10795         (pedwarn_c90): Use pedantic_warning_kind.
10796         * c-opts.c (c_common_post_options): flag_permissive does not affect
10797         flag_pedantic_errors.
10798
10799 2008-03-02  Joseph Myers  <joseph@codesourcery.com>
10800
10801         * libgcc2.c (__addvSI3, __addvsi3, __addvDI3, __subvSI3,
10802         __subvsi3, __subvDI3, __negvSI2, __negvsi2, __negvDI2, __absvSI2,
10803         __absvsi2, __absvDI2): Use unsigned arithmetic.
10804
10805 2008-03-02  Andi Kleen  <ak@suse.de>
10806             Richard Guenther  <rguenther@suse.de>
10807
10808         * struct-equiv.c: Remove file.
10809         * cfg_cleanup.c (condjump_equiv_p): Remove.
10810         * Makefile.in (OBJS-common): Remove struct-equiv.o.
10811         (struct-equiv.o): Remove rule.
10812         * basic-block.h (struct_equiv_checkpoint, STRUCT_EQUIV_*,
10813         insns_match_p, struct_equiv_block_eq, struct_equiv_init, 
10814         rtx_equiv_p, condjump_equiv_p): Remove prototypes.
10815
10816 2008-03-01  Alexandre Oliva  <aoliva@redhat.com>
10817
10818         * ifcvt.c (noce_process_if_block): Try to handle only the then
10819         block if the else block exists but isn't suitable.
10820
10821 2008-03-01  Janne Blomqvist  <jb@gcc.gnu.org>
10822
10823         PR gcc/35063
10824         * gthr-posix.h (__gthread_mutex_destroy): Remove extra declarations.
10825         * gthr-posix95.h (__gthread_mutex_destroy): Likewise. Note this fixes
10826         regression from previous patch.
10827
10828 2008-03-01  Janne Blomqvist  <jb@gcc.gnu.org>
10829
10830         PR gcc/35063
10831         * gthr.h: Add __gthread_mutex_destroy as a function that must be
10832         implemented.
10833         * gthr-vxworks.h (__gthread_mutex_destroy): Null implementation.
10834         * gthr-single.h (__gthread_mutex_destroy): Likewise.
10835         * gthr-rtems.h (__gthread_mutex_destroy): Likewise.
10836         * gthr-mipssde.h (__gthread_mutex_destroy): Likewise.
10837         * gthr-nks.h (__gthread_mutex_destroy): Likewise.
10838         * gthr-solaris.h (__gthread_mutex_destroy): Call mutex_destroy.
10839         * gthr-win32.h (__GTHREAD_MUTEX_DESTROY_FUNCTION): Remove.
10840         (__gthread_mutex_destroy_function): Rename to
10841         __gthread_mutex_destroy.
10842         * gthr-dce.h (__gthread_mutex_destroy): Call
10843         pthread_mutex_destroy.
10844         * gthr-tpf.h (__gthread_mutex_destroy): Likewise.
10845         * gthr-posix.h (__gthread_mutex_destroy): Likewise.
10846         * gthr-posix95.h (__gthread_mutex_destroy): Likewise.
10847
10848 2008-03-01  Alexandre Oliva  <aoliva@redhat.com>
10849
10850         * df-scan.c (df_ref_chain_change_bb): Simplify.
10851         (df_insn_change_bb): Add new_bb argument.  Simplify.  Call
10852         set_block_for_insn if there's any change.
10853         * df.h ((df_insn_change_bb): Fix prototype.
10854         * cfgrtl.c (update_bb_for_insn_chain): Pass bb to
10855         df_insn_change_bb, don't call set_block_for_insn.
10856         * emit-rtl.c (reorder_insns): Likewise.
10857         * haifa-sched.c (move_insn): Likewise.
10858
10859 2008-03-01  Alexandre Oliva  <aoliva@redhat.com>
10860
10861         * rtlanal.c (loc_mentioned_in_p): Test XVECEXPs correctly.
10862
10863 2008-03-01  Alexandre Oliva  <aoliva@redhat.com>
10864
10865         * tree-flow-inline.h (next_readonly_imm_use): Return
10866         NULL_USE_OPERAND_P after the end.
10867
10868 2008-03-01  Richard Guenther  <rguenther@suse.de>
10869
10870         PR tree-optimization/35411
10871         * tree-sra.c (sra_build_assignment): Split conversion to
10872         final type to a separate statement if we are not assigning
10873         to a register.
10874
10875 2008-02-29  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
10876
10877         * fold-const.c (fold_convertible_p): Correct the logic to follow
10878         that in fold_convert().
10879
10880 2008-02-29  Douglas Gregor  <doug.gregor@gmail.com>
10881
10882         PR c++/35315
10883         * tree-inline.c (build_duplicate_type): When we make a
10884         duplicate type, make it unique in the canonical types system.
10885
10886 2008-02-29  Tom Tromey  <tromey@redhat.com>
10887
10888         * toplev.c (input_file_stack, input_file_stack_tick, fs_p,
10889         input_file_stack_history, input_file_stack_restored): Remove.
10890         (push_srcloc, pop_srcloc, restore_input_file_stack): Likewise.
10891         * input.h (struct file_stack): Remove.
10892         (push_srcloc, pop_srcloc, restore_input_file_stack): Likewise.
10893         (input_file_stack, input_file_stack_tick, INPUT_FILE_STACK_BITS):
10894         Likewise.
10895         * diagnostic.h (struct diagnostic_context) <last_module>: Change
10896         type.
10897         (diagnostic_last_module_changed): Add 'map' argument.
10898         (diagnostic_set_last_function): Likewise.
10899         * diagnostic.c (undiagnostic_report_current_module): Iterate using
10900         line map, not input_file_stack.
10901         * c-lex.c (fe_file_change): Don't use push_srcloc or pop_srcloc.
10902
10903 2008-02-29  Paul Brook  <paul@codesourcery.com>
10904
10905         * config/arm/arm.md (arm_addsi3): Add r/k/n alternative.
10906
10907 2008-02-29  Paul Brook  <paul@codesourcery.com>
10908
10909         * config/arm/ieee754-df.S (muldf3): Use RET macros.
10910
10911 2008-02-29  Richard Guenther  <rguenther@suse.de>
10912
10913         * tree-ssa-pre.c (get_sccvn_value): Create missing VNs via
10914         vn_lookup_or_add.
10915         * tree-ssa-sccnv.c (visit_reference_op_store): Use the rhs
10916         value for comparing for a store match.
10917         (simplify_unary_expression): Do nothing for SSA_NAMEs.
10918         (try_to_simplify): Do not do a full-blown reference lookup.
10919
10920 2008-02-29  Kaz Kojima  <kkojima@gcc.gnu.org>
10921
10922         * config/sh/sh.c (sh_scalar_mode_supported_p): New function.
10923         (TARGET_SCALAR_MODE_SUPPORTED_P): Define.
10924
10925         * config/sh/sh.h (OVERRIDE_OPTIONS): Don't warn for profiling.
10926
10927 2008-02-29  Sebastian Pop  <sebastian.pop@amd.com>
10928
10929         * tree-loop-linear.c (try_interchange_loops): Compare memory access
10930         strides against cache sizes.
10931
10932 2008-02-29  Kaz Kojima  <kkojima@gcc.gnu.org>
10933
10934         * config/sh/sh.c (sh_secondary_reload): Handle loading a float
10935         constant to fpul.
10936
10937 2008-02-28  Richard Sandiford  <rsandifo@nildram.co.uk>
10938
10939         * simplify-rtx.c (simplify_unary_operation_1): Extend the handling
10940         of SUBREG_PROMOTED_VAR_P to cope with cases where the extended value
10941         is smaller than the original promoted value.
10942         (simplify_subreg): If OP is a SUBREG, try to preserve its
10943         SUBREG_PROMOTED_VAR_P information.
10944
10945 2008-02-28  Steven Bosscher  <stevenb.gcc@gmail.com>
10946
10947         * tree-ssa-sccvn (vn_ssa_aux_obstack): New obstack.
10948         (VN_INFO_GET): Allocate new objects on the obstack.
10949         (init_scc_vn): Initialize the obstack.  Use XDELETE instead of free
10950         for rpo_numbers_temp, for consistency.
10951         (free_scc_vn): Free the obstack.
10952
10953 2008-02-28  Sebastian Pop  <sebastian.pop@amd.com>
10954
10955         * doc/invoke.texi: Document -ftree-loop-distribution.
10956         * tree-loop-distribution.c: New.
10957         * tree-pass.h (pass_loop_distribution): New.
10958         * graphds.h (struct graph): Add htab_t indices.
10959         * timevar.def (TV_TREE_LOOP_DISTRIBUTION): New.
10960         * tree-vectorizer.c (rename_variables_in_loop): Extern.
10961         (slpeel_tree_duplicate_loop_to_edge_cfg): Init PENDING_STMT to NULL.
10962         * tree-vectorizer.h (tree_duplicate_loop_on_edge): Declared.
10963         * tree-data-ref.c (debug_data_dependence_relations): New.
10964         (dump_data_dependence_relation): Also print data references.
10965         (free_data_ref): Extern.
10966         (same_access_functions): Moved...
10967         (find_vertex_for_stmt): Renamed rdg_vertex_for_stmt.
10968         (dump_rdg_vertex, debug_rdg_vertex, dump_rdg_component,
10969         debug_rdg_component, dump_rdg, debug_rdg, dot_rdg_1, dot_rdg,
10970         struct rdg_vertex_info, rdg_vertex_for_stmt): New.
10971         (create_rdg_edge_for_ddr, create_rdg_vertices): Cleaned up.
10972         (stmts_from_loop): Skip LABEL_EXPR.
10973         (hash_stmt_vertex_info, eq_stmt_vertex_info, hash_stmt_vertex_del):
10974         New.
10975         (build_rdg): Initialize rdg->indices htab.
10976         (free_rdg, stores_from_loop, ref_base_address,
10977         rdg_defs_used_in_other_loops_p, have_similar_memory_accesses,
10978         have_similar_memory_accesses_1, ref_base_address_1,
10979         remove_similar_memory_refs): New.
10980         * tree-data-ref.h: Depend on tree-chrec.h.
10981         (debug_data_dependence_relations, free_data_ref): Declared.
10982         (same_access_functions): ... here.
10983         (ddr_is_anti_dependent, ddrs_have_anti_deps, ddr_dependence_level):
10984         New.
10985         (struct rdg_vertex): Add has_mem_write and has_mem_reads.
10986         (RDGV_HAS_MEM_WRITE, RDGV_HAS_MEM_READS, RDG_STMT,
10987         RDG_MEM_WRITE_STMT, RDG_MEM_READS_STMT): New.
10988         (dump_rdg_vertex, debug_rdg_vertex, dump_rdg_component,
10989         debug_rdg_component, dump_rdg, debug_rdg, dot_rdg,
10990         rdg_vertex_for_stmt): Declared.
10991         (struct rdg_edge): Add level.
10992         (RDGE_LEVEL): New.
10993         (free_rdg, stores_from_loop, remove_similar_memory_refs,
10994         rdg_defs_used_in_other_loops_p, have_similar_memory_accesses):
10995         Declared.
10996         (rdg_has_similar_memory_accesses): New.
10997         * tree-vect-analyze.c: Remove unused static decls.
10998         * lambda.h (dependence_level): New.
10999         * common.opt (ftree-loop-distribution): New.
11000         * tree-flow.h (mark_virtual_ops_in_bb, 
11001         slpeel_tree_duplicate_loop_to_edge_cfg,
11002         rename_variables_in_loop): Declared.
11003         * Makefile.in (TREE_DATA_REF_H): Depend on tree-chrec.h.
11004         (OBJS-common): Add tree-loop-distribution.o.
11005         (tree-loop-distribution.o): New rule.
11006         * tree-cfg.c (mark_virtual_ops_in_bb): New.
11007         (mark_virtual_ops_in_region): Use mark_virtual_ops_in_bb.
11008         * passes.c (init_optimization_passes): Schedule pass_loop_distribution.
11009
11010 2008-02-28  Joseph Myers  <joseph@codesourcery.com>
11011
11012         PR target/33963
11013         * tree.c (handle_dll_attribute): Disallow TYPE_DECLs for types
11014         other than structures and unions.
11015
11016 2008-02-28  Richard Guenther  <rguenther@suse.de>
11017
11018         Revert:
11019         2008-02-26  Richard Guenther  <rguenther@suse.de>
11020
11021         * tree-flow.h (uid_decl_map_hash, uid_decl_map_eq): Move ...
11022         * tree.h (uid_decl_map_hash, uid_decl_map_eq): ... here.
11023         (lookup_decl_from_uid): Declare.
11024         (remove_decl_from_map): Likewise.
11025         * tree-ssa.c (uid_decl_map_eq, uid_decl_map_hash): Move ...
11026         * tree.c (uid_decl_map_eq, uid_decl_map_hash): ... here.
11027         (decl_for_uid_map): New global hashtable mapping DECL_UID
11028         to the decl tree.
11029         (init_ttree): Allocate it.
11030         (insert_decl_to_uid_decl_map): New helper function.
11031         (make_node_stat): Insert new decls into the map.
11032         (copy_node_stat): Likewise.
11033         (lookup_decl_from_uid): New function.
11034         (remove_decl_from_map): Likewise.
11035         (print_decl_for_uid_map_statistics): New helper.
11036         (dump_tree_statistics): Call it.
11037
11038         * tree-flow.h (struct gimple_df): Make referenced_vars a bitmap.
11039         (referenced_var_iterator): Adjust.
11040         (FOR_EACH_REFERENCED_VAR): Adjust.
11041         (FOR_EACH_REFERENCED_VAR_IN_BITMAP): New iterator.
11042         (num_referenced_vars): Adjust.
11043         * tree-flow-inline.h (gimple_referenced_vars): Adjust.
11044         (first_referenced_var): Remove.
11045         (end_referenced_vars_p): Likewise.
11046         (next_referenced_var): Likewise.
11047         (referenced_var_iterator_set): New helper function.
11048         * tree-dfa.c (referenced_var_lookup): Adjust.
11049         (referenced_var_check_and_insert): Likewise.
11050         (remove_referenced_var): Likewise.
11051         * tree-ssa.c (verify_flow_insensitive_alias_info): Use
11052         FOR_EACH_REFERENCED_VAR_IN_BITMAP.
11053         (verify_call_clobbering): Likewise.
11054         (verify_memory_partitions): Likewise.
11055         (init_tree_ssa): Allocate bitmap instead of hashtable for
11056         referenced_vars.
11057         (delete_tree_ssa): Adjust.
11058         * tree-ssa-alias.c (mark_aliases_call_clobbered): Use
11059         FOR_EACH_REFERENCED_VAR_IN_BITMAP.
11060         (compute_tag_properties): Likewise.
11061         (set_initial_properties): Likewise.
11062         (find_partition_for): Likewise.
11063         (update_reference_counts): Likewise.
11064         (dump_may_aliases_for): Likewise.
11065         * tree-ssa-operands.c (add_virtual_operand): Likewise.
11066         (add_call_clobber_ops): Likewise.
11067         (add_call_read_ops): Likewise.
11068         (get_asm_expr_operands): Likewise.
11069         * tree-into-ssa.c (dump_decl_set): Likewise.
11070         (update_ssa): Likewise.
11071         * tree-sra.c (scan_function): Likewise.
11072         (decide_instantiations): Likewise.
11073         (scalarize_parms): Likewise.
11074         * tree-ssa-alias-warnings.c (build_reference_table): Likewise.
11075         (dsa_named_for): Likewise.
11076         * tree-ssa-structalias.c (update_alias_info): Likewise.
11077         (merge_smts_into): Likewise.
11078
11079 2008-02-27  David Daney  <ddaney@avtrex.com>
11080
11081         PR target/34409
11082         * config/mips/iris.h (MIPS_DEBUGGING_INFO): Define.
11083         * config/mips/openbsd.h (MIPS_DEBUGGING_INFO): Same.
11084         * config/mips/sde.h (MIPS_DEBUGGING_INFO): Remove undef.
11085         * config/mips/vxworks.h (MIPS_DEBUGGING_INFO): Same.
11086         * config/mips/mips.h (MIPS_DEBUGGING_INFO): Remove define.
11087
11088 2008-02-27  Uros Bizjak  <ubizjak@gmail.com>
11089
11090         PR target/25477
11091         * config/darwin-ppc-ldouble-patch.def (BUILT_IN_NANL): Add.
11092         (BUILT_IN_NEXTTOWARD): Remove.
11093         (BUILT_IN_NEXTTOWARDF): Ditto.
11094         * config/darwin.c (darwin_patch_builtin): Use ACONCAT instead of
11095         alloca/strcpy/strcat.  Remove commented-out code.  Fix whitespace.
11096
11097 2008-02-27  Tom Tromey  <tromey@redhat.com>
11098
11099         * tree-dump.c (dequeue_and_dump) <FUNCTION_DECL>: Check
11100         DECL_SAVED_TREE, not DECL_LANG_SPECIFIC, when dumping body.
11101
11102 2008-02-27  Jan Beulich  <jbeulich@novell.com>
11103
11104         * c-decl.c (merge_decls): Use DECL_USER_ALIGN() on olddecl to
11105         update the respective field on newdecl.
11106
11107 2008-02-27  Revital Eres  <eres@il.ibm.com>
11108
11109         PR rtl-optimization/34999
11110         * bb-reorder.c (add_labels_and_missing_jumps): Do not handle
11111         crossing edges that ends with a call insn.
11112         (fix_up_fall_thru_edges): Handle crossing edges that ends with a
11113         call insn and clear the EDGE_CROSSING flag of the crossing edge
11114         when fixing fallthru edges.
11115
11116 2008-02-27  Richard Guenther  <rguenther@suse.de>
11117
11118         PR middle-end/35390
11119         * fold-const.c (fold_unary): Return the correct argument,
11120         converted to the result type.
11121
11122 2008-02-27  Richard Guenther  <rguenther@suse.de>
11123
11124         PR middle-end/34971
11125         * expr.c (expand_expr_real_1): Assert on rotates that operate
11126         on partial modes.
11127         * fold-const.c (fold_binary): Use the types precision, not the
11128         bitsize of the mode if folding rotate expressions.  Build rotates
11129         only for full modes.
11130
11131 2008-02-27  Jakub Jelinek  <jakub@redhat.com>
11132
11133         * c-ppoutput.c (scan_translation_unit): Handle CPP_PRAGMA
11134         and CPP_PRAGMA_EOL.
11135         * c-pragma.c (pragma_ns_name): New typedef.
11136         (registered_pp_pragmas): New variable.
11137         (c_pp_lookup_pragma): New function.
11138         (c_register_pragma_1): If flag_preprocess_only, do nothing
11139         for non-expanded pragmas, for expanded ones push pragma's
11140         namespace and name into registered_pp_pragmas vector.
11141         (c_invoke_pragma_handler): Register OpenMP pragmas even when
11142         flag_preprocess_only, don't register GCC pch_preprocess
11143         pragma if flag_preprocess_only.
11144         * c-opts.c (c_common_init): Call init_pragma even if
11145         flag_preprocess_only.
11146         * c-pragma.c (c_pp_lookup_pragma): New prototype.
11147         * config/darwin.h (DARWIN_REGISTER_TARGET_PRAGMAS): Don't call
11148         cpp_register_pragma if flag_preprocess_only.
11149
11150 2008-02-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11151
11152         PR c/28800
11153         * c-parser.c (c_parser_translation_unit): Warn for empty
11154         translation unit, not empty source file.
11155
11156 2008-02-26  Paul Brook  <paul@codesourcery.com>
11157
11158         * config/arm/arm.c (thumb_set_frame_pointer): Ensure SP is first
11159         operand for Thumb-2.
11160         * config/arm/arm.h (reg_class): Add CORE_REGS.
11161         (REG_CLASS_NAMES, REG_CLASS_CONTENTS): Ditto.
11162         (BASE_REG_CLASS): Use CORE_REGS.
11163         (PREFERRED_RELOAD_CLASS): Add STACK_REG.
11164         (REGNO_MODE_OK_FOR_REG_BASE_P): Use REGNO_MODE_OK_FOR_BASE_P.
11165         (REGNO_OK_FOR_INDEX_P): Exclude SP.
11166         (ARM_REG_OK_FOR_INDEX_P): Always define.  Use
11167         ARM_REGNO_OK_FOR_INDEX_P.
11168         (ARM_PRINT_OPERAND_ADDRESS): Swap operands for [reg, sp].
11169         * config/arm/arm.md (arm_addsi3, thumb1_addsi3, arm_subsi3_insn,
11170         arm_movsi_insn, thumb1_movsi_insni, stack_tie): Add "k" alternatives.
11171         (ldm/stm peepholes): Ditto.
11172         * config/arm/thumb2.md (thumb2_movdi): Add "k" alternatives.
11173         * config/arm/vfp.md (arm_movsi_vfp, thumb2_movsi_vfp): Ditto.
11174         * config/arm/iwmmxt.md (iwmmxt_movsi_insn): Ditto.
11175         * config/arm/constraints.md: Enable "k" constraint on ARM.
11176
11177 2008-02-27  Ben Elliston  <bje@au.ibm.com>
11178
11179         * config/rs6000/rs6000.c: Annotate cache line size field in all
11180         instances of struct processor_costs.
11181
11182 2008-02-26  David Edelsohn  <edelsohn@gnu.org>
11183
11184         * dbgcnt.def (cfg_cleanup, cprop1, cprop2, dce_fast, dce_ud, dse1,
11185         dse2, gcse, if_conversion, if_after_combine, if_after_reload,
11186         jump_bypass): New counters.
11187         * cfgcleanup.c (cleanup_cfg): Add dbg_cnt.
11188         * dce.c (gate_ud_dce): Same.
11189         (gate_fast_dce): Same.
11190         * dse.c (gate_dse1): New function.
11191         (gate_dse2): New function.
11192         (gate_dse): Merge results of new gate functions.
11193         * gcse.c (gcse_main): Bracket cprop1 and cprop2 with dbg_cnt.
11194         (gate_handle_jump_bypass): Add dbg_cnt.
11195         (gate_handle_gcse): Add dbg_cnt.
11196         * ifcvt.c (gate_handle_if_conversion): Same.
11197         (gate_handle_if_after_combine): Same.
11198         (gate_handle_if_after_reload): Same.
11199         * Makefile.in: Add DBGCNT_H to cfgcleanup.o and ifcvt.o.
11200
11201 2008-02-26  Edmar Wienskoski  <edmar@freescale.com>
11202
11203         * config/rs6000/rs6000.c (processor_costs): Update e300 cache
11204         line sizes.
11205         * doc/invoke.texi: Add e300c2 and e300c3 to list of cpus.
11206
11207 2008-02-26  Jason Merrill  <jason@redhat.com>
11208
11209         PR c++/35315
11210         * attribs.c (decl_attributes): Leave ATTR_FLAG_TYPE_IN_PLACE 
11211         alone if it's the naming decl for the type's main variant.
11212
11213 2008-02-26  Tom Tromey  <tromey@redhat.com>
11214
11215         * system.h (USE_MAPPED_LOCATION): Poison.
11216         * Makefile.in (GTFILES): Put CPP_ID_DATA_H first.
11217         * tree-cfg.c (make_cond_expr_edges): Remove old location code.
11218         (make_goto_expr_edges): Likewise.
11219         (remove_bb): Likewise.
11220         (execute_warn_function_return): Likewise.
11221         * basic-block.h (struct edge_def) <goto_locus>: Change type to
11222         location_t.
11223         * c-common.c (fname_decl): Remove old location code.
11224         * tree-vect-transform.c (vect_finish_stmt_generation): Remove old
11225         location code.
11226         * rtl.h (ASM_OPERANDS_SOURCE_LOCATION): Remove old-location
11227         variant.
11228         (ASM_INPUT_SOURCE_LOCATION): Likewise.
11229         (gen_rtx_ASM_INPUT): Likewise.
11230         (gen_rtx_ASM_INPUT_loc): Likewise.
11231         (get_rtx_asm_OPERANDS): Remove.
11232         * cfglayout.c (insn_locators_alloc): Remove old location code.
11233         (set_curr_insn_source_location): Likewise.
11234         (curr_insn_locator): Likewise.
11235         * print-tree.c (print_node): Remove old location code.
11236         * tree-mudflap.c (mf_varname_tree): Remove old location code.
11237         (mf_file_function_line_tree): Remove test of USE_MAPPED_LOCATION.
11238         * cfgexpand.c (expand_gimple_cond_expr): Don't use
11239         location_from_locus.
11240         (construct_exit_block): Remove old location code.
11241         * emit-rtl.c (force_next_line_note): Remove old location code.
11242         * profile.c (branch_prob): Remove old location code.
11243         * tree-vectorizer.h (LOC, UNKNOWN_LOC, EXPR_LOC, LOC_FILE,
11244         LOC_LINE): Remove old-location variants.
11245         * langhooks.c (lhd_print_error_function): Remove old location
11246         code.
11247         * configure, config.in: Rebuilt.
11248         * configure.ac (--enable-mapped-location): Remove.
11249         * c-decl.c (c_init_decl_processing): Remove old location code.
11250         (finish_function): Likewise.
11251         * recog.c (decode_asm_operands): Remove old location code.
11252         * c-pch.c (c_common_read_pch): Remove old location code.
11253         * rtl.def (ASM_INPUT, ASM_OPERANDS): Remove old location
11254         variants.
11255         * gimple-low.c (lower_function_body): Remove old location code.
11256         * toplev.c (unknown_location): Remove.
11257         (push_srcloc): Remove old-location variant.
11258         (process_options): Remove old location code.
11259         (lang_dependent_init): Likewise.
11260         * input.h (UNKNOWN_LOCATION): Move definition.
11261         (location_t): Undeprecate.
11262         (source_locus): Remove.
11263         (location_from_locus): Remove.
11264         (struct location_s): Remove.
11265         Remove all old-location code.
11266         (input_line, input_filename): Remove.
11267         * final.c (final_scan_insn): Remove old location code.
11268         * diagnostic.c (diagnostic_build_prefix): Remove
11269         USE_MAPPED_LOCATION test.
11270         * tree.h (gimple_stmt) <locus>: Now a location_t.
11271         (tree_exp) <locus>: Likewise.
11272         (DECL_IS_BUILTIN): Remove old-location variant.
11273         (annotate_with_file_line, annotate_with_locus): Likewise.
11274         (expr_locus, set_expr_locus): Update.
11275         * tree.c (build1_stat): Remove old location code.
11276         (last_annotated_node): Remove.
11277         (annotate_with_file_line): Remove old-location variant.
11278         (annotate_with_locus): Likewise.
11279         (expr_location): Remove old location code.
11280         (set_expr_location): Likewise.
11281         (expr_has_location): Likewise.
11282         (expr_locus): Likewise.
11283         (set_expr_locus): Likewise.
11284         (expr_filename): Don't use location_from_locus.
11285         (expr_lineno): Likewise.
11286         * rtl-error.c (location_for_asm): Remove old location code.
11287         * c-lex.c (cb_line_change): Remove old location code.
11288         (fe_file_change): Likewise.
11289         (cb_def_pragma): Likewise.
11290         (c_lex_with_flags): Likewise.
11291         * gengtype.c (do_typedef): Don't special-case location types.
11292         (define_location_structures): Remove.
11293         (main): Don't call define_location_structures.
11294         * tree-pretty-print.c (dump_implicit_edges): Remove old location
11295         code.
11296
11297 2008-02-26  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
11298
11299         PR 26264
11300         * builtins.def (BUILT_IN_STDARG_START): Remove.
11301         * builtins.c (expand_builtin): Remove BUILT_IN_STDARG_START.
11302         * tree-stdarg.c (execute_optimize_stdarg): Likewise.
11303         * tree-inline.c (inline_forbidden_p_1): Likewise.
11304         
11305 2008-02-26  Richard Guenther  <rguenther@suse.de>
11306
11307         * tree-flow.h (uid_decl_map_hash, uid_decl_map_eq): Move ...
11308         * tree.h (uid_decl_map_hash, uid_decl_map_eq): ... here.
11309         (lookup_decl_from_uid): Declare.
11310         (remove_decl_from_map): Likewise.
11311         * tree-ssa.c (uid_decl_map_eq, uid_decl_map_hash): Move ...
11312         * tree.c (uid_decl_map_eq, uid_decl_map_hash): ... here.
11313         (decl_for_uid_map): New global hashtable mapping DECL_UID
11314         to the decl tree.
11315         (init_ttree): Allocate it.
11316         (insert_decl_to_uid_decl_map): New helper function.
11317         (make_node_stat): Insert new decls into the map.
11318         (copy_node_stat): Likewise.
11319         (lookup_decl_from_uid): New function.
11320         (remove_decl_from_map): Likewise.
11321         (print_decl_for_uid_map_statistics): New helper.
11322         (dump_tree_statistics): Call it.
11323
11324         * tree-flow.h (struct gimple_df): Make referenced_vars a bitmap.
11325         (referenced_var_iterator): Adjust.
11326         (FOR_EACH_REFERENCED_VAR): Adjust.
11327         (FOR_EACH_REFERENCED_VAR_IN_BITMAP): New iterator.
11328         (num_referenced_vars): Adjust.
11329         * tree-flow-inline.h (gimple_referenced_vars): Adjust.
11330         (first_referenced_var): Remove.
11331         (end_referenced_vars_p): Likewise.
11332         (next_referenced_var): Likewise.
11333         (referenced_var_iterator_set): New helper function.
11334         * tree-dfa.c (referenced_var_lookup): Adjust.
11335         (referenced_var_check_and_insert): Likewise.
11336         (remove_referenced_var): Likewise.
11337         * tree-ssa.c (verify_flow_insensitive_alias_info): Use
11338         FOR_EACH_REFERENCED_VAR_IN_BITMAP.
11339         (verify_call_clobbering): Likewise.
11340         (verify_memory_partitions): Likewise.
11341         (init_tree_ssa): Allocate bitmap instead of hashtable for
11342         referenced_vars.
11343         (delete_tree_ssa): Adjust.
11344         * tree-ssa-alias.c (mark_aliases_call_clobbered): Use
11345         FOR_EACH_REFERENCED_VAR_IN_BITMAP.
11346         (compute_tag_properties): Likewise.
11347         (set_initial_properties): Likewise.
11348         (find_partition_for): Likewise.
11349         (update_reference_counts): Likewise.
11350         (dump_may_aliases_for): Likewise.
11351         * tree-ssa-operands.c (add_virtual_operand): Likewise.
11352         (add_call_clobber_ops): Likewise.
11353         (add_call_read_ops): Likewise.
11354         (get_asm_expr_operands): Likewise.
11355         * tree-into-ssa.c (dump_decl_set): Likewise.
11356         (update_ssa): Likewise.
11357         * tree-sra.c (scan_function): Likewise.
11358         (decide_instantiations): Likewise.
11359         (scalarize_parms): Likewise.
11360         * tree-ssa-alias-warnings.c (build_reference_table): Likewise.
11361         (dsa_named_for): Likewise.
11362         * tree-ssa-structalias.c (update_alias_info): Likewise.
11363         (merge_smts_into): Likewise.
11364
11365 2008-02-26  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
11366
11367         PR 34351
11368         * doc/invoke.texi (-Wall): Add -Wvolatile-register-var.
11369         * c-opts.c (c_common_handle_option): Wall enables
11370         Wvolatile-register-var.
11371         * common.opt: Move Wvolatile-register-var to...
11372         * c.opt: ...here.
11373         
11374 2008-02-26  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
11375
11376         * common.opt (Wlarger-than=): New.
11377         * doc/invoke.texi (Warning Options): Replace -Wlarger-than- with
11378         -Wlarger-than=.
11379         * opts.c (common_handle_option): Handle -Wlarger-than=.
11380         * optc-gen.awk: Likewise.
11381         * opth-gen.awk: Likewise.
11382         * stor-layout.c (layout_decl): Use -Wlarger-than= for warning.
11383         * tree-optimize.c (tree_rest_of_compilation): Likewise.
11384         
11385 2008-02-26  Manuel Lopez-Ibanez <manu@gcc.gnu.org>
11386
11387         * c-common.c (match_case_to_enum_1): Add appropriate
11388         OPT_W* parameter to warning.
11389         (c_do_switch_warnings): Likewise.
11390         * c-typeck.c (warning_init): Add one more parameter following
11391         'warning' function.
11392         (push_init_level): Update call to warning_init.
11393         (pop_init_level): Likewise.
11394         (add_pending_init): Likewise.
11395         (output_init_element: Likewise.
11396
11397 2008-02-26  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
11398
11399         PR 28322
11400         * toplev.c (toplev_main): If there are warnings or error, print
11401         errors for ignored options.
11402         * opts.c (ignored_options): New static variable.
11403         (postpone_unknown_option_error): New.
11404         (print_ignored_options): New.
11405         (handle_option): Postpone errors for unknown -Wno-* options.
11406         * opts.h (print_ignored_options): Declare.
11407         
11408 2008-02-25  Richard Sandiford  <rsandifo@nildram.co.uk>
11409
11410         * config/mips/mips.md (loadgp_blockage, blockage): Change type
11411         to "ghost".
11412
11413 2008-02-25  Richard Guenther  <rguenther@suse.de>
11414
11415         Revert:
11416         2008-02-25  Richard Guenther  <rguenther@suse.de>
11417
11418         * tree-flow.h (uid_decl_map_hash, uid_decl_map_eq): Move ...
11419         * tree.h (uid_decl_map_hash, uid_decl_map_eq): ... here.
11420         (lookup_decl_from_uid): Declare.
11421         * tree-ssa.c (uid_decl_map_eq, uid_decl_map_hash): Move ...
11422         * tree.c (uid_decl_map_eq, uid_decl_map_hash): ... here.
11423         (decl_for_uid_map): New global hashtable mapping DECL_UID
11424         to the decl tree.
11425         (init_ttree): Allocate it.
11426         (insert_decl_to_uid_decl_map): New helper function.
11427         (make_node_stat): Insert new decls into the map.
11428         (copy_node_stat): Likewise.
11429         (lookup_decl_from_uid): New function.
11430         (print_decl_for_uid_map_statistics): New helper.
11431         (dump_tree_statistics): Call it.
11432
11433         * tree-flow.h (struct gimple_df): Make referenced_vars a bitmap.
11434         (referenced_var_iterator): Adjust.
11435         (FOR_EACH_REFERENCED_VAR): Adjust.
11436         (FOR_EACH_REFERENCED_VAR_IN_BITMAP): New iterator.
11437         (num_referenced_vars): Adjust.
11438         * tree-flow-inline.h (gimple_referenced_vars): Adjust.
11439         (first_referenced_var): Remove.
11440         (end_referenced_vars_p): Likewise.
11441         (next_referenced_var): Likewise.
11442         (referenced_var_iterator_set): New helper function.
11443         * tree-dfa.c (referenced_var_lookup): Adjust.
11444         (referenced_var_check_and_insert): Likewise.
11445         (remove_referenced_var): Likewise.
11446         * tree-ssa.c (verify_flow_insensitive_alias_info): Use
11447         FOR_EACH_REFERENCED_VAR_IN_BITMAP.
11448         (verify_call_clobbering): Likewise.
11449         (verify_memory_partitions): Likewise.
11450         (init_tree_ssa): Allocate bitmap instead of hashtable for
11451         referenced_vars.
11452         (delete_tree_ssa): Adjust.
11453         * tree-ssa-alias.c (mark_aliases_call_clobbered): Use
11454         FOR_EACH_REFERENCED_VAR_IN_BITMAP.
11455         (compute_tag_properties): Likewise.
11456         (set_initial_properties): Likewise.
11457         (find_partition_for): Likewise.
11458         (update_reference_counts): Likewise.
11459         (dump_may_aliases_for): Likewise.
11460         * tree-ssa-operands.c (add_virtual_operand): Likewise.
11461         (add_call_clobber_ops): Likewise.
11462         (add_call_read_ops): Likewise.
11463         (get_asm_expr_operands): Likewise.
11464         * tree-into-ssa.c (dump_decl_set): Likewise.
11465         (update_ssa): Likewise.
11466         * tree-sra.c (scan_function): Likewise.
11467         (decide_instantiations): Likewise.
11468         (scalarize_parms): Likewise.
11469         * tree-ssa-alias-warnings.c (build_reference_table): Likewise.
11470         (dsa_named_for): Likewise.
11471         * tree-ssa-structalias.c (update_alias_info): Likewise.
11472         (merge_smts_into): Likewise.
11473
11474 2008-02-25  Janne Blomqvist  <jb@gcc.gnu.org>
11475
11476         PR fortran/29549
11477         * doc/invoke.texi (-fcx-limited-range): Document new option.
11478         * toplev.c (process_options): Handle -fcx-fortran-rules.
11479         * common.opt: Add documentation for -fcx-fortran-rules.
11480
11481 2008-02-25  Janne Blomqvist  <jb@gcc.gnu.org>
11482
11483         PR c/35162
11484         * doc/invoke.texi (-fcx-limited-range): Correct to be in line with
11485         actual behaviour and C99.
11486         
11487 2008-02-26  Ben Elliston  <bje@au.ibm.com>
11488
11489         * config/rs6000/rs6000.h (ASM_CPU_POWER5_SPEC): Define.
11490         (ASM_CPU_POWER6_SPEC): Likewise.
11491         (ASM_CPU_SPEC): Pass %(asm_cpu_power5) for -mcpu=power5.
11492         Likewise, pass %(asm_cpu_power6) for -mcpu=power6.
11493         (EXTRA_SPECS): Add asm_cpu_power5, asm_cpu_power6 spec strings.
11494
11495 2008-02-25  Richard Guenther  <rguenther@suse.de>
11496
11497         * tree-flow.h (uid_decl_map_hash, uid_decl_map_eq): Move ...
11498         * tree.h (uid_decl_map_hash, uid_decl_map_eq): ... here.
11499         (lookup_decl_from_uid): Declare.
11500         * tree-ssa.c (uid_decl_map_eq, uid_decl_map_hash): Move ...
11501         * tree.c (uid_decl_map_eq, uid_decl_map_hash): ... here.
11502         (decl_for_uid_map): New global hashtable mapping DECL_UID
11503         to the decl tree.
11504         (init_ttree): Allocate it.
11505         (insert_decl_to_uid_decl_map): New helper function.
11506         (make_node_stat): Insert new decls into the map.
11507         (copy_node_stat): Likewise.
11508         (lookup_decl_from_uid): New function.
11509         (print_decl_for_uid_map_statistics): New helper.
11510         (dump_tree_statistics): Call it.
11511
11512         * tree-flow.h (struct gimple_df): Make referenced_vars a bitmap.
11513         (referenced_var_iterator): Adjust.
11514         (FOR_EACH_REFERENCED_VAR): Adjust.
11515         (FOR_EACH_REFERENCED_VAR_IN_BITMAP): New iterator.
11516         (num_referenced_vars): Adjust.
11517         * tree-flow-inline.h (gimple_referenced_vars): Adjust.
11518         (first_referenced_var): Remove.
11519         (end_referenced_vars_p): Likewise.
11520         (next_referenced_var): Likewise.
11521         (referenced_var_iterator_set): New helper function.
11522         * tree-dfa.c (referenced_var_lookup): Adjust.
11523         (referenced_var_check_and_insert): Likewise.
11524         (remove_referenced_var): Likewise.
11525         * tree-ssa.c (verify_flow_insensitive_alias_info): Use
11526         FOR_EACH_REFERENCED_VAR_IN_BITMAP.
11527         (verify_call_clobbering): Likewise.
11528         (verify_memory_partitions): Likewise.
11529         (init_tree_ssa): Allocate bitmap instead of hashtable for
11530         referenced_vars.
11531         (delete_tree_ssa): Adjust.
11532         * tree-ssa-alias.c (mark_aliases_call_clobbered): Use
11533         FOR_EACH_REFERENCED_VAR_IN_BITMAP.
11534         (compute_tag_properties): Likewise.
11535         (set_initial_properties): Likewise.
11536         (find_partition_for): Likewise.
11537         (update_reference_counts): Likewise.
11538         (dump_may_aliases_for): Likewise.
11539         * tree-ssa-operands.c (add_virtual_operand): Likewise.
11540         (add_call_clobber_ops): Likewise.
11541         (add_call_read_ops): Likewise.
11542         (get_asm_expr_operands): Likewise.
11543         * tree-into-ssa.c (dump_decl_set): Likewise.
11544         (update_ssa): Likewise.
11545         * tree-sra.c (scan_function): Likewise.
11546         (decide_instantiations): Likewise.
11547         (scalarize_parms): Likewise.
11548         * tree-ssa-alias-warnings.c (build_reference_table): Likewise.
11549         (dsa_named_for): Likewise.
11550         * tree-ssa-structalias.c (update_alias_info): Likewise.
11551         (merge_smts_into): Likewise.
11552
11553 2008-02-25  Andreas Krebbel  <krebbel1@de.ibm.com>
11554
11555         PR target/35258
11556         * cse.c (cse_insn): Avoid creation of overlapping MEMs.
11557         * alias.c (nonoverlapping_memrefs_p): Export for use in other modules.
11558         * alias.h (nonoverlapping_memrefs_p): Likewise.
11559
11560 2008-02-25  Jan Beulich  <jbeulich@novell.com>
11561
11562         * Makefile.in: Also prefix uses of crt0.o and mcrt0.o with $(T).
11563         * config/i386/netware-libgcc.exp: Add __bswap?i2,
11564         __emultls_get_address, __emultls_register_common,
11565         __floatundi?f, and _Unwind_GetIPInfo.
11566         * config/i386/netware.c (gen_stdcall_or_fastcall_decoration):
11567         Sync with config/i386/winnt.c:gen_stdcall_or_fastcall_suffix().
11568         (gen_regparm_prefix): Likewise.
11569         (i386_nlm_encode_section_info): Sync with
11570         config/i386/winnt.c:i386_pe_encode_section_info().
11571         (i386_nlm_maybe_mangle_decl_assembler_name): New.
11572         i386_nlm_mangle_decl_assembler_name): New.
11573         (netware_override_options): New.
11574         * config/i386/netware.h (netware_override_options): Declare.
11575         (OVERRIDE_OPTIONS): Re-define to netware_override_options.
11576         (i386_nlm_mangle_decl_assembler_name): Declare.
11577         (TARGET_MANGLE_DECL_ASSEMBLER_NAME): Define.
11578
11579 2008-02-25  Ben Elliston  <bje@au.ibm.com>
11580
11581         PR other/32948
11582         * c-decl.c (grokdeclarator): Remove unused local variables
11583         `typedef_type' and `type_as_written'.
11584         * bb-reorder.c
11585         (find_rarely_executed_basic_blocks_and_crossing_edges): Remove
11586         unused local variable `has_hot_blocks'.
11587         (fix_crossing_conditional_branches): Remove unused local variable
11588         `prev_bb'.
11589         
11590 2008-02-25  Uros Bizjak  <ubizjak@gmail.com>
11591
11592         PR middle-end/19984
11593         * builtins.def (BUILT_IN_NAN): Define as c99 builtin
11594         using DEF_C99_BUILTIN.
11595         (BUILT_IN_NANF): Ditto.
11596         (BUILT_IN_NANL): Ditto.
11597
11598 2008-02-25  Ayal Zaks  <zaks@il.ibm.com>
11599             Revital Eres  <eres@il.ibm.com>
11600
11601         * modulo-sched.c (calculate_must_precede_follow): Address TODO
11602         regarding the order of two dependent insns in the same row.
11603
11604 2008-02-25  Eric Botcazou  <ebotcazou@adacore.com>
11605
11606         * stor-layout.c (layout_decl): Do not bump the alignment of a
11607         bit-field to more than byte alignment if it is packed.
11608
11609 2008-02-24  David Edelsohn  <edelsohn@gnu.org>
11610
11611         * config/rs6000/rs6000.c (processor_costs): Add cache costs for
11612         e300c2 and e300c3.
11613
11614 2008-02-24  Diego Novillo  <dnovillo@google.com>
11615
11616         http://gcc.gnu.org/ml/gcc-patches/2008-02/msg01094.html
11617
11618         PR 33738
11619         * tree-vrp.c (vrp_evaluate_conditional): With
11620         -Wtype-limits, emit a warning when comparing against a
11621         constant outside the natural range of OP0's type.
11622         * c.opt (Wtype-limits): Move ...
11623         * common.opt (Wtype-limits): ... here.
11624
11625 2008-02-24  Edmar Wienskoski  <edmar@freescale.com>
11626
11627         * config.gcc (powerpc*-*-*): Add new cores e300c2 and e300c3.
11628         * config/rs6000/e300c2c3.md: New file.
11629         * config/rs6000/rs6000.c (processor_costs): Add new costs for
11630         e300c2 and e300c3.
11631         (rs6000_override_options): Add e300c2 and e300c3 cases to
11632         processor_target_table. Do not allow usage of Altivec or Spe
11633         with e300 cores. Initialize rs6000_cost for e300c2 and e300c3.
11634         (rs6000_issue_rate): Set issue rate for e300c2 and e300c3.
11635         * config/rs6000/rs6000.h (processor_type): Add
11636         PROCESSOR_PPCE300C2 and PROCESSOR_PPCE300C3.
11637         (ASM_CPU_SPEC): Add e300c2 and e300c3.
11638         * config/rs6000/rs6000.md (define_attr "cpu"): Add ppce300c2
11639         and ppce300c3. Include e300c2c3.md.
11640
11641 2008-02-23  David Edelsohn  <edelsohn@gnu.org>
11642
11643         * config/rs6000/rs6000.h (CONSTANT_ALIGNMENT): Use STRICT_ALIGNMENT
11644         instead of TARGET_STRICT_ALIGN.
11645
11646 2008-02-23  Joseph Myers  <joseph@codesourcery.com>
11647
11648         * explow.c (memory_address): Assert that the generated address is
11649         valid.
11650
11651 2008-02-23  Francois-Xavier Coudert  <coudert@clipper.ens.fr>
11652
11653         PR target/25477
11654         * config/darwin-protos.h: Add darwin_patch_builtins prototype.
11655         * config/darwin-ppc-ldouble-patch.def: New file.
11656         * config/rs6000/darwin.h (SUBTARGET_INIT_BUILTINS): New macro.
11657         * config/rs6000/rs6000.c (rs6000_init_builtins): Call
11658         SUBTARGET_INIT_BUILTINS if defined.
11659         * config/darwin.c (darwin_patch_builtin, darwin_patch_builtins):
11660         New functions.
11661
11662 2008-02-23  Andrew Pinski  <andrew_pinski@playstation.sony.com>
11663
11664         PR rtl-opt/33512
11665         * simplify-rtx.c (simplify_binary_operation_1): Add simplification
11666         of (and X (ior (not X) Y) and (and (ior (not X) Y) X).
11667
11668 2008-02-23  Andrew Pinski  <andrew_pinski@playstation.sony.com>
11669
11670         PR pch/35027
11671         * c-pch.c (c_common_valid_pch): Make the "too short to be a PCH
11672         file" warning condtional on -Winvalid-PCH.
11673
11674 2008-02-23  Daniel Jacobowitz  <dan@codesourcery.com>
11675
11676         * expmed.c (extract_bit_field): Always use adjust_address for MEM.
11677
11678 2008-02-23  Uros Bizjak  <ubizjak@gmail.com>
11679
11680         PR target/22076
11681         PR target/34256 
11682         * config/i386/mmx.md (*mov<mode>_internal_rex64): Use "!y" to
11683         prevent reload from using MMX registers.
11684         (*mov<mode>_internal): Ditto.
11685         (*movv2sf_internal_rex64): Ditto.
11686         (*movv2sf_internal): Ditto.
11687
11688 2008-02-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11689
11690         PR documentation/31569
11691         * doc/install.texi2html: Use makeinfo --no-number-sections.
11692
11693 2008-02-22  Nathan Froyd  <froydnj@codesourcery.com>
11694
11695         * config/rs6000/rs6000.c (rs6000_legitimize_address): Check to
11696         ensure that we can address an entire entity > 8 bytes.  Don't
11697         generate reg+reg addressing for such data.
11698
11699 2008-02-22  Nathan Froyd  <froydnj@codesourcery.com>
11700
11701         * config/rs6000/rs6000.h (CONSTANT_ALIGNMENT): Don't overalign
11702         strings when optimizing for size, unless the target cares about
11703         alignment.
11704
11705 2008-02-22  Tom Tromey  <tromey@redhat.com>
11706
11707         * regclass.c (current_pass): Remove declaration.
11708
11709 2008-02-22  Anatoly Sokolov <aesok@post.ru>
11710
11711         * config/avr/libgcc.S (__RAMPZ__): Define.
11712         (__do_copy_data): Add for devices with 128KB code memory.
11713
11714 2008-02-22  Nathan Froyd  <froydnj@codesourcery.com>
11715
11716         * config/rs6000/linuxspe.h (SUBSUBTARGET_OVERRIDE_OPTIONS):
11717         Use spe_abi.
11718         * config/rs6000/eabispe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Likewise.
11719
11720 2008-02-22  Hans-Peter Nilsson  <hp@axis.com>
11721
11722         * config/cris/cris.h (REG_CLASS_FROM_LETTER): Recognize 'b' for
11723         GENNONACR_REGS.
11724
11725 2008-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11726
11727         PR c/19999
11728         * c-typeck.c (build_binary_op): Warn about floating point
11729         comparisons if FLOAT_TYPE_P, not only for REAL_TYPE.
11730
11731 2008-02-21  Janis Johnson  <janis187@us.ibm.com>
11732
11733         PR target/34526
11734         * config/rs6000/rs6000.c (rs6000_altivec_abi): Clarify comment.
11735         (rs6000_explicit_options): Split abi into spe_abi and altivec_abi,
11736         add vrsave.
11737         (rs6000_override_options): Set altivec_abi as default, not override,
11738         for 64-bit GNU/Linux; for 32-bit GNU/Linux default to altivec_abi for
11739         TARGET_ALTIVEC; default to TARGET_ALTIVEC_VRSAVE when AltiVec ABI
11740         is used; use new member spe_abi.
11741         (rs6000_handle_option): Set rs6000_explicit_options.vrsave; use
11742         spe_abi and altivec_abi.
11743
11744 2008-02-22  Tomas Bily  <tbily@suse.cz>
11745
11746         * tree-vectorizer.c (vect_is_simple_reduction): Fix comment typo.
11747
11748 2008-02-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11749
11750         PR bootstrap/35273
11751         * config.build (build_file_translate): Set to `CMD //c' only if
11752         it works.
11753         * Makefile.in (build_file_translate): Improve comment.
11754
11755 2008-02-21  Jan Hubicka  <jh@suse.cz>
11756
11757         * predict.def (PRED_TREE_OPCODE_POSITIVE, PRED_TREE_OPCODE_NONEQUAL,
11758         PRED_TREE_OPCODE_POSITIVE, PRED_TREE_OPCODE_NONEQUAL, PRED_CALL,
11759         PRED_TREE_EARLY_RETURN, PRED_NULL_RETURN): Update.
11760
11761 2008-02-21  Michael Matz  <matz@suse.de>
11762
11763         PR target/35264
11764         * config/i386/i386.c (ix86_expand_branch): Add missing breaks.
11765
11766 2008-02-21  Uros Bizjak  <ubizjak@gmail.com>
11767
11768         * config/i386/i386.md (mov<mode>cc): Macroize expander from movsfcc,
11769         movdfcc and movxfcc using X87MODEF mode iterator and SSE_FLOAT_MODE_P
11770         as insn constraint.
11771         * config/i386/sse.md (<sse>_movup<ssemodesuffixf2c>): Macroize insn
11772         from sse_movups adn sse2_movupd using SSEMODEF2P mode iterator and
11773         SSE_VEC_FLOAT_MODE_P as insn constraint.
11774         (<sse>_movmskp<ssemodesuffixf2c>): Ditto from similar patterns.
11775         (sse4a_movnt<mode>): Macroize insn from sse4a_movntsf and
11776         sse4a_movntdf using MODEF mode iterator.
11777         (sse4a_vmmovnt<mode>): Macroize insn form sse4a_vmmovntv2df and
11778         sse4a_vmmovntv4sf using SSEMODEF2P mode iterator.
11779         (sse4_1_blendp<ssemodesuffixf2c>): Ditto from similar patterns.
11780         (sse4_1_blendvp<ssemodesuffixf2c>): Ditto.
11781         (sse4_1_dpp<ssemodesuffixf2c>): Ditto.
11782         (sse4_1_roundp<ssemodesuffixf2c>): Ditto.
11783         (sse4_1_rounds<ssemodesuffixf2c>): Ditto.
11784
11785 2008-02-21  Richard Guenther  <rguenther@suse.de>
11786
11787         * tree.def (PAREN_EXPR): New tree code.
11788         * fold-const.c (fold_unary): Remove PAREN_EXPR around constants
11789         and PAREN_EXPR.
11790         * tree-pretty-print.c (dump_generic_node): Handle PAREN_EXPR.
11791         * expr.c (expand_expr_real_1): Likewise.
11792         * tree-inline.c (estimate_num_insns_1): Likewise.
11793         * tree-complex.c (expand_complex_move): Likewise.
11794         * tree-vectorizer.c (vect_is_simple_use): Treat PAREN_EXPR (x)
11795         as plain x.
11796
11797 2008-02-20  Kaz Kojima  <kkojima@gcc.gnu.org>
11798
11799         PR target/35225
11800         * config/sh/sh.c (find_barrier): Don't go past 'from' argument.
11801
11802 2008-02-20  Kaz Kojima  <kkojima@gcc.gnu.org>
11803
11804         PR target/35190
11805         * config/sh/sh.md (jump_compact): Disable for crossing jumps.
11806
11807         * config/sh/sh.c (find_barrier): Don't go past
11808         NOTE_INSN_SWITCH_TEXT_SECTIONS note.
11809
11810 2008-02-20  DJ Delorie  <dj@redhat.com>
11811
11812         * config/h8300/h8300.md (insv): Force source operand to be a register.
11813
11814         * config/h8300/h8300.c (h8300_expand_epilogue): Emit return insn
11815         as a jump, not as a plain insn.
11816         
11817 2008-02-20  Seongbae Park <seongbae.park@gmail.com>
11818
11819         * doc/invoke.texi (Warning Options): Add new option
11820         -Wframe-larger-than=.
11821         (-Wframe-larger-than): Document.
11822
11823         * flags.h (warn_frame_larger_than, frame_larger_than_size):
11824         Add declarations for new option variables.
11825
11826         * final.c (final_start_function): Check the frame size
11827         before emission and issue a Wframe-larger-than warning.
11828
11829         * opts.c (warn_frame_larger_than, frame_larger_than_size):
11830         Add definitions for new option variables.
11831         (common_handle_option): Handle new option OPT_Wframe_larger_than_.
11832
11833         * common.opt (Wframe-larger-than=): New option.
11834
11835 2008-02-20  Uros Bizjak  <ubizjak@gmail.com>
11836
11837         * config/i386/sse.md (<sse>_vmmul<mode>3): Fix typo in asm template.
11838         (<sse>_div<mode>3): Ditto.
11839         (<sse>_vmdiv<mode>3): Ditto.
11840         (<sse>_vmsqrt<mode>2): Ditto.
11841         (*smax<mode>3): Ditto.
11842         (sse5_frcz<mode>2): Ditto.
11843         (sse5_vmfrcz<mode>2): Ditto.  Use TARGET_SSE5 instead of TARGET_ROUND
11844         as insn constraint.
11845
11846 2008-02-20  Richard Guenther  <rguenther@suse.de>
11847
11848         PR middle-end/35265
11849         * builtins.c (validate_arg): If we want an INTEGER_TYPE,
11850         be happy with INTEGRAL_TYPE_P.
11851
11852 2008-02-20  Richard Guenther  <rguenther@suse.de>
11853
11854         * fold-const.c (split_tree): Associate floatig-point expressions
11855         if flag_associative_math is set.
11856
11857 2008-02-20  Richard Guenther  <rguenther@suse.de>
11858
11859         * tree.h (fold_real_zero_addition_p): Declare.
11860         * fold-const.c (fold_real_zero_addition_p): Export.
11861         * tree-ssa-reassoc.c (eliminate_using_constants): Also handle
11862         floating-point operations with zero and one.
11863
11864 2008-02-20  Paolo Bonzini  <bonzini@gnu.org>
11865
11866         * doc/install.texi: Correct references to CFLAGS, replacing them
11867         with BOOT_CFLAGS.  Document flags used during bootstrap for
11868         target libraries.
11869                                 
11870 2008-02-20  Uros Bizjak  <ubizjak@gmail.com>
11871
11872         * config/i386/i386.h (SSE_VEC_FLOAT_MODE_P): New define.
11873         * config/i386/i386.md (*sse_setcc<mode>): Macroize from *sse_setccsf
11874         and *sse_setccdf using MODEF mode iterator and SSE_FLOAT_MODE_P as
11875         insn constraint.
11876         (smin<mode>3): Ditto from similar patterns.
11877         (smax<mode>3): Ditto.
11878         (*ieee_smin<mode>3): Ditto.
11879         (*ieee_smax<mode>3): Ditto.
11880         * config/i386/sse.md (sse): New mode attribute.
11881         (mov<mode>): Macroize expander from movv4sf and movv2df using
11882         SSEMODEF2P mode iterator.
11883         (<sse>_movnt<mode>): Ditto from similar patterns. Use
11884         SSE_VEC_FLOAT_MODE_P as insn constraint.
11885         (storent<mode>): Ditto.
11886         (storent<mode>): Macroize expander from storentsf and storentdf using
11887         MODEF mode iterator.
11888         (neg<mode>2): Macroize from negv4sf2 and negv2df2 using SSEMODEF2P
11889         mode iterator and SSE_VEC_FLOAT_MODE_P as insn constraint.
11890         (abs<mode>2): Ditto from similar patterns.
11891         (add<mode>3, *add<mode>3, <sse>_vmadd<mode>3): Ditto.
11892         (sub<mode>3, *sub<mode>3, <sse>_vmsub<mode>3): Ditto.
11893         (<sse>_div<mode>3, <sse>_vmdiv<mode>3): Ditto.
11894         (<sse>_vmsqrt<mode>2): Ditto.
11895         (smin<mode>3, *smin<mode>3_finite, *smin<mode>3)
11896         (<sse>_vmsmin<mode>3, *ieee_smin<mode>3): Ditto.
11897         (smax<mode>3, *smax<mode>3_finite, *smax<mode>3)
11898         (<sse>_vmsmax<mode>3, *ieee_smax<mode>3): Ditto.
11899         (<sse>_maskcmp<mode>3): Macroize from sse_maskcmpv4sf3,
11900         sse_maskcmpsf3, sse2_maskcmpv2df3 and sse2_maskcmpdf3 using SSEMODEF4
11901         mode iterator. Use SSE_FLOAT_MODE_P with SSE_VEC_FLOAT_MODE_P as
11902         insn constraint.
11903         (<sse>_comi): Macroize from sse_comi and sse2_comi using MODEF mode
11904         iterator and SSE_FLOAT_MODE_P as insn constraint.
11905         (<sse>_ucomi): Ditto from similar patterns.
11906         (<sse>_vmmaskcmp<mode>3): Macroize from sse_vmmaskcmpv4sf3 and
11907         sse2_vmmaskcmpv2df3 using SSEMODEF2P mode iterator and
11908         SSE_VEC_FLOAT_MODE_P as insn constraint.
11909         (vcond<mode>): Ditto from similar patterns.
11910         (and<mode>3, *and<mode>3): Ditto.
11911         (<sse>_nand<mode>3): Ditto.
11912         (ior<mode>3, *ior<mode>3): Ditto.
11913         (xor<mode>3, *xor<mode>3): Ditto.
11914         (*and<mode>3): Macroize from *andsf3 and *anddf3 using MODEF mode
11915         iterator and SSE_FLOAT_MODE_P as insn constraint.
11916         (*nand<mode>3): Ditto from similar patterns.
11917         (*ior<mode>3): Ditto.
11918         (*xor<mode>3): Ditto.
11919
11920 2008-02-20  Ira Rosen  <irar@il.ibm.com>
11921
11922         * config/spu/spu.md (vec_unpacku_hi_v8hi, vec_unpacku_lo_v8hi,
11923         vec_unpacks_hi_v8hi, vec_unpacks_lo_v8hi, vec_unpacku_hi_v16qi,
11924         vec_unpacku_lo_v16qi, vec_unpacks_lo_v16qi): Implement.
11925
11926 2008-02-19  Jan Hubicka  <jh@suse.cz>
11927
11928         * predict.c (tree_bb_level_predictions): Remove variable next
11929         mistakely introduced by previous commit.
11930
11931 2008-02-19  Jan Hubicka  <jh@suse.cz>
11932
11933         * predict.c (predict_paths_leading_to): Rewrite.
11934         (predict_paths_for_bb): New.
11935         (tree_bb_level_predictions): Update call of predict_paths_leading_to.
11936
11937 2008-02-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11938
11939         PR bootstrap/35218
11940         * Makefile.in (build_file_translate): New.
11941         (gcc-vers.texi): Use it for translating $(abs_srcdir).
11942         * config.build (build_file_translate): Set to `CMD //c' on MinGW.
11943         * configure.ac (build_file_translate): Substitute it.
11944         * configure: Regenerate.
11945
11946 2008-02-19  Jan Hubicka  <jh@suse.cz>
11947
11948         PR rtl-optimization/34408
11949         * see.c (see_def_extension_not_merged): Copy subreg so we don't have
11950         invalid sharing.
11951
11952 2008-02-19  Jan Hubicka  <jh@suse.cz>
11953
11954         PR middle-end/28779
11955         * tree-inline.c (estimate_num_insns_1): Fix counting of cost of
11956         call_expr.
11957
11958 2008-02-19  H.J. Lu  <hongjiu.lu@intel.com>
11959
11960         PR Ada/35186
11961         * config/i386/i386-modes.def: Revert the last DI alignment
11962         change until Ada people can look into it.
11963
11964 2008-02-19  Nick Clifton  <nickc@redhat.com>
11965
11966         * opts.c (print_specific_help): Fix typo in --help text.
11967
11968 2008-02-19  Jakub Jelinek  <jakub@redhat.com>
11969
11970         PR target/35239
11971         * config/i386/cpuid.h (__cpuid, __get_cpuid_max): Use special
11972         32-bit inline asm without asm alternatives for host GCC < 3.0.
11973
11974 2008-02-19  Richard Guenther  <rguenther@suse.de>
11975
11976         PR tree-optimization/34989
11977         * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Re-structure.
11978         Allow propagation to INDIRECT_REF if we can simplify only.
11979
11980 2008-02-19  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
11981
11982         * c-common.c (warn_for_collisions_1): Use appropriate option when
11983         warning.
11984
11985 2008-02-19  Nick Clifton  <nickc@redhat.com>
11986
11987         PR other/31349
11988         * opts.c (undocumented_msg): Leave blank unless checking is enabled.
11989         (handle_options): Fix indentation.
11990         (print_filtered_help): If no language-specific options were
11991         displayed tell the user how to list all the options supported by
11992         the language's front-end.
11993         (print_specific_help): Fix indentation and remove duplicate line.
11994         (common_handle_option): Handle the -v option.
11995         For --help enable the display of undocumented options if the -v
11996         switch has been included on the command line.
11997         For --help= check for overlaps in the arguments between the option
11998         classes and the language names and issue a warning when they
11999         cannot be disambiguated.
12000         * c.opt (v): Pass on to the common option handler.
12001
12002 2008-02-19  Revital Eres  <eres@il.ibm.com> 
12003
12004         * modulo-sched.c (sms_schedule): Change dump message when
12005         create_ddg function fails.
12006         (try_scheduling_node_in_cycle): Rename row to cycle.
12007         (print_partial_schedule): Rename CYCLE to ROW.
12008
12009 2008-02-19  Christian Bruel  <christian.bruel@st.com>
12010             Zdenek Dvorak  <ook@ucw.cz>
12011
12012         * tree-ssa-loop-ivopts.c (may_be_unaligned_p): Check step alignment.
12013
12014 2008-02-19  Uros Bizjak  <ubizjak@gmail.com>
12015
12016         PR target/33555
12017         * config/i386/i386.md (*x86_movsicc_0_m1_se): New insn pattern.
12018         (*x86_movdicc_0_m1_se): Ditto.
12019
12020 2008-02-19  Uros Bizjak  <ubizjak@gmail.com>
12021
12022         * config/i386/sfp-machine.h (__gcc_CMPtype): New typedef.
12023         (CMPtype): Define as __gcc_CMPtype.
12024         * config/rs6000/sfp-machine.h (__gcc_CMPtype): New typedef.
12025         (CMPtype): Define as __gcc_CMPtype.
12026
12027 2008-02-19  Hans-Peter Nilsson  <hp@axis.com>
12028
12029         Support valgrind 3.3 for --enable-checking=valgrind.
12030         * system.h: Consolidate ENABLE_VALGRIND_CHECKING-dependent defines
12031         here.
12032         [!VALGRIND_MAKE_MEM_NOACCESS]: Define as VALGRIND_MAKE_NOACCESS.
12033         [!VALGRIND_MAKE_MEM_DEFINED]: Define as VALGRIND_MAKE_READABLE.
12034         [!VALGRIND_MAKE_MEM_UNDEFINED]: Define as VALGRIND_MAKE_WRITABLE.
12035         * ggc-common.c: Remove ENABLE_VALGRIND_CHECKING-dependent defines.
12036         Replace use of VALGRIND_MAKE_READABLE, VALGRIND_MAKE_WRITABLE, and
12037         VALGRIND_MAKE_NOACCESS with VALGRIND_MAKE_MEM_DEFINED,
12038         VALGRIND_MAKE_MEM_UNDEFINED, and VALGRIND_MAKE_MEM_NOACCESS
12039         respectively.
12040         * ggc-zone.c: Similar.
12041         * ggc-page.c: Similar.
12042
12043 2008-02-19  Paul Brook  <paul@codesourcery.com>
12044
12045         PR target/35071
12046         * config/arm/ieee754-df.S: Fix do_it typo.
12047         * config/arm/ieee754-sf.S: Fix do_it typo.
12048
12049 2008-02-18  H.J. Lu  <hongjiu.lu@intel.com>
12050
12051         PR target/35189
12052         * config/i386/i386.c (OPTION_MASK_ISA_MMX_SET): New.
12053         (OPTION_MASK_ISA_3DNOW_SET): Likewise.
12054         (OPTION_MASK_ISA_SSE_SET): Likewise.
12055         (OPTION_MASK_ISA_SSE2_SET): Likewise.
12056         (OPTION_MASK_ISA_SSE3_SET): Likewise.
12057         (OPTION_MASK_ISA_SSSE3_SET): Likewise.
12058         (OPTION_MASK_ISA_SSE4_1_SET): Likewise.
12059         (OPTION_MASK_ISA_SSE4_2_SET): Likewise.
12060         (OPTION_MASK_ISA_SSE4_SET): Likewise.
12061         (OPTION_MASK_ISA_SSE4A_SET): Likewise.
12062         (OPTION_MASK_ISA_SSE5_SET): Likewise.
12063         (OPTION_MASK_ISA_3DNOW_A_UNSET): Likewise.
12064         (OPTION_MASK_ISA_MMX_UNSET): Updated.
12065         (OPTION_MASK_ISA_3DNOW_UNSET): Updated.
12066         (OPTION_MASK_ISA_SSE_UNSET): Likewise.
12067         (OPTION_MASK_ISA_SSE3_UNSET): Likewise.
12068         (OPTION_MASK_ISA_SSSE3_UNSET): Likewise.
12069         (OPTION_MASK_ISA_SSE4_1_UNSET): Likewise.
12070         (OPTION_MASK_ISA_SSE4_2_UNSET): Likewise.
12071         (OPTION_MASK_ISA_SSE4A_UNSET): Likewise.
12072         (OPTION_MASK_ISA_SSE5_UNSET): Likewise.
12073         (OPTION_MASK_ISA_SSE4): Removed.
12074         (ix86_handle_option): Turn on bits in ix86_isa_flags and
12075         ix86_isa_flags_explicit with OPTION_MASK_ISA_XXX_SET for -mXXX.
12076         (override_options): Don't turn on implied SSE/MMX bits in
12077         ix86_isa_flags.
12078
12079 2008-02-18  H.J. Lu  <hongjiu.lu@intel.com>
12080
12081         * config/i386/i386-modes.def: Use 4 byte alignment on DI for
12082         32bit host.
12083
12084 2008-02-18  Joey Ye  <joey.ye@intel.com>
12085
12086         PR middle-end/34921
12087         * tree-nested.c (insert_field_into_struct): Set type alignment
12088         to field alignment if the former is less than the latter.
12089
12090 2008-02-18  Jakub Jelinek  <jakub@redhat.com>
12091
12092         * BASE-VER: Set to 4.4.0.
12093
12094 2008-02-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
12095
12096         * doc/c-tree.texi: Use @dots{} and @enddots{} where appropriate.
12097         * doc/cfg.texi: Likewise.
12098         * doc/extend.texi: Likewise.
12099         * doc/gty.texi: Likewise.
12100         * doc/invoke.texi: Likewise.
12101         * doc/loop.texi: Likewise.
12102         * doc/md.texi: Likewise.
12103         * doc/passes.texi: Likewise.
12104         * doc/rtl.texi: Likewise.
12105         * doc/sourcebuild.texi: Likewise.
12106         * doc/tm.texi: Likewise.
12107         * doc/tree-ssa.texi: Likewise.
12108
12109 2008-02-17  Richard Guenther  <rguenther@suse.de>
12110
12111         PR middle-end/35227
12112         * tree-complex.c (init_parameter_lattice_values): Handle parameters
12113         without default definition.
12114
12115 2008-02-17  Richard Guenther  <rguenther@suse.de>
12116
12117         PR tree-optimization/35231
12118         * tree-vrp.c (register_edge_assert_for): Do not assume A == 0
12119         if A | B != 1.
12120
12121 2008-02-17  Uros Bizjak  <ubizjak@gmail.com>
12122
12123         Revert:
12124         2008-02-15  Uros Bizjak  <ubizjak@gmail.com>    
12125         * config/i386/sfp-machine.h (CMPtype): Define as typedef using
12126         libgcc_cmp_return mode.
12127
12128 2008-02-16  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
12129
12130         PR c/28368
12131         * doc/invoke.texi (-std): Clarify description of -std= and -ansi.
12132
12133 2008-02-16  Ralf Corsepius  <ralf.corsepius@rtems.org>
12134
12135         * config/m68k/t-rtems (M68K_MLIB_CPU): Add 5208, 5307, 5407, 5475
12136         multilibs.
12137
12138 2008-02-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12139
12140         * doc/c-tree.texi: Use `@.' where appropriate.
12141         * doc/extend.texi: Likewise.
12142         * doc/install.texi: Likewise.
12143         * doc/invoke.texi: Likewise.
12144         * doc/loop.texi: Likewise.
12145         * doc/makefile.texi: Likewise.
12146         * doc/md.texi: Likewise.
12147         * doc/passes.texi: Likewise.
12148         * doc/standards.texi: Likewise.
12149         * doc/tm.texi: Likewise.
12150
12151 2008-02-15  Jakub Jelinek  <jakub@redhat.com>
12152
12153         PR middle-end/35196
12154         * omp-low.c (expand_omp_for_generic): Don't initialize fd->v
12155         in entry_bb.
12156         (expand_omp_for_static_nochunk): Initialize fd->v in seq_start_bb
12157         rather than in entry_bb.
12158
12159 2008-02-15  Uros Bizjak  <ubizjak@gmail.com>
12160
12161         * config/i386/sfp-machine.h (CMPtype): Define as typedef using
12162         libgcc_cmp_return mode.
12163
12164 2008-02-15  Jakub Jelinek  <jakub@redhat.com>
12165
12166         PR middle-end/35130
12167         * tree-nested.c (convert_call_expr): Put FRAME.* vars into
12168         OMP_CLAUSE_SHARED rather than OMP_CLAUSE_FIRSTPRIVATE clause.
12169
12170 2008-02-15  Richard Guenther  <rguenther@suse.de>
12171             Zdenek Dvorak  <ook@ucw.cz>
12172
12173         PR tree-optimization/35164
12174         * tree-flow.h (stmt_references_abnormal_ssa_name): Declare.
12175         * tree-dfa.c (stmt_references_abnormal_ssa_name): New function.
12176         * tree-ssa-forwprop.c (tree_ssa_forward_propagate_single_use_vars):
12177         Only propagate addresses which do not have abnormal SSA_NAMEs
12178         in their operands.
12179
12180 2008-02-15  Joseph Myers  <joseph@codesourcery.com>
12181
12182         PR target/35088
12183         * config/m68k/m68k.h (DWARF_CIE_DATA_ALIGNMENT): Define.
12184
12185 2008-02-15  Jan Hubicka  <jh@suse.cz>
12186
12187         PR middle-end/35149
12188         * ipa.c (cgraph_remove_unreachable_nodes): Clear local.inlinable flag.
12189
12190 2008-02-15  Uros Bizjak  <ubizjak@gmail.com>
12191
12192         PR middle-end/34621
12193         * function.c (pad_to_arg_alignment): Remove test for STACK_BOUNDARY
12194         when calculating alignment_pad.
12195
12196 2008-02-15  Uros Bizjak  <ubizjak@gmail.com>
12197
12198         * config/i386/i386.h (CLEAR_RATIO): Use MIN macro.
12199         (WIDEST_HARDWARE_FP_SIZE): Use LONG_DOUBLE_TYPE_SIZE define.
12200         * config/i386/darwin.h (PREFERRED_STACK_BOUNDARY): Use MAX macro
12201         and STACK_BOUNDARY define.
12202
12203 2008-02-14  Danny Smith  <dannysmith@users.sourceforge.net>
12204
12205         PR preprocessor/35061
12206         * c-pragma.c (handle_pragma_pop_macro): Check that
12207         pushed_macro_table has been allocated.
12208
12209 2008-02-14  Eric Botcazou  <ebotcazou@adacore.com>
12210
12211         PR middle-end/35136
12212         * gimplify.c (force_gimple_operand_bsi): Revert 2008-02-12 change.
12213         (force_gimple_operand): Likewise.
12214         * tree-ssa-loop-ivopts.c (may_be_nonaddressable_p): Add new cases
12215         for TARGET_MEM_REF and CONVERT_EXPR/NON_LVALUE_EXPR/NOP_EXPR.
12216         Also recurse on the operand for regular VIEW_CONVERT_EXPRs.
12217         (find_interesting_uses_address): Check addressability and alignment
12218         of the base expression only after substituting bases of IVs into it.
12219
12220 2008-02-14  Michael Matz  <matz@suse.de>
12221
12222         PR target/34930
12223         * function.c (instantiate_virtual_regs_in_insn): Reload address
12224         before falling back to reloading the whole operand.
12225
12226 2008-02-14  Andreas Krebbel  <krebbel1@de.ibm.com>
12227
12228         * config/s390/s390.c (s390_mainpool_start): Emit the pool
12229         before the first section switch note.
12230
12231 2008-02-14 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
12232
12233         * doc/bugreport.texi: Update copyright years.
12234         * doc/c-tree.texi: Likewise.
12235         * doc/cfg.texi: Likewise.
12236         * doc/cpp.texi: Likewise.
12237         * doc/cppinternals.texi: Likewise.
12238         * doc/fragments.texi: Likewise.
12239         * doc/frontends.texi: Likewise.
12240         * doc/gcc.texi: Likewise.
12241         * doc/gty.texi: Likewise.
12242         * doc/hostconfig.texi: Likewise.
12243         * doc/implement-c.texi: Likewise.
12244         * doc/libgcc.texi: Likewise.
12245         * doc/loop.texi: Likewise.
12246         * doc/makefile.texi: Likewise.
12247         * doc/options.texi: Likewise.
12248         * doc/passes.texi: Likewise.
12249         * doc/rtl.texi: Likewise.
12250         * doc/sourcebuild.texi: Likewise.
12251         * doc/standards.texi: Likewise.
12252         * doc/tree-ssa.texi: Likewise.
12253         * doc/trouble.texi: Likewise.
12254
12255         * doc/extend.texi: Use @: or add comma where appropriate.
12256         * doc/invoke.texi: Likewise.
12257         * doc/tm.texi: Likewise.
12258
12259 2008-02-14  Alan Modra  <amodra@bigpond.net.au>
12260
12261         PR target/34393
12262         * config/rs6000/rs6000.md (restore_stack_block): Force operands[1]
12263         to a reg.
12264
12265 2008-02-14  Jesper Nilsson  <jesper.nilsson@axis.com>
12266
12267         * doc/md.texi (clz, ctz): Add reference.
12268         * doc/rtl.texi (clz, ctz): Likewise.
12269
12270 2008-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12271
12272         PR other/35148
12273         * Makefile.in (gcc-vers.texi): Use abs_srcdir for the value of
12274         srcdir.
12275
12276 2008-02-13  Andreas Krebbel  <krebbel1@de.ibm.com>
12277
12278         * config/s390/s390.c (struct constant_pool): New field
12279         emit_pool_after added.
12280         (s390_mainpool_start): Set the emit_pool_after flag according
12281         to the section switch notes.
12282         (s390_mainpool_finish): Consider emit_pool_after when emitting
12283         the literal pool at the end of the function.
12284         (s390_chunkify_start): Force literal pool splits at section
12285         switch notes.
12286
12287 2008-02-13  Michael Matz  <matz@suse.de>
12288
12289         PR debug/35065
12290         * var-tracking.c (clobber_variable_part): Correctly traverse the
12291         list.
12292
12293 2008-02-13  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
12294
12295         PR 29673
12296         * doc/invoke.texi (Debugging Options): Remove -fdump-tree-inlined.
12297         Add -fdump-ipa-inline.
12298         * tree-dump.c (dump_files): Remove tree-inlined dump.
12299         * tree-pass.h (tree_dump_index): Remove TDI_inlined.
12300         
12301 2008-02-12  Richard Guenther  <rguenther@suse.de>
12302
12303         PR tree-optimization/35171
12304         * tree-vect-patterns.c (vect_recog_dot_prod_pattern): Deal with
12305         default defs.
12306
12307 2008-02-12  Richard Guenther  <rguenther@suse.de>
12308
12309         PR middle-end/35163
12310         * fold-const.c (fold_widened_comparison): Use get_unwidened in
12311         value-preserving mode.  Disallow final truncation.
12312
12313 2008-02-12  Eric Botcazou  <ebotcazou@adacore.com>
12314
12315         PR middle-end/35136
12316         * gimplify.c (force_gimple_operand_bsi): Move SSA renaming
12317         code from here to...
12318         (force_gimple_operand): ...here.
12319
12320 2008-02-12  Jakub Jelinek  <jakub@redhat.com>
12321
12322         PR c++/35144
12323         * tree-sra.c (sra_build_assignment): fold_convert SRC if copying
12324         non-compatible pointers.
12325         (generate_element_copy): If SRC and DST are RECORD_TYPEs with
12326         different FIELD_DECLs, try harder by comparing field offsets, sizes
12327         and types.
12328
12329         PR inline-asm/35160
12330         * function.c (match_asm_constraints_1): Don't replace the same input
12331         multiple times.
12332
12333 2008-02-12  Anatoly Sokolov <aesok@post.ru>
12334
12335         * config/avr/avr.h (AVR_HAVE_RAMPZ): Define.
12336         * config/avr/avr.c (expand_prologue): Save RAMPZ register.
12337         (expand_epilogue): Restore RAMPZ register.
12338         * config/avr/avr.md (RAMPZ_ADDR): New constant.
12339
12340 2008-02-11  Kai Tietz  <kai.tietz@onevision.com>
12341
12342         * config/i386/cygwin.asm: (__alloca): Correct calling
12343         convention and alignment.
12344         (__chkstk): Force 8 byte stack alignment.
12345
12346 2008-02-11  Uros Bizjak  <ubizjak@gmail.com>
12347             Richard Guenther  <rguenther@suse.de>
12348
12349         PR tree-optimization/33992
12350         * tree-ssa-loop-im.c (rewrite_bittest): Fixup the type of
12351         the zero we compare against.
12352
12353 2008-02-10  Danny Smith  <dannysmith@users.sourceforge.net>
12354
12355         PR libfortran/35063
12356         * gthr-win32.h (__gthread_mutex_destroy_function): New function
12357         to CloseHandle after unlocking to prevent accumulation of handle
12358         count.
12359
12360 2008-02-09  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
12361
12362         PR middle_end/34150
12363         * pa.c (legitimize_pic_address): Add REG_EQUAL note on sets with a
12364         pic_label_operand source.  Similarly, add a REG_LABEL_OPERAND note
12365         and update LABEL_NUSES during and after reload.
12366
12367 2008-02-08  Steven Bosscher  <stevenb.gcc@gmail.com>
12368
12369         PR middle-end/34627
12370         * combine.c (simplify_if_then_else): Make sure the comparison is
12371         against const0_rtx when simplifying to (abs x) or (neg (abs X)).
12372
12373 2008-02-08  Richard Sandiford  <rsandifo@nildram.co.uk>
12374
12375         PR bootstrap/35051
12376         * double-int.h: Don't include gmp.h for GENERATOR_FILEs.
12377         (mpz_set_double_int, mpz_get_double_int): Hide from GENERATOR_FILEs.
12378         * real.h: Don't include gmp.h or mpfr.h for GENERATOR_FILEs.
12379         (real_from_mpfr, mpfr_from_real): Hide from GENERATOR_FILEs.
12380         * tree.h (get_type_static_bounds): Likewise.
12381
12382 2008-02-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12383
12384         * doc/invoke.texi (Option Summary, C++ Dialect Options)
12385         (Objective-C and Objective-C++ Dialect Options, Warning Options):
12386         Make -Wfoo language annotations match what the compiler outputs.
12387
12388 2008-02-08  Sa Liu  <saliu@de.ibm.com>
12389
12390         * config/spu/spu-builtins.def: Fixed wrong parameter type in spu 
12391         intrinsics spu_convts, spu_convtu, spu_convtf.
12392
12393 2008-02-08  Hans-Peter Nilsson  <hp@axis.com>
12394
12395         * doc/extend.texi (Function Attributes) <noinline>: Mention
12396         asm ("") as method to keep calls.
12397
12398 2008-02-07  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
12399
12400         PR other/32754
12401         * doc/options.texi (Options): Replace references to opts.sh with
12402         optc-gen.awk.
12403         * opts-common.c: Likewise.
12404         * optc-gen.awk: Likewise.
12405         
12406 2008-02-07  Andreas Krebbel  <krebbel1@de.ibm.com>
12407
12408         * config/s390/s390.h (FUNCTION_ARG_REGNO_P): Fix fprs for 64 bit.
12409
12410 2008-02-07  Richard Henderson  <rth@redhat.com>
12411
12412         PR rtl-opt/33410
12413         * config/alpha/alpha.c (alpha_emit_xfloating_compare): Use an
12414         EXPR_LIST for the REG_EQUAL instead of a comparison with a 
12415         funny mode.
12416
12417 2008-02-07  Uros Bizjak  <ubizjak@gmail.com>
12418
12419         PR tree-optimization/35085
12420         * tree-ssa-reassoc.c (rewrite_expr_tree): Enable destructive update
12421         for operand entry oe2 in addition to operand entry oe3 in order to
12422         expose more opportunities for vectorizer sum reduction.
12423
12424 2008-02-06  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12425
12426         PR other/35107
12427         * Makefile.in (LIBS): Remove $(GMPLIBS).
12428         (cc1-dummy, cc1): Add $(GMPLIBS).
12429
12430 2008-02-06  Jan Hubicka  <jh@suse.cz>
12431
12432         PR target/23322
12433         * i386.md (moddf_integer): Do not produce partial memory stalls for
12434         targets where it hurts.
12435
12436 2008-02-06  Uros Bizjak  <ubizjak@gmail.com>
12437
12438         PR target/35083
12439         * optabs.c (expand_float): Do not check for decimal modes when
12440         expanding unsigned integer through signed conversion.
12441
12442 2008-02-06  Nick Clifton  <nickc@redhat.com>
12443
12444         * config/stormy16/stormy16.md (eqbranchsi): Replace a match_dup
12445         inside the clobber with a match_operand and duplicated operand
12446         number in the constraint.
12447         (ineqbranchsi): Delete redundant comment.
12448
12449 2008-02-06  Ralf Corsepius  <ralf.corsepius@rtems.org>
12450
12451         * config/arm/rtems-elf.h (TARGET_OS_CPP_BUILTINS): Add 
12452         builtin_define ("__USE_INIT_FINI__").
12453         * config/h8300/t-rtems (MULTILIB_OPTION,MULTILIB_DIRNAMES): Add
12454         -msx multilibs.
12455         * gthr-rtems.h: Remove __GTHREAD_MUTEX_INIT.
12456
12457 2008-02-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12458
12459         PR documentation/30330
12460         * doc/invoke.texi (C++ Dialect Options)
12461         (Objective-C and Objective-C++ Dialect Options, Warning Options):
12462         For each warning option -Wfoo that allows -Wno-foo, ensure both
12463         -Wfoo and -Wno-foo are listed in the option index.  Fix index
12464         entry of -Wswitch-default, index -Wnormalized= including the
12465         `=', and -Wlarger-than-@var{len} including @var{len}.
12466
12467 2008-02-05  Uros Bizjak  <ubizjak@gmail.com>
12468
12469         * config/i386/i386.md (floatunssisf2): Use
12470         ix86_expand_convert_uns_sisf_sse also for TARGET_SSE.
12471         (floatunssi<mode>2): Rename from floatunssisf2 and floatunssidf2.
12472         Macroize expander using MODEF mode iterator.
12473
12474 2008-02-05  Diego Novillo  <dnovillo@google.com>
12475
12476         http://gcc.gnu.org/ml/gcc-patches/2008-02/msg00140.html
12477
12478         PR 33738
12479         * tree-vrp.c (vrp_evaluate_conditional): Revert fix for PR 33738.
12480
12481 2008-02-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12482
12483         PR other/35070
12484         * toplev.c (print_version): Honor `indent' for GMP/MPFR warnings.
12485
12486 2008-02-05  H.J. Lu  <hongjiu.lu@intel.com>
12487
12488         PR target/35084
12489         * config/i386/i386.c (ix86_function_sseregparm): Add an arg
12490         to indicate if a message should be generated.
12491         (init_cumulative_args): Updated.
12492         (function_value_32): Likewise.
12493
12494 2008-02-05  Joseph Myers  <joseph@codesourcery.com>
12495
12496         * doc/include/texinfo.tex: Update to version 2008-02-04.16.
12497
12498 2008-02-05  Uros Bizjak  <ubizjak@gmail.com>
12499
12500         PR target/35083
12501         * config/i386/i386.md (floatunsisf2): Enable for TARGET_SSE_MATH only.
12502         Call ix86_expand_convert_uns_sisf_sse for TARGET_SSE2.
12503
12504 2008-02-04  Diego Novillo  <dnovillo@google.com>
12505
12506         http://gcc.gnu.org/ml/gcc-patches/2008-02/msg00110.html
12507
12508         PR 33738
12509         * tree-vrp.c (vrp_evaluate_conditional): With
12510         -Wtype-limits, emit a warning when comparing against a
12511         constant outside the natural range of OP0's type.
12512
12513 2008-02-04  Richard Guenther  <rguenther@suse.de>
12514
12515         PR middle-end/33631
12516         * expr.c (count_type_elements): Give for unions instead of
12517         guessing.
12518
12519 2008-02-04  Richard Guenther  <rguenther@suse.de>
12520
12521         PR middle-end/35043
12522         * gimplify.c (gimplify_init_ctor_eval): Convert array indices
12523         to TYPE_DOMAINs base type instead of using bitsizetype here.
12524
12525 2008-02-03  Jason Merrill  <jason@redhat.com>
12526
12527         * print-tree.c (print_node) [CONSTRUCTOR]: Print elements.
12528
12529 2008-02-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12530
12531         PR other/29972
12532         * doc/invoke.texi (C++ Dialect Options, Optimize Options)
12533         (HPPA Options, i386 and x86-64 Options, IA-64 Options)
12534         (RS/6000 and PowerPC Options): Fix typos and markup.
12535         * doc/passes.texi (Tree-SSA passes): Likewise.
12536
12537 2008-02-02  Michael Matz  <matz@suse.de>
12538
12539         PR target/35045
12540         * postreload-gcse.c (record_last_reg_set_info_regno): Renamed
12541         from record_last_reg_set_info.
12542         (record_last_reg_set_info): Take an RTX argument, iterate over all
12543         constituent hardregs.
12544         (record_last_set_info, record_opr_changes): Change calls to
12545         new signature or to record_last_reg_set_info_regno.
12546
12547 2008-02-02  Gerald Pfeifer  <gerald@pfeifer.com>
12548
12549         * doc/extend.texi (X86 Built-in Functions): Fix grammar.
12550
12551 2008-02-01  Hans-Peter Nilsson  <hp@axis.com>
12552
12553         PR rtl-optimization/34773
12554         * reg-notes.def (EQUAL): Mention significance of combination of
12555         REG_EQUAL and REG_RETVAL.
12556         * fwprop.c (try_fwprop_subst): Don't add REG_EQUAL to an
12557         insn that has a REG_RETVAL.
12558
12559 2008-02-01  Roger Sayle  <roger@eyesopen.com>
12560
12561         PR bootstrap/33781
12562         * configure.ac (--enable-fixed-point): Disable unless explicitly
12563         requested on IRIX.
12564         * configure: Regenerate.
12565
12566 2008-02-01  Richard Guenther  <rguenther@suse.de>
12567
12568         PR other/35042
12569         * invoke.texi (-finline-limit): Remove no longer true parts
12570         of the documentation.  Note that there is no default value.
12571
12572 2008-02-01  Andrew Pinski  <pinskia@gmail.com>
12573             Mark Mitchell  <mark@codesourcery.com>
12574             Ben Elliston  <bje@au.ibm.com>
12575
12576         PR c/29326
12577         * doc/extend.texi (Other Builtins): Document.
12578
12579 2008-01-31  Tom Browder <tom.browder@gmail.com>
12580
12581         * doc/c-tree.texi (Types): Fix grammar.
12582         (Expression trees): Ditto.
12583         * doc/passes.texi (Tree-SSA passes): Ditto.
12584         
12585         * doc/configterms.texi (Configure Terms): Fix typo.
12586         * doc/cpp.texi (Common Predefined Macros): Ditto.
12587         * doc/md.texi (Machine Constraints): Ditto.
12588         
12589         * doc/makefile.texi (Makefile): Add comma.
12590
12591 2008-01-31  Tom Browder  <tom.browder@gmail.com>
12592             Gerald Pfeifer  <gerald@pfeifer.com>
12593         
12594         * doc/sourcebuild.texi (Front End): Remove references to CVS
12595         and CVSROOT/modules.
12596         (Texinfo Manuals): Replace reference to CVS by one to SVN.
12597         (Back End): Remove reference to CVS.
12598
12599 2008-01-31  Richard Sandiford  <rsandifo@nildram.co.uk>
12600
12601         PR target/34900
12602         * config/mips/mips.c (gen_load_const_gp): New function, taking a
12603         comment from...
12604         (mips16_gp_pseudo_reg): ...here.
12605         * config/mips/mips.md (load_const_gp): Replace with...
12606         (load_const_gp_<mode>): ...this :P-based insn.
12607
12608 2008-01-31  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
12609
12610         * doc/invoke.texi (-ansi): Mention explicitly corresponding -std=
12611         options. Minor fixes.
12612         (-std): Move reference to standards closer to where language
12613         standards are first mentioned.
12614         
12615 2008-01-31  Richard Sandiford  <rsandifo@nildram.co.uk>
12616
12617         PR rtl-optimization/34995
12618         * reload.c (alternative_allows_const_pool_ref): Take an rtx
12619         parameter and return a bool.  If the rtx parameter is nonnull,
12620         check that it satisfies an EXTRA_MEMORY_CONSTRAINT.
12621         (find_reloads): Update call accordingly.  Pass the new operand
12622         if it needed no address reloads, otherwise pass null.
12623
12624 2008-01-30  Richard Henderson  <rth@redhat.com>
12625
12626         PR c/34993
12627         * tree.c (build_type_attribute_qual_variant): Skip TYPE_DOMAIN
12628         for unbounded arrays.
12629
12630 2008-01-30  Silvius Rus  <rus@google.com>
12631
12632         * config/i386/xmmintrin.h (_mm_prefetch): Add const to first arg.
12633
12634 2008-01-30  Jan Hubicka  <jh@suse.cz>
12635
12636         PR target/34982
12637         * i386.c (init_cumulative_args): Use real function declaration when
12638         calling locally.
12639
12640 2008-01-30  Richard Sandiford  <rsandifo@nildram.co.uk>
12641
12642         PR rtl-optimization/34998
12643         * global.c (build_insn_chain): Treat non-subreg_lowpart
12644         SUBREGs of pseudos as clobbering all the words covered by the
12645         SUBREG, not just all the bytes.
12646         * ra-conflict.c (clear_reg_in_live): Likewise.  Take the
12647         original df_ref rather than an extract parameter.
12648         (global_conflicts): Update call accordingly.
12649
12650 2008-01-30  Andreas Krebbel  <krebbel1@de.ibm.com>
12651
12652         * config/s390/fixdfdi.h (__fixunstfdi, __fixtfdi): Rearrange
12653         the overflow check to make it easier to read.
12654         (__fixtfdi): Change the type of the ll member in union
12655         long_double to UDItype_x.
12656
12657 2008-01-30  Jakub Jelinek  <jakub@redhat.com>
12658
12659         PR middle-end/34969
12660         * cgraph.h (cgraph_update_edges_for_call_stmt): New prototype.
12661         * cgraph.c (cgraph_update_edges_for_call_stmt): New function.
12662         * tree-inline.c (fold_marked_statements): Call
12663         cgraph_update_edges_for_call_stmt if folding a call statement.
12664         * cgraphunit.c (verify_cgraph_node): Set cfun to this_cfun for
12665         debug_generic_stmt calls, reset it back afterwards.
12666
12667         PR c/35017
12668         * c-decl.c (start_decl): Don't pedwarn about TREE_READONLY
12669         static decls.
12670         * c-typeck.c (build_external_ref): Don't pedwarn about
12671         static vars in current function's scope.
12672
12673 2008-01-29  Joseph Myers  <joseph@codesourcery.com>
12674
12675         * config.gcc (i[34567]86-*-nto-qnx*): Remove deprecation.
12676
12677 2008-01-29  Bernhard Fischer  <aldot@gcc.gnu.org>
12678
12679         PR c/35002
12680         * ipa-struct-reorg.c: Fix spelling.
12681         * params.def: Ditto.
12682
12683 2008-01-29  Richard Guenther  <rguenther@suse.de>
12684
12685         PR middle-end/35006
12686         * tree-inline.h (struct copy_body_data): Add remapping_type_depth
12687         field.
12688         * tree-inline.c (remap_type): Increment remapping_type_depth
12689         around remapping types.
12690         (copy_body_r): Only add referenced variables if they are referenced
12691         from code, not types.
12692
12693 2008-01-29  Douglas Gregor  <doug.gregor@gmail.com>
12694
12695         PR c++/34055
12696         PR c++/34103
12697         PR c++/34219
12698         PR c++/34606
12699         PR c++/34753
12700         PR c++/34754
12701         PR c++/34755
12702         PR c++/34919
12703         PR c++/34961
12704         * c-pretty-print.c (pp_c_type_qualifier_list): Don't try to print
12705         qualifiers for an ERROR_MARK_NODE or a NULL_TREE.
12706
12707 2008-01-28  Andy Hutchinson   <hutchinsonandy@netscape.net>
12708
12709         PR target/34412
12710         * config/avr/avr.c (expand_prologue): Use correct QI mode frame 
12711         pointer for tiny stack.
12712
12713 2008-01-28  Bernhard Fischer  <aldot@gcc.gnu.org>
12714
12715         * doc/tree-ssa.texi: Add cindex PHI nodes and improve wording.
12716
12717 2008-01-28  Bernhard Fischer  <aldot@gcc.gnu.org>
12718
12719         * config/vx-common.h: Fix typo in comment.
12720
12721 2008-01-28  Ian Lance Taylor  <iant@google.com>
12722
12723         PR c++/34862
12724         PR c++/33407
12725         * tree-ssa-copyrename.c (copy_rename_partition_coalesce): Don't
12726         coalesce pointers if they have different DECL_NO_TBAA_P values.
12727         * tree-ssa-copy.c (may_propagate_copy): Don't propagate copies
12728         between variables with different DECL_NO_TBAA_P values.
12729
12730 2008-01-28  Nathan Froyd  <froydnj@codesourcery.com>
12731
12732         PR 31535
12733         * config/rs6000/rs6000.c (small_data_operand): Vectors and floats
12734         are not legitimate small data references on SPE targets.
12735
12736 2008-01-28  David Daney  <ddaney@avtrex.com>
12737
12738         * doc/install.texi (mips-*-*): Recommend binutils 2.18.
12739
12740 2008-01-28  David Daney  <ddaney@avtrex.com>
12741
12742         * doc/install.texi (--disable-libgcj-bc):  Reword documentation.
12743
12744 2008-01-27  Joseph Myers  <joseph@codesourcery.com>
12745
12746         * config.gcc (strongarm*-*, ep9312*-*, xscale*-*, parisc*-*,
12747         m680[012]0-*, *-*-beos*, *-*-kaos*, *-*-linux*aout*,
12748         *-*-linux*libc1*, *-*-solaris2.[0-6], *-*-solaris2.[0-6].*,
12749         *-*-sysv*, *-*-windiss*, alpha*-*-unicosmk*, cris-*-aout,
12750         hppa1.1-*-pro*, hppa1.1-*-osf*, hppa1.1-*-bsd*,
12751         i[34567]86-sequent-ptx4*, i[34567]86-*-nto-qnx*,
12752         i[34567]86-*-sco3.2v5*, i[34567]86-*-uwin*, powerpc-*-chorusos*,
12753         vax-*-bsd*, vax-*-ultrix*): Mark obsolete.
12754
12755 2008-01-27  Bernhard Fischer  <aldot@gcc.gnu.org>
12756
12757         * basic-block.h (condjump_equiv_p): Fix comment.
12758
12759 2008-01-27  Bernhard Fischer  <aldot@gcc.gnu.org>
12760
12761         * tree-pretty-print.c (print_generic_decl, print_generic_stmt,
12762         print_generic_stmt_indented): Fix comment.
12763
12764 2008-01-27  Bernhard Fischer  <aldot@gcc.gnu.org>
12765
12766         * configure.ac (__stack_chk_fail): Add detecion for availability
12767         of SSP in uClibc by checking if __UCLIBC_HAS_SSP__ is defined.
12768         * configure: Regenerate.
12769
12770 2008-01-26  Maxim Kuvyrkov  <maxim@codesourcery.com>
12771
12772         PR middle-end/34688
12773         * final.c (output_addr_const): Handle TRUNCATE.
12774
12775 2008-01-26  Zdenek Dvorak  <ook@ucw.cz>
12776
12777         PR target/34711
12778         * tree-ssa-loop-ivopts.c (comp_cost): New type.
12779         (zero_cost, infinite_cost): New constants.
12780         (struct cost_pair): Change type of cost to comp_cost.
12781         (struct iv_ca): Change type of cand_use_cost and cost to comp_cost.
12782         (new_cost, add_costs, sub_costs, compare_costs, infinite_cost_p):
12783         New functions.
12784         (set_use_iv_cost, force_expr_to_var_cost, force_var_cost,
12785         split_address_cost, ptr_difference_cost, difference_cost,
12786         get_computation_cost_at, get_computation_cost,
12787         determine_use_iv_cost_generic, determine_use_iv_cost_address,
12788         determine_use_iv_cost_condition, determine_use_iv_costs,
12789         cheaper_cost_pair, iv_ca_recount_cost, iv_ca_set_no_cp,
12790         iv_ca_set_cp, iv_ca_cost, iv_ca_new, iv_ca_dump, iv_ca_extend,
12791         iv_ca_narrow, iv_ca_prune, try_improve_iv_set, find_optimal_iv_set):
12792         Change type of cost to comp_cost.
12793         (determine_iv_cost): Increase cost of non-original ivs, instead
12794         of decreasing the cost of original ones.
12795         (get_address_cost): Indicate the complexity of the addressing mode 
12796         in comp_cost.
12797         (try_add_cand_for): Prefer using ivs not specific to some object.
12798         * tree-flow.h (force_expr_to_var_cost): Declaration removed.
12799
12800 2008-01-26  Peter Bergner  <bergner@vnet.ibm.com>
12801             Janis Johnson  <janis187@us.ibm.com>
12802
12803         PR target/34814
12804         * doc/tm.texi (TARGET_EXPAND_TO_RTL_HOOK): Document.
12805         (TARGET_INSTANTIATE_DECLS): Likewise.
12806         * target.h (expand_to_rtl_hook): New target hook.
12807         (instantiate_decls): Likewise.
12808         * function.c (instantiate_decl): Make non-static.  Rename to...
12809         (instantiate_decl_rtl): ... this.
12810         (instantiate_expr): Use instantiate_decl_rtl.
12811         (instantiate_decls_1): Likewise.
12812         (instantiate_decls): Likewise.
12813         (instantiate_virtual_regs: Call new instantiate_decls taget hook.
12814         * function.h (instantiate_decl_rtl): Add prototype.
12815         * cfgexpand.c (target.h): New include.
12816         (tree_expand_cfg): Call new expand_to_rtl_hook target hook.
12817         * target-def.h (TARGET_EXPAND_TO_RTL_HOOK): New define.
12818         (TARGET_INSTANTIATE_DECLS): Likewise.
12819         (TARGET_INITIALIZER): New target hooks added.
12820         * config/rs6000/rs6000-protos.h (rs6000_secondary_memory_needed_rtx):
12821         New prototype.
12822         * config/rs6000/rs6000.c (tree-flow.h): New include.
12823         (machine_function): Add sdmode_stack_slot field.
12824         (rs6000_alloc_sdmode_stack_slot): New function.
12825         (rs6000_instantiate_decls): Likewise.
12826         (rs6000_secondary_memory_needed_rtx): Likewise.
12827         (rs6000_check_sdmode): Likewise.
12828         (TARGET_EXPAND_TO_RTL_HOOK): Target macro defined.
12829         (TARGET_INSTANTIATE_DECLS): Likewise.
12830         (rs6000_hard_regno_mode_ok): Allow SDmode.
12831         (num_insns_constant): Likewise.  Handle _Decimal32 constants.
12832         (rs6000_emit_move): Handle SDmode.
12833         (function_arg_advance): Likewise.
12834         (function_arg): Likewise.
12835         (rs6000_gimplify_va_arg): Likewise.  Add special handling of
12836         SDmode var args for 32-bit compiles.
12837         (rs6000_secondary_reload_class): Handle SDmode.
12838         (rs6000_output_function_epilogue): Likewise.
12839         (rs6000_function_value): Simplify if statement.
12840         (rs6000_libcall_value): Likewise.
12841         * config/rs6000/rs6000.h (SLOW_UNALIGNED_ACCESS): Handle SDmode.
12842         (SECONDARY_MEMORY_NEEDED_RTX): Add define.
12843         * config/rs6000/dfp.md (movsd): New define_expand and splitter.
12844         (movsd_hardfloat): New define_insn.
12845         (movsd_softfloat): Likewise.
12846         (movsd_store): Likewise.
12847         (movsd_load): Likewise.
12848         (extendsddd2): Likewise.
12849         (extendsdtd2): Likewise.
12850         (truncddsd2): Likewise.
12851         (movdd_hardfloat64): Fixup comment.
12852         (UNSPEC_MOVSD_LOAD): New constant.
12853         (UNSPEC_MOVSD_STORE): Likewise.
12854
12855 2008-01-26  Jakub Jelinek  <jakub@redhat.com>
12856
12857         PR c++/34965
12858         * c-pretty-print.c (pp_c_exclusive_or_expression): Handle
12859         TRUTH_XOR_EXPR.
12860         (pp_c_logical_and_expression): Handle TRUTH_AND_EXPR.
12861         (pp_c_logical_or_expression): Handle TRUTH_OR_EXPR.
12862         (pp_c_expression): Handle TRUTH_AND_EXPR, TRUTH_OR_EXPR
12863         and TRUTH_XOR_EXPR.
12864
12865 2008-01-26  David Edelsohn  <edelsohn@gnu.org>
12866
12867         PR target/34794
12868         * config.gcc: Separate AIX 5.3 from AIX 6.1.
12869         * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Define
12870         __LONGDOUBLE128 too.
12871         * config/rs6000/aix61.h: New file.
12872
12873 2008-01-26  Richard Sandiford  <rsandifo@nildram.co.uk>
12874
12875         PR rtl-optimization/34959
12876         * optabs.c (expand_unop): In libcall notes, give ffs, clz, ctz,
12877         popcount and parity rtxes the same mode as their operand.
12878         Truncate or extend the result to the return value's mode
12879         if necessary.
12880
12881 2008-01-26  Richard Sandiford  <rsandifo@nildram.co.uk>
12882
12883         PR target/34981
12884         * config/mips/mips-protos.h (mips_expand_call): Return an rtx.
12885         * config/mips/mips.h (FIRST_PSEUDO_REGISTER): Rename FAKE_CALL_REGNO
12886         to GOT_VERSION_REGNUM.
12887         (CALL_REALLY_USED_REGISTERS): Set the GOT_VERSION_REGNUM entry to 0.
12888         (EPILOGUE_USES): Include GOT_VERSION_REGNUM if TARGET_USE_GOT.
12889         * config/mips/mips.c (mips_emit_call_insn): New function.
12890         (mips_call_tls_get_addr): Call mips_expand_call directly.
12891         (mips16_copy_fpr_return_value): Use mips_emit_call_insn rather than
12892         emit_call_insn.
12893         (mips16_build_call_stub): Likewise.  Return the call insn or null.
12894         (mips_expand_call): Update the call to mips16_build_call_stub
12895         accordingly and a remove redundant condition.  Assert that MIPS16
12896         stubs do not use lazy binding.  Use mips_emit_call_insn and return
12897         the call insn.
12898         (mips_extra_live_on_entry): Include GOT_VERSION_REGNUM if
12899         TARGET_USE_GOT.
12900         (mips_hard_regno_mode_ok_p): Allow SImode for GOT_VERSION_REGNUM.
12901         (mips_avoid_hazard): Remove hazard_set handling.
12902         * config/mips/mips.md (UNSPEC_EH_RECEIVER): Rename to...
12903         (UNSPEC_RESTORE_GP): ...this.
12904         (UNSPEC_SET_GOT_VERSION, UNSPEC_UPDATE_GOT_VERSION): New constants.
12905         (FAKE_CALL_REGNO): Rename to...
12906         (GOT_VERSION_REGNUM): ...this.
12907         (type): Add "ghost" value.  Add an associated insn reservation.
12908         (hazard_set): Remove.
12909         (exception_receiver): Rename to...
12910         (restore_gp): ...this and update the unspec identifier accordingly.
12911         (exception_receiver, nonlocal_got_receiver): New expanders.
12912         (load_call<mode>): Use GOT_VERSION_REGNUM.  Don't set
12913         FAKE_CALL_REGNO.  Remove hazard_set attribute.
12914         (set_got_version, update_got_version): New patterns.
12915
12916 2008-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
12917
12918         PR target/34970
12919         * config/i386/cygming.h (ASM_OUTPUT_LABELREF): Define.
12920
12921 2008-01-25  Joseph Myers  <joseph@codesourcery.com>
12922
12923         PR other/31955
12924         * doc/install.texi2html: Generate gcc-vers.texi.
12925
12926 2008-01-25  DJ Delorie  <dj@redhat.com>
12927
12928         * config/m32c/m32c.h (ASM_PREFERRED_EH_DATA_FORMAT): Define.
12929
12930 2008-01-25  Joseph Myers  <joseph@codesourcery.com>
12931
12932         * config/c4x: Remove directory.
12933         * config.gcc (crx-*, mt-*): Mark obsolete.
12934         (c4x-*, tic4x-*, c4x-*-rtems*, tic4x-*-rtems*, c4x-*, tic4x-*,
12935         h8300-*-rtemscoff*, ns32k-*-netbsdelf*, ns32k-*-netbsd*,
12936         sh-*-rtemscoff*): Remove cases.
12937         * defaults.h (C4X_FLOAT_FORMAT): Remove.
12938         * real.c (encode_c4x_single, decode_c4x_single,
12939         encode_c4x_extended, decode_c4x_extended, c4x_single_format,
12940         c4x_extended_format): Remove.
12941         * real.h (c4x_single_format, c4x_extended_format): Remove.
12942         * doc/extend.texi (interrupt, naked): Remove mention of attributes
12943         on C4x.
12944         (Pragmas): Remove comment about c4x pragmas.
12945         * doc/install.texi (c4x): Remove target-specific instructions.
12946         * doc/invoke.texi (TMS320C3x/C4x Options): Remove.
12947         * doc/md.texi (Machine Constraints): Remove C4x documentation.
12948         * doc/tm.texi (MEMBER_TYPE_FORCES_BLK, c_register_pragma): Do not
12949         refer to C4x source files as examples.
12950         (C4X_FLOAT_FORMAT): Remove documentation.
12951
12952 2008-01-25  Bernd Schmidt  <bernd.schmidt@analog.com>
12953
12954         * config/bfin/bfin.c (override_options): Reorder tests so that
12955         flag_pic gets enabled for -msep-data.
12956
12957 2008-01-25  Richard Guenther  <rguenther@suse.de>
12958
12959         PR middle-end/32244
12960         * expr.c (expand_expr_real_1): Reduce result of LSHIFT_EXPR
12961         to its bitfield precision if required.
12962
12963 2008-01-25  Jakub Jelinek  <jakub@redhat.com>
12964
12965         PR middle-end/33880
12966         * tree-nested.c (walk_omp_for): New function.
12967         (convert_nonlocal_reference, convert_local_reference): Call
12968         walk_omp_for on OMP_FOR.
12969         (convert_call_expr): Call walk_body on OMP_FOR's
12970         OMP_FOR_PRE_INIT_BODY.
12971
12972 2008-01-25  Richard Guenther  <rguenther@suse.de>
12973
12974         PR tree-optimization/34966
12975         * tree-ssa-math-opts.c (execute_cse_sincos_1): For all but
12976         default defs and PHI_NODEs we have to insert after the
12977         defining statement.
12978
12979 2008-01-24  Nick Clifton  <nickc@redhat.com>
12980
12981         * config/stormy16/stormy16-lib2.c (MIN_UNITS_PER_WORD):
12982         Provide a default definition.
12983         (LIBGCC2_UNITS_PER_WORD): Likewise.
12984
12985         * config/stormy16/stormy16.c: Include df.h for the prototype
12986         for df_regs_ever_live_p.
12987         (xstormy16_expand_builtin_va_start): Convert the stack offset
12988         into a component_ref and then use POINTER_PLUS_EXPR to add it
12989         to the incoming_virtual_args_rtx.
12990         (xstormy16_gimplify_va_arg_expr): Rename to
12991         xstormy16_gimplify_va_arg_expr.
12992         Use POINTER_PLUS_EXPR when performing pointer arithmetic.
12993         (TARGET_GIMPLIFY_VA_ARG_EXPR): Use renamed
12994         xstormy16_gimplify_va_arg_expr.
12995         Fix up some formatting issues.
12996
12997         * config/stormy16/stormy16.c: (xstormy16_carry_plus_operand):
12998         Move to predicates.md.
12999         (xs_hi_general_operand): Likewise.
13000         (xs_hi_nonmemory_operand): Likewise.
13001         * config/stormy16/predicates.md:
13002         (xstormy16_carry_plus_operand): New predicate.
13003         (xs_hi_general_operand): New predicate.
13004         (xs_hi_nonmemory_operand): New predicate.
13005         * config/stormy16/stormy16-protos.h:
13006         (xstormy16_carry_plus_operand): Delete prototype.
13007         (xs_hi_general_operand): Likewise.
13008         (xs_hi_nonmemory_operand): Likewise.
13009
13010         * config/storm16/stormy16.md (addhi3): Remove earlyclobber
13011         modifiers as they are no longer needed and they can trigger
13012         reload spill failures.
13013
13014         * config/storm16/stormy16.md (ineqbranchsi): Replace match_dup
13015         with a match_operand in order to help reload.
13016
13017         * config/storm16/stormy16.md (movhi_internal): Replace 'r'
13018         constraint with 'e' for the 8th alternative as this version of
13019         the mov.w instruction only accepts the lower 8 registers.
13020
13021 2008-01-25  Uros Bizjak  <ubizjak@gmail.com>
13022
13023         PR target/34856
13024         * simplifx-rtx.c (simplify_const_binary_operation) [VEC_CONCAT]:
13025         Consider only CONST_INT, CONST_DOUBLE and CONST_FIXED as constant
13026         vector elements.
13027
13028 2008-01-25  Jakub Jelinek  <jakub@redhat.com>
13029
13030         PR middle-end/33333
13031         * gimplify.c (gimplify_omp_for): Gimplify OMP_FOR_PRE_BODY.
13032
13033 2008-01-25  Golovanevsky Olga  <olga@il.ibm.com>
13034
13035         * ipa-struct-reorg.c (remove_str_allocs_in_func, remove_str_allocs):
13036         New functions.
13037         (remove_structure): Update allocations list before removing structure.
13038         
13039 2008-01-25  Golovanevsky Olga  <olga@il.ibm.com>
13040
13041         * ipa-struct-reorg.c (is_safe_cond_expr, 
13042         create_new_stmts_for_cond_expr): Use integer_zerop function,
13043         that recognize not only zero-pointer, but zero-integer too.
13044
13045 2008-01-25  Ben Elliston  <bje@au.ibm.com>
13046
13047         PR other/22232
13048         * fixproto: Escape "." in sed expression that strips leading "./".
13049
13050 2008-01-24  H.J. Lu  <hongjiu.lu@intel.com>
13051
13052         PR driver/34904
13053         * gcc.c (SWITCH_OK): Removed.
13054         (SWITCH_LIVE): Changed to bit.
13055         (SWITCH_FALSE): Likewise.
13056         (SWITCH_IGNORE): Likewise.
13057         (switchstr): Change live_cond to unsigned int.
13058         (process_command): Replace SWITCH_OK with 0.
13059         (do_self_spec): Likewise.
13060         (set_collect_gcc_options): Check the SWITCH_IGNORE bit.
13061         (give_switch): Likewise.
13062         (used_arg): Likewise.
13063         (do_spec_1): Set the SWITCH_IGNORE bit.
13064         (check_live_switch): Check both SWITCH_LIVE and SWITCH_FALSE
13065         bits.  Set the SWITCH_LIVE bit.
13066
13067 2008-01-24  Andreas Krebbel  <krebbel1@de.ibm.com>
13068
13069         * config/s390/s390.h (MOVE_RATIO): Define new target macro.
13070
13071 2008-01-24  Richard Sandiford  <rsandifo@nildram.co.uk>
13072
13073         PR tree-optimization/34472
13074         * ipa-struct-reorg.c (safe_cond_expr_check): Change the DATA
13075         parameter to a "bool *" and set *DATA to false if there is
13076         an unsafe access.  Do not delete the structure here.
13077         (check_cond_exprs): Delete it here instead.
13078         (check_cond_exprs, exclude_cold_structs): Do not increase
13079         I when removing a structure.
13080
13081 2008-01-24  Uros Bizjak  <ubizjak@gmail.com>
13082
13083         PR target/34856
13084         * config/i386/i386.c (ix86_expand_vector_init): Consider only
13085         CONST_INT, CONST_DOUBLE and CONST_FIXED as constant vector elements.
13086
13087 2008-01-24  Jakub Jakub Jelinek  <jakub@redhat.com>
13088
13089         PR middle-end/34934
13090         * tree-stdarg.c (reachable_at_most_once): Use VEC vector instead of
13091         a fixed vector for stack.
13092
13093 2008-01-24  Ben Elliston  <bje@au.ibm.com>
13094
13095         PR c++/25701
13096         * doc/gcc.texi (Software development): Add a direntry for g++.
13097         
13098 2008-01-23  Hans-Peter Nilsson  <hp@axis.com>
13099
13100         * config/cris/cris.h (CC1PLUS_SPEC, OPTIMIZATION_OPTIONS): Drop
13101         stale and straggling -fforce-addr comments above.
13102
13103         * config/cris/cris.h (CRIS_SUBTARGET_VERSION, TARGET_VERSION): Don't
13104         define.
13105         * config/cris/linux.h (CRIS_SUBTARGET_VERSION): Don't define.
13106         * config/cris/aout.h (CRIS_SUBTARGET_VERSION): Don't define.
13107
13108 2008-01-23  Michael Matz  <matz@suse.de>
13109
13110         PR debug/34895
13111         * dwarf2out.c (force_type_die): Use modified_type_die instead of
13112         gen_type_die.
13113
13114 2008-01-23  Andreas Krebbel  <krebbel1@de.ibm.com>
13115
13116         * ipa-struct-reorg.c (create_new_malloc): Use pointer type as
13117         malloc result type.
13118
13119 2008-01-23 Anatoly Sokolov <aesok@post.ru>
13120
13121         * config/avr/avr.c (avr_current_arch): New variable.
13122         (avr_arch_types): Add 'avr31' and 'avr51' entries.
13123         (avr_arch): Add 'ARCH_AVR31' and 'ARCH_AVR51'.
13124         (avr_mcu_types): Add 'avr31' and 'avr51' architectures.
13125         (avr_override_options): Init 'avr_current_arch'. 
13126         (base_arch_s): Move from here...
13127         * config/avr/avr.h (base_arch_s): ... here. Add new members 
13128         'have_elpm', 'have_elpmx', 'have_eijmp_eicall', 'reserved'. Rename 
13129         'mega' to 'have_jmp_call'.
13130         (TARGET_CPU_CPP_BUILTINS): Define "__AVR_HAVE_JMP_CALL__", 
13131         "__AVR_HAVE_RAMPZ__",   "__AVR_HAVE_ELPM__" and  "__AVR_HAVE_ELPMX__"
13132         macros.
13133         (LINK_SPEC, CRT_BINUTILS_SPECS, ASM_SPEC): Add 'avr31' and 'avr51' 
13134         architectures.
13135         * config/avr/t-avr (MULTILIB_OPTIONS, MULTILIB_DIRNAMES, 
13136         MULTILIB_MATCHES): (Ditto.).
13137
13138 2008-01-23  Richard Guenther  <rguenther@suse.de>
13139
13140         PR middle-end/31529
13141         * cgraphunit.c (cgraph_reset_node): Always mark the node
13142         not reachable if it is not queued already.
13143
13144 2008-01-23  Bernd Schmidt  <bernd.schmidt@analog.com>
13145
13146         * config/bfin/bfin-protos.h (WA_RETS, ENABLE_WA_RETS): New macros.
13147         * config/bfin/bfin.c (bfin_cpus): Add WA_RETS everywhere.
13148         (cputype_selected): New static variable.
13149         (bfin_handle_option): Set it if -mcpu is used.
13150         (override_option): Select default set of workarounds if no cpu type
13151         selected on the command line.
13152         (workaround_rts_anomaly): Only run if ENABLE_WA_RETS.
13153
13154         From  Michael Frysinger  <michael.frysinger@analog.com>
13155         * config/bfin/bfin-protos.h (enum bfin_cpu_type): Add
13156         BFIN_CPU_BF547, BFIN_CPU_BF523, BFIN_CPU_BF524, and BFIN_CPU_BF526.
13157
13158         * config/bfin/elf.h (LIB_SPEC): Use proper linker script
13159         for bf547, bf523, bf524, and bf526.
13160         * config/bfin/bfin.c (bfin_cpus[]): Add bf547,  bf523, bf524, and
13161         bf526.
13162         * config/bfin/bfin.h (TARGET_CPU_CPP_BUILTINS): Define
13163         __ADSPBF523__ for bf523, __ADSPBF524__ for bf524,
13164         __ADSPBF526__ for bf526, __ADSPBF52x__ for all three, as well as
13165         __ADSPBF547__ and __ADSPBF54x__ for bf547.
13166         * doc/invoke.texi (Blackfin Options): Document that
13167         -mcpu now accept bf547, bf523, bf524, and bf526.
13168
13169 2008-01-22  Eric Botcazou  <ebotcazou@adacore.com>
13170
13171         PR rtl-optimization/34628
13172         * combine.c (try_combine): Stop and undo after the first combination
13173         if an autoincrement side-effect on the first insn has effectively
13174         been lost.
13175
13176 2008-01-22  David Edelsohn  <edelsohn@gnu.org>
13177
13178         PR target/34529
13179         * config/rs6000/rs6000.c (rs6000_legitimate_offset_address_p):
13180         Offset addresses are not valid for Altivec or paired float modes.
13181
13182 2008-01-22  Jakub Jelinek  <jakub@redhat.com>
13183
13184         PR c++/34607
13185         * c-parser.c (c_parser_omp_for_loop): Don't call c_finish_omp_for
13186         if DECL_INITIAL (decl) is error_mark_node.
13187
13188         PR c++/34914
13189         * c-common.c (handle_vector_size_attribute): Only allow
13190         integral, scalar float and fixed point types.  Handle OFFSET_TYPE
13191         the same way as pointer, array etc. types.
13192         * tree.c (reconstruct_complex_type): Handle OFFSET_TYPE.
13193
13194         PR c++/34917
13195         * tree.c (build_type_attribute_qual_variant): Call
13196         build_qualified_type if attributes are equal, but quals are not.
13197
13198 2008-01-22  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
13199
13200         PR 32102
13201         * doc/invoke.texi (-Wall): -Wall enables -Wstrict-overflow=1.
13202         * flags.h (warn_strict_aliasing): Remove.
13203         (warn_strict_overflow): Remove.
13204         * opts.c (warn_strict_aliasing): Remove.
13205         (warn_strict_overflow): Remove.
13206         * c-opts.c (c_common_handle_option): -Wall only sets
13207         -Wstrict-aliasing or -Wstrict-overflow if they are uninitialized.
13208         (c_common_post_options): Give default values to -Wstrict-aliasing
13209         and -Wstrict-overflow if they are uninitialized.
13210         * common.opt (Wstrict-aliasing): Specify Var and Init.
13211         (Wstrict-overflow): Likewise.
13212
13213 2008-01-22  Kenneth Zadeck  <zadeck@naturalbridge.com>
13214
13215         PR rtl-optimization/26854
13216         PR rtl-optimization/34400
13217         PR rtl-optimization/34884
13218         * ddg.c (create_ddg_dep_from_intra_loop_link): Use
13219         DF_RD->gen.
13220         * df.h (df_changeable_flags.DF_RD_NO_TRIM): Deleted
13221         (df_rd_bb_info.expanded_lr_out): Deleted
13222         * loop_invariant.c (find_defs): Deleted DF_RD_NO_TRIM flag.
13223         * loop_iv.c (iv_analysis_loop_init): Ditto.  * df-problems.c
13224         (df_rd_free_bb_info, df_rd_alloc, df_rd_confluence_n,
13225         df_rd_bb_local_compute, df_rd_transfer_function, df_rd_free):
13226         Removed code to allocate, initialize or free expanded_lr_out.
13227         (df_rd_bb_local_compute_process_def): Restructured to make more
13228         understandable.
13229         (df_rd_confluence_n): Removed code to no apply invalidate_by_call
13230         sets if the sets are being trimmed.
13231
13232 2008-01-22  H.J. Lu  <hongjiu.lu@intel.com>
13233
13234         PR bootstrap/32287
13235         * configure.ac (ld_vers): Support GNU linker version xx.xx.*
13236         (as_vers): Likewise.
13237         * configure: Regenerated.
13238
13239 2008-01-22  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
13240
13241         PR middle-end/33092
13242         * tree-pass.h (pass_build_alias): New pass.
13243         * tree-ssa-alias.c (gate_build_alias): New.
13244         (pass_build_alias): New.
13245         * passes.c (init_optimization_passes): Add pass_build_alias after
13246         pass_create_structure_vars.
13247
13248 2008-01-22  Wolfgang Gellerich  <gellerich@de.ibm.com>
13249
13250         * config/s390/s390.h (S390_TDC_POSITIVE_NORMALIZED_NUMBER):
13251         Renamed to S390_TDC_POSITIVE_NORMALIZED_BFP_NUMBER.
13252         (S390_TDC_NEGATIVE_NORMALIZED_NUMBER): Renamed to
13253         S390_TDC_NEGATIVE_NORMALIZED_BFP_NUMBER.
13254         (S390_TDC_POSITIVE_DENORMALIZED_NUMBER): Renamed to
13255         S390_TDC_POSITIVE_DENORMALIZED_BFP_NUMBER.
13256         (S390_TDC_NEGATIVE_DENORMALIZED_NUMBER): Renamed to
13257         S390_TDC_NEGATIVE_DENORMALIZED_BFP_NUMBER.
13258         (S390_TDC_POSITIVE_NORMALIZED_BFP_NUMBER): New constant.
13259         (S390_TDC_NEGATIVE_NORMALIZED_BFP_NUMBER): New constant.
13260         (S390_TDC_POSITIVE_DENORMALIZED_BFP_NUMBER): New constant.
13261         (S390_TDC_NEGATIVE_DENORMALIZED_BFP_NUMBER): New constant.
13262         * config/s390/s390.md (FP_ALL): New mode iterator.
13263         (_d): New mode attribute.
13264         ("*signbit<mode>2>"): Changed mode of first operand.
13265         ("isinf<mode>2"): Changed mode of first operand.
13266         ("*TDC_insn"): Adaptation for DFP modes.
13267
13268 2008-01-22  Ben Elliston  <bje@au.ibm.com>
13269
13270         * tree.c (check_qualified_type): Improve function description.
13271
13272 2008-01-21  Jason Merrill  <jason@redhat.com>
13273
13274         PR c++/34196
13275         * tree.h (TRY_CATCH_IS_CLEANUP): New macro.
13276         * tree-eh.c (honor_protect_cleanup_actions): Strip TRY_CATCH_EXPR
13277         if it is set.
13278
13279 2008-01-21  DJ Delorie  <dj@redhat.com>
13280
13281         * doc/tm.texi (HARD_REGNO_NREGS): Note that this macro must not
13282         return zero.
13283
13284 2008-01-21  Richard Guenther  <rguenther@suse.de>
13285
13286         PR middle-end/34856
13287         * tree-cfg.c (verify_expr): Allow all invariant expressions
13288         instead of just constant class ones as reference argument.
13289         * tree-ssa-loop-im.c (for_each_index): Handle CONSTRUCTOR
13290         like any other constant.
13291         * tree-ssa-sccvn.c (copy_reference_ops_from_ref): Likewise.
13292
13293 2008-01-21  H.J. Lu  <hongjiu.lu@intel.com>
13294
13295         * regmove.c (fixup_match_1): Update call crossed frequencies.
13296
13297 2008-01-21  Richard Guenther  <rguenther@suse.de>
13298
13299         PR c/34885
13300         * tree-inline.c (setup_one_parameter): Deal with mismatched
13301         types using a VIEW_CONVERT_EXPR.
13302
13303 2008-01-21  Alon Dayan  <alond@il.ibm.com>
13304             Olga Golovanevsky  <olga@il.ibm.com>
13305         
13306         PR tree-optimization/34701
13307         * ipa-struct-reorg.c (gen_size): Fix the malloc parameter calculation
13308         when the structure size is not a power of 2.
13309
13310 2008-01-20  Kenneth Zadeck  <zadeck@naturalbridge.com>
13311
13312         * doc/install.texi: Add doc for --enable-checking=df.
13313         
13314 2008-01-20  Kaz Kojima  <kkojima@gcc.gnu.org>
13315
13316         PR rtl-optimization/34808
13317         * emit-rtl.c (try_split): Handle REG_RETVAL notes.
13318
13319 2008-01-20  Richard Sandiford  <rsandifo@nildram.co.uk>
13320
13321         * global.c (find_reg): Only compute EH_RETURN_DATA_REGNO once per
13322         input.
13323
13324 2008-01-19  Kenneth Zadeck  <zadeck@naturalbridge.com>
13325
13326         PR rtl-optimization/26854
13327         PR rtl-optimization/34400
13328         * ddg.c (create_ddg_dep_from_intra_loop_link): Do not use
13329         DF_RD->gen.
13330         * df.h (df_changeable_flags.DF_RD_NO_TRIM): New.
13331         (df_rd_bb_info.expanded_lr_out): New.
13332         * loop_invariant.c (find_defs): Added DF_RD_NO_TRIM flag.
13333         * loop_iv.c (iv_analysis_loop_init): Ditto.
13334         * df-problems.c (df_rd_free_bb_info, df_rd_alloc, df_rd_confluence_n,
13335         df_rd_bb_local_compute, df_rd_transfer_function, df_rd_free):
13336         Added code to allocate, initialize or free expanded_lr_out.
13337         (df_rd_bb_local_compute_process_def): Restructured to make
13338         more understandable.
13339         (df_rd_confluence_n): Add code to do nothing with fake edges and
13340         code to no apply invalidate_by_call sets if the sets are being trimmed.
13341         (df_lr_local_finalize): Renamed to df_lr_finalize.
13342         (df_live_local_finalize): Renamed to df_live_finalize.
13343
13344 2008-01-20  Richard Sandiford  <rsandifo@nildram.co.uk>
13345
13346         PR target/34831
13347         * config/mips/mips.md (div<mode>3): Use <recip_condition> when
13348         deciding whether to use reciprocal instructions.
13349
13350 2008-01-19  Uros Bizjak  <ubizjak@gmail.com>
13351
13352         * dwarf2out.c (dwarf2out_switch_text_section): Do not call
13353         dwarf2out_note_section_used if cold_text_section is NULL.
13354
13355 2008-01-19  Jakub Jelinek  <jakub@redhat.com>
13356
13357         PR gcov-profile/34610
13358         * tree-cfg.c (make_edges): Mark both outgoing edges from
13359         OMP_CONTINUE and from OMP_FOR as EDGE_ABNORMAL.
13360         * omp-low.c (expand_omp_for): Clear EDGE_ABNORMAL bits
13361         from OMP_FOR and OMP_CONTINUE outgoing edges.
13362
13363         * tree-profile.c (tree_profiling): Return early if
13364         cfun->after_tree_profile != 0.  Set cfun->after_tree_profile
13365         at the end.
13366         * omp-low.c (expand_omp_parallel): Copy after_tree_profile
13367         from cfun to child_cfun.
13368         * function.h (struct function): Add after_tree_profile bit.
13369
13370 2008-01-19 Anatoly Sokolov <aesok@post.ru>
13371
13372         * config/avr/avr.S (_exit): Disable interrupt.
13373
13374 2008-01-18  Kenneth Zadeck  <zadeck@naturalbridge.com>
13375             Steven Bosscher  <stevenb.gcc@gmail.com>
13376
13377         PR rtl-optimization/26854
13378         PR rtl-optimization/34400
13379         * df-problems.c (df_live_scratch): New scratch bitmap.
13380         (df_live_alloc): Allocate df_live_scratch when doing df_live.
13381         (df_live_reset): Clear the proper bitmaps.
13382         (df_live_bb_local_compute): Only process the artificial defs once
13383         since the order is not important.
13384         (df_live_init): Init the df_live sets only with the variables
13385         found live by df_lr.
13386         (df_live_transfer_function): Use the df_lr sets to prune the
13387         df_live sets as they are being computed.  
13388         (df_live_free): Free df_live_scratch.
13389
13390 2008-01-18  Ian Lance Taylor  <iant@google.com>
13391
13392         * common.opt: Add fmerge-debug-strings.
13393         * dwarf2out.c (DEBUG_STR_SECTION_FLAGS): Test
13394         flag_merge_debug_strings rather than flag_merge_constants.
13395         * doc/invoke.texi (Option Summary): Mention
13396         -fmerge-debug-strings.
13397         (Debugging Options): Document -fmerge-debug-strings.
13398
13399 2008-01-18  Ian Lance Taylor  <iant@google.com>
13400
13401         PR c++/33407
13402         * tree.h (DECL_IS_OPERATOR_NEW): Define.
13403         (struct tree_function_decl): Add new field operator_new_flag.
13404         * tree-inline.c (expand_call_inline): When inlining a call to
13405         operator new, force the return value to go into a variable, and
13406         set DECL_NO_TBAA_P on that variable.
13407         * c-decl.c (merge_decls): Merge DECL_IS_OPERATOR_NEW flag.
13408
13409 2008-01-18  Uros Bizjak  <ubizjak@gmail.com>
13410
13411         PR debug/34484
13412         * dwarf2out.c (dwarf2out_switch_text_section): Do not guard with
13413         DWARF2_DEBUGGING_INFO.
13414         (dwarf2out_note_section_used): Ditto.  Add prototype.
13415         (have_multiple_function_sections, text_section_used,
13416         cold_text_section_used, *cold_text_sections): Move declarations
13417         before their uses.
13418
13419 2008-01-17  Bob Wilson  <bob.wilson@acm.org>
13420
13421         * config/xtensa/unwind-dw2-xtensa.h (_Unwind_FrameState): Remove pc
13422         field and add signal_ra.
13423         * config/xtensa/unwind-dw2-xtensa.c (uw_frame_state_for): Remove
13424         assignments to frame state pc.  Move end of stack check after
13425         MD_FALLBACK_FRAME_STATE_FOR.
13426         (uw_update_context_1): Use frame state signal_regs if set, instead
13427         of checking signal_frame flag.
13428         (uw_update_context): Use frame state signal_ra if set.
13429         * config/xtensa/linux.h (MD_UNWIND_SUPPORT): Define.
13430         * config/xtensa/linux-unwind.h: New file.
13431
13432 2008-01-18  Bernhard Fischer  <aldot@gcc.gnu.org>
13433
13434         * modulo-sched.c (get_sched_window): Fix comment typo.
13435
13436 2008-01-17  Andrew MacLeod  <amacleod@redhat.com>
13437
13438         PR tree-optimization/34648
13439         * tree-ssa-sccvn.c (visit_use): Expressions which can throw are varying.
13440
13441 2008-01-17  Anatoly Sokolov <aesok@post.ru>
13442
13443         * config/avr/avr.h (LINK_SPEC): Support -mrelax and -mpmem-wrap-around.
13444         * config/avr/avr.opt (mrelax, mpmem-wrap-around): Add.
13445
13446 2008-01-17  Seongbae Park  <seongbae.park@gmail.com>
13447
13448         PR rtl-optimization/34400
13449         * df-core.c (df_worklist_dataflow_overeager,
13450         df_worklist_dataflow_doublequeue): New functions.
13451         (df_worklist_dataflow): Two different worklist solvers.
13452         * params.def (PARAM_DF_DOUBLE_QUEUE_THRESHOLD_FACTOR):
13453         New param.
13454
13455 2008-01-16  Sebastian Pop  <sebastian.pop@amd.com>
13456
13457         PR testsuite/34821
13458         * doc/invoke.texi: Document the dependence on pthread for fopenmp
13459         and ftree-parallelize-loops.
13460
13461 2008-01-17  Mircea Namolaru  <namolaru@il.ibm.com>
13462
13463         PR rtl-optimization/34826
13464         * loop-doloop (doloop_modify): Update the REG_BR_PROB note.
13465
13466 2008-01-17  Andreas Krebbel  <krebbel1@de.ibm.com>
13467
13468         * global.c (find_reg): Mark the eh regs as used if necessary.
13469         * ra-conflict.c (global_conflicts): Set no_eh_reg flag.
13470         * ra.h (struct allocno): no_eh_reg field added.  Changed
13471         no_stack_reg type to bitfield.
13472
13473 2008-01-17  Eric Botcazou  <ebotcazou@adacore.com>
13474
13475         * tree.c (substitute_in_expr): Add missing 'break'.
13476
13477 2008-01-17  Richard Guenther  <rguenther@suse.de>
13478
13479         PR tree-optimization/34825
13480         * tree-ssa-math-opts.c (is_division_by): Do not recognize
13481         x / x as division to handle.
13482
13483 2008-01-16  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
13484
13485         * pa64-hpux.h (LIB_SPEC): Add "-lpthread" in shared links if "-mt" or
13486         "-pthread" is specified.
13487         * pa-hpux11.h (LIB_SPEC): Likewise.
13488
13489 2008-01-16  Janis Johnson  <janis187@us.ibm.com>
13490             Peter Bergner  <bergner@vnet.ibm.com>
13491
13492         PR rtl-optimization/33796
13493         * sparseset.c (sparseset_alloc): Use xcalloc rather than xmalloc.
13494
13495 2008-01-16  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
13496
13497         PR libgfortran/34699
13498         * pa-hpux.h (LINK_SPEC): Only search /lib/pa1.1 and /usr/lib/pa1.1 on
13499         static links.
13500         * pa-hpux10.h (LINK_SPEC): Likewise.
13501         * pa-hpux11.h (LINK_SPEC): Don't search /lib/pa1.1 and /usr/lib/pa1.1.
13502
13503 2008-01-16  Richard Guenther  <rguenther@suse.de>
13504
13505         PR middle-end/32628
13506         * fold-const.c (fold_convert_const_int_from_int): Do not
13507         set overflow if that occured only because of a sign extension
13508         change when converting from/to a sizetype with the same
13509         precision and signedness.
13510
13511 2008-01-16  Uros Bizjak  <ubizjak@gmail.com>
13512
13513         PR debug/34249
13514         * dwarf2out.c (output_call_frame_info): Move output of FDE initial
13515         location address to the correct place.  Update copyright year.
13516
13517 2008-01-16  Sebastian Pop  <sebastian.pop@amd.com>
13518
13519         * lambda-code.c (lambda_transform_legal_p): Handle the case of
13520         no dependences in the dependence_relations vector.
13521
13522 2008-01-16  Jan Hubicka  <jh@suse.cz>
13523
13524         PR rtl-optimization/31396
13525         * regstat.c (regstat_bb_compute_ri): Compute FREQ_CALLS_CROSSED.
13526         * cfg.c (dump_reg_info): Print it.
13527         * regs.h (struct reg_info_t): add freq_calls_crossed.
13528         (REG_FREQ_CALLS_CROSSED): New macro.
13529         * global.c (global_alloc): Compute freq_calls_crossed for allocno.
13530         (find_reg): Update call of CALLER_SAVE_PROFITABLE.
13531         * regmove.c (optimize_reg_copy_1, optimize_reg_copy_2, fixup_match_2,
13532         regmove_optimize): Update call crossed frequencies.
13533         * local-alloc.c (struct qty): Add freq_calls_crossed.
13534         (alloc_qty): Copute freq_calls_crossed.
13535         (update_equiv_regs, combine_regs): Update REG_FREQ_CALLS_CROSSED.
13536         (find_free_reg): Update call of CALLER_SAVE_PROFITABLE.
13537         * ra.h (struct allocno): Add freq_calls_crossed.
13538
13539 2008-01-16  Sebastian Pop  <sebastian.pop@amd.com>
13540
13541         * gcc.c (LINK_COMMAND_SPEC): Add includes and link options for
13542         libgomp when compiling with ftree-parallelize-loops.
13543         (GOMP_SELF_SPECS): Add -pthread for ftree-parallelize-loops.
13544
13545 2008-01-16  Richard Guenther  <rguenther@suse.de>
13546
13547         PR tree-optimization/34769
13548         * tree-data-ref.c (initialize_matrix_A): Revert fix for PR34458.
13549         * tree.c (int_cst_value): Instead make this function more
13550         permissive in what it accepts as valid input.  Document this
13551         function always sign-extends the value.
13552
13553 2008-01-16  Jakub Jelinek  <jakub@redhat.com>
13554             Richard Guenther  <rguenther@suse.de>
13555
13556         PR c/34668
13557         * gimplify.c (fold_indirect_ref_rhs): Rename to ...
13558         (gimple_fold_indirect_ref_rhs): ... this.
13559         (gimple_fold_indirect_ref): New function with foldings
13560         that preserve lvalueness.
13561         (gimplify_modify_expr_rhs): Call gimple_fold_indirect_ref_rhs.
13562         * tree-flow.h (gimple_fold_indirect_ref): Declare.
13563         * tree-inline.c (copy_body_r): Use gimple_fold_indirect_ref
13564         to fold an INDIRECT_REF, fall back to the old use of
13565         fold_indirect_ref_1.
13566
13567 2008-01-16  Sebastian Pop  <sebastian.pop@amd.com>
13568
13569         * tree-data-ref.c (subscript_dependence_tester_1): Call 
13570         free_conflict_function.
13571         (compute_self_dependence): Same.
13572
13573 2008-01-16  Uros Bizjak  <ubizjak@gmail.com>
13574
13575         PR debug/34249
13576         * debug.h (dwarf2out_switch_text_section): Move declaration from ...
13577         * dwarf2out.c (dwarf2out_switch_text_section): ... here.  Make
13578         function global.
13579         * final.c (final_scan_insn) [NOTE_INSN_SWITCH_TEXT_SECTIONS]:
13580         Depending on dwarf2out_do_frame, call dwarf2out_switch_text_section
13581         for DWARF2_UNWIND_INFO targets.
13582
13583 2008-01-16  Richard Guenther  <rguenther@suse.de>
13584
13585         PR c/34768
13586         * c-typeck.c (common_pointer_type): Do not merge inconsistent
13587         type qualifiers for function types.
13588
13589 2008-01-15  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
13590
13591         * tree-parloops.c (gen_parallel_loop): Fix ommision of declaration for
13592         loop_iterator li from previous commit.
13593
13594 2008-01-15  Sebastian Pop  <sebastian.pop@amd.com>
13595
13596         * tree-parloops.c (gen_parallel_loop): Free loop bound estimations.
13597
13598 2008-01-12  Sebastian Pop  <sebastian.pop@amd.com>
13599
13600         * tree-parloops.c (loop_has_blocks_with_irreducible_flag): New.
13601         (parallelize_loops): Don't parallelize irreducible components.
13602
13603 2008-01-14  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
13604
13605         PR c++/24924
13606         * c-opts (c_common_post_options): Do not enable CPP
13607         flag_pedantic_errors by default.
13608         
13609 2008-01-14  Eric Botcazou  <ebotcazou@adacore.com>
13610
13611         PR rtl-optimization/31944
13612         * cse.c (remove_pseudo_from_table): New function.
13613         (merge_equiv_classes): Use above function to remove pseudo-registers.
13614         (invalidate): Likewise.
13615
13616 2008-01-13  Richard Guenther  <rguenther@suse.de>
13617
13618         PR middle-end/34601
13619         * emit-rtl.c (set_reg_attrs_for_decl_rtl): Use DECL_MODE
13620         instead of TYPE_MODE to deal with calls from expand_one_error_var.
13621
13622 2008-01-13  Uros Bizjak  <ubizjak@gmail.com>
13623
13624         * gcse.c (cprop_jump): Call validate_unshare_change instead of
13625         validate_change to unshare the source of the PC set.
13626
13627 2008-01-12  Jan Hubicka  <jh@suse.cz>
13628
13629         PR middle-end/32135
13630         * tree-ssa-ccp.c (maybe_fold_offset_to_array_ref): Do not construct
13631         references above array bounds.  This might trigger bounds checks for
13632         pointers to arrays.
13633
13634 2008-01-12  Sebastian Pop  <sebastian.pop@amd.com>
13635
13636         * tree-ssa-ter.c (free_temp_expr_table): Free num_in_part and
13637         new_replaceable_dependencies.
13638
13639 2008-01-12  Doug Kwan  <dougkwan@google.com>
13640
13641         * c-decl.c: (grokdeclarator): Use OPT_Wignored_qualifiers
13642         instead of OPT_Wreturn_type in warning due to ignored return type
13643         qualifiers.
13644         * c-opt.c (c_common_post_option): Add -Wignored-qualifiers to
13645         options included in -Wextra.
13646         * c.opt: New option -Wignored_qualifiers.
13647         * doc/invoke.texi (Warning Options, -Wextra): Add new option
13648         -Wignore_qualifiers.
13649         (-Wignored-qualifiers): Document.
13650         (-Wreturn-type): Remove description of functionality now handled
13651         by -Wignored-qualifiers.
13652
13653 2008-01-12  Eric Botcazou  <ebotcazou@adacore.com>
13654
13655         PR ada/33788
13656         * fold-const.c (fold_unary) <VIEW_CONVERT_EXPR>: Fold an existing
13657         NOP_EXPR if it is between integral types with the same precision.
13658
13659 2008-01-12  Jan Hubicka  <jh@suse.cz>
13660
13661         PR other/28023
13662         * invoke.texi (max-inline-recursive-depth): Fix default value.
13663
13664 2008-01-12  Zdenek Dvorak  <ook@ucw.cz>
13665
13666         * tree-parloops.c (transform_to_exit_first_loop): Cast nit to the
13667         correct type.
13668
13669 2008-01-11  Bob Wilson  <bob.wilson@acm.org>
13670         
13671         * config/xtensa/xtensa.c (override_options): Set flag_shlib.
13672         
13673 2008-01-11  James E. Wilson  <wilson@specifix.com>
13674
13675         PR target/26015
13676         * config/vax/elf.h (FRAME_POINTER_CFA_OFFSET): Define.
13677
13678 2008-01-11  Anatoly Sokolov <aesok@post.ru>
13679
13680         * config/avr/avr.c (expand_prologue, expand_epilogue): Don't 
13681         save/restore frame pointer register and don't use 'call-prologues' 
13682         optimization in function with "OS_task" attribute.
13683
13684 2008-01-11  Eric Botcazou  <ebotcazou@adacore.com>
13685
13686         PR middle-end/31309
13687         * expr.c (copy_blkmode_from_reg): Use a mode suited to the size
13688         when copying to memory.
13689
13690 2008-01-11  Steven Bosscher  <stevenb.gcc@gmail.com>
13691
13692         PR rtl-optimization/30905
13693         * cfgcleanup.c: Include dce.h
13694         (crossjumps_occured): New global variable.
13695         (try_crossjump_bb): Exit loop after finding a fallthru edge.
13696         If something changed, set crossjumps_occured to true.
13697         (try_optimize_cfg): Clear crossjumps_occured at the beginning.
13698         Don't add/remove fake edges to exit here...
13699         (cleanup_cfg): ...but do it here, when crossjumping.
13700         Run a fast DCE when successful crossjumps occured in the latest
13701         iteration of try_optimize_cfg.
13702
13703 2008-01-11  Richard Guenther  <rguenther@suse.de>
13704
13705         * tree-ssa-sccvn.c (struct vn_binary_op_s): Move hashcode near opcode.
13706         (struct vn_unary_op_s): Likewise.
13707         (vn_reference_insert): Free old reference on hash collision.
13708
13709 2008-01-10  Raksit Ashok  <raksit@google.com>
13710
13711         PR rtl-optimization/27971
13712         * combine.c (find_split_point): Split PLUS expressions which are
13713         inside a MEM rtx, and whose first operand is complex.
13714
13715 2008-01-10  DJ Delorie  <dj@redhat.com>
13716
13717         * config/m32c/m32c.c (m32c_hard_regno_nregs_1): Renamed from...
13718         (m32c_hard_regno_nregs): ...this, which is now a wrapper.
13719         (m32c_hard_regno_ok): Call the underlying function.
13720
13721 2008-01-10  Richard Guenther  <rguenther@suse.de>
13722
13723         PR middle-end/34683
13724         * tree-cfg.c (tree_merge_blocks): Do not go through the
13725         full-blown folding and stmt updating path if we just deal
13726         with virtual operands.
13727         * tree-ssa-copy.c (may_propagate_copy): Do not short-cut
13728         test for abnormal SSA_NAMEs.
13729
13730 2008-01-10  Andreas Krebbel  <krebbel1@de.ibm.com>
13731
13732         PR middle-end/34641
13733         * reload.c (push_reload): Add assertions.  All constants from
13734         reg_equiv_constant should have been used for replacing the respective
13735         pseudo earlier.
13736         (find_reloads_address): Invoke find_reloads_address_part for
13737         constant taken from the reg_equiv_constant array.
13738
13739 2008-01-10  Steven Bosscher  <stevenb.gcc@gmail.com>
13740
13741         * tree-ssa-sccvn.h (struct vn_ssa_aux): Make the most accessed
13742         field (valnum) the first in the struct.  Replace bools with
13743         unit bit fields.
13744
13745 2008-01-10  Richard Guenther  <rguenther@suse.de>
13746
13747         PR tree-optimization/34651
13748         * tree-sra.c (sra_build_assignment): Sanitize.  Use the correct
13749         types and ordering for masking and converting.
13750
13751 2008-01-09  Sebastian Pop  <sebastian.pop@amd.com>
13752
13753         PR tree-optimization/34017
13754         * lambda-code.c (lambda_loopnest_to_gcc_loopnest): Generate code
13755         also for PHI_NODE expressions.
13756
13757 2008-01-09  Jan Hubicka  <jh@suse.cz>
13758
13759         PR tree-optimization/34708
13760         * tree-inline.c (estimate_num_insns_1): Compute cost of SWITCH_EXPR
13761         based on number of case labels.
13762         (init_inline_once): Remove switch_cost.
13763         * tree-inline.h (eni_weights_d): Remove switch_cost.
13764
13765 2008-01-09  Richard Guenther  <rguenther@suse.de>
13766         Andrew Pinski  <andrew_pinski@playstation.sony.com>
13767
13768         PR middle-end/30132
13769         * gimplify.c (gimplify_cond_expr): Do not create an addressable
13770         temporary if an rvalue is ok or an lvalue is not required.
13771
13772 2008-01-09  Richard Guenther  <rguenther@suse.de>
13773
13774         PR middle-end/34458
13775         * tree-data-ref.c (initialize_matrix_A): Use tree_low_cst,
13776         adjust return type.
13777
13778 2008-01-09  Richard Guenther  <rguenther@suse.de>
13779
13780         PR middle-end/34679
13781         * tree.c (host_integerp): Check for sizetype only if the
13782         type is an integer type.
13783
13784 2008-01-09  Steven Bosscher  <stevenb.gcc@gmail.com>
13785
13786         PR debug/26364
13787         * opts.c (decode_options): Disable inlining of functions called
13788         once if not in unit-at-a-time mode.
13789
13790 2008-01-09  Alexandre Oliva  <aoliva@redhat.com>
13791
13792         * Makefile.in (dse.o): Remove duplicate $(RECOG_H) dependency.
13793
13794 2008-01-08  Richard Guenther  <rguenther@suse.de>
13795
13796         PR middle-end/31863
13797         * tree-ssa-structalias.c (push_fields_onto_fieldstack): Bail
13798         out early if the result will be unused.
13799
13800 2008-01-08  Uros Bizjak  <ubizjak@gmail.com>
13801
13802         PR target/34709
13803         Revert:
13804
13805         2008-01-05  Uros Bizjak  <ubizjak@gmail.com>
13806         * config/i386/i386.c (ix86_builtin_reciprocal): Remove check
13807         for TARGET_RECIP.       
13808         
13809 2008-01-08  Jan Sjodin  <jan.sjodin@amd.com>
13810         
13811         * config/i386/i386.c (k8_cost, amdfam10_cost): Branch costs
13812         for vectorization tuned.
13813         
13814 2008-01-08  Richard Guenther  <rguenther@suse.de>
13815
13816         PR tree-optimization/34683
13817         * tree-ssa-operands.c (operand_build_cmp): Export.
13818         * tree-ssa-operands.h (operand_build_cmp): Declare.
13819         * tree-vn.c (vuses_compare): Remove.
13820         (sort_vuses): Use operand_build_cmp.
13821         (sort_vuses_heap): Likewise.
13822         * tree-ssa-sccvn.c (vuses_to_vec): Use VEC_reserve, not VEC_alloc
13823         to re-use old VEC if available.  Do not sort already sorted VUSEs.
13824         (vdefs_to_vec): Do not sort already sorted VDEFs.
13825
13826 2008-01-08  Jakub Jelinek  <jakub@redhat.com>
13827
13828         PR middle-end/34694
13829         * omp-low.c (copy_var_decl): Copy also DECL_SOURCE_LOCATION.
13830
13831 2008-01-08  Uros Bizjak  <ubizjak@gmail.com>
13832
13833         PR target/34702
13834         * doc/invoke.texi (i386 and x86-64 Options) [mrecip]: Document
13835         limitations of reciprocal sequences on x86 targets.
13836
13837 2008-01-08  Richard Guenther  <rguenther@suse.de>
13838
13839         PR tree-optimization/34683
13840         * tree-flow-inline.h (var_ann): Remove overzealous asserts.
13841
13842 2008-01-07  Jakub Jelinek  <jakub@redhat.com>
13843
13844         PR target/34622
13845         * config/darwin.c (darwin_mergeable_string_section): Don't use
13846         .cstring if int_size_in_bytes != TREE_STRING_LENGTH.
13847
13848 2008-01-07  Uros Bizjak  <ubizjak@gmail.com>
13849
13850         PR target/34682
13851         * config/i386/i386.md (neg<mode>2): Rename from negsf2, negdf2 and
13852         negxf2.  Macroize expander using X87MODEF mode iterator.  Change
13853         predicates of op0 and op1 to register_operand.
13854         (abs<mode>2): Rename from abssf2, absdf2 and negxf2.  Macroize
13855         expander using X87MODEF mode iterator.  Change predicates of
13856         op0 and op1 to register_operand.
13857         ("*absneg<mode>2_mixed", "*absneg<mode>2_sse"): Rename from
13858         corresponding patterns and macroize using MODEF macro.  Change
13859         predicates of op0 and op1 to register_operand and remove
13860         "m" constraint. Disparage "r" alternative with "!".
13861         ("*absneg<mode>2_i387"): Rename from corresponding patterns and
13862         macroize using X87MODEF macro.  Change predicates of op0 and op1
13863         to register_operand and remove "m" constraint.  Disparage "r"
13864         alternative with "!".
13865         (absneg splitter with memory operands): Remove.
13866         ("*neg<mode>2_1", "*abs<mode>2_1"): Rename from corresponding
13867         patterns and macroize using X87MODEF mode iterator.
13868         * config/i386/sse.md (negv4sf2, absv4sf2, neg2vdf2, absv2df2):
13869         Change predicate of op1 to register_operand.
13870         * config/i386/i386.c (ix86_expand_fp_absneg_operator): Remove support
13871         for memory operands.
13872
13873 2008-01-07  Nathan Froyd  <froydnj@codesourcery.com>
13874
13875         * config/rs6000/rs6000.h (ASM_CPU_SPEC): Add clause for mcpu=8548.
13876
13877 2008-01-07  Richard Guenther  <rguenther@suse.de>
13878
13879         * basic-block.h (struct edge_def): Pair dest_idx with goto_locus
13880         fields.
13881
13882 2008-01-07  Richard Guenther  <rguenther@suse.de>
13883
13884         PR tree-optimization/34683
13885         * tree-ssa-sccvn.c (vuses_to_vec): Pre-allocate the vector of
13886         VOPs of the needed size to save memory.  Use VEC_quick_push
13887         to save compile-time.
13888         (vdefs_to_vec): Likewise.
13889
13890 2008-01-07  Sa Liu  <saliu@de.ibm.com>
13891
13892         * config/spu/spu.md (divdf3): Genetate inline code for double
13893         division.  The implementation doesn't handle INF or NAN, therefore it
13894         only applies when -ffinite-math-only is given.
13895
13896 2008-01-06  Paolo Carlini  <pcarlini@suse.de>
13897
13898         PR libstdc++/34680
13899         * c-cppbuiltin.c (c_cpp_builtins): Define __GXX_RTTI, if appropriate.
13900         * doc/cpp.texi ([Common Predefined Macros]): Document.
13901
13902 2008-01-06  Uros Bizjak  <ubizjak@gmail.com>
13903
13904         * config/i386/i386.c (ix86_emit_swsqrtsf): Use negative constants in
13905         order to use commutative addition instead of subtraction.
13906
13907 2008-01-06  Andrew Pinski  <andrew_pinski@playstation.sony.com>
13908             Mircea Namolaru  <namolaru@il.ibm.com>
13909             Vladimir Yanovsky  <yanov@il.ibm.com>
13910             Revital Eres  <eres@il.ibm.com>
13911
13912         PR tree-optimization/34263
13913         * tree-outof-ssa.c (process_single_block_loop_latch,
13914         contains_tree_r): New functions.
13915         (analyze_edges_for_bb): Call process_single_block_loop_latch
13916         function to empty single-basic-block latch block if possible.
13917
13918 2008-01-05  Uros Bizjak  <ubizjak@gmail.com>
13919
13920         * config/i386/i386.c (ix86_builtin_reciprocal): Remove check
13921         for TARGET_RECIP.
13922         (ix86_emit_swsqrtsf): Do not filter out infinity for rsqrt expansion.
13923
13924 2008-01-05  Richard Sandiford  <rsandifo@nildram.co.uk>
13925
13926         * c-omp.c (check_omp_for_incr_expr): Handle CONVERT_EXPR.
13927
13928 2008-01-05  Richard Sandiford  <rsandifo@nildram.co.uk>
13929
13930         * config/mips/mips.c (mips_in_small_data_p): Reinstate size > 0 check.
13931
13932 2008-01-05  Jakub Jelinek  <jakub@redhat.com>
13933
13934         PR tree-optimization/34618
13935         * tree-outof-ssa.c (create_temp): Copy over DECL_GIMPLE_REG_P
13936         flag from T.
13937
13938 2008-01-05  Uros Bizjak  <ubizjak@gmail.com>
13939
13940         PR target/34673
13941         * config/i386/i386.c (ix86_emit_swsqrtsf): Swap input operands
13942         in the call to gen_rtx_NE.  Remove unneeded VECTOR_MODE_P check.
13943         Update copyright year.
13944
13945         * config/i386/i386.md (rsqrtsf2): Enable for TARGET_SSE_MATH.
13946         Update copyright year.
13947         * config/i386/sse.md (rsqrtv4sf2): Ditto. Unconditionally expand
13948         using NR fixup.
13949
13950 2008-01-05  Zhouyi Zhou  <zhouzhouyi@FreeBSD.org>
13951
13952         * tree-vrp.c (find_conditional_asserts): Remove redundant check that
13953         edge does not point to current bb before changing need_assert.
13954
13955 2008-01-04  Richard Guenther  <rguenther@suse.de>
13956
13957         PR middle-end/34029
13958         * tree-cfg.c (verify_expr): Do not look inside ADDR_EXPRs
13959         for verifying purposes if they are is_gimple_min_invariant.
13960
13961 2008-01-04  Aldy Hernandez  <aldyh@redhat.com>
13962
13963         PR tree-optimization/34448
13964         PR tree-optimization/34465
13965         * gimplify.c (gimplify_init_constructor): Add new parameter
13966         notify_temp_creation.  Use it.
13967         (gimplify_modify_expr_rhs): Take volatiles into account when
13968         optimizing constructors.
13969         Do not optimize constructors if gimplify_init_constructor will dump to
13970         memory.
13971         * gcc.dg/tree-ssa/pr32901.c: Tests const volatiles.
13972         * gcc.c-torture/compile/pr34448.c: New.
13973
13974 2008-01-04  Jakub Jelinek  <jakub@redhat.com>
13975
13976         PR gcov-profile/34609
13977         * tree-inline.c (declare_return_variable): Set TREE_ADDRESSABLE on
13978         return_slot if result is TREE_ADDRESSABLE.
13979
13980 2008-01-04  Richard Sandiford  <rsandifo@nildram.co.uk>
13981
13982         * config/mips/mips.md (sqrt_condition): Tweak comment.
13983         (recip_condition): Likewise.  Require TARGET_FLOAT64 for DFmode.
13984
13985 2008-01-03  Tom Tromey  <tromey@redhat.com>
13986
13987         PR c/34457
13988         * c-common.c (c_type_hash): Handle VLAs.
13989
13990 2008-01-03  Jan Hubicka  <jh@suse.cz>
13991
13992         PR tree-optimization/31081
13993         * tree-inline.c (remap_ssa_name): Initialize uninitialized SSA vars to
13994         0 when inlining and not inlining to first basic block.
13995         (remap_decl): When var is initialized to 0, don't set default_def.
13996         (expand_call_inline): Set entry_bb.
13997         * tree-inline.h (copy_body_data): Add entry_bb.
13998
13999 2008-01-03  Jakub Jelinek  <jakub@redhat.com>
14000
14001         PR c++/34619
14002         * cgraphunit.c (cgraph_build_static_cdtor): set_cfun back to NULL
14003         before returning.
14004
14005         PR tree-optimization/29484
14006         * tree-inline.c (inline_forbidden_p_2): New function.
14007         (inline_forbidden_p): Disallow inlining if some static var
14008         has an address of a local LABEL_DECL in its initializer.
14009         * doc/extend.texi (Labels as Values): Document &&foo behaviour
14010         vs. inlining.
14011
14012 2008-01-03  Sebastian Pop  <sebastian.pop@amd.com>
14013
14014         PR tree-optimization/34635
14015         * tree-data-ref.c (add_other_self_distances): Make sure that the
14016         evolution step is constant.
14017
14018 2008-01-03  Jakub Jelinek  <jakub@redhat.com>
14019
14020         PR middle-end/34608
14021         * omp-low.c (expand_omp_parallel): Purge dead EH edges in the child fn.
14022
14023 2008-01-02  Richard Sandiford  <rsandifo@nildram.co.uk>
14024
14025         * tree-sra.c (scalarize_init): Insert the generate_element_init
14026         statements after the generate_element_zero statements.
14027
14028 2008-01-02  Richard Guenther  <rguenther@suse.de>
14029
14030         PR middle-end/34093
14031         PR middle-end/31976
14032         * tree-ssa-operands.c (ssa_operand_alloc): Also allocate a buffer
14033         for very large number of operands instead of ICEing.
14034
14035 2008-01-02  Arthur Norman <acn1@cam.ac.uk>
14036
14037         PR target/34013
14038         * config/i386/i386.c (ix86_expand_prologue): Save red-zone
14039         while stack probing.
14040
14041 2008-01-01  Douglas Gregor  <doug.gregor@gmail.com>
14042
14043         * c-opts.c (sanitize_cpp_opts): Don't warn about "long long" when
14044         in C++0x mode.
14045
14046 2008-01-01  Volker Reichelt  <v.reichelt@netcologne.de>
14047
14048         PR libmudflap/26442
14049         * tree-mudflap.c (mx_register_decls): Guard warning by
14050         !DECL_ARTIFICIAL check.
14051
14052 2008-01-01  Jakub Jelinek  <jakub@redhat.com>
14053
14054         * config/i386/sse.md (sse5_pperm, sse5_pperm_pack_v2di_v4si,
14055         sse5_pperm_pack_v4si_v8hi, sse5_pperm_pack_v8hi_v16qi,
14056         sse5_perm<mode>): Fix constraints.