OSDN Git Service

* libgcov.c (__gcov_execl, __gcov_execlp, __gcov_execle): Remove
[pf3gnuchains/gcc-fork.git] / gcc / ChangeLog
1 2009-01-20  Ben Elliston  <bje@au.ibm.com>
2
3         * libgcov.c (__gcov_execl, __gcov_execlp, __gcov_execle): Remove
4         const qualifier from arg parameter. Remove unnecessary cast to
5         char *.
6         * gcov-io.h (__gcov_execl, __gcov_execlp, __gcov_execle): Remove
7         const qualifier from arg 2.
8
9 2009-01-19  Iain Sandoe  <iain.sandoe@sandoe-acoustics.co.uk>
10
11         * config/darwin.h: Add static-libgfortran to LINK_SPEC.
12
13 2009-01-19  Vladimir Makarov  <vmakarov@redhat.com>
14
15         PR c/38869
16         * rtl.h (reinit_regs): New prototype.
17         * regclass.c: Include ira.h.
18         (reinit_regs): New.
19         * Makefile.in (regclass.o): Add ira.h.
20         * config/i386/i386.c (ix86_maybe_switch_abi): Use reinit_regs.
21
22 2009-01-18  H.J. Lu  <hongjiu.lu@intel.com>
23
24         PR target/38736
25         * c-common.c (handle_aligned_attribute): Use
26         ATTRIBUTE_ALIGNED_VALUE instead of BIGGEST_ALIGNMENT for
27         default alignment value.
28
29         * c-cppbuiltin.c (c_cpp_builtins): Define __BIGGEST_ALIGNMENT__.
30
31         * defaults.h (ATTRIBUTE_ALIGNED_VALUE): New.
32         * config/i386/i386.h (ATTRIBUTE_ALIGNED_VALUE): Likewise.
33
34         * doc/extend.texi: Update __attribute__ ((aligned)).  Document
35         __BIGGEST_ALIGNMENT__.
36
37         * doc/tm.texi: Document ATTRIBUTE_ALIGNED_VALUE.
38
39 2009-01-18  Richard Guenther  <rguenther@suse.de>
40
41         PR tree-optimization/38819
42         * tree-flow.h (operation_could_trap_helper_p): Declare.
43         * tree-eh.c (operation_could_trap_helper_p): Export.
44         * tree-ssa-sccvn.h (vn_nary_may_trap): Declare.
45         * tree-ssa-sccvn.c (vn_nary_may_trap): New function.
46         * tree-ssa-pre.c (insert_into_preds_of_block): Check if we
47         are about to insert a possibly trapping instruction and fail
48         in this case.
49
50 2009-01-18  Andreas Schwab  <schwab@suse.de>
51
52         * doc/install.texi (Configuration): Remove obsolete paragraph
53         about use of --with-gnu-ld with --with-gnu-as.
54
55 2009-01-18  Kazu Hirata  <kazu@codesourcery.com>
56
57         * doc/extend.texi, doc/gimple.texi, doc/invoke.texi,
58         doc/md.texi, doc/sourcebuild.texi, doc/tm.texi: Fix typos.
59         Follow spelling conventions.
60
61 2009-01-18  Ben Elliston  <bje@au.ibm.com>
62
63         * bitmap.c (bitmap_obstack_alloc_stat): Adjust cast to eliminate
64         C++ warning about implicit conversion from void * to struct
65         bitmap_head_def *.
66         (bitmap_obstack_free): Likewise for bitmap_element *.
67         * Makefile.in (bitmap.o-warn): Remove.
68
69 2009-01-17  Dave Korn  <dave.korn.cygwin@gmail.com>
70
71         * Makefile.in (BACKENDLIBS):  Reorder to match dependencies.
72
73 2009-01-17  Sebastian Pop  <sebastian.pop@amd.com>
74             Tobias Grosser  <tobi.grosser@amd.com>
75
76         * graphite.c (graphite_trans_scop_block): Do not block single
77         nested loops.
78
79 2009-01-16  Alexandre Oliva  <aoliva@redhat.com>
80
81         * ebitmap.h (ebitmap_iter_init): Initialize all fields.
82         * ipa-struct-reorg.c (gen_struct_type): Replace known-true
83         test with assertion.
84
85 2009-01-16  Richard Guenther  <rguenther@suse.de>
86
87         PR tree-optimization/38835
88         PR middle-end/36227
89         * fold-const.c (fold_binary): Remove PTR + INT -> (INT)(PTR p+ INT)
90         and INT + PTR -> (INT)(PTR p+ INT) folding.
91         * tree-ssa-address.c (create_mem_ref): Properly use POINTER_PLUS_EXPR.
92
93 2009-01-16  Adam Nemet  <anemet@caviumnetworks.com>
94
95         PR target/38554
96         * expmed.c (expand_shift): With SHIFT_COUNT_TRUNCATED, don't lift
97         the subreg from a lowpart subreg if it is also casting the value.
98
99 2009-01-16  Sebastian Pop  <sebastian.pop@amd.com>
100             Tobias Grosser  <tobi.grosser@amd.com>
101
102         * graphite.c (compare_prefix_loops): New.
103         (build_scop_canonical_schedules): Rewritten.
104         (graphite_transform_loops): Move build_scop_canonical_schedules
105         after build_scop_iteration_domain.
106
107 2009-01-16  Sebastian Pop  <sebastian.pop@amd.com>
108             Tobias Grosser  <tobi.grosser@amd.com>
109
110         * graphite.c (add_conditions_to_domain): Add the loops to 
111         the dimension of the iteration domain.  Do copy the domain
112         only when it exists.
113         (build_scop_conditions_1): Do not call add_conditions_to_domain.
114         (add_conditions_to_constraints): New.
115         (can_generate_code_stmt, can_generate_code): Removed.
116         (gloog): Do not call can_generate_code.
117         (graphite_transform_loops): Call add_conditions_to_constraints
118         after building the iteration domain.
119
120 2009-01-16  Jakub Jelinek  <jakub@redhat.com>
121
122         PR tree-optimization/38789
123         * tree-ssa-threadedge.c
124         (record_temporary_equivalences_from_stmts_at_dest): Ignore calls to
125         __builtin_constant_p.
126
127 2009-01-16  Kenneth Zadeck <zadeck@naturalbridge.com>
128
129         * dce.c (delete_unmarked_insns): Reversed the order that insns are
130         examined before deleting them.
131         
132 2009-01-16  Richard Earnshaw  <rearnsha@arm.com>
133
134         * function.c (aggregate_value_p): Correctly extract the function
135         type from CALL_EXPR_FN lookup.
136
137 2009-01-16  Hariharan Sandanagobalane <hariharan@picochip.com>
138
139         * config/picochip/picochip.c (picochip_override_options): Revert
140         CFI asm flag disable commited previously.
141
142 2009-01-15  Sebastian Pop  <sebastian.pop@amd.com>
143             Tobias Grosser  <tobi.grosser@amd.com>
144             Jan Sjodin  <jan.sjodin@amd.com>
145
146         * graphite.c (scan_tree_for_params): On substractions negate
147         all the coefficients of the term.
148         (clast_to_gcc_expression_red): New.  Handle reduction expressions
149         of more than two operands.
150         (clast_to_gcc_expression): Call clast_to_gcc_expression_red.
151         (get_vdef_before_scop): Handle also the case of default definitions.
152
153 2009-01-15  Richard Sandiford  <rdsandiford@googlemail.com>
154
155         * caller-save.c (add_used_regs_1, add_used_regs): New functions.
156         (insert_one_insn): Use them instead of REG_DEAD and REG_INC notes.
157         Also use them when walking CALL_INSN_FUNCTION_USAGE.
158
159 2009-01-15  H.J. Lu  <hongjiu.lu@intel.com>
160             Joey Ye  <joey.ye@intel.com>
161
162         PR middle-end/37843
163         * cfgexpand.c (expand_stack_alignment): Don't update stack
164         boundary nor check incoming stack boundary here.
165         (gimple_expand_cfg): Update stack boundary and check incoming
166         stack boundary here.
167
168 2009-01-15  Kenneth Zadeck <zadeck@naturalbridge.com>
169
170         * dce.c (find_call_stack_args, delete_unmarked_insns): Fixed
171         comments.
172         
173 2009-01-14  Jakub Jelinek  <jakub@redhat.com>
174
175         PR rtl-optimization/38245
176         * calls.c (expand_call): Add stack arguments to
177         CALL_INSN_FUNCTION_USAGE even for pure calls (when
178         ACCUMULATE_OUTGOING_ARGS) and even for args partially passed
179         in regs and partially in memory or BLKmode arguments.
180         (emit_library_call_value_1): Add stack arguments to
181         CALL_INSN_FUNCTION_USAGE even for pure calls (when
182         ACCUMULATE_OUTGOING_ARGS).
183         * dce.c: Include tm_p.h.
184         (find_call_stack_args): New function.
185         (deletable_insn_p): Call it for CALL_P insns.  Add ARG_STORES
186         argument.
187         (mark_insn): Call find_call_stack_args for CALL_Ps.
188         (prescan_insns_for_dce): Walk insns backwards in bb rather than
189         forwards.  Allocate and free arg_stores bitmap if needed, pass it
190         down to deletable_insn_p, don't mark stores set in arg_stores
191         bitmap, clear the bitmap at the beginning of each bb.
192         * Makefile.in (dce.o): Depend on $(TM_P_H).
193
194 2009-01-14  Michael Meissner  <gnu@the-meissners.org>
195
196         PR target/22599
197         * i386.c (print_operand): Add tests for 'D', 'C', 'F', 'f' to make
198         sure the insn is a conditional test (bug 22599).  Reformat a few long
199         lines.
200
201 2009-01-14  Sebastian Pop  <sebastian.pop@amd.com>
202
203         PR middle-end/38431
204         * graphite.c (get_vdef_before_scop, scop_adjust_vphi): New.
205         (scop_adjust_phis_for_liveouts): Call scop_adjust_vphi.
206         (gloog): Do not call cleanup_tree_cfg.
207         (graphite_transform_loops): Call cleanup_tree_cfg after all 
208         scops have been code generated.
209
210 2009-01-14  Vladimir Makarov  <vmakarov@redhat.com>
211
212         * testsuite/g++.dg/torture/pr38811.C: New file.
213
214 2009-01-14  Basile Starynkevitch  <basile@starynkevitch.net>
215         * doc/gty.texi (Invoking the garbage collector): Added new node
216         and section documenting ggc_collect.
217
218 2009-01-14  Richard Guenther  <rguenther@suse.de>
219
220         PR tree-optimization/38826
221         PR middle-end/38477
222         * tree-ssa-structalias.c (emit_alias_warning): Emit the pointer
223         initialization notes only if we actually emitted a warning.
224         (intra_create_variable_infos): Add constraints for a result decl
225         that is passed by hidden reference.
226         (build_pred_graph): Mark all related variables non-direct on
227         address-taking.
228
229 2009-01-14  Nick Clifton  <nickc@redhat.com>
230
231         * ira-conflicts.c: Include addresses.h for the definition of
232         base_reg_class.
233         (ira_build_conflicts): Use base_reg_class instead of
234         BASE_REG_CLASS.
235         * Makefile.in: Add a dependency of ira-conflicts.o on
236         addresses.h.
237
238 2009-01-13  Vladimir Makarov  <vmakarov@redhat.com>
239
240         PR target/38811
241         * Makefile.in (ira-lives.o): Add except.h.
242
243         * ira-lives.c: Include except.h.
244         (process_bb_node_lives): Process can_throw_internal.
245
246 2009-01-13  Jakub Jelinek  <jakub@redhat.com>
247
248         PR rtl-optimization/38774
249         * combine.c (simplify_set): When undoing cc_use change, don't do
250         PUT_CODE on the newly created comparison, but instead put back the
251         old comparison.
252
253 2009-01-13  Joseph Myers  <joseph@codesourcery.com>
254
255         * doc/invoke.texi (ARM Options): Update lists of -mcpu and -march
256         values.  Remove duplicate arm8 entry.
257
258 2009-01-13  Sebastian Pop  <sebastian.pop@amd.com>
259
260         PR tree-optimization/38786
261         * graphite.c (expand_scalar_variables_ssa_name): New, outlined from
262         the SSA_NAME case of expand_scalar_variables_expr.
263         Set the type of an expression to the type of its assign statement.
264         (expand_scalar_variables_expr): Also gather the scalar computation
265         used to index the memory access.  Do not pass loop_p.
266         Fix comment.  Stop recursion on tcc_constant or tcc_declaration.
267         (expand_scalar_variables_stmt): Pass to expand_scalar_variables_expr
268         the gimple_stmt_iterator where it inserts new code.  Do not pass loop_p.
269         (copy_bb_and_scalar_dependences): Do not pass loop_p.
270         (translate_clast): Update call to copy_bb_and_scalar_dependences.
271
272 2009-01-13  Sebastian Pop  <sebastian.pop@amd.com>
273
274         * graphite.h (debug_value): Removed.
275         * graphite.c (debug_value): Removed.
276
277 2009-01-13  Richard Earnshaw  <rearnsha@arm.com>
278
279         * arm.c (output_move_double): Don't synthesize thumb-2 ldrd/strd with
280         two 32-bit instructions.
281
282 2009-01-13  Richard Earnshaw  <rearnsha@arm.com>
283
284         * arm.c (struct processors): Pass for speed down into cost helper
285         functions.
286         (const_ok_for_op): Handle COMPARE and inequality nodes.
287         (arm_rtx_costs_1): Rewrite.
288         (arm_size_rtx_costs): Update prototype.
289         (arm_rtx_costs): Pass speed down to helper functions.
290         (arm_slowmul_rtx_costs): Rework cost calculations.
291         (arm_fastmul_rtx_costs, arm_xscale_rtx_costs): Likewise.
292         (arm_9e_rtx_costs): Likewise.
293
294 2009-01-13  Uros Bizjak  <ubizjak@gmail.com>
295
296         * config/alpha/alpha.c (alpha_legitimate_address_p): Explicit
297         relocations of local symbols  wider than UNITS_PER_WORD are not valid.
298         (alpha_legitimize_address): Do not split local symbols wider than
299         UNITS_PER_WORD into HIGH/LO_SUM parts.
300
301 2009-01-13  Danny Smith  <dannysmith@users.sourceforge.net>
302
303         PR bootstrap/38580
304         * gcc.c (process_command): Replace call to execvp with calls
305         to pex_one and exit.
306
307 2009-01-03  Anatoly Sokolov  <aesok@post.ru>
308
309         PR target/29141
310         * config/avr/t-avr (LIB1ASMFUNCS): Add _tablejump_elpm.
311         * config/avr/libgcc.S (__do_global_ctors, __do_global_dtors): Add
312         variant for devices with 3-byte PC.
313         (__tablejump_elpm__) : New.
314
315 2009-01-12  Jakub Jelinek  <jakub@redhat.com>
316
317         PR c/32041
318         * c-parser.c (c_parser_postfix_expression): Allow `->' in
319         offsetof member-designator, handle it as `[0].'.
320
321 2009-01-12  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
322
323         * pa.c (pa_asm_output_mi_thunk): Use pc-relative branch to thunk
324         function when not using named sections on targets with named sections
325         if branch distance is less than 262132.
326
327 2009-01-12  Richard Earnshaw  <rearnsha@arm.com>
328
329         * combine.c (combine_instructions):  Recompute
330         optimize_this_for_speed_p  for each BB in the main combine loop.
331
332 2009-01-12  Tomas Bily  <tbily@suse.cz>
333
334         PR middlend/38385
335         * tree-loop-distribution.c (prop_phis): New function.
336         (generate_builtin): Call prop_phis.
337         * testsuite/gcc.dg/tree-ssa/pr38385.c: New file.
338
339 2009-01-12  Jakub Jelinek  <jakub@redhat.com>
340
341         PR tree-optimization/38807
342         * tree-ssa-reassoc.c (remove_visited_stmt_chain): Don't look at
343         gimple_visited_p unless stmt is GIMPLE_ASSIGN.
344
345 2009-01-11  Adam Nemet  <anemet@caviumnetworks.com>
346
347         * expmed.c (store_bit_field_1): Properly truncate the paradoxical
348         subreg of op0 to the original op0.
349
350 2009-01-11  Laurent GUERBY <laurent@guerby.net>
351
352         * doc/sourcebuild.texi (Source Tree): Move up intl and fixinc.
353         
354 2009-01-11  Markus Schoepflin  <markus.schoepflin@comsoft.de>
355
356         PR debug/7055
357         * gcc/mips-tfile.c (parse_def): Fix parsing of def strings
358         starting with digits.
359
360 2009-01-10  Jakub Jelinek  <jakub@redhat.com>
361
362         PR target/38695
363         * config/arm/arm.c (arm_is_long_call_p): Don't call
364         arm_function_in_section_p if decl isn't a FUNCTION_DECL.
365
366 2009-01-09  Steven Bosscher  <steven@gcc.gnu.org>
367
368         * regrename.c (regrename_optimize): Fix dumping.
369         (find_oldest_value_reg): Preserve REG_POINTER.
370         (copy_hardreg_forward_1): Likewise.
371
372 2009-01-09  Diego Novillo  <dnovillo@google.com>
373
374         * gimple.h (struct gimple_statement_base)<uid>: Document
375         the restrictions on its use.
376         (gimple_uid): Tidy.
377         (gimple_set_uid): Tidy.
378
379 2009-01-09  Jakub Jelinek  <jakub@redhat.com>
380
381         * config/i386/i386.c (ix86_expand_movmem, ix86_expand_setmem): Add
382         zero guard even if align_bytes != 0 and count is smaller than
383         size_needed.
384
385 2008-01-09  Vladimir Makarov  <vmakarov@redhat.com>
386
387         PR rtl-optimization/38495
388         * ira-emit.c (print_move_list, ira_debug_move_list): New functions.
389         (add_range_and_copies_from_move_list): Print all added ranges.
390         Add ranges to memory optimized destination.
391
392 2009-01-09  Jakub Jelinek  <jakub@redhat.com>
393
394         PR target/38686
395         PR target/38708
396         * config/i386/i386.c (override_options): Reject
397         -mstringop-strategy=rep_8byte with -m32.
398         (ix86_expand_movmem): For size_needed == 1 set epilogue_size_needed
399         to 1.  Do count comparison against epilogue_size_needed at compile
400         time even when count_exp was constant forced into register.  For
401         size_needed don't jump to epilogue, instead just avoid aligning
402         and invoke the body algorithm.  If need_zero_guard, add zero guard
403         even if count is non-zero, but smaller than size_needed + number of
404         bytes that could be stored for alignment.
405         (ix86_expand_setmem): For size_needed == 1 set epilogue_size_needed
406         to 1.  If need_zero_guard, add zero guard even if count is non-zero,
407         but smaller than size_needed + number of bytes that could be stored
408         for alignment.  Compare size_needed with epilogue_size_needed instead
409         of desired_align - align, don't adjust size_needed, pass
410         epilogue_size_needed to the epilogue expanders.
411
412         PR c/35742
413         * c-pretty-print.c (pp_c_expression): Handle GOTO_EXPR like BIND_EXPR.
414
415 2009-01-09  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
416
417         * pa.c (last_address): Change to unsigned.
418         (update_total_code_bytes): Change argument to unsigned.  Don't
419         check if insn addresses are set.
420         (pa_output_function_epilogue): Set last_address to UINT_MAX if insn
421         addresses are not set.
422         (pa_asm_output_mi_thunk): Handle wrap when updating last_address.
423
424 2009-01-09  Nick Clifton  <nickc@redhat.com>
425
426         * config/sh/symbian.c: Replace uses of DECL_INLINE with
427         DECL_DECLARED_INLINE_P.
428
429 2009-01-09  Jakub Jelinek  <jakub@redhat.com>
430
431         PR middle-end/38347
432         * dojump.c (do_jump_by_parts_zero_rtx): Use mode instead of
433         GET_MODE (op0) in operand_subword_force calls.
434
435         PR middle-end/38771
436         * fold-const.c (fold_unary): For COMPOUND_EXPR and COND_EXPR,
437         fold_convert arg0 operands to TREE_TYPE (op0) first.
438
439 2009-01-08  Vladimir Makarov  <vmakarov@redhat.com>
440
441         * params.def (ira-max-conflict-table-size): Decrease default value
442         to 1000.
443
444 2009-01-08  Jakub Jelinek  <jakub@redhat.com>
445
446         PR tree-optimization/37031
447         * lambda-code.c (lambda_collect_parameters): Call pointer_set_destroy
448         on parameter_set.
449         (build_access_matrix): Reserve correct size for AM_MATRIX vector,
450         allocate it using gc instead of heap, use VEC_quick_push instead of
451         VEC_safe_push.
452         * graphite.c (build_access_matrix): Allocate AM_MATRIX vector using gc
453         instead of heap, use VEC_quick_push instead of VEC_safe_push.
454         * tree-data-ref.h (struct access_matrix): Change matrix to gc
455         allocated vector from heap allocated.
456         * lambda.h: Add DEF_VEC_ALLOC_P for gc allocated lambda_vector.
457         * tree-loop-linear.c (linear_transform_loops): Allocate nest
458         vector only after perfect_loop_nest_depth call.
459
460 2009-01-08  Sebastian Pop  <sebastian.pop@amd.com>
461             Jan Sjodin  <jan.sjodin@amd.com>
462
463         PR tree-optimization/38559
464         * graphite.c (debug_value, copy_constraint,
465         swap_constraint_variables, scale_constraint_variable, ): New.
466         (get_lower_bound, get_upper_bound): Removed.
467         (graphite_trans_bb_strip_mine): Clean up this code that works
468         only for constant number of iterations.  Fully copy upper and
469         lower bound constraints, not only the constant part of them.
470         * graphite.h (debug_value): Declared.
471
472 2009-01-08  Ira Rosen  <irar@il.ibm.com>
473
474         PR tree-optimization/37194
475         * tree-vect-transform.c (vect_estimate_min_profitable_iters):
476         Don't add the cost of cost model guard in prologue to scalar 
477         outside cost in case of known number of iterations.
478
479 2009-01-07  Nathan Froyd  <froydnj@codesourcery.com>
480             Alan Modra  <amodra@bigpond.net.au>
481
482         * config/rs6000/rs6000.c (rs6000_legitimize_address): Check for
483         non-word-aligned REG+CONST addressing.
484
485 2009-01-07  Uros Bizjak  <ubizjak@gmail.com>
486
487         PR target/38706
488         * config/alpha/alpha.c (alpha_end_function): For TARGET_ABI_OSF, call
489         free_after_compilation when outputting a thunk.
490         (alpha_output_mi_thunk_osf): Assert that we are processing a thunk.
491         Do not call free_after_compilation here.
492
493 2009-01-07  Uros Bizjak  <ubizjak@gmail.com>
494
495         * config/i386/i386.c (ix86_target_string): Use ARRAY_SIZE.
496         (ix86_valid_target_attribute_inner_p): Ditto.
497
498 2009-01-07  Jan Sjodin  <jan.sjodin@amd.com>
499
500         PR tree-optimization/38492
501         PR tree-optimization/38498
502         * tree-check.c (operator_is_linear, scev_is_linear_expression): New.
503         * tree-chrec.h (scev_is_linear_expression): Declared.
504         * graphite.c (graphite_cannot_represent_loop_niter): New.
505         (scopdet_basic_block_info): Call graphite_cannot_represent_loop_niter.
506         (graphite_loop_normal_form): Use gcc_assert.
507         (scan_tree_for_params): Use CASE_CONVERT.
508         (phi_node_is_iv, bb_contains_non_iv_scalar_phi_nodes): New.
509         (build_scop_conditions_1): Call bb_contains_non_iv_scalar_phi_nodes.
510         Use gcc_assert.  Discard scops that contain unhandled cases.
511         (build_scop_conditions): Return a boolean status for unhandled cases.
512         (strip_mine_profitable_p): Print the loop number, not its depth.
513         (is_interchange_valid): Pass the depth of the loop nest, don't
514         recompute it wrongly.
515         (graphite_trans_bb_block): Same.
516         (graphite_trans_bb_block): Print tentative of loop blocking.
517         (graphite_trans_scop_block): Do not print that the loop has been
518         blocked.
519         (graphite_transform_loops): Do not handle scops that contain condition
520         scalar phi nodes.
521
522 2009-01-07  H.J. Lu  <hongjiu.lu@intel.com>
523
524         AVX Programming Reference (December, 2008)
525         * config/i386/avxintrin.h (_mm256_stream_si256): New.
526         (_mm256_stream_pd): Likewise.
527         (_mm256_stream_ps): Likewise.
528
529         * config/i386/i386.c (ix86_builtins): Add IX86_BUILTIN_MOVNTDQ256,
530         IX86_BUILTIN_MOVNTPD256 and IX86_BUILTIN_MOVNTPS256.
531         (ix86_special_builtin_type): Add VOID_FTYPE_PV4DI_V4DI.
532         (bdesc_special_args): Add __builtin_ia32_movntdq256,
533         __builtin_ia32_movntpd256 and __builtin_ia32_movntps256.
534         (ix86_init_mmx_sse_builtins): Handle VOID_FTYPE_PV4DI_V4DI.
535         (ix86_expand_special_args_builtin): Likewise.
536
537         * config/i386/sse.md (AVXMODEDI): New.
538         (avx_movnt<mode>): Likewise.
539         (avx_movnt<mode>): Likewise.
540         (<sse>_movnt<mode>): Remove AVX support.
541         (sse2_movntv2di): Likewise.
542
543 2009-01-07  Richard Guenther  <rguenther@suse.de>
544
545         PR middle-end/38751
546         * fold-const.c (extract_muldiv): Remove obsolete comment.
547         (fold_plusminus_mult_expr): Undo MINUS_EXPR
548         to PLUS_EXPR canonicalization for the canonicalization.
549
550 2009-01-07  Gerald Pfeifer  <gerald@pfeifer.com>
551
552         * doc/install.texi (alpha*-dec-osf*): Remove note on 32-bit
553         hosted cross-compilers generating less efficient code.
554
555 2009-01-06  Richard Sandiford  <rdsandiford@googlemail.com>
556
557         * function.h (rtl_data): Add a dbr_scheduled_p field.
558         * reorg.c (dbr_schedule): Set it.
559         (gate_handle_delay_slots): Check it.
560         * config/mips/mips.c (mips_base_delayed_branch): Delete.
561         (mips_reorg): Check flag_delayed_branch instead of
562         mips_base_delayed_branch.
563         (mips_override_options): Don't set mips_base_delayed_branch
564         or flag_delayed_branch.
565
566 2009-01-06  Richard Sandiford  <rdsandiford@googlemail.com>
567
568         PR rtl-optimization/38426.
569         * ira.c (ira): Set current_function_is_leaf earlier.
570
571 2009-01-06  Jakub Jelinek  <jakub@redhat.com>
572
573         PR rtl-optimization/38722
574         * combine.c (try_combine): Don't modify PATTERN (i3) and notes
575         too early, only set a flag and modify after last possible
576         undo_all point.
577
578 2009-01-06  Janis Johnson  <janis187@us.ibm.com>
579
580         PR c/34252
581         * ginclude/float.h: Rename DECnn_DEN to DECnn_SUBNORMAL_MIN.
582         * real.c (decimal_single_format): Correct values of emin and emax.
583         (decimal_double_format): Ditto.
584         (decimal_quad_format): Ditto.
585         * c-cppbuiltin.c (builtin_define_decimal_float_constants): Adjust
586         computation of DECnn_MIN and DECnn_MAX for corrected values of
587         emin and emax.  Define __DECnn_SUBNORMAL_MIN__ instead of
588         __DECnn_MIN__, and adjust its computation for the corrected value
589         of emin.
590
591 2009-01-06  Jan Hubicka  <jh@suse.cz>
592
593         PR target/38744
594         * i386.c (ix86_expand_call): Use ARRAY_SIZE.
595
596 2009-01-06  Gerald Pfeifer  <gerald@pfeifer.com>
597
598         * doc/contrib.texi (Contributors): Slightly adjust the end note.
599         Add Robert Clark to the list of testers.
600
601 2009-01-06  Jan Hubicka  <jh@suse.cz>
602             Kai Tietz <kai.tietz@onevision.com>
603
604         * i386.md (*msabi_syvabi): Add SSE regs clobbers.
605         * i386.c (ix86_expand_call): Add clobbers.
606
607 2009-01-06  Jan Hubicka  <jh@suse.cz>
608             Kai Tietz <kai.tietz@onevision.com>
609
610         * i386.h (CONDITIONAL_CALL_USAGE): SSE regs are not used for w64 ABI.
611         * i386.c (struct ix86_frame): Add padding0 and nsseregs.
612         (ix86_nsaved_regs): Count only general purpose regs.
613         (ix86_nsaved_sseregs): New.
614         (ix86_compute_frame_layout): Update nsseregs; set preferred alignment
615         to 16 for w64; compute padding and size of sse reg save area.
616         (ix86_emit_save_regs, ix86_emit_save_regs_using_mov): Save only
617         general purpose regs.
618         (ix86_emit_save_sse_regs_using_mov): New.
619         (ix86_expand_prologue): Save SSE regs if needed.
620         (ix86_emit_restore_regs_using_mov): Use only general purpose regs.
621         (ix86_emit_restore_sse_regs_using_mov): New.
622         (ix86_expand_epilogue): Save SSE regs if needed.
623
624 2009-01-06  Jan Hubicka  <jh@suse.cz>
625             Kai Tietz <kai.tietz@onevision.com>
626
627         * i386.h (ACCUMULATE_OUTGOING_ARGS): Enable for MSABI
628         * i386.c (init_cumulative_args): Disallow calls of MSABI functions
629         when accumulate outgoing args is off.
630
631 2009-01-06  H.J. Lu  <hongjiu.lu@intel.com>
632
633         PR bootstrap/38742
634         * ira-color.c (ira_reuse_stack_slot): Check ENABLE_IRA_CHECKING
635         before using pseudos_have_intersected_live_ranges_p.
636
637         * ira-int.h (ira_assert): Always define.
638
639 2009-01-06  H.J. Lu  <hongjiu.lu@intel.com>
640
641         AVX Programming Reference (December, 2008)
642         * config/i386/avxintrin.h (_mm_permute2_pd): Removed.
643         (_mm256_permute2_pd): Likewise.
644         (_mm_permute2_ps): Likewise.
645         (_mm256_permute2_ps): Likewise.
646         * config/i386/i386.md (UNSPEC_VPERMIL2): Likewise.
647         * config/i386/sse.md (avx_vpermil2<mode>3): Likewise.
648
649         * config/i386/i386.c (ix86_builtins): Remove
650         IX86_BUILTIN_VPERMIL2PD, IX86_BUILTIN_VPERMIL2PS,
651         IX86_BUILTIN_VPERMIL2PD256 and IX86_BUILTIN_VPERMIL2PS256.
652         (ix86_builtin_type): Remove V8SF_FTYPE_V8SF_V8SF_V8SI_INT,
653         V4DF_FTYPE_V4DF_V4DF_V4DI_INT, V4SF_FTYPE_V4SF_V4SF_V4SI_INT
654         and V2DF_FTYPE_V2DF_V2DF_V2DI_INT.
655         (bdesc_args): Remove __builtin_ia32_vpermil2pd,
656         __builtin_ia32_vpermil2ps, __builtin_ia32_vpermil2pd256 and
657         __builtin_ia32_vpermil2ps256.
658         (ix86_init_mmx_sse_builtins): Updated.
659         (ix86_expand_args_builtin): Likewise.
660
661 2009-01-05  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
662
663         * pa.c (output_call): Relocate non-jump insns in the delay slot of
664         long absolute calls when generating PA 2.0 code.
665
666 2009-01-05  Vladimir Makarov  <vmakarov@redhat.com>
667
668         PR rtl-optimization/38583
669         * params.h (IRA_MAX_CONFLICT_TABLE_SIZE): New macro.
670
671         * params.def (ira-max-conflict-table-size): New.
672
673         * doc/invoke.texi (ira-max-conflict-table-size): Decribe.
674         
675         * ira.h (ira_conflicts_p): New external definition.
676         
677         * ira-conflicts.c (build_conflict_bit_table): Do not build too big
678         table.  Report this.  Return result of building.
679         (ira_build_conflicts): Use ira_conflicts_p.  Check result of
680         building conflict table.
681
682         * ira-color.c (fast_allocation): Use num instead of ira_allocnos_num.
683         (ira_color): Use ira_conflicts_p.
684         
685         * global.c: Include ira.h.
686         (pseudo_for_reload_consideration_p, build_insn_chain): Use
687         ira_conflicts_p.
688
689         * Makefile.in (global.o): Add ira.h.
690         
691         * ira-build.c (mark_all_loops_for_removal,
692         propagate_some_info_from_allocno): New.
693         (remove_unnecessary_allocnos): Call
694         propagate_some_info_from_allocno.
695         (remove_low_level_allocnos): New.
696         (remove_unnecessary_regions): Add parameter.  Call
697         mark_all_loops_for_removal and remove_low_level_allocnos.  Pass
698         parameter to remove_unnecessary_regions.
699         (ira_build): Remove all regions but root if the conflict table was
700         not built.  Update conflict hard regs for allocnos crossing calls.
701
702         * ira.c (ira_conflicts_p): New global.
703         (ira): Define and use ira_conflicts_p.
704
705         * reload1.c (compute_use_by_pseudos, reload, count_pseudo,
706         count_spilled_pseudo, find_reg, alter_reg, finish_spills,
707         emit_input_reload_insns, delete_output_reload): Use ira_conflicts_p.
708         
709 2009-01-06  Ben Elliston  <bje@au.ibm.com>
710
711         * gengtype-lex.l (YY_NO_INPUT): Define.
712
713 2009-01-05  Andrew Pinski  <andrew_pinski@playstation.sony.com>
714
715         PR c/34911
716         * c-common.c (handle_vector_size_attribute): Also reject
717         BOOLEAN_TYPE types.
718
719 2009-01-05  Sebastian Pop  <sebastian.pop@amd.com>
720
721         PR tree-optimization/38492
722         * graphite.c (rename_map_elt, debug_rename_elt,
723         debug_rename_map_1, debug_rename_map, new_rename_map_elt,
724         rename_map_elt_info, eq_rename_map_elts,
725         get_new_name_from_old_name, bb_in_sese_p): Moved around.
726         (sese_find_uses_to_rename_use): Renamed sese_build_livein_liveouts_use.
727         (sese_find_uses_to_rename_bb): Renamed sese_build_livein_liveouts_bb.
728         (sese_build_livein_liveouts): New.
729         (new_sese, free_sese): New.
730         (new_scop): Call new_sese.
731         (free_scop): Call free_sese.
732         (rename_variables_from_edge, rename_phis_end_scop): Removed.
733         (register_old_new_names): Renamed register_old_and_new_names.
734         (register_scop_liveout_renames, add_loop_exit_phis,
735         insert_loop_close_phis, struct igp,
736         default_liveout_before_guard, add_guard_exit_phis,
737         insert_guard_phis, copy_renames): New.
738         (translate_clast): Call insert_loop_close_phis and insert_guard_phis.
739         (sese_add_exit_phis_edge): Renamed scop_add_exit_phis_edge.
740         (rewrite_into_sese_closed_ssa): Renamed scop_insert_phis_for_liveouts.
741         (scop_adjust_phis_for_liveouts): New.
742         (gloog): Call scop_adjust_phis_for_liveouts.
743
744         * graphite.h (struct sese): Documented.  Added fields liveout,
745         num_ver and livein.
746         (SESE_LIVEOUT, SESE_LIVEIN, SESE_LIVEIN_VER, SESE_NUM_VER): New.
747         (new_sese, free_sese, sese_build_livein_liveouts): Declared.
748         (struct scop): Added field liveout_renames.
749         (SCOP_LIVEOUT_RENAMES): New.
750
751 2009-01-05  Harsha Jagasia  <harsha.jagasia@amd.com>
752
753         PR tree-optimization/38510
754         * graphite.c (recompute_all_dominators): Call mark_irreducible_loops.
755         (translate_clast): Call recompute_all_dominators before
756         graphite_verify.
757         (gloog): Call recompute_all_dominators before graphite_verify.
758
759 2009-01-05  Harsha Jagasia  <harsha.jagasia@amd.com>
760             Jan Sjodin <jan.sjodin@amd.com>
761
762         PR tree-optimization/38500
763         * graphite.c (create_sese_edges): Call fix_loop_structure after
764         splitting blocks.
765
766 2009-01-05  Joel Sherrill <joel.sherrill@oarcorp.com>
767
768         * config.gcc: Add m32r*-*-rtems*.
769         * config/m32r/rtems.h: New file.
770
771 2009-01-05  Ben Elliston  <bje@au.ibm.com>
772
773         * Makefile.in (.po.gmo): Use mkinstalldirs, not test -d || mkdir.
774         (.po.pox): Likewise.
775         (po/gcc.pot): Likewise.
776
777 2009-01-04  David S. Miller  <davem@davemloft.net>
778
779         * config/sparc/sparc.h (SECONDARY_MEMORY_NEEDED_RTX): Delete.
780         (STARTING_FRAME_OFFSET): Always set to zero.
781
782 2009-01-04  Richard Sandiford  <rdsandiford@googlemail.com>
783
784         * tree.def (LSHIFT_EXPR, RSHIFT_EXPR): Add commentary.
785         * tree-cfg.c (verify_gimple_assign_binary): Allow shifts of
786         fixed-point types, and vectors of the same.
787
788 2009-01-04  Richard Sandiford  <rdsandiford@googlemail.com>
789
790         * config/mips/sync.md (*mb_barrier): Rename to...
791         (*memory_barrier): ...this.
792
793 2009-01-04  Jonathan Wakely  <jwakely.gcc@gmail.com>
794
795         * doc/extend.texi (Function Attributes): Move @cindex after @item
796         for 'artificial' and 'flatten'. Fix grammar for 'externally_visible'
797         and put in alphabetical order. Fix 'target' name and put in order.
798         * doc/invoke.texi (-Wstrict-null-sentinel, -fipa-matrix-reorg): Fix
799         typos.
800
801 2009-01-04  Uros Bizjak  <ubizjak@gmail.com>
802
803         * config/s390/s390.md (UNSPEC_MB): Rename from UNSPECV_MB.
804         (memory_barrier): Expand as unspec instead of unspec_volatile.
805         Remove mem:BLK from insn operands.  Use Pmode scratch register.
806         (*memory_barrier): Define as unspec instead of unspec_volatile.
807         Use (match_dup 0) as input operand.
808
809         * config/sparc/sparc.md (UNSPEC_MEMBAR): Rename from UNSPECV_MEMBAR.
810         * config/sparc/sync.md (memory_barrier): Expand as unspec instead of
811         unspec_volatile.  Remove mem:BLK from insn operands.  Use Pmode
812         scratch register.  Remove operand 1.
813         (*stbar): Define as unspec instead of unspec_volatile.
814         Use (match_dup 0) as input operand, remove (const_int 8).
815         (*membar): Define as unspec instead of unspec_volatile.
816         Use (match_dup 0) as input operand, remove input operand 2.
817
818         * config/xtensa/xtensa.md (UNSPEC_MEMW): Rename from UNSPECV_MEMW.
819         (memory_barrier): Expand as unspec instead of unspec_volatile.
820         Remove mem:BLK from insn operands.  Use Pmode scratch register.
821         (*memory_barrier): Define as unspec instead of unspec_volatile.
822         Use (match_dup 0) as input operand.
823
824         * config/ia64/sync.md (memory_barrier): Redefine as expander pattern.
825         Remove mem:BLK from insn operands.  Use Pmode scratch register.
826         Set volatile flag on operand 0.
827         (*memory_barrier): New insn pattern.
828
829         * config/rs6000/sync.md (memory_barrier): Remove mem:BLK from
830         insn operands.
831         (*memory_barrier): Use (match_dup 0) as input operand.
832
833         * config/mips/sync.md (memory_barrier): Redefine as expander pattern.
834         Remove mem:BLK from insn operands.  Use Pmode scratch register.
835         Set volatile flag on operand 0.
836         (*mb_internal): New insn pattern.
837
838         * config/alpha/sync.md (*memory_barrier): Rename from *mb_internal.
839
840 2009-01-04  Steven Bosscher  <steven@gcc.gnu.org>
841
842         PR middle-end/38586
843         * function.c (struct temp_slot): Move to the section of the file
844         that deals with temp slots.  Remove field 'address'.
845         (temp_slot_address_table): New hash table of address -> temp slot.
846         (struct temp_slot_address_entry): New struct, items for the table.
847         (temp_slot_address_compute_hash, temp_slot_address_hash,
848         temp_slot_address_eq, insert_temp_slot_address): Support functions
849         for the new table.
850         (find_temp_slot_from_address): Rewrite to use the new hash table.
851         (remove_unused_temp_slot_addresses): Remove addresses of temp
852         slots that have been made available.
853         (remove_unused_temp_slot_addresses_1): Call-back for htab_traverse,
854         worker function for remove_unused_temp_slot_addresses.
855         (assign_stack_temp_for_type): Don't clear the temp slot address list.
856         Add the temp slot address to the address -> temp slot map.
857         (update_temp_slot_address): Update via insert_temp_slot_address.
858         (free_temp_slots): Call remove_unused_temp_slot_addresses.
859         (pop_temp_slots): Likewise.
860         (init_temp_slots): Allocate the address -> temp slot map, or empty
861         the map if it is already allocated.
862         (prepare_function_start): Initialize temp slot processing.
863
864 2009-01-04  Steven Bosscher  <steven@gcc.gnu.org>
865
866         PR middle-end/38584
867         * cfgexpand.c (estimate_stack_frame_size): Simplify the estimate:
868         Calculate the size of all stack vars assuming no packing of stack
869         vars will happen, replacing a quadratic algorithm with a linear one.
870
871 2009-01-03  Jakub Jelinek  <jakub@redhat.com>
872
873         PR target/38707
874         * expmed.c (store_bit_field_1): Don't modify op0 if movstrict insn
875         can't be used.
876
877 2009-01-03  Diego Novillo  <dnovillo@google.com>
878
879         * doc/contrib.texi: Update contributions.
880
881 2009-01-03  Jakub Jelinek  <jakub@redhat.com>
882
883         PR c++/38705
884         * builtins.c (fold_builtin_memory_op): Give up if either operand
885         is volatile.  Set srctype or desttype to non-qualified version
886         of the other type.
887
888         PR c/38700
889         * builtins.c (fold_builtin_expect): Only check DECL_WEAK for VAR_DECLs
890         and FUNCTION_DECLs.
891
892 2009-01-02  Kenneth Zadeck <zadeck@naturalbridge.com>
893
894         PR rtl-optimization/35805
895         * df-problems.c (df_lr_finalize): Add recursive call to resolve lr
896         problem if fast dce is able to remove any instructions.
897         * dce.c (dce_process_block): Fix dump message.
898         
899 2009-01-02  Mark Mitchell  <mark@codesourcery.com>
900
901         PR 33649
902         * tree-ssa-pre.c (compute_antic): Correct loop bounds.
903
904 2009-01-02  Jakub Jelinek  <jakub@redhat.com>
905
906         PR middle-end/38690
907         * tree-flow.h (op_code_prio, op_prio): New prototypes.
908         * tree-pretty-print.c (op_code_prio): New function.
909         (op_prio): No longer static.  Use op_code_prio.
910         * gimple-pretty-print.c (dump_unary_rhs, dump_binary_rhs):
911         Use op_prio and op_code_prio to determine if () should be
912         printed around operand(s) or not.
913
914         * gimple-pretty-print.c (dump_unary_rhs, dump_binary_rhs,
915         dump_gimple_call, dump_gimple_switch, dump_gimple_cond,
916         dump_gimple_label, dump_gimple_try, dump_symbols, dump_gimple_phi,
917         dump_gimple_mem_ops, dump_bb_header, dump_bb_end, pp_cfg_jump): Use
918         pp_character instead of pp_string for single letter printing.
919
920 2009-01-02  Richard Sandiford  <rdsandiford@googlemail.com>
921
922         * doc/extend.texi: Fix '#pragma GCC option' typo.
923
924 2009-01-02 Richard Guenther <rguenther@suse.de>
925
926         * doc/install.texi (--enable-checking): Mention different
927         default for stage1.
928         (--enable-stage1-checking): Document.
929
930 2009-01-01  Andrew Pinski  <pinskia@gmail.com>
931
932         PR middle-end/30142
933         * tree-cfg.c (verify_expr): Add INDIRECT_REF case.  Change MODIFY_EXPR
934         case to be an error.
935
936 2009-01-02  Ben Elliston  <bje@au.ibm.com>
937
938         * config/fp-bit.h (pack_d): Constify argument.
939         * config/fp-bit.c (makenan): Constify return type. Remove casts.
940         (isnan): Constify argument.
941         (isinf): Likewise.
942         (iszero): Likewise.
943         (pack_d): Likewise.
944         (_fpadd_parts): Constify return type.
945         (_fpmul_parts): Likewise.
946         (_fpdiv_parts): Likewise.
947
948 2009-01-01  Jakub Jelinek  <jakub@redhat.com>
949
950         PR c/36489
951         * c-typeck.c (add_pending_init): Add IMPLICIT argument.  Only
952         warn about overwriting initializer with side-effects or
953         -Woverride-init if !IMPLICIT.
954         (output_init_element): Likewise.  Pass IMPLICIT down to
955         add_pending_init.
956         (process_init_element): Add IMPLICIT argument.  Pass it down
957         to output_init_element.
958         (push_init_element, pop_init_level, set_designator): Adjust
959         process_init_element callers.
960         (set_nonincremental_init, set_nonincremental_init_from_string):
961         Adjust add_pending_init callers.
962         (output_pending_init_elements): Adjust output_init_element callers.
963         * c-tree.h (process_init_element): Adjust prototype.
964         * c-parser.c (c_parser_initelt, c_parser_initval): Adjust
965         process_init_element callers.