OSDN Git Service

* tracer.c (tracer): Don't take FLAGS argument. Assert we are
[pf3gnuchains/gcc-fork.git] / gcc / ChangeLog
1 2007-03-23  Steven Bosscher  <steven@gcc.gnu.org>
2
3         * tracer.c (tracer): Don't take FLAGS argument.  Assert we are
4         in cfglayout mode.  Don't go into and out of cfglayout mode.
5         Link the blocks in the order of the constructed traces.
6         (rest_of_handle_tracer): Adjust call to tracer.
7         * loop-init.c (rtl_loop_init): Assert we are in cfglayout mode.
8         Don't go into cfglayout mode.
9         (rtl_loop_done): Don't go out of cfglayout mode.
10         * cfglayout.c (relink_block_chain): New function, split out from...
11         (fixup_reorder_chain): ...here.  Remove redundant checking.
12         (cfg_layout_finalize): Don't clear the header, footer, and aux
13         fields here, move the code to do so to relink_block_chain.  Likewise
14         for free_original_copy_tables.
15         * rtl.h (tracer): Update prototype.
16         * bb-reorder.c (reorder_basic_blocks): Don't take FLAGS argument.
17         Assert we are in cfglayout mode.  Don't go into and out of cfglayout
18         mode.  Use relink_block_chain to serialize the CFG according to the
19         new basic block order.  Move targetm.cannot_modify_jumps_p check from
20         here...
21         (gate_handle_reorder_blocks): ...to here.
22         (duplicate_computed_gotos): Move targetm.cannot_modify_jumps_p check
23         from here...
24         (gate_duplicate_computed_gotos): ...to here.
25         (rest_of_handle_reorder_blocks): Don't see if anything has changed,
26         something always changes when going into and out of cfglayout mode.
27         Perform an expensive cfg cleanup while going into cfglayout mode.
28         Always update liveness information on HAVE_conditional_execution
29         targets.  Reserialize the basic blocks and go out of cfglayout mode.
30         * reg-stack.c: Include cfglayout.h.
31         (rest_of_handle_stack_regs): Go into and out of cfglayout mode around
32         the call to reorder_basic_blocks.
33         * basic-block.h (reorder_basic_blocks): Update prototype.
34         (relink_block_chain): New prototype.
35         * passes.c (pass_outof_cfg_layout_mode): Move after cse2.
36
37 Index: tracer.c
38 ===================================================================
39 --- tracer.c    (revision 122857)
40 +++ tracer.c    (working copy)
41 @@ -357,24 +357,25 @@ layout_superblocks (void)
42      }
43  }
44  
45 -/* Main entry point to this file.  FLAGS is the set of flags to pass
46 -   to cfg_layout_initialize().  */
47 +/* Main entry point to this file.  */
48  
49  void
50 -tracer (unsigned int flags)
51 +tracer (void)
52  {
53 +  gcc_assert (current_ir_type () == IR_RTL_CFGLAYOUT);
54 +
55    if (n_basic_blocks <= NUM_FIXED_BLOCKS + 1)
56      return;
57  
58 -  cfg_layout_initialize (flags);
59    mark_dfs_back_edges ();
60    if (dump_file)
61      dump_flow_info (dump_file, dump_flags);
62    tail_duplicate ();
63    layout_superblocks ();
64 +  relink_block_chain (/*stay_in_cfglayout_mode=*/true);
65 +  
66    if (dump_file)
67      dump_flow_info (dump_file, dump_flags);
68 -  cfg_layout_finalize ();
69  
70    /* Merge basic blocks in duplicated traces.  */
71    cleanup_cfg (CLEANUP_EXPENSIVE);
72 @@ -392,7 +393,7 @@ rest_of_handle_tracer (void)
73  {
74    if (dump_file)
75      dump_flow_info (dump_file, dump_flags);
76 -  tracer (0);
77 +  tracer ();
78    reg_scan (get_insns (), max_reg_num ());
79    return 0;
80  }
81 Index: loop-init.c
82 ===================================================================
83 --- loop-init.c (revision 122857)
84 +++ loop-init.c (working copy)
85 @@ -171,12 +171,11 @@ struct tree_opt_pass pass_loop2 =
86  static unsigned int
87  rtl_loop_init (void)
88  {
89 +  gcc_assert (current_ir_type () == IR_RTL_CFGLAYOUT);
90 +  
91    if (dump_file)
92      dump_flow_info (dump_file, dump_flags);
93  
94 -  /* Initialize structures for layout changes.  */
95 -  cfg_layout_initialize (0);
96 -
97    loop_optimizer_init (LOOPS_NORMAL);
98    return 0;
99  }
100 @@ -204,17 +203,9 @@ struct tree_opt_pass pass_rtl_loop_init 
101  static unsigned int
102  rtl_loop_done (void)
103  {
104 -  basic_block bb;
105 -
106    loop_optimizer_finalize ();
107    free_dominance_info (CDI_DOMINATORS);
108  
109 -  /* Finalize layout changes.  */
110 -  FOR_EACH_BB (bb)
111 -    if (bb->next_bb != EXIT_BLOCK_PTR)
112 -      bb->aux = bb->next_bb;
113 -  cfg_layout_finalize ();
114 -
115    cleanup_cfg (CLEANUP_EXPENSIVE);
116    delete_trivially_dead_insns (get_insns (), max_reg_num ());
117    reg_scan (get_insns (), max_reg_num ());
118 Index: cfglayout.c
119 ===================================================================
120 --- cfglayout.c (revision 122858)
121 +++ cfglayout.c (working copy)
122 @@ -634,13 +634,83 @@ reemit_insn_block_notes (void)
123    reorder_blocks ();
124  }
125  \f
126 +
127 +/* Link the basic blocks in the correct order, compacting the basic
128 +   block queue while at it.  This also clears the visited flag on
129 +   all basic blocks.  If STAY_IN_CFGLAYOUT_MODE is false, this function
130 +   also clears the basic block header and footer fields.
131 +
132 +   This function is usually called after a pass (e.g. tracer) finishes
133 +   some transformations while in cfglayout mode.  The required sequence
134 +   of the basic blocks is in a linked list along the bb->aux field.
135 +   This functions re-links the basic block prev_bb and next_bb pointers
136 +   accordingly, and it compacts and renumbers the blocks.  */
137 +
138 +void
139 +relink_block_chain (bool stay_in_cfglayout_mode)
140 +{
141 +  basic_block bb, prev_bb;
142 +  int index;
143 +
144 +  /* Maybe dump the re-ordered sequence.  */
145 +  if (dump_file)
146 +    {
147 +      fprintf (dump_file, "Reordered sequence:\n");
148 +      for (bb = ENTRY_BLOCK_PTR->next_bb, index = NUM_FIXED_BLOCKS;
149 +          bb;
150 +          bb = bb->aux, index++)
151 +       {
152 +         fprintf (dump_file, " %i ", index);
153 +         if (get_bb_original (bb))
154 +           fprintf (dump_file, "duplicate of %i ",
155 +                    get_bb_original (bb)->index);
156 +         else if (forwarder_block_p (bb)
157 +                  && !LABEL_P (BB_HEAD (bb)))
158 +           fprintf (dump_file, "compensation ");
159 +         else
160 +           fprintf (dump_file, "bb %i ", bb->index);
161 +         fprintf (dump_file, " [%i]\n", bb->frequency);
162 +       }
163 +    }
164 +
165 +  /* Now reorder the blocks.  */
166 +  prev_bb = ENTRY_BLOCK_PTR;
167 +  bb = ENTRY_BLOCK_PTR->next_bb;
168 +  for (; bb; prev_bb = bb, bb = bb->aux)
169 +    {
170 +      bb->prev_bb = prev_bb;
171 +      prev_bb->next_bb = bb;
172 +    }
173 +  prev_bb->next_bb = EXIT_BLOCK_PTR;
174 +  EXIT_BLOCK_PTR->prev_bb = prev_bb;
175 +
176 +  /* Then, clean up the aux and visited fields.  */
177 +  FOR_ALL_BB (bb)
178 +    {
179 +      bb->aux = NULL;
180 +      bb->il.rtl->visited = 0;
181 +      if (!stay_in_cfglayout_mode)
182 +       bb->il.rtl->header = bb->il.rtl->footer = NULL;
183 +    }
184 +
185 +  /* Maybe reset the original copy tables, they are not valid anymore
186 +     when we renumber the basic blocks in compact_blocks.  If we are
187 +     are going out of cfglayout mode, don't re-allocate the tables.  */
188 +  free_original_copy_tables ();
189 +  if (stay_in_cfglayout_mode)
190 +    initialize_original_copy_tables ();
191 +  
192 +  /* Finally, put basic_block_info in the new order.  */
193 +  compact_blocks ();
194 +}
195 +\f
196 +
197  /* Given a reorder chain, rearrange the code to match.  */
198  
199  static void
200  fixup_reorder_chain (void)
201  {
202 -  basic_block bb, prev_bb;
203 -  int index;
204 +  basic_block bb;
205    rtx insn = NULL;
206  
207    if (cfg_layout_function_header)
208 @@ -654,9 +724,7 @@ fixup_reorder_chain (void)
209    /* First do the bulk reordering -- rechain the blocks without regard to
210       the needed changes to jumps and labels.  */
211  
212 -  for (bb = ENTRY_BLOCK_PTR->next_bb, index = NUM_FIXED_BLOCKS;
213 -       bb != 0;
214 -       bb = bb->aux, index++)
215 +  for (bb = ENTRY_BLOCK_PTR->next_bb; bb; bb = bb->aux)
216      {
217        if (bb->il.rtl->header)
218         {
219 @@ -684,8 +752,6 @@ fixup_reorder_chain (void)
220         }
221      }
222  
223 -  gcc_assert (index == n_basic_blocks);
224 -
225    NEXT_INSN (insn) = cfg_layout_function_footer;
226    if (cfg_layout_function_footer)
227      PREV_INSN (cfg_layout_function_footer) = insn;
228 @@ -838,42 +904,7 @@ fixup_reorder_chain (void)
229         }
230      }
231  
232 -  /* Put basic_block_info in the new order.  */
233 -
234 -  if (dump_file)
235 -    {
236 -      fprintf (dump_file, "Reordered sequence:\n");
237 -      for (bb = ENTRY_BLOCK_PTR->next_bb, index = NUM_FIXED_BLOCKS;
238 -          bb;
239 -          bb = bb->aux, index++)
240 -       {
241 -         fprintf (dump_file, " %i ", index);
242 -         if (get_bb_original (bb))
243 -           fprintf (dump_file, "duplicate of %i ",
244 -                    get_bb_original (bb)->index);
245 -         else if (forwarder_block_p (bb)
246 -                  && !LABEL_P (BB_HEAD (bb)))
247 -           fprintf (dump_file, "compensation ");
248 -         else
249 -           fprintf (dump_file, "bb %i ", bb->index);
250 -         fprintf (dump_file, " [%i]\n", bb->frequency);
251 -       }
252 -    }
253 -
254 -  prev_bb = ENTRY_BLOCK_PTR;
255 -  bb = ENTRY_BLOCK_PTR->next_bb;
256 -  index = NUM_FIXED_BLOCKS;
257 -
258 -  for (; bb; prev_bb = bb, bb = bb->aux, index ++)
259 -    {
260 -      bb->index = index;
261 -      SET_BASIC_BLOCK (index, bb);
262 -
263 -      bb->prev_bb = prev_bb;
264 -      prev_bb->next_bb = bb;
265 -    }
266 -  prev_bb->next_bb = EXIT_BLOCK_PTR;
267 -  EXIT_BLOCK_PTR->prev_bb = prev_bb;
268 +  relink_block_chain (/*stay_in_cfglayout_mode=*/false);
269  
270    /* Annoying special case - jump around dead jumptables left in the code.  */
271    FOR_EACH_BB (bb)
272 @@ -1179,8 +1210,6 @@ break_superblocks (void)
273  void
274  cfg_layout_finalize (void)
275  {
276 -  basic_block bb;
277 -
278  #ifdef ENABLE_CHECKING
279    verify_flow_info ();
280  #endif
281 @@ -1195,19 +1224,8 @@ cfg_layout_finalize (void)
282  
283  #ifdef ENABLE_CHECKING
284    verify_insn_chain ();
285 -#endif
286 -  FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
287 -  {
288 -    bb->il.rtl->header = bb->il.rtl->footer = NULL;
289 -    bb->aux = NULL;
290 -    bb->il.rtl->visited = 0;
291 -  }
292 -
293 -#ifdef ENABLE_CHECKING
294    verify_flow_info ();
295  #endif
296 -
297 -  free_original_copy_tables ();
298  }
299  
300  /* Checks whether all N blocks in BBS array can be copied.  */
301 Index: rtl.h
302 ===================================================================
303 --- rtl.h       (revision 122857)
304 +++ rtl.h       (working copy)
305 @@ -2259,7 +2259,7 @@ extern bool expensive_function_p (int);
306  /* In cfgexpand.c */
307  extern void add_reg_br_prob_note (rtx last, int probability);
308  /* In tracer.c */
309 -extern void tracer (unsigned int);
310 +extern void tracer (void);
311  
312  /* In var-tracking.c */
313  extern unsigned int variable_tracking_main (void);
314 Index: bb-reorder.c
315 ===================================================================
316 --- bb-reorder.c        (revision 122857)
317 +++ bb-reorder.c        (working copy)
318 @@ -1889,20 +1889,17 @@ verify_hot_cold_block_grouping (void)
319     the set of flags to pass to cfg_layout_initialize().  */
320  
321  void
322 -reorder_basic_blocks (unsigned int flags)
323 +reorder_basic_blocks (void)
324  {
325    int n_traces;
326    int i;
327    struct trace *traces;
328  
329 -  if (n_basic_blocks <= NUM_FIXED_BLOCKS + 1)
330 -    return;
331 +  gcc_assert (current_ir_type () == IR_RTL_CFGLAYOUT);
332  
333 -  if (targetm.cannot_modify_jumps_p ())
334 +  if (n_basic_blocks <= NUM_FIXED_BLOCKS + 1)
335      return;
336  
337 -  cfg_layout_initialize (flags);
338 -
339    set_edge_can_fallthru_flag ();
340    mark_dfs_back_edges ();
341  
342 @@ -1930,10 +1927,11 @@ reorder_basic_blocks (unsigned int flags
343    FREE (traces);
344    FREE (bbd);
345  
346 +  relink_block_chain (/*stay_in_cfglayout_mode=*/true);
347 +
348    if (dump_file)
349      dump_flow_info (dump_file, dump_flags);
350  
351 -  cfg_layout_finalize ();
352    if (flag_reorder_blocks_and_partition)
353      verify_hot_cold_block_grouping ();
354  }
355 @@ -1976,6 +1974,8 @@ insert_section_boundary_note (void)
356  static bool
357  gate_duplicate_computed_gotos (void)
358  {
359 +  if (targetm.cannot_modify_jumps_p ())
360 +    return false;
361    return (optimize > 0 && flag_expensive_optimizations && !optimize_size);
362  }
363  
364 @@ -1990,9 +1990,6 @@ duplicate_computed_gotos (void)
365    if (n_basic_blocks <= NUM_FIXED_BLOCKS + 1)
366      return 0;
367  
368 -  if (targetm.cannot_modify_jumps_p ())
369 -    return 0;
370 -
371    cfg_layout_initialize (0);
372  
373    /* We are estimating the length of uncond jump insn only once
374 @@ -2198,6 +2195,8 @@ partition_hot_cold_basic_blocks (void)
375  static bool
376  gate_handle_reorder_blocks (void)
377  {
378 +  if (targetm.cannot_modify_jumps_p ())
379 +    return false;
380    return (optimize > 0);
381  }
382  
383 @@ -2206,34 +2205,39 @@ gate_handle_reorder_blocks (void)
384  static unsigned int
385  rest_of_handle_reorder_blocks (void)
386  {
387 -  bool changed;
388    unsigned int liveness_flags;
389 +  basic_block bb;
390  
391    /* Last attempt to optimize CFG, as scheduling, peepholing and insn
392       splitting possibly introduced more crossjumping opportunities.  */
393    liveness_flags = (!HAVE_conditional_execution ? CLEANUP_UPDATE_LIFE : 0);
394 -  changed = cleanup_cfg (CLEANUP_EXPENSIVE | liveness_flags);
395 +  cfg_layout_initialize (CLEANUP_EXPENSIVE | liveness_flags);
396  
397    if (flag_sched2_use_traces && flag_schedule_insns_after_reload)
398      {
399        timevar_push (TV_TRACER);
400 -      tracer (liveness_flags);
401 +      tracer ();
402        timevar_pop (TV_TRACER);
403      }
404  
405    if (flag_reorder_blocks || flag_reorder_blocks_and_partition)
406 -    reorder_basic_blocks (liveness_flags);
407 +    reorder_basic_blocks ();
408    if (flag_reorder_blocks || flag_reorder_blocks_and_partition
409        || (flag_sched2_use_traces && flag_schedule_insns_after_reload))
410 -    changed |= cleanup_cfg (CLEANUP_EXPENSIVE | liveness_flags);
411 +    cleanup_cfg (CLEANUP_EXPENSIVE | liveness_flags);
412  
413    /* On conditional execution targets we can not update the life cheaply, so
414       we deffer the updating to after both cleanups.  This may lose some cases
415       but should not be terribly bad.  */
416 -  if (changed && HAVE_conditional_execution)
417 +  if (HAVE_conditional_execution)
418      update_life_info (NULL, UPDATE_LIFE_GLOBAL_RM_NOTES,
419                       PROP_DEATH_NOTES);
420  
421 +  FOR_EACH_BB (bb)
422 +    if (bb->next_bb != EXIT_BLOCK_PTR)
423 +      bb->aux = bb->next_bb;
424 +  cfg_layout_finalize ();
425 +
426    /* Add NOTE_INSN_SWITCH_TEXT_SECTIONS notes.  */
427    insert_section_boundary_note ();
428    return 0;
429 Index: reg-stack.c
430 ===================================================================
431 --- reg-stack.c (revision 122857)
432 +++ reg-stack.c (working copy)
433 @@ -167,6 +167,7 @@
434  #include "recog.h"
435  #include "output.h"
436  #include "basic-block.h"
437 +#include "cfglayout.h"
438  #include "varray.h"
439  #include "reload.h"
440  #include "ggc.h"
441 @@ -3197,8 +3198,17 @@ rest_of_handle_stack_regs (void)
442                         | (flag_crossjumping ? CLEANUP_CROSSJUMP : 0))
443            && (flag_reorder_blocks || flag_reorder_blocks_and_partition))
444          {
445 -          reorder_basic_blocks (0);
446 -          cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_POST_REGSTACK);
447 +         basic_block bb;
448 +
449 +         cfg_layout_initialize (0);
450 +
451 +         reorder_basic_blocks ();
452 +         cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_POST_REGSTACK);
453 +
454 +         FOR_EACH_BB (bb)
455 +           if (bb->next_bb != EXIT_BLOCK_PTR)
456 +             bb->aux = bb->next_bb;
457 +         cfg_layout_finalize ();
458          }
459      }
460    else 
461 Index: basic-block.h
462 ===================================================================
463 --- basic-block.h       (revision 122857)
464 +++ basic-block.h       (working copy)
465 @@ -929,7 +929,7 @@ extern bool control_flow_insn_p (rtx);
466  extern rtx get_last_bb_insn (basic_block);
467  
468  /* In bb-reorder.c */
469 -extern void reorder_basic_blocks (unsigned int);
470 +extern void reorder_basic_blocks (void);
471  
472  /* In dominance.c */
473  
474 @@ -976,6 +976,7 @@ unsigned bb_dom_dfs_out (enum cdi_direct
475  
476  extern edge try_redirect_by_replacing_jump (edge, basic_block, bool);
477  extern void break_superblocks (void);
478 +extern void relink_block_chain (bool);
479  extern void check_bb_profile (basic_block, FILE *);
480  extern void update_bb_profile_for_threading (basic_block, int, gcov_type, edge);
481  extern void init_rtl_bb_info (basic_block);
482 Index: passes.c
483 ===================================================================
484 --- passes.c    (revision 122858)
485 +++ passes.c    (working copy)
486 @@ -666,7 +666,6 @@ init_optimization_passes (void)
487        NEXT_PASS (pass_gcse);
488        NEXT_PASS (pass_jump_bypass);
489        NEXT_PASS (pass_rtl_ifcvt);
490 -      NEXT_PASS (pass_outof_cfg_layout_mode);
491        NEXT_PASS (pass_tracer);
492        /* Perform loop optimizations.  It might be better to do them a bit
493          sooner, but we want the profile feedback to work more
494 @@ -685,6 +684,7 @@ init_optimization_passes (void)
495        NEXT_PASS (pass_web);
496        NEXT_PASS (pass_cse2);
497        NEXT_PASS (pass_rtl_fwprop_addr);
498 +      NEXT_PASS (pass_outof_cfg_layout_mode);
499        NEXT_PASS (pass_life);
500        NEXT_PASS (pass_combine);
501        NEXT_PASS (pass_if_after_combine);
502
503 2007-03-23  Joseph Myers  <joseph@codesourcery.com>
504
505         * config/mips/mips.md (type, hazard, *movdi_32bit,
506         *movdi_gp32_fp64, *movdi_64bit, *movsi_internal, movcc,
507         *movhi_internal, *movqi_internal, *movsf_hardfloat,
508         *movdf_hardfloat_64bit, *movdf_hardfloat_32bit, *movdf_softfloat,
509         movv2sf_hardfloat_64bit, load_df_low, load_df_high, store_df_high,
510         mthc1, mfhc1): Change xfer instruction type to mfc and mtc, as
511         applicable.
512         (movcc): Change first xfer to multi.
513         * config/mips/24k.md, config/mips/4100.md, config/mips/4300.md,
514         config/mips/5000.md, config/mips/5400.md, config/mips/5500.md,
515         config/mips/5k.md, config/mips/7000.md, config/mips/9000.md,
516         config/mips/generic.md: Change reservations using "xfer" to use
517         "mfc,mtc".
518         * config/mips/sb1.md (ir_sb1_mtxfer): Use "mtc" instead of
519         using match_operand.
520         (ir_sb1_mfxfer): Use "mfc" instead of using match_operand.
521         * config/mips/sr71k.md (ir_sr70_xfer_from): Use "mfc" instead of
522         examining mode.
523         (ir_sr70_xfer_to): Use "mtc" instead of examining mode.
524
525 2007-03-22  Richard Henderson  <rth@redhat.com>
526
527         * config/i386/i386.c: Remove unnecessary function declarations.
528         Move targetm definition, and all related macros, to the end of
529         the file.  Resort some functions to put definitions before uses.
530         (ix86_attribute_table): Make static.  Move to end of file.
531         (ix86_gimplify_va_arg): Make static.
532
533 2007-03-22  Richard Henderson  <rth@redhat.com>
534
535         * config/i386/i386.c (ix86_function_regparm): Early exit for 64-bit;
536         don't increase local_regparm with force_align_arg_pointer check.
537         (ix86_function_sseregparm): Assert 32-bit.
538         (type_has_variadic_args_p): New.
539         (ix86_return_pops_args): Early exit for 64-bit.  Reindent; use
540         type_has_variadic_args_p.
541         (ix86_function_arg_regno_p): Use == 0 instead of ! test for eax.
542         (init_cumulative_args): Remove TARGET_DEBUG_ARG.  Remove zero_cum;
543         use memset instead.  Do maybe_vaarg check first; skip attribute
544         tests if true; skip attribute tests for 64-bit.
545         (construct_container): Remove TARGET_DEBUG_ARG.
546         (function_arg_advance_32, function_arg_advance_64): Split out ...
547         (function_arg_advance): ... from here.
548         (function_arg_32, function_arg_64): Split out ...
549         (function_arg): ... from here.
550         (ix86_pass_by_reference): Tidy.
551         (ix86_function_value_regno_p): Rearrange w/ switch on regno.
552         (function_value_32): New, from parts of ix86_function_value
553         and ix86_value_regno.
554         (function_value_64): New, from parts of ix86_function_value
555         and ix86_libcall_value.
556         (ix86_function_value_1): New.
557         (ix86_function_value, ix86_libcall_value): Use it.
558         (return_in_memory_32, return_in_memory_64): Split out ...
559         (ix86_return_in_memory): ... from here.
560         (ix86_struct_value_rtx): Skip for 64-bit.
561         (ix86_libcall_value, ix86_value_regno): Remove.
562         (setup_incoming_varargs_64): Split out ...
563         (ix86_setup_incoming_varargs): ... from here.
564         (ix86_va_start): Remove TARGET_DEBUG_ARG.
565         (legitimate_address_p, legitimize_address): Remove TARGET_DEBUG_ADDR.
566         * config/i386/i386-protos.h (ix86_function_value): Remove.
567         * config/i386/i386.opt (TARGET_DEBUG_ADDR, TARGET_DEBUG_ARG): Remove.
568
569 2007-03-22  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
570
571         PR other/23572
572         * c-lex.c (interpret_float): On overflow, emit pedantic warning if
573         infinities not supported, otherwise emit warning if -Woverflow. On
574         underflow, emit warning if -Woverflow.
575         * real.c (real_from_string): Return -1 if underflow, +1 if overflow
576         and 0 otherwise.
577         * real.h (real_from_string): Update declaration
578         
579 2007-03-22  Kai Tietz  <kai.tietz@onevision.com>
580             Richard Henderson  <rth@redhat.com>
581
582         * defaults.h (OUTGOING_REG_PARM_STACK_SPACE): Provide default.
583         * calls.c (compute_argument_block_size, expand_call,
584         emit_library_call_value_1): Don't ifdef OUTGOING_REG_PARM_STACK_SPACE.
585         * expr.c (block_move_libcall_safe_for_call_parm): Likewise.
586         * function.c (STACK_DYNAMIC_OFFSET): Likewise.
587         * doc/tm.texi (OUTGOING_REG_PARM_STACK_SPACE): Update.
588         * config/alpha/unicosmk.h, config/bfin/bfin.h, config/iq2000/iq2000.h,
589         config/mips/mips.h, config/mn10300/mn10300.h, config/mt/mt.h,
590         config/pa/pa.h, config/rs6000/rs6000.h, config/score/score.h,
591         config/spu/spu.h, config/v850/v850.h (OUTGOING_REG_PARM_STACK_SPACE):
592         Set to 1.
593
594 2007-03-22  Joseph Myers  <joseph@codesourcery.com>
595
596         * c-incpath.c (add_sysroot_to_chain): New.
597         (merge_include_chains): Add sysroot argument.  Call
598         add_sysroot_to_chain if sysrooted.
599         (register_include_chains): Update call to merge_include_chains.
600         * doc/cppopts.texi: Document use of '=' in include directory
601         arguments.
602
603 2007-03-22  Uros Bizjak  <ubizjak@gmail.com>
604
605         * config/i386/i386.md (cmp<mode>): Rename from cmpsf and cmpdf.
606         Macroize expander using SSEMODEF mode macro.  Use SSE_FLOAT_MODE_P.
607         (*cmpfp_<mode>): Rename from *cmpfp_sf and *cmpfp_df. Macroize
608         insn pattern using X87MODEF12 mode macro.
609         
610 2007-03-21  Seongbae Park <seongbae.park@gmail.com>
611
612         * regmove.c (regmove_optimize): Use reg_mentioned_p
613         instead of reg_overlap_mentioned_p for DST.
614
615 2007-03-21  Mike Stump  <mrs@apple.com>
616
617         * c.opt: Fixup for Objective-C/C++.
618
619 2007-03-21  Steve Ellcey  <sje@cup.hp.com>
620
621         * explow.c (convert_memory_address): Fold memory reference when
622         POINTERS_EXTEND_UNSIGNED < 0
623
624 2007-03-21  Richard Henderson  <rth@redhat.com>
625
626         PR target/31245
627         * config/i386/emmintrin.h (__m128i, __m128d): Mark may_alias.
628         * config/i386/mmintrin.h (__m64): Likewise.
629         * config/i386/xmmintrin.h (__m128): Likewise.
630
631 2007-03-21  Richard Sandiford  <richard@codesourcery.com>
632
633         * config/vxworks.h (VXWORKS_ADDITIONAL_CPP_SPEC): Remove -D options.
634         (VXWORKS_OS_CPP_BUILTINS): Define.
635         * config/i386/vxworks.h (VXWORKS_CPU_DEFINE): Fold into...
636         (TARGET_OS_CPP_BUILTINS): ...here.  Use VXWORKS_OS_CPP_BUILTINS.
637
638 2007-03-21  Richard Sandiford  <richard@codesourcery.com>
639
640         * rtl.h (constant_pool_reference_p): Delete.
641         (find_constant_src): Declare.
642         * rtlanal.c (find_constant_src): New function.
643         * simplify-rtx.c (constant_pool_reference_p): Delete.
644         * config/i386/i386.md: Use find_constant_src instead of
645         constant_pool_reference_p/avoid_constant_pool_reference pairs.
646
647 2007-03-21  Richard Sandiford  <richard@codesourcery.com>
648
649         * doc/invoke.texi (-fpie, -fPIE): Document __pie__ and __PIE__.
650         * c-cppbuiltin.c (c_cpp_builtins): Define them.
651
652 2007-03-20  Mark Mitchell  <mark@codesourcery.com>
653
654         * config/arm/elf.h (TARGET_ASM_DESTRUCTOR): Define.
655         * config/arm/arm.c (arm_elf_asm_cdtor): New function.
656         (arm_elf_asm_constructor): Use it.
657         (arm_elf_asm_destructor): New function.
658
659 2007-03-20  Bernd Schmidt  <bernd.schmidt@analog.com>
660
661         * jump.c (mark_jump_label): Treat SEQUENCE specially.
662
663 2007-03-20  Nathan Sidwell  <nathan@codesourcery.com>
664
665         * config/vxlib.c (tls_delete_hook): Use TCB for kernel tasks.
666
667 2007-03-19  Andrew Haley  <aph@redhat.com>
668
669         PR tree-optimization/31264
670         * tree-vrp.c (register_edge_assert_for_1): Don't look though
671         VIEW_CONVERT_EXPRs.
672
673 2007-03-19  Paolo Bonzini  <bonzini@gnu.org>
674
675         PR rtl-optimization/30907
676         * fwprop.c (forward_propagate_into): Never propagate inside a loop.
677         (fwprop_init): Always call loop_optimizer_initialize.
678         (fwprop_done): Always call loop_optimizer_finalize.
679         (fwprop): We always have loop info now.
680         (gate_fwprop_addr): Remove.
681         (pass_fwprop_addr): Use gate_fwprop as gate.
682
683         PR rtl-optimization/30841
684         * df-problems.c (df_ru_local_compute, df_rd_local_compute,
685         df_chain_alloc): Call df_reorganize_refs unconditionally.
686         * df-scan.c (df_rescan_blocks, df_reorganize_refs): Change
687         refs_organized to refs_organized_size.
688         (df_ref_create_structure): Use refs_organized_size instead of
689         bitmap_size if refs had been organized, and keep refs_organized_size
690         up-to-date.
691         * df.h (struct df_ref_info): Change refs_organized to
692         refs_organized_size.
693         (DF_DEFS_SIZE, DF_USES_SIZE): Use refs_organized_size instead of
694         bitmap_size.
695
696 2007-03-19  Mark Mitchell  <mark@codesourcery.com>
697
698         * except.c (output_function_exception_table): Do not reference the
699         EH personality routine for functions that do not require an
700         exception table.
701
702 2007-03-20  Jakub Jelinek  <jakub@redhat.com>
703
704         PR c/30762
705         * c-typeck.c (convert_for_assignment): Call comptypes for
706         RECORD_TYPE or UNION_TYPE.
707
708         PR inline-asm/30505
709         * reload1.c (reload): Do invalid ASM checking after
710         cleanup_subreg_operands.
711
712 2007-03-19  Jeff Law  <law@redhat.com>
713
714         * tree-cfg.c (find_taken_edge): Tighten conditions for
715         optimizing computed gotos.
716
717 2007-03-19  Michael Matz  <matz@suse.de>
718
719         * builtins.c (expand_builtin_sync_operation,
720         expand_builtin_compare_and_swap,
721         expand_builtin_lock_test_and_set): Care for extending CONST_INTs
722         correctly.
723
724         * config/i386/sync.md (sync_double_compare_and_swapdi_pic,
725         sync_double_compare_and_swap_ccdi_pic): Use "SD" as constraint
726         for operand 3.
727
728 2007-03-19  Andreas Krebbel  <krebbel1@de.ibm.com>
729
730         * doc/tm.texi: Add brackets around the return type of
731         TARGET_SECONDARY_RELOAD.
732
733 2007-03-19  Andrew Pinski  <andrew_pinski@playstation.sony.com>
734         Richard Guenther  <rguenther@suse.de>
735
736         PR tree-optimization/31254
737         * tree-ssa-forwprop.c (forward_propagate_addr_expr_1):
738         Use handled_component_p () where appropriate.  Continue
739         propagating into the rhs if we propagated into an INDIRECT_REF
740         on the lhs.
741
742 2007-03-19  Andreas Krebbel  <krebbel1@de.ibm.com>
743
744         * config/s390/s390.md (op_type attribute): RRR instruction type added.
745         (FP, DFP, SD_SF, DD_DF, TD_TF): New mode macros.
746         (xde, xdee): Mode attributes adjusted to support DFP modes.
747         (RRer, f0, op1, Rf, bt, bfp, HALF_TMODE): New mode attributes added.
748         ("cmp<mode>", "*cmp<mode>_css_0", "*cmp<mode>_ccs", TF move splitters,
749         DF move splitters, "floatdi<mode>2", "add<mode>3", "*add<mode>3", 
750         "*add<mode>3_cc", "*add<mode>3_cconly", "sub<mode>3", "*sub<mode>3",
751         "*sub<mode>3_cc", "*sub<mode>3_cconly", "mul<mode>3", "*mul<mode>3",
752         "div<mode>3", "*div<mode>3", "*neg<mode>2_nocc", "*abs<mode>2_nocc",
753         "*negabs<mode>2_nocc", "copysign<mode>3"): Adjusted to support DFP 
754         numbers.
755         ("*movtf_64", "*movtf_31", "*movdf_64dfp", "*movdf_64", "*movdf_31",
756         "movsf"): Insn definitions removed.
757         ("*mov<mode>_64", "*mov<mode>_31", "mov<mode>", "*mov<mode>_64dfp",
758         "*mov<mode>_64", "*mov<mode>_31", "fix_trunc<DFP:mode>di2",
759         "trunctddd2", "truncddsd2", "extendddtd2", "extendsddd2"): Insn
760         definitions added.
761         ("fixuns_truncdddi2", "fixuns_trunctddi2", "mov<mode>",
762         "reload_in<mode>", "reload_out<mode>"): Expander added.
763         ("movtf", "movdf", "reload_outtf", "reload_outdf", "reload_intf"):
764         Expander removed.
765
766 2007-03-19  Andreas Krebbel  <krebbel1@de.ibm.com>
767
768         * config/s390/s390.md: Only non-functional changes.  Renamed
769         FPR mode macro to BFP all over the file.
770
771 2007-03-19  Andreas Krebbel  <krebbel1@de.ibm.com>
772
773         * config/s390/s390.md (UNSPEC_COPYSIGN): New constant.
774         (op_type attribute): RRF instruction type added.
775         (fT0): New mode attribute.
776         ("*movdi_64dfp", "*movdf_64dfp", "*neg<mode>2_nocc", "*abs<mode>2_nocc",
777         "*negabs<mode>2_nocc", "copysign<mode>3"): Insn definitions added.
778         * config/s390/s390.h (SECONDARY_MEMORY_NEEDED): Due to a new instruction
779         no secondary memory is needed when moving DFmode values between GPRs
780         and FPRs.
781
782 2007-03-19  Andreas Krebbel  <krebbel1@de.ibm.com>
783
784         * config/s390/s390.opt ("mhard-float", "msoft-float"): Bit value
785         inverted and documentation adjusted.
786         ("mhard-dfp", "msoft-dfp"): New options.
787         * config/s390/s390.c (s390_handle_arch_option): New architecture
788         switch: z9-ec.
789         (override_options): Sanity checks for the new options added.
790         * config.gcc: New architecture switch: z9-ec.
791         * config/s390/s390.h (processor_flags): PF_DFP added.
792         (TARGET_CPU_DFP, TARGET_DFP): Macro definitions added.
793         (TARGET_DEFAULT): Due to the s390.opt changes hard float is enabled
794         when the bit is NOT set so remove it from the defaults.
795
796 2007-03-19  Andreas Krebbel  <krebbel1@de.ibm.com>
797
798         * genemit.c (main): Print include statement for dfp.h.
799         * dfp.h (decimal_real_arithmetic): Hide prototype if tree_code enum
800         is not available.
801
802 2007-03-19  Hans-Peter Nilsson  <hp@axis.com>
803
804         * config/cris/t-elfmulti (EXTRA_MULTILIB_PARTS): Do not define here.
805
806 2007-03-19  Kaz Kojima  <kkojima@gcc.gnu.org>
807
808         PR target/31022
809         * config/sh/sh.c (sh_adjust_cost): Use the result of single_set
810         instead of PATTERN.
811
812 2007-03-18  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
813
814         * pa.c (output_deferred_plabels, output_bb, output_millicode_call,
815         attr_length_call, output_call, output_indirect_call): Cleanup
816         formatting of targetm calls.
817
818 2007-03-19  Hans-Peter Nilsson  <hp@axis.com>
819
820         * config/cris/cris.h (HANDLE_PRAGMA_PACK_PUSH_POP): Define to 1.
821
822 2007-03-18  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
823
824         * pa.md: Add fpstore_load and store_fpload instruction types.  Provide
825         reservation, bypass and anti-bypass descriptions for these instructions.
826         Update move patterns.
827         * pa.c (hppa_fpstore_bypass_p): Check for both TYPE_FPSTORE_LOAD and
828         TYPE_FPSTORE.
829         
830 2007-03-18  Dorit Nuzman  <dorit@il.ibm.com>
831
832         * tree-vect-transform.c (get_initial_def_for_induction): Replace
833         GET_MODE_NUNITS with TYPE_VECTOR_SUBPARTS.
834         (get_initial_def_for_reduction): Likewise.
835
836 2007-03-16  Daniel Berlin  <dberlin@dberlin.org>
837
838         Fix PR tree-optimization/29922
839         * tree-ssa-pre.c (bb_bitmap_sets): Remove RVUSE_* members.
840         (get_representative): Removed.
841         (value_dies_in_block_x): Update for rvuse removal.
842         (valid_in_sets): Update for renaming of vuses_dies_in_block_x.
843         (compute_antic_aux): Handle when PHI nodes appear in
844         non-single-successors. 
845         (dump_bitmap_of_names): Removed.
846         (compute_antic_safe): Renamed and removed rvuse calculation.
847         Calculate only antic safe.
848         (insert_into_preds_of_block): Remove assert.
849         (execute_pre): Update for renamed functions.
850         (defer_or_phi_translate_block): New function.
851         
852 2007-03-17  Kazu Hirata  <kazu@codesourcery.com>
853
854         * config/arm/arm.c, config/arm/thumb2.md, config/m68k/m68k.c,
855         config/spu/spu.c, omega.h, passes.c, predict.c: Fix comment
856         typos.
857         * doc/cpp.texi, doc/extend.texi, doc/invoke.texi: Fix typos.
858         Follow spelling conventions.
859
860         * tree-data-ref.h: Remove the prototype for analyze_array.
861
862 2007-03-17  Dorit Nuzman  <dorit@il.ibm.com>
863
864         PR tree-optimization/31041
865         * tree-vect-transform.c (get_initial_def_for_induction): Call
866         force_gimple_operand.
867         
868 2007-03-17  Olga Golovanevsky  <olga@il.ibm.com>
869   
870         * ipa-type-escape.c (look_for_casts) : Revert code to use
871         handled_component_p due to ada test a-numaux.adb.
872
873 2007-03-17  Kazu Hirata  <kazu@codesourcery.com>
874
875         * final.c (final_scan_insn): Alter the condition of a
876         conditional trap if we have nonstandard CC.
877
878 2007-03-16  Alexandre Oliva  <aoliva@redhat.com>
879
880         * configure.ac: Remove excess quoting from asm line 0 test.
881         * configure: Rebuilt.
882
883 2007-03-16  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
884
885         * doc/invoke.texi (-Wconversion): Document warnings specific to C++.
886         * c-common.c (convert_and_check): Move warning logic to...
887         (warnings_for_convert_and_check): ...here. Define.
888         * c-common.h (warnings_for_convert_and_check): Declare.
889         
890 2007-03-16  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
891
892         * pa.c (attr_length_call): Partially revert change of 2007-03-09.
893         (output_call): Likewise.
894
895 2007-03-16  Richard Sandiford  <richard@codesourcery.com>
896
897         * config/vxworks.h (SUPPORTS_INIT_PRIORITY): Define.
898
899 2007-03-16  Richard Sandiford  <richard@codesourcery.com>
900
901         * config/vx-common.h (WINT_TYPE, WINT_TYPE_SIZE): Define.
902
903 2007-03-16  Uros Bizjak  <ubizjak@gmail.com>
904
905         * config/i386/i386.c (override_options): Add PTA_NO_SAHF to k8,
906         opteron, athlon-64 and athlon-fx processor_alias_table entries.
907
908 2007-03-16  Sebastian Pop  <sebastian.pop@inria.fr>
909
910         PR tree-optimization/31183
911         * tree-loop-linear.c (gather_interchange_stats, try_interchange_loops): 
912         Use double_int instead of unsigned int for representing access_strides.
913         * testsuite/gcc.dg/tree-ssa/pr31183.c: New.
914
915 2007-03-16  Richard Guenther  <rguenther@suse.de>
916
917         PR tree-optimization/31146
918         * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Restructure
919         to allow recursion of forward_propagate_addr_expr.
920         (forward_propagate_addr_into_variable_array_index): Likewise.
921         (forward_propagate_addr_expr): Likewise.
922         (tree_ssa_forward_propagate_single_use_vars): Likewise.
923         (forward_propagate_addr_expr_1): Recurse on simple copies
924         instead of propagating into them.  Do so for useless conversions
925         as well.
926         (forward_propagate_addr_expr): Clean up unused statements after
927         recursion.
928
929 2007-03-16  Richard Guenther  <rguenther@suse.de>
930
931         * builtins.c (expand_builtin_cexpi): Use the right argument
932         for the expansion via cexp.
933
934 2007-03-16  Alexandre Oliva  <aoliva@redhat.com>
935
936         * configure.ac: Don't require ELF binutils to tolerate # 0 "".
937         * configure: Rebuilt.
938
939 2007-03-16  Alexandre Oliva  <aoliva@redhat.com>
940
941         PR debug/29906
942         * dwarf2out.c (force_type_die): Adjust comment.
943         (dwarf2out_imported_module_or_decl): Handle base AT_import types.
944
945 2007-03-15  DJ Delorie  <dj@redhat.com>
946
947         * config/frv/predicates.md (minmax_operator): Don't check operands
948         here.
949
950 2007-03-15  Zdenek Dvorak  <dvorakz@suse.cz>
951
952         * tree-ssa-loop-niter.c (record_estimate): Add "upper" argument.
953         Update constant estimates of number of iterations.
954         (record_nonwrapping_iv): Add "upper" argument.  "data_size_bounds_p"
955         argument renamed to "realistic".
956         (compute_estimated_nb_iterations): Removed.
957         (record_niter_bound): New function.
958         (idx_infer_loop_bounds): For possible but unlikely tail arrays,
959         call record_nonwrapping_iv with upper = false.
960         (infer_loop_bounds_from_signedness): Pass upper argument to
961         record_nonwrapping_iv.
962         (estimate_numbers_of_iterations_loop): Do not call
963         compute_estimated_nb_iterations.  Record estimate based on profile
964         information.  Initialize the constant estimates of number of
965         iterations.
966         * tree-data-ref.c (estimated_loop_iterations): Return the recorded
967         estimates.
968         * tree-ssa-loop-prefetch.c (loop_prefetch_arrays): Add dump when
969         number of iterations is too small.
970         * cfgloop.h (struct nb_iter_bound): Remove "realistic" field.
971         (EST_NOT_AVAILABLE): Removed.
972         (struct loop): Replace estimated_nb_iterations by any_upper_bound,
973         nb_iterations_upper_bound, any_estimate and nb_iterations_estimate
974         fields.
975
976 2007-03-15  Zdenek Dvorak  <dvorakz@suse.cz>
977
978         * tree-ssa-loop-niter.c (refine_bounds_using_guard, bound_difference):
979         Handle NE_EXPR guards.
980
981 2007-03-15  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
982
983         PR c++/24924
984         * c-opts.c (c_common_post_options): Handle C++ post-processing here.
985         Set also -pedantic-errors by default for the  preprocessor unless
986         -fpermissive is given.
987         
988 2007-03-15  Richard Guenther  <rguenther@suse.de>
989
990         PR middle-end/29719
991         PR middle-end/31161
992         * builtins.c (expand_builtin_cexpi): As a fallback if we
993         don't have builtins for sincos or cexp create a function
994         declaration for cexp and expand to a call to that.
995         (expand_builtin_int_roundingfn): Always fall
996         back to floor/ceil and its variants even if they may be
997         not available.
998
999 2007-03-15  Steven Bosscher  <steven@gcc.gnu.org>
1000
1001         PR middle-end/31159
1002         * cfglayout.c (fixup_reorder_chain): Postpone deleting dead
1003         jump tables, move the call to delete_dead_jumptables from here...
1004         (cfg_layout_finalize): ...to here.  But rebuild jump labels first.
1005         * cfgrtl.c (cfg_layout_can_merge_blocks_p): When not optimizing,
1006         don't allow merging of blocks that try_redirect_by_replacing_jump
1007         also does not handle when not optimizing.
1008
1009 2007-03-15  Uros Bizjak  <ubizjak@gmail.com>
1010             Francois-Xavier Coudert  <coudert@clipper.ens.fr>
1011
1012         * config/i386/i386.md (x86_sahf_1): Correctly handle
1013         HAVE_AS_IX86_SAHF.
1014
1015 2007-03-15  Uros Bizjak  <ubizjak@gmail.com>
1016
1017         PR target/31167
1018         * config/i386/i386.md (*addti3_1, *addti3_1 splitter): Use
1019         x86_64_general_operand as operand[2] predicate.  Remove "iF"
1020         from operand constraints and use "e" constraint instead.
1021         (*subti3_1, *subti3_1 splitter): Ditto.
1022         (*negti2_1, *negti2_1 splitter): Use nonimmediate_operand as
1023         operand[1] predicate.
1024
1025 2007-03-14  Sebastian Pop  <sebastian.pop@inria.fr>
1026
1027         * tree-loop-linear.c (gather_interchange_stats): For multidimensional
1028         arrays, multiply the access strides by the size of the sub-array.
1029         * testsuite/gcc.dg/tree-ssa/ltrans-5.c: New.
1030
1031 2007-03-14  Uros Bizjak  <ubizjak@gmail.com>
1032
1033         * configure.ac (HAVE_AS_IX86_SAHF): On x86 targets check whether
1034         the configured assembler supports the sahf mnemonic.
1035         * configure: Regenerate.
1036         * config.in: Regenerate.
1037
1038         * config/i386/i386.md (x86_sahf_1): Depending on HAVE_AS_IX86_SAHF,
1039         emit "sahf" or ".byte\t0x9e" as asm template.
1040
1041 2007-03-14  Michael Meissner  <michael.meissner@amd.com>
1042
1043         PR 31018
1044         * config/i386/i386.h (X86_TUNE_SHORTEN_X87_SSE): New tuning
1045         option to replace hard coded TARGET_xxx in md file.
1046         (X86_TUNE_AVOID_VECTOR_DECODE): Ditto.
1047         (X86_TUNE_SLOW_IMUL_IMM32_MEM): Ditto.
1048         (X86_TUNE_SLOW_IMUL_IMM8): Ditto.
1049         (X86_TUNE_MOVE_M1_VIA_OR): Ditto.
1050         (X86_TUNE_NOT_UNPAIRABLE): Ditto.
1051         (X86_TUNE_NOT_VECTORMODE): Ditto.
1052         (TUNE_SHORTEN_X87_SSE): Use new tuning option.
1053         (TUNE_AVOID_VECTOR_DECODE): Ditto.
1054         (TUNE_SLOW_IMUL_IMM32_MEM): Ditto.
1055         (TUNE_SLOW_IMUL_IMM8): Ditto.
1056         (TUNE_MOVE_M1_VIA_OR): Ditto.
1057         (TUNE_NOT_UNPAIRABLE): Ditto.
1058         (TUNE_NOT_VECTORMODE): Ditto.
1059         
1060         * config/i386/i386.c (ix86_tune_features): Fill in new tuning
1061         options.
1062
1063         * config/i386/i386.md (fix_trunc?f?1_sse peephole2): Use new
1064         tuning options instead of hard coded TARGET_xxx.
1065         (fix ssemode peephole2's): Ditto.
1066         (imul peephole2's): Ditto.
1067         (movsi_or): Ditto.
1068         (movdi_or_rex64): Ditto.
1069         (move peephole2): Ditto.
1070         (not peephole2's): Ditto.
1071
1072 2007-03-14  Dirk Mueller  <dmueller@suse.de>
1073
1074         * c-common.h (empty_body_warning): Rename to empty_if_body_warning.
1075         * c-common.c (empty_if_body_warning): Rephrase diagnostic message.
1076         * c-parser.c (c_parser_if_body): Always add an empty statement in case
1077         of empty body.
1078         * c-parser.c (c_parser_do_statement): Warn about empty body in
1079         do/while statement.
1080         * c-typeck (c_finish_if_stmt): Call empty_if_body_warning.
1081         * doc/invoke.texi (-Wempty-body): Update documentation.
1082
1083 2007-03-14  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
1084
1085         PR c/21438
1086         * c-common.h (warn_for_div_by_zero): Declare.
1087         * c-common.c (warn_for_div_by_zero): Define.
1088         * c-typeck.c (build_binary_op): Call warn_for_div_zero instead of
1089         warning.
1090
1091 2007-03-14  Richard Sandiford  <richard@codesourcery.com>
1092
1093         * Makefile.in (PREPROCESSOR_DEFINES): Add directory terminators
1094         to PREFIX and STANDARD_PREFIX.
1095
1096 2007-03-14  Richard Sandiford  <richard@codesourcery.com>
1097             Phil Edwards  <phil@codesourcery.com>
1098
1099         * gthr-vxworks.h: Add an extern "C" wrapper for C++.
1100         (__gthread_once_t): Remove busy field for RTPs.
1101         (__GTHREAD_ONCE_INIT): Update accordingly.
1102
1103 2007-03-14  Richard Sandiford  <richard@codesourcery.com>
1104
1105         * doc/invoke.texi: Document VxWorks options.
1106
1107 2007-03-14  Uros Bizjak  <ubizjak@gmail.com>
1108
1109         * doc/invoke.texi (i386 and x86-64 Options): Clarify -msahf option.
1110
1111 2007-03-13  Seongbae Park <seongbae.park@gmail.com>
1112
1113         PR tree-optimization/30590
1114         * tree-nrv.c (tree_nrv): Check for the partial update of the
1115         return value.
1116
1117 2007-03-13  Alexandre Oliva  <aoliva@redhat.com>
1118
1119         * flags.h (flag_random_seed): Remove declaration, in favor of...
1120         * toplev.h (get_random_seed, set_random_seed): ... these.
1121         * tree.c (get_file_function_name): Use the former.
1122         * opts.c (common_handle_option): Use the latter.
1123         * toplev.c
1124
1125 2007-03-13  Steven Bosscher  <steven@gcc.gnu.org>
1126
1127         PR middle-end/31127
1128         * cse.c (cse_find_path): Do not bail out if a basic block that
1129         we already visited now becomes part of a path that starts at a
1130         different basic block.  Just disallow this, to make sure we
1131         visit each basic block at most once.
1132
1133 2007-03-13  Jan Hubicka  <jh@suse.cz>
1134
1135         * ipa-inline.c (cgraph_maybe_hot_edge_p): Look for hot/cold attributes,
1136         when profile esitmate is present, calls with very low frequency are
1137         cold.
1138
1139 2007-03-13  Zdenek Dvorak  <dvorakz@suse.cz>
1140
1141         PR tree-optimization/30730
1142         PR tree-optimization/26900
1143         * tree-ssa-loop-niter.c: Include gmp.h.
1144         (bounds): New type.
1145         (mpz_set_double_int, get_type_bounds, mpz_to_double_int,
1146         split_to_var_and_offset, determine_value_range,
1147         bound_difference_of_offsetted_base, refine_bounds_using_guard,
1148         bound_difference, bounds_add, bounds_negate,
1149         number_of_iterations_ne_max, dump_affine_iv): New functions.
1150         (number_of_iterations_ne, number_of_iterations_lt_to_ne,
1151         assert_loop_rolls_lt, assert_loop_rolls_le): Use bounds on the
1152         difference of initial and final value of control iv to validate
1153         results.
1154         (number_of_iterations_cond): Add loop parameter.  Determine bounds
1155         on the difference of the extremes of the control iv.  Add dumps.
1156         (expand_simple_operations): Handle phi nodes.
1157         (simplify_using_initial_conditions): Do not record used conditions.
1158         (number_of_iterations_exit): Pass loop to number_of_iterations_cond.
1159         Do not set additional_info.
1160         (implies_nonnegative_p, implies_ge_p): Removed.
1161         (derive_constant_upper_bound): Do not use parameter `additional'.
1162         (record_estimate): Parameter `additional' removed.  Parameter
1163         `i_bound' added.  Do not call derive_constant_upper_bound.
1164         (record_nonwrapping_iv): Use derive_constant_upper_bound to
1165         bound the number of iterations estimate.
1166         (estimate_numbers_of_iterations_loop): Pass the estimate from
1167         the number of iterations analysis to record_estimate.
1168         * tree.h (multiple_of_p): Declare.
1169         * tree-scalar-evolution.c (expression_expensive_p): Removed.
1170         (scev_const_prop): Do not check expression_expensive_p.
1171         * fold-const.c (multiple_of_p): Exported.
1172         * double-int.c (double_int_mask): Exported.
1173         * double-int.h (double_int_mask): Declare.
1174         * tree-flow.h (struct tree_niter_desc): Removed additional_info
1175         field.  Added max field.
1176
1177 2007-03-13  David Taylor  <taylor@candd.org>
1178
1179         PR driver/12448:
1180         * gcc.c (cpp_unique_options): If -MT or -MQ is seen, don't pass
1181         default -MQ.
1182
1183 2007-03-13  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
1184
1185         PR target/31123
1186         * pa.md (vdepi_ior): Don't allow zero length deposit.  Likewise for
1187         two unamed patterns.
1188         
1189 2007-03-13  Uros Bizjak  <ubizjak@gmail.com>
1190
1191         * config/i386/i386.opt (mcx16, msahf): New options.
1192         * config/i386/i386.c (x86_cmpxchg16b, x86_sahf): Remove.
1193         (ix86_tune_features) [X86_TUNE_USE_SAHF]: Enable for m_GENERIC.
1194
1195         * config/i386/driver-i386.c (bit_LAHF_LM): New define.
1196         (host_detect_local_cpu): Detect cx16 and lahf_lm cpuid bits.
1197         Output -mcx16 and -msahf options when corresponding bit is set.
1198
1199         * doc/invoke.texi (i386 and x86-64 Options): Document -mcx16
1200         and -msahf options.
1201
1202 2007-03-13  Alexandre Oliva  <aoliva@redhat.com>
1203
1204         * configure.ac: Test for assembler tolerance to # 0 "".
1205         * configure, config.in: Rebuilt.
1206         * final.c (final_scan_insn): Emit it if HAVE_AS_LINE_ZERO.
1207
1208 2007-03-13  Geoffrey Keating  <geoffk@apple.com>
1209
1210         * doc/invoke.texi (Spec Files): Update for '%{,' spec.
1211
1212         * config/rs6000/darwin-fallback.c: Compile file only on powerpc.
1213         (handle_syscall): Handle direct system calls.
1214         * config/rs6000/darwin.h (HAS_MD_FALLBACK_FRAME_STATE_FOR): Delete.
1215
1216 2007-03-12  Brooks Moses  <brooks.moses@codesourcery.com>
1217
1218         * doc/invoke.texi: Fix cpp.info cross-reference.
1219         * doc/passes.texi: Fix gcc.info cross-reference.
1220
1221 2007-03-12  Zdenek Dvorak  <dvorakz@suse.cz>
1222
1223         PR tree-optimization/30835
1224         * lambda-code.c (can_convert_to_perfect_nest): Check whether
1225         bb_for_stmt is not NULL before accessing it.
1226
1227 2007-03-12  Joseph Myers  <joseph@codesourcery.com>
1228
1229         * gcc.c (main): Handle target_sysroot_hdrs_suffix being NULL for
1230         some multilibs.
1231
1232 2007-03-12  Brooks Moses  <brooks.moses@codesourcery.com>
1233
1234         PR 30635
1235         * doc/install.texi: Document --enable-stage1-languages
1236
1237 2007-03-12  Steven Bosscher  <steven@gcc.gnu.org>
1238
1239         * tree-pass.h (pass_into_cfg_layout_mode,
1240         pass_outof_cfg_layout_mode): Declare.
1241         * cfglayout.c (into_cfg_layout_mode, outof_cfg_layout_mode,
1242         pass_into_cfg_layout_mode, pass_outof_cfg_layout_mode): New.
1243         * passes.c (pass_into_cfg_layout_mode): Schedule before jump2.
1244         (pass_outof_cfg_layout_mode): Schedule after pass_rtl_ifcvt.
1245
1246 2007-03-12  Seongbae Park <seongbae.park@gmail.com>
1247
1248         * c-decl.c (warn_variable_length_array): New function.
1249         Refactored from grokdeclarator to handle warn_vla
1250         and handle unnamed array case.
1251         (grokdeclarator): Refactored VLA warning case.
1252         * c.opt (Wvla): New flag.
1253         * doc/invoke.texi (Wvla): New warning.
1254
1255 2007-03-12  Richard Henderson  <rth@redhat.com>
1256
1257         * config/alpha/alpha.c (alpha_elf_section_type_flags): New.
1258         (TARGET_SECTION_TYPE_FLAGS): New.
1259
1260 2007-03-12  Richard Henderson  <rth@redhat.com>
1261
1262         * config/darwin.c (machopic_reloc_rw_mask): New.
1263         * config/darwin-protos.h (machopic_reloc_rw_mask): Declare.
1264         * config/darwin.h (TARGET_ASM_RELOC_RW_MASK): New.
1265
1266 2007-03-12  Mark Mitchell  <mark@codesourcery.com>
1267
1268         * cppdefault.c (cpp_EXEC_PREFIX): New variable.
1269         * cppdefault.h (cpp_PREFIX): Document.
1270         (cpp_PREFIX_len): Likewise.
1271         (cpp_EXEC_PREFIX): New variable.
1272         * Makefile.in (PREPROCESSOR_DEFINES): Add STANDARD_EXEC_PREFIX.
1273         * c-incpath.c (add_standard_paths): Correct logic for relocating
1274         paths within prefix.
1275
1276 2007-03-12  Uros Bizjak  <ubizjak@gmail.com>
1277
1278         * config/i386/i386.md (fixuns_trunc<mode>hi2): Implement from
1279         fixuns_truncsfhi2 and fixuns_truncdfhi2 using SSEMODEF
1280         mode macro.
1281         (fix_trunc<mode>di_sse): Implement from fix_truncsfdi_sse and
1282         fix_truncdfdi_sse using SSEMODEF mode macro.
1283         (fix_trunc<mode>si_sse): Implement from fix_truncsfsi_sse and
1284         fix_truncdfsi_sse using SSEMODEF mode macro.
1285         (fix_trunc?f?i_sse peephole2): Implement using SSEMODEF mode macro.
1286         (fix_trunc?f?i_sse K8 peephole2): Fix register constraint.
1287
1288 2007-03-12  Richard Sandiford  <richard@codesourcery.com>
1289
1290         * config.gcc (i[4567]86-wrs-vxworks, i[4567]86-wrs-vxworksae): Add
1291         elfos.h to tm_file.
1292
1293 2007-03-12  Olga Golovanevsky  <olga@il.ibm.com>
1294   
1295         * tree.h : Add multiple_of_p declaration.
1296         * fold-const.c (multiple_of_p): Make multiple_of_p public. 
1297         * ipa-type-escape.c (results_of_malloc): Redundant.
1298         (visited_stmts): New. Visited stmt for walk_use_def_chains.
1299         (cast_type): Extended with new members.
1300         (check_cast): Returns cast_type.
1301         (cast): New structure for data of walk_use_def_chains.
1302         (is_malloc_result, is_cast_from_non_pointer_1,
1303         is_cast_from_non_pointer, 
1304         is_array_access_through_pointer_and_index): New functions.
1305         (look_for_casts): Returns cast types.
1306         (check_call): Returns void.
1307         (okay_pointer_operation): Use support of pointer plus index,
1308         pointer plus constant and allow all multiplications.
1309         
1310 2007-03-11  Richard Guenther  <rguenther@suse.de>
1311
1312         PR tree-optimization/31115
1313         * tree-vrp.c (extract_range_from_binary_expr): Make sure
1314         the shift count is positive and non-anti-range for RSHIFT_EXPR.
1315         A shift count of zero is not special as with *_DIV_EXPR.
1316         (vrp_int_const_binop): Handle RSHIFT_EXPR for determining overflow
1317         direction.
1318
1319 2007-03-11  Ian Lance Taylor  <iant@google.com>
1320
1321         * tree-vrp.c (vrp_int_const_binop): Handle PLUS_EXPR and
1322         the *_DIV_EXPR codes correctly with overflow infinities.
1323
1324 2007-03-11  Ira Rosen  <irar@il.ibm.com>
1325
1326         * tree-data-ref.c (analyze_offset): Add a return value (bool) to 
1327         indicate success/failure of the analysis. Add negation to subtrahend
1328         in case of subtraction. Fail if both operands contain constants.
1329         (create_data_ref): Fail if analyze_offset fails.
1330
1331 2007-03-11  Uros Bizjak  <ubizjak@gmail.com>
1332
1333         * config/i386/i386.md (frndintxf2): Rename to ...
1334         (rintxf2): ... this. Remove expander having same name.
1335         (rintsf2, rintdf2): Implement using SSEMODEF macro.
1336         (roundsf2, rounddf2): Ditto.
1337         (lrint<mode>di2, lrint<mode>si2): Implement using SSEMODEI24 macro.
1338         (lround<mode>di2, lround<mode>si2): Ditto.
1339
1340 2007-03-11  Steven Bosscher  <steven@gcc.gnu.org>
1341
1342         * lower-subreg.c: Include except.h.
1343         (decompose_multiword_subregs): Verify that the only control flow
1344         insns we can split are loads to multi-words pseudos.
1345         Handle breaking such blocks after splitting, instead of calling
1346         find_many_sub_basic_blocks.
1347
1348         * loop-unroll.c (split_edge_and_insert): Don't set BB_SUPERBLOCK
1349         on the new basic block.  Add a lengthy comment explaining why we
1350         thought this was necessary.
1351         * cfglayout.c (cfg_layout_finalize): Don't break superblocks.
1352
1353 2007-03-10  Mark Mitchell  <mark@codesourcery.com>
1354
1355         PR c++/30924
1356         * tree.c (walk_type_fields): Recurse into the element type of
1357         ARRAY_TYPEs if there is a pointer set.
1358
1359 2007-03-10  Dirk Mueller  <dmueller@suse.de>
1360
1361         * c-common.c (warn_logical_operator): Fix condition.
1362
1363 2007-03-10  Tobias Schlüter  <tobi@gcc.gnu.org>
1364
1365         * config/i386/darwin.h (DARWIN_MINVERSION_SPEC): Add missing
1366         quotation mark.
1367         * config/darwin.c (machopic_select_section): Remove superfluous
1368         argument in call to categorize_decl_for_section.  Remove unused
1369         variable shlib.
1370
1371 2007-03-10  Joseph Myers  <joseph@codesourcery.com>
1372
1373         * configure.ac (glibc_header_dir): Set using with_build_sysroot if
1374         defined.
1375         * configure: Regenerate.
1376
1377 2007-03-10  Uros Bizjak  <ubizjak@gmail.com>
1378
1379         PR target/31101
1380         * config/i386/i386.md (UNSPEC_C2_FLAG): New constant.
1381         (fpremxf4_i387, fprem1xf4_i387): Use UNSPEC_C2_FLAG.
1382         (fmodxf3, fmod<mode>3, remainderxf3, remainder<mode>3):
1383         Add LABEL_NUSES to emitted label.
1384         * config/i386/i386.c (ix86_emit_fp_unordered_jump): Add
1385         branch probability value to emitted jump insn.
1386         * reg-stack.c (subst_stack_regs_pat)[UNSPEC]: Handle UNSPEC_C2_FLAG.
1387         Do not check life information and do not re-arrange input operands
1388         for UNSPEC_FSCALE_EXP, UNSPEC_FPREM_U and UNSPEC_FPREM1_U.
1389
1390 2007-03-10  Kaz Kojima  <kkojima@gcc.gnu.org>
1391
1392         * config/sh/sh.c (sh_insn_length_adjustment): Adjust for
1393         the change of decode_asm_operands.
1394
1395 2007-03-10  Kaz Kojima  <kkojima@gcc.gnu.org>
1396
1397         * mode-switching.c (create_pre_exit): Skip blockage insn.
1398
1399 2007-03-09  Diego Novillo  <dnovillo@redhat.com>
1400
1401         * tree-pass.h (TODO_update_smt_usage): Remove.
1402         Update all users.
1403         * tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Remove
1404         argument SOME.
1405         Update all users.
1406
1407 2007-03-09  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
1408
1409         * pa.c (attr_length_call): Revise condition for long pc-relative branch.
1410         (output_call): Use "LONG_PIC_SDIFF" instruction sequence for long local
1411         calls on the SOM target.  Don't use "LONG_PIC_PCREL" call sequence on
1412         SOM target.
1413
1414 2007-03-09  Geoffrey Keating  <geoffk@apple.com>
1415
1416         * gcc.c: Document %{, in big comment at top.
1417         (input_suffix_matches): Remove special handling for .s and
1418         .S.
1419         (input_spec_matches): New.
1420         (handle_braces): Handle %{,.
1421         (validate_switches): ',' indicates a value which is not a switch.
1422         * config/alpha/osf.h (ASM_FINAL_SPEC): Use %{, rather than %{.
1423         to detect assembler input.
1424         * config/i386/sol2.h (CPP_SPEC): Likewise.
1425         * config/rs6000/sysv4.h (ASM_SPEC): Likewise.
1426         * config/rs6000/vxworks.h (ASM_SPEC): Likewise.
1427         * config/rs6000/lynx.h (ASM_SPEC): Likewise.
1428         * config/rs6000/linux64.h (ASM_SPEC_COMMON): Likewise.
1429         * config/i386/darwin.h (DARWIN_MINVERSION_SPEC): Objective-C plus
1430         -m64 causes deployment target to default to 10.5.
1431         * config/rs6000/darwin.h (DARWIN_MINVERSION_SPEC): Likewise.
1432
1433 2007-03-09  Richard Henderson  <rth@redhat.com>
1434
1435         PR target/26090
1436         * target.h (targetm.asm.out.reloc_rw_mask): New.
1437         * target-def.h (TARGET_ASM_RELOC_RW_MASK): New.
1438         (TARGET_ASM_OUT): Use it.
1439         * targhooks.c, targhooks.h (default_reloc_rw_mask): New.
1440         * varasm.c (categorize_decl_for_section): Remove shlib argument;
1441         use the new reloc_rw_mask target hook instead.
1442         (default_section_type_flags_1): Merge into...
1443         (default_section_type_flags): ... here.
1444         (decl_readonly_section_1): Merge into...
1445         (decl_readonly_section): ... here.
1446         (default_elf_select_section_1): Merge into...
1447         (default_elf_select_section): ... here.
1448         (default_unique_section_1): Merge into...
1449         (default_unique_section): ... here.
1450         (compute_reloc_for_rtx_1, compute_reloc_for_rtx): New.
1451         (default_select_rtx_section): Use it.
1452         (default_elf_select_rtx_section): Likewise.
1453         * output.h: Update to match.
1454         * doc/tm.texi (TARGET_ASM_RELOC_RW_MASK): New.
1455         * config/alpha/alpha.c (alpha_elf_reloc_rw_mask): New.
1456         (TARGET_ASM_RELOC_RW_MASK): New.
1457         * config/i386/i386.c (x86_64_elf_select_section): Adjust call
1458         to categorize_decl_for_section.
1459         (x86_64_elf_unique_section): Likewise.
1460         * config/ia64/hpux.h (TARGET_ASM_SELECT_SECTION,
1461         TARGET_ASM_UNIQUE_SECTION, TARGET_ASM_SELECT_RTX_SECTION): Remove.
1462         (TARGET_ASM_RELOC_RW_MASK): New.
1463         * config/ia64/ia64.c (ia64_rwreloc_select_section,
1464         ia64_rwreloc_unique_section, ia64_rwreloc_select_rtx_section): Remove.
1465         (ia64_hpux_reloc_rw_mask, ia64_reloc_rw_mask): New.
1466         (TARGET_RWRELOC): Remove.
1467         (ia64_section_type_flags): Adjust call to default_section_type_flags.
1468         * config/ia64/sysv4.h (TARGET_ASM_RELOC_RW_MASK): New.
1469         * config/rs6000/rs6000.c (rs6000_elf_section_type_flags): Remove.
1470         (rs6000_elf_select_section, rs6000_elf_unique_section): Remove.
1471         (rs6000_elf_reloc_rw_mask, rs6000_xcoff_reloc_rw_mask): New.
1472         (rs6000_xcoff_select_section): Use decl_readonly_section.
1473         (rs6000_xcoff_section_type_flags): Use default_section_type_flags.
1474         * config/rs6000/sysv4.h (TARGET_ASM_RELOC_RW_MASK): New.
1475         (TARGET_ASM_SELECT_SECTION, TARGET_ASM_UNIQUE_SECTION): Remove.
1476         (TARGET_SECTION_TYPE_FLAGS): Remove.
1477         * config/rs6000/xcoff.h (TARGET_ASM_RELOC_RW_MASK): New.
1478
1479 2007-03-09  Roger Sayle  <roger@eyesopen.com>
1480
1481         * fold-const.c (fold_comparison): Remove compile-time evaluation of
1482         complex constant equality/inequality comparisons for here.
1483         (fold_binary) <EQ_EXPR>: Simplify complex comparisons that are
1484         known at compile-time or can be simplified to a scalar comparison.
1485         (fold_relational_const): Move compile-time evaluation of complex
1486         constant equality/inequality comparisons to here.
1487
1488 2007-03-09  Alexandre Oliva  <aoliva@redhat.com>
1489
1490         PR rtl-optimization/30643
1491         * cse.c (cse_insn): Recompute dest_hash after insert_regs for
1492         dest_addr_elt.
1493         (fold_rtx): Recurse, like before 2006-11-03.
1494
1495 2007-03-09  DJ Delorie  <dj@redhat.com>
1496
1497         * config/m32c/t-m32c (m32c-pragma.o): Add TM_H dependency to
1498         m32c-pragma.o.
1499
1500 2007-03-09  Aldy Hernandez  <aldyh@redhat.com>
1501
1502         PR tree-optimization/30375
1503         * tree-ssa-dse.c (dse_possible_dead_store_p): Do not eliminate if
1504         LHS of statements is not the same.
1505         * testsuite/gcc.dg/tree-ssa/ssa-dse-10.c: New.
1506
1507 2007-03-09  Chao-ying Fu  <fu@mips.com>
1508
1509         * doc/extend.texi (MIPS DSP Built-in Functions): Document the DSP
1510         REV 2.
1511         * doc/invoke.texi (-mdspr2): Document new option.
1512         * config/mips/mips.md (UNSPEC_ABSQ_S_QB .. UNSPEC_DPSQX_SA_W_PH):
1513         New unspec for DSP REV 2.
1514         (<u>mulsidi3_32bit_internal): Check if !TARGET_DSPR2, because
1515         these instructions are extended in DSP REV 2.
1516         (mips-dspr2.md): Include.
1517         * config/mips/mips.opt (mdspr2): New option.
1518         * config/mips/mips.c (mips_function_type): Add MIPS_V4QI_FTYPE_V4QI,
1519         MIPS_SI_FTYPE_SI_SI_SI, MIPS_DI_FTYPE_DI_USI_USI, MIPS_DI_FTYPE_SI_SI,
1520         MIPS_DI_FTYPE_USI_USI, MIPS_V2HI_FTYPE_SI_SI_SI.
1521         (override_options): Check TARGET_DSPR2 to enable MASK_DSP.
1522         (CODE_FOR_mips_mul_ph): Define it to CODE_FOR_mulv2hi3.
1523         (dsp_bdesc): Add DSP REV 2 builtins.  Remove 32-bit only DSP builtins.
1524         (dsp_32only_bdesc): New description table for 32-bit only DSP REV 1
1525         and 2 builtins.
1526         (bdesc_map): Add one field of unsupported_target_flags.
1527         (bdesc_arrays):  Update entries to have extra fields.  Add
1528         dsp_32only_bdesc.
1529         (mips_init_builtins): Initialize new function types.
1530         Check unsupported_target_fileds to filter out builtins.
1531         * config/mips/mips.h (TARGET_CPU_CPP_BUILTINS): Define __mips_dspr2 if
1532         TARGET_DSPR2.
1533         (ASM_SPEC): Pass mdspr2 to the assembler.
1534         * config/mips/mips-dspr2.md: New file.
1535
1536 2007-03-09  Sa Liu  <saliu@de.ibm.com>
1537
1538         * config/rs6000/altivec.md: Fix vcond patterns using if_then_else.
1539
1540 2007-03-09  Ian Lance Taylor  <iant@google.com>
1541
1542         * opts.c (common_handle_option): Treat -Wstrict-overflow (with no
1543         argument) like -Wstrict-overflow=2.
1544         * doc/invoke.texi (Warning Options): Update documentation.
1545
1546 2007-03-09  Dirk Mueller  <dmueller@suse.de>
1547
1548         PR c++/17946
1549         * doc/invoke.texi (-Wlogical-op): Document.
1550         * common.opt (-Wlogical-op): New.
1551         * c-common.h (warn_logical_operator): Declare.
1552         * c-common.c (warn_logical_operator): Define.
1553         * c-typeck.c (parser_build_binary_op): Call
1554         warn_logical_operator.
1555
1556 2007-03-09  Alexandre Oliva  <aoliva@redhat.com>
1557
1558         * rtl.h (gen_rtx_ASM_INPUT): Use "" instead of NULL file name.
1559         * final.c (final_scan_insn): Test for non-"" file name.
1560
1561 2007-03-09  Sebastian Pop  <sebastian.pop@inria.fr>
1562
1563         * doc/loop.texi: Document the Omega linear constraints solver.
1564         * doc/invoke.texi: Document -fcheck-data-deps, omega-max-vars,
1565         omega-max-geqs, omega-max-eqs, omega-max-wild-cards, 
1566         omega-hash-table-size, omega-max-keys, and 
1567         omega-eliminate-redundant-constraints.
1568         * tree-pass.h (pass_check_data_deps): Declared.
1569         * omega.c: New.
1570         * omega.h: New.
1571         * timevar.def (TV_CHECK_DATA_DEPS): Declared.
1572         * tree-ssa-loop.c (check_data_deps, gate_check_data_deps, 
1573         pass_check_data_deps): New.
1574         * tree-data-ref.c (init_data_ref): Remove declaration.
1575         (dump_data_dependence_relation): Dump DDR_INNER_LOOP.
1576         (analyze_array): Renamed init_array_ref, move up initializations.
1577         (init_data_ref): Renamed init_pointer_ref.  Moved before its call.
1578         Removed arguments that are set to NULL.
1579         (analyze_indirect_ref): Correct indentation, correct call to 
1580         init_pointer_ref.
1581         (object_analysis): Call init_array_ref instead of analyze_array.
1582         (initialize_data_dependence_relation): Initialize DDR_INNER_LOOP.
1583         (access_functions_are_affine_or_constant_p): Use DR_ACCESS_FNS instead
1584         of DR_ACCESS_FNS_ADDR.
1585         (init_omega_eq_with_af, omega_extract_distance_vectors, 
1586         omega_setup_subscript, init_omega_for_ddr_1, init_omega_for_ddr,
1587         ddr_consistent_p): New.
1588         (compute_affine_dependence): Check consistency of ddrs when 
1589         flag_check_data_deps is passed.
1590         (analyze_all_data_dependences): Uncomment.
1591         (tree_check_data_deps): New.
1592         * tree-data-ref.h: Include omega.h.
1593         (DR_ACCESS_FNS_ADDR): Removed.
1594         (data_dependence_relation): Add inner_loop.
1595         (DDR_INNER_LOOP): New.
1596         * common.opt (fcheck-data-deps): New.
1597         * tree-flow.h (tree_check_data_deps): Declare.
1598         * Makefile.in (TREE_DATA_REF_H): Depend on omega.h.
1599         (OBJS-common): Depend on omega.o.
1600         (omega.o): Define.
1601         * passes.c (pass_check_data_deps): Scheduled.
1602         * params.def (PARAM_OMEGA_MAX_VARS, PARAM_OMEGA_MAX_GEQS, 
1603         PARAM_OMEGA_MAX_EQS, PARAM_OMEGA_MAX_WILD_CARDS,
1604         PARAM_OMEGA_HASH_TABLE_SIZE, PARAM_OMEGA_MAX_KEYS,
1605         PARAM_VECT_MAX_VERSION_CHECKS,
1606         PARAM_OMEGA_ELIMINATE_REDUNDANT_CONSTRAINTS): New.
1607
1608 2007-03-09  Richard Guenther  <rguenther@suse.de>
1609
1610         PR tree-optimization/30904
1611         PR middle-end/31058
1612         * tree-vrp.c (extract_range_from_binary_expr): Handle RSHIFT_EXPR
1613         the same way as *_DIV_EXPR.
1614
1615 2007-03-09  Alexandre Oliva  <aoliva@redhat.com>
1616
1617         * recog.c (decode_asm_operands): No mixed declarations and code.
1618
1619 2007-03-09  Alexandre Oliva  <aoliva@redhat.com>
1620
1621         * rtl.def (ASM_INPUT): Add location.
1622         * rtl.h (ASM_INPUT_SOURCE_LOCATION): New.
1623         (ASM_INPUT_SOURCE_FILE, ASM_INPUT_SOURCE_LINE): New.
1624         (decode_asm_operands): Add loc operand.
1625         (gen_rtx_ASM_INPUT, gen_rtx_ASM_INPUT_loc): Define.
1626         * stmt.c (expand_asm): Rename to...
1627         (expand_asm_loc): ... this.  Add locus argument.  Pass it on to
1628         gen_rtx_ASM_INPUT_loc.
1629         (expand_asm_expr): Adjust.
1630         * recog.c (decode_asm_operands): Add loc operand.
1631         (check_asm_operands, extract_insn): Adjust.
1632         * reload1.c (maybe_fix_stack_asms): Likewise.
1633         * final.c (asm_insn_count): Likewise.
1634         (final_scan_insn): Output # line before and after asm.
1635
1636 2007-03-09  Daniel Berlin  <dberlin@dberlin.org>
1637
1638         * tree-ssa-structalias.c (variable_info): Remove
1639         finished_solution.
1640         (new_var_info): Ditto.
1641         (shared_bitmap_info_t): New structure.
1642         (shared_bitmap_table): New variable.
1643         (shared_bitmap_hash): New function.
1644         (shared_bitmap_eq): Ditto
1645         (shared_bitmap_lookup): Ditto.
1646         (shared_bitmap_add): Ditto.
1647         (merge_smts_into): Change to take bitmap directly.
1648         (find_what_p_points_to): Rewrite to use shared bitmap hashtable.
1649         (init_alias_vars): Init shared bitmap hashtable.
1650         (delete_points_to_sets): Delete shared bitmap hashtable.
1651         * tree-ssa-operands.c (add_virtual_operand): Partially revert the
1652         is_aliased removal as a change that was still necessary was
1653         deleted.
1654
1655 2007-03-09  Uros Bizjak  <ubizjak@gmail.com>
1656
1657         * config/i386/i386.h (override_options): Conditionally disable
1658         x86_sahf for 64bit targets only.
1659
1660 2007-03-08  Andrew Pinski  <andrew_pinski@playstation.sony.com>
1661
1662         PR C/31072
1663         * c-decl.c (merge_decls): Don't call make_var_volatile.
1664         * varasm.c (make_var_volatile): Remove.
1665         * output.h (make_var_volatile): Remove.
1666
1667 2007-03-08  Zdenek Dvorak  <dvorakz@suse.cz>
1668
1669         PR tree-optimization/31085
1670         * tree-ssa-address.c (create_mem_ref): Fix test of type of base.
1671
1672 2007-03-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1673
1674         * builtins.def (lceil, lceilf, lceill, lfloor, lfloorf, lfloorl,
1675         llceil, llceilf, llceill, llfloor, llfloorf, llfloorl): Mark with
1676         ATTR_CONST_NOTHROW_LIST.
1677         
1678         * fold-const.c (tree_expr_nonnegative_warnv_p): Handle
1679         FIX_TRUNC_EXPR.
1680
1681 2007-03-08  Diego Novillo  <dnovillo@redhat.com>
1682
1683         * doc/tree-ssa.texi: Remove documentation for V_MUST_DEF.
1684
1685 2007-03-08  Geoffrey Keating  <geoffk@apple.com>
1686
1687         PR 31013
1688         * gccspec.c (lang_specific_driver): Do nothing when NEXT_OBJC_RUNTIME
1689         is declared.
1690         * config/darwin.h (REAL_LIBGCC_SPEC): When -fgnu-runtime is
1691         passed, use shared libgcc.
1692
1693 2007-03-08  Roger Sayle  <roger@eyesopen.com>
1694
1695         * tree-eh.c (do_return_redirection): Call build_gimple_modify_stmt
1696         instead of calling build2 with a GIMPLE_MODIFY_STMT.
1697         (honor_protect_cleanup_actions, lower_try_finally_switch):
1698         Likewise.
1699         * tree-if-conv.c (replace_phi_with_cond_gimple_modify_stmt,
1700         ifc_temp_var): Likewise.
1701         * tree-inline.c (setup_one_parameter): Likewise.
1702         * tree-mudflap.c (mf_decl_cache_locals,
1703         mf_build_check_statement_for): Likewise.
1704         * tree-nested.c (init_tmp_var, save_tmp_var,
1705         finalize_nesting_tree_1): Likewise.
1706         * tree-outof-ssa.c (insert_copy_on_edge,
1707         insert_backedge_copies): Likewise.
1708         * tree-profile.c (tree_gen_edge_profiler,
1709         tree_gen_ic_profiler): Likewise.
1710         * tree-scalar-evolution.c (scev_const_prop): Likewise.
1711         * tree-sra.c (sra_build_assignment): Likewise.
1712         * tree-ssa-loop-im.c (determine_invariantness_stmt): Likewise.
1713         * tree-ssa-math-opts.c (insert_reciprocals,
1714         execute_cse_sincos_1): Likewise.
1715         * tree-tailcall.c (adjust_accumulator_values,
1716         adjust_return_value): Likewise.
1717         * tree-vect-patterns.c (vect_pattern_recog_1): Likewise.
1718         * tree-vect-transform.c (vect_create_data_ref_ptr,
1719         bump_vector_ptr, vect_init_vector, get_initial_def_for_induction,
1720         vect_create_epilog_for_reduction, vectorizable_reduction,
1721         vectorizable_call, vectorizable_conversion,
1722         vectorizable_assignment, vectorizable_operation,
1723         vectorizable_type_demotion, vect_gen_widened_results_half,
1724         vect_permute_store_chain, vectorizable_store,
1725         vect_setup_realignment, vect_permute_load_chain,
1726         vectorizable_load, vectorizable_condition,
1727         vect_create_cond_for_align_checks): Likewise.
1728         * tree-vrp.c (build_assert_expr_for): Likewise.
1729
1730 2007-03-08  Ian Lance Taylor  <iant@google.com>
1731
1732         * tree-vrp.c: Include "intl.h".
1733         (usable_range_p): New static function.
1734         (compare_values_warnv): Don't test TYPE_OVERFLOW_UNDEFINED for
1735         overflowed values, juts set *strict_overflow_p.
1736         (compare_values): Only return -2 if one of the operands is not a
1737         constant.
1738         (compare_ranges): Call usable_range_p.
1739         (compare_range_with_value): Likewise.
1740         (vrp_evaluate_conditional_warnv): Rename from
1741         vrp_evaluate_conditional.  Make static.  Change all callers.
1742         (vrp_evaluate_conditional): New function.
1743         (simplify_div_or_mod_using_ranges): Issue warning about reliance
1744         on signed overflow.
1745         (simplify_abs_using_ranges): Likewise.
1746         (simplify_stmt_for_jump_threading): Add within_stmt parameter.
1747         * tree-ssa-dom.c (simplify_stmt_for_jump_threading): Add
1748         within_stmt parameter.
1749         * tree-ssa-propagate.c (fold_predicate_in): Update call to
1750         vrp_evaluate_conditional.
1751         * tree-ssa-threadedge.c
1752         (record_temporary_equivalences_from_stmts_at_dest): Change
1753         simplify parameter to take a second tree parameter.
1754         (simplify_control_stmt_condition): Likewise.
1755         (thread_across_edge): Likewise.
1756         * tree-flow.h (vrp_evaluate_conditional): Update declaration.
1757         (thread_across_edge): Likewise.
1758         * gcc/Makefile.in (tree-vrp.o): Depend upon intl.h.
1759
1760 2007-03-08  Uros Bizjak  <ubizjak@gmail.com>
1761
1762         * config/i386/i386.h (TARGET_SAHF): New define.
1763         * config/i386/i386.c (ix86_tune_features) [X86_TUNE_USE_SAHF]:
1764         Also enable for m_K8, m_AMDFAM10 and m_CORE2.
1765         (x86_sahf): New global variable.
1766         (override_options): Add PTA_NO_SAHF to pta_flags enum.  Recode
1767         pta_flags masks using shifts.  Add PTA_NO_SAHF to x86_64 and
1768         nocona processor flags.  Set x86_sahf when PTA_NO_SAHF is not set
1769         in processor flags.  Do not unconditionally disable TARGET_USE_SAHF
1770         for 64-bit.
1771         (ix86_fp_comparison_sahf_cost): Return high value for !TARGET_SAHF.
1772         (ix86_expand_fp_compare): Check for TARGET_CMOVE or TARGET_SAHF
1773         when expanding fcomi/sahf based tests.
1774         (ix86_emit_fp_unordered_jump): Check for TARGET_SAHF when
1775         expanding sahf based alternative. Emit sahf based sequence when
1776         optimizing for code size.
1777         * config/i386/i386.md (x86_sahf_1): Do not disable for
1778         TARGET_64BIT, enable for TARGET_SAHF. 
1779
1780 2007-03-08  Martin Michlmayr  <tbm@cyrius.com>
1781
1782         * tree-ssa-coalesce.c (fail_abnormal_edge_coalesce): Remove
1783         spurious whitespace from error message.
1784
1785 2007-03-08  Volker Reichelt  <reichelt@netcologne.de>
1786
1787         PR c++/30852
1788         * c-common.c (fold_offsetof_1): Handle COMPOUND_EXPR.
1789
1790 2007-03-08  Alexandre Oliva  <aoliva@redhat.com>
1791
1792         * c-decl.c (grokdeclarator): Disable warnings for anonymous
1793         bitfields.
1794         * tree-sra.c (instantiate_element): Propagate disabled warnings
1795         from the element itself to the created variable.
1796
1797 2007-03-07  Richard Henderson  <rth@redhat.com>
1798
1799         PR target/30848
1800         * reg-stack.c (emit_swap_insn): If a malformed asm was seen,
1801         silently fix up the stack in the case of a missing register.
1802
1803 2007-03-07  Paul Brook  <paul@codesourcery.com>
1804
1805         * config/arm/libunwind.S: Add .arch/.object_arch for armv4 builds.
1806
1807 2007-03-07  Joseph Myers  <joseph@codesourcery.com>
1808
1809         * config/arm/unwind-arm.c (struct wmmxd_regs, struct wmmxc_regs):
1810         New.
1811         (phase1_vrs): Use them.
1812         (DEMAND_SAVE_WMMXD, DEMAND_SAVE_WMMXC): New.
1813         (__gnu_Unwind_Save_WMMXD, __gnu_Unwind_Restore_WMMXD,
1814         __gnu_Unwind_Save_WMMXC, __gnu_Unwind_Restore_WMMXC): Declare.
1815         (restore_non_core_regs): Call __gnu_Unwind_Restore_WMMXD and
1816         __gnu_Unwind_Restore_WMMXC if required.
1817         (_Unwind_VRS_Pop): Implement iWMMXt support.
1818         * config/arm/libunwind.S (gnu_Unwind_Restore_WMMXD,
1819         gnu_Unwind_Save_WMMXD, gnu_Unwind_Restore_WMMXC,
1820         gnu_Unwind_Save_WMMXC): Define.
1821
1822 2007-03-07  Richard Sandiford  <richard@codesourcery.com>
1823
1824         * config/vxworks.h (vxworks_override_options): Declare.
1825         (VXWORKS_OVERRIDE_OPTIONS): Use it.
1826         * config/vxworks.c: Include target.h and toplev.h.
1827         (vxworks_override_options): New function.
1828         * config/t-vxworks (vxworks.o): Depend on $(TARGET_H) and toplev.h.
1829
1830 2007-03-07  Andreas Krebbel  <krebbel1@de.ibm.com>
1831
1832         * config/s390/s390.c (override_options): Don't emit an error when
1833         -mstack-size is used without providing -mstack-guard.
1834         (s390_emit_prologue): Choose stack_guard value automatically if not
1835         provided via command line.
1836         * doc/invoke.texi: Adjust description of -mstack-guard and -mstack-size.
1837
1838 2007-03-07  Richard Sandiford  <richard@codesourcery.com>
1839
1840         * config/i386/i386.c (output_set_got): Add a GOT initialization
1841         sequence for VxWorks PIC.
1842         (legitimate_pic_address_disp_p): Allow UNSPEC_GOT wrappers
1843         around labels as well as symbols.  Use gotoff_operand instead
1844         of local_symbolic_operand.
1845         (legitimize_pic_address): Use gotoff_operand instead of
1846         local_symbolic_operand.  Use @GOT accesses for labels as
1847         well as symbols.
1848         (ix86_output_addr_diff_elt): Use PC-relative rather than
1849         GP-relative offsets for VxWorks PIC.
1850         (ix86_expand_move): Pass NULL_RTX to legitimize_pic_address unless
1851         no_new_pseudos.  Check whether the returned register is op0.
1852         * config/i386/i386.md (tablejump): Use PC-relative rather than
1853         GP-relative offsets for VxWorks PIC.
1854         * config/i386/predicates.md (gotoff_operand): New predicate.
1855
1856 2007-03-06  Richard Sandiford  <richard@codesourcery.com>
1857
1858         * config/vxworks.h (VXWORKS_GOTT_BASE, VXWORKS_GOTT_INDEX): Undefine
1859         before defining.
1860         * config/vxworks-dummy.h: New file.
1861         * config/i386/i386.h: Include it.
1862
1863 2007-03-07  Alexandre Oliva  <aoliva@redhat.com>
1864
1865         * dwarf2out.c (is_inlined_entry_point): New
1866         (add_high_low_attributes): Emit DW_AT_entry_pc along with
1867         DW_AT_ranges if the first subblock is the entry point.
1868
1869 2007-03-06  David Daney  <ddaney@avtrex.com>
1870
1871         * doc/install.texi (mips-*-*): Change recommended binutils
1872         version.
1873
1874 2007-03-06  Anatoly Sokolov <aesok@post.ru>
1875
1876         * config/avr/avr.c (avr_mcu_types): Add support for ATmega325P,
1877         ATmega3250P, ATmega329P, ATmega3290P, AT90USB82 and AT90USB162 
1878         devices.
1879         * config/avr/avr.h (LINK_SPEC, CRT_BINUTILS_SPECS): (Ditto.).
1880         * config/avr/t-avr (MULTILIB_MATCHES): (Ditto.).
1881
1882 2007-03-06  Jan Hubicka  <jh@suse.cz>
1883
1884         * errors.h (warning, error, fatal, internal_error): Mark as cold.
1885         * predict.c (maybe_hot_bb): Cold functions are never hot; hot functions
1886         are hot.
1887         (probably_cold_bb_p): Cold functions are cold.
1888         (probably_never_executed_bb_p): Cold functions are cold.
1889         (tree_bb_level_predictions): Predict calls to cold functions as not
1890         taken.
1891         (compute_function_frequency): Check hot/cold attributes.
1892         * function.h (function_frequency): Update comments.
1893         * predict.def (PRED_COLD_FUNCTION): Predict cold function.
1894         * c-common.c (handle_hot_attribute, handle_cold_attribute): New.
1895         (c_common_att): Add cold and hot.
1896
1897         * doc/extend.texi (hot,cold attributes): Document.
1898
1899 2007-03-06  Andrew Haley  <aph@redhat.com>
1900
1901         * function.c (expand_function_end): Move blockage to just after we
1902         emit the label for the naked return from the function.
1903
1904 2007-03-06  Richard Sandiford  <richard@codesourcery.com>
1905
1906         * config/i386/att.h (ASM_OUTPUT_ASCII, ASM_OUTPUT_SKIP): Undefine
1907         before redefining.
1908
1909 2007-03-06  Jan Hubicka  <jh@suse.cz>
1910
1911         * reg-stack.c (reg_to_stack): Large models don't allow NAN to be
1912         loaded for constant large models.  Non-large 64bit PIC can do.
1913         * i386.h (CASE_VECTOR_MODE): Large PIC cases are 64bit.
1914         * cmodel.h: Add LARGE PIC.
1915         * i386.md (UNSPEC_PLTOFF): New.
1916         (UNSPEC_SET_RIP, UNSPEC_SET_GOT_OFFSET): New; renumber other unspecs as
1917         needed.
1918         (*call_1_rex64): Disable for large models.
1919         (*call_1_rex64_large): New.
1920         (*call_value_1_rex64): Disable for large models.
1921         (*call_value_1_rex64_large): New.
1922         (set_rip_rex4): New.
1923         (set_got_offset_rex64): New.
1924         * predicates.md (constant_call_address_operand): For large model
1925         constant calls are not possible.
1926         * i386-protos.h (construct_plt_address): Declare.
1927         * i386.c (override_options): Accept large models.
1928         (ix86_expand_prologue): Expand large PIC GOT pointer load.
1929         (legitimate_constant_p): Add new UNSPECs.
1930         (legitimate_pic_operand_p): Likewise.
1931         (legitimate_pic_address_disp_p): Disallow local symbols for large PICs.
1932         (legitimize_pic_address): Do easy RIP relative way for TLS only for
1933         non-large model.
1934         (output_pic_addr_const): Add PLTOFF.
1935         (ix86_output_addr_diff_elt): Output 64bit tables when needed.
1936         (ix86_expand_move): Legitimize pic address when in PIC mode.
1937         (construct_plt_address): New function.
1938         (ix86_expand_call): Offload the address to register and use GOT pointer
1939         for large model.
1940         * invoke.texi (mcmodel=large): Update documentation.
1941
1942 2007-03-06  Richard Henderson  <rth@redhat.com>
1943
1944         * config/i386/i386.c (x86_use_leave, x86_push_memory,
1945         x86_zero_extend_with_and, x86_movx, x86_double_with_add,
1946         x86_use_bit_test, x86_unroll_strlen, x86_deep_branch,
1947         x86_branch_hints, x86_use_sahf, x86_partial_reg_stall,
1948         x86_partial_flag_reg_stall, x86_use_himode_fiop, x86_use_simode_fiop,
1949         x86_use_mov0, x86_use_cltd, x86_read_modify_write, x86_read_modify,
1950         x86_split_long_moves, x86_promote_QImode, x86_fast_prefix, 
1951         x86_single_stringop, x86_qimode_math, x86_promote_qi_regs,
1952         x86_himode_math, x86_promote_hi_regs, x86_sub_esp_4, x86_sub_esp_8,
1953         x86_add_esp_4, x86_add_esp_8, x86_integer_DFmode_moves, 
1954         x86_partial_reg_dependency, x86_memory_mismatch_stall, 
1955         x86_prologue_using_move, x86_epilogue_using_move, x86_shift1,
1956         x86_sse_partial_reg_dependency, x86_sse_split_regs, 
1957         x86_sse_unaligned_move_optimal, x86_sse_typeless_stores,
1958         x86_sse_load0_by_pxor, x86_use_ffreep, x86_use_incdec,
1959         x86_inter_unit_moves, x86_ext_80387_constants, x86_four_jump_limit,
1960         x86_schedule, x86_use_bt, x86_pad_returns,
1961         x86_use_xchgb): Merge into ...
1962         (ix86_tune_features): ... here.  New array.
1963         (x86_cmove, x86_cmpxchg, x86_cmpxchg8b, x86_xadd,
1964         x86_bswap): Merge into ...
1965         (ix86_arch_features): ... here.  New array.
1966         (x86_3dnow_a): Remove.
1967         (x86_accumulate_outgoing_args): Make static.
1968         (x86_arch_always_fancy_math_387): Make static.
1969         (ix86_tune_mask, ix86_arch_mask): Move ...
1970         (override_options): ... to local variables here.  Apply the
1971         appropriate mask to each element of ix86_arch_features and
1972         ix86_tune_features.  Adjust TARGET_CMOVE and TARGET_USE_SAHF
1973         as were done in the old macros.
1974         (standard_80387_constant_p): Use TARGET_EXT_80387_CONSTANTS.
1975         * config/i386/i386.h (x86_use_leave, x86_push_memory,
1976         x86_zero_extend_with_and, x86_use_bit_test, x86_cmove, x86_deep_branch,
1977         x86_branch_hints, x86_unroll_strlen, x86_double_with_add,
1978         x86_partial_reg_stall, x86_movx, x86_use_himode_fiop,
1979         x86_use_simode_fiop, x86_use_mov0, x86_use_cltd, x86_use_xchgb,
1980         x86_read_modify_write, x86_read_modify, x86_split_long_moves,
1981         x86_promote_QImode, x86_single_stringop, x86_fast_prefix,
1982         x86_himode_math, x86_qimode_math, x86_promote_qi_regs,
1983         x86_promote_hi_regs, x86_integer_DFmode_moves, x86_add_esp_4,
1984         x86_add_esp_8, x86_sub_esp_4, x86_sub_esp_8,
1985         x86_partial_reg_dependency, x86_memory_mismatch_stall,
1986         x86_accumulate_outgoing_args, x86_prologue_using_move,
1987         x86_epilogue_using_move, x86_decompose_lea,
1988         x86_arch_always_fancy_math_387, x86_shift1,
1989         x86_sse_partial_reg_dependency, x86_sse_split_regs,
1990         x86_sse_unaligned_move_optimal, x86_sse_typeless_stores,        
1991         x86_sse_load0_by_pxor, x86_use_ffreep, x86_inter_unit_moves,
1992         x86_schedule, x86_use_bt, x86_cmpxchg, x86_cmpxchg8b, x86_xadd,
1993         x86_use_incdec, x86_pad_returns, x86_bswap,
1994         x86_partial_flag_reg_stall): Remove.
1995         (enum ix86_tune_indices): New.
1996         (ix86_tune_features): New.
1997         (TARGET_USE_LEAVE, TARGET_PUSH_MEMORY, TARGET_ZERO_EXTEND_WITH_AND,
1998         TARGET_USE_BIT_TEST, TARGET_UNROLL_STRLEN,
1999         TARGET_DEEP_BRANCH_PREDICTION, TARGET_BRANCH_PREDICTION_HINTS,
2000         TARGET_DOUBLE_WITH_ADD, TARGET_USE_SAHF, TARGET_MOVX,
2001         TARGET_PARTIAL_REG_STALL, TARGET_PARTIAL_FLAG_REG_STALL,
2002         TARGET_USE_HIMODE_FIOP, TARGET_USE_SIMODE_FIOP, TARGET_USE_MOV0,
2003         TARGET_USE_CLTD, TARGET_USE_XCHGB, TARGET_SPLIT_LONG_MOVES,
2004         TARGET_READ_MODIFY_WRITE, TARGET_READ_MODIFY, TARGET_PROMOTE_QImode,
2005         TARGET_FAST_PREFIX, TARGET_SINGLE_STRINGOP, TARGET_QIMODE_MATH,
2006         TARGET_HIMODE_MATH, TARGET_PROMOTE_QI_REGS, TARGET_PROMOTE_HI_REGS,
2007         TARGET_ADD_ESP_4, TARGET_ADD_ESP_8, TARGET_SUB_ESP_4,
2008         TARGET_SUB_ESP_8, TARGET_INTEGER_DFMODE_MOVES,
2009         TARGET_PARTIAL_REG_DEPENDENCY, TARGET_SSE_PARTIAL_REG_DEPENDENCY,
2010         TARGET_SSE_UNALIGNED_MOVE_OPTIMAL, TARGET_SSE_SPLIT_REGS,
2011         TARGET_SSE_TYPELESS_STORES, TARGET_SSE_LOAD0_BY_PXOR,
2012         TARGET_MEMORY_MISMATCH_STALL, TARGET_PROLOGUE_USING_MOVE,
2013         TARGET_EPILOGUE_USING_MOVE, TARGET_SHIFT1, TARGET_USE_FFREEP,
2014         TARGET_INTER_UNIT_MOVES, TARGET_FOUR_JUMP_LIMIT, TARGET_SCHEDULE,
2015         TARGET_USE_BT, TARGET_USE_INCDEC, TARGET_PAD_RETURNS,
2016         TARGET_EXT_80387_CONSTANTS): Use it.
2017         (enum ix86_arch_indices): New.
2018         (ix86_arch_features): New.
2019         (TARGET_CMOVE, TARGET_CMPXCHG, TARGET_CMPXCHG8B, TARGET_XADD,
2020         TARGET_BSWAP): Use it.
2021         (ix86_tune_mask, ix86_arch_mask): Remove.
2022
2023 2007-03-06  Joseph Myers  <joseph@codesourcery.com>
2024
2025         PR bootstrap/31020
2026         * configure.ac (CROSS_SYSTEM_HEADER_DIR, build_system_header_dir):
2027         Define using $${sysroot_headers_suffix}.
2028         * configure: Regenerate.
2029         * cppdefault.c (cpp_include_defaults): Make FIXED_INCLUDE_DIR a
2030         multilib-suffixed directory if SYSROOT_HEADERS_SUFFIX_SPEC
2031         defined.
2032         * doc/invoke.texi (-print-sysroot-headers-suffix): Document.
2033         * gcc.c (print_sysroot_headers_suffix): New.
2034         (option_map): Include --print-sysroot-headers-suffix.
2035         (display_help): Mention -print-sysroot-headers-suffix.
2036         (process_command): Handle -print-sysroot-headers-suffix.
2037         (do_spec_1): Append multilib directory to include-fixed path if
2038         sysroot suffixes in use.
2039         (main): Handle -print-sysroot-headers-suffix.
2040         * Makefile.in (start.encap): Don't depend on xlimits.h
2041         (xlimits.h): Remove.
2042         (stmp-int-hdrs): Don't depend on xlimits.h.  Inline generation of
2043         limits.h for each multilib in fixinc_list.
2044         (fixinc_list, s-fixinc_list): New.
2045         (stmp-fixinc): Depend on fixinc_list.  If not copying headers,
2046         generate them for each multilib in fixinc_list.
2047         (stmp-fixproto): Use include-fixed.  Run fixproto for each
2048         multilib in fixinc_list.
2049         (mostlyclean): Don't remove xlimits.h.
2050         (clean): Remove include-fixed.
2051         (real-install-headers-tar, real-install-headers-cpio,
2052         real-install-headers-cp): Don't copy include, only include-fixed.
2053         (install-mkheaders): Depend on fixinc_list.  Don't depend on
2054         xlimits.h.  Save limits.h files for each multilib in fixinc_list.
2055         Always save mkinstalldirs.  Preserve ${sysroot_headers_suffix} in
2056         SYSTEM_HEADER_DIR setting in mkheaders.conf.
2057
2058 2007-03-06  Jan Hubicka  <jh@suse.cz>
2059
2060         * regstack.c (reg_to_stack): When in 64bit PIC mode, we still can load
2061         NANs easilly.
2062
2063 2007-03-06  Richard Sandiford  <richard@codesourcery.com>
2064
2065         * configure.ac: Allow tm_file to contain build-directory files.
2066         * configure: Regenerate.
2067         * config.gcc (m68k-*-uclinux*): Add ./sysroot-suffix.h to tm_file.
2068         * config/m68k/t-uclinux (sysroot-suffix.h): New target.
2069         * config/m68k/print-sysroot-suffix.sh: New file.
2070
2071 2007-03-06  Richard Sandiford  <richard@codesourcery.com>
2072
2073         * config/m68k/m68k.h (PIC_OFFSET_TABLE_REGNUM): Use the REGNO
2074         of pic_offset_table_rtx if reload_completed.
2075         (CONDITIONAL_REGISTER_USAGE): Use PIC_REG instead of
2076         PIC_OFFSET_TABLE_REGNUM.
2077         * config/m68k/m68k.c (TARGET_ASM_CAN_OUTPUT_MI_THUNK): Always
2078         return true.
2079         (m68k_save_reg): Use PIC_REG instead of PIC_OFFSET_TABLE_REGNO.
2080         (m68k_output_mi_thunk): Rewrite to use RTL.  Honor vcall_offset.
2081
2082 2007-03-06  Richard Sandiford  <richard@codesourcery.com>
2083
2084         * config/m68k/m68k.c (m68k_save_reg): Save the PIC register in
2085         functions that call eh_return.
2086
2087 2007-03-06  Richard Sandiford  <richard@codesourcery.com>
2088
2089         * config/m68k/m68k.c (m68k_save_reg): Save the PIC register in
2090         functions that need a constant pool.
2091
2092 2007-03-06  Richard Sandiford  <richard@codesourcery.com>
2093
2094         PR target/28181
2095         * config/m68k/m68k-protos.h (m68k_secondary_reload_class): Declare.
2096         (m68k_preferred_reload_class): Likewise.
2097         * config/m68k/m68k.h (HARD_REGNO_MODE_OK): Remove duplicated comment.
2098         (SECONDARY_RELOAD_CLASS): Define.
2099         (PREFERRED_RELOAD_CLASS): Use m68k_preferred_reload_class.
2100         (LIMIT_RELOAD_CLASS): Delete.
2101         * config/m68k/m68k.c (m68k_regno_mode_ok): Don't prevent address
2102         registers from storing bytes.
2103         (m68k_secondary_reload_class): New function.
2104         (m68k_preferred_reload_class): Likewise.
2105
2106 2007-03-06  Richard Sandiford  <richard@codesourcery.com>
2107
2108         * config/m68k/m68k.c (m68k_save_reg): Remove special case for
2109         leaf functions.
2110         (m68k_expand_prologue): Likewise.
2111
2112 2007-03-06  Richard Sandiford  <richard@codesourcery.com>
2113
2114         * config/m68k/m68k-protos.h (output_sibcall): Declare.
2115         (mips_expand_epilogue): Add a bool parameter.
2116         (m68k_legitimize_sibcall_address): Declare.
2117         * config/m68k/m68k.c (TARGET_FUNCTION_OK_FOR_SIBCALL): Define.
2118         (m68k_expand_epilogue): Add a parameter to select between sibling
2119         and normal epilogues.  Only generate a return for the latter.
2120         (m68k_ok_for_sibcall_p): New function.
2121         (m68k_legitimize_sibcall_address, output_sibcall): New functions.
2122         * config/m68k/m68k.md (sibcall, *sibcall): New patterns.
2123         (sibcall_value, *sibcall_value): Likewise.
2124         (*call, *call_value): Require !SIBLING_CALL_P.
2125         (epilogue): Update call to m68k_expand_epilogue.
2126         (sibcall_epilogue): New pattern.
2127         * config/m68k/predicates.md (const_call_operand): Say that this
2128         predicate applies to sibling calls too.
2129         (sibcall_operand): New predicate.
2130
2131 2007-03-06  Richard Sandiford  <richard@codesourcery.com>
2132
2133         * config/m68k/m68k.md (movsf_cf_soft): Provide the same non-mov3q
2134         alternatives as movsi_cf.
2135         (movsf_cf_hard): Add commentary.
2136
2137 2007-03-06  Kazu Hirata  <kazu@codesourcery.com>
2138             Richard Sandiford  <richard@codesourcery.com>
2139
2140         * config/m68k/m68k-protos.h (m68k_interrupt_function_p): Declare.
2141         (m68k_movem_pattern_p, m68k_output_movem): Likewise.
2142         (m68k_expand_prologue, m68k_expand_epilogue): Likewise.
2143         * config/m68k/m68k.h (EPILOGUE_USES): Define.  Treat all registers
2144         as being live on exit from an interrupt function.
2145         (PRINT_OPERAND_PUNCT_VALID_P): Return true for '?'.
2146         * config/m68k/m68k.c (MIN_MOVEM_REGS, MIN_FMOVEM_REGS): New macros.
2147         (m68k_frame): Remove reg_rev_mask and fpu_rev_mask.
2148         (TARGET_ASM_FUNCTION_PROLOGUE, TARGET_ASM_FUNCTION_EPILOGUE): Delete.
2149         (m68k_interrupt_function_p): Globalize.
2150         (m68k_compute_frame_layout): Remove reverse mask code.
2151         (m68k_emit_movem, m68k_set_frame_related): New functions.
2152         (m68k_output_function_prologue): Delete in favor of...
2153         (m68k_expand_prologue): ...this new function.
2154         (m68k_output_function_epilogue): Delete in favor of...
2155         (m68k_expand_epilogue): ...this new function.
2156         (m68k_split_offset, m68k_movem_pattern_p, m68k_output_movem): New
2157         functions.
2158         (print_operand): Handle %?.
2159         * config/m68k/m68k.md (UNSPEC_SIN, UNSPEC_COS): Remove excess space.
2160         (UNSPEC_GOT, A1_REG, PIC_REG, FP0_REG): New constants.
2161         (prologue, epilogue): New patterns.
2162         (return): Turn into a define_expand.
2163         (*return): New pattern, derived from old "return" pattern.  Use rte
2164         rather than rts for interrupt functions.  Only use rtd if the pop
2165         count is nonzero.
2166         (*m68k_store_multiple, *m68k_store_multiple_automod): New patterns.
2167         (*m68k_load_multiple, *m68k_load_multiple_automod): Likewise.
2168         (link, *link, unlink, *unlink, load_got): Likewise.
2169
2170 2007-03-06  Richard Sandiford  <richard@codesourcery.com>
2171
2172         PR target/23482
2173         PR target/17114
2174         * config/m68k/m68k-protos.h (m68k_legitimate_base_reg_p): Declare.
2175         (m68k_legitimate_index_reg_p, m68k_legitimate_address_p): Likewise.
2176         (m68k_matches_q_p, m68k_matches_u_p): Likewise.
2177         * config/m68k/m68k.h (EXTRA_CONSTRAINT): Use m68k_matches_q_p
2178         and m68k_matches_u_p.
2179         (PCREL_GENERAL_OPERAND_OK, LEGITIMATE_BASE_REG_P): Delete.
2180         (INDIRECTABLE_1_ADDRESS_P, GO_IF_NONINDEXED_ADDRESS): Delete.
2181         (GO_IF_INDEXABLE_BASE, GO_IF_INDEXING, GO_IF_INDEXED_ADDRESS): Delete.
2182         (LEGITIMATE_INDEX_REG_P, LEGITIMATE_INDEX_P): Delete.
2183         (GO_IF_COLDFIRE_FPU_LEGITIMATE_ADDRESS): Delete.
2184         (REG_STRICT_P): New macro.
2185         (LEGITIMATE_PIC_OPERAND_P): Use REG_STRICT_P rather than
2186         PCREL_GENERAL_OPERAND_OK.
2187         (REG_OK_FOR_BASE_P): Merge definitions.  Use REG_STRICT_P and
2188         m68k_legitimate_base_reg_p.
2189         (REG_MODE_OK_FOR_INDEX_P): Likewise m68k_legitimate_index_reg_p.
2190         (GO_IF_LEGITIMATE_ADDRESS): Likewise m68k_legitimate_address_p.
2191         (PIC_CASE_VECTOR_ADDRESS): Update comment.
2192         * config/m68k/m68k.c (m68k_address): New structure.
2193         (m68k_legitimate_base_reg_p, m68k_legitimate_index_reg_p)
2194         (m68k_decompose_index, m68k_legitimate_constant_address_p)
2195         (m68k_jump_table_ref_p, m68k_decompose_address)
2196         (m68k_legitimate_address_p, m68k_legitimate_mem_p, m68k_matches_q_p)
2197         (m68k_matches_u_p): New functions.
2198         (print_operand_address): Rewrite to use m68k_decompose_index.
2199
2200 2007-03-05  David Taylor  <dtaylor@emc.com>
2201
2202         * gcc.c: Correct copyright date in --version output.
2203
2204 2007-03-05  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
2205
2206         * pa.md: In unamed move patterns, disparge copies between general
2207         and floating point registers using '?' modifier.  Don't include 'f'
2208         constraint for register preferences in DImode, SImode, HImode and
2209         QImode patterns.  Likewise for 'r' in DFmode and SFmode patterns.
2210         Remove constraints for copies between general and floating registers
2211         in soft-float DFmode pattern.
2212         (movdf): Fail if operand1 is a CONST_DOUBLE and operand0 is a hard
2213         floating register.
2214         (movsf): Likewise. 
2215
2216 2007-03-05  Mike Stump  <mrs@apple.com>
2217
2218         * c-common.c (targetcm): Add.
2219         * c-opts.c (c_common_handle_option): Handle language specific
2220         target options.
2221         * opts.c (handle_option): Verify language for target options, if
2222         any are given.
2223         * opth-gen.awk: Add CL_LANG_ALL.
2224         * target-def.h (TARGET_HANDLE_C_OPTION): Add.
2225         (TARGETCM_INITIALIZER): Add.
2226         * target.h (struct gcc_targetcm): Add.
2227         (targetcm): Add.
2228         * targhooks.c (default_handle_c_option): Add.
2229         * targhooks.h (default_handle_c_option): Add.
2230         * doc/tm.texi (TARGET_HANDLE_C_OPTION): Add.
2231
2232         * config/darwin.opt (iframework): Add.
2233         * config/darwin.h (TARGET_HAS_TARGETCM): Add.
2234         * config/darwin-c.c (handle_c_option): Add.
2235         (TARGET_HANDLE_C_OPTION): Add.
2236         (targetcm): Add.
2237         * doc/invoke.texi (Darwin Options): Add -iframework.
2238
2239 2007-03-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2240
2241         * convert.c (convert_to_integer): Fix nearbyint/rint -> *lrint
2242         conversion.
2243
2244 2007-03-05  Ian Lance Taylor  <iant@google.com>
2245
2246         * c.opt (fgnu89-inline): New option.
2247         * c-opts.c (c_common_post_options): Set default value for
2248         flag_gnu89_inline.
2249         * c-decl.c (WANT_C99_INLINE_SEMANTICS): Remove.
2250         (pop_scope): Check flag_gnu89_inline rather than flag_isoc99 for
2251         inline functions.
2252         (diagnose_mismatched_decls, merge_decls, start_decl): Likewise.
2253         (grokdeclarator, start_function): Likewise.
2254         * c-cppbuiltin.c (c_cpp_builtins): Define either
2255         __GNUC_GNU_INLINE__ or __GNUC_STDC_INLINE__.
2256         * doc/invoke.texi (Option Summary): Mention -fgnu89-inline.
2257         (C Dialect Options): Document -fgnu89-inline.
2258         * doc/extend.texi (Function Attributes): Explain what the
2259         gnu_inline attribute does.
2260         * doc/cpp.texi (Common Predefined Macros): Document
2261         __GNUC_GNU_INLINE__ and __GNUC_STDC_INLINE__.
2262
2263 2007-03-05  Ian Lance Taylor  <iant@google.com>
2264
2265         PR tree-optimization/31034
2266         * tree-vrp.c (extract_range_from_assert): Don't try to handle a
2267         half-range if the other side is an overflow infinity.
2268
2269 2007-03-05  Bernd Schmidt  <bernd.schmidt@analog.com>
2270
2271         * config.gcc (bfin*-uclinux*): Use t-bfin-uclinux.
2272         (bfin*-linux-uclibc*): New configuration.
2273         * config/linux.h (LINK_GCC_C_SEQUENCE_SPEC): Undefined before
2274         defining.
2275         * config/bfin/linux.h: New file.
2276         * config/bfin/libgcc-bfin.ver: New file.
2277         * config/bfin/t-bfin-uclinux: New file.
2278         * config/bfin/t-bfin-linux: New file.
2279         * config/bfin/uclinux.h (LINUX_TARGET_OS_CPP_BUILTINS): New macro.
2280         (TARGET_OS_CPP_BUILTINS): New macro.
2281
2282 2007-03-05  Richard Guenther  <rguenther@suse.de>
2283
2284         * fold-const.c (fold_binary): Remove duplicate folding
2285         of comparison of non-null ADDR_EXPR against null.
2286
2287 2007-03-05  Richard Guenther  <rguenther@suse.de>
2288             Dorit Nuzman  <dorit@il.ibm.com>
2289
2290         PR tree-optimization/26420
2291         * tree-vectorizer.c (vectorize_loops): Bail out early if there
2292         are no loops in the function.  Only print the number of
2293         vectorized loops if it is greater than zero or we are supposed
2294         to print information about unvectorized loops.
2295
2296 2007-03-05  Revital Eres  <eres@il.ibm.com>
2297
2298         * gcc.dg/var-expand1.c: New test.
2299         * loop-unroll.c (analyze_insn_to_expand_var): Add dump info
2300         when an accumulator is expanded.
2301
2302 2007-03-04  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
2303
2304         PR other/30465
2305         * c-common.c (convert_and_check): Don't give warnings for
2306         conversion if 'expr' already overflowed.
2307         
2308 2007-03-04  Roger Sayle  <roger@eyesopen.com>
2309
2310         PR middle-end/30744
2311         * fold-const.c (fold_comparison): Enforce type consistency when
2312         transforming ~X op ~Y to Y op X, and ~X op C to X op' ~C.
2313
2314 2007-03-04  Zdenek Dvorak  <dvorakz@suse.cz>
2315
2316         * tree-ssa-address.c (create_mem_ref): Do not put an expression
2317         containing a cast to the base of TARGET_MEM_REF.
2318
2319 2007-03-04  Martin Michlmayr  <tbm@cyrius.com>
2320
2321         * tree.c (tree_contains_struct_check_failed): Remove spurious
2322         whitespace from error message.
2323
2324 2007-03-04 Andrew Pinski <andrew_pinski@playstation.sony.com>
2325
2326         PR target/30406
2327         * config/rs6000/rs6000.c (rs6000_function_value): Look at bit size
2328         instead of precision.
2329
2330 2007-03-04  Roman Zippel <zippel@linux-m68k.org>
2331             Nathan Sidwell  <nathan@codesourcery.com>
2332
2333         * emit-rtl.c (find_auto_inc): New.
2334         (try_split): recreate REG_INC notes,
2335         Use regular for loops rather than whiles.
2336
2337 2007-03-03  Andreas Schwab  <schwab@suse.de>
2338
2339         * configure.ac (HAVE_AS_REL16): Move test back to correct place.
2340         * configure: Regenerate.
2341
2342 2007-03-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2343
2344         * builtins.def (ATTR_MATHFN_FPROUNDING): Rely on
2345         flag_rounding_math, not flag_unsafe_math_optimizations.
2346
2347         * c-pretty-print.c (pp_c_direct_abstract_declarator): Use
2348         fold_build2.
2349         * config/alpha/alpha.c (alpha_fold_builtin_zapnot,
2350         alpha_fold_vector_minmax): Likewise.
2351         * config/i386/i386.c (ix86_gimplify_va_arg): Likewise.
2352         * config/sparc/sparc.c (sparc_gimplify_va_arg): Likewise.
2353
2354 2007-03-02  Eric Botcazou  <ebotcazou@adacore.com>
2355
2356         * tree-sra.c (sra_walk_fns) <ldst>: Document new restriction.
2357         (sra_walk_modify_expr) <rhs_elt>: Treat the reference as a use
2358         if the lhs has side-effects.
2359         <lhs_elt>: Treat the reference as a use if the rhs has side-effects.
2360
2361 2007-03-02  Uros Bizjak  <ubizjak@gmail.com>
2362
2363         * config/i386/i386.h (TUNEMASK): Remove define.
2364         (ARCHMASK): Remove define.
2365         (TARGET_*): Use ix86_tune_mask variable instead of TUNEMASK.
2366          Use ix86_arch_mask variable instead of ARCHMASK.
2367         * config/i386/i386.c (override_options): Ditto.
2368         (standard_80387_constant_p): Ditto.
2369
2370 2007-03-02  Ian Lance Taylor  <iant@google.com>
2371
2372         Used signed infinities in VRP.
2373         * tree-vrp.c (uses_overflow_infinity): New static function.
2374         (supports_overflow_infinity): New static function.
2375         (make_overflow_infinity): New static function.
2376         (negative_overflow_infinity): New static function.
2377         (positive_overflow_infinity): New static function.
2378         (is_negative_overflow_infinity): New static function.
2379         (is_positive_overflow_infinity): New static function.
2380         (is_overflow_infinity): New static function.
2381         (overflow_infinity_range_p): New static function.
2382         (compare_values_warnv): New function split out of compare_values.
2383         (compare_value): Call it.
2384         (set_value_range_to_nonnegative): Add overflow_infinity
2385         parameter.  Change caller.
2386         (vrp_expr_computes_nonnegative): Add strict_overflow_p parameter.
2387         Change callers.
2388         (vrp_expr_computes_nonzero): Likewise.
2389         (compare_ranges, compare_range_with_value): Likewise.
2390         (compare_name_with_value, compare_names): Likewise.
2391         (vrp_evaluate_conditional): Likewise.
2392         (set_value_range): Handle infinity
2393         (vrp_operand_equal_p, operand_less_p): Likewise.
2394         (extract_range_from_assert): Likewise.
2395         (vrp_int_const_binop): Likewise.
2396         (extract_range_from_binary_expr): Likewise.
2397         (extract_range_from_unary_expr): Likewise.
2398         (extract_range_from_comparison): Likewise.
2399         (extract_range_from_expr): Likewise.
2400         (dump_value_range): Likewise.
2401         (vrp_visit_cond_stmt, vrp_visit_phi_node): Likewise.
2402         (test_for_singularity): Likewise.
2403         (vrp_int_const_binop): Remove inline qualifier.
2404         (adjust_range_with_scev): Add comment.
2405         * tree-flow.h (vrp_evaluate_conditional): Update declaration.
2406
2407 2007-03-02  Diego Novillo  <dnovillo@redhat.com>
2408
2409         * tree-ssa-structalias.c (could_have_pointers): Tidy.
2410         (get_constraint_for): Likewise.
2411         (do_structure_copy): Likewise.
2412         (find_func_aliases): Fix references to MODIFY_EXPR.
2413         (intra_create_variable_infos): Tidy.
2414         * tree-ssa-operands.c (add_virtual_operand): Add argument
2415         IS_CALL_SITE.
2416         When adding members of alias sets, if IS_CALL_SITE is true and
2417         the symbol is not call-clobbered, skip it.
2418         Adjust all callers.
2419
2420 2007-03-02  Eric Botcazou  <ebotcazou@adacore.com>
2421
2422         * config/alpha/alpha.c (alpha_gp_save_rtx): Insert the insns at the
2423         entry by means of emit_insn_at_entry.
2424
2425 2007-03-02  Richard Henderson  <rth@redhat.com>
2426
2427         * expr.h (promoted_input_arg): Remove decl.
2428         * function.c (promoted_input_arg): Merge into ...
2429         * combine.c (setup_incoming_promotions): ... only caller.
2430         Rearrange to avoid double loop.
2431
2432 2007-03-02  Ben Elliston  <bje@au.ibm.com>
2433             Peter Bergner  <bergner@vnet.ibm.com>
2434             Janis Johnson  <janis187@us.ibm.com>
2435
2436         * config/rs6000/dfp.md: New file.
2437         * config/rs6000/rs6000.md: Include dfp.md.
2438         (add<mode>3_internal1): Disable for DECIMAL_FLOAT_MODE_P operands.
2439         * config/rs6000/rs6000.c (rs6000_hard_regno_mode_ok): Handle DDmode
2440         and TDmode decimal float modes in FP registers.
2441         (num_insns_constant): Likewise.
2442         (rs6000_legitimate_offset_address_p): Likewise.
2443         (rs6000_legitimize_address): Likewise.
2444         (rs6000_legitimize_reload_address): Likewise.
2445         (rs6000_legitimate_address): Likewise.
2446         (rs6000_emit_move): Likewise.
2447         (function_arg_boundary): Likewise.
2448         (function_arg_advance): Likewise.
2449         (rs6000_darwin64_record_arg_recurse): Likewise.
2450         (function_arg): Likewise.
2451         (rs6000_gimplify_va_arg): Likewise.
2452         (rs6000_split_multireg_move): Likewise.
2453         (rs6000_output_function_epilogue): Likewise.
2454         (rs6000_output_function_epilogue): Likewise.
2455         (rs6000_register_move_cost): Likewise.
2456         (rs6000_function_value): Likewise.
2457         (rs6000_libcall_value): Likewise.
2458
2459 2007-03-02  Richard Sandiford  <richard@codesourcery.com>
2460
2461         * config/t-vxworks (LIMITS_H_TEST): Define to true for VxWorks.
2462
2463 2007-03-02  Richard Sandiford  <richard@codesourcery.com>
2464
2465         * config/t-vxworks (LIBGCC2_INCLUDES): Pass -nostdinc.
2466         Use $MULTIDIR to choose between the kernel and RTP headers,
2467         and use $WIND_BASE and $WIND_USR to locate them.
2468
2469 2007-03-02  Uros Bizjak  <ubizjak@gmail.com>
2470
2471         * config/i386/i386.c (override_options): Put initialization of
2472         ix86_tune_mask and ix86_arch_mask to the correct place.
2473
2474 2007-03-02  Uros Bizjak  <ubizjak@gmail.com>
2475             Michael Meissner  <michael.meissner@amd.com>
2476
2477         PR target/31019
2478         * config/i386/i386.h (TUNEMASK): Redefine to use ix86_tune_mask.
2479         (ARCHMASK): Define.
2480         (TARGET_CMOVE): Use ARCHMASK.
2481         (TARGET_CMPXCHG): Ditto.
2482         (TARGET_CMPXCHG8B): Ditto.
2483         (TARGET_XADD): Ditto.
2484         (TARGET_BSWAP): Ditto.
2485         * config/i386/i386.c (ix86_tune_mask): New global variable.
2486         (ix86_arch_mask): Ditto.
2487         (override_options): Initialize ix86_tune_mask and
2488         ix86_arch_mask. Use ARCHMASK to clear MASK_NO_FANCY_MATH_387 in
2489         target_flags.
2490
2491 2007-03-02  Ben Elliston  <bje@au.ibm.com>
2492
2493         PR 30992
2494         * config/dfp-bit.c (DFP_TO_INT): Initialise qval with "1.".
2495
2496 2007-03-02  Joseph Myers  <joseph@codesourcery.com>
2497
2498         * target.h (init_dwarf_reg_sizes_extra): New target hook.
2499         * target-def.h (TARGET_INIT_DWARF_REG_SIZES_EXTRA): New default.
2500         * doc/tm.texi (TARGET_INIT_DWARF_REG_SIZES_EXTRA): Document.
2501         * dwarf2out.c (expand_builtin_init_dwarf_reg_sizes): Call this
2502         hook.
2503         * config/rs6000/rs6000.c (TARGET_INIT_DWARF_REG_SIZES_EXTRA,
2504         rs6000_init_dwarf_reg_sizes_extra): New.
2505         * config/rs6000/linux-unwind.h (ppc_fallback_frame_state): Support
2506         SPE register high parts.
2507
2508 2007-03-01  Brooks Moses  <brooks.moses@codesourcery.com>
2509
2510         * Makefile.in: Add install-pdf target as
2511         copied from automake v1.10 rules.
2512         * configure.ac: Add install-pdf to target list.
2513         * configure: Regenerate.
2514
2515 2007-03-01  Paul Brook  <paul@codesourcery.com>
2516
2517         * config/arm/arm.c (arm_legitimate_index_p): Limit iWMMXt addressing
2518         modes to LDRD for DImode.
2519         (output_move_double): Fixup out of range ldrd/strd.
2520         (vfp_secondary_reload_class): Rename...
2521         (coproc_secondary_reload_class): ... to this.  Add wb argument.
2522         * config/arm/arm.h (SECONDARY_OUTPUT_RELOAD_CLASS): Use
2523         coproc_secondary_reload_class for CLASS_IWMMXT.
2524         (SECONDARY_INPUT_RELOAD_CLASS): Ditto.
2525         * arm-protos.h (coproc_secondary_reload_class): Update prototype.
2526
2527 2007-03-01  Zdenek Dvorak  <dvorakz@suse.cz>
2528
2529         * tree-ssa-loop-prefetch.c (determine_unroll_factor):  Bound the unroll
2530         factor by the estimated number of iterations.
2531         (loop_prefetch_arrays): Do not prefetch in loops that iterate less than
2532         prefetch latency.
2533
2534         * config/i386/driver-i386.c (describe_cache, detect_caches_amd,
2535         decode_caches_intel, detect_caches_intel): New functions.
2536         (host_detect_local_cpu): Use detect_caches_amd and
2537         detect_caches_intel.
2538
2539 2007-03-01  Richard Henderson  <rth@redhat.com>
2540
2541         * expr.c (emit_move_complex_push): Export.
2542         (emit_move_complex_parts): Split out from ...
2543         (emit_move_complex): ... here.
2544         * expr.h (emit_move_complex_push, emit_move_complex_parts): Declare.
2545         * config/i386/i386.md (movcdi): New.
2546
2547 2007-03-01  Uros Bizjak  <ubizjak@gmail.com>
2548
2549         * config/i386/i386.c (ix86_modes_tieable_p): Fix typo, use also
2550         size of mode1 to check for tieable modes in MMX case.
2551
2552 2007-03-01  Richard Sandiford  <richard@codesourcery.com>
2553
2554         * Makefile.in (rtlanal.o): Depend on tree.h.
2555         * rtl.h (offset_within_section_p, split_const): Declare.
2556         * rtlanal.c: Include tree.h.
2557         (offset_within_block_p): New function, taken from
2558         mips_offset_within_object_p.
2559         (split_const): New function, taken from mips_split_const.
2560         * config/m68k/m68k-protos.h (m68k_illegitimate_symbolic_constant_p):
2561         Declare.
2562         * config/m68k/m68k.h (M68K_OFFSETS_MUST_BE_WITHIN_SECTIONS_P): Define.
2563         (CONSTANT_ADDRESS_P): Only accept legitimate constants.
2564         (LEGITIMATE_CONSTANT_P): Check m68k_illegitimate_symbolic_constant_p.
2565         * config/m68k/m68k.c (TARGET_CANNOT_FORCE_CONST_MEM): Define.
2566         (m68k_illegitimate_symbolic_constant_p): New function.
2567         * config/m68k/m68k.md (movsi): Remove misleading predicates.
2568         If M68K_OFFSETS_MUST_BE_WITHIN_SECTIONS_P and the source is a
2569         symbolic constant that might be outside the symbol's section,
2570         move the symbol first and then add the offset.
2571         * config/m68k/uclinux.h (M68K_OFFSETS_MUST_BE_WITHIN_SECTIONS_P):
2572         Override.
2573         * config/mips/mips.c (mips_split_const): Delete.
2574         (mips_offset_within_object_p): Delete.
2575         (mips_symbolic_constant_p): Use offset_within_section_p and
2576         split_const instead of mips_offset_within_object_p and
2577         mips_split_const.
2578         (mips_cannot_force_const_mem, mips_const_insns, mips_unspec_address)
2579         (mips_legitimize_const_move, print_operand_reloc)
2580         (mips_dangerous_for_la25_p): Use split_const instead of
2581         mips_split_const.
2582
2583 2007-02-28  Eric Christopher  <echristo@apple.com>
2584
2585         * Makefile.in (install-include-dir): Don't rm -rf include.
2586
2587 2007-02-28  Richard Guenther  <rguenther@suse.de>
2588
2589         PR middle-end/30364
2590         * fold-const.c (fold_binary): Do not associate expressions
2591         with more than one variable for integer types that do not wrap.
2592
2593 2007-02-28  Sandra Loosemore  <sandra@codesourcery.com>
2594
2595         * builtins.c (fold_builtin_call_list, fold_builtin_call_valist):
2596         Delete, and replace with...
2597         (fold_builtin_call_array): This.  Update callers to use it.
2598         * fold-const.c (fold_build_call_list): Delete, and replace with...
2599         (fold_build_call_array): This.
2600         (fold_build_call_list_initializer): Delete, and replace with...
2601         (fold_build_call_array_initializer): This.
2602         * tree.h: Update declarations to reflect above changes.
2603
2604         * c-typeck.c (build_function_call): Store converted arguments
2605         in a stack-allocated array instead of building a list.
2606         (convert_arguments): Store arguments in the array passed in as an
2607         argument, and return the actual number of arguments.
2608         * c-format.c: (check_function_format): Pass arguments in an
2609         array instead of a list.
2610         * c-common.c (check_function_nonnull): Likewise.
2611         (check_function_sentinel): Likewise.
2612         (check_function_arguments): Likewise.
2613         * c-common.h: Update declarations to reflect above changes.
2614
2615 2007-02-28  Jan Hubicka  <jh@suse.cz>
2616
2617         * predict.def (PRED_TREE_EARLY_RETURN, PRED_CONST_RETURN,
2618         PRED_NEGATIVE_RETURN): Update outcomes.
2619
2620 2007-02-28  Bernd Schmidt  <bernd.schmidt@analog.com>
2621
2622         * calls.c (emit_library_call_value_1): Handle partial registers
2623         correctly when building up CALL_INSN_FUNCTION_USAGE.
2624
2625 2007-02-27  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
2626
2627         * pa/predicates.md (move_src_operand): Allow zero for mode.
2628         * pa/pa.md: Fix constraints for zero CONST_DOUBLE in 64-bit DFmode
2629         move pattern.
2630
2631 2007-02-27  Uros Bizjak  <ubizjak@gmail.com>
2632
2633         PR target/30970
2634         * config/i386/sse.md (*mov<mode>_internal, *movv4sf_internal,
2635         *movv2df_internal): Enable pattern only for valid operand
2636         combinations.
2637         * config/i386/i386.c (ix86_modes_tieable_p): For SSE registers,
2638         tie only 128bit modes. For MMX registers, tie only 64bit modes.
2639
2640 2007-02-27  Mike Stump  <mrs@apple.com>
2641
2642         * config/darwin-crt3.c: Avoid compilation when compiling for a
2643         kext multilib.
2644
2645 2007-02-27  Joseph Myers  <joseph@codesourcery.com>
2646
2647         * Makefile.in (PREPROCESSOR_DEFINES, test-protoize-simple): Define
2648         FIXED_INCLUDE_DIR.
2649         (stmp-int-hdrs, stmp-fixinc, install-headers): Use include-fixed
2650         for fixed headers and limits.h.
2651         (install-include-dir, install-headers-tar, install-headers-cpio,
2652         install-headers-cp, real-install-headers-tar,
2653         real-install-headers-cpio, real-install-headers-cp): Handle
2654         include-fixed as well as include.
2655         (install-mkheaders): Don't install files that go only in include
2656         not include-fixed.
2657         * cppdefault.c (cpp_include_defaults): Separate FIXED_INCLUDE_DIR
2658         from GCC_INCLUDE_DIR.
2659         * gcc.c (process_command): Remove special -BstageN/ handling.
2660         (do_spec_1): Add include-fixed directories.
2661
2662 2007-02-27  Bernd Schmidt  <bernd.schmidt@analog.com>
2663
2664         * config/bfin/t-bfin-elf (LIB1ASMFUNCS): Add _umulsi3_highpart and
2665         _smulsi3_highpart.
2666         * config/bfin/lib1funcs.asm (___umulsi3_highpart, ___smulsi3_highpart):
2667         New functions.
2668         * config/bfin/bfin.md (smulsi3_highpart, umulsi3_highpart): New
2669         patterns.
2670
2671 2007-02-27  Mark Mitchell  <mark@codesourcery.com>
2672
2673         * c-common.c (get_priority): Add check for
2674         SUPPORTS_INIT_PRIORITY.
2675
2676 2007-02-27  Bernd Schmidt  <bernd.schmidt@analog.com>
2677
2678         * config/bfin/bfin.md (doloop_end): FAIL if counter reg isn't SImode.
2679
2680         * config/bfin/bfin.c: Include "cfglayout.h".
2681         (MAX_LSETUP_DISTANCE): New macro.
2682         (struct loop_info): New members incoming, incoming_src and
2683         incoming_dest.  Delete member predecessor.
2684         (length_for_loop): New function.
2685         (bfin_optimize_loop): Handle more different loop structures.
2686         (bfin_discover_loop): Rework detection of predecessor blocks by
2687         examining incoming edges.
2688         (bfin_discover_loops, bfin_free_loops): New functions, broken out of
2689         bfin_reorg_loops.
2690         (bfin_reorder_loops): New function.
2691         (bfin_reorg_loops): Use these three new functions.
2692
2693         * config/bfin/bfin.h (enum reg_class, REG_CLASS_NAMES,
2694         REG_CLASS_CONTENTS): Add D0REGS through D7REGS.
2695         (CONSTRAINT_LEN): Add entry for 'q'.
2696         (REG_CLASS_FROM_CONSTRAINT): Renamed from REG_CLASS_FROM_LETTER.
2697         Add 'q' constraints.
2698         (REGNO_REG_CLASS): For R0 through R7, return corresponding regclass.
2699         (CLASS_LIKELY_SPILLED_P): True for R0, R1 and R2.
2700
2701         * config/bfin/bfin.md (add_with_carry): New pattern.
2702         (s_or_u, su_optab, su_modifier): New code macros/attrs.
2703         (<su_optab>hisi_ll, <su_optab>hisi_lh, <su_optab>hisi_hl,
2704         <su_optab>hisi_hh): Renamed from mulhisi_xx patterns; macroized to
2705         support unsigned multiplies too.  Removed incorrect commutativity from
2706         operand 1 constraint where appropriate.
2707         (usmulhisi_ull, usmulhisi_ulh, usmulhisi_uhl, usmulhisi_uhh): New
2708         patterns.
2709         (<su_optab>hisi_ll_lh, <su_optab>hisi_ll_hl, <su_optab>hisi_ll_hh,
2710         <su_optab>hisi_lh_hl, <su_optab>hisi_lh_hh, <su_optab>hisi_hl_hh):
2711         New patterns.
2712         (usmulhisi_ll_lul, usmulhisi_ll_luh, usmulhisi_ll_hul,
2713         usmulhisi_ll_huh, usmulhisi_lh_lul, usmulhisi_lh_luh, usmulhisi_lh_hul,
2714         usmulhisi_lh_huh, usmulhisi_hl_lul, usmulhisi_hl_luh, usmulhisi_hl_hul,
2715         usmulhisi_hl_huh, usmulhisi_hh_lul, usmulhisi_hh_luh, usmulhisi_hh_hul,
2716         usmulhisi_hh_huh): New patterns.
2717
2718         * config/bfin/bfin.md (ssashiftv2hi3, ssashifthi3, lshiftv2hi3,
2719         lshifthi3): Fix output template to use half reg for operand 2.
2720
2721         * config/bfin/bfin.c (bfin_output_mi_thunk): Use R3 as scratch reg
2722         instead of R2.
2723
2724         * config/bfin/bfin.md (rotl16, rotlsi3, rotrsi3): New patterns.
2725
2726 2007-02-27  Andreas Schwab  <schwab@suse.de>
2727
2728         * Makefile.in (TEXI_GCCINSTALL_FILES): Add gcc-common.texi.
2729
2730 2007-02-27  Jan Hubicka  <jh@suse.cz>
2731
2732         * predict.c (last_basic_block_p): Remove.
2733         (tree_estimate_probability): Update return heuristic for commonized
2734         return blocks.
2735
2736 2007-02-26  Brooks Moses  <brooks.moses@codesourcery.com>
2737
2738         * Makefile.in (TEXI_GCCINSTALL_FILES): Add gcc-vers.texi dependency.
2739
2740 2007-02-26  Brooks Moses  <brooks.moses@codesourcery.com>
2741
2742         * doc/include/gcc-common.texi (versionsubtitle): New macro.
2743         * doc/cpp.texi: Standardize title page.
2744         * doc/cppinternals.texi: Likewise.
2745         * doc/gcc.texi: Standardize title page, remove version number
2746         from copyright page.
2747         * doc/gccint.texi: Likewise.
2748         * doc/install.texi: Standardize title page, add table of
2749         contents.
2750
2751 2007-02-26  Jan Hubicka  <jh@suse.cz>
2752
2753         * predict.def: Set outcomes according to more recent results.
2754         (PRED_LOOP_CONDITION, PRED_LOOP_PRECONDITIONING, PRED_LOOP_HEADER):
2755         Remove dead predictors.
2756         * predict.c (return_prediction): Fix pasto.
2757
2758 2007-02-27  Bernd Schmidt  <bernd.schmidt@analog.com>
2759
2760         * loop-iv.c (simplify_using_initial_values): Fix oversight in previous
2761         change; avoid a memory leak when returning early.
2762
2763 2007-02-26  Mark Mitchell  <mark@codesourcery.com>
2764
2765         * c-decl.c (static_ctors): Move to c-common.c.
2766         (static_dtors): Likewise.
2767         (finish_function): Use c_record_cdtor_fn.
2768         (build_cdtor): Move to c-common.c.
2769         (c_write_global_declarations): Use c_build_cdtor_fns.
2770         * c-common.h (static_ctors): Declare.
2771         (static_dtors): Likewise.
2772         (c_record_cdtor_fn): Likewise.
2773         (c_build_cdtor_fns): Likewise.
2774         * c-common.c (static_ctors): New variable.
2775         (static_dtors): Likewise.
2776         (c_record_cdtor_fn): New function.
2777         (build_cdtor): Move from c-decl.c
2778         (c_build_cdtor_fns): New function.
2779
2780         * output.h (assemble_addr_to_section): Declare.
2781         (get_cdtor_priority_section): Likewise.
2782         * varasm.c (assemble_addr_to_section): New function.
2783         (get_cdtor_priority_section): Likewise.
2784         (default_named_section_asm_out_destructor): Use them.
2785         (destor_dtor_section_asm_out_destructor): Likewise.
2786         (default_named_section_asm_out_constructor): Likewise.
2787         (default_ctor_section_asm_out_constructor): Likewise.
2788         * config.gcc (*-*-vxworks*): Include vxworks.o.
2789         * config/t-vxworks (vxworks.o): New target.
2790         * config/vxworks.h (ALWAYS_NUMBER_CTORS_SECTIONS): Remove.
2791         (TARGET_ASM_CONSTRUCTOR): Define.
2792         (TARGET_ASM_DESTRUCTOR): Likewise.
2793         (vxworks_asm_out_constructor): Declare.
2794         (vxworks_asm_out_destructor): Likewise.
2795
2796         * c-common.c (get_priority): Check that we have not just an
2797         INTEGER_CST, but an integer constant with integeral type.
2798
2799 2007-02-25  Uros Bizjak  <ubizjak@gmail.com>
2800
2801         PR tree-optimization/30938
2802         * tree-vect-transform.c (vectorizable_call): Fix off-by-one error:
2803         use &dt[nargs-1] instead of &dt[nargs] in the call to
2804         vect_is_simple_use().
2805
2806 2007-02-25  Ulrich Weigand  <uweigand@de.ibm.com>
2807
2808         * reload.c (find_reloads_address_1): Handle PLUS expressions resulting
2809         from register elimination as PRE_MODIFY / POST_MODIFY increments.
2810         Do not attempt to handle MEM inside auto-inc expressions.
2811         * reload1.c (eliminate_regs_1): Do not attempt to handle elimination
2812         of a register modified by an auto-inc expression.  However, do handle
2813         elimination of a register used as PRE_MODIFY / POST_MODIFY increment.
2814         (elimination_effects): Prohibit elimination of a register modified
2815         by an auto-inc expression.  Disable register elimination rules whose
2816         target register is modified by an auto-inc expression with variable
2817         increment.
2818
2819 2007-02-25  Zdenek Dvorak  <dvorakz@suse.cz>
2820
2821         * tree-ssa-loop-niter.c (compute_estimated_nb_iterations): Fix
2822         off-by-one error.
2823         (array_at_struct_end_p): New function.
2824         (idx_infer_loop_bounds): Use it.
2825         (estimate_numbers_of_iterations_loop): Export.
2826         * predict.c (predict_loops): Use estimated_loop_iterations_int.
2827         Do not use PRED_LOOP_EXIT on exits predicted by # of iterations.
2828         (tree_estimate_probability): Call record_loop_exits.
2829         * tree-data-ref.c (get_number_of_iters_for_loop): Replaced by ...
2830         (estimated_loop_iterations, estimated_loop_iterations_int,
2831         estimated_loop_iterations_tree): New functions.
2832         (analyze_siv_subscript_cst_affine,
2833         compute_overlap_steps_for_affine_1_2,
2834         analyze_subscript_affine_affine): Use estimated_loop_iterations_int.
2835         (analyze_miv_subscript): Use estimated_loop_iterations_tree.
2836         * predict.def (PRED_LOOP_ITERATIONS): Update comment.
2837         (PRED_LOOP_ITERATIONS_GUESSED): New.
2838         * cfgloop.c (record_loop_exits): Do nothing if there are no loops.
2839         * cfgloop.h (estimate_numbers_of_iterations_loop,
2840         estimated_loop_iterations_int): Declare.
2841
2842 2007-02-25  Mark Mitchell  <mark@codesourcery.com>
2843
2844         * doc/extend.texi: Document optional priority argument to
2845         constructors and destructors.
2846         * tree.c (init_priority_for_decl): Adjust GTY markers.
2847         (init_ttree): Use priority-info hash functions for
2848         init_priority_for_decl.
2849         (tree_map_eq): Rename to ...
2850         (tree_map_base_eq): ... this.
2851         (tree_map_marked_p): Rename to ...
2852         (tree_map_base_marked_p): ... this.
2853         (tree_map_base_hash): New function.
2854         (decl_init_priority_lookup): Rework.
2855         (decl_fini_priority_lookup): New function.
2856         (decl_priority_info): New function.
2857         (decl_init_priority_insert): Use it.
2858         (decl_fini_priority_insert): Likewise.
2859         (decl_restrict_base_lookup): Adjust for refactoring of tree_map
2860         hierarchy.
2861         (decl_restrict_base_insert): Likewise.
2862         (decl_debug_expr_insert): Likewise.
2863         (decl_value_expr_lookup): Likewise.
2864         (decl_value_expr_insert): Likewise.
2865         * tree.h (priority_type): New type.
2866         (decl_init_priority_lookup): Use priority_type.
2867         (decl_fini_priority_lookup): New function.
2868         (decl_init_priority_insert): Use priority_type.
2869         (decl_fini_priority_insert): New function.
2870         (DECL_HAS_INIT_PRIORITY): Tweak comments.
2871         (DECL_INIT_PRIORITY): Likewise.
2872         (SET_DECL_INIT_PRIORITY): Add comment.
2873         (DECL_FINI_PRIORITY): New macro.
2874         (SET_DECL_FINI_PRIORITY): Likewise.
2875         (DEFAULT_INIT_PRIORITY): Document.
2876         (MAX_INIT_PRIORITY): Likewise.
2877         (MAX_RESERVED_INIT_PRIORITY): Likewise.
2878         (tree_map_base): New type.
2879         (tree_map_base_eq): New function.
2880         (tree_map_base_hash): Likewise.
2881         (tree_map_base_marked_p): Likewise.
2882         (tree_map): Inherit from tree_map_base.
2883         (tree_map_eq): Make it a macro.
2884         (tree_map_marked_p): Likewise.
2885         (tree_int_map): Inherit from tree_map_base.
2886         (tree_int_map_eq): Make it a macro.
2887         (tree_int_map_hash): Likewise.
2888         (tree_int_map_marked_p): Likewise.
2889         (tree_priority_map): New type.
2890         (tree_priority_map_eq): New macro.
2891         (tree_priority_map_hash): Likewise.
2892         (tree_priority_map_marked_p): Likewise.
2893         * varasm.c (emults_decl): Adjust for refactoring of tree_map
2894         hierarchy.
2895         (emutls_common_1): Likewise.
2896         * lambda-code.c (replace_uses_equiv_to_x_with_y): Likewise.
2897         * tree-ssa-structalias.c (heapvar_lookup): Adjust for refactoring
2898         of tree_map hierarchy.
2899         * tree-cfg.c (move_stmt_r): Likewise.
2900         (new_label_mapper): Likewise.
2901         * c-tree.h (c_expand_body): Move to ...
2902         * c-common.h (c_expand_body): ... here.
2903         * c-decl.c (c_expand_body): Move to ...
2904         * c-common.c (c_expand_body): ... here.
2905         (c_common_attribute_table): Allow 1 argument for the constructor
2906         and destructor attributes.
2907         (get_priority): New function.
2908         (handle_constructor_attribute): Set DECL_INIT_PRIORITY.
2909         (handle_destructor_attribute): Set DECL_FINI_PRIORITY.
2910
2911 2007-02-24  Jan Hubicka  <jh@suse.cz>
2912
2913         PR middle-end/30509
2914         * tree-inline.c (copy_bb): Produce exact copy of EH info when copying for inlining.
2915
2916 2007-02-24  Uros Bizjak  <ubizjak@gmail.com>
2917             Jan Hubicka  <jh@suse.cz>
2918
2919         PR target/30778
2920         * i386.c (counter_mode): New function.
2921         (expand_set_or_movmem_via_loop): Use it.
2922         (expand_movmem_epilogue): Likewise; fix pasto.
2923         (ix86_expand_movmem): Do emit guard even for constant counts.
2924         (ix86_expand_setmem): Likewise.
2925
2926 2007-02-25  Nick Clifton  <nickc@redhat.com>
2927
2928         * config/frv/frv.h (ASM_OUTPUT_CASE_LABEL): Delete.
2929         (JUMP_TABLES_IN_TEXT_SECTION): Define.
2930
2931 2007-02-24  Uros Bizjak  <ubizjak@gmail.com>
2932
2933         PR target/30770
2934         * config/i386/i386.md (expand_movmem_epilogue): Fix typo, mask
2935         count argument with 0x10, not with 0x16.
2936         (expand_setmem_epilogue): Ditto.
2937
2938 2007-02-24  Mike Stump  <mrs@apple.com>
2939
2940         * config/i386/i386.c (output_pic_addr_const): Stubify optimized
2941         symbols.
2942
2943 2007-02-24  Richard Guenther  <rguenther@suse.de>
2944
2945         PR middle-end/30951
2946         * fold-const.c (fold_binary): Fold x +- CST op x for
2947         EQ_EXPR and NE_EXPR.
2948
2949 2007-02-24  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
2950
2951         * pa.md (muldi3): Force subregs to registers in 64-bit expander.
2952
2953 2007-02-24  Jan Hubicka  <jh@suse.cz>
2954
2955         * cgraphunit.c (decide_is_function_needed): Honor
2956         -fkeep-inline-functions.
2957
2958 2007-02-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2959
2960         * builtins.c (fold_builtin_modf): New.
2961         (fold_builtin_2): Use it.
2962
2963 2007-02-24  Bernd Schmidt  <bernd.schmidt@analog.com>
2964
2965         * loop-iv.c (implies_p): Detect additional cases where A implies B.
2966         (determine_max_iter): Take additional LOOP arg; all callers changed.
2967         Lose broken logic dealing with PLUS.  Try to limit the upper bound by
2968         one using simplifications.
2969         (simplify_using_initial_values): Return if the expression becomes
2970         invalid due to altered regs.
2971
2972 2007-02-23  DJ Delorie  <dj@redhat.com>
2973
2974         * doc/tm.h (BIGGEST_ALIGNMENT): Clarify the purpose of this macro.
2975
2976 2007-02-23  Mike Stump  <mrs@apple.com>
2977
2978         * tlink.c (scan_linker_output): Parse linker messages from
2979         darwin9's linker better.
2980
2981 2007-02-23  Steve Ellcey  <sje@cup.hp.com>
2982
2983         PR debug/29614
2984         * varpool.c (varpool_assemble_pending_decls):  Set
2985         varpool_last_needed_node to null.
2986
2987 2007-02-23  DJ Delorie  <dj@redhat.com>
2988
2989         * config/i386/i386.c (ix86_data_alignment): Don't specify an
2990         alignment bigger than the object file can handle.
2991
2992 2007-02-23  Uros Bizjak  <ubizjak@gmail.com>
2993
2994         PR target/30825
2995         * config/i386/i386.md (*movdi_1_rex64, zero_extendsidi2_32,
2996         zero_extendsidi2_rex64): Penalize MMX register<->memory moves.
2997         (*movsf_1): Penalize MMX moves.
2998
2999 2007-02-23  Bernd Schmidt  <bernd.schmidt@analog.com>
3000
3001         * config/bfin/bfin.md (doloop_end): Fail for loops that can iterate
3002         2^32-1 or more times unless flag_unsafe_loop_optimizations.
3003
3004         * loop-iv.c (determine_max_iter): Moved in front of its sole user.
3005
3006 2007-02-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3007
3008         * builtins.c (fold_builtin_logb, fold_builtin_significand): New.
3009         (fold_builtin_1): Use them.
3010         * fold-const.c (tree_expr_nonnegative_warnv_p): Handle
3011         BUILT_IN_SIGNIFICAND.
3012
3013 2007-02-23  H.J. Lu  <hongjiu.lu@intel.com>
3014
3015         * config/i386/i386.c (bdesc_1arg): Initialize
3016         IX86_BUILTIN_MOVSHDUP and IX86_BUILTIN_MOVSLDUP with
3017         "__builtin_ia32_movshdup" and "__builtin_ia32_movsldup".
3018         (ix86_init_mmx_sse_builtins): Remove IX86_BUILTIN_MOVSHDUP
3019         and IX86_BUILTIN_MOVSLDUP.
3020
3021 2007-02-22  Paolo Bonzini  <bonzini@gnu.org>
3022
3023         PR rtl-optimization/30841
3024         * fwprop.c (propagate_rtx_1): Accept a VOIDmode replacement address.
3025
3026 2007-02-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3027
3028         * builtins.c (fold_builtin_frexp): New.
3029         (fold_builtin_2): Use it.
3030
3031 2007-02-22  Mark Mitchell  <mark@codesourcery.com>
3032
3033         * doc/invoke.texi (Spec Files): Document getenv spec function.
3034
3035         * gcc.c (getenv_spec_function): New function.
3036         (static_spec_functions): Add it.
3037         * config/vxworks.h (VXWORKS_TARGET_DIR): Remove.
3038         (VXWORKS_ADDITIONAL_CPP_SPEC): Use getenv to find the VxWorks
3039         header files.
3040
3041 2007-02-22  Michael Matz  <matz@suse.de
3042
3043         PR c++/29433
3044         * dwarf2out.c (add_AT_string): Call ggc_strdup once per string.
3045         (type_tag): Use lang_hooks.dwarf_name instead of DECL_NAME.
3046
3047 2007-02-22  Ian Lance Taylor  <iant@google.com>
3048
3049         PR debug/30898
3050         * dwarf2out.c (concatn_mem_loc_descriptor): New static function.
3051         (mem_loc_descriptor): Call it.
3052
3053 2007-02-22  Zdenek Dvorak  <dvorakz@suse.cz>
3054             Ira Rosen  <irar@il.ibm.com>
3055
3056         * tree-data-ref.c (ptr_ptr_may_alias_p): Take alias sets into account.
3057
3058 2007-02-22  Ira Rosen  <irar@il.ibm.com>
3059
3060         PR tree-optimization/30843
3061         * tree-vect-transform.c (vect_transform_loop): Remove strided scalar
3062         stores only after all the group is vectorized.
3063
3064 2007-02-22  Dorit Nuzman  <dorit@il.ibm.com>
3065
3066         PR tree-optimization/30858
3067         * tree-vectorizer.c (vect_is_simple_reduction): Check that the stmts
3068         in the reduction cycle have a single use in the loop.
3069         * tree-vectorizer.h (relevant): Add documentation.
3070
3071 2007-02-20  Mike Stump  <mrs@apple.com>
3072
3073         * configure.ac (powerpc*-*-darwin*): #include <sys/cdefs.h>.
3074         * configure: Regenerate.
3075
3076 2007-02-21  Trevor Smigiel  <trevor_smigiel@playstation.sony.com>
3077
3078         Change the defaults of some parameters and options.
3079         * config/spu/spu-protos.h (spu_optimization_options): Declare.
3080         * config/spu/spu.c (spu_optimization_options): Add.
3081         (spu_override_options): Change params in spu_optimization_options.
3082         * config/spu/spu.h (OPTIMIZATION_OPTIONS): Define.
3083
3084         Register 127 is only 16 byte aligned when used as a frame pointer.
3085         * config/spu/spu-protos.h (spu_init_expanders): Declare.
3086         * config/spu/spu.c (spu_expand_prologue): Set REGNO_POINTER_ALIGN for
3087         HARD_FRAME_POINTER_REGNUM.
3088         (spu_legitimate_address):  Use regno_aligned_for_reload.
3089         (regno_aligned_for_load):  HARD_FRAME_POINTER_REGNUM is only 16 byte
3090         aligned when frame_pointer_needed is true.
3091         (spu_init_expanders): New.  Set alignment of HARD_FRAME_POINTER_REGNUM
3092         to 8 bits.
3093         * config/spu/spu.h (INIT_EXPANDERS): Define.
3094
3095         Make sure shift and rotate instructions have valid immediate operands.
3096         * config/spu/predicates.md (spu_shift_operand): Remove.
3097         * config/spu/spu.c (print_operand): Add [efghEFGH] modifiers.
3098         * config/spu/constraints.md (W, O): Extend range.
3099         * config/spu/spu.md (umask, nmask): Define.
3100         (ashl<mode>3, ashldi3, ashlti3_imm, shlqbybi_ti, shlqbi_ti, shlqby_ti,
3101         lshr<mode>3, rotm_<mode>, lshr<mode>3_imm, rotqmbybi_<mode>,
3102         rotqmbi_<mode>, rotqmby_<mode>, ashr<mode>3, rotma_<mode>,
3103         rotl<mode>3, rotlti3, rotqbybi_ti, rotqby_ti, rotqbi_ti): Use
3104         spu_nonmem_operand instead of spu_shift_operands.  Use new modifiers.
3105         (lshr<mode>3_reg):  Fix rtl description.
3106
3107         Make sure mulhisi immediate operands are valid.
3108         * config/spu/predicates.md (imm_K_operand): Add.
3109         * config/spu/spu.md (mulhisi3_imm, umulhisi3_imm): Use imm_K_operand.
3110
3111         Generate constants using fsmbi and andi.
3112         * config/spu/spu.c (enum immediate_class): Add IC_FSMBI2.
3113         (print_operand, spu_split_immediate, classify_immediate,
3114         fsmbi_const_p): Handle IC_FSMBI2.
3115
3116         Correctly handle a CONST_VECTOR containing symbols.
3117         * config/spu/spu.c (print_operand): Handle HIGH correctly.
3118         (spu_split_immediate): Split CONST_VECTORs with -mlarge-mem.
3119         (immediate_load_p): Allow symbols that use 2 instructions to create.
3120         (classify_immediate, spu_builtin_splats):  Don't accept a CONST_VECTOR
3121         with symbols when flag_pic is set.
3122         (const_vector_immediate_p): New.
3123         (logical_immediate_p, iohl_immediate_p, arith_immediate_p): Don't
3124         accept a CONST_VECTOR with symbols.
3125         (spu_legitimate_constant_p): Use const_vector_immediate_p.  Don't
3126         accept a CONST_VECTOR with symbols when flag_pic is set.  Handle HIGH
3127         correctly.
3128         * config/spu/spu.md (high, low): Delete.
3129         (low_<mode>): Define.
3130
3131         Remove INTRmode and INTR_REGNUM, which didn't work.
3132         * config/spu/spu.c (spu_conditional_register_usage): Remove reference
3133         of INTR_REGNUM.
3134         * config/spu/spu-builtins.md (spu_idisable, spu_ienable, set_intr,
3135         set_intr_pic, set_intr_cc, set_intr_cc_pic, set_intr_return, unnamed
3136         peephole2 pattern): Don't use INTR or 131.
3137         (movintrcc): Delete.
3138         * config/spu/spu.h (FIRST_PSEUDO_REGISTER, FIXED_REGISTERS,
3139         CALL_USED_REGISTERS, REGISTER_NAMES, INTR_REGNUM): Remove INTR_REGNUM.
3140         * config/spu/spu.md (UNSPEC_IDISABLE, UNSPEC_IENABLE): Remove.
3141         (UNSPEC_SET_INTR): Add.
3142         * config/spu/spu-modes.def (INTR): Remove.
3143
3144         More accurate warnings about run-time relocations.
3145         * config/spu/spu.c (reloc_diagnostic): Test in_section.
3146
3147         Correctly warn about immediate arguments to specific intrinsics.
3148         * config/spu/spu.c (spu_check_builtin_parm): Handle CONST_VECTORs.
3149         (spu_expand_builtin_1): Call spu_check_builtin_parm before checking
3150         the instruction predicate.
3151
3152         Fix tree check errors with latest update.
3153         * config/spu/spu.c (expand_builtin_args, spu_expand_builtin_1): Use
3154         CALL_EXPR_ARG.
3155         (spu_expand_builtin): Use CALL_EXPR_FN.
3156
3157         Add missing specific intrinsics.
3158         * config/spu/spu-builtins.def: Add si_bisled, si_bisledd and
3159         si_bislede.
3160         * config/spu/spu_internals.h: Ditto.
3161
3162         Fix incorrect operand modifiers.
3163         * config/spu/spu-builtins.md (spu_mpy, spu_mpyu):  Remove use of %H.
3164         * config/spu/spu.md (xor<mode>3):  Change %S to %J.
3165
3166         Optimize one case of zero_extend of a vec_select.
3167         * config/spu/spu.md (_vec_extractv8hi_ze):  Add.
3168
3169         Accept any immediate for hbr.
3170         * config/spu/spu.md (hbr):  Change s constraints to i.
3171
3172 2007-02-21  Paul Brook  <paul@codesourcery.com>
3173
3174         * config/arm/arm.c (thumb2_final_prescan_insn): Don't incrememnt
3175         condexec_count when skipping USE and CLOBBER.
3176
3177 2007-02-21  Nick Clifton  <nickc@redhat.com>
3178
3179         * common.opt (Warray-bounds): Add Warning attribute.
3180         (Wstrict-overflow, Wstrict-overflow=, Wcoverage-mismatch):
3181         Likewise.
3182         (fsized-zeroes): Add Optimization attribute.
3183         (fsplit-wide-types, ftree-scev-cprop): Likewise.
3184         * c.opt (Wc++0x-compat): Add Warning attribute.
3185
3186 2007-02-21  Ulrich Weigand  <uweigand@de.ibm.com>
3187
3188         PR middle-end/30761
3189         * reload1.c (eliminate_regs_in_insn): In the single_set special
3190         case, attempt to re-recognize the insn before falling back to
3191         having reload fix it up.
3192
3193 2007-02-20  Eric Christopher  <echristo@gmail.com>
3194
3195         * config/frv/frv.c (frv_read_argument): Take a tree and int argument.
3196         Rewrite accordingly.
3197         (frv_read_iacc_argument): Ditto.
3198         (frv_expand_set_builtin): Take a call instead of arglist, update for
3199         above changes.
3200         (frv_expand_unop_builtin): Ditto.
3201         (frv_expand_binop_builtin): Ditto.
3202         (frv_expand_cut_builtin): Ditto.
3203         (frv_expand_binopimm_builtin): Ditto.
3204         (frv_expand_voidbinop_builtin): Ditto.
3205         (frv_expand_int_void2arg): Ditto.
3206         (frv_expand_prefetches): Ditto.
3207         (frv_expand_voidtriop_builtin): Ditto.
3208         (frv_expand_voidaccop_builtin): Ditto.
3209         (frv_expand_load_builtin): Ditto.
3210         (frv_expand_store_builtin): Ditto.
3211         (frv_expand_mdpackh_builtin): Ditto.
3212         (frv_expand_mclracc_builtin): Ditto.
3213         (frv_expand_mrdacc_builtin): Ditto.
3214         (frv_expand_mwtacc_builtin): Ditto.
3215         (frv_expand_builtin): Remove usage of CALL_EXPR_ARGS, update
3216         calls for above.
3217
3218 2007-02-20  Janis Johnson  <janis187@us.ibm.com>
3219
3220         * doc/invoke.texi (RS/6000 and PowerPC Options): Add -mcmpb and -mdfp.
3221         * configure.ac (HAVE_GAS_CMPB): Check for assembler support of the
3222         cmpb instruction.
3223         (HAVE_GAS_DFP): Check for assembler support of decimal floating
3224         point instructions.
3225         * configure: Regenerate.
3226         * config.in: Regenerate.
3227         * config/rs6000/rs6000.opt (mcmpb, mdfp): New.
3228         * config/rs6000/rs6000.c (rs6000_override_options): Add CMPB and DFP
3229         masks to power6 and power6x and to POWERPC_MASKS.
3230         * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Define
3231         _ARCH_PWR6.
3232         * config/rs6000/rs6000.h: Check assembler support for CMPB and DFP.
3233         * config/rs6000/sysv4.opt (mprototype): Use variable, not mask.
3234         * config/rs6000/linux64.h (SUBSUBTARGET_OVERRIDE_OPTIONS):
3235         Access PROTOTYPE as variable, not mask.
3236
3237 2007-02-20  Steven Bosscher  <steven@gcc.gnu.org>
3238
3239         * rtl.h (remove_reg_equal_equiv_notes): New prototype.
3240         * rtlanal.c (remove_reg_equal_equiv_notes): New function.
3241         * combine.c (adjust_for_new_dest): Use it.
3242         * postreload.c (reload_combine): Likewise.
3243
3244 2007-02-20  Steven Bosscher  <steven@gcc.gnu.org>
3245
3246         * rtlanal.c (find_reg_equal_equiv_note): Do not find REG_EQ*
3247         notes on an insn with multiple sets, even if single_set returns
3248         non-NULL for that insn.
3249
3250 2007-02-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3251
3252         * fold-const.c (tree_expr_nonnegative_warnv_p): Handle scalb,
3253         scalbn and scalbln.
3254
3255 2007-02-20  Geoffrey Keating  <geoffk@apple.com>
3256
3257         * config/darwin.h (LINK_SPEC): Default -mmacosx-version-min only
3258         if user didn't pass it.
3259         * config/i386/darwin.h (CC1_SPEC): Likewise.
3260         * config/rs6000/darwin.h (CC1_SPEC): Likewise.
3261         (DARWIN_MINVERSION_SPEC): Don't depend on user's setting of
3262         -mmacosx-version-min.
3263
3264 2007-02-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3265             Uros Bizjak  <ubizjak@gmail.com>
3266
3267         * optabs.h (enum optab_index): Add new OTI_scalb.
3268         (scalb_optab): Define corresponding macro.
3269         * optabs.c (init_optabs): Initialize scalb_optab.
3270         * genopinit.c (optabs): Implement scalb_optab using scalb?f3
3271         patterns.
3272         * builtins.c (expand_builtin_mathfn_2, expand_builtin): Handle
3273         BUILT_IN_SCALB{,F,L}, BUILT_IN_SCALBN{,F,L} and BUILT_IN_SCALBLN{,F,L}.
3274         (expand_builtin): Expand BUILT_IN_SCALB{,F,L}, BUILT_IN_SCALBN{,F,L}
3275         and BUILT_IN_SCALBLN{,F,L} using expand_builtin_mathfn_2 if
3276         flag_unsafe_math_optimizations is set.
3277
3278         * config/i386/i386.md (scalbxf3, scalb<mode>3): New expanders
3279         to implement scalbf, scalb and scalbl built-ins as inline x87
3280         intrinsics.
3281
3282 2007-02-20  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
3283             DJ Delorie <dj@redhat.com>
3284
3285         PR other/30824
3286         * diagnostic.c (diagnostic_count_diagnostic): Move -Werror logic to...
3287         (diagnostic_report_diagnostic): ... here, and turn them into real
3288         errors. If warnings are inhibited, no need to do anything.
3289
3290 2007-02-20  Uros Bizjak  <ubizjak@gmail.com>
3291
3292         * config/i386/i386.md (expm1xf2): Reorder insn sequence for
3293         better code generation.
3294
3295 2007-02-20  Ben Elliston  <bje@au.ibm.com>
3296
3297         * config/m68hc11/m68hc11.h (OVERRIDE_OPTIONS): Remove extra ;.
3298
3299 2007-02-20  Kazu Hirata  <kazu@codesourcery.com>
3300
3301         * config/alpha/alpha.c, config/alpha/alpha.md,
3302         config/alpha/lib1funcs.asm, config/alpha/vms-crt0-64.c,
3303         config/alpha/vms-psxcrt0-64.c, config/arc/arc.c,
3304         config/arc/arc.h, config/arm/arm.c, config/arm/arm.md,
3305         config/arm/lib1funcs.asm: Follow spelling conventions.
3306
3307         * config/c4x/c4x.md, config/cris/cris.c, config/crx/crx.c,
3308         config/fr30/fr30.md, config/i386/i386.h,
3309         config/iq2000/iq2000.h, config/iq2000/predicates.md,
3310         config/pa/milli64.S, config/pa/pa.c, config/pa/pa.h,
3311         config/pa/pa.md, config/pa/pa32-regs.h, config/pa/pa64-regs.h,
3312         config/pdp11/pdp11.c, config/pdp11/pdp11.h,
3313         config/rs6000/altivec.md, config/rs6000/rs6000.c,
3314         config/s390/s390-modes.def, config/sparc/netbsd-elf.h,
3315         config/sparc/sparc.c, config/sparc/sparc.h,
3316         config/sparc/sparc.md, config/spu/constraints.md,
3317         config/spu/spu.c, config/stormy16/stormy16.md: Follow spelling
3318         conventions.
3319
3320 2007-02-20  Alan Modra  <amodra@bigpond.net.au>
3321
3322         PR target/29943
3323         * varasm.c (use_blocks_for_decl_p): Return false for decls with
3324         alias attribute.
3325
3326 2007-02-19  Kazu Hirata  <kazu@codesourcery.com>
3327
3328         * doc/invoke.texi (-ftree-lrs): Remove.
3329
3330 2007-02-19  Diego Novillo  <dnovillo@redhat.com>
3331
3332         * tree-ssa-pre.c (create_value_expr_from): Initialize POOL to
3333         NULL.
3334
3335 2007-02-19  Lee Millward  <lee.millward@codesourcery.com>
3336
3337         * config/ia64/ia64.c (ia64_expand_builtin): Use the
3338         new CALL_EXPR_FN macro for retrieving the function
3339         declaration of the input expression.
3340
3341 2007-02-19  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
3342
3343         * c.opt (Waddress): New.
3344         * common.opt (Walways-true): Delete.
3345         (Wstring-literal-comparison): Delete.
3346         * doc/invoke.texi (Warning Options): Delete -Walways-true and
3347         -Wstring-literal-comparison. Add -Waddress.
3348         (Waddress): New.
3349         (Walways-true): Delete.
3350         (Wstring-literal-comparison): Delete.
3351         * doc/extend.texi (#pragma GCC diagnostic): Use -Wformat
3352         consistently instead of -Walways-true in example.
3353         * c-opts.c (c_common_handle_option): -Waddress is enabled by -Wall.
3354         * c-typeck.c (parser_build_binary_op): Replace
3355         -Wstring-literal-comparison and -Walways-true with -Waddress.
3356         * c-common.c (c_common_truthvalue_conversion): Replace -Walways-true
3357         with -Waddress.
3358
3359 2007-02-19  Eric Botcazou  <ebotcazou@adacore.com>
3360
3361         * tree-cfg.c (dump_function_to_file): Be prepared for functions
3362         without DECL_STRUCT_FUNCTION initialized.
3363
3364 2007-02-19  Eric Botcazou  <ebotcazou@adacore.com>
3365
3366         * gimplify.c (gimplify_init_ctor_preeval_1): Detect potential overlap
3367         due to calls to functions taking pointers as parameters.
3368
3369 2007-02-19  Richard Henderson  <rth@redhat.com>
3370
3371         PR debug/29558
3372         * var-tracking.c (track_expr_p): Disallow AGGREGATE_TYPE_P
3373         in memory.
3374
3375 2007-02-19  Andreas Krebbel  <krebbel1@de.ibm.com>
3376
3377         * config/s390/s390.c (s390_call_saved_register_used,
3378         s390_function_ok_for_sibcall): Adjust the way CALL_EXPR arguments are
3379         accessed to the new scheme.
3380
3381 2007-02-19  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
3382
3383         * config/cris/cris.c (cris_movem_load_rest_p, cris_store_multiple_op_p)
3384         (cris_print_index, cris_print_operand, cris_print_operand_address)
3385         (cris_reload_address_legitimized, cris_rtx_costs, cris_address_cost)
3386         (cris_side_effect_mode_ok, cris_valid_pic_const, cris_split_movdx)
3387         (cris_expand_pic_call_address): Use xxx_P predicate macros instead of
3388         GET_CODE () == xxx.
3389         * config/cris/cris.h (SECONDARY_RELOAD_CLASS, EXTRA_CONSTRAINT_Q,
3390         EXTRA_CONSTRAINT_T, BDAP_INDEX_P, BIAP_INDEX_P, SIMPLE_ADDRESS_P,
3391         GO_IF_LEGITIMATE_ADDRESS): Ditto.
3392         * config/cris/cris.md (define_insns: *btst, movdi, *mov_side<mode>)
3393         (*mov_sidesisf, *mov_side<mode>_mem, *mov_sidesisf_mem)
3394         (*clear_side<mode>, movsi, *movsi_internal, *ext_sideqihi)
3395         (*ext_side<mode>si, *op_side<mode>, *op_swap_side<mode>, addsi3)
3396         (*extopqihi_side, *extop<mode>si_side, *extopqihi_swap_side)
3397         (*extop<mode>si_swap_side, addi_mul, *addi,andsi3, andhi3, ashl<mode>3)
3398         (uminsi3, call, call_value): Ditto.
3399         (define_split: indir_to_reg_split, unnamed): Ditto.
3400
3401 2007-02-19  Dorit Nuzman  <dorit@il.ibm.com>
3402
3403         PR tree-optimization/30975
3404         * tree-vect-trasnform.c (vect_get_vec_def_for_stmt_copy): Remove
3405         wrong assert.
3406
3407 2007-02-18  Eric Christopher  <echristo@gmail.com>
3408
3409         * mips.c (mips_prepare_builtin_arg): Add argnum parameter.
3410         Remove use of arglist.
3411         (mips_expand_builtin): Remove use of arglist, pass in expr.
3412         (mips_expand_builtin_direct): Rewrite handling for arglist removal.
3413         (mips_expand_builtin_movtf): Ditto.
3414         (mips_expand_builtin_compare): Ditto.
3415
3416 2007-02-19  Alexandre Oliva  <aoliva@redhat.com>
3417
3418         * tree-sra.c (sra_build_assignment): Replace assertion
3419         checking with a comment explaining why it can't be done.
3420
3421 2007-02-18  Sandra Loosemore  <sandra@codesourcery.com>
3422
3423         PR middle-end/30833
3424         * tree-dump.c (dequeue_and_dump): Add tcc_vl_exp case missed
3425         during CALL_EXPR representation conversion.
3426         * tree-ssa-propagate.c (set_rhs): Likewise.
3427
3428 2007-02-19  Alexandre Oliva  <aoliva@redhat.com>
3429
3430         * tree-sra.c (sra_build_assignment): Disable assertion checking
3431         for now.
3432
3433 2007-02-18  Roger Sayle  <roger@eyesopen.com>
3434
3435         * function.c (gimplify_parameters): Call build_gimple_modify_stmt
3436         instead of calling build2 with a GIMPLE_MODIFY_STMT.
3437         * gimple-low.c (lower_function_body, lower_builtin_setjmp):
3438         Likewise.
3439         * gimplify.c (build_stack_save_restore, gimplify_return_expr,
3440         gimplify_decl_expr,  gimplify_self_mod_expr, gimplify_cond_expr,
3441         gimplify_init_ctor_eval_range, gimple_push_cleanup,
3442         gimplify_omp_for, gimplify_omp_atomic_pipeline,
3443         gimplify_omp_atomic_mutex, gimplify_expr, gimplify_one_sizepos,
3444         force_gimple_operand): Likewise.
3445         * ipa-cp.c (constant_val_insert): Likewise.
3446         * lambda-code.c (lbv_to_gcc_expression, lle_to_gcc_expression,
3447         lambda_loopnest_to_gcc_loopnest, replace_uses_equiv_to_x_with_y,
3448         perfect_nestify): Likewise.
3449         * langhooks.c (lhd_omp_assignment): Likewise.
3450         * omp-low.c (lower_rec_input_clauses, lower_reduction_clauses,
3451         lower_copyprivate_clauses, lower_send_clauses,
3452         lower_send_shared_vars, expand_parallel_call,
3453         expand_omp_for_generic, expand_omp_for_static_nochunk,
3454         expand_omp_for_static_chunk, expand_omp_sections,
3455         lower_omp_single_copy, lower_omp_for_lastprivate,
3456         lower_omp_parallel, init_tmp_var, save_tmp_var): Likewise.
3457         * value-prof.c (tree_divmod_fixed_value, tree_mod_pow2,
3458         tree_mod_subtract, tree_ic, tree_stringop_fixed_value):
3459         Likewise.
3460
3461 2007-02-19  Kazu Hirata  <kazu@codesourcery.com>
3462
3463         * config/sh/divtab.c, config/sh/sh.c, config/sh/sh.h,
3464         config/sh/sh.md: Follow spelling conventions.
3465
3466         * config/frv/frv.c, config/frv/frv.h, config/frv/frv.md,
3467         config/frv/predicates.md: Follow spelling conventions.
3468
3469         * config/m68k/linux-unwind.h: Fix a comment typo.
3470         * target.h: Follow spelling conventions.
3471
3472 2007-02-18  Roger Sayle  <roger@eyesopen.com>
3473
3474         PR rtl-optimization/28173
3475         * simplify-rtx.c (simplify_binary_operation_1) <IOR>:  Optimize
3476         (X & C1) | C2 as C2 when (C1 & C2) == C1 and X has no side-effects.
3477         Optimize (X & C1) | C2 as X | C2 when (C1 | C2) == ~0.
3478         Canonicalize (X & C1) | C2 as (X & (C1 & ~C2)) | C2.
3479         <AND>: Canonicalize (X | C1) & C2 as (X & C2) | (C1 & C2).
3480
3481 2007-02-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3482
3483         * builtins.c (fold_builtin_load_exponent): New.
3484         (fold_builtin_2): Use it.
3485
3486 2007-02-18  Steven Bosscher  <steven@gcc.gnu.org>
3487
3488         PR rtl-optimization/30773
3489         * local-alloc.c (update_equiv_regs): Do not set reg_equiv_init
3490         if we fail to attach a REG_EQUIV note.
3491
3492 2007-02-18  David Edelsohn  <edelsohn@gnu.org>
3493             Roger Sayle  <roger@eyesopen.com>
3494
3495         * config/rs6000/rs6000.md (bswapsi2): New define_insn and splitter.
3496
3497 2007-02-18  Sandra Loosemore  <sandra@codesourcery.com>
3498
3499         * calls.c (initialize_argument_information): Pass original EXP
3500         and STRUCT_VALUE_ADDR_VALUE instead of a list of arguments.  Move
3501         code to split complex arguments here, as part of initializing the
3502         ARGS array.
3503         (expand_call): Remove code that builds a list of arguments and
3504         inserts implicit arguments into it.  Instead, just count how many
3505         implicit arguments there will be so we can determine the size of
3506         the ARGS array, and let initialize_argument_information do the work.
3507         (split_complex_values): Delete unused function.
3508
3509 2007-02-18  Eric Botcazou  <ebotcazou@adacore.com>
3510
3511         * tree-eh.c (tree_could_trap_p): Handle VIEW_CONVERT_EXPR.
3512
3513 2007-02-18  Eric Botcazou  <ebotcazou@adacore.com>
3514
3515         * calls.c (mem_overlaps_already_clobbered_arg_p): Return true
3516         for arg pointer based indexed addressing.
3517
3518 2007-02-18  Kazu Hirata  <kazu@codesourcery.com>
3519
3520         * config/ia64/ia64.h, config/ia64/ia64.md,
3521         config/ia64/predicates.md, config/ia64/sysv4.h: Follow
3522         spelling conventions.
3523
3524 2007-02-18  Roman Zippel <zippel@linux-m68k.org>
3525
3526         * config/m68k/m68k.c (split_di): New.
3527         * config/m68k/m68k-protos.h: Declare split_di.
3528         * config/m68k/m68k.md (extendsidi2*,ashldi3*,ashrdi3*,lshrdi3*):
3529           Improve predicate handling and split constant shifts.
3530
3531 2007-02-18  Roman Zippel <zippel@linux-m68k.org>
3532
3533         * config/m68k/m68k.md (extv,extzv,insv): disable dynamic
3534         parameter for register bitfield operations, general predicates
3535         cleanup
3536
3537 2007-02-18  Roman Zippel <zippel@linux-m68k.org>
3538
3539         * config/m68k/linux.h (MD_UNWIND_SUPPORT): Define.
3540         * config/m68k/linux-unwind.h: New file.
3541
3542 2007-02-18  Kazu Hirata  <kazu@codesourcery.com>
3543
3544         * cfgloop.c, config/alpha/alpha.c, config/bfin/bfin.c,
3545         config/i386/athlon.md, config/ia64/ia64.md,
3546         config/rs6000/rs6000.c, config/s390/s390.c, config/spu/spu.md,
3547         df-problems.c, df.h, fold-const.c, ipa-cp.c, ipa-inline.c,
3548         ipa-prop.h, see.c, struct-equiv.c, tree-inline.c,
3549         tree-ssa-loop-niter.c, tree-vect-analyze.c,
3550         tree-vect-transform.c: Fix comment typos.
3551
3552 2007-02-17  Kazu Hirata  <kazu@codesourcery.com>
3553
3554         * sched-deps.c (find_insn_list): Remove.
3555         * sched-int.h: Remove the prototype for find_insn_list.
3556
3557 2007-02-16  Geoffrey Keating  <geoffk@apple.com>
3558
3559         * config/darwin.h (LINK_SPEC): Always pass -macosx_version_min
3560         to linker.
3561         (DARWIN_EXTRA_SPECS): Add %(darwin_minversion).
3562         * config/rs6000/darwin.h (SUBTARGET_OVERRIDE_OPTIONS): Just call
3563         darwin_rs6000_override_options.
3564         (C_COMMON_OVERRIDE_OPTIONS): Expect
3565         darwin_macosx_version_min to be non-NULL always.
3566         (TARGET_C99_FUNCTIONS): Likewise.
3567         (CC1_SPEC): Always pass -mmacosx-version-min to cc1*.
3568         (DARWIN_MINVERSION_SPEC): New.
3569         * config/rs6000/rs6000.c (darwin_rs6000_override_options): New.
3570         * config/i386/darwin.h (CC1_SPEC): Always pass -mmacosx-version-min
3571         to cc1*.
3572         (DARWIN_MINVERSION_SPEC): New.
3573         * config/darwin.opt (mmacosx-version-min): Initialize to non-NULL
3574         value.
3575         * config/darwin-c.c (darwin_cpp_builtins): Expect
3576         darwin_macosx_version_min to be non-NULL always.
3577
3578         * config/rs6000/rs6000.c: Clean up trailing whitespace.
3579
3580 2007-02-16  Uros Bizjak  <ubizjak@gmail.com>
3581
3582         * config/i386/i386.h (x86_use_xchgb): New.
3583         (TARGET_USE_XCHGB): New macro.
3584         * config/i386/i386.c (x86_use_xchgb): Set for PENT4.
3585         * config/i386/i386.md (*rotlhi3_1 splitter, *rotrhi3_1 splitter):
3586         Split after reload into bswaphi for shifts of 8.
3587         (bswaphi_lowpart): Generate rolw insn for HImode byte swaps.
3588         (*bswaphi_lowpart_1): Generate xchgb for Q registers for TARGET_XCHGB
3589         or when optimizing for size.
3590
3591 2007-02-16  Richard Guenther  <rguenther@suse.de>
3592             Christian Bruel  <christian.bruel@st.com>
3593
3594         * fold-const.c (tree_swap_operands_p): Treat SSA_NAMEs like
3595         DECLs but prefer SSA_NAMEs over DECLs.
3596
3597 2007-02-16  Richard Guenther  <rguenther@suse.de>
3598
3599         * tree-flow-inline.h (single_imm_use_p): Remove.
3600         (zero_imm_uses_p): Likewise.
3601         * tree-ssa-coalesce.c (create_outofssa_var_map): Use has_single_use
3602         instead of single_imm_use_p.
3603         * tree-cfg.c (replace_uses_by): Use has_zero_use instead of
3604         zero_imm_uses_p.
3605
3606 2007-02-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3607
3608         PR other/27843
3609         * Makefile.in (SYSTEM_HEADER_DIR): Use single quotes to avoid
3610         nested double- and backquotes.
3611
3612 2007-02-15  Roger Sayle  <roger@eyesopen.com>
3613
3614         PR middle-end/30391
3615         * tree.c (expr_align): Handle MODIFY_EXPR.  GIMPLE_MODIFY_STMT
3616         should be unreachable.
3617         (build2_stat): Allow construction of MODIFY_EXPR at any time.
3618         For the time being redirect GIMPLE_MODIFY_STMT to the new
3619         (renamed) build_gimple_modify_stmt_stat.
3620         (build2_gimple_stat): Rename to...
3621         (build_gimple_modify_stmt_stat): Now longer take a CODE argument.
3622         Always build a GIMPLE_MODIFY_STMT node.
3623         * tree.h (build2_gimple, build2_gimple_stat): Delete.
3624         (build_gimple_modify_stmt, build_gimple_modify_stmt_stat): New
3625         declarations.
3626
3627         * tree-cfg.c (factor_computed_gotos, tree_merge_blocks,
3628         gimplify_val): Use build_gimple_modify_stmt instead of build2_gimple.
3629         * tree-complex.c (set_component_ssa_name, expand_complex_move,
3630         expand_complex_div_wide): Likewise.
3631         * tree-ssa-dom.c (record_equivalences_from_stmt): Likewise.
3632         * tree-ssa-loop-im.c (schedule_sm): Likewise.
3633         * tree-ssa-loop-ivopts.c (rewrite_use_nonlinear_expr): Likewise.
3634         * tree-ssa-loop-manip.c (create_iv): Likewise.
3635         * tree-ssa-phiopt.c (conditional_replacement, minmax_replacement,
3636         abs_replacement): Likewise.
3637         * tree-ssa-pre.c (create_expression_by_pieces, poolify_modify_stmt,
3638         realify_fake_stores): Likewise.
3639
3640         * builtins.c (std_expand_builtin_va_start): Build a MODIFY_EXPR
3641         node rather than a GIMPLE_MODIFY_STMT node.
3642         (std_gimpify_va_arg_expr, expand_builtin_va_copy,
3643         fold_builtin_memset, fold_builtin_memory_op, do_mpfr_sincos):
3644         Likewise.
3645         (integer_valued_real_p): Handle MODIFY_EXPR, not GIMPLE_MODIFY_STMT.
3646         * expr.c (expand_expr_real_1): Handle both MODIFY_EXPR and
3647         GIMPLE_MODIFY_STMT.
3648
3649 2007-02-15  Andrew Pinski  <andrew_pinski@playstation.sony.com>
3650
3651         PR middle-end/30433
3652         * fold-const.c (fold_comparison): Add back the
3653         folding of constant complex comparisions.
3654
3655 2007-02-15  Andrew Pinski  <andrew_pinski@playstation.sony.com>
3656
3657         PR middle-end/30729
3658         * stmt.c (warn_if_unused_value): VA_ARG_EXPR has side
3659         effects unknown to this function, return early.
3660
3661 2007-02-15  Ian Lance Taylor  <iant@google.com>
3662
3663         * lower-subreg.c (move_eh_region_note): New static function.
3664         (resolve_simple_move): Call it.
3665         (decompose_multiword_subregs): Track blocks for which we resolve a
3666         simple move which is also a control flow insn.  Pass them to
3667         find_many_sub_basic_blocks.
3668         (pass_lower_subreg): Add TODO_verify_flow.
3669         (pass_lower_subreg2): Likewise.
3670
3671 2007-02-15  Sandra Loosemore  <sandra@codesourcery.com>
3672             Brooks Moses  <brooks.moses@codesourcery.com>
3673             Lee Millward  <lee.millward@codesourcery.com>
3674
3675         * tree.h (enum tree_code_class): Add tcc_vl_exp.
3676         (VL_EXP_CLASS_P): New.
3677         (TREE_OPERAND_CHECK): Use TREE_OPERAND_LENGTH instead of
3678         TREE_CODE_LENGTH.
3679         (TREE_OPERAND_CHECK_CODE): Likewise.
3680         (GIMPLE_STMT_OPERAND_CHECK): Likewise.
3681         (TREE_RTL_OPERAND_CHECK): Likewise.
3682         (tree_operand_check_failed): Make second parameter the whole tree
3683         instead of its code.  Fixed callers.
3684         (VL_EXP_CHECK): New.
3685         (TREE_OPERAND_LENGTH): New.
3686         (VL_EXP_OPERAND_LENGTH): New.
3687         (CALL_EXPR_FN): New.
3688         (CALL_EXPR_STATIC_CHAIN): New.
3689         (CALL_EXPR_ARGS): New.
3690         (CALL_EXPR_ARG): New.
3691         (call_expr_nargs): New.
3692         (CALL_EXPR_ARGP): New.
3693         (build_nt_call_list): Declare.
3694         (build_vl_exp_stat): Declare.
3695         (build_vl_exp): New.
3696         (build_call_list): Declare.
3697         (build_call_nary): Declare.
3698         (build_call_valist): Declare.
3699         (build_call_array): Declare.
3700         (call_expr_arg): Declare.
3701         (call_expr_argp): Declare.
3702         (call_expr_arglist): Declare.
3703         (fold_build_call_list): Declare.
3704         (fold_build_call_list_initializer): Declare.
3705         (fold_call_expr): Declare to replace fold_builtin.
3706         (fold_builtin_fputs): Update to agree with modified definition.
3707         (fold_builtin_strcpy): Likewise.
3708         (fold_builtin_strncpy): Likewise.
3709         (fold_builtin_memory_chk): Likewise.
3710         (fold_builtin_stxcpy_chk): Likewise.
3711         (fold_builtin_strncpy_chk): Likewise.
3712         (fold_builtin_next_arg): Likewise.
3713         (fold_build_call_expr): Declare.
3714         (fold_builtin_call_list): Declare.
3715         (fold_builtin_call_valist): Declare.
3716         (build_call_expr): Declare.
3717         (validate_arglist): Update to agree with modified definition.
3718         (tree_operand_length): New.
3719         (call_expr_arg_iterator): New.
3720         (init_call_expr_arg_iterator): New.
3721         (next_call_expr_arg): New.
3722         (first_call_expr_arg): New.
3723         (more_call_expr_args_p): New.
3724         (FOR_EACH_CALL_EXPR_ARG): New.
3725
3726         * tree.c (tree_code_class_string): Add entries for tcc_vl_exp
3727         and tcc_gimple_stmt.
3728         (tree_code_size): Update documentation.  Use sizeof (tree) rather
3729         than sizeof (char *).
3730         (tree_size): Likewise.  Add case for tcc_vl_exp.
3731         (tree_node_structure): Add case for tcc_vl_exp.
3732         (contains_placeholder_p): Likewise.
3733         (substitute_in_expr): Likewise.
3734         (substitute_placeholder_in_expr): Likewise.
3735         (stabilize_reference_1): Likewise.
3736         (build3_stat): Remove logic for CALL_EXPRs.  Replace with assertion
3737         to diagnose breakage of this interface for constructing CALL_EXPRs.
3738         (build_nt): Add similar assertion here.
3739         (build_nt_call_list): New.
3740         (simple_cst_equal) <CALL_EXPR>: Rewrite to use new accessors.
3741         (iterative_hash_expr): Use TREE_OPERAND_LENGTH instead of
3742         TREE_CODE_LENGTH.
3743         (get_callee_fndecl): Use new CALL_EXPR accessors.
3744         (tree_operand_check_failed): Change parameters to pass entire node
3745         instead of its code, so that we can call TREE_OPERAND_LENGTH on it.
3746         (process_call_operands): New.
3747         (build_vl_exp_stat): New.
3748         (build_call_list): New.
3749         (build_call_nary): New.
3750         (build_call_valist): New.
3751         (build_call_array): New.
3752         (walk_tree): Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH.
3753         (call_expr_arglist): New.
3754
3755         * tree.def (CALL_EXPR): Change representation of CALL_EXPRs to use
3756         tcc_vl_exp instead of a fixed-size tcc_expression.
3757
3758         * doc/c-tree.texi (CALL_EXPR): Document new representation and
3759         accessors for CALL_EXPRs.
3760         (AGGR_INIT_EXPR): Likewise.
3761
3762 2007-02-15  Sandra Loosemore  <sandra@codesourcery.com>
3763             Brooks Moses  <brooks.moses@codesourcery.com>
3764             Lee Millward  <lee.millward@codesourcery.com>
3765
3766         * builtins.c (c_strlen): Return NULL_TREE instead of 0.
3767         (expand_builtin_nonlocal_goto): Change parameter to be entire
3768         CALL_EXPR instead of an arglist.  Use new CALL_EXPR accessors.
3769         (expand_builtin_prefetch): Likewise.
3770         (expand_builtin_classify_type): Likewise.
3771         (mathfn_built_in): Return NULL_TREE instead of 0.
3772         (expand_errno_check): Use new CALL_EXPR accessors.
3773         (expand_builtin_mathfn): Use new CALL_EXPR accessors and constructors.
3774         Return NULL_RTX instead of 0.
3775         (expand_builtin_mathfn_2): Likewise.
3776         (expand_builtin_mathfn_3): Likewise.
3777         (expand_builtin_interclass_mathfn): Likewise.
3778         (expand_builtin_sincos): Likewise.
3779         (expand_builtin_cexpi): Likewise.
3780         (expand_builtin_int_roundingfn): Likewise.
3781         (expand_builtin_int_roundingfn_2): Likewise.
3782         (expand_builtin_pow): Likewise.
3783         (expand_builtin_powi): Likewise.
3784         (expand_builtin_strlen): Pass entire CALL_EXPR as parameter instead
3785         of arglist, fixing callers appropriately.  Use new CALL_EXPR
3786         accessors and constructors.  Return NULL_RTX instead of 0.
3787         (expand_builtin_strstr): Likewise.
3788         (expand_builtin_strchr): Likewise.
3789         (expand_builtin_strrchr): Likewise.
3790         (expand_builtin_strpbrk): Likewise.
3791         (expand_builtin_memcpy): Likewise.
3792         (expand_builtin_mempcpy): Likewise.
3793         (expand_builtin_mempcpy_args): New.
3794         (expand_builtin_memmove): Similarly to expand_builtin_mempcpy.
3795         (expand_builtin_memmove_args): New.
3796         (expand_builtin_bcopy): Similarly to expand_builtin_mempcpy.
3797         (expand_movstr): Likewise.
3798         (expand_builtin_strcpy): Likewise.
3799         (expand_builtin_strcpy_args): New.
3800         (expand_builtin_stpcpy): Similarly to expand_builtin_strcpy.
3801         (expand_builtin_strncpy): Likewise.
3802         (expand_builtin_memset): Likewise.
3803         (expand_builtin_memset_args): New.
3804         (expand_builtin_bzero): Similarly to expand_builtin_memset.
3805         (expand_builtin_memcmp): Likewise.
3806         (expand_builtin_strcmp): Likewise.
3807         (expand_builtin_strncmp): Likewise.
3808         (expand_builtin_strcat): Likewise.
3809         (expand_builtin_strncat): Likewise.
3810         (expand_builtin_strspn): Likewise.
3811         (expand_builtin_strcspn): Likewise.
3812         (expand_builtin_args_info): Likewise.
3813         (expand_builtin_va_start): Likewise.
3814         (gimplify_va_arg_expr): Likewise.
3815         (expand_builtin_va_end): Likewise.
3816         (expand_builtin_va_copy): Likewise.
3817         (expand_builtin_frame_address): Likewise.
3818         (expand_builtin_alloca): Likewise.
3819         (expand_builtin_bswap): Likewise.
3820         (expand_builtin_unop): Likewise.
3821         (expand_builtin_fputs): Likewise.
3822         (expand_builtin_expect): Likewise.
3823         (expand_builtin_fabs): Likewise.
3824         (expand_builtin_copysign): Likewise.
3825         (expand_builtin_printf): Likewise.
3826         (expand_builtin_fprintf): Likewise.
3827         (expand_builtin_sprintf): Likewise.
3828         (expand_builtin_init_trampoline): Likewise.
3829         (expand_builtin_signbit): Likewise.
3830         (expand_builtin_fork_or_exec): Likewise.
3831         (expand_builtin_sync_operation): Likewise.
3832         (expand_builtin_compare_and_swap): Likewise.
3833         (expand_builtin_lock_test_and_set): Likewise.
3834         (expand_builtin_lock_release): Likewise.
3835         (expand_builtin): Likewise.
3836         (builtin_mathfn_code): Likewise.
3837
3838         (fold_builtin_constant_p): Pass call arguments individually instead
3839         of as an arglist, fixing callers appropriately.  Use new CALL_EXPR
3840         accessors and constructors.  Return NULL_TREE instead of 0.
3841         (fold_builtin_expect): Likewise.
3842         (fold_builtin_classify_type): Likewise.
3843         (fold_builtin_strlen): Likewise.
3844         (fold_builtin_nan): Likewise.
3845         (integer_valued_real_p): Likewise.
3846         (fold_trunc_transparent_mathfn): Likewise.
3847         (fold_fixed_mathfn): Likewise.
3848         (fold_builtin_cabs): Likewise.
3849         (fold_builtin_sqrt): Likewise.
3850         (fold_builtin_cbrt): Likewise.
3851         (fold_builtin_cos): Likewise.
3852         (fold_builtin_cosh): Likewise.
3853         (fold_builtin_tan): Likewise.
3854         (fold_builtin_sincos): Likewise.
3855         (fold_builtin_cexp): Likewise.
3856         (fold_builtin_trunc): Likewise.
3857         (fold_builtin_floor): Likewise.
3858         (fold_builtin_ceil): Likewise.
3859         (fold_builtin_round): Likewise.
3860         (fold_builtin_int_roundingfn): Likewise.
3861         (fold_builtin_bitop): Likewise.
3862         (fold_builtin_bswap): Likewise.
3863         (fold_builtin_logarithm): Likewise.
3864         (fold_builtin_hypot): Likewise.
3865         (fold_builtin_pow): Likewise.
3866         (fold_builtin_powi): Likewise.
3867         (fold_builtin_exponent): Likewise.
3868         (fold_builtin_memset): Likewise.
3869         (fold_builtin_bzero): Likewise.
3870         (fold_builtin_memory_op): Likewise.
3871         (fold_builtin_bcopy): Deleted; call site changed to invoke
3872         fold_builtin_memory_op directly.
3873         (fold_builtin_strcpy): Similarly as for fold_builtin_memory_op.
3874         (fold_builtin_strncpy): Likewise.
3875         (fold_builtin_memcmp): Likewise.
3876         (fold_builtin_strcmp): Likewise.
3877         (fold_builtin_strncmp): Likewise.
3878         (fold_builtin_signbit): Likewise.
3879         (fold_builtin_copysign): Likewise.
3880         (fold_builtin_isascii): Likewise.
3881         (fold_builtin_toascii): Likewise.
3882         (fold_builtin_isdigit): Likewise.
3883         (fold_builtin_fabs): Likewise.
3884         (fold_builtin_abs): Likewise.
3885         (fold_builtin_fmin_fmax): Likewise.
3886         (fold_builtin_carg): Likewise.
3887         (fold_builtin_classify): Likewise.
3888         (fold_builtin_unordered_cmp): Likewise.
3889
3890         (fold_builtin_0, fold_builtin_2, fold_builtin_3, fold_builtin_4):
3891         New functions split out from fold_builtin_1.
3892         (fold_builtin_n): New.
3893         (fold_builtin_varargs): New.
3894         (fold_builtin): Deleted.  Most callers changed to use fold_call_expr
3895         instead.
3896         (fold_call_expr): New.
3897         (build_function_call_expr): Rewrite to use new helper function.
3898         (fold_builtin_call_list): New.
3899         (build_call_expr): New.
3900         (fold_builtin_call_valist): New.
3901         (rewrite_call_expr): New.
3902         (validate_arg): New.
3903         (validate_arglist): Change parameter to be entire CALL_EXPR instead
3904         of an arglist.  Change return type to bool.  Use new CALL_EXPR
3905         accessors.
3906
3907         (fold_builtin_strstr):  Pass call arguments individually instead
3908         of as an arglist, fixing callers appropriately.  Use new CALL_EXPR
3909         accessors and constructors.  Return NULL_TREE instead of 0.
3910         (fold_builtin_strchr): Likewise.
3911         (fold_builtin_strrchr): Likewise.
3912         (fold_builtin_strpbrk): Likewise.
3913         (fold_builtin_strcat): Likewise.
3914         (fold_builtin_strncat): Likewise.
3915         (fold_builtin_strspn): Likewise.
3916         (fold_builtin_strcspn): Likewise.
3917         (fold_builtin_fputs): Likewise.
3918         (fold_builtin_next_arg): Likewise.
3919         (fold_builtin_sprintf): Likewise.
3920
3921         (expand_builtin_object_size): Use new CALL_EXPR accessors.  Use
3922         NULL_RTX instead of 0.
3923         (expand_builtin_memory_chk): Likewise.
3924         (maybe_emit_chk_warning): Likewise.
3925         (maybe_emit_sprintf_chk_warning): Likewise.
3926
3927         (fold_builtin_object_size): Pass call arguments individually instead
3928         of as an arglist, fixing callers appropriately.  Use new CALL_EXPR
3929         accessors and constructors.  Return NULL_TREE instead of 0.
3930         (fold_builtin_memory_chk): Likewise.
3931         (fold_builtin_stxcpy_chk): Likewise.
3932         (fold_builtin_strncpy_chk): Likewise.
3933         (fold_builtin_strcat_chk): Likewise.
3934         (fold_builtin_strcat_chk): Likewise.
3935         (fold_builtin_strncat_chk): Likewise.
3936         (fold_builtin_sprintf_chk): Likewise.
3937         (fold_builtin_snprintf_chk): Likewise.
3938         (fold_builtin_printf): Likewise.
3939         (fold_builtin_vprintf): Likewise.
3940
3941         * fold-const.c (negate_expr_p): Use new CALL_EXPR accessors and
3942         constructors.
3943         (operand_equal_p): Add separate tcc_vl_exp/CALL_EXPR case.
3944         (make_range): Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH.
3945         (extract_muldiv_1): Add VL_EXP_CLASS_P case.
3946         (fold_mathfn_compare): Use new CALL_EXPR accessors and constructors.
3947         (fold_unary): Likewise.
3948         (fold_binary): Likewise.
3949         (fold_ternary): Remove CALL_EXPR case, since they are no longer
3950         ternary expressions.
3951         (fold): Add logic for tcc_vl_exp.
3952         (fold_checksum_tree):  Make it know about tcc_vl_exp.  Use
3953         TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH.
3954         (fold_build3_stat): Add assertion to flag broken interface for
3955         constructing CALL_EXPRs.
3956         (fold_build_call_list): New.
3957         (fold_build_call_list_initializer): New.
3958         (tree_expr_nonnegative_p): Use new CALL_EXPR accessors and
3959         constructors.
3960         (fold_strip_sign_ops): Likewise.
3961
3962 2007-02-15  Sandra Loosemore  <sandra@codesourcery.com>
3963             Brooks Moses  <brooks.moses@codesourcery.com>
3964             Lee Millward  <lee.millward@codesourcery.com>
3965
3966         * tree-dump.c (dequeue_and_dump) <CALL_EXPR>: Use new CALL_EXPR
3967         accessors and dump arguments explicitly.
3968
3969         * tree-pretty-print.c (do_niy): Use TREE_OPERAND_LENGTH instead of
3970         TREE_CODE_LENGTH.
3971         (dump_generic_node): Use new CALL_EXPR accessors and walk arguments
3972         explicitly.
3973         (print_call_name): Use new CALL_EXPR accessors.
3974
3975         * print-tree.c (print_node): Add case tcc_vl_exp.  Print
3976         CALL_EXPR arguments explicitly instead of as a list.  Use
3977         TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH.
3978
3979         * tree-vrp.c (stmt_interesting_for_vrp): Use new CALL_EXPR accessors.
3980         (vrp_visit_stmt): Likewise.
3981
3982         * tree-ssa-loop-im.c (outermost_invariant_loop_expr):  Make it
3983         know about tcc_vl_exp.  Use TREE_OPERAND_LENGTH instead of
3984         TREE_CODE_LENGTH.
3985         (force_move_till_expr): Likewise.
3986
3987         * targhooks.c (default_external_stack_protect_fail): Use
3988         build_call_expr instead of build_function_call_expr.
3989         (default_hidden_stack_protect_fail): Likewise.
3990
3991         * tree-complex.c (expand_complex_libcall): Use build_call_expr to
3992         build the call.
3993
3994         * cgraphbuild.c (build_cgraph_edges): Use new CALL_EXPR accessors
3995         and walk arguments explicitly.
3996
3997         * tree-ssa-loop-niter.c (simplify_replace_tree): Use
3998         TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH.
3999         (expand_simple_operations): Likewise.
4000         (infer_loop_bounds_from_array): Use new CALL_EXPR accessors.
4001
4002         * gengtype.c (adjust_field_tree_exp): Use TREE_OPERAND_LENGTH instead
4003         of TREE_CODE_LENGTH.
4004         (walk_type): Tweak walking of arrays not to blow up on CALL_EXPRs.
4005
4006         * optabs.c (expand_widen_pattern-expr): Use TREE_OPERAND_LENGTH
4007         instead of TREE_CODE_LENGTH.
4008
4009         * value_prof.c (tree_ic): Use new CALL_EXPR accessors.
4010         (tree_ic_transform): Likewise.
4011         (interesting_stringop_to_profile_p): Pass entire CALL_EXPR as
4012         parameter instead of arglist.  Fix callers.
4013         (tree_stringop_fixed_value): Use new CALL_EXPR accessors.
4014         (tree_stringops_transform): Likewise.
4015         (tree_indirect_call_to_profile): Likewise.
4016         (tree_stringops_values_to_profile): Likewise.
4017
4018         * tree-tailcall.c (find_tail_calls): Use new CALL_EXPR iterator.
4019         (eliminate_tail_call): Likewise.
4020
4021         * ipa-cp.c (ipcp_update_callgraph): Use new CALL_EXPR accessors.
4022
4023         * tree-scalar-evolution.c (chrec_contains_symbols_defined_in_loop):
4024         Use TREE_OPERAND_LENGTH and generalize to handle any number of
4025         operands.
4026         (instantiate_parameters_1): Can't handle tcc_vl_exp here.
4027
4028         * omp-low.c (build_omp_barrier): Use build_call_expr.
4029         (lower_rec_input_clauses): Likewise.
4030         (lower_reduction_clauses): Likewise.
4031         (expand_parallel_call): Likewise.
4032         (maybe_catch_exception): Likewise.
4033         (expand_omp_for_generic): Likewise.
4034         (expand_omp_for_static_nochunk): Likewise.
4035         (expand_omp_sections): Likewise.
4036         (lower_omp_single_simple): Likewise.
4037         (lower_omp_single_copy): Likewise.
4038         (lower_omp_master): Likewise.
4039         (lower_omp_ordered): Likewise.
4040         (lower_omp_critical): Likewise.
4041
4042         * ipa-reference.c (check-call): Use new CALL_EXPR iterator.
4043         (scan_for_static_refs): Create tcc_vl_exp case for CALL_EXPR.
4044
4045         * tree-gimple.c (is_gimple_call_addr): Fix doc.
4046         (recalculate_side_effects): Use TREE_OPERAND_LENGTH instead of
4047         TREE_CODE_LENGTH.  Add tcc_vl_exp case.
4048
4049         * tree-chrec.c (chrec_contains_symbols): Use TREE_OPERAND_LENGTH
4050         and generalize to handle any number of operands.
4051         (chrec_contains_undetermined): Likewise.
4052         (tree_contains_chrecs): Likewise.
4053         (evolution_function_is_invariant_rec_p): Use TREE_OPERAND_LENGTH.
4054
4055         * cgraphunit.c (update_call_expr): Use new CALL_EXPR accessors.
4056
4057         * tree-ssa-ccp.c (ccp_fold): Use new CALL_EXPR accessors.  Use
4058         fold_call_expr instead of fold_builtin.
4059         (ccp_fold_builtin): Likewise.  Update calls into builtins.c to
4060         match declarations there.
4061         (fold_stmt): Use new CALL_EXPR constructor and accessors.  Doc
4062         updates.
4063
4064         * tree-ssa-loop-ivopts.c (expr_invariant_in_loop_p): Use
4065         TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH.
4066
4067         * ipa-pure-const.c (check_call): Use new CALL_EXPR accessors.
4068         (scan_function): Add case tcc_vl_exp for CALL_EXPR.
4069
4070         * tree-stdarg.c (execute_optimize_stdarg): Use new CALL_EXPR
4071         accessors.
4072
4073         * tree-ssa-math-opts.c (execute_cse_sincos_1): Use build_call_expr.
4074         (execute_cse_sincos): Use new CALL_EXPR accessors.
4075
4076         * tree-ssa-alias.c (find_used_portions): Use new CALL_EXPR iterator.
4077
4078         * gimple-low.c (lower_function_body): Use build_call_expr.
4079         (lower_builtin_setjmp): Likewise.
4080
4081         * expr.c (emit_block_move_via_libcall): Use build_call_expr.
4082         (set_storage_via_libcall): Likewise.
4083         (safe_from_p): Add tcc_vl_exp case.  Use TREE_OPERAND_LENGTH
4084         instead of TREE_CODE_LENGTH.
4085         (expand_expr_real_1): Use new CALL_EXPR accessors.
4086
4087         * tree-browser.c (store_child_info): Use TREE_OPERAND_LENGTH and
4088         generalize to handle any number of operands.
4089         (TB_parent_eq): Likewise.
4090
4091         * predict.c (expr_expected_value): Use new CALL_EXPR accessors.
4092         (strip_builtin_expect): Likewise.
4093
4094         * function.c (gimplify_parameters): Use build_call_expr.
4095
4096         * tree-vectorizer.c (vect_is_simple_reduction): Use TREE_OPERAND_LENGTH
4097         instead of TREE_CODE_LENGTH.
4098
4099         * ipa-type-escape.c (check_call): Use new CALL_EXPR iterators.
4100         (scan_for_refs): Add case tcc_vl_exp for CALL_EXPR.
4101
4102         * tree-data-ref.c (get_references_in_stmt): Use new CALL_EXPR
4103         iterators.
4104
4105         * gimplify.c (build_stack_save_restore): Use build_call_expr.
4106         (gimplify_decl_expr): Likewise.
4107         (gimplify_call_expr): Use fold_call_expr instead of fold_builtin.
4108         Use new CALL_EXPR iterators.
4109         (gimplify_modify_expr_to_memcpy): Use build_call_expr.
4110         (gimplify_modify_expr_to_memset): Likewise.
4111         (gimplify_variable_sized_compare): Likewise.
4112         (gimplify_omp_atomic_fetch_op): Likewise.
4113         (gimplify_omp_atomic_pipeline): Likewise.
4114         (gimplify_omp_atomic_mutex): Likewise.
4115         (gimplify_function_tree): Likewise.
4116
4117         * calls.c (alloca_call_p): Use new CALL_EXPR accessors.
4118         (call_expr_flags): Likewise.
4119         (expand_call): Likewise.
4120
4121         * except.c (expand_builtin_eh_return_data_regno): Pass entire
4122         CALL_EXPR as parameter instead of arglist.  Use new CALL_EXPR
4123         accessors.
4124
4125         * coverage.c (create_coverage): Use build_call_expr.
4126
4127         * tree-ssa-pre.c (expression_node_pool, list_node_pool): Delete.
4128         (temp_call_expr_obstack): New.
4129         (pool_copy_list): Delete.
4130         (temp_copy_call_expr): New.
4131         (phi_translate): Add case tcc_vl_exp for CALL_EXPR.  Use new
4132         CALL_EXPR accessors.  Get rid of special goo for copying argument
4133         lists and use temp_copy_call_expr instead.
4134         (valid_in_sets): Add case tcc_vl_exp for CALL_EXPR.  Use new
4135         CALL_EXPR accessors.
4136         (create_expression_by_pieces): Likewise.  Use build_call_array
4137         to construct the result instead of fold_build3.
4138         (create_value_expr_from): Add tcc_vl_exp.  Delete special goo for
4139         dealing with argument lists.
4140         (init_pre): Remove references to expression_node_pool and
4141         list_node_pool.  Init temp_call_expr_obstack instead.
4142         (fini_pre): Remove references to expression_node_pool and
4143         list_node_pool.
4144
4145         * tree-sra.c (sra_walk_call_expr): Use new CALL_EXPR accessors
4146         and walk arguments explicitly instead of as a list.
4147
4148         * tree-mudflap.c (mf_build_check_statement_for): Use build_call_expr.
4149         (mx_register_decls): Likewise.
4150         (mudflap_register_call): Likewise.
4151         (mudflap_finish_file): Likewise.
4152
4153         * ipa-prop.c (ipa_callsite_compute_count): Use new CALL_EXPR accessors.
4154         (ipa_callsite_compute_param): Likewise.
4155
4156         * tree-vect-patterns.c (vect_recog_pow_pattern): Use new CALL_EXPR
4157         accessors and constructor.
4158
4159         * tree-nested.c (convert_nl_goto_reference): Use new CALL_EXPR
4160         accessors and constructor.
4161         (convert_tramp_reference): Likewise.
4162         (convert_call_expr): Likewise.
4163         (finalize_nesting_tree_1): Likewise.
4164
4165         * tree-ssa.c (tree_ssa_useless_type_conversion): Use new CALL_EXPR
4166         accessors.
4167
4168         * tree-ssa-loop-prefetch.c (issue_prefetch_ref): Use build_call_expr.
4169
4170         * tree-inline.c (initialize_inlined_parameters): Pass entire
4171         CALL_EXPR as parameter instead of arglist.  Use new CALL_EXPR
4172         accessors.
4173         (estimate_num_insns_1): Use new CALL_EXPR accessors.
4174         (expand_call_inline): Tidy up call to initialize_inlined_parameters.
4175
4176         * tree-vect-transform.c (vect_create_epilog_for_reduction):  Use
4177         TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH.
4178         (vectorizable_reduction): Likewise.
4179         (vectorizable_call): Use new CALL_EXPR iterators.
4180         (vectorizable_conversion): Use build_call_expr.
4181         (vectorizable_operation): Use TREE_OPERAND_LENGTH.
4182         (vect_gen_widened_results_half): Use build_call_expr.
4183         (vect_setup_realignment): Likewise.
4184         (vectorizable_live_operation): Use TREE_OPERAND_LENGTH.
4185
4186         * tree-object-size.c (alloc_object_size): Use new CALL_EXPR accessors.
4187         (pass_through_call): Likewise.
4188         (compute_object_sizes): Likewise.  Use fold_call_expr instead of
4189         fold_builtin.
4190
4191         * tree-profile.c (tree_gen_interval_profiler): Use build_call_expr.
4192         (tree_gen_pow2_profiler): Likewise.
4193         (tree_gen_one_value_profiler): Likewise.
4194         (tree_gen_ic_func_profiler): Likewise.
4195         (tree_gen_average_profiler): Likewise.
4196         (tree_gen_ior_profiler): Likewise.
4197
4198         * tree-ssa-structalias.c (get_constraint_for): Add case tcc_vl_exp.
4199         (find_func_aliases): Use new CALL_EXPR accessors.  Add case
4200         tcc_vl_exp.  Use TREE_OPERAND_LENGTH instead of TREE_CODE_LENGTH.
4201
4202         * tree-ssa-reassoc.c (get_rank): Use TREE_OPERAND_LENGTH instead
4203         of TREE_CODE_LENGTH.
4204
4205         * stmt.c (warn_if_unused_value): Use TREE_OPERAND_LENGTH instead
4206         of TREE_CODE_LENGTH.
4207
4208         * convert.c (convert_to_real): Use new CALL_EXPR accessors and
4209         constructor.
4210         (convert_to_integer): Likewise.
4211
4212         * tree-ssa-operands.c (get_call_expr_operands): Use new CALL_EXPR
4213         accessors.
4214
4215 2007-02-15  Sandra Loosemore  <sandra@codesourcery.com>
4216             Brooks Moses  <brooks.moses@codesourcery.com>
4217             Lee Millward  <lee.millward@codesourcery.com>
4218
4219         * config/alpha/alpha.c (alpha_expand_builtin): Use new CALL_EXPR
4220         accessors.
4221         * config/frv/frv.c (frv_expand_builtin): Likewise.
4222         * config/s390/s390.c (s390_expand_builtin): Likewise.
4223
4224         * config/sparc/sparc.c (sparc_gimplify_va_arg): Use build_call_expr.
4225         (sparc_expand_builtin): Use new CALL_EXPR accessors.
4226
4227         * config/i386/i386.c (ix86_function_ok_for_sibcall): Likewise.
4228         (ix86_expand_binop_builtin): Pass entire CALL_EXPR as parameter
4229         instead of arglist.  Use new CALL_EXPR accessors on it.  Fix callers.
4230         (ix86_expand_store_builtin): Likewise.
4231         (ix86_expand_unop_builtin): Likewise.
4232         (ix86_expand_unop1_builtin): Likewise.
4233         (ix86_expand_sse_compare): Likewise.
4234         (ix86_expand_sse_comi): Likewise.
4235         (ix86_expand_vec_init_builtin): Likewise.
4236         (ix86_expand_vec_ext_builtin): Likewise.
4237         (ix86_expand_vec_set_builtin): Likewise.
4238         (ix86_expand_builtin): Use new CALL_EXPR accessors.
4239
4240         * config/sh/sh.c (sh_expand_builtin): Use new CALL_EXPR accessors.
4241         * config/c4x/c4x.c (c4x_expand_builtin): Likewise.
4242
4243         * config/iq2000/iq2000.c (expand_one_builtin): Pass entire CALL_EXPR
4244         instead of arglist.  Use new CALL_EXPR accessors.  Fix callers.
4245         (iq2000_expand_builtin): Use new CALL_EXPR accessors.
4246
4247         * config/rs6000/rs6000-c.c (altivec_build_resolved_builtin): Use
4248         build_call_expr.
4249         * config/rs6000/rs6000.c (rs6000_gimplify_va_arg): Likewise.
4250         (rs6000_expand_unop_builtin): Pass entire CALL_EXPR instead of
4251         arglist.  Use new CALL_EXPR accessors.  Fix callers.
4252         (altivec_expand_abs_builtin): Likewise.
4253         (rs6000_expand_binop_builtin): Likewise.
4254         (altivec_expand_predicate_builtin): Likewise.
4255         (altivec_expand_lv_builtin): Likewise.
4256         (spe_expand_stv_builtin): Likewise.
4257         (altivec_expand_stv_builtin): Likewise.
4258         (rs6000_expand_ternop_builtin): Likewise.
4259         (altivec_expand_ld_builtin): Use new CALL_EXPR accessors.
4260         (altivec_expand_st_builtin): Likewise.
4261         (altivec_expand_dst_builtin): Likewise.
4262         (altivec_expand_vec_init_builtin): Pass entire CALL_EXPR instead of
4263         arglist.  Use new CALL_EXPR accessors.  Fix callers.
4264         (altivec_expand_vec_set_builtin): Likewise.
4265         (altivec_expand_vec_ext_builtin): Likewise.
4266         (altivec_expand_builtin): Use new CALL_EXPR accessors.
4267         (spe_expand_builtin): Likewise.
4268         (spe_expand_predicate_builtin): Pass entire CALL_EXPR instead of
4269         arglist.  Use new CALL_EXPR accessors.  Fix callers.
4270         (spe_expand_evsel_builtin): Likewise.
4271         (rs6000_expand_builtin): Use new CALL_EXPR accessors.  VCFUX and
4272         FCFSX cases must construct whole new CALL_EXPR, not just arglist.
4273
4274         * config/arm/arm.c (arm_expand_binop_builtin): Pass entire CALL_EXPR
4275         instead of arglist.  Use new CALL_EXPR accessors.  Fix callers.
4276         (arm_expand_unop_builtin): Likewise.
4277         (arm_expand_builtin): Use new CALL_EXPR accessors.
4278
4279         * config/mips/mips.c (mips_expand_builtin):  Use new CALL_EXPR
4280         accessors.
4281
4282         * config/bfin/bfin.c (bfin_expand_binop_builtin): Pass entire CALL_EXPR
4283         instead of arglist.  Use new CALL_EXPR accessors.  Fix callers.
4284         (bfin_expand_unop_builtin): Likewise.
4285         (bfin_expand_builtin): Use new CALL_EXPR accessors.
4286
4287 2007-02-15  Sandra Loosemore  <sandra@codesourcery.com>
4288             Brooks Moses  <brooks.moses@codesourcery.com>
4289             Lee Millward  <lee.millward@codesourcery.com>
4290
4291         * c-semantics.c (build_stmt): Add internal diagnostic check.
4292
4293         * c-pretty-print.c (pp_c_postfix_expression): Use new CALL_EXPR
4294         accessors.  Print arguments explicitly instead of as a list.
4295
4296         * c-typeck.c (build_function_call): Use new CALL_EXPR constructors.
4297
4298         * c-omp.c (c_finish_omp_barrier): Use build_call_expr.
4299         (c_finish_omp_flish): Likewise.
4300
4301         * c-common.c (verify_tree): Use new CALL_EXPR accessors.  Traverse
4302         arguments explicitly instead of as a list.  Use TREE_OPERAND_LENGTH
4303         instead of TREE_CODE_LENGTH.
4304         (check_function_arguments_recurse): Use new CALL_EXPR accessors.
4305         (c_warn_unused_result): Likewise.
4306
4307 2007-02-15  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
4308
4309         PR c/26494
4310         * doc/invoke.texi (Warning Options): Remove
4311         -Werror-implicit-function-declaration.
4312         (Wimplicit-function-declaration): Update description.
4313         * opts.c (common_handle_option): Move handling of -Werror=* to...
4314         (enable_warning_as_error): ...here.
4315         * opts.h (enable_warning_as_error): Declare.
4316         * c-decl.c (implicit_decl_warning): Unless
4317         -Wno-implicit-function-declaration is given, emit a pedwarn if
4318         -std=c99 or emit a warning if -Wimplicit-function-declaration.
4319         * c.opt (Wimplicit-function-declaration): Replace
4320         mesg_implicit_function_declaration with
4321         warn_implicit_function_declaration.
4322         * c-opts.c (c_common_handle_option):
4323         -Werror-implicit-function-declaration is exactly equal as
4324         -Werror=implicit-function-declaration.
4325         (set_Wimplicit): Replace mesg_implicit_function_declaration with
4326         warn_implicit_function_declaration.
4327         (c_common_post_options): -Wimplict-function-declaration is enabled
4328         by default by -std=c99, otherwise is disabled by default.
4329         * c-objc-common.c (c_objc_common_init): Remove flawed logic.
4330
4331 2007-02-15  Eric Botcazou  <ebotcazou@adacore.com>
4332
4333         * gimplify.c (gimplify_modify_expr): During gimplification, attach a
4334         DECL on the rhs to a DECL on the lhs for debug info purposes if the
4335         former is ignored but not the latter.
4336
4337 2007-02-15  Eric Botcazou  <ebotcazou@adacore.com>
4338
4339         * expr.c (expand_expr_real_1) <normal_inner_ref>: If a temporary
4340         is made and the reference doesn't use the alias set of its type,
4341         do not create the temporary using that type.
4342
4343 2007-02-15  Aldy Hernandez  <aldyh@redhat.com>
4344
4345         * jump.c: Remove prototypes for delete_computation and
4346         delete_prior_computation.
4347
4348 2007-02-15  Paolo Bonzini  <bonzini@gnu.org>
4349
4350         * jump.c (get_label_after): Delete.
4351         (get_label_before, delete_computation, delete_jump,
4352         delete_prior_computation, follow_jumps): Move...
4353         * reorg.c (delete_computation, delete_prior_computation): ... here...
4354         (get_label_before, delete_jump): ... making these static ...
4355         (follow_jumps): ... and simplifying this since it only runs after
4356         reload.
4357         * rtl.h (get_label_after, get_label_before, delete_jump,
4358         follow_jumps): Delete prototypes.
4359
4360 2007-02-15  Paolo Bonzini  <bonzini@gnu.org>
4361
4362         * caller-save.c (save_call_clobbered_regs): Do not process sibcalls.
4363
4364 2007-02-15  Nick Clifton  <nickc@redhat.com>
4365
4366         * varasm.c (default_asm_output_anchor): Prepend * to . symbol in
4367         order to prevent it from being munged by the target.
4368
4369 2007-02-15  Uros Bizjak  <ubizjak@gmail.com>
4370
4371         * config/i386/i386.md: Remove misleading comment.
4372
4373 2007-02-15  Alexandre Oliva  <aoliva@redhat.com>
4374
4375         * config/frv/frv.md (reload_incc, reload_outcc, reload_incc_uns,
4376         reload_outcc_uns, reload_incc_nz, reload_outcc_nz): Remove
4377         invalid patterns.
4378
4379 2007-02-15  Alexandre Oliva  <aoliva@redhat.com>
4380
4381         * tree-sra.c (instantiate_missing_elements): Canonicalize
4382         bit-field types.
4383         (sra_build_assignment): New.
4384         (generate_copy_inout, generate_element_copy,
4385         generate_element_zero, generate_one_element_init): Use it.
4386
4387 2007-02-15  Alexandre Oliva  <aoliva@redhat.com>
4388
4389         * tree-sra.c (instantiate_missing_elements): Canonicalize
4390         bit-field types.
4391         (sra_build_assignment): New.
4392         (generate_copy_inout, generate_element_copy,
4393         generate_element_zero, generate_one_element_init): Use it.
4394
4395 2007-02-15  Alexandre Oliva  <aoliva@redhat.com>
4396
4397         * dwarf2out.c (dwarf2out_finish): Accept namespaces as context of
4398         limbo die nodes.
4399
4400 2007-02-14  Joseph Myers  <joseph@codesourcery.com>
4401
4402         * emit-rtl.c (set_mem_attributes_minus_bitpos): Treat complex
4403         types as aggregates not scalars.
4404         * function.c (assign_stack_temp_for_type): Likewise.
4405
4406 2007-02-14  Roger Sayle  <roger@eyesopen.com>
4407             Zdenek Dvorak  <dvorakz@suse.cz>
4408
4409         * tree-dump.c (dump_switch_p_1): Require exact match of the option
4410         name.
4411
4412 2007-02-14  Zdenek Dvorak  <dvorakz@suse.cz>
4413
4414         * passes.c (next_pass_1): Clear the next field of the copied
4415         pass structure.
4416
4417 2007-02-14  Richard Henderson  <rth@redhat.com>
4418
4419         * tree-sra.c (early_sra): New.
4420         (decl_can_be_decomposed_p): Deny va_list if early_sra.
4421         (tree_sra_early, pass_sra_early): New.
4422         * tree-pass.h (pass_sra_early): Declare.
4423         * passes.c (init_optimization_passes): Use it.
4424
4425 2007-02-14  Richard Guenther  <rguenther@suse.de>
4426
4427         * flags.h (issue_strict_overflow_warning): Convert to a macro.
4428
4429 2007-02-14  Dorit Nuzman  <dorit@il.ibm.com>
4430
4431          PR tree-optimization/30771
4432         * tree-vect-analyze.c (vect_determine_vectorization_factor): Traverse
4433         also phi nodes.
4434         (vect_analyze_operations): Induction phis can now be marked as
4435         used_in_loop.
4436         (vect_mark_stmts_to_be_vectorized): No special treatment for phis.
4437         Update documentation accordingly.
4438
4439 2007-02-14  Nick Clifton  <nickc@redhat.com>
4440
4441         * builtin-types.def (DEF_FUNCTION_TYPE_x): Do not imply that at
4442         most 3 arguments are supported.
4443         (DEF_FUNCTION_TYPE_VAR_5): Fix typo in its description.
4444
4445 2007-02-13  Seongbae Park <seongbae.park@gmail.com>
4446
4447         * bitmap.c (bitmap_and, bitmap_and_compl, bitmap_xor):
4448         Ensure dst->current is valid.
4449
4450 2007-02-13  Paul Brook  <paul@codesourcery.com>
4451
4452         * config.gcc: Add arm*-*-uclinux-*eabi.
4453         * config/arm/uclinux-elf.h (TARGET_OS_CPP_BUILTINS): Define.
4454         (SUBTARGET_EXTRA_LINK_SPEC): Define.
4455         (STARTFILE_SPEC, ENDFILE_SPEC): Remove broken -shared handling.
4456         (LINK_GCC_C_SEQUENCE_SPEC): Undef.
4457         (LINK_SPEC): Define.
4458         (LIB_SPEC): Define.
4459         * config/arm/arm.c (arm_override_options): Use r9 as EABI PIC
4460         register.
4461         * config/arm/uclinux-eabi.h: New file.
4462         * config/arm/linux-eabi.h (WCHAR_TYPE): Remove.
4463         * config/arm/linux-gas.h (WCHAR_TYPE): Use unsigned long on AAPCS
4464         based targets.
4465
4466 2007-02-13  Ian Lance Taylor  <iant@google.com>
4467
4468         * common.opt: Add Wstrict-overflow and Wstrict-overflow=.
4469         * flags.h (warn_strict_overflow): Declare.
4470         (enum warn_strict_overflow_code): Define.
4471         (issue_strict_overflow_warning): New static inline function.
4472         * opts.c (warn_strict_overflow): New variable.
4473         (common_handle_option): Handle OPT_Wstrict_overflow and
4474         OPT_Wstrict_overflow_.
4475         * c-opts.c (c_common_handle_option): Set warn_strict_overflow for
4476         OPT_Wall.
4477         * fold-const.c: Include intl.h.
4478         (fold_deferring_overflow_warnings): New static variable.
4479         (fold_deferred_overflow_warning): New static variable.
4480         (fold_deferred_overflow_code): New static variable.
4481         (fold_defer_overflow_warnings): New function.
4482         (fold_undefer_overflow_warnings): New function.
4483         (fold_undefer_and_ignore_overflow_warnings): New function.
4484         (fold_deferring_overflow_warnings_p): New function.
4485         (fold_overflow_warning): New static function.
4486         (make_range): Add strict_overflow_p parameter.  Change all
4487         callers.
4488         (extract_muldiv, extract_muldiv_1): Likewise.
4489         (fold_unary) [ABS_EXPR]: Check ABS_EXPR before calling
4490         tree_expr_nonnegative_p.
4491         (fold_negate_expr): Call fold_overflow_warning.
4492         (fold_range_test): Likewise.
4493         (fold_comparison): Likewise.
4494         (fold_binary): Likewise.  Call tree_expr_nonnegative_warnv_p
4495         instead of tree_expr_nonnegative_p.
4496         (tree_expr_nonnegative_warnv_p): Rename from
4497         tree_expr_nonnegative_p, add strict_overflow_p parameter.
4498         (tree_expr_nonnegative_p): New function.
4499         (tree_expr_nonzero_warnv_p): Rename from tree_expr_nonzero_p, add
4500         strict_overflow_p parameter.
4501         (tree_expr_nonzero_p): New function.
4502         * passes.c (verify_interpass_invariants): New static function.
4503         (execute_one_pass): Call it.
4504         * tree-ssa-loop-niter.c (expand_simple_operations): Ignore fold
4505         warnings.
4506         (number_of_iterations_exit, loop_niter_by_eval): Likewise.
4507         (estimate_numbers_of_iterations): Likewise.
4508         (scev_probably_wraps_p): Likewise.
4509         * tree-ssa-ccp.c: Include "toplev.h".
4510         (evaluate_stmt): Defer fold overflow warnings until we know we are
4511         going to optimize.
4512         (struct fold_stmt_r_data): Add stmt field.
4513         (fold_stmt_r): Defer fold overflow warnings until we know we
4514         optimized.
4515         (fold_stmt): Initialize stmt field of fold_stmt_r_data.
4516         (fold_stmt_inplace): Likewise.
4517         * tree-cfgcleanup.c: Include "toplev.h" rather than "errors.h".
4518         (cleanup_control_expr_graph): Defer fold overflow warnings until
4519         we know we are going to optimize.
4520         * tree-cfg.c (fold_cond_expr_cond): Likewise.
4521         * tree-ssa-threadedge.c (simplify_control_stmt_condition):
4522         Likewise.
4523         * tree-vrp.c (vrp_expr_computes_nonnegative): Call
4524         tree_expr_nonnegative_warnv_p instead of tree_expr_nonnegative_p.
4525         * tree-ssa-loop-manip.c (create_iv): Likewise.
4526         * c-typeck.c (build_conditional_expr): Likewise.
4527         (build_binary_op): Likewise.
4528         * tree-vrp.c (vrp_expr_computes_nonzero): Call
4529         tree_expr_nonzero_warnv_p instead of tree_expr_nonzero_p.
4530         (extract_range_from_unary_expr): Likewise.
4531         * simplify-rtx.c (simplify_const_relational_operation): Warn when
4532         assuming that signed overflow does not occur.
4533         * c-common.c (pointer_int_sum): Ignore fold overflow warnings.
4534         * tree.h (tree_expr_nonnegative_warnv_p): Declare.
4535         (fold_defer_overflow_warnings): Declare.
4536         (fold_undefer_overflow_warnings): Declare.
4537         (fold_undefer_and_ignore_overflow_warnings): Declare.
4538         (fold_deferring_overflow_warnings_p): Declare.
4539         (tree_expr_nonzero_warnv_p): Declare.
4540         * doc/invoke.texi (Option Summary): Add -Wstrict-overflow to list
4541         of warning options.
4542         (Warning Options): Document -Wstrict-overflow.
4543         * Makefile.in (tree-ssa-threadedge.o): Depend on toplev.h.
4544         (tree-ssa-ccp.o): Likewise.
4545         (tree-cfgcleanup.o): Change errors.h dependency to toplev.h.
4546         (fold-const.o): Depend on intl.h.
4547
4548 2007-02-13  Ian Lance Taylor  <iant@google.com>
4549
4550         PR middle-end/30751
4551         * lower-subreg.c (resolve_simple_move): Decompose subregs in
4552         addresses.
4553
4554 2007-02-13  Stuart Hastings  <stuart@apple.com>
4555
4556         * gcc/config/i386/i386.md (fixuns_truncdfhi2): Require SSE2.
4557
4558 2007-02-13  Richard Henderson  <rth@redhat.com>
4559
4560         * config/alpha/alpha.c (alpha_stdarg_optimize_hook): Strip
4561         handled_component_p before looking for the indirect_ref.
4562
4563 2007-02-13  Richard Henderson  <rth@redhat.com>
4564
4565         * config/i386/i386.md (bswapsi_1): Rename from bswapsi2,
4566         remove flags clobber.
4567         (bswapsi2): New expander, emit code for !TARGET_BSWAP.
4568         (bswaphi_lowpart): New.
4569         (bswapdi2): Rename from bswapdi2_rex, remove flags clobber,
4570         remove TARGET_BSWAP test.  Delete expander of the same name.
4571
4572         * optabs.c (widen_bswap, expand_doubleword_bswap): New.
4573         (expand_unop): Use them.
4574
4575 2007-02-13  Uros Bizjak  <ubizjak@gmail.com>
4576
4577         * config/i386/i386.md (cmpdi_ccno_1_rex64, *cmpsi_ccno_1,
4578         *cmphi_ccno_1, *cmpqi_ccno_1, *movsi_xor, *movstricthi_xor,
4579         *movstrictqi_xor, *movdi_xor_rex64, *ashldi3_1_rex64,
4580         *ashldi3_cmp_rex64, *ashldi3_cconly_rex64, ashlsi3, *ashlsi3_1_zext,
4581         *ashlsi3_cmp, *ashlsi3_cconly, *ashlsi3_cmp_zext, *ashlhi3_1_lea,
4582         *ashlhi3_1, *ashlhi3_cmp, *ashlhi3_cconly, *ashlqi3_1_lea,
4583         *ashlqi3_1, *ashlqi3_cmp, *ashlqi3_cconly): Remove equivalent
4584         assembler dialect choice from asm templates.
4585
4586 2007-02-12  Richard Henderson  <rth@redhat.com>
4587
4588         * config/i386/i386.md (fixuns_trunc<SSEMODEF>si_1): New insn.
4589         (fixuns_trunc<SSEMODEF>si2): Use it.
4590         * config/i386/sse.md (vec_setv4sf_0): Export.
4591         * config/i386/i386.c (ix86_build_const_vector): Export.
4592         (ix86_split_convert_uns_si_sse): Rename from
4593         ix86_expand_convert_uns_si_sse and rewrite as a splitter.
4594         * config/i386/i386-protos.h: Update.
4595
4596 2007-02-13  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
4597
4598         PR c/29521
4599         * c-typeck.c (c_finish_return): Improve warning message.
4600
4601 2007-02-12  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
4602
4603         * alias.c (find_symbolic_term): Delete unused function.
4604
4605 2007-02-12  Uros Bizjak  <ubizjak@gmail.com>
4606
4607         * config/i386/i386.md (paritydi2, paritysi2): New expanders.
4608         (paritydi2_cmp, paritydi2_cmp): New insn and split patterns.
4609         (*parityhi2_cmp, *parityqi2_cmp): New insn patterns.
4610
4611 2007-02-12  Eric Botcazou  <ebotcazou@adacore.com>
4612
4613         * tree.h (DECL_IGNORED_P): Document further effect for FUNCTION_DECL.
4614         * cgraphunit.c (cgraph_expand_function): If DECL_IGNORED_P is set on
4615         the function, temporarily point the debug interface to the null one.
4616
4617 2007-02-12  Eric Botcazou  <ebotcazou@adacore.com>
4618
4619         * dwarf2out.c (round_up_to_align): New static function.
4620         (field_byte_offset): Use it to round the offset.
4621
4622 2007-02-12  Richard Henderson  <rth@redhat.com>
4623
4624         * config/alpha/alpha.md (bswapsi2, bswapdi2): New.
4625         (inswl_const): Export.
4626
4627 2007-02-12  Richard Henderson  <rth@redhat.com>
4628
4629         * calls.c (emit_library_call_value_1): If PROMOTE_MODE modifed the
4630         result mode of the libcall, convert back to outmode.
4631
4632 2007-02-12  Roger Sayle  <roger@eyesopen.com>
4633
4634         * config/i386/i386.md (*bswapdi2_rex): Renamed from bswapdi2.
4635         (bswapdi2): New define_expand to implement 32-bit implementation.
4636
4637 2007-02-12  Nick Clifton  <nickc@redhat.com>
4638
4639         * doc/invoke.texi (Overall Options): Document --help=.
4640         * gcc.c (target_help_flag): Rename to print_subprocess_flag.
4641         (cc1_options): Pass --help= on to cc1.
4642         (display_help): Add description of --help=.
4643         (process_command): Add code to handle --help=.  Allow translated
4644         --help and --target-help switches to be passed on to compiler
4645         sub-process.
4646         (main): Remove unused if statement.
4647         * opts.c (columns): Remove.
4648         (LEFT_COLUMN): Define.
4649         (wrap_help): Add columns argument.
4650         (print_filtered_help): Change parameters to be an include bitmask,
4651         an exclude bitmask, an any bitmask and the column width.  Move the
4652         code to display the params list here.  Add code to display the
4653         status of options rather than their descriptions if the quiet flag
4654         is not active.
4655         (print_specific_help): Change parameters to be an include bitmask,
4656         an exclude bitmask and an any bitmask.  Move code to look up the
4657         column width here.  Decide upon the title for an options listing.
4658         (common_handle_options): Add code to handle --help=.  Adapt code
4659         for --help and --target-help to use the revised form of the
4660         print_specific_help function.
4661         (print_help): Delete.
4662         (print_param_help): Delete.
4663         (print_switch): Delete.
4664         * opts.h (cl_lang_count): Add prototype.
4665         (CL_PARAMS, CL_WARNING, CL_OPTIMIZATION, CL_MIN_OPTION_CLASS,
4666         CL_MAX_OPTION_CLASS): New defines.
4667         * optc-gen.awk: Add construction of cl_lang_count.
4668         * c.opt: Add Warning attribute to warning options and Optimization
4669         attribute to optimization options.
4670         * common.opt: Likewise.
4671         Add --help=.
4672         Add -fhelp and -ftarget-help as aliases for the transformed --help
4673         and --target-help options.
4674         * opt-functions.awk: Add code to handle Warning and Optimization
4675         attributes.
4676
4677 2007-02-12  Richard Henderson  <rth@redhat.com>
4678
4679         * config/alpha/constraints.md: New file.
4680         * config/alpha/alpha.c: Include tm-constrs.h.
4681         (alpha_const_ok_for_letter_p, alpha_const_double_ok_for_letter_p,
4682         alpha_extra_constraint): Remove.
4683         (alpha_emit_conditional_branch): Use satisfies_constraint_*.
4684         * config/alpha/alpha-protos.h: Update.
4685         * config/alpha/alpha.h (REG_CLASS_FROM_LETTER): Remove.
4686         (CONST_OK_FOR_LETTER_P, CONST_DOUBLE_OK_FOR_LETTER_P): Remove.
4687         (EXTRA_CONSTRAINT): Remove.
4688         * config/alpha/alpha.md: Include constraints.md.
4689         (adddi splitter): Use satisfies_constraint_*.
4690         * config/alpha/predicates.md (add_operand): Likewise.
4691         (sext_add_operand, addition_operation): Likewise.
4692
4693 2007-02-12  Dorit Nuzman  <dorit@il.ibm.com>
4694
4695         PR tree-optimization/29145
4696         * tree-data-ref.c (base_addr_differ_p): Make us more conservative
4697         in our handling of restrict qualified pointers.
4698
4699 2007-02-12  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
4700
4701         PR middle-end/7651
4702         * doc/invoke.texi (Wunused-value): Update description.
4703         (Wextra): Delete item.
4704         * opts.c (set_Wextra): Don't use the value of Wextra to set the
4705         value of Wunused-value.
4706         * c-typeck.c (c_process_expr_stmt): Don't check extra_warnings.
4707         (c_finish_stmt_expr): Don't check extra_warnings.
4708         (emit_side_effect_warnings): The caller is responsible to check
4709         warn_unused_value.
4710
4711 2007-02-11  Roger Sayle  <roger@eyesopen.com>
4712             Matt Thomas  <matt@3am-software.com>
4713
4714         * simplify-rtx.c (simplify_relational_operation_1): Correct typo.
4715
4716 2007-02-11  Roger Sayle  <roger@eyesopen.com>
4717
4718         * simplify-rtx.c (simplify_relational_operation_1): Optimize
4719         comparisons of POPCOUNT against zero.
4720         (simplify_const_relational_operation): Likewise.
4721
4722 2007-02-11  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
4723
4724         * doc/invoke.texi (Wextra): Delete outdated paragraph.
4725
4726 2007-02-11  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
4727
4728         * dwarf2out.c (root_type): Delete unused function.
4729
4730 2007-02-11  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
4731
4732         * genattrtab.c (contained_in_p): Delete unused function.
4733         (write_expr_attr_cache): Likewise.
4734
4735 2007-02-11  Jan Hubicka  <jh@suse.cz>
4736
4737         * ipa-inline.c (cgraph_edge_badness): Add "else" missing in the
4738         previous patch.
4739
4740 2007-02-11  Steven Bosscher  <steven@gcc.gnu.org>
4741
4742         * fwprop.c (try_fwprop_subst): Use set_unique_reg_note
4743         to add the REG_EQ* note.
4744         * see.c (see_merge_one_use_extension): Likewise.
4745         * local-alloc.c (update_equiv_regs): Likewise.  Also don't
4746         turn REG_EQUAL notes into REG_EQUIV notes if the target
4747         register may have more than one set.
4748         * function.c (assign_parm_setup_reg): Use set_unique_reg_note.
4749         * gcse.c (try_replace_reg): Likewise.
4750         * alias.c (init_alias_analysis): Use find_reg_equal_equiv_note.
4751         * calls.c (fixup_tail_calls): Likewise.  Abort if there is
4752         more than one REG_EQUIV note.
4753         * reload1.c (gen_reload): Use set_unique_reg_note.
4754
4755 2007-02-11  Uros Bizjak  <ubizjak@gmail.com>
4756
4757         * config/i386/i386.c (TARGET_VECTORIZE_BUILTIN_CONVERSION): Define.
4758         (ix86_builtin_conversion): New function.
4759
4760 2007-02-06  Mark Mitchell  <mark@codesourcery.com>
4761
4762         PR target/29487
4763         * tree.h (DECL_REPLACEABLE_P): New macro.
4764         * except.c (set_nothrow_function_flags): Likewise.
4765
4766 2007-02-11  Tehila Meyzels  <tehila@il.ibm.com>
4767             Ira Rosen  <irar@il.ibm.com>
4768             Dorit Nuzman  <dorit@il.ibm.com>
4769
4770         * doc/tm.texi (TARGET_VECTORIZE_BUILTIN_CONVERSION): New target hook.
4771         * targhooks.c (default_builtin_vectorized_conversion): New.
4772         * targhooks.h (default_builtin_vectorized_function): New declaration.
4773         * target.h (struct vectorize): Add builtin_conversion field.
4774         * tree-vectorizer.h (type_conversion_vec_info_type): New enum
4775         stmt_vec_info_type value.
4776         (vectorizable_conversion): New declaration.
4777         * tree-vect-analyze.c (vect_analyze_operations): Add
4778         vectorizable_conversion call.
4779         * target-def.h (TARGET_VECTORIZE_BUILTIN_CONVERSION): New.
4780         * tree-vect-transform.c (vectorizable_conversion): New function.
4781         (vect_transform_stmt): Add case for type_conversion_vec_info_type.
4782         * tree-vect-generic.c (expand_vector_operations_1): Consider correct
4783         mode.
4784         * config/rs6000/rs6000.c (rs6000_builtin_conversion): New.
4785         (TARGET_VECTORIZE_BUILTIN_CONVERSION): Defined.
4786         (rs6000_expand_builtin): Add handling a case of ALTIVEC_BUILTIN_VCFUX
4787         or ALTIVEC_BUILTIN_VCFSX.
4788
4789 2007-02-10  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
4790
4791         PR target/30634
4792         * pa.md (movdf): For 64-bit target, fail if operand 1 is a non-zero
4793         CONST_DOUBLE and operand 0 is a hard register.
4794         (movdi): For 64-bit target, remove code to force CONST_DOUBLE to
4795         memory.  Fail if operand 1 is a non-zero CONST_INT and operand 0
4796         is a hard floating-point register.
4797
4798 2007-02-10  Richard Henderson  <rth@redhat.com>
4799             Jakub Jelinek  <jakub@redhat.com>
4800             Alexandre Oliva  <aoliva@redhat.com>
4801
4802         * Makefile.in (libgcc-support, libgcc.mvars): Add emutls.c.
4803         * builtin-types.def (BT_WORD): Make unsigned.
4804         (BT_FN_VOID_PTR_WORD_WORD_PTR): New.
4805         * builtins.def (BUILT_IN_EMUTLS_GET_ADDRESS): New.
4806         (BUILT_IN_EMUTLS_REGISTER_COMMON): New.
4807         * c-decl.c (grokdeclarator): Don't error if !have_tls.
4808         * c-parser.c (c_parser_omp_threadprivate): Likewise.
4809         * dwarf2out.c (loc_descriptor_from_tree_1): Don't do anything for
4810         emulated tls.
4811         * expr.c (emutls_var_address): New.
4812         (expand_expr_real_1): Expand emulated tls.
4813         (expand_expr_addr_expr_1): Likewise.
4814         * libgcc-std.ver: Add __emutls_get_address, __emutls_register_common.
4815         * output.h (emutls_finish): Declare.
4816         * toplev.c (compile_file): Call it.
4817         * tree-ssa-address.c (gen_addr_rtx): Check for const-ness of the
4818         address before wrapping in CONST.
4819         * varasm.c (emutls_htab, emutls_object_type): New.
4820         (EMUTLS_VAR_PREFIX, EMUTLS_TMPL_PREFIX): New.
4821         (get_emutls_object_name, get_emutls_object_type): New.
4822         (get_emutls_init_templ_addr, emutls_decl): New.
4823         (emutls_common_1, emutls_finish): New.
4824         (assemble_variable): When emulating tls, swap decls; generate
4825         constructor for the emutls objects.
4826         (do_assemble_alias): When emulating tls, swap decl and target name.
4827         (default_encode_section_info): Don't add SYMBOL_FLAG_TLS_SHIFT
4828         for emulated tls.
4829         * varpool.c (decide_is_variable_needed): Look at force_output.
4830         Recurse for emulated tls.
4831         (cgraph_varpool_remove_unreferenced_decls): Remove checks redundant
4832         with decide_is_variable_needed.
4833         * emutls.c: New file.
4834         * config/sparc/sol2.h (ASM_DECLARE_OBJECT_NAME): Only emit
4835         tls_object for real tls.
4836
4837 2007-02-10  Kaz Kojima  <kkojima@gcc.gnu.org>
4838
4839         PR rtl-optimization/29599
4840         * reload1.c (eliminate_regs_in_insn): Take the destination
4841         mode into account when computing the offset.
4842
4843 2007-02-09  Stuart Hastings  <stuart@apple.com>
4844             Richard Henderson  <rth@redhat.com>
4845
4846         * gcc/config/i386/i386.h (TARGET_KEEPS_VECTOR_ALIGNED_STACK): New.
4847         * gcc/config/i386/darwin.h: (TARGET_KEEPS_VECTOR_ALIGNED_STACK): New.
4848         * gcc/config/i386/i386.md (fixuns_trunc<mode>si2, fixuns_truncsfhi2,
4849         fixuns_truncdfhi2): New.
4850         (fix_truncsfdi_sse): Call ix86_expand_convert_sign_didf_sse.
4851         (floatunsdidf2): Call ix86_expand_convert_uns_didf_sse.
4852         (floatunssisf2): Add call to ix86_expand_convert_uns_sisf_sse.
4853         (floatunssidf2): Allow nonimmediate source.
4854         * gcc/config/i386/sse.md (movdi_to_sse): New.
4855         (vec_concatv2di): Drop '*'.
4856         * gcc/config/i386/i386-protos.h (ix86_expand_convert_uns_si_sse,
4857         ix86_expand_convert_uns_didf_sse, ix86_expand_convert_uns_sidf_sse,
4858         ix86_expand_convert_uns_sisf_sse, ix86_expand_convert_sign_didf_sse):
4859         New.
4860         * gcc/config/i386/i386.c (ix86_expand_convert_uns_si_sse,
4861         ix86_expand_convert_uns_didf_sse, ix86_expand_convert_uns_sidf_sse,
4862         ix86_expand_convert_uns_sisf_sse, ix86_expand_convert_sign_didf_sse,
4863         ix86_build_const_vector, ix86_expand_vector_init_one_nonzero): New.
4864         (ix86_build_signbit_mask): Fix decl of v, refactor to call
4865         ix86_build_const_vector.
4866         (x86_emit_floatuns): Rewrite.
4867
4868 2007-02-10  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
4869
4870         * genautomata.c (longest_path_length): Delete unused function.
4871         (struct state): Delete unused longest_path_length.
4872         (UNDEFINED_LONGEST_PATH_LENGTH): Delete unused macro.
4873         (get_free_state): Delete unused.
4874
4875 2007-02-09  Jan Hubicka  <jh@suse.cz>
4876
4877         * params.def (PARAM_INLINE_UNIT_GROWTH): Set to 30.
4878         * doc/invoke.texi (inline-unit-growth): Update default value.
4879
4880         * Makefile.in (passes.o, ipa-inline.o): Add dependencies.
4881         * cgraphbuild.c (build_cgraph_edges): Compute frequencies.
4882         (rebuild_cgraph_edges): Likewise.
4883         * cgraph.c (cgraph_set_call_stmt): Add new argument frequency.
4884         (dump_cgraph_node): Dump frequencies.
4885         (cgraph_clone_edge): Add frequency scales.
4886         (cgraph_clone_node): Add freuqnecy.
4887         * cgraph.h (cgraph_edge): Add freuqnecy argument.
4888         (CGRAPH_FREQ_BASE, CGRAPH_FREQ_MAX): New constants.
4889         (cgraph_create_edge, cgraph_clone_edge, cgraph_clone_node): Update.
4890         * tree-pass.h (TODO_rebuild_frequencies): New constant.
4891         * cgraphunit.c (verify_cgraph_node): Verify frequencies.
4892         (cgraph_copy_node_for_versioning): Update call of cgraph_clone_edge.
4893         (save_inline_function_body): Likewise.
4894         * ipa-inline.c: inluce rtl.h
4895         (cgraph_clone_inlined_nods): Update call of cgraph_clone_node.
4896         (cgraph_edge_badness): Use frequencies.
4897         (cgraph_decide_recursive_inlining): Update clonning.
4898         (cgraph_decide_inlining_of_small_function): Dump frequency.
4899         * predict.c (estimate_bb_frequencies): Export.
4900         * predict.h (estimate_bb_frequencies): Declare.
4901         * tree-inline.c (copy_bb): Watch overflows.
4902         (expand_call_inline): Update call of cgraph_create_edge.
4903         (optimize_inline_calls): Use TODO flags to update frequnecies.
4904         * passes.h: Include predict.h
4905         (init_optimization_passes): Move profile ahead.
4906         (execute_function_todo): Handle TODO_rebuild_frequencies.
4907
4908 2007-02-09  Roger Sayle  <roger@eyesopen.com>
4909
4910         * config/alpha/alpha.c (emit_insxl): Force the first operand of
4911         the insbl or inswl pattern into a register.
4912
4913 2007-02-09  Roger Sayle  <roger@eyesopen.com>
4914
4915         * config/ia64/ia64.md (bswapdi2): New define_insn.
4916
4917 2007-02-09  Richard Henderson  <rth@redhat.com>
4918
4919         * config/i386/constraints.md (Ym): New constraint.
4920         * config/i386/i386.md (movsi_1): Change Y2 to Yi constraints.
4921         (movdi_1_rex64): Split sse and xmm general register moves from
4922         memory move alternatives.  Use conditional register constraints.
4923         (movsf_1, movdf_integer): Likewise.
4924         (zero_extendsidi2_32, zero_extendsidi2_rex64): Likewise.
4925         (movdf_integer_rex64): New.
4926         (pushsf_rex64): Fix output constraints.
4927         * config/i386/sse.md (sse2_loadld): Split rm alternative, use Yi.
4928         (sse2_stored): Likewise.
4929         (sse2_storeq_rex64): New.
4930         * config/i386/i386.c (x86_inter_unit_moves): Enable for not
4931         amd and not generic.
4932         (ix86_secondary_memory_needed): Don't bypass TARGET_INTER_UNIT_MOVES
4933         for optimize_size.  Remove SF/DFmode hack.
4934
4935 2007-02-09  Dwarakanath Rajagopal  <dwarak.rajagopal@amd.com>
4936
4937         * config/i386/driver-i386.c: Turn on -mtune=native for AMDFAM10.
4938         (bit_SSE4a): New.
4939
4940 2007-02-09  Nathan Sidwell  <nathan@codesourcery.com>
4941             Richard Sandiford  <richard@codesourcery.com>
4942
4943         * config.gcc (m68010-*-netbsdelf*, m68k*-*-netbsdelf*)
4944         (m68k*-*-openbsd*, m68k-*-linux*): Set default_cf_cpu.
4945         (m68k-*-aout*, m68k-*-coff*, m68k-*-uclinux*, m68k-*-rtems*): Add
4946         m68k/t-mlib to tmake_file.
4947         (m68020-*-elf*, m68k-*-elf*): Likewise.  Add t-m68kbare as well.
4948         (m68k*-*-*): Use --with-arch to pick a default for --with-cpu.
4949         (m680[012]0-*-*, m68k*-*-*): Add support for --with-arch.
4950         Allow it to be cf or m68k.  Set m68k_arch_family.  If that
4951         variable is not empty, add t-$m68k_arch_family to tmake_file.
4952         Add t-mlibs to tmake_file.
4953         * doc/install.texi: Document --with-arch=m68k and --with-arch=cf.
4954         * config/m68k/t-cf: New file.
4955         * config/m68k/t-m68k: Likewise.
4956         * config/m68k/t-mlibs: Likewise.
4957         * config/m68k/t-m68kbare (MULTILIB_OPTIONS, MULTILIB_DIRNAMES)
4958         (MULTILIB_MATCHES, MULTILIB_EXCEPTIONS): Delete.
4959         (M68K_MLIB_DIRNAMES, M68K_MLIB_OPTIONS): Define.
4960         * config/m68k/t-m68kelf (MULTILIB_OPTIONS, MULTILIB_DIRNAMES)
4961         (MULTILIB_MATCHES, MULTILIB_EXCEPTIONS, LIBGCC, INSTALL_LIBGCC):
4962         Delete.
4963         * config/m68k/t-openbsd (MULTILIB_OPTIONS, LIBGCC): Delete.
4964         (INSTALL_LIBGCC): Delete.
4965         (M68K_MLIB_DIRNAMES, M68K_MLIB_OPTIONS): Define.
4966         * config/m68k/t-rtems (MULTILIB_OPTIONS, MULTILIB_DIRNAMES)
4967         (MULTILIB_MATCHES, MULTILIB_EXCEPTIONS): Delete.
4968         (M68K_MLIB_CPU): Define.
4969         * config/m68k/t-uclinux (MULTILIB_OPTIONS, MULTILIB_DIRNAMES)
4970         (MULTILIB_MATCHES, MULTILIB_EXCEPTIONS): Delete.
4971         (M68K_MLIB_CPU, M68K_MLIB_OPTIONS, M68K_MLIB_DIRNAMES): Define.
4972
4973 2007-02-09  Zdenek Dvorak  <dvorakz@suse.cz>
4974             Richard Guenther  <rguenther@suse.de>
4975
4976         PR middle-end/23361
4977         * fold-const.c (fold_comparison): Handle obfuscated comparisons
4978         against INT_MIN/INT_MAX.
4979         * tree-ssa-loop-ivcanon.c (remove_empty_loop): Print to dump
4980         file if a loop is removed.
4981
4982 2007-02-09  Joseph Myers  <joseph@codesourcery.com>
4983
4984         * calls.c (store_one_arg): Pass correct alignment to
4985         emit_push_insn for non-BLKmode values.
4986         * expr.c (emit_push_insn): If STRICT_ALIGNMENT, copy to an
4987         unaligned stack slot via a suitably aligned slot.
4988
4989 2007-02-08  DJ Delorie  <dj@redhat.com>
4990
4991         * config/m32c/m32c.c (m32c_unpend_compare): Add default to silence
4992         warnings.
4993         (legal_subregs): Use unsigned char, make const.
4994         (m32c_illegal_subreg_p): Use ARRAY_SIZE.  Delete unused variables.
4995
4996 2007-02-08  Paul Brook  <paul@codesourcery.com>
4997
4998         * config/arm/lib1funcs.asm (RETLDM): Pop directly into PC when no
4999         special interworking needed.
5000
5001 2007-02-08  Harsha Jagasia  <harsha.jagasia@amd.com>
5002
5003         * config/i386/xmmintrin.h: Make inclusion of emmintrin.h
5004         conditional to __SSE2__.
5005         (Entries below should have been added to first ChangeLog
5006         entry for amdfam10 dated 2007-02-05)
5007         * config/i386/emmintrin.h: Generate #error if __SSE2__ is not
5008         defined.
5009         * config/i386/pmmintrin.h: Generate #error if __SSE3__ is not
5010         defined.
5011         * config/i386/tmmintrin.h: Generate #error if __SSSE3__ is not
5012         defined.
5013
5014 2007-02-08  DJ Delorie  <dj@redhat.com>
5015
5016         * config/m32c/m32c-protos.h (m32c_illegal_subreg_p): New.
5017         * config/m32c/m32c.c (legal_subregs): New.
5018         (m32c_illegal_subreg_p): New.
5019         * config/m32c/predicates.md (m32c_any_operand): Use it to reject
5020         unsupported subregs of hard regs.
5021
5022 2007-02-08  Jan Hubicka  <jh@suse.cz>
5023
5024         * tree-cfg.c (bsi_replace): Shortcut when replacing the statement with
5025         the same one; always update histograms.
5026
5027 2007-02-08  Diego Novillo  <dnovillo@redhat.com>
5028
5029         * passes.c (init_optimization_passes): Tidy comment.
5030
5031 2007-02-08  Roger Sayle  <roger@eyesopen.com>
5032
5033         * simplify-rtx.c (simplify_unary_operation_1) <POPCOUNT>: We can
5034         strip zero_extend, bswap and rotates from POCOUNT's argument.
5035         <PARITY>: Likewise, we can strip not, bswap, sign_extend,
5036         zero_extend and rotates from PARITY's argument.
5037         <BSWAP>: A byte-swap followed by a byte-swap is an identity.
5038         (simplify_const_unary_operation) <BSWAP>: Evaluate the byte-swap
5039         of an integer constant at compile-time.
5040
5041 2007-02-08  Diego Novillo  <dnovillo@redhat.com>
5042
5043         PR 30562
5044         * tree-flow.h (struct var_ann_d): Remove field 'is_used'.
5045         Update all users.
5046         * tree-ssa-alias.c (compute_is_aliased): Remove.  Update all
5047         users.
5048         (init_alias_info):
5049         * tree-ssa-live.c (remove_unused_locals): Do not remove
5050         TREE_ADDRESSABLE variables.
5051         * tree-ssa-structalias.c (compute_points_to_sets): Tidy.
5052         * tree-ssa-operands.c (add_virtual_operand): Remove argument
5053         FOR_CLOBBER.  Update all users.
5054         If VAR has an associated alias set, add a virtual operand for
5055         it if no alias is found to conflict with the memory reference.
5056
5057 2007-02-07  Jan Hubicka  <jh@suse.cz>
5058             Robert Kidd <rkidd@crhc.uiuc.edu>
5059
5060         * value-prof.c (visit_hist, free_hist): Return 1 instead of 0.
5061
5062 2007-02-07  Ian Lance Taylor  <iant@google.com>
5063
5064         * lower-subreg.c (simple_move): Reject PARTIAL_INT modes.
5065
5066 2007-02-07  Roger Sayle  <roger@eyesopen.com>
5067
5068         * config/rs6000/rs6000.md (ctz<mode>2, ffs<mode>2, popcount<mode>2,
5069         parity<mode>2, smulsi3_highpart, abstf2_internal, allocate_stack,
5070         tablejumpdi, movsi_to_cr_one): Remove constraints from
5071         define_expand's match_operands.
5072
5073 2007-02-07  Roger Sayle  <roger@eyesopen.com>
5074
5075         * global.c (compute_regsets): Move declatation of "i" inside of
5076         #ifdef ELIMINABLE_REGS to avoid unused variable bootstrap failure.
5077
5078 2007-02-07  Jakub Jelinek  <jakub@redhat.com>
5079
5080         PR c++/30703
5081         * gimplify.c (gimplify_scan_omp_clauses): Remove special casing
5082         of INDIRECT_REF <RESULT_DECL>.
5083
5084         * config/i386/i386.c (override_options): Set PTA_SSSE3 for core2.
5085
5086 2007-02-06  J"orn Rennecke  <joern.rennecke@arc.com>
5087             Kaz Kojima  <kkojima@gcc.gnu.org>
5088
5089         PR target/29746
5090         * config/sh/sh.c (expand_cbranchdi4): Use scratch register
5091         properly.
5092         (sh_initialize_trampoline): Add parentheses to avoid a warning.
5093
5094 2007-02-06  Zdenek Dvorak <dvorakz@suse.cz>
5095
5096         * doc/loop.texi: Document possibility not to perform disambiguation
5097         of loops with multiple latches.
5098         * cfgloopmanip.c (alp_enum_p): Removed.
5099         (add_loop): Handle subloops.  Use get_loop_body_with_size.
5100         (create_preheader): Do not allow ENTRY_BLOCK_PTR to be preheader.
5101         * cfghooks.c (redirect_edge_and_branch_force): Set dominator for
5102         the new forwarder block.
5103         (make_forwarder_block): Only call new_bb_cbk if it is not NULL.
5104         Handle the case latch is NULL.
5105         * tree-ssa-dom.c (tree_ssa_dominator_optimize): Avoid cfg modifications
5106         when marking loop exits.
5107         * ifcvt.c (if_convert): Ditto.  Mark loop exits even if cfg cannot
5108         be modified.
5109         * loop-init.c (loop_optimizer_init): Do not modify cfg.  Call
5110         disambiguate_loops_with_multiple_latches.
5111         * tree-cfgcleanup.c (cleanup_tree_cfg_loop): Calculate dominators
5112         before fix_loop_structure.
5113         * cfgloop.c: Include pointer-set.h and output.h.
5114         (canonicalize_loop_headers, HEADER_BLOCK, LATCH_EDGE,
5115         update_latch_info, mfb_keep_just, mfb_keep_nonlatch): Removed.
5116         (get_loop_latch_edges, find_subloop_latch_edge_by_profile,
5117         find_subloop_latch_edge_by_ivs, find_subloop_latch_edge,
5118         mfb_redirect_edges_in_set, form_subloop, merge_latch_edges,
5119         disambiguate_multiple_latches, get_loop_body_with_size,
5120         disambiguate_loops_with_multiple_latches): New functions.
5121         (flow_loop_dump): Dump multiple latch edges.
5122         (flow_loop_nodes_find): Handle loops with multiple latches.
5123         (flow_loops_find): Ditto. Do not call canonicalize_loop_headers.
5124         (glb_enum_p): Modified.
5125         (get_loop_body): Use get_loop_body_with_size.
5126         * cfgloop.h (LOOPS_HAVE_RECORDED_EXITS): New flag.
5127         (AVOID_CFG_MODIFICATIONS): New constant.
5128         (disambiguate_loops_with_multiple_latches, add_loop,
5129         get_loop_body_with_size): Declare.
5130         * Makefile.in (cfgloop.o): Add pointer-set.h and output.h.
5131
5132 2007-02-06  Seongbae Park <seongbae.park@gmail.com>
5133
5134         PR inline-asm/28686
5135         * global.c (compute_regsets): New function.
5136         (global_alloc): Refactored ELIMINABLE_REGSET
5137         and NO_GLOBAL_ALLOC_REGS computation out.
5138         (rest_of_handle_global_alloc): Call compute_regsets()
5139         for non-optimizing case.
5140
5141 2007-02-06  Richard Henderson  <rth@redhat.com>
5142
5143         * config/i386/constraints.md (Y2): Rename from Y.
5144         (Yi): New constraint.
5145         * config/i386/i386.md (movsi_1, movdi_2, pushdf_nointeger,
5146         pushdf_integer, movdf_nointeger, movdf_integer, zero_extendsidi2_32,
5147         zero_extendsidi2_rex64, truncxfdf2_mixed): Change Y constraints to Y2.
5148         (extendsfdf2_mixed, extendsfdf2_sse, truncdfsf_fast_mixed,
5149         truncdfsf_fast_sse, truncdfsf_mixed, fix_truncdfdi_sse,
5150         fix_truncdfsi_sse, floatsidf2_mixed, floatsidf2_sse,
5151         floatdidf2_mixed, floatdidf2_sse, absnegdf2_mixed,
5152         absnegdf2_sse, sse_setccdf, fop_df_comm_mixed, fop_df_comm_sse,
5153         fop_df_1_mixed, fop_df_1_sse): Change Y constraints to x.
5154         * config/i386/mmx.md (mov<MMXMODEI>_internal_rex64,
5155         mov<MMXMODEI>_internal, movv2sf_internal_rex64, movv2sf_internal,
5156         vec_extractv2si_1): Change Y constraints to Y2.
5157         * config/i386/sse.md (vec_setv4sf_0, vec_concatv2df, vec_dupv4si,
5158         vec_dupv2di, sse2_concatv2si, vec_concatv4si_1, vec_concatv2di):
5159         Change Y constraints to Y2.
5160         (sse2_loadld): Change Y constraints to x.
5161
5162 2007-02-06  Roger Sayle  <roger@eyesopen.com>
5163
5164         * config/rs6000/rs6000.md (popcount<mode>2): Rewrite.
5165         (parity<mode>2): New define_expand using rs6000_emit_parity.
5166         * config/rs6000/rs6000.c (rs6000_emit_popcount,
5167         rs6000_emit_parity): New functions.
5168         * config/rs6000/rs6000-protos.h (rs6000_emit_popcount,
5169         rs6000_emit_parity): Prototype here.
5170
5171 2007-02-06  Ian Lance Taylor  <iant@google.com>
5172
5173         * lower-subreg.c (simple_move_operand): Reject CONST.
5174         (resolve_clobber): Call validate_change rather than directly
5175         assigning to XEXP (pat, 0).
5176
5177 2006-02-06  Paolo Bonzini  <bonzini@gnu.org>
5178
5179         * Makefile.in (tree-ssa-loop-ivopts.o): Add pointer-set.h dependency.
5180         (tree-ssa-reassoc.o): Add pointer-set.h dependency.
5181         (tree-cfg.o): Remove hashtab.h dependency.
5182
5183         * tree-ssa-loop-ivopts.c: Include pointer-set.h.
5184         (struct ivopts_data): Change niters to pointer_map_t.
5185         (struct nfe_cache_elt, nfe_hash, nfe_eq): Delete.
5186         (niter_for_exit): Create pointer_map on demand.  Change for
5187         pointer_map API.
5188         (tree_ssa_iv_optimize_init): Initialize data->niters to NULL.
5189         (free_loop_data): Destroy data->niters if created and reset field.
5190         (tree_ssa_iv_optimize_finalize): Don't delete data->niters here.
5191         (tree_ssa_iv_optimize_loop): Check for presence of stale data.
5192
5193         * tree-ssa-reassoc.c: Include pointer-set.h.
5194         (bb_rank): Change to long *.
5195         (operand_rank): Change to pointer_map_t.
5196         (find_operand_rank): Return long, -1 if not found.  Declare as inline.
5197         (insert_operand_rank): Accept long.
5198         (operand_entry_hash, operand_entry_eq): Remove.
5199         (get_rank): Return long.  Adjust for changes above.
5200         (init_reassoc): Change rank type to long.  Adjust creation of bb_rank
5201         and operand_rank.
5202         (fini_reassoc): Delete operand_rank with pointer_map_destroy.
5203
5204         * tree-ssa-structalias.c (vi_for_tree): Change to pointer_map.
5205         (struct tree_vi, tree_vi_t, tree_vi_hash, tree_vi_eq): Delete.
5206         (insert_vi_for_tree): Rewrite for pointer_map API.  Assert argument
5207         is not NULL.
5208         (lookup_vi_for_tree): Rewrite for pointer_map API.  Return varinfo_t
5209         directly since it cannot be NULL.
5210         (get_vi_for_tree): Rewrite for pointer_map API.
5211         (find_what_p_points_to): Adjust for change to lookup_vi_for_tree.
5212         (init_alias_vars): Create vi_for_tree as pointer_map.
5213         (delete_points_to_sets): Delete vi_for_tree using pointer_map_destroy.
5214
5215         * tree-cfg.c: Don't include hashtab.h.
5216         (edge_to_cases): Declare as pointer_map.
5217         (struct edge_to_cases_elt, edge_to_cases_hash, edge_to_cases_eq):
5218         Delete.
5219         (edge_to_cases_cleanup): Rewrite as pointer_map_traverse callback.
5220         (start_recording_case_labels): Create edge_to_cases as pointer_map.
5221         (end_recoding_case_labels): Cleanup edge_to_cases manually before
5222         destroying it.
5223         (record_switch_edge): Delete.
5224         (get_cases_for_edge): Adjust for pointer_map API, inline
5225         record_switch_edge (rewritten for new API), remove goto.
5226
5227 2006-02-06  Paolo Bonzini  <bonzini@gnu.org>
5228
5229         * Makefile.in (tree-nested.o): Add pointer-set.h dependency.
5230         * tree-nested.c: Include pointer-set.h.
5231         (var_map_elt, var_map_eq, var_map_hash): Delete.
5232         (struct nesting_info): Remove GTY marker.  Change the two htab_t's
5233         to pointer_map_t's.
5234         (nesting_info_bitmap_obstack): New.
5235         (lookup_field_for_decl): Adjust for pointer_map API.
5236         (lookup_tramp_for_decl): Adjust for pointer_map API.
5237         (get_nonlocal_debug_decl): Adjust for pointer_map API.
5238         (get_local_debug_decl): Adjust for pointer_map API.
5239         (convert_nl_goto_reference): Adjust for pointer_map API.
5240         (convert_nl_goto_receiver): Adjust for pointer_map API.
5241         (create_nesting_tree): Create outside GGC space.  Create bitmap on
5242         the new obstack.  Create field_map and var_map as pointer_maps.
5243         (free_nesting_tree): Adjust for changes to create_nesting_tree.
5244         (root): Delete.
5245         (lower_nested_functions): Move root here, no need to NULL it.
5246         Initialize and release the obstack.
5247
5248 2007-02-06  Paolo Bonzini  <bonzini@gnu.org>
5249
5250         * tree.c (tree_int_map_hash, tree_int_map_eq, tree_int_map_marked_p):
5251         Remove prototypes and make them non-static.
5252         (struct tree_int_map): Remove.
5253         * tree.h (struct tree_int_map): Move here, turning TO into an
5254         unsigned int.
5255         (tree_int_map_hash, tree_int_map_eq, tree_int_map_marked_p): Declare.
5256
5257         * tree.h (TREE_COMPLEXITY): Remove.
5258         (struct tree_exp): Remove complexity field.
5259         * tree.c (build1_stat): Don't set it.
5260
5261 2007-02-06  Dorit Nuzman  <dorit@il.ibm.com>
5262             Victor Kaplansky  <victork@il.ibm.com>
5263
5264         * tree-vectorizer.c (vect_is_simple_use): Support induction.
5265         (vect_is_simple_reduction): Support reduction with induction as
5266         one of the operands.
5267         (vect_is_simple_iv_evolution): Fix formatting.
5268         * tree-vect-analyze.c (vect_mark_stmts_to_be_vectorized): Fix
5269         formatting.  Don't mark induction phis for vectorization.
5270         (vect_analyze_scalar_cycles): Analyze all inductions, then reductions.
5271         * tree-vect-transform.c (get_initial_def_for_induction): New function.
5272         (vect_get_vec_def_for_operand): Support induction.
5273         (vect_get_vec_def_for_stmt_copy): Fix formatting and add check for
5274         induction case.
5275         (vectorizable_reduction): Support reduction with induction as one of
5276         the operands.
5277         (vectorizable_type_demotion): Use def-type of stmt argument rather
5278         than dummy def-type.
5279
5280         * tree-ssa-loop.c (gate_scev_const_prop): Return the value of
5281         flag_tree_scev_cprop.
5282         * common.opt (tree-scev-cprop): New flag.
5283
5284         * tree-vect-transform.c (vect_create_destination_var): Use 'kind' in
5285         call to vect_get_new_vect_var.
5286
5287 2007-02-06  Ira Rosen  <irar@il.ibm.com>
5288
5289         * tree-vect-patterns.c (vect_recog_widen_mult_pattern): Check that
5290         vectype is not NULL.
5291         (vect_pattern_recog_1): Likewise.
5292
5293 2007-02-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5294
5295         * fold-const.c (negate_expr_p): Handle CONJ_EXPR.
5296         (fold_negate_expr): Likewise.
5297
5298 2007-02-05  Alexandre Oliva  <aoliva@redhat.com>
5299
5300         PR debug/30189
5301         * dwarf2out.c (modified_type_die): Follow DECL_ORIGINAL_TYPE
5302         even if cv-qualification is the same.
5303
5304 2007-02-05  Geoffrey Keating  <geoffk@apple.com>
5305
5306         * config/rs6000/darwin-tramp.asm (__trampoline_setup): Call
5307         __enable_execute_stack on completion.
5308
5309 2007-02-05  Harsha Jagasia  <harsha.jagasia@amd.com>
5310
5311         * config/i386/athlon.md (athlon_fldxf_k8, athlon_fld_k8,
5312         athlon_fstxf_k8, athlon_fst_k8, athlon_fist, athlon_fmov,
5313         athlon_fadd_load, athlon_fadd_load_k8, athlon_fadd, athlon_fmul,
5314         athlon_fmul_load, athlon_fmul_load_k8, athlon_fsgn,
5315         athlon_fdiv_load, athlon_fdiv_load_k8, athlon_fdiv_k8,
5316         athlon_fpspc_load, athlon_fpspc, athlon_fcmov_load,
5317         athlon_fcmov_load_k8, athlon_fcmov_k8, athlon_fcomi_load_k8,
5318         athlon_fcomi, athlon_fcom_load_k8, athlon_fcom): Added amdfam10.
5319
5320 2007-02-05  Harsha Jagasia  <harsha.jagasia@amd.com>
5321
5322         * config/i386/i386.md (x86_sahf_1, cmpfp_i_mixed, cmpfp_i_sse,
5323         cmpfp_i_i387, cmpfp_iu_mixed, cmpfp_iu_sse, cmpfp_iu_387,
5324         swapsi, swaphi_1, swapqi_1, swapdi_rex64, fix_truncsfdi_sse,
5325         fix_truncdfdi_sse, fix_truncsfsi_sse, fix_truncdfsi_sse,
5326         x86_fldcw_1, floatsisf2_mixed, floatsisf2_sse, floatdisf2_mixed,
5327         floatdisf2_sse, floatsidf2_mixed, floatsidf2_sse,
5328         floatdidf2_mixed, floatdidf2_sse, muldi3_1_rex64, mulsi3_1,
5329         mulsi3_1_zext, mulhi3_1, mulqi3_1, umulqihi3_1, mulqihi3_insn,
5330         umulditi3_insn, umulsidi3_insn, mulditi3_insn, mulsidi3_insn,
5331         umuldi3_highpart_rex64, umulsi3_highpart_insn,
5332         umulsi3_highpart_zext, smuldi3_highpart_rex64,
5333         smulsi3_highpart_insn, smulsi3_highpart_zext, x86_64_shld,
5334         x86_shld_1, x86_64_shrd, sqrtsf2_mixed, sqrtsf2_sse,
5335         sqrtsf2_i387, sqrtdf2_mixed, sqrtdf2_sse, sqrtdf2_i387,
5336         sqrtextendsfdf2_i387, sqrtxf2, sqrtextendsfxf2_i387,
5337         sqrtextenddfxf2_i387): Added amdfam10_decode.
5338
5339         * config/i386/athlon.md (athlon_idirect_amdfam10,
5340         athlon_ivector_amdfam10, athlon_idirect_load_amdfam10,
5341         athlon_ivector_load_amdfam10, athlon_idirect_both_amdfam10,
5342         athlon_ivector_both_amdfam10, athlon_idirect_store_amdfam10,
5343         athlon_ivector_store_amdfam10): New define_insn_reservation.
5344         (athlon_idirect_loadmov, athlon_idirect_movstore): Added
5345         amdfam10.
5346
5347 2007-02-05  Harsha Jagasia  <harsha.jagasia@amd.com>
5348
5349         * config/i386/athlon.md (athlon_call_amdfam10,
5350         athlon_pop_amdfam10, athlon_lea_amdfam10): New
5351         define_insn_reservation.
5352         (athlon_branch, athlon_push, athlon_leave_k8, athlon_imul_k8,
5353         athlon_imul_k8_DI, athlon_imul_mem_k8, athlon_imul_mem_k8_DI,
5354         athlon_idiv, athlon_idiv_mem, athlon_str): Added amdfam10.
5355
5356 2007-02-05  Harsha Jagasia  <harsha.jagasia@amd.com>
5357
5358         * config/i386/athlon.md (athlon_sseld_amdfam10,
5359         athlon_mmxld_amdfam10, athlon_ssest_amdfam10,
5360         athlon_mmxssest_short_amdfam10): New define_insn_reservation.
5361
5362 2007-02-05  Harsha Jagasia  <harsha.jagasia@amd.com>
5363
5364         * config/i386/athlon.md (athlon_sseins_amdfam10): New
5365         define_insn_reservation.
5366         * config/i386/i386.md (sseins): Added sseins to define_attr type
5367         and define_attr unit.
5368         * config/i386/sse.md: Set type attribute to sseins for insertq
5369         and insertqi.
5370
5371 2007-02-05  Harsha Jagasia  <harsha.jagasia@amd.com>
5372
5373         * config/i386/athlon.md (sselog_load_amdfam10, sselog_amdfam10,
5374         ssecmpvector_load_amdfam10, ssecmpvector_amdfam10,
5375         ssecomi_load_amdfam10, ssecomi_amdfam10,
5376         sseaddvector_load_amdfam10, sseaddvector_amdfam10): New
5377         define_insn_reservation.
5378         (ssecmp_load_k8, ssecmp, sseadd_load_k8, seadd): Added amdfam10.
5379
5380 2007-02-05  Harsha Jagasia  <harsha.jagasia@amd.com>
5381
5382         * config/i386/athlon.md (cvtss2sd_load_amdfam10,
5383         cvtss2sd_amdfam10, cvtps2pd_load_amdfam10, cvtps2pd_amdfam10,
5384         cvtsi2sd_load_amdfam10, cvtsi2ss_load_amdfam10,
5385         cvtsi2sd_amdfam10, cvtsi2ss_amdfam10, cvtsd2ss_load_amdfam10,
5386         cvtsd2ss_amdfam10, cvtpd2ps_load_amdfam10, cvtpd2ps_amdfam10,
5387         cvtsX2si_load_amdfam10, cvtsX2si_amdfam10): New
5388         define_insn_reservation.
5389
5390         * config/i386/sse.md (cvtsi2ss, cvtsi2ssq, cvtss2si,
5391         cvtss2siq, cvttss2si, cvttss2siq, cvtsi2sd, cvtsi2sdq,
5392         cvtsd2si, cvtsd2siq, cvttsd2si, cvttsd2siq,
5393         cvtpd2dq, cvttpd2dq, cvtsd2ss, cvtss2sd,
5394         cvtpd2ps, cvtps2pd): Added amdfam10_decode attribute.
5395
5396 2007-02-05  Harsha Jagasia  <harsha.jagasia@amd.com>
5397
5398         * config/i386/athlon.md (athlon_ssedivvector_amdfam10,
5399         athlon_ssedivvector_load_amdfam10, athlon_ssemulvector_amdfam10,
5400         athlon_ssemulvector_load_amdfam10): New define_insn_reservation.
5401         (athlon_ssediv, athlon_ssediv_load_k8, athlon_ssemul,
5402         athlon_ssemul_load_k8): Added amdfam10.
5403
5404 2007-02-05  Harsha Jagasia  <harsha.jagasia@amd.com>
5405
5406         * config/i386/i386.h (TARGET_SSE_UNALIGNED_MOVE_OPTIMAL): New macro.
5407         (x86_sse_unaligned_move_optimal): New variable.
5408
5409         * config/i386/i386.c (x86_sse_unaligned_move_optimal): Enable for
5410         m_AMDFAM10.
5411         (ix86_expand_vector_move_misalign): Add code to generate movupd/movups
5412         for unaligned vector SSE double/single precision loads for AMDFAM10.
5413
5414 2007-02-05  Harsha Jagasia  <harsha.jagasia@amd.com>
5415
5416         * config/i386/i386.h (TARGET_AMDFAM10): New macro.
5417         (TARGET_CPU_CPP_BUILTINS): Add code for amdfam10.
5418         Define TARGET_CPU_DEFAULT_amdfam10.
5419         (TARGET_CPU_DEFAULT_NAMES): Add amdfam10.
5420         (processor_type): Add PROCESSOR_AMDFAM10.
5421
5422         * config/i386/i386.md: Add amdfam10 as a new cpu attribute to match
5423         processor_type in config/i386/i386.h.
5424         Enable imul peepholes for TARGET_AMDFAM10.
5425
5426         * config.gcc: Add support for --with-cpu option for amdfam10.
5427
5428         * config/i386/i386.c (amdfam10_cost): New variable.
5429         (m_AMDFAM10): New macro.
5430         (m_ATHLON_K8_AMDFAM10): New macro.
5431         (x86_use_leave, x86_push_memory, x86_movx, x86_unroll_strlen,
5432         x86_cmove, x86_3dnow_a, x86_deep_branch, x86_use_simode_fiop,
5433         x86_promote_QImode, x86_integer_DFmode_moves,
5434         x86_partial_reg_dependency, x86_memory_mismatch_stall,
5435         x86_accumulate_outgoing_args, x86_arch_always_fancy_math_387,
5436         x86_sse_partial_reg_dependency, x86_sse_typeless_stores,
5437         x86_use_ffreep, x86_use_incdec, x86_four_jump_limit,
5438         x86_schedule, x86_use_bt, x86_cmpxchg16b, x86_pad_returns):
5439         Enable/disable for amdfam10.
5440         (override_options): Add amdfam10_cost to processor_target_table.
5441         Set up PROCESSOR_AMDFAM10 for amdfam10 entry in
5442         processor_alias_table.
5443         (ix86_issue_rate): Add PROCESSOR_AMDFAM10.
5444         (ix86_adjust_cost): Add code for amdfam10.
5445
5446 2007-02-05  Harsha Jagasia  <harsha.jagasia@amd.com>
5447
5448         * config/i386/i386.opt: Add new Advanced Bit Manipulation (-mabm)
5449         instruction set feature flag. Add new (-mpopcnt) flag for popcnt
5450         instruction. Add new SSE4A (-msse4a) instruction set feature flag.
5451         * config/i386/i386.h: Add builtin definition for SSE4A.
5452         * config/i386/i386.md: Add support for ABM instructions
5453         (popcnt and lzcnt).
5454         * config/i386/sse.md: Add support for SSE4A instructions
5455         (movntss, movntsd, extrq, insertq).
5456         * config/i386/i386.c: Add support for ABM and SSE4A builtins.
5457         Add -march=amdfam10 flag.
5458         * config/i386/ammintrin.h: Add support for SSE4A intrinsics.
5459         * doc/invoke.texi: Add documentation on flags for sse4a, abm, popcnt
5460         and amdfam10.
5461         * doc/extend.texi: Add documentation for SSE4A builtins.
5462
5463 2007-02-05  Bob Wilson  <bob.wilson@acm.org>
5464
5465         * config/xtensa/xtensa.c (constantpool_mem_p): Skip over SUBREGs.
5466
5467 2007-02-05  Richard Guenther  <rguenther@suse.de>
5468
5469         * tree-vectorizer.h (vectorizable_function): Add argument type
5470         argument, change return type.
5471         * tree-vect-patterns.c (vect_recog_pow_pattern): Adjust caller.
5472         * tree-vect-transform.c (vectorizable_function): Handle extra
5473         argument, return vectorized function decl.
5474         (build_vectorized_function_call): Remove.
5475         (vectorizable_call): Handle calls with result and argument types
5476         differing.  Handle loop vectorization factor correctly.
5477         * targhooks.c (default_builtin_vectorized_function): Adjust for
5478         extra argument.
5479         * targhooks.h (default_builtin_vectorized_function): Likewise.
5480         * target.h (builtin_vectorized_function): Add argument type
5481         argument.
5482         * config/i386/i386.c (ix86_builtin_vectorized_function): Handle
5483         extra argument, allow vectorizing of lrintf.
5484         * doc/tm.texi (TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION): Adjust
5485         documentation of target hook.
5486
5487 2007-02-05  Hans-Peter Nilsson  <hp@axis.com>
5488
5489         PR target/30665
5490         * config/cris/cris.md ("*andsi_movu", "*andsi_clear", "*andhi_movu")
5491         ("*andhi_clear", andu (casesi+45)): For size-changed operand where
5492         memory is allowed, require !side_effects_p, not just !MEM_VOLATILE_P.
5493
5494 2007-02-05  Roger Sayle  <roger@eyesopen.com>
5495
5496         * fold-const.c (fold_unary) <REAL_PART>: Test for availability of
5497         BUILT_IN_COS before simplifying REAL_PART(CEXPI)) to COS.
5498         <IMAG_PART>: Likewise, check for availability of BUILT_IN_SIN.
5499         * builtins.c (fold_builtin_sincos): Check for TARGET_C99_FUNCTIONS
5500         before canonicalizing sincos to cexpi.
5501         (fold_builtin_cexp): Likewise, for canonicalizing cexp to cexpi.
5502
5503 2007-02-05  Roger Sayle  <roger@eyesopen.com>
5504
5505         * config/alpha/alpha.c (alpha_add_builtins): New Helper function.
5506         Set TREE_READONLY and TREE_NOTHROW directly, not via attributes.
5507         (alpha_init_builtins): Use alpha_add_builtins to process tables.
5508
5509 2007-02-05  Roger Sayle  <roger@eyesopen.com>
5510
5511         * mips-tfile.c (initialize_init_file): Correct endianness test.
5512
5513 2007-02-05  Kazu Hirata  <kazu@codesourcery.com>
5514
5515         * config/m68k/m68k.md (pushdi-1, pushdi, movsi+1): Don't use
5516         the 'y' constraint.
5517
5518 2007-02-05  Richard Sandiford  <richard@codesourcery.com>
5519
5520         * dwarf2out.c (dwarf2out_frame_debug_expr): Record the register
5521         saves in a PARALLEL before the register assignments.
5522
5523 2007-02-05  Richard Sandiford  <richard@codesourcery.com>
5524
5525         * doc/tm.texi (DWARF_ALT_FRAME_RETURN_COLUMN): Do not require
5526         DWARF_FRAME_RETURN_COLUMN to be a general register.
5527         * dwarf2out.c (init_return_column_size): New function, split from...
5528         (expand_builtin_init_dwarf_reg_sizes): ...here.  Allow both
5529         DWARF_FRAME_RETURN_COLUMN and DWARF_ALT_FRAME_RETURN_COLUMN
5530         to be nongeneral registers.
5531         * config/m68k/m68k.h (DWARF_FRAME_REGNUM): Only map FP and
5532         integer registers.
5533         (DWARF_FRAME_REGISTERS, DWARF_FRAME_RETURN_COLUMN): Define.
5534         (DWARF_ALT_FRAME_RETURN_COLUMN): Define.
5535
5536 2007-02-04  Zdenek Dvorak <dvorakz@suse.cz>
5537
5538         * cfgcleanup.c (try_optimize_cfg): Avoid removing ENTRY_BLOCK_PTR.
5539
5540 2007-02-04  Zdenek Dvorak <dvorakz@suse.cz>
5541
5542         * cfgloopmanip.c (loop_delete_branch_edge): Removed.
5543         (remove_path): Use can_remove_branch_p and remove_branch instead
5544         of loop_delete_branch_edge.
5545         * tree-ssa-loop-manip.c (scale_dominated_blocks_in_loop): New function.
5546         (tree_transform_and_unroll_loop): Remove dead branches immediately.
5547         Update profile using scale_dominated_blocks_in_loop.
5548         * cfghooks.c (can_remove_branch_p, remove_branch): New functions.
5549         * cfghooks.h (struct cfg_hooks): Add can_remove_branch_p.
5550         (can_remove_branch_p, remove_branch): Declare.
5551         * tree-cfg.c (tree_can_remove_branch_p): New function.
5552         (tree_cfg_hooks): Add tree_can_remove_branch_p.
5553         * cfgrtl.c (rtl_can_remove_branch_p): New function.
5554         (rtl_cfg_hooks, cfg_layout_rtl_cfg_hook): Add rtl_can_remove_branch_p.
5555
5556 2007-02-05  Jan Hubicka  <jh@suse.cz>
5557
5558         PR middle-end/30696
5559         * ipa-inline.c (cgraph_clone_inlined_nodes): When there are unanalyzed
5560         nodes in cgraph, don't remove offline copy of the function.
5561
5562 2007-02-04  Jan Hubicka  <jh@suse.cz>
5563
5564         * tree-sra.c (sra_walk_expr): Add linebreaks. BITFIELD_REFs into
5565         vectors might cause maybe_lookup_element_for_expr to be called
5566         on non-sra-candidate.
5567
5568 2007-02-04  Kazu Hirata  <kazu@codesourcery.com>
5569
5570         * config/bfin/bfin-modes.def, config/bfin/bfin.c,
5571         config/bfin/bfin.md, config/bfin/predicates.md: Follow
5572         spelling conventions.
5573
5574 2007-02-04  Richard Guenther  <rguenther@suse.de>
5575
5576         PR middle-end/30636
5577         * fold-const.c (try_move_mult_to_index): Make sure to not
5578         overflow one dimension of a multi-dimensional array access.
5579
5580 2007-02-04  Jan Hubicka  <jh@suse.cz>
5581
5582         * passes.c (init_optimization_passes): Reindent.
5583
5584 2007-02-04  Jan Hubicka  <jh@suse.cz>
5585             Eric Botcazou  <ebotcazou@adacore.com>
5586
5587         * tree-optimize.c (has_abnormal_outgoing_edge_p): Move to...
5588         (execute_fixup_cfg): Break out the abnormal goto code.
5589         * tree-inline.c (has_abnormal_outgoing_edge_p): ...here.
5590         (make_nonlocal_label_edges): Move here from execute_fixup_cfg.
5591         (optimize_inline_calls): Call make_nonlocal_label_edges.
5592
5593 2007-02-04  Jan Hubicka  <jh@suse.cz>
5594
5595         * tree-ssa-copyrename.c (copy_rename_partition_coalesce): Return
5596         true when something was changed.
5597         (rename_ssa_copies): When something was changed, do
5598         TODO_remove_unused_locals.
5599         * tree-ssa-forwprop.c (tree_ssa_forward_propagate_single_use_value):
5600         add TODO_remove_unused_locals when instruction was removed.
5601
5602 2007-02-04  Jan Hubicka  <jh@suse.cz>
5603
5604         * ipa-inline.c (try_inline): Improve debug output; work on already
5605         inline edges too.
5606         (cgraph_decide_inlining_incrementally): Indent; improve debug output;
5607         call try_inline for already inlined edges too when flattening;
5608         inline also functions that make callee growth but overall unit size
5609         reduce.
5610
5611 2007-02-04  Kazu Hirata  <kazu@codesourcery.com>
5612
5613         * config/m32c/bitops.md, config/m32c/jump.md,
5614         config/m32c/m32c.c, config/m32c/m32c.h, config/m32r/m32r.c,
5615         config/m32r/m32r.h, config/m32r/m32r.md,
5616         config/m32r/predicates.md, config/m68hc11/larith.asm,
5617         config/m68hc11/m68hc11.c, config/m68hc11/m68hc11.h,
5618         config/m68k/m68k.h, config/mcore/mcore.md, config/mips/4k.md,
5619         config/mips/mips-protos.h, config/mips/mips.c,
5620         config/mips/mips.h, config/mips/mips.md, config/mips/mips16.S,
5621         config/mn10300/mn10300.h, config/mn10300/predicates.md,
5622         config/mt/mt.c, config/mt/mt.h, config/mt/mt.md: Follow
5623         spelling conventions.
5624
5625         * config/v850/v850.c, config/v850/v850.h, config/v850/v850.md:
5626         Follow spelling conventions.
5627
5628 2007-02-03  Douglas Gregor  <doug.gregor@gmail.com>
5629
5630         * c-opts.c (c_common_post_options): If C++0x mode is enabled, don't
5631         warn about C++0x compatibility.
5632
5633 2007-02-04  Kazu Hirata  <kazu@codesourcery.com>
5634
5635         * config/h8300/h8300.c, config/h8300/h8300.h,
5636         config/h8300/h8300.md: Follow spelling conventions.
5637
5638 2007-02-03  Uros Bizjak  <ubizjak@gmail.com>
5639
5640         PR middle-end/30667
5641         * combine.c (try_combine): Do not substitute source operand
5642         with constants wider than 2 * HOST_BITS_PER_WIDE_INT.
5643
5644 2007-02-03  Jan Hubicka  <jh@suse.cz>
5645
5646         PR gcov-profile/30650
5647         * value-prof.c (stringop_block_profile): Fix handling of size counter;
5648         do not divide by zero for never executed counters.
5649         (tree_find_values_to_profile): Fix counters.
5650         * gcov-ui.h (GCOV_COUNTER_AVERAGE, GCOV_COUNTER_IOR): Fix comments.
5651
5652 2007-02-03  Ian Lance Taylor  <iant@google.com>
5653
5654         * lower-subreg.c (simple_move_operand): New static function,
5655         broken out of simple_move.  Reject LABEL_REF, SYMBOL_REF, and HIGH
5656         operands.
5657         (simple_move): Call simple_move_operand.
5658         (find_decomposable_subregs): Add special handling of MEMs.
5659         (can_decompose_p): Rename from cannot_decompose_p.  Reverse
5660         meaning of return value.  If we see a hard register, test whether
5661         it can store a word_mode value.  Change all callers.
5662
5663 2007-02-03  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5664
5665         * pa.md (addvdi3, addvsi3, subvdi3, subvsi3, negvdi2, negvsi2): New
5666         ftrapv insns and expanders.
5667         (subdi3): Change define_expand operand 1 to arith11_operand, and
5668         operand 2 to reg_or_0_operand.  Change constraints of 64-bit insn
5669         pattern to handle reg_or_0 operands.  Revise 32-bit insn pattern to
5670         handle 11-bit constants and reg_or_0 operands in operands 1 and 2,
5671         respectively.
5672
5673         PR middle-end/30174
5674         * varasm.c (notice_global_symbol): Treat global objects as weak when
5675         flag_shlib is true.
5676
5677 2007-02-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5678
5679         * emit-rtl.c (dconstpi): Delete.
5680         (dconstsqrt2): New.
5681         (init_emit_once): Delete dconstpi and init dconstsqrt2.
5682         * real.h (dconstpi): Delete.
5683         (dconstsqrt2): New.
5684         * builtins.c (fold_builtin_cabs): Use dconstsqrt2.
5685         (fold_builtin_hypot): Likewise.
5686
5687 2007-02-03  Tom Tromey  <tromey@redhat.com>
5688
5689         PR driver/30246
5690         * gcc.c (cpp_unique_options): Any of -ggdb3, -gstabs3,
5691         -gcoff3, -gxcoff3, -gvms3 implies -dD.
5692
5693 2007-02-03  Kazu Hirata  <kazu@codesourcery.com>
5694
5695         * c-decl.c, config/avr/avr.c, config/avr/avr.h,
5696         config/m68k/m68k.c, config/m68k/netbsd-elf.h,
5697         config/mn10300/mn10300.c, config/pdp11/pdp11.h,
5698         config/rs6000/cell.md, config/rs6000/darwin.h,
5699         config/sh/sh.md, config/sh/sh4-300.md, config/spu/spu.c,
5700         config/spu/spu.md, cselib.c, expr.c, haifa-sched.c, hwint.h,
5701         jump.c, reload.c, sched-deps.c, sched-int.h, tree-inline.c,
5702         tree-profile.c, tree-ssa-live.h, tree-vrp.c: Fix comment
5703         typos.  Follow spelling conventions.
5704         * doc/invoke.texi: Follow spelling conventions.
5705
5706 2007-02-03  Roger Sayle  <roger@eyesopen.com>
5707
5708         * simplify-rtx.c (simplify_relational_operation_1): Implement some
5709         canonicalization transformations that attempt to simplify integer
5710         constant comparisons to become comparisons against zero.
5711
5712 2007-02-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5713
5714         * builtins.c (fold_builtin_cabs): Fold cabs(x+xi) into
5715         fabs(x)*sqrt(2).
5716         * fold-const.c (fold_binary): Fix comment typos.  Fold complex
5717         (x,0)-(0,y) into (x,-y).  Likewise (0,y)-(x,0) into (-x,y).
5718
5719 2007-02-02  Mike Stump  <mrs@apple.com>
5720
5721         * config/darwin9.h (DARWIN_LINKER_GENERATES_ISLANDS): Add.
5722         * config/rs6000/rs6000.c (DARWIN_GENERATE_ISLANDS): Add.
5723         (output_call): Use DARWIN_GENERATE_ISLANDS to decide when to
5724         generate a branch island.
5725
5726 2007-02-02  Bob Wilson  <bob.wilson@acm.org>
5727
5728         * config/xtensa/xtensa.c (smalloffset_mem_p): Use BASE_REG_P.
5729         (xtensa_legitimate_address_p): New.
5730         (xtensa_legitimize_address): New.
5731         (xtensa_output_addr_const_extra): New.
5732         * config/xtensa/xtensa.h (REG_OK_STRICT_FLAG): Define.
5733         (BASE_REG_P): New.
5734         (REG_OK_FOR_BASE_P): Use BASE_REG_P.
5735         (GO_IF_LEGITIMATE_ADDRESS): Move code to xtensa_legitimate_address_p.
5736         (LEGITIMIZE_ADDRESS): Move code to xtensa_legitimize_address.
5737         (OUTPUT_ADDR_CONST_EXTRA): Move code to xtensa_output_addr_const_extra.
5738         * config/xtensa/xtensa-protos.h (xtensa_legitimate_address_p): New.
5739         (xtensa_legitimize_address): New.
5740         (xtensa_output_addr_const_extra): New.
5741
5742 2007-02-02  Steve Ellcey  <sje@cup.hp.com>
5743
5744         * config/ia64/ia64.c (ia64_print_operand): Fix compare strings.
5745
5746 2007-02-02  Ian Lance Taylor  <iant@google.com>
5747
5748         * expmed.c (expand_divmod): Add comment.
5749
5750 2007-02-02  Kazu Hirata  <kazu@codesourcery.com>
5751
5752         * emit-rtl.c (renumber_insns): Remove.
5753         * flags.h: Remove the extern for flag_renumber_insns.
5754         * rtl.h: Remove the prototype for renumber_insns.
5755         * toplev.c (flag_renumber_insns): Remove.
5756
5757 2007-02-02  Hui-May Chang  <hm.chang@apple.com>
5758
5759         Revert for x86 darwin:
5760         2005-06-19  Uros Bizjak  <uros@kss-loka.si>
5761
5762         * config/i386/i386.c (ix86_function_arg_regno_p): Put back the
5763         code before the following patch under TARGET_MACHO.
5764         (ix86_function_value_regno_p): Likewise.
5765
5766 2007-02-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5767
5768         * fold-const.c (negate_expr_p, fold_negate_expr): Handle
5769         COMPLEX_EXPR.
5770
5771 2007-02-02  Maxim Kuvyrkov  <mkuvyrkov@ispras.ru>
5772
5773         PR target/29682
5774         * config/ia64/ia64.c (ia64_speculate_insn): Restrict to memory loads to
5775         general or fp registers.  Add comments.
5776         * config/ia64/ia64.md (reg_pred_prefix): Add comment.
5777
5778 2007-02-02  Paolo Bonzini  <bonzini@gnu.org>
5779
5780         * pointer-set.c (insert_aux): Only return insertion slot.
5781         (pointer_set_insert): Adjust.
5782         (pointer_set_traverse, struct pointer_map_t, pointer_map_create,
5783         pointer_map_destroy, pointer_map_insert, pointer_map_contains,
5784         pointer_map_traverse): New.
5785         * pointer-set.h (pointer_set_traverse, struct pointer_map_t,
5786         pointer_map_create,  pointer_map_destroy, pointer_map_insert,
5787         pointer_map_contains, pointer_map_traverse): Declare.
5788
5789 2007-02-02  Jakub Jelinek  <jakub@redhat.com>
5790
5791         PR middle-end/30473
5792         * builtins.c (fold_builtin_sprintf): Do not attempt to optimize
5793         sprintf (str, "%s").  Do not optimize sprintf (str, "nopercent", p++).
5794
5795 2007-02-02  Maxim Kuvyrkov  <mkuvyrkov@ispras.ru>
5796
5797         * sched-int.h (ds_to_dk, dk_to_ds): Declare functions.
5798
5799         (struct _dep): New type.
5800         (dep_t): New typedef.
5801         (DEP_PRO, DEP_CON, DEP_KIND): New access macros.
5802         (DEP_STATUS): New access macro.  The macro with the same name was
5803         renamed to DEP_LINK_STATUS.
5804         (dep_init): Declare function
5805
5806         (struct _dep_link): New type.
5807         (dep_link_t): New typedef.
5808         (DEP_LINK_NODE, DEP_LINK_NEXT, DEP_LINK_PREV_NEXTP): New access macros.
5809         (DEP_LINK_DEP, DEP_LINK_PRO, DEP_LINK_CON, DEP_LINK_KIND): New macros.
5810         (DEP_LINK_STATUS): New macro.
5811         (debug_dep_links): New debug function.
5812
5813         (struct _deps_list): New type.
5814         (deps_list_t): New typedef.
5815         (DEPS_LIST_FIRST): New access macro.
5816         (FOR_EACH_DEP_LINK): New cycle macro.
5817         (create_deps_list, free_deps_list, delete_deps_list): Declare
5818         functions.
5819         (deps_list_empty_p, debug_deps_list, add_back_dep_to_deps_list): Ditto.
5820         (find_link_by_pro_in_deps_list, find_link_by_con_in_deps_list): Ditto.
5821         (copy_deps_list_change_con): Ditto.
5822
5823         (move_dep_link): Declare function.
5824
5825         (struct _dep_node): New type.
5826         (dep_node_t): New typedef.
5827         (DEP_NODE_BACK, DEP_NODE_DEP, DEP_NODE_FORW): New access macros.
5828
5829         (struct haifa_insn_data.back_deps): New field to hold backward
5830         dependencies of the insn.
5831         (struct haifa_insn_data.depend): Rename to forw_deps.  Change its type
5832         to deps_list_t.
5833         (struct haifa_insn_data.resolved_deps): Rename to resolved_back_deps.
5834         Change its type to deps_list_t.
5835         (INSN_BACK_DEPS): New access macro to use instead of LOG_LINKS.
5836         (INSN_DEPEND): Rename to INSN_FORW_DEPS.
5837         (RESOLVED_DEPS): Rename to INSN_RESOLVED_BACK_DEPS.
5838
5839         (INSN_COST): Move to haifa-sched.c.  Use insn_cost () instead.
5840
5841         (DEP_STATUS): Rename to DEP_LINK_STATUS.  Fix typo in the comment.
5842
5843         (add_forw_dep, delete_back_forw_dep, insn_cost): Update declaration and
5844         all callers.
5845         (dep_cost): Declare.
5846
5847         * sched-deps.c (CHECK): New macro to (en/dis)able sanity checks.
5848         (ds_to_dk, dk_to_ds): New functions.
5849
5850         (init_dep_1): New static function.
5851         (init_dep): New function.
5852         (copy_dep): New static function.
5853
5854         (dep_link_consistent_p, attach_dep_link, add_to_deps_list): New static
5855         functions.
5856         (detach_dep_link): New static function.
5857         (move_dep_link): New function.
5858
5859         (dep_links_consistent_p, dump_dep_links): New static functions.
5860         (debug_dep_links): New debugging function.
5861
5862         (deps_obstack, dl_obstack, dn_obstack): New static variables.
5863
5864         (alloc_deps_list, init_deps_list): New static functions.
5865         (create_deps_list): New function.
5866         (clear_deps_list): New static function.
5867         (free_deps_list, delete_deps_list, deps_list_empty_p): New functions.
5868         (deps_list_consistent_p, dump_deps_list): New static functions.
5869         (debug_deps_list): New function.
5870         (add_back_dep_to_deps_list, find_link_by_pro_in_deps_list): New
5871         functions.
5872         (find_link_by_con_in_deps_list, copy_deps_list_change_con): Ditto.
5873
5874         (maybe_add_or_update_back_dep_1, add_or_update_back_dep_1): Update to
5875         use new scheduler dependencies lists.
5876         (add_back_dep, delete_all_dependences, fixup_sched_groups): Ditto.
5877         (sched_analyze): Ditto.  Initialize dependencies lists.
5878         (add_forw_dep, compute_forward_dependences): Update to use new
5879         scheduler dependencies lists.
5880
5881         (init_dependency_caches): Init deps_obstack.
5882         (free_dependency_caches): Free deps_obstack.
5883
5884         (adjust_add_sorted_back_dep, adjust_back_add_forw_dep): Update to use
5885         new scheduler dependencies lists.
5886         (delete_forw_dep, add_or_update_back_forw_dep): Ditto.
5887         (add_back_forw_dep, delete_back_forw_dep): Ditto.
5888
5889         * sched-rgn.c (set_spec_fed, find_conditional_protection, is_pfree):
5890         Update to use new scheduler dependencies lists.
5891         (is_conditionally_protected, is_prisky, add_branch_dependences): Ditto.
5892         (debug_dependencies): Ditto.
5893         (schedule_region): Update comments.
5894
5895         * sched-ebb.c (earliest_block_with_similiar_load): Update to use new
5896         scheduler dependencies lists.
5897         (schedule_ebb): Update comments.
5898
5899         * rtl.def (DEPS_LIST): Remove.
5900
5901         * lists.c (unused_deps_list): Remove.
5902         (free_list): Update assertions.
5903
5904         (alloc_DEPS_LIST, free_DEPS_LIST_list, free_DEPS_LIST_node): Remove.
5905         (remove_free_DEPS_LIST_elem, copy_DEPS_LIST_list): Ditto.
5906
5907         * rtl.h (free_DEPS_LIST_list, alloc_DEPS_LIST): Remove declarations.
5908         (remove_free_DEPS_LIST_elem, copy_DEPS_LIST_list): Ditto.
5909
5910         * haifa-sched.c (comments): Update.
5911         (insn_cost1): Remove.  Inline the code into insn_cost ().
5912         (insn_cost): Update to use new scheduler dependencies lists.  Move
5913         processing of the dependency cost to dep_cost ().
5914         (dep_cost): New function.  Use it instead of insn_cost () when
5915         evaluating cost of the dependency.  Use compatible interface to
5916         interact with the target.
5917         (priority): Update to use new scheduler dependencies lists.
5918         (rank_for_schedule): Ditto.  Optimize heuristic that prefers the insn
5919         with greater number of insns that depend on the insn.
5920         (schedule_insn): Update to use new scheduler dependencies lists.  Add
5921         code to free backward dependencies lists.  Inline and optimize code
5922         from resolve_dep () - see PR28071.
5923         (ok_for_early_queue_removal): Update to use new scheduler dependencies
5924         lists.  Update call to targetm.sched.is_costly_dependence hook.
5925
5926         (fix_inter_tick, try_ready, fix_tick_ready): Update to use new
5927         scheduler dependencies lists.
5928
5929         (resolve_dep): Remove.  Move the logic to schedule_insn ().
5930         (init_h_i_d): Initialize dependencies lists.
5931
5932         (process_insn_depend_be_in_spec): Rename to
5933         process_insn_forw_deps_be_in_spec.  Update to use new scheduler
5934         dependencies lists.
5935         (add_to_speculative_block, create_check_block_twin, fix_recovery_deps):
5936         Update to use new scheduler dependencies lists.
5937         (clear_priorities, calc_priorities, add_jump_dependencies): Ditto.
5938
5939         * ddg.c (create_ddg_dependence, create_ddg_dep_no_link): Update to use
5940         new scheduler dependencies lists.
5941         (build_intra_loop_deps): Ditto.
5942
5943         * target.h (struct _dep): Declare to use in
5944         gcc_target.sched.is_costly_dependence.
5945         (struct gcc_target.sched.adjust_cost): Fix typo.
5946         (struct gcc_target.sched.is_costly_dependence): Change signature to use
5947         single dep_t parameter instead of an equivalent triad.
5948         (struct gcc_target.sched.adjust_cost_2): Remove.
5949
5950         * target-def.h (TARGET_SCHED_ADJUST_COST_2): Remove.
5951
5952         * reg-notes.def (DEP_TRUE, DEP_OUTPUT, DEP_ANTI): Update comments.
5953
5954         * doc/tm.texi (TARGET_SCHED_IS_COSTLY_DEPENDENCE): Update
5955         documentation.
5956         (TARGET_SCHED_ADJUST_COST_2): Remove documentation.
5957
5958         * doc/rtl.texi (LOG_LINKS): Remove part about instruction scheduler.
5959         (REG_DEP_TRUE): Document.
5960
5961         * config/ia64/ia64.c (ia64_adjust_cost_2): Rename to ia64_adjust_cost.
5962         Change signature to correspond to the targetm.sched.adjust_cost hook.
5963         Update use in TARGET_SCHED_ADJUST_COST_2.
5964         (TARGET_SCHED_ADJUST_COST_2): Rename to TARGET_SCHED_ADJUST_COST.
5965         (ia64_dependencies_evaluation_hook, ia64_dfa_new_cycle): Update to use
5966         new scheduler dependencies lists.
5967         (ia64_gen_check): Ditto.
5968
5969         * config/mips/mips.c (vr4130_swap_insns_p): Update to use new scheduler
5970         dependencies lists.
5971
5972         * config/rs6000/rs6000.c (rs6000_is_costly_dependence): Change
5973         signature to correspond to the targetm.sched.is_costly_dependence hook.
5974         (is_costly_group): Update to use new scheduler dependencies lists.
5975
5976         * config/spu/spu.c (spu_sched_adjust_cost): Use insn_cost () function
5977         instead of INSN_COST () macro.
5978
5979 2007-02-01  Ian Lance Taylor  <iant@google.com>
5980
5981         * lower-subreg.c (resolve_clobber): Handle a subreg of a concatn.
5982
5983 2007-02-01  Guy Martin  <gmsoft@gentoo.org>
5984
5985         * pa.md (tp_load): Correct mfctl instruction syntax.
5986
5987 2007-02-01  Geoffrey Keating  <geoffk@apple.com>
5988
5989         * config/rs6000/rs6000.c (rs6000_stack_info): Correct
5990         altivec_padding_size calculation on AIX.  Improve comment, add
5991         assert to verify that it's right.
5992
5993         * config/rs6000/darwin.h (MD_UNWIND_SUPPORT): Don't define for
5994         64-bit.
5995
5996 2007-2-01  Seongbae Park  <seongbae.park@gmail.com>
5997
5998         PR inline-asm/28686
5999         * global.c (global_alloc): Add mising initialization of
6000         ELIMINABLE_REGSET.
6001
6002 2007-02-01  Roger Sayle  <roger@eyesopen.com>
6003
6004         * alias.c (init_alias_analysis): Correct whitespace.
6005         * bb-reorder.c (fix_edges_for_rarely_executed_code,
6006         partition_hot_cold_basic_blocks): Likewise.
6007         * builtins.c (expand_builtin_printf, expand_builtin_fprintf,
6008         expand_builtin_sprintf, fold_builtin_carg, fold_builtin_sprintf,
6009         maybe_emit_sprintf_chk_warning, fold_builtin_sprintf_chk,
6010         fold_builtin_snprintf_chk, fold_builtin_printf,
6011         fold_builtin_fprintf, do_mpfr_ckconv, do_mpfr_arg1, do_mpfr_arg2,
6012         do_mpfr_arg3, do_mpfr_sincos): Likewise.
6013         * cfgcleanup.c (cleanup_cfg): Likewise.
6014         * cfgexpand.c (tree_expand_cfg): Likewise.
6015         * fold-const.c (fold_binary) <RDIV_EXPR>: Likewise.
6016         * function.c (get_next_funcdef_no): Likewise.
6017         * gengtype.c (main): Likewise.
6018         * genmodes.c (main): Likewise.
6019         * gcse.c (bypass_conditional_jumps, print_ldst_list): Likewise.
6020         * haifa-sched.c (schedule_block, extend_h_i_d): Likewise.
6021         * ifcvt.c (noce_emit_move_insn): Likewise.
6022         * modulo-sched.c (generate_prolog_epilog, sms_schedule_by_order):
6023         Likewise.
6024         * stor-layout.c (get_best_mode): Likewise.
6025         * tree-ssa-loop-niter.c (get_val_for): Likewise.
6026         * tree-ssa-structalias.c (get_varinfo, get_varinfo_fc,
6027         scc_visit, do_ds_constraint, do_complex_constraint, label_visit,
6028         perform_var_substitution, solve_graph): Likewise.
6029         * tree-vrp.c (vrp_finalize): Likewise.
6030
6031 2007-02-01  Ian Lance Taylor  <iant@google.com>
6032
6033         * lower-subreg.c (simplify_gen_subreg_concatn): If we ask for the
6034         high part of a paradoxical subreg, return a constant zero.
6035
6036 2007-02-01  Zdenek Dvorak <dvorakz@suse.cz>
6037
6038         * toplev.c (lang_dependent_init): Call init_set_costs.
6039         * loop-init.c (loop_optimizer_init): Do not call init_set_costs.
6040
6041 2007-02-01  Richard Guenther  <rguenther@suse.de>
6042
6043         PR middle-end/30656
6044         * fold-const.c (fold_negate_expr): Allow negating a
6045         constant if overflow does not change.
6046
6047 2007-02-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6048
6049         * doc/c-tree.texi (Expression trees): Improve markup.
6050         * doc/tm.texi (Register Classes, Addressing Modes)
6051         (Floating Point): Fix spacing after abbreviations.  Fix some
6052         typos.
6053
6054 2007-02-01  Ben Elliston  <bje@au.ibm.com>
6055
6056         * doc/invoke.texi: Replace "bugfix" with "bug fix" throughout.
6057         * doc/contrib.texi: Likewise.
6058         * doc/install.texi: Likewise.
6059
6060 2007-01-31  Richard Henderson  <rth@redhat.com>
6061             Ian Lance Taylor  <iant@google.com>
6062
6063         * lower-subreg.c: New file.
6064         * rtl.def (CONCATN): Define.
6065         * passes.c (init_optimization_passes): Add pass_lower_subreg and
6066         pass_lower_subreg2.
6067         * emit-rtl.c (update_reg_offset): New static function, broken out
6068         of gen_rtx_REG_offset.
6069         (gen_rtx_REG_offset): Call update_reg_offset.
6070         (gen_reg_rtx_offset): New function.
6071         * regclass.c: Revert patch of 2006-03-05, restoring
6072         reg_scan_update.
6073         (clear_reg_info_regno): New function.
6074         * dwarf2out.c (concatn_loc_descriptor): New static function.
6075         (loc_descriptor): Handle CONCATN.
6076         * common.opt (fsplit_wide_types): New option.
6077         * opts.c (decode_options): Set flag_split_wide_types when
6078         optimizing.
6079         * timevar.def (TV_LOWER_SUBREG): Define.
6080         * rtl.h (gen_reg_rtx_offset): Declare.
6081         (reg_scan_update): Declare.
6082         * regs.h (clear_reg_info_regno): Declare.
6083         * tree-pass.h (pass_lower_subreg): Declare.
6084         (pass_lower_subreg2): Declare.
6085         * doc/invoke.texi (Option Summary): List -fno-split-wide-types.
6086         (Optimize Options): Add -fsplit-wide-types to -O1 list.  Document
6087         -fsplit-wide-types.
6088         * doc/rtl.texi (Regs and Memory): Document concat and concatn.
6089         * Makefile.in (OBJS-common): Add lower-subreg.o.
6090         (lower-subreg.o): New target.
6091
6092 2007-01-31  Kazu Hirata  <kazu@codesourcery.com>
6093
6094         * config/sh/sh.h (HAVE_SECONDARY_RELOADS): Remove.
6095
6096 2007-01-31  Anatoly Sokolov <aesok@post.ru>
6097
6098         PR target/19087
6099         * config/avr/avr.c (DWARF2_ADDR_SIZE): Define.
6100
6101 2007-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6102
6103         PR middle-end/29335
6104         * builtins.c (fold_builtin_sqrt): Use MPFR for constant args.
6105
6106 2007-01-31  Zdenek Dvorak <dvorakz@suse.cz>
6107
6108         * cfgloop.h: Include vec-prim.h.
6109         (enum li_flags): Remove LI_ONLY_OLD.
6110         (loop_iterator): Changed.
6111         (fel_next, fel_init): Iterate over loop tree.
6112         (FOR_EACH_LOOP_BREAK): New macro.
6113         * loop-unswitch.c (unswitch_loops): Do not pass LI_ONLY_OLD to
6114         FOR_EACH_LOOP.
6115         * tree-ssa-loop-unswitch.c (tree_ssa_unswitch_loops): Ditto.
6116         * modulo-sched.c (sms_schedule): Ditto.
6117         * tree-vectorizer.c (vectorize_loops): Ditto.
6118         * doc/loop.texi: Update information on loop numbering and behavior of
6119         FOR_EACH_LOOP wrto new loops.
6120         * tree-scalar-evolution.c (compute_overall_effect_of_inner_loop,
6121         add_to_evolution_1): Test nestedness of loops instead of comparing
6122         their numbers.
6123         * tree-chrec.c (chrec_fold_plus_poly_poly,
6124         chrec_fold_multiply_poly_poly, chrec_evaluate,
6125         hide_evolution_in_other_loops_than_loop, chrec_component_in_loop_num,
6126         reset_evolution_in_loop): Ditto.
6127         * Makefile.in (CFGLOOP_H): Add vecprim.h dependency.
6128
6129 2007-01-31  Dirk Mueller  <dmueller@suse.de>
6130
6131         * c-common.c (warn_about_parentheses): Separate warning about
6132         un-parenthized sequence of comparison operators from the one
6133         which is supposed to warn about x <= y <= z.
6134
6135 2007-01-31  Uros Bizjak  <ubizjak@gmail.com>
6136
6137         * optabs.h (enum optab_index): Add new OTI_isinf.
6138         (isinf_optab): Define corresponding macro.
6139         * optabs.c (init_optabs): Initialize isinf_optab.
6140         * genopinit.c (optabs): Implement isinf_optab using isinf?f2
6141         patterns.
6142         * builtins.c (mathfn_built_in): Handle BUILT_IN_ISINF{,F,L}.
6143         (expand_builtin_interclass_mathfn): Expand BUILT_IN_ISINF{,F,L}
6144         using isinf_optab.
6145         (expand_builtin): Expand BUILT_IN_ISINF{,F,L} using
6146         expand_builtin_interclass_mathfn.
6147         * reg_stack.c (subst_stack_regs_pat): Handle UNSPEC_FXAM.
6148         * config/i386/i386.md (UNSPEC_FXAM): New constant.
6149         (fxam<mode>2_i387): New insn pattern.
6150         (isinf<mode>2) New expander to implement isinf, isinff and isinfl
6151         built-in functions as x87 inline asm.
6152
6153 2007-01-31  Kazu Hirata  <kazu@codesourcery.com>
6154
6155         * gcc/config/arm/unwind-arm.h (_sleb128_t, _uleb128_t): New.
6156
6157 2007-01-30  Eric Christopher  <echristo@apple.com>
6158
6159         * config.gcc: Add geode.
6160
6161 2007-01-31  Kazu Hirata  <kazu@codesourcery.com>
6162
6163         * cgraphunit.c, config/arm/arm.c, config/m68k/m68k.c,
6164         ipa-inline.c, tree-profile.c, tree-ssa-live.c,
6165         tree-ssa-math-opts.c, tree-ssanames.c, tree-vect-analyze.c,
6166         value-prof.c: Fix comment typos.
6167
6168 2007-01-30  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
6169
6170         PR c++/24745
6171         * doc/invoke.texi (Wpointer-arith): Document warning.
6172
6173 2007-01-30  Janis Johnson  <janis187@us.ibm.com>
6174
6175         * doc/extend.texi (Decimal Floating Types): Remove decfloat.h from
6176         the list of discrepancies from the draft TR.
6177
6178 2007-01-30  Dirk Mueller  <dmueller@suse.de>
6179
6180         PR c++/30601
6181         * doc/invoke.texi (-Wreturn-type): Update description to
6182         match new behavior.
6183
6184 2007-01-30  Richard Sandiford  <richard@codesourcery.com>
6185
6186         * cfgrtl.c (try_redirect_by_replacing_jump): Check only_sets_cc0_p.
6187
6188 2007-01-30  Uros Bizjak  <ubizjak@gmail.com>
6189
6190         * builtins.c (expand_builtin_int_interclass_roundingfn): New function
6191         to handle optabs that operate on floating point input argument and
6192         output to integer output.
6193         (expand_builtin_mathfn) [BUILT_IN_ILOGB]: Move from here ...
6194         (expand_builtin_interclass_mathfn) [BUILT_IN_ILOGB]: ... to here.
6195         (expand_builtin): Expand BUILT_IN_ILOGB{,F,L} using
6196         expand_builtin_interclass_mathfn ().
6197         * config/i386/i386.md (fxtractxf3_i387): Rename from *fxtractxf3_i387.
6198         (ilogbsi2): Remove.
6199         (ilogbxf2, ilogb<mode>2): New expanders to implement ilogb, ilogbf and
6200         ilogbl built-in functions as x87 intrinsics.
6201
6202 2007-01-30  Richard Guenther  <rguenther@suse.de>
6203
6204         PR middle-end/27657
6205         * dwarf2out.c (reference_to_unused): Query varpool if the
6206         variable was output.
6207
6208 2007-01-30  Richard Guenther  <rguenther@suse.de>
6209
6210         PR middle-end/30313
6211         * passes.c (execute_one_pass): Reset in_gimple_form to not
6212         confuse non-unit-at-a-time mode.
6213
6214 2007-01-29  Roger Sayle  <roger@eyesopen.com>
6215             Richard Guenther  <rguenther@suse.de>
6216
6217         * fold-const.c (round_up): Make HIGH an unsigned HOST_WIDE_INT to
6218         avoid undefined behaviour on overflow.  Use force_fit_type_double
6219         to construct the constant with the specified TREE_OVERFLOW.
6220
6221 2007-01-29  Janis Johnson  <janis187@us.ibm.com>
6222
6223         * config/dfp-bit.c: Add parameterized support for fp exceptions.
6224         * config/dfp-bit.h: Ditto.
6225
6226 2007-01-29  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
6227
6228         * c-decl.c (pop_scope): Replace warnings with call to
6229         warn_for_unused_label.
6230         * c-common.h (warn_for_unused_label): Declare.
6231         * c-common.c (warn_for_unused_label): Define.
6232
6233 2007-01-29  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
6234
6235         * tree-optimize.c (update_inlined_to_pointers): Delete unused
6236         function.
6237
6238 2007-01-29  Janis Johnson  <janis187@us.ibm.com>
6239
6240         * Makefile.in (USER_H): Remove decfloat.h.
6241         * ginclude/decfloat.h: Delete, moving contents to ...
6242         * ginclude/float.h: Add support for decimal floating point,
6243         guarded by __STDC_WANT_DEC_FP__.
6244
6245 2007-01-29  Mike Stump  <mrs@apple.com>
6246
6247         * doc/gccint.texi (Top): Rename Loop Representation to Loop
6248         Analysis and Representation to resolve case insensitive conflict.
6249         * doc/loop.texi (Loop Analysis and Representation): Likewise.
6250
6251 2007-01-28  Daniel Berlin  <dberlin@dberlin.org>
6252
6253         * tree.h (struct tree_memory_tag): Add aliases member.
6254         (MTAG_ALIASES): New macro.
6255         * tree-ssa-alias.c (alias_bitmap_obstack): New variable.
6256         (add_may_alias): Remove pointer-set. Update for may_aliases being
6257         a bitmap.
6258         (mark_aliases_call_clobbered): Update for may_aliases being a
6259         bitmap.
6260         (compute_tag_properties): Ditto.
6261         (create_partition_for): Ditto.
6262         (compute_memory_partitions): Ditto.
6263         (dump_may_aliases_for): Ditto.
6264         (is_aliased_with): Ditto.
6265         (add_may_alias_for_new_tag): Ditto.
6266         (rewrite_alias_set_for): Rewrite for may_aliases being a bitmap.
6267         (compute_is_aliased): New function.
6268         (compute_may_aliases): Call compute_is_aliased).
6269         (init_alias_info): Initialize alias_bitmap_obstack.
6270         (union_alias_set_into): New function.
6271         (compute_flow_sensitive_aliasing): Use union_aliases_into.
6272         (have_common_aliases_p): Rewrite to take two bitmaps and use
6273         intersection.
6274         (compute_flow_insensitive_aliasing): Stop using pointer-sets.
6275         Update for bitmaps.
6276         (finalize_ref_all_pointers): Update for add_may_alias changes.
6277         (new_type_alias): Ditto.
6278         * tree-flow-inline.h (may_aliases): Return a bitmap.
6279         * tree-dfa.c (dump_variable): Check for MTAG_P'ness.
6280         * tree-ssa.c (verify_flow_insensitive_alias_info): Update for
6281         may_aliases being a bitmap.
6282         * tree-flow.h (struct var_ann_d): Remove may_aliases member.
6283         may_aliases now returns a bitmap.
6284         * tree-ssa-structalias.c (merge_smts_into): Update for may_aliases
6285         being a bitmap.
6286         * tree-ssa-operands.c (add_virtual_operand): Update for
6287         may_aliases being a bitmap.
6288
6289 2007-01-29  Daniel Berlin  <dberlin@dberlin.org>
6290
6291         PR tree-optimization/30630
6292         * tree-ssa-structalias.c (do_complex_constraint): Mark correct
6293         variable as changed.
6294
6295 2007-01-29  Simon Martin  <simartin@users.sourceforge.net>
6296
6297         PR c++/28266
6298         * gimplify.c (gimplify_target_expr): Make sure that the TARGET_EXPR is
6299         expanded only once even if an error occurs.
6300
6301 2007-01-29  Ben Elliston  <bje@au.ibm.com>
6302
6303         * gcov-io.h (__gcov_indirect_call_profiler): Declare.
6304         (__gcov_average_profiler): Likewise.
6305         (__gcov_ior_profiler): Likewise.
6306         (__gcov_merge_ior): Likewise.
6307
6308 2007-01-28  Jan Hubicka  <jh@suse.cz>
6309
6310         * builtins.c (expand_builtin_memset): Fix typo in my last patch.
6311         * value-prof.c (stringop_block_profile): Likewise.
6312
6313 2007-01-28  Jan Hubicka  <jh@suse.cz>
6314
6315         * expr.c (emit_block_move_via_movmem, emit_block_move_via_libcall): Add
6316         variant handling histograms; add wrapper.
6317         (clear_storage_via_libcall): Export.
6318         (emit_block_move_hints): Break out from ...; add histograms.
6319         (emit_block_move): ... this one.
6320         (clear_storage_hints): Break out from ...; add histograms.
6321         (clear_storage): ... this one.
6322         (set_storage_via_memset): Handle histogram.
6323         * expr.h (emit_block_move_via_libcall, emit_block_move_hints): Declare.
6324         (clear_storage_hints, clear_storage_via_libcall): Declare.
6325         (set_storage_via_setmem): Update prototype.
6326         * doc/md.texi (movmem, setmem): Document new arguments.
6327
6328         * value-prof.c (dump_histogram_value, tree_find_values_to_profile): Add
6329         new histograms.
6330         (stringop_block_profile): New global function.
6331         (tree_stringops_values_to_profile): Profile block size and alignment.
6332         * value-prof.h (enum hist_type): add HIST_TYPE_AVERAGE and
6333         HIST_TYPE_IOR.
6334         (struct profile_hooks): Add gen_average_profiler and gen_ior_profiler.
6335         (stringop_block_profile): Declare.
6336         * builtins.c: Include value-prof.h.
6337         (expand_builtin_memcpy, expand_builtin_memset): Pass block profile.
6338         * gcov-ui.h (GCOV_COUNTER_NAMES): Add new counter.
6339         (GCOV_COUNTER_AVERAGE, GCOV_COUNTER_IOR): New constants.
6340         (GCOV_COUNTERS, GCOV_LAST_VALUE_COUNTER): Update.
6341         * profile.c (instrument_values): Add new counters.
6342         * cfgexpand.c (expand_gimple_basic_block): Propagate histograms to
6343         calls.
6344         * tree-profile.c (tree_average_profiler_fn, tree_ior_profiler_fn): New.
6345         (tree_init_edge_profiler): Build new profilers.
6346         (tree_gen_average_profiler, tree_gen_ior_profiler): New.
6347         (pass_tree_profile): Add dump.
6348         (tree_profile_hooks): Update.
6349         * Makefile.in (LIBGCOV): Add new constants.
6350         * libgcov.c (__gcov_merge_ior, __gcov_average_profiler,
6351         __gcov_ior_profiler): New.
6352         * i386.md (movmem/setmem expanders): Add new optional arguments.
6353
6354 2007-01-28  David Edelsohn  <edelsohn@gnu.org>
6355
6356         * doc/md.texi (Standard Pattern Names): Document blockage pattern.
6357
6358 2007-01-28  Zdenek Dvorak <dvorakz@suse.cz>
6359
6360         * tree-ssa-loop-unswitch.c: Include tree-inline.h.
6361         (tree_unswitch_single_loop): Pass eni_size_weights to
6362         tree_num_loop_insns.
6363         * tree-ssa-loop-manip.c: Include tree-inline.h.
6364         (can_unroll_loop_p): Pass eni_size_weights to
6365         tree_num_loop_insns.
6366         * tree-ssa-loop-ch.c (should_duplicate_loop_header_p):
6367         Pass eni_size_weights to estimate_num_insns.
6368         * tree.h (init_inline_once): Export.
6369         * toplev.c (backend_init): Call init_inline_once.
6370         * cgraphunit.c (cgraph_process_new_functions,
6371         cgraph_analyze_function): Pass eni_inlining_weights to
6372         estimate_num_insns.
6373         * ipa-inline.c (compute_inline_parameters): Ditto.
6374         * tree-ssa-loop-ivcanon.c (tree_num_loop_insns): Pass weights
6375         to estimate_num_insns.
6376         (try_unroll_loop_completely): Pass eni_size_weights to
6377         tree_num_loop_insns.
6378         * tree-eh.c (decide_copy_try_finally): Pass eni_size_weights
6379         ot estimate_num_insns.
6380         * tree-ssa-loop-prefetch.c: Include tree-inline.h.
6381         (loop_prefetch_arrays): Pass eni_time_weights to tree_num_loop_insns.
6382         * tree-inline.c (eni_inlining_weights, eni_size_weights,
6383         eni_time_weights): New variables.
6384         (init_inline_once): Initialize them.
6385         (struct eni_data): Mew.
6386         (estimate_num_insns_1, estimate_num_insns): Use weights.
6387         * tree-inline.h (struct eni_weights_d): New.
6388         (eni_inlining_weights, eni_size_weights, eni_time_weights): Declare.
6389         (estimate_num_insns): Declaration changed.
6390         * cfgloop.h (tree_num_loop_insns): Declaration changed.
6391         * Makefile.in (tree-ssa-loop-unswitch.o, tree-ssa-loop-prefetch.o,
6392         tree-ssa-loop-manip.o): Add TREE_INLINE_H dependency.
6393
6394 2007-01-28  Zdenek Dvorak <dvorakz@suse.cz>
6395
6396         * tree-data-ref.c (conflict_fn): Assert that the number of affine
6397         relations in the conflict function is valid.
6398
6399 2007-01-27  Ian Lance Taylor  <iant@google.com>
6400
6401         * common.opt: Add fstrict-overflow.
6402         * opts.c (decode_options): Set flag_strict_overflow if -O2.
6403         * flags.h (TYPE_OVERFLOW_WRAPS): Define.
6404         (TYPE_OVERFLOW_UNDEFINED): Define.
6405         (TYPE_OVERFLOW_TRAPS): Define.  This replaces TYPE_TRAP_SIGNED.
6406         Replace all uses.
6407         * tree.h (TYPE_TRAP_SIGNED): Don't define.
6408         * fold-const.c (negate_expr_p): Use TYPE_OVERFLOW_UNDEFINED.
6409         (fold_negate_expr): Likewise.
6410         (make_range): Likewise.
6411         (extract_muldiv_1): Likewise.
6412         (maybe_canonicalize_comparison): Likewise.
6413         (fold_comparison): Likewise.
6414         (fold_binary): Likewise.
6415         (tree_expr_nonnegative_p): Likewise.
6416         (tree_expr_nonzero_p): Likewise.
6417         * tree-vrp.c (compare_values): Likewise.
6418         (extract_range_from_binary_expr): Likewise.
6419         (extract_range_from_unary_expr): Likewise.
6420         * tree-ssa-loop-niter.c (infer_loop_bounds_from_signedness):
6421         Likewise.
6422         (nowrap_type_p): Likewise.
6423         * tree-scalar-evolution.c (simple_iv): Likewise.
6424         * fold-const.c (negate_expr_p): Use TYPE_OVERFLOW_WRAPS.
6425         (build_range_check): Likewise.
6426         (extract_muldiv_1): Likewise.
6427         (fold_comparison): Likewise.
6428         * tree-vrp.c (vrp_int_const_binop): Likewise.
6429         (extract_range_from_unary_expr): Likewise.
6430         * convert.c (convert_to_integer): Likewise.
6431         * fold-const.c (fold_negate_expr): Use TYPE_OVERFLOW_TRAPS.
6432         (fold_comparison): Likewise.
6433         (fold_binary): Likewise.
6434         * optabs.c (optab_for_tree_code): Likewise.
6435         * tree-vectorizer.c (vect_is_simple_reduction): Likewise.
6436         * simplify-rtx.c (simplify_const_relational_operation): Check
6437         flag_strict_overflow and flag_trapv.
6438         (simplify_const_relational_operation): Likewise.
6439         * doc/invoke.texi (Option Summary): Mention -fstrict-overflow.
6440         (Optimize Options): Add -fstrict-overflow to -O2 list.  Document
6441         -fstrict-overflow.
6442
6443 2007-01-27  Roger Sayle  <roger@eyesopen.com>
6444
6445         * tree.c (tree_fold_gcd): Delete.
6446         * tree.h (tree_fold_gcd): Remove prototype.
6447         * tree-data-ref.c (tree_fold_divides_p): Don't use tree_fold_gcd to
6448         test whether one constant integer is a multiple of another.  Instead
6449         call int_const_binop with TRUNC_MOD_EXPR and test for a zero result.
6450         * fold-const.c (multiple_of_p):  We've determined both TOP and
6451         BOTTOM are integer constants so we can call int_const_binop directly
6452         instead of the more generic const_binop.
6453
6454 2007-01-27  Roger Sayle  <roger@eyesopen.com>
6455
6456         * fold-const.c (size_binop): In the fast-paths for X+0, 0+X, X-0 and
6457         1*X check that the constant hasn't overflowed, to preserve the
6458         TREE_OVERFLOW bit.
6459         (round_up): Provide an efficient implementation when rouding-up an
6460         INTEGER_CST to a power-of-two.
6461
6462 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6463
6464         * doc/sourcebuild.texi: Add comma for clarity.
6465         * doc/extend.texi: Fix some typos.
6466         * doc/passes.texi: Likewise.
6467         * doc/cppinternals.texi: Likewise.
6468         * doc/c-tree.texi: Likewise.
6469         * doc/tree-ssa.texi: Likewise.
6470         * doc/install.texi: Likewise.
6471
6472 2007-01-27  Jan Hubicka  <jh@suse.cz>
6473
6474         * tree-sra.c (sra_walk_function): Don't rely on aliases being build.
6475         (pass_sra): Do not require alias information.
6476         * passes.c (init_optimization_passes): Add SRA
6477
6478 2007-01-27  Steven Bosscher  <steven@gcc.gnu.org>
6479
6480         * tracer.c (rest_of_handle_tracer): We already cleaned
6481         up the CFG in tracer() so don't do it here again.
6482         * cfgcleanup.c (rest_of_handle_jump2): Don't repeat
6483         cleanup_cfg here, either.  And don't call renumber_insns.
6484
6485         * cfgrtl.c (rtl_verify_flow_info_1): Don't verify that BB_END
6486         and BB_HEAD are in the insn stream here.  Instead make sure
6487         that BB_INSN is valid on all insns.  Also, do check here that
6488         there are no pending branch predictions...
6489         (rtl_verify_flow_info): ...instead of doing it here.  Checks
6490         for BB_END and BB_HEAD moved from rtl_verify_flow_info_1 to
6491         here.
6492
6493 2007-01-26  Roger Sayle  <roger@eyesopen.com>
6494
6495         * config/i386/i386.c (ix86_swap_binary_operands_p): New helper
6496         function to simplify/factorize operand order canonicalization.
6497         (ix86_fixup_binary_operands): Reorganize using the above function.
6498         (ix86_binary_operator_ok): Likewise.
6499
6500 2007-01-27  Jakub Jelinek  <jakub@redhat.com>
6501
6502         * genattrtab.c (struct attr_value_list, insn_code_values): Move to
6503         file scope from optimize_attrs.
6504         (simplify_test_exp): If insn_code_values is not NULL, use it to speed
6505         up search.
6506         (optimize_attrs): Clear insn_code_values after freeing it.
6507
6508 2007-01-26  Zdenek Dvorak <dvorakz@suse.cz>
6509
6510         * tree-ssa-address.c (create_mem_ref): Remove ", bsi" from
6511         a parts.base assignment.
6512
6513 2007-01-26  Zdenek Dvorak <dvorakz@suse.cz>
6514
6515         * tree-data-ref.c (dump_subscript): Use dump_conflict_function.
6516         (compute_subscript_distance, initialize_data_dependence_relation,
6517         finalize_ddr_dependent, analyze_ziv_subscript,
6518         analyze_siv_subscript_cst_affine,
6519         compute_overlap_steps_for_affine_univar,
6520         compute_overlap_steps_for_affine_1_2, analyze_subscript_affine_affine,
6521         analyze_siv_subscript, analyze_miv_subscript,
6522         analyze_overlapping_iterations, subscript_dependence_tester_1,
6523         compute_self_dependence, free_dependence_relation): Work
6524         with affine_fn instead of chrecs.
6525         (dump_affine_function, dump_conflict_function, affine_function_equal_p,
6526         common_affine_function, affine_function_base,
6527         affine_function_constant_p, affine_fn_op, affine_fn_plus,
6528         affine_fn_minus, affine_fn_free, conflict_fn_not_known,
6529         conflict_fn_no_dependence, free_conflict_function, free_subscripts,
6530         conflict_fn, affine_fn_cst, affine_fn_univar): New functions.
6531         (all_chrecs_equal_p): Removed.
6532         * tree-data-ref.h (affine_fn, conflict_function): New types.
6533         (struct subscript): Change type of conflicting_iterations_in_a
6534         and conflicting_iterations_in_b.
6535
6536 2007-01-26  Steve Ellcey  <sje@cup.hp.com>
6537
6538         PR other/30182
6539         * config/pa/pa.h (TARGET_HPUX_11): New.
6540         * config/pa/pa-hpux11.h (TARGET_HPUX_11): New.
6541         * config/pa/pa.c (pa_init_builtins): Use TARGET_HPUX_11.
6542
6543 2007-01-26  Daniel Berlin  <dberlin@dberlin.org>
6544         Richard Guenther  <rguenther@suse.de>
6545
6546         * tree-ssa-structalias.c (solve_graph): Handle case
6547         we merged the variable to another.
6548
6549 2007-01-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6550
6551         * builtins.c (fold_builtin_1): Treat ccos and ccosh as 'even'
6552         functions.
6553
6554         * fold-const.c (negate_mathfn_p): Treat casin, casinh, catan,
6555         catanh, cproj, csin, csinh, ctan and ctanh as 'odd' functions.
6556
6557 2007-01-25  DJ Delorie  <dj@redhat.com>
6558
6559         * config/m32c/m32c.c (m32c_cannot_change_mode_class): We don't
6560         allow changes to modes which don't fit in those registers.
6561
6562         * reload1.c (choose_reload_regs): Check for invalid subregs before
6563         computing their locations, not after.
6564
6565 2007-01-25  Geoffrey Keating  <geoffk@apple.com>
6566
6567         PR 25127
6568         * config/rs6000/rs6000.c (first_altivec_reg_to_save): On Darwin,
6569         save Altivec registers in an eh_return function.
6570         (compute_vrsave_mask): Likewise.
6571         (rs6000_stack_info): Correct AIX/Darwin stack alignment computation
6572         for saving Altivec registers.
6573         (rs6000_emit_prologue): Don't allocate stack twice in
6574         eh_return function.  Correct expected value of altivec_save_offset
6575         when using save_world.  Describe save of R0 to stack when using
6576         save_world.  Describe stack pointer adjustment when using
6577         save_world.  Remove duplicated eh_return parameter register saving.
6578         Update sp_offset variable after save_world.
6579         * config/rs6000/t-darwin (LIB2FUNCS_STATIC_EXTRA): Remove
6580         darwin-world.asm.
6581         (LIB2FUNCS_EXTRA): Add darwin-world.asm.
6582         * config/rs6000/darwin.h (SUBTARGET_OVERRIDE_OPTIONS): -m64
6583         implies Altivec.
6584
6585 2007-01-25  Steve Ellcey  <sje@cup.hp.com>
6586
6587         * config.gcc (ia64*-*-hpux*): Make posix threads the default.
6588
6589 2007-01-25  Steve Ellcey  <sje@cup.hp.com>
6590
6591         PR other/30182
6592         * config/pa/pa.c (pa_init_builtins): Set asm names for finite routines.
6593         * config/ia64/ia64.c (ia64_init_builtins):  Ditto.
6594
6595 2007-01-25  Richard Guenther  <rguenther@suse.de>
6596
6597         * doc/invoke.texi (-Wcoverage-mismatch): Document.
6598         * common.opt (-Wcoverage-mismatch): New warning option.
6599         * coverage.c (get_coverage_counts): Ignore coverage mismatch
6600         if -Wcoverage-mismatch is given.
6601
6602 2007-01-25  Razya Ladelsky  <razya@il.ibm.com>
6603
6604         * ipa-cp.c (ipcp_insert_stage, ipcp_driver): Support for SSA.
6605         (ipcp_driver): Change to static definition.
6606         Add dumping of the ifunctions.
6607         (constant_val_insert): Remove unused parameter. Support for SSA.
6608         (ipcp_propagate_const): Support for SSA.
6609         (ipcp_profile_bb_print): Print only analyzed nodes.
6610         (ipcp_replace_map_create): Remove support for Fortran constant
6611         for now.
6612         * ipa-prop.c (ipa_method_modify_stmt,
6613         ipa_callsite_compute_param): Support for SSA.
6614         * ipa-prop.h (ipcp_driver): Remove declaration.
6615         (IS_VALID_TREE_MAP_INDEX): Add define.
6616
6617 2007-01-24  Geoffrey Keating  <geoffk@apple.com>
6618
6619         * unwind-dw2.c (execute_stack_op): Handle DW_OP_swap.
6620
6621 2007-01-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6622
6623         PR middle-end/30447
6624         * builtins.c (fold_builtin_cabs): Use MPFR to evaluate a
6625         constant argument to cabs and do it without checking for
6626         -funsafe-math-optimizations.
6627
6628 2007-01-24  Douglas Gregor  <dgregor@osl.iu.edu>
6629
6630         * c-common.h (RID_FIRST_CXX0X): New.
6631         (RID_LAST_CXX0X): New.
6632         * c-opts.c (c_common_handle_option): -Wc++0x-compat is triggered
6633         by -Wall.
6634         * c.opt (Wc++0x-compat): New.
6635         * doc/invoke.texi (-Wc++0x-compat): Document.
6636
6637 2007-01-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6638
6639         * builtins.c (fold_builtin_carg): New.
6640         (fold_builtin_1): Use it.
6641
6642 2007-01-24  Jan Hubicka  <jh@suse.cz>
6643
6644         * ipa-inline.c (cgraph_decide_inlining): Initialize initial_insns.
6645
6646         * ipa-inline.c (initial_insns, max_insns): Delete.
6647         (compute_max_insns): New function.
6648         (cgraph_decide_inlining_of_small_function): Use it; take minimal amount
6649         of insns as base for code growth.
6650         (cgraph_decide_inlining): Make initial_insns local; do not compute
6651         max_insns.
6652         * params.def (PARAM_INLINE_UNIT_GROWTH): Set to 60.
6653         * doc/invoke.texi (inline-unit-growth): Update docs.
6654
6655 2007-01-24  Jakub Jelinek  <jakub@redhat.com>
6656
6657         * config/i386/i386.h (x86_cmpxchg16b): Remove const.
6658         (TARGET_CMPXCHG16B): Define to x86_cmpxchg16b.
6659         * config/i386/i386.c (x86_cmpxchg16b): Remove const.
6660         (override_options): Add PTA_CX16 flag.  Set x86_cmpxchg16b
6661         for CPUs that have PTA_CX16 set.
6662
6663         PR middle-end/27416
6664         * gimplify.c (omp_check_private): New function.
6665         (gimplify_scan_omp_clauses): Use it for
6666         firstprivate/lastprivate/reduction.
6667
6668         PR middle-end/30494
6669         * gimplify.c (omp_add_variable): Don't call omp_notice_variable
6670         on TYPE_SIZE_UNIT for GOVD_LOCAL VLAs.
6671
6672         PR middle-end/30421
6673         * omp-low.c (lower_omp_for_lastprivate): Add dlist argument.
6674         If lower_lastprivate_clauses emits some statements, append them
6675         to dlist rather than body_p and to body_p append an initializer.
6676         (lower_omp_for): Adjust caller.
6677
6678 2007-01-24  Steve Ellcey  <sje@cup.hp.com>
6679
6680         * target.h (globalize_decl_name): New.
6681         * target-def.h (TARGET_ASM_GLOBALIZE_DECL_NAME): New.
6682         * output.h (default_globalize_decl_name): New.
6683         * varasm.c (asm_output_bss): Use globalize_decl_name instead of
6684         globalize_label.
6685         (globalize_decl): Ditto.
6686         (default_globalize_decl_name): New.
6687         * config/ia64/ia64.c (ia64_globalize_decl_name): New.
6688         (ia64_handle_version_id_attribute): New.
6689         (TARGET_ASM_GLOBALIZE_DECL_NAME): New.
6690         (ia64_asm_output_external): Use globalize_decl_name instead
6691         of globalize_label.
6692         * doc/extend.texi (version_id): New pragma.
6693         * doc/tm.texi (ARGET_ASM_GLOBALIZE_DECL_NAME): New target hook.
6694
6695 2007-01-24  Andreas Krebbel  <krebbel1@de.ibm.com>
6696
6697         * unwind-dw2-fde.c (get_cie_encoding): Replaced _Unwind_Word with
6698         _uleb128_t and _Unwind_SWord with _sleb128_t.
6699         * unwind-dw2.c (extract_cie_info, execute_stack_op, execute_cfa_program,
6700         uw_frame_state_for, uw_update_context_1): Likewise.
6701         * unwind-c.c (parse_lsda_header, PERSONALITY_FUNCTION): Likewise.
6702         * unwind-pe.h (read_uleb128, read_sleb128,
6703         read_encoded_value_with_base): Likewise.
6704         * unwind-generic.h: Define _sleb128_t and _uleb128_t types.
6705
6706 2007-01-24  Richard Guenther  <rguenther@suse.de>
6707
6708         * builtins.c (expand_builtin_cexpi): Get the fndecl
6709         for cexp in the correct way.
6710
6711 2007-01-24  Jan Hubicka  <jh@suse.cz>
6712
6713         * tree-ssa-dce.c (eliminate_unnecesary_stmts): Remove dead LHS of calls.
6714
6715 2007-01-24  Andreas Krebbel  <krebbel1@de.ibm.com>
6716
6717         * c-cppbuiltin.c (builtin_define_type_sizeof): New function.
6718         (c_cpp_builtins): New builtin macros: __SIZEOF_INT__, __SIZEOF_LONG__,
6719         __SIZEOF_LONG_LONG__, __SIZEOF_SHORT__, __SIZEOF_POINTER__,
6720         __SIZEOF_FLOAT__, __SIZEOF_DOUBLE__, __SIZEOF_LONG_DOUBLE__,
6721         __SIZEOF_SIZE_T__, __SIZEOF_WCHAR_T__, __SIZEOF_WINT_T__ and
6722         __SIZEOF_PTRDIFF_T__.
6723         * doc/cpp.texi: Documentation for the new builtin macros added.
6724
6725 2007-01-24  Uros Bizjak  <ubizjak@gmail.com>
6726
6727         * config/i386/i386.md (tanxf2, tan<mode>2, atan<mode>2, log<mode>2,
6728         log10<mode>2, log2<mode>2, expxf2, exp10xf2, exp2xf2): Use op2
6729         instead of operands[2] to avoid access past the end of array.
6730
6731 2007-01-24  Richard Sandiford  <richard@codesourcery.com>
6732
6733         * reload1.c (emit_reload_insns): Pass the reload register
6734         for a non-spill output reload through forget_old_reloads_1.
6735
6736 2007-01-23  Joseph Myers  <joseph@codesourcery.com>
6737
6738         * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Define
6739         _SOFT_DOUBLE if doubles use software floating-point.
6740         * config/rs6000/libgcc-ppc-glibc.ver: Export additional long
6741         double functions if _SOFT_DOUBLE, not _SOFT_FLOAT.
6742         * config/rs6000/darwin-ldouble.c: Also compile functions for
6743         hard-float without FPRs.  Use fmsub function for all __NO_FPRS__
6744         cases.  Compile extra functions if _SOFT_DOUBLE, not _SOFT_FLOAT.
6745         * config/rs6000/linuxspe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Remove
6746         commented-out long double override.
6747         (CPP_LONGDOUBLE_DEFAULT_SPEC): Likewise.
6748         * config/rs6000/eabispe.h: Likewise.
6749         * config/rs6000/rs6000.c (rs6000_override_options): Don't override
6750         long double for non-SPE.
6751         (rs6000_handle_option): Likewise.
6752         (invalid_e500_subreg): Disallow more subregs involding DImode,
6753         DFmode, TImode or TFmode.
6754         (rs6000_legitimate_offset_address_p): Check TFmode offsets for
6755         E500 double.
6756         (legitimate_lo_sum_address_p): Also check for TFmode for E500
6757         double.
6758         (rs6000_legitimize_address): Also handle TFmode for E500 double.
6759         (rs6000_legitimize_reload_address): Also handle TFmode for E500
6760         double.
6761         (rs6000_legitimate_address): Also check for TFmode for E500
6762         double.
6763         (rs6000_emit_move): Use DFmode subregs of TFmode for E500 double.
6764         (spe_build_register_parallel): Handle TFmode and TCmode.
6765         (rs6000_spe_function_arg): Handle TFmode and TCmode for E500
6766         double.
6767         (function_arg): Handle TFmode and TCmode for E500 double.
6768         (rs6000_init_libfuncs): Initialize extra libfuncs for soft double
6769         in general.
6770         (print_operand): Handle TFmode and TImode for %y.
6771         (rs6000_generate_compare): Handle TFmode comparisons for E500
6772         double.
6773         (spe_func_has_64bit_regs_p): Check for TFmode for E500 double.
6774         (rs6000_function_value): Handle TFmode and TCmode for E500 double.
6775         (rs6000_libcall_value): Handle TFmode and TCmode for E500 double.
6776         * config/rs6000/rs6000.h (CANNOT_CHANGE_MODE_CLASS): Check for
6777         TFmode for E500 double.
6778         * config/rs6000/rs6000.md (FP): Allow TF for E500 double.
6779         (floatsidf2): Enable for E500 double.
6780         (movtf_softfloat): Use rs6000_nonimmediate_operand.
6781         (extenddftf2): Change to extenddftf2_fprs.
6782         (extenddftf2): Call gen_spe_extenddftf2 or gen_extenddftf2_fprs
6783         depending on TARGET_E500_DOUBLE.
6784         (extendsftf2): Enable for E500 double.
6785         (trunctfdf2): Enable for E500 double.
6786         (trunctfsf2): Change to trunctfsf2_fprs.
6787         (trunctfsf2): Call gen_spe_trunctfsf2 or gen_trunctfsf2_fprs
6788         depending on TARGET_E500_DOUBLE.
6789         (floatsitf2): Enable for E500 double.
6790         (fix_trunctfsi2): Change to fix_trunctfsi2_fprs.
6791         (fix_trunctfsi2): Call gen_spe_fix_trunctfsi2 or
6792         gen_fix_trunctfsi2_fprs depending on TARGET_E500_DOUBLE.
6793         (negtf2): Change to negtf2_internal.
6794         (negtf2): New expander.
6795         (abstf2): Enable for E500 double.  Call gen_spe_abstf2_tst,
6796         gen_spe_abstf2_cmp or gen_abstf2_internal depending on
6797         TARGET_E500_DOUBLE and flag_unsafe_math_optimizations.
6798         (movdi_internal32): Use rs6000_nonimmediate_operand.
6799         (unnamed splitter): Likewise.
6800         * config/rs6000/spe.md (CMPTFEQ_GPR, TSTTFEQ_GPR, CMPTFGT_GPR,
6801         TSTTFGT_GPR, CMPTFLT_GPR, TSTTFLT_GPR): New unspecs.
6802         (SPE64TF, DITI): New mode macros.
6803         (frob_df_di): Change to frob_<SPE64:mode>_<DITI:mode>; allow more
6804         modes.
6805         (frob_tf_ti): New.
6806         (frob_<mode>_di_2): New.
6807         (frob_tf_di_8_2): New.
6808         (frob_di_df): Change to frob_di_<mode>; allow more modes.
6809         (frob_ti_tf): New.
6810         (frob_di_df_2): Change to frob_<DITI:mode>_<SPE64:mode>_2; allow
6811         more modes.
6812         (frob_ti_<mode>_8_2): New.
6813         (frob_ti_tf_2): New.
6814         (mov_si<mode>_e500_subreg0, mov_si<mode>_e500_subreg0_2,
6815         mov_si<mode>_e500_subreg4, mov_si<mode>_e500_subreg4_2): Allow
6816         TFmode.
6817         (mov_sitf_e500_subreg8, mov_sitf_e500_subreg8_2,
6818         mov_sitf_e500_subreg12, mov_sitf_e500_subreg12_2): New.
6819         (spe_trunctfdf2_internal1, spe_trunctfsf2, spe_extenddftf2,
6820         spe_fix_trunctfsi2, spe_fix_trunctfsi2_internal,
6821         spe_negtf2_internal, spe_abstf2_cmp, spe_abstf2_tst): New.
6822         (cmptfeq_gpr, tsttfeq_gpr, cmptfgt_gpr, tsttfgt_gpr, cmptflt_gpr,
6823         tsttflt_gp): New.
6824
6825 2007-01-23  Ian Lance Taylor  <iant@google.com>
6826
6827         * Makefile.in (OBJS-common): Reformat, alphabetize, but put
6828         insn-*.o first.
6829         (OBJS-archive): Reformat, alphabetize.
6830         (OBJS): Change out_object_file to OBJS-md.
6831
6832 2007-01-23  Uros Bizjak  <ubizjak@gmail.com>
6833
6834         * config/i386/i386.md: Use REG_P, MEM_P, CONST_INT_P, LABEL_P,
6835         JUMP_P and CALL_P predicates where applicable.
6836         * config/i386/i386.c: Ditto.
6837         * config/i386/i386.md: Ditto.
6838         * config/i386/mmx.md: Ditto.
6839         * config/i386/predicates.md: Ditto.
6840
6841 2007-01-22  Andreas Schwab  <schwab@suse.de>
6842
6843         * config/m68k/m68k.h: Fix comment.
6844
6845 2007-01-22  Jan Hubicka  <jh@suse.cz>
6846
6847         * passes.c (init_optimization_passes): Do not rerun
6848         pass_early_warn_uninitialized.
6849
6850 2007-01-22  Richard Guenther  <rguenther@suse.de>
6851
6852         PR tree-optimization/30038
6853         * tree-ssa-math-opts.c (maybe_record_sincos): New static helper
6854         function.
6855         (execute_cse_sincos_1): Likewise.
6856         (execute_cse_sincos): Likewise.
6857         (gate_cse_sincos): Likewise.
6858         (pass_cse_sincos): New pass CSEing sin() and cos() calls using
6859         the cexpi() canonicalization of sincos().
6860         * tree-pass.h (pass_cse_sincos): Declare.
6861         * passes.c (init_optimization_passes): New pass pas_cse_sincos.
6862
6863 2007-01-21  Eric Botcazou  <ebotcazou@libertysurf.fr>
6864
6865         PR rtl-optimization/29329
6866         * combine.c (replaced_rhs_insn): Rename to i2mod.
6867         (replaced_rhs_value): Rename to i2mod_new_rhs.
6868         (i2mod_old_rhs): New global variable.
6869         (combine_instructions): Adjust for above change.  Save a copy of
6870         the old RHS into i2mod_old_rhs when the contents of a REG_EQUAL
6871         note are substituted in the second instruction.
6872         (distribute_notes) <REG_DEAD>: Adjust for above change.  Do not
6873         ditch the note if it pertains to the second eliminated register
6874         and this register is mentioned in i2mod_old_rhs.
6875
6876         Revert:
6877         2006-09-12  Eric Botcazou  <ebotcazou@libertysurf.fr>
6878
6879         * combine.c (distribute_notes) <REG_DEAD>: Do not consider SETs past
6880         the insn to which the note was originally attached.
6881
6882 2007-01-21  Jan Hubicka  <jh@suse.cz>
6883
6884         * ipa-inline.c (inlining_mode): Comment, move up.
6885         (cgraph_decide_inlining_incrementally): Do not perform inlining
6886         itself; fix handling of flattening of self recursive functions.
6887         (cgraph_find_cycles): Remove.
6888         (cgraph_flatten_node): Remove.
6889         (cgraph_decide_inlining): Use incremental inliner to handle flattening.
6890         (try_inline): New function.
6891         (cgraph_early_inlining): Update call of
6892         cgraph_decide_inlining_incrementally.  Apply inlining here.
6893         (apply_inline): Update call of cgraph_decide_inlining_incrementally.
6894
6895 2007-01-21  Dirk Mueller  <dmueller@suse.de>
6896
6897         PR bootstrap/30511
6898         * tree-vrp.c (check_array_bounds): do not warn
6899         about ADDR_EXPR's of ARRAY_REF's which are immediately
6900         used in binary expressions.
6901
6902 2007-01-21  Ira Rosen  <irar@il.ibm.com>
6903
6904         * tree-vectorizer.h (struct _stmt_vec_info): Add new field
6905         read_write_dep and macros for its access.
6906         * tree-vectorizer.c (new_stmt_vec_info): Initialize the new field.
6907         * tree-vect-analyze.c (vect_analyze_data_ref_dependence): Remove
6908         argument, call vect_check_interleaving for every independent pair of
6909         data-refs. Mark loads that access the same memory location as a store
6910         in the loop.
6911         (vect_check_dependences): Remove.
6912         (vect_analyze_data_ref_dependences): Remove  vect_check_dependences
6913         call, fix the call to vect_analyze_data_ref_dependence.
6914         (vect_analyze_data_ref_access): For statements that access the same
6915         data-ref, check that they are not stores; for loads, check that there
6916         is no store that access the same location.
6917
6918 2007-01-20  Roger Sayle  <roger@eyesopen.com>
6919             Joseph Myers  <joseph@codesourcery.com>
6920
6921         * doc/invoke.texi (-fdump-rtl-combine): Fix under/overfull hbox.
6922         (-fdump-rtl-stack): Likewise.
6923         (-fno-signed-zeros): Use @minus{} for a minus sign.  Correct typo.
6924         (-mcheck-zero-division, -mcpu): Fix under/overfull hbox.
6925         (-mpt-fixed): Use @minus{} for minus sign.
6926         (Using Precompiled Headers): Fix under/overfull hbox.
6927
6928 2007-01-20  Jan Hubicka  <jh@suse.cz>
6929
6930         * tree-flow.h (struct stmt_ann_d): Move references_memory to proper
6931         place within annotation.
6932
6933 2007-01-20  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
6934
6935         * pa.c (output_move_double): Change array size of xoperands to 4.
6936
6937 2007-01-20  Jan Hubicka  <jh@suse.cz>
6938
6939         * tree-tailcall.c (adjust_return_value): Do not use RESULT_DECL
6940         as temporary.
6941
6942 2007-01-19  Ian Lance Taylor  <iant@google.com>
6943
6944         * expmed.c (expand_divmod) [TRUNC_MOD_EXPR, TRUNC_DIV_EXPR]: Cast
6945         constant to unsigned HOST_WIDE_INT before negating.
6946
6947 2007-01-19  Ian Lance Taylor  <iant@google.com>
6948
6949         * tree-ssa-operands.h (struct vuse_vec_d): Change num_vuse field
6950         to unsigned.
6951         (VUSE_VECT_ELEMENT) [ENABLE_CHECKING]: Use unsigned comparison.
6952         (VUSE_ELEMENT_PTR) [ENABLE_CHECKING]: Likewise.
6953         (SET_VUSE_VECT_ELEMENT) [ENABLE_CHECKING]: Likewise.
6954         (SET_VUSE_ELEMENT_VAR) [ENABLE_CHECKING]: Likewise.
6955         (SET_VUSE_ELEMENT_PTR) [ENABLE_CHECKING]: Likewise.
6956         (realloc_vdef, realloc_vuse): Change second parameter to
6957         unsigned.
6958         (ssa_operand_iterator_d): Change vuse_index and mayuse_index
6959         fields to unsigned.
6960         * tree-ssa-operands.c (realloc_vop): Change num_elem parameter to
6961         unsigned. Change x and lim locals to unsigned.
6962         (realloc_vdef, realloc_vuse): Change num_elem parameter to
6963         unsigned.
6964         (finalize_ssa_vuse_ops): Change old_i local to unsigned.
6965         (copy_virtual_operands): Change i and n locals to unsigned.
6966
6967 2007-01-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6968
6969         PR middle-end/29335
6970         * builtins.c (fold_builtin_1): Handle builtin fdim.
6971
6972 2007-01-20  Jan Hubicka  <jh@suse.cz>
6973
6974         * tree-ssa.c (init_tree_ssa): Do not call init_alias_heapvars.
6975         * tree-ssa-structalias.c (compute_points_to_sets): Do call
6976         init_alias_heapvars.
6977         (init_alias_heapvars): Initialize only when not already initialized.
6978         (delete_alias_heapvars): Set heapvar_for_stmt to NULL.
6979
6980 2007-01-19  Roger Sayle  <roger@eyesopen.com>
6981
6982         * common.opt (fsigned-zeros): New command line option.
6983         * flags.h (HONOR_SIGNED_ZEROS): Control via flag_signed_zeros instead
6984         of flag_unsafe_math_optimizations.
6985         * opts.c (set_fast_math_flags): The -ffast-math command line option
6986         implies -fno-signed-zeros.
6987         (fast_math_flags_set_p): Likewise.
6988
6989         * doc/invoke.texi: Document new -fno-signed-zeros option, and update
6990         the documentation of -ffast-math appropriately.  Wrap long lines.
6991
6992 2007-01-19  Steve Ellcey  <sje@cup.hp.com>
6993
6994         * system.h (ASM_MAKE_LABEL_LINKONCE): Poison.
6995         * varasm.c (globalize_decl): Remove ASM_MAKE_LABEL_LINKONCE ifdef.
6996
6997 2007-01-19  Tomas Bily  <tbily@suse.cz>
6998
6999         * cgraphunit.c (cgraph_finalize_function): Updating of pid
7000         * tree-profile.c:
7001         (tree_init_ic_make_global_vars): New function
7002         (tree_init_edge_profiler): call of tree_init_ic_make_global_vars
7003         (tree_gen_ic_profiler): New function
7004         (tree_gen_ic_func_profiler): New function
7005         (tree_profiling): Added calling of tree_gen_ic_func_profiler
7006         (tree_profile_hooks): Added hook for indirec/virtual calls
7007         * value-prof.c (tree_find_values_to_profile): New case for
7008         indirect calls
7009         (tree_values_to_profile): Call for determining indirect/virtual
7010         counters
7011         (tree_indirect_call_to_profile): New function
7012         (tree_ic_transform): New function
7013         (tree_ic): New function
7014         (find_func_by_pid): New function
7015         (init_pid_map): New function
7016         (tree_value_profile_transformations): Added check for
7017         indirect/virtual call transformation
7018         * value-prof.h (enum hist_type): New counter type for
7019         indirect/virtual calls
7020         (profile_hooks): Added new hook for profiling indirect/virtual
7021         calls
7022         * profile.c (instrument_values): New case for indirect/virtual
7023         call added
7024         * gcov-io.h (GCOV_LAST_VALUE_COUNTER): Changed to 6
7025         (GCOV_COUNTER_V_INDIR): New counter type
7026         (GCOV_COUNTER_NAMES): New name of counter "indirect" added
7027         (GCOV_MERGE_FUNCTIONS): New merge function for indirect/virtual
7028         call added
7029         * cgraph.c: Definition of cgraph_max_pid
7030         (cgraph_create_node): Default init of pid attribute
7031         * cgraph.h: Declaration of cgraph_max_pid
7032         (struct cgraph_node): Added pid attribute
7033         * libgcov.c (__gcov_indirect_call_profiler): New function
7034         (__gcov_one_value_profiler_body): New function
7035         (__gcov_one_value_profiler): Body was moved to
7036         __gcov_one_value_profiler_body and calls it
7037
7038 2007-01-19  Basile Starynkevitch  <basile@starynkevitch.net>
7039
7040         * doc/gty.texi (Options): Document the mark_hook option to GTY.
7041         * gengtype.c (write_types_data, write_func_for_structure,
7042         write_types, ggc_wtd, pch_wtd): Add skip_hooks to
7043         write_types_data, ggc_wtd, pch_wtd for processing mark_hook.
7044         (walk_type, write_func_for_structure): Generate the mark_hook if
7045         needed.
7046
7047 2007-01-19  Jan Hubicka  <jh@suse.cz>
7048
7049         * ipa-inline.c (cgraph_decide_inlining_incrementally): Instead of
7050         'early' argument take inlining mode argument specifying whether to
7051         inline for size/speeed or all functions; add support for flattening;
7052         improve dumpting.
7053         (cgraph_early_inlining): Update call of decide_inlining_incrementally.
7054
7055 2007-01-19  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
7056
7057         PR c++/17947
7058         * toplev.c (warn_deprecated_use): Use %qD instead of %qs to print
7059         the name of the declared identifier.
7060
7061 2007-01-19  Dirk Mueller  <dmueller@suse.de>
7062
7063         * config/i386.h (CONDITIONAL_REGISTER_USAGE): Store
7064         result of PIC_OFFSET_TABLE_REGNUM in temporary variable to avoid
7065         duplicate evaluation.
7066
7067 2007-01-19  Uros Bizjak  <ubizjak@gmail.com>
7068
7069         * config/i386/i386.md (acos<mode>2): Rename from acossf2 and acosdf2.
7070         Macroize expander using X87MODEF12 mode macro.  Extend operand 1
7071         to XFMode, use acosxf2 and truncate result to requested mode.
7072         Use SSE_FLOAT_MODE_P to disable patterns for SSE math.
7073         (asin<mode>2): Similarly, with asin expanders.
7074         (*fscalexf4_i387): Rename from *fscalexf4.
7075         (expNcorexf3): New expander.
7076         (expxf2, exp10xf2, exp2xf2): Use expNcorexf3 expander.
7077         (exp<mode>2): Rename from expsf2 and expdf2. Macroize expander using
7078         X87MODEF12 mode macro.  Extend operand 1 to XFMode, use expxf2 and
7079         truncate result to requested mode. Use SSE_FLOAT_MODE_P to disable
7080         patterns for SSE math.
7081         (exp10<mode>2): Similarly, with exp10 expanders.
7082         (exp2<mode>2): Similarly, with exp2 expanders.
7083         (expm1<mode>2): Similarly, with expm1 expanders.
7084         (ldexp<mode>3): Similarly, with ldexp expanders.
7085         (log<mode>2, log10<mode>2, log2<mode>2, log1p<mode>2, logb<mode>2):
7086         Use gen_truncxf<mode>2_i387_noop to truncate result.
7087
7088 2007-01-19  Richard Sandiford  <richard@codesourcery.com>
7089
7090         * config/m68k/m68k.h (PREFERRED_STACK_BOUNDARY): Define to 32
7091         for ColdFire targets.
7092
7093 2007-01-19  Nathan Sidwell  <nathan@codesourcery.com>
7094             Richard Sandiford  <richard@codesourcery.com>
7095
7096         * config/m68k/m68k.h (M68K_STATIC_CHAIN_REG_NAME): New macro.
7097         (INITIALIZE_TRAMPOLINE): Use STATIC_CHAIN_REGNUM.
7098         (__transfer_from_trampoline): Use M68K_STATIC_CHAIN_REG_NAME.
7099         * config/m68k/m68kelf.h (STATIC_CHAIN_REGNUM): Override.
7100         (M68K_STATIC_CHAIN_REG_NAME): Likewise.
7101         * config/m68k/netbsd-elf.h (M68K_STATIC_CHAIN_REG_NAME): Likewise.
7102
7103 2007-01-19  Richard Sandiford  <richard@codesourcery.com>
7104
7105         * config/m68k/m68k.md (adddi_dilshr32): Rename to...
7106         (*adddi_dilshr32): ...this.  Fix formatting.  Remove commented-out
7107         non-canonical pattern.  Restrict to !TARGET_COLDFIRE.
7108         (*adddi_dilshr32_cf): New pattern.
7109         (adddi3, subdi3): Remove first alternatives.
7110
7111 2007-01-19  Richard Sandiford  <richard@codesourcery.com>
7112
7113         * config/m68k/m68k.c (notice_update_cc): If an SFmode move is
7114         implemented using move.l, do not use its cc result for floating-point
7115         comparisons.
7116
7117 2007-01-19  Richard Sandiford  <richard@codesourcery.com>
7118
7119         * config/m68k/m68k.h (EXTRA_CONSTRAINT): Stop the 'T' constraint
7120         from accepting 's' constraints if flag_pic.
7121
7122 2007-01-19  Richard Sandiford  <richard@codesourcery.com>
7123
7124         * config/m68k/m68k.md (bordered, bunordered, buneq, bunge, bungt)
7125         (bunle, bunlt, bltgt, bordered_rev, bunordered_rev, buneq_rev)
7126         (bunge_rev, bungt_rev, bunle_rev, bunlt_rev, bltgt_rev): Change
7127         condition from TARGET_68881 to TARGET_HARD_FLOAT.
7128
7129 2007-01-19  Sandra Loosemore  <sandra@codesourcery.com>
7130
7131         * longlong.h (count_leading_zeros, COUNT_LEADING_ZEROS_0): Add
7132         ColdFire alternatives.
7133         * config/m68k/m68k.h (CLZ_DEFINED_VALUE_AT_ZERO): New macro.
7134         * config/m68k/m68k.md (clzsi2):  Define for ColdFire
7135         architectures that support ff1 instruction.
7136
7137 2007-01-19  Richard Sandiford  <richard@codesourcery.com>
7138             Julian Brown  <julian@codesourcery.com>
7139
7140         * config/m68k/m68k.h (CONST_OK_FOR_LETTER_P): Add an 'R' case.
7141         * config/m68k/m68k.md (*movsi_cfv4): Fold into...
7142         (*movsi_cf): ...here.  Remove unnecessary 'R' from 'Rg'.
7143         Add commentary.
7144
7145 2007-01-19  Richard Sandiford  <richard@codesourcery.com>
7146
7147         * config/m68k/m68k-protos.h (valid_mov3q_const): Take a HOST_WIDE_INT
7148         and return a bool.
7149         (output_move_const_into_data_reg, output_move_simode_const): Delete.
7150         * config/m68k/m68k.c (const_method, const_int_cost): Take a
7151         HOST_WIDE_INT instead of an rtx.
7152         (m68k_rtx_costs): Update call accordingly.
7153         (output_move_const_into_data_reg): Likewise.  Fix formatting.
7154         (valid_mov3q_const): Take a HOST_WIDE_INT instead of an rtx.
7155         Return a bool.
7156         (output_move_simode_const): Update calls after above changes.
7157         Rework to use automatic variables and predicates like MEM_P.
7158         * config/m68k/m68k.md (pushexthisi_const): Update call to
7159         valid_mov3q_const.
7160
7161 2007-01-19  Dirk Mueller  <dmueller@suse.de>
7162
7163         * tree-ssa-alias.c (perform_var_substitution): Fix typo
7164         in dump_flags test.
7165
7166 2007-01-19  Richard Guenther  <rguenther@suse.de>
7167
7168         * builtins.c (expand_builtin_cexpi): Fall back to expanding
7169         via cexp in case sincos is not available.
7170
7171 2007-01-19  Richard Guenther  <rguenther@suse.de>
7172
7173         * doc/tm.texi (TARGET_HAS_SINCOS): Document new target macro.
7174         * defaults.h (TARGET_HAS_SINCOS): Default to off.
7175         * config/linux.h (TARGET_HAS_SINCOS): Set to on if we have glibc.
7176         * config/alpha/linux.h (TARGET_HAS_SINCOS): Likewise.
7177         * config/sparc/linux.h (TARGET_HAS_SINCOS): Likewise.
7178         * config/sparc/linux64.h (TARGET_HAS_SINCOS): Likewise.
7179         * config/rs6000/linux.h (TARGET_HAS_SINCOS): Likewise.
7180         * config/rs6000/linux64.h (TARGET_HAS_SINCOS): Likewise.
7181
7182 2007-01-19  Uros Bizjak  <ubizjak@gmail.com>
7183
7184         * config/i386/i386.md (*fpatanxf3_i387, fpatan_extend<mode>xf3_i387):
7185         New insn patterns.
7186         (atan2sf3_1, atan2df3_1, atan2xf3_1): Remove insn patterns.
7187         (atan2xf3): Directly generate RTL pattern.
7188         (atan2<mode>3): Rename from atan2sf3 and atan2df3 and macroize insn
7189         patterns using X87MODEF12 mode macro.  Use fpatan_extend<mode>xf3_i387
7190         and truncate result to requested mode.  Use SSE_FLOAT_MODE_P to
7191         disable patterns for SSE math.
7192         (atan<mode>2): Rename from atansf2 and atandf2 and macroize insn
7193         patterns using X87MODEF12 mode macro.  Use fpatan_extend<mode>xf3_i387
7194         and truncate result to requested mode.  Use SSE_FLOAT_MODE_P to
7195         disable patterns for SSE math.
7196
7197 2007-01-19  Alexandre Oliva  <aoliva@redhat.com>
7198
7199         * libgcc-std.ver: Fix typo in %inherit for GCC_4.3.0.
7200
7201 2007-01-18  Roger Sayle  <roger@eyesopen.com>
7202
7203         * fold-const.c (fold_unary) <VIEW_CONVERT_EXPR>: Optimize away a
7204         VIEW_CONVERT_EXPR to the same type as it's operand.
7205
7206 2007-01-18  David Edelsohn  <edelsohn@gnu.org>
7207
7208         * config/rs6000/darwin-ldouble.c: Only build _SOFT_FLOAT if
7209         configured for long double 128.
7210
7211 2007-01-18  Mike Stump  <mrs@apple.com>
7212
7213         * config/rs6000/rs6000.c (rs6000_emit_vector_compare): Fix build
7214         error.
7215
7216 2007-01-18  Michael Meissner  <michael.meissner@amd.com>
7217
7218         * i386.c (ix86_compute_frame_layout): Make fprintf's in #if 0 code
7219         type correct.
7220
7221 2007-01-18  Jan Hubicka  <jh@suse.cz>
7222
7223         * tree-ssa-operands.c (vop_free_bucket_size): Never return value
7224         greater than NUM_VOP_FREE_BUCKETS.
7225
7226 2007-01-18  Daniel Berlin  <dberlin@dberlin.org>
7227
7228         * tree-ssa-structalias.c: Update comments.
7229         (ptabitmap_obstack): Removed.
7230         (pta_obstack): New.
7231         (oldpta_obstack): Ditto.
7232         (stats): Add a few members.
7233         (struct variable_info): Remove node, complex, address_taken, and
7234         indirect_target members. Add oldsolution member.
7235         (new_var_info): Do not initialize removed members.
7236         (constraint_expr_type): Remove INCLUDES.
7237         (constraint_graph): Add size, implicit_preds, rep,
7238         indirect_cycles, eq_rep, label, direct_nodes, and complex members.
7239         (FIRST_REF_NODE): New macro.
7240         (LAST_REF_NODE): Ditto.
7241         (FIRST_ADDR_NODE): Ditto.
7242         (find): New function.
7243         (unite): Ditto.
7244         (dump_constraint): Do not handle INCLUDES.
7245         (insert_into_complex): Do not insert duplicate constraints.
7246         (condense_varmap_nodes): Renamed and rewritten into ...
7247         (merge_node_constraints): This. Also fix bug in handling of
7248         offseted copy constraints.
7249         (clear_edges_for_node): No longer need to deal with preds at all,
7250         or removing associated preds/succs.
7251         (merge_graph_nodes): Deal with indirect_cycles.
7252         Don't deal with predecessors.
7253         (add_implicit_graph_edge): New function.
7254         (add_pred_graph_edge): Ditto.
7255         (add_graph_edge): Don't deal with predecessors.
7256         (build_constraint_graph): Removed.
7257         (build_pred_graph): New function.
7258         (build_succ_graph): Ditto.
7259         (struct scc_info): Removed in_component. Added roots, dfs, and
7260         node_mapping. Remove visited_index, unification_queue.
7261         (scc_visit): Deal with union-find we do now.
7262         Deal with cycles with REF nodes.
7263         (collapse_nodes): Renamed and rewritten to ...
7264         (unify_nodes): This.
7265         (process_unification_queue): Removed.
7266         (topo_visit): Cleanup
7267         (do_da_constraint): Use find.
7268         (do_sd_constraint): Ditto.
7269         (do_ds_constraint): Ditto.
7270         (do_complex_constraint): Ditto.
7271         (init_scc_info): Update for removed and added members.
7272         (find_and_collapse_graph_cycles): Renamed and rewritten into ...
7273         (find_indirect_cycles): This.
7274         (equivalence_class): New variable.
7275         (label_visit): New function.
7276         (perform_variable_substitution): Rewritten.
7277         (free_var_substitution_info): New function.
7278         (find_equivalent_node): Ditto.
7279         (move_complex_constraints): Ditto.
7280         (eliminate_indirect_cycles): Ditto.
7281         (solve_graph): Only propagate changed bits.
7282         Use indirect cycle elimination.
7283         Use find.
7284         (tree_id_t): Rename to tree_vi_t, delete id member, add vi member.
7285         (tree_id_eq): Renamed to ...
7286         (tree_vi_eq): This. Update for member change
7287         (insert_id_for_tree): Renamed and rewritten to ...
7288         (insert_vi_for_tree): This.
7289         (lookup_id_for_tree): Renamed and rewritten to ...
7290         (lookup_vi_for_tree): This.
7291         (get_id_for_tree): Renamed and rewritten to ...
7292         (get_vi_for_tree): Ditto.
7293         (get_constraint_exp_from_ssa_var): Update to use get_vi_for_tree.
7294         (process_constraint): Don't handle INCLUDES.
7295         Remove special ADDRESSOF case.
7296         (find_func_aliases): Rewrite to use vi functions instead of id
7297         ones.
7298         (create_function_info_for): Ditto.
7299         (create_variable_info_for): Ditto.
7300         (intra_create_variable_infos): Ditto.
7301         (merge_smts_into): Ditto.
7302         (find_what_p_points_to): Ditto.
7303         (init_base_vars): Ditto.
7304         (init_alias_vars): Ditto.
7305         (remove_preds_and_fake_succs): New function.
7306         (dump_sa_points_to_info): Dump new stats.
7307         (dump_solution_for_var): Use find.
7308         (set_used_smts): Fix formatting.
7309         (compute_points_to_sets): Updated for new functions.
7310         (ipa_pta_execute): Ditto.
7311
7312 2007-01-18  Kazu Hirata  <kazu@codesourcery.com>
7313             Richard Sandiford  <richard@codesourcery.com>
7314
7315         * doc/tm.texi (TARGET_FUNCTION_VALUE): Expand documentation of
7316         parallels.
7317         * calls.c (expand_call): If the return value is a PARALLEL,
7318         extract its first member.
7319         * config/m68k/linux.h (FUNCTION_EXTRA_EPILOGUE): Remove.
7320         * config/m68k/m68k.c (m68k_output_function_epilogue): Don't
7321         use FUNCTION_EXTRA_EPILOGUE.
7322         (m68k_function_value): Return a PARALLEL if the return value
7323         is of a pointer type.
7324         * config/m68k/netbsd-elf.h (current_function_returns_pointer)
7325         (FUNCTION_EXTRA_EPILOGUE): Remove.
7326         * config/m68k/m68k.md (D0_REG): New constant.
7327
7328 2007-01-18  Kazu Hirata  <kazu@codesourcery.com>
7329
7330         * config/m68k/m68k.c (m68k_output_function_epilogue): Don't
7331         output a NOP for empty epilogues.
7332
7333 2007-01-18  Richard Sandiford  <richard@codesourcery.com>
7334
7335         * config/m68k/m68k.c (m68k_use_return_insn): Update comments
7336         before function.  Extend register save check to include all
7337         registers, not just integer ones.
7338
7339 2007-01-18  Kazu Hirata  <kazu@codesourcery.com>
7340
7341         * config/m68k/m68k-protos.h (use_return_insn): Rename to...
7342         (m68k_use_return_insn): ...this.
7343         * config/m68k/m68k.h (USE_RETURN_INSN): Delete.
7344         * config/m68k/m68k.c (use_return_insn): Rename to...
7345         (m68k_use_return_insn): ...this.
7346         * config/m68k/m68k.md (return): Use m68k_use_return_insn instead
7347         of USE_RETURN_INSN.
7348
7349 2007-01-18  Nathan Sidwell  <nathan@codesourcery.com>
7350
7351         * config/m68k/fpgnulib.c (__truncdfsf2): Implement round to
7352         nearest even, fix denormal rounding overflow.
7353
7354 2007-01-18  Richard Sandiford  <richard@codesourcery.com>
7355
7356         * config/m68k/m68k.md (movsf_cf_hard): Use fsmove instead of
7357         f%$smove and f%$move.
7358         (movdf_cf_hard): Use fdmove for cases 0 and 3 and fmove for case 1.
7359         (extendsfdf2_cf): Use fdmove instead of f%&move.
7360         (truncdfsf2_cf): Use fsmove instead of f%$smove.
7361         (add<mode>3_cf, sub<mode>3_cf): Use <FP:prec> instead of <FP:round>.
7362
7363 2007-01-18  Richard Sandiford  <richard@codesourcery.com>
7364
7365         * config/m68k/m68k.md (movdf_cf_hard): Use output_move_double for
7366         GPR<-GPR moves.
7367
7368 2007-01-18  Richard Sandiford  <richard@codesourcery.com>
7369
7370         * real.h (real_format): Add a canonical_nan_lsbs_set field.
7371         (coldfire_single_format): Declare.
7372         (coldfire_double_format): Likewise.
7373         * real.c (encode_ieee_single): Use canonical_nan_lsbs_set instead
7374         of qnan_msb_set to determine the lower bits of a canonical
7375         NaN significand.
7376         (encode_ieee_double): Likewise.
7377         (encode_ieee_quad): Likewise.
7378         (ieee_single_format): Initialize canonical_nan_lsbs_set.
7379         (mips_single_format): Likewise.
7380         (ieee_double_format): Likewise.
7381         (mips_double_format): Likewise.
7382         (ieee_extended_motorola_format): Likewise.
7383         (ieee_extended_intel_96_format): Likewise.
7384         (ieee_extended_intel_128_format): Likewise.
7385         (ieee_extended_intel_96_round_53_format): Likewise.
7386         (ibm_extended_format): Likewise.
7387         (mips_extended_format): Likewise.
7388         (ieee_quad_format): Likewise.
7389         (mips_quad_format): Likewise.
7390         (vax_f_format): Likewise.
7391         (vax_d_format): Likewise.
7392         (vax_g_format): Likewise.
7393         (i370_single_format): Likewise.
7394         (i370_double_format): Likewise.
7395         (decimal_single_format): Likewise.
7396         (decimal_double_format): Likewise.
7397         (decimal_quad_format): Likewise.
7398         (c4x_single_format): Likewise.
7399         (c4x_extended_format): Likewise.
7400         (real_internal_format): Likewise.
7401         (coldfire_single_format): New real_format.
7402         (coldfire_double_format): Likewise.
7403         * config/pdp11/pdp11.c (pdp11_f_format): Initialize
7404         canonical_nan_lsbs_set.
7405         (pdp11_d_format): Likewise.
7406         * config/m68k/m68k.c (override_options): Override REAL_FORMAT_MODE
7407         if TARGET_COLDFIRE_CPU.
7408
7409 2007-01-18  Richard Sandiford  <richard@codesourcery.com>
7410
7411         * config/m68k/m68k-protos.h (m68k_output_pic_call): Delete.
7412         (output_call, m68k_legitimize_call_address): Declare.
7413         * config/m68k/m68k.h (EXTRA_CONSTRAINT): Remove unnecessary
7414         parenthesees.  Add support for a 'W' constraint.
7415         (LEGITIMATE_PIC_OPERAND_P): Remove SYMBOL_REF_FLAG handling.
7416         (PRINT_OPERAND_PUNCT_VALID_P): Remove comment about 'o'.
7417         (m68k_symbolic_call, m68k_symbolic_jump): Declare.
7418         * config/m68k/m68k.c (m68k_symbolic_call, m68k_symbolic_jump): New
7419         variables.
7420         (override_options): Initialize them.  Do not set flag_no_function_cse
7421         for TARGET_ID_SHARED_LIBRARY.
7422         (m68k_output_pic_call): Delete.
7423         (m68k_legitimize_call_address): New function.
7424         (print_operand): Remove the %o prefix.  Handle the %p prefix.
7425         (output_call): New function.
7426         (m68k_output_mi_thunk): Use m68k_symbolic_jump.  Always load the
7427         target address from the GOT if symbolic jumps are not allowed.
7428         * config/m68k/m68k.md (call, general_operand): Do not set
7429         SYMBOL_REF_FLAG.  Use m68k_legitimize_call_address instead.
7430         Merge separate flag_pic and !flag_pic define_insns into...
7431         (*call, *call_value): ...these new patterns.  Match the address
7432         rather than the containing MEM and require it to be a call_operand.
7433         Use output_call to generate the asm template.
7434         * config/m68k/predicates.md (const_call_operand): New predicate.
7435         (call_operand): Likewise.
7436
7437 2007-01-18  Nathan Sidwell  <nathan@codesourcery.com>
7438
7439         * config/m68k/m68k.h (REGISTER_MOVE_COST): Simplify definition.
7440         (STACK_GROWS_DOWNWARD): Define to 1.
7441         (FUNCTION_VALUE, LIBCALL_VALUE, FUNCTION_VALUE_REGNO_P): Equivocate
7442         comments, emphasizing that these values are only defaults.
7443         * config/m68k/linux.h (LINK_SPEC): Fix formatting in #undef.
7444         * config/m68k/m68k.c (const_method): Remove trailing whitespace.
7445
7446 2007-01-18  Richard Sandiford  <richard@codesourcery.com>
7447
7448         * config/m68k/m68k.md (cmpsi): Remove outdated flag_pic handling.
7449
7450 2007-01-18  Kazu Hirata  <kazu@codesourcery.com>
7451             Richard Sandiford  <richard@codesourcery.com>
7452
7453         * config/m68k/m68k.h (DATA_REGNO_P, ADDRESS_REGNO_P, INT_REGNO_P)
7454         (FP_REGNO_P): New macros.
7455         (REGNO_OK_FOR_INDEX_P, REGNO_OK_FOR_BASE_P, REGNO_OK_FOR_DATA_P)
7456         (REGNO_OK_FOR_FP_P, REG_OK_FOR_INDEX_P, REG_OK_FOR_BASE_P): Use them.
7457         (EH_RETURN_STACKADJ_RTX): Use A0_REG.
7458         * config/m68k/m68k.c (m68k_regno_mode_ok): Use the new REGNO macros.
7459
7460 2007-01-18  Nathan Sidwell  <nathan@codesourcery.com>
7461
7462         * config.gcc (m68k-*-aout*, m68k-*-coff*, m68020-*-elf*, m68k-*-elf*)
7463         (m68k-*-uclinuxoldabi, m68k-*-uclinux*, m68k-*-rtems*): Add t-floatlib
7464         to $tmake_file.
7465         * config/m68k/t-floatlib: New file, extracting common code from...
7466         * config/m68k/t-m68kbare, config/m68k/t-m68kelf,
7467         * config/m68k/t-uclinux: Here.
7468         * config/m68k/fpgnulib.c: Do not compile extendeed precision
7469         routines on ColdFire targets.
7470
7471 2007-01-18  Nathan Sidwell  <nathan@codesourcery.com>
7472
7473         * config.gcc (m68k-*-aout*, m68k-*-coff*, m68020-*-elf*, m68k-*-elf*)
7474         (m68010-*-netbsdelf*, m68k*-*-netbsdelf*, m68k*-*-openbsd*)
7475         (m68k-*-uclinuxoldabi, m68k-*-uclinux*, m68k-*-linux*)
7476         (m68k-*-rtems*): Use tm_file rather than m68k/m68k.h and
7477         explicitly set MOTOROLA to 1.
7478         * config/m68k/m68k.h (MOTOROLA): Simplify definition accordingly.
7479
7480 2007-01-18  Richard Sandiford  <richard@codesourcery.com>
7481             Nathan Sidwell  <nathan@codesourcery.com>
7482
7483         * config/m68k/m68k.h (PCC_STATIC_STRUCT_RETURN): Delete.
7484         (ASM_OUTPUT_REG_PUSH, ASM_OUTPUT_REG_POP): Add MOTOROLA cases.
7485         * config/m68k/coff.h (REGISTER_PREFIX_MD): Delete.
7486         * config/m68k/m68020-elf.h (LIB_SPEC): Delete.
7487         * config/m68k/m68k-none.h (CC1_SPEC, CPP_SUBTARGET_SPEC): Delete.
7488         * config/m68k/m68kelf.h (IMMEDIATE_PREFIX, REGISTER_PREFIX_MD)
7489         (ASM_OUTPUT_REG_PUSH, ASM_OUTPUT_REG_POP): Delete.
7490         (NO_DOLLAR_IN_LABEL, PCC_STATIC_STRUCT_RETURN): Don't undefine.
7491         (BSS_ASM_OP, ASM_OUTPUT_SKIP, ASM_OUTPUT_ASCII): Delete.
7492         * config/m68k/m68kemb.h (PCC_STATIC_STRUCT_RETURN): Don't undefine.
7493         * config/m68k/linux.h (SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE)
7494         (WCHAR_TYPE_SIZE, TARGET_OBJFMT_CPP_BUILTINS): Delete.
7495         (TARGET_OS_CPP_BUILTINS): Don't define mc68000 and mc68020 here.
7496         (DBX_REGISTER_NUMBER): Delete.
7497         * config/m68k/netbsd-elf.h (IMMEDIATE_PREFIX): Delete.
7498         (PCC_STATIC_STRUCT_RETURN): Don't undefine.
7499         * config/m68k/openbsd.h (PCC_STATIC_STRUCT_RETURN): Define.
7500
7501 2007-01-18  Richard Sandiford  <richard@codesourcery.com>
7502
7503         * config.gcc (m68k-*-uclinux*): Add flat.h to $tm_file.
7504         * config/flat.h: New file.
7505         * crtstuff.c (USE_PT_GNU_EH_FRAME): Don't define if
7506         OBJECT_FORMAT_FLAT.
7507         * config/m68k/m68k.h (ASM_PREFERRED_EH_DATA_FORMAT): Do not use
7508         indirect references for -msep-data or -mid-shared-library.
7509         Do not use PC-relative code addresses either.
7510         * config/m68k/m68k.c (override_options): Restrict -fPIC error
7511         to -mpcrel.
7512         * config/m68k/uclinux.h (STARTFILE_SPEC): Define.  Use Scrt1.o
7513         for shared libraries and crt1.o for executables.  Use crti.o and
7514         crtbegin.o.
7515         (ENDFILE_SPEC): Use crtend.o and crtn.o.
7516         (LIB_SPEC): Suppress -Rlibc.gdb if -static-libc is given.
7517         Do not add -elf2flt or -shared-lib-id options here.
7518         (LINK_SPEC): Define.  Pass -elf2flt if no -elf2flt option is given.
7519         Pass -shared-lib-id if -mid-shared-library, taking the library
7520         identifier from -mshared-library-id if given, otherwise
7521         defaulting to 0.
7522         (EH_FRAME_IN_DATA_SECTION): Do not undefine.
7523         (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP): Likewise.
7524         (TARGET_OS_CPP_BUILTINS): Define __GXX_MERGED_TYPEINFO_NAMES=0
7525         and __GXX_TYPEINFO_EQUALITY_INLINE=0 if -mid-shared-library.
7526         (DRIVER_SELF_SPECS): Map unadorned PIC options to -msep-data.
7527         * config/m68k/t-uclinux (EXTRA_MULTILIB_PARTS): Add crtbegin.o
7528         and crtend.o.
7529         * config/m68k/lb1sf68.asm (PICCALL): Use an lea and pc-relative
7530         jump sequence for ISA A and ISA A+.
7531         (PICJUMP): Likewise.
7532
7533 2007-01-18  Richard Sandiford  <richard@codesourcery.com>
7534
7535         * config.gcc (m68k-*-uclinux*): Base the port on the common
7536         and m68k GNU/Linux files rather than on the generic ELF ones.
7537         * config/m68k/uclinux.h (TARGET_VERSION): Override.
7538         (TARGET_OS_CPP_BUILTINS): Use LINUX_TARGET_OS_CPP_BUILTINS.
7539
7540 2007-01-18  Julian Brown  <julian@codesourcery.com>
7541             Richard Sandiford  <richard@codesourcery.com>
7542
7543         * config/m68k/m68k.h (LONG_DOUBLE_TYPE_SIZE): Make 64-bit on ColdFire.
7544         (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Likewise.
7545         * config/m68k/netbsd-elf.h (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Undefine
7546         before redefining.
7547         * config/m68k/uclinux-oldabi.h (LONG_DOUBLE_TYPE_SIZE): Redefine to
7548         80 unconditionally.
7549         (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Likewise.
7550
7551 2007-01-18  Richard Sandiford  <richard@codesourcery.com>
7552
7553         * doc/install.texi: Document m68k-uclinuxoldabi.
7554         * config.gcc (m68k-*-uclinuxoldabi): New configuration.
7555         * config/m68k/uclinux-oldabi.h: New file, copied from
7556         config/m68k/uclinux.h.
7557
7558 2007-01-18  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
7559
7560         * config/m32r/m32r-protos.h (m32r_expand_epilogue): Declare it.
7561         * config/m32r/m32r.c (m32r_setup_incoming_varargs): Use gen_frame_mem.
7562         (m32r_compute_frame_size): Use unsigned for regno.
7563         (m32r_reload_lr): Use gen_frame_mem.
7564         (pop): New.
7565         (m32r_output_function_epilogue): Don't output the function epilogue
7566         textually here.
7567         (m32r_expand_epilogue): New.
7568         (direct_return): Return false if the function has the interrupt
7569         attribute.
7570         (m32r_hard_regno_rename_ok): Remove code for the textual epilogue.
7571         * config/m32r/m32r.md (epilogue): New expander.
7572         (return_lr, return_rte): New insns.
7573         (return): Make it expander.
7574         (return_normal): New expander.
7575
7576 2007-01-18  Josh Conner  <jconner@apple.com>
7577
7578         PR target/30485
7579         * config/rs6000/rs6000.c (rs6000_emit_vector_compare): Add
7580         support for UNLE, UNLT, UNGE, and UNGT.
7581
7582 2007-01-18  Jan Hubicka  <jh@suse.cz>
7583
7584         * tree-vrp.c (finalize_jump_threads): Do not call cleanup_cfg by hand.
7585         * tree-tailcall (add_virtual_phis): Likewise.
7586         (optimize_tail_call): Return TODOs.
7587         (execute_tail_calls): Return TODOs.
7588         * tree-ssa-ccp (execute_fold_all_builtins): Do cleanup_cfg via TODO.
7589         * tree-cfgcleanup.c (cleanup_tree_cfg_loop): Return if something
7590         changed.
7591         * tree-ssa-forwprop.c (tree_ssa_forward_propagate_single_use_value):
7592         Cleanup cfg using TODO.
7593         * tree-flow.h (cleanup_tree_cfg_loop): Update prototype.
7594         * passes.c (execute_function_todo): When cleanup did something, remove
7595         unused locals.
7596         * tree-cfg.c (pass_build_cfg): Add cleanup_cfg TODO.
7597         (make_edges): Don't cleanup_cfg.
7598
7599 2007-01-18  Uros Bizjak  <ubizjak@gmail.com>
7600
7601         * reg-stack.c (subst_stack_regs_pat) [UNSPEC_SINCOS_COS,
7602         UNSPEC_XTRACT_FRACT]: Use generic code for instructions that
7603         operate on the top of stack.
7604         [UNSPEC_SINCOS_SIN, UNSPEC_XTRACT_EXP, UNSPEC_TAN]: Rewrite
7605         register handling of instructions that output to the second
7606         stack slot.
7607         [UNSPEC_TAN_ONE, UNSPEC_TAN_TAN]: Remove.
7608         (move_for_stack_reg): Special-case check for dead destination
7609         stack slot for constant load of 1.0 inside UNSPEC_TAN.
7610
7611         * config/i386/i386.md (UNSPEC_TAN): New constant.
7612         (UNSPEC_TAN_ONE, UNSPEC_TAN_TAN): Remove.
7613         (fptanxf4_i387, fptan_extend<mode>xf4_i387): New patterns
7614         to correctly model move of constant 1.0 to top stack slot.
7615         (*tandf3_1, *tansf3_1, *tanxf3_1): Remove insn patterns.
7616         (unnamed peephole2 pattern): Remove corresponding peephole2
7617         pattern that optimizes tan insn and loading of constant 1.0.
7618         (tanxf2): Use fptanxf4_i387.
7619         (tan<mode>2): Rename from tansf2 and tandf2 and macroize insn
7620         patterns using X87MODEF12 mode macro.  Use fptan_extend<mode>xf4_i387
7621         and truncate result to requested mode.  Use SSE_FLOAT_MODE_P to
7622         disable patterns for SSE math.
7623         (sincos<mode>3): Use truncxf<mode>2_i387_noop for truncation.
7624         (fyl2x_extend<mode>xf3_i387): Use X87MODEF12 for operand 1.
7625
7626 2007-01-18  Dirk Mueller  <dmueller@suse.de>
7627             Richard Guenther <rguenther@suse.de>
7628
7629         PR diagnostic/8268
7630         * doc/invoke.texi (Warray-bounds): Document -Warray-bounds.
7631         * common.opt (Warray-bounds): Add new warning option.
7632         * c-opts.c (c_common_handle_option): Define -Warray-bounds
7633         if -Wall is given.
7634         * Makefile.in: make tree-vrp.o depend on toplev.h
7635         * tree-vrp.c (vrp_finalize): Call check_array_refs if -Warray-bounds
7636         is enabled.
7637         (check_array_refs, check_array_bounds, check_array_ref): New.
7638
7639 2007-01-18  Jan Hubicka  <jh@suse.cz>
7640
7641         * tree-ssa-ccp.c (ccp_finalize): Return if something changed.
7642         (execute_ssa_ccp): Return flags conditionally.
7643         * tree-ssa-propagate.c (substitue_and_fold): Return if something was
7644         changed.
7645         * tree-ssa-propagate.h (substitute_and_fold): Update prototype.
7646
7647 2007-01-18  Steven Bosscher  <steven@gcc.gnu.org>
7648
7649         * cfgcleanup.c (cleanup_cfg): Detect cfglayout mode and set
7650         the CLEANUP_CFGLAYOUT flag when in cfglayout mode.
7651
7652         * Makefile.c (GTFILES): Add cfglayout.h.
7653         * gengtype.c (open_base_files): Likewise.
7654         * cfglayout.c (cfg_layout_function_footer,
7655         cfg_layout_function_header) Reindent to make gengtype happy.
7656         * cfglayout.h (cfg_layout_function_footer,
7657         cfg_layout_function_header): Add GTY(()) marker.
7658
7659         * ifcvt.c (noce_try_sign_mask): Make sure INSN_B is non-null.
7660
7661 2007-01-18  Ben Elliston  <bje@au.ibm.com>
7662
7663         * genautomata.c (write_automata): Include xstrerror output in the
7664         error message if writing the DFA description file fails.
7665
7666 2007-01-17  H.J. Lu  <hongjiu.lu@intel.com>
7667
7668         * config/mips/mips-protos.h (mips_output_external): Make it
7669         return void.
7670         * config/mips/iris.h (TARGET_ASM_EXTERNAL_LIBCALL): Removed.
7671         * config/mips/mips.c (irix_output_external_libcall): Likewise.
7672         (extern_list): Likewise.
7673         (extern_head): Likewise.
7674         (TARGET_ASM_FILE_END): Likewise.
7675         (mips_file_end): Likewise.
7676         (mips_output_external): Rewritten.
7677
7678 2007-01-18  Ben Elliston  <bje@au.ibm.com>
7679
7680         * genpreds.c (write_insn_preds_c): Only write out the function
7681         body for regclass_for_constraint if we have register constraints.
7682
7683 2007-01-17  Tom Tromey  <tromey@redhat.com>
7684
7685         * doc/sourcebuild.texi (libgcj Tests): Use sourceware.org.
7686         * doc/install.texi (Testing): Use sourceware.org.
7687         (Binaries): Likewise.
7688         (Specific): Likewise.
7689         * doc/contrib.texi (Contributors): Use sourceware.org.
7690
7691 2007-01-17  Anatoly Sokolov <aesok@post.ru>
7692
7693         * config/avr/avr.h (AVR_HAVE_LPMX): New macro.
7694         (AVR_ENHANCED): Rename to ...
7695         (AVR_HAVE_MUL): ... new.
7696         (avr_enhanced_p): Rename to ...
7697         (avr_have_mul_p): ... new.
7698         (TARGET_CPU_CPP_BUILTINS): Use 'avr_have_mul_p' instead of
7699         'avr_enhanced_p' for "__AVR_ENHANCED__". Define "__AVR_HAVE_MUL__".
7700         * config/avr/avr.c (avr_enhanced_p): Rename to ...
7701         (avr_have_mul_p): ... new.
7702         (base_arch_s): Rename 'enhanced' to 'have_mul'.
7703         (avr_override_options): Use 'avr_have_mul_p' and 'have_mul' instead of
7704         'avr_enhanced_p' and 'enhanced'.
7705         (ashlhi3_out, ashrhi3_out, lshrhi3_out, avr_rtx_costs): Use
7706         AVR_HAVE_MUL instead of AVR_ENHANCED.
7707         * avr.md (*tablejump_enh): Use AVR_HAVE_LPMX instead of AVR_ENHANCED.
7708         (mulqi3, *mulqi3_enh, *mulqi3_call, mulqihi3, umulqihi3, mulhi3,
7709         *mulhi3_enh, *mulhi3_call, mulsi3, *mulsi3_call): Use AVR_HAVE_MUL
7710         instead of AVR_ENHANCED.
7711         (*tablejump_enh): Use AVR_HAVE_LPMX instead of AVR_ENHANCED.
7712         * libgcc.S: Use __AVR_HAVE_MUL__ instead of __AVR_ENHANCED__.
7713         (__tablejump__): Use __AVR_HAVE_LPMX__ instead of __AVR_ENHANCED__.
7714
7715 2007-01-17  Ian Lance Taylor  <iant@google.com>
7716
7717         * vec.h (VEC_reserve_exact): Define.
7718         (vec_gc_p_reserve_exact): Declare.
7719         (vec_gc_o_reserve_exact): Declare.
7720         (vec_heap_p_reserve_exact): Declare.
7721         (vec_heap_o_reserve_exact): Declare.
7722         (VEC_OP (T,A,reserve_exact)): New static inline function, three
7723         versions.
7724         (VEC_OP (T,A,reserve)) [all versions]: Remove handling of
7725         negative parameter.
7726         (VEC_OP (T,A,alloc)) [all versions]: Call ...reserve_exact.
7727         (VEC_OP (T,A,copy)) [all versions]: Likewise.
7728         (VEC_OP (T,a,safe_grow)) [all versions]: Likewise.
7729         * vec.c (calculate_allocation): Add exact parameter.  Change all
7730         callers.
7731         (vec_gc_o_reserve_1): New static function, from vec_gc_o_reserve.
7732         (vec_gc_p_reserve, vec_gc_o_reserve): Call vec_gc_o_reserve_1.
7733         (vec_gc_p_reserve_exact, vec_gc_o_reserve_exact): New functions.
7734         (vec_heap_o_reserve_1): New static function, from vec_heap_o_reserve.
7735         (vec_heap_p_reserve, vec_heap_o_reserve): Call vec_heap_o_reserve_1.
7736         (vec_heap_p_reserve_exact): New function.
7737         (vec_heap_o_reserve_exact): New function.
7738
7739 2007-01-17  Jan Hubicka  <jh@suse.cz>
7740
7741         * ipa-type-escape.c (look_for_casts): Revamp using handled_component_p.
7742
7743 2007-01-17  Eric Christopher  <echristo@apple.com>
7744
7745         * config.gcc: Support core2 processor.
7746
7747 2007-01-16  Jan Hubicka  <jh@suse.cz>
7748
7749         * tree-ssanames.c (release_dead_ssa_names): Instead of ggc_freeing
7750         the names, just unlink the chain so we don't crash on dangling pointers
7751         to dead SSA names.
7752
7753 2007-01-16  Jan Hubicka  <jh@suse.cz>
7754
7755         * cgraph.h (cgraph_decide_inlining_incrementally): Kill.
7756         * tree-pass.h: Reorder to make IPA passes appear toegher.
7757         (pass_early_inline, pass_inline_parameters, pass_apply_inline): Declare.
7758         * cgraphunit.c (cgraph_finalize_function): Do not compute inling
7759         parameters, do not call early inliner.
7760         * ipa-inline.c: Update comments.  Include tree-flow.h
7761         (cgraph_decide_inlining): Do not compute inlining parameters.
7762         (cgraph_decide_inlining_incrementally): Return TODOs; assume to
7763         be called with function context set up.
7764         (pass_ipa_inline): Remove unreachable functions before pass.
7765         (cgraph_early_inlining): Simplify assuming to be called from the
7766         PM as local pass.
7767         (pass_early_inline): New pass.
7768         (cgraph_gate_ipa_early_inlining): New gate.
7769         (pass_ipa_early_inline): Turn into simple wrapper.
7770         (compute_inline_parameters): New function.
7771         (gate_inline_passes): New gate.
7772         (pass_inline_parameters): New pass.
7773         (apply_inline): Move here from tree-optimize.c
7774         (pass_apply_inline): New pass.
7775         * ipa.c (cgraph_remove_unreachable_nodes): Verify cgraph after
7776         transforming.
7777         * tree-inline.c (optimize_inline_calls): Return TODOs rather than
7778         doing them by hand.
7779         (tree_function_versioning): Do not allocate dummy struct function.
7780         * tree-inline.h (optimize_inline_calls): Update prototype.
7781         * tree-optimize.c (execute_fixup_cfg): Export.
7782         (pass_fixup_cfg): Remove
7783         (tree_rest_of_compilation): Do not apply inlines.
7784         * tree-flow.h (execute_fixup_cfg): Declare.
7785         * Makefile.in (gt-passes.c): New.
7786         * passes.c: Include gt-passes.h
7787         (init_optimization_passes): New passes.
7788         (nnodes, order): New static vars.
7789         (do_per_function_toporder): New function.
7790         (execute_one_pass): Dump current pass here.
7791         (execute_ipa_pass_list): Don't dump current pass here.
7792
7793 2007-01-16  Janis Johnson  <janis187@us.ibm.com>
7794
7795         * config/dfp-bit.c (dfp_compare_op): Return separate value for NaN.
7796         (DFP_NE, DFP_LE, DFP_GE): Return false for NaN.
7797
7798 2007-01-16  David Edelsohn  <edelsohn@gnu.org>
7799
7800         * config/rs6000/darwin-ldouble.c: Build file for SOFT_FLOAT.
7801         (strong_alias): Define.
7802         (__gcc_qmul): Provide non-FMA for soft-float.
7803         (__gcc_qdiv): Same.
7804         (__gcc_qneg): New.
7805         (__gcc_qeq): New.
7806         (__gcc_qle): New.
7807         (__gcc_qge): New.
7808         (__gcc_qunord): New.
7809         (__gcc_stoq): New.
7810         (__gcc_dtoq): New.
7811         (__gcc_qtos): New.
7812         (__gcc_qtod): New.
7813         (__gcc_qtoi): New.
7814         (__gcc_qtou): New.
7815         (__gcc_itoq): New.
7816         (__gcc_utoq): New.
7817         (fmsub): New.
7818         * config/rs6000/rs6000.c (rs6000_init_libfuncs): Initialize
7819         soft-float functions.
7820         * config/rs6000/libgcc-ppc-glibc.ver: Version soft-float symbols.
7821         * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Do not warn
7822         about long double soft float.
7823
7824 2007-01-16  Dorit Nuzman  <dorit@il.ibm.com>
7825             Tehila Meyzels  <tehila@il.ibm.com>
7826
7827         * tree-vectorizer.h (is_pattern_stmt_p): New.
7828         * tree-vect-analyze.c (vect_determine_vectorization_factor): Fix
7829         formatting (tabs instead of spaces). Cleanup and clarify setting
7830         of STMT_VINFO_VECTYPE. Call is_pattern_stmt_p.
7831         * tree-vect-transform.c (vect_get_vec_def_for_operand): Fix typo.
7832         (vectorizable_type_demotion): Check that types are integral.
7833         (vectorizable_type_promotion): Likewise.
7834         (vectorizable_store): Fix typo.  Eliminate new-line at end of
7835         comments.
7836
7837 2007-01-16  Jan Hubicka  <jh@suse.cz>
7838
7839         * tree-ssanames.c (release_dead_ssa_names): Remove invalidated
7840         cgraph edges too.
7841
7842 2007-01-15  Eric Christopher  <echristo@apple.com>
7843
7844         * ifcvt.c: Include vec.h, vecprim.h.
7845         (check_cond_move_block): New argument regs.
7846         Reorganize. Add registers used to regs.
7847         (cond_move_process_if_block): Use regs set above as
7848         loop bounds.
7849
7850 2007-01-15  Eric Christopher  <echristo@apple.com>
7851
7852         * config/darwin.h: Update copyright.
7853         (TARGET_OPTION_TRANSLATE_TABLE): Add umbrella.
7854         (LINK_COMMAND_SPEC): Add -u.
7855         (LINK_SPEC): Fix umbrella for above.
7856
7857 2007-01-15  Joseph S. Myers  <joseph@codesourcery.com>
7858
7859         * config/soft-fp/op-common.h, config/soft-fp/op-4.h: Update from
7860         glibc CVS.
7861
7862 2007-01-15  Tom Tromey  <tromey@redhat.com>
7863
7864         * doc/sourcebuild.texi (libgcj Tests): Don't mention jacks.
7865         * doc/install.texi (Testing): Don't mention jacks.
7866         (Configuration): Document --enable-java-maintainer-mode.  Move
7867         --with-java-home to libgcj-specific section.  Document
7868         --with-ecj-jar.
7869         (Prerequisites): Mention --enable-java-maintainer-mode, ecj1.
7870
7871 2007-01-15  Jan Hubicka  <jh@suse.cz>
7872
7873         * tree-ssa-dce.c (DCE_TODOs): New.
7874         (propagate_necessity): Return if something changed.
7875         (eliminate_unnecessary_stmts): Likewise.
7876         (perform_tree_ssa_dce): Return TODO flags when needed.
7877         (pass_dce, pass_dce_loop, pass_cd_dce): Remove TODO flags.
7878
7879 2007-01-15  Uros Bizjak  <ubizjak@gmail.com>
7880
7881         * config/i386/i386.md (fyl2xxf3_i387): Rename from fyl2x_xf3.
7882         (fyl2x_extend<mode>xf3_i387): New insn pattern.
7883         (log<mode>2): Rename from logsf2 and logdf2 and macroize insn
7884         patterns using X87MODEF12 mode macro.  Extend operand 1
7885         to XFmode. Use SSE_FLOAT_MODE_P to disable patterns for SSE math.
7886         (log10<mode>2): Ditto.
7887         (log2<mode>2): Ditto.
7888         (log1p<mode>2): Ditto.
7889         (logb<mode>2): Ditto.
7890         (fyl2xp1xf3_i387): Rename from fyl2xp1_xf3.
7891         (fyl2xp1_extend<mode>xf3_i387): New insn pattern.
7892         (*fxtractxf3_i387): Rename from *fxtractxf3.
7893         (fxtract_extend<mode>xf3_i387): New insn pattern.
7894         (ilogbsi2): Use match_dup 3, not match_operand:XF 3.
7895         * config/i386/i386.c (ix86_emit_i387_log1p): Use gen_fyl2xp1xf3_i387()
7896         and gen_fyl2xxf3_i387().
7897
7898 2007-01-14  Zdenek Dvorak <dvorakz@suse.cz>
7899
7900         * loop-unswitch.c (unswitch_loop): Do not call fix_loop_placement.
7901         * cfgloopmanip.c (fix_loop_placement): Made static.  Use
7902         get_loop_exit_edges.  Changed return type to bool.
7903         * cfgloop.h (fix_loop_placement): Declaration removed.
7904
7905 2007-01-14  Dorit Nuzman  <dorit@il.ibm.com>
7906
7907         * param.h (MIN_VECT_LOOP_BOUND): New.
7908         * params.def (MIN_VECT_LOOP_BOUND): New.
7909         * tree-vectorizer.c (slpeel_tree_peel_loop_to_edge): Takes another
7910         argument - minimum threshold for number of iterations.
7911         * tree-vectorizer.h (slpeel_tree_peel_loop_to_edge): Add another
7912         argument to declaration.
7913         * tree-vect-analyze.c (vect_analyze_operations): Check value of
7914         MIN_VECT_LOOP_BOUND.
7915         * tree-vect-transform.c (vect_do_peeling_for_loop_bound): Call
7916         slpeel_tree_peel_loop_to_edge with additional argument.
7917         (vect_do_peeling_for_alignment): Likewise.
7918         * doc/invoke.texi (min-vect-loop-bound): Document new param option.
7919
7920 2007-01-14  Uros Bizjak  <ubizjak@gmail.com>
7921
7922         PR target/30413
7923         * config/i386/i386.c (print_operand) ['z']: Output 'b' for
7924         operands of size 1.
7925
7926 2007-01-14  Jan Hubicka  <jh@suse.cz>
7927
7928         * tree-dfa.c (remove_referenced_var): New function.
7929         * tree-ssa-live.c (remove_unused_locals): Walk referenced vars and
7930         prune referenced vars list too.
7931         * tree-flow.h (remove_referenced_var): Declare.
7932
7933 2007-01-14  Jan Hubicka  <jh@suse.cz>
7934
7935         * tree-eh.c (add_stmt_to_eh_region_fn): Do not add call_exprs
7936         separately.
7937         (remove_stmt_from_eh_region_fn): Do not remove call_exprs.
7938         (verify_eh_throw_stmt_node, verify_eh_throw_table_statements): Kill.
7939         * except.h (verify_eh_throw_table_statements): Kill prototype.
7940         * cfgexpand.c (expand_gimple_basic_block): Propagate Eh regions
7941         into call exrepssions.
7942         * tree-optimize.c (execute_free_cfg_annotatiosn): Do not call
7943         eh trhow verifier.
7944         * tree-cfg.c: Include pointer-set.h.
7945         (verify_node_sharing): Work on pointer set.
7946         (verify_eh_throw_stmt_node): New.
7947         (verify_stmts): Use pointers sets, verify throw_stmt.
7948
7949 2007-01-13  Zdenek Dvorak <dvorakz@suse.cz>
7950
7951         * ipa-reference.c (analyze_function): Consider also addresses taken
7952         in phi nodes.
7953
7954 2007-01-12  Roger Sayle  <roger@eyesopen.com>
7955
7956         * c-typeck.c (null_pointer_constant_p): Replace use of
7957         TREE_CONSTANT_OVERFLOW with TREE_OVERFLOW.
7958         (build_c_cast): Likewise.
7959
7960 2007-01-12  Roger Sayle  <roger@eyesopen.com>
7961
7962         * tree.h (force_fit_type_double): Remove unused final argument.
7963         * c-common.c (constant_expression_warning): Replace use of
7964         TREE_CONSTANT_OVERFLOW with TREE_OVERFLOW.
7965         (convert_and_check): Likewise.
7966         (shorten_compare): Update call to force_fit_type_double.
7967         (c_common_truthvalue_conversion) <INTEGER_CST>: Use integer_zerop.
7968         * convert.c (convert_to_pointer): Update call to
7969         force_fit_type_double.
7970         * fold-const.c (force_fit_type_double): Remove overflowed_const
7971         argument.
7972         (int_const_binop, fold_convert_const_int_from_int,
7973         fold_convert_const_int_from_real, fold_div_compare,
7974         fold_sign_changed_comparison, fold_unary, fold_negate_const,
7975         fold_abs_const, fold_not_const): Remove the final argument from
7976         calls to force_fit_type_double.
7977
7978 2007-01-12  Andrew Pinski  <andrew_pinski@playstation.sony.com>
7979
7980         * configure.ac: Set insn to "nop" for spu-*-* also.
7981         * configure: Regenerate.
7982
7983 2007-01-12  Olga Golovanevsky  <olga@il.ibm.com>
7984
7985         * builtins.def : Add BUILT_IN_FREE.
7986
7987 2007-01-12  Jan Hubicka  <jh@suse.cz>
7988
7989         PR tree-optimization/30443
7990         * tree-inline.c (tree_function_versioning): Do not optimize when
7991         cloning for inlining.
7992
7993 2007-01-12  Zdenek Dvorak <dvorakz@suse.cz>
7994
7995         * doc/loop.texi: Document recording of loop exits.
7996         * cfgloopmanip.c (loopify, duplicate_loop): Use alloc_loop.
7997         (update_single_exits_after_duplication,
7998         update_single_exit_for_duplicated_loop,
7999         update_single_exit_for_duplicated_loops): Removed.
8000         (duplicate_loop_to_header_edge): Do not call
8001         update_single_exits_after_duplication and
8002         update_single_exit_for_duplicated_loops.
8003         (loop_version): Do not update single_exit information.
8004         (fix_loop_structure): Use record_loop_exits instead of
8005         mark_single_exit_loops.
8006         * tree-ssa-loop-manip.c (tree_transform_and_unroll_loop): Update
8007         the lists of loop exits.
8008         * cfghooks.c (redirect_edge_and_branch, redirect_edge_and_branch_force,
8009         split_edge, merge_blocks): Update the lists of loop exits.
8010         * modulo-sched.c (sms_schedule): Pass LOOPS_HAVE_RECORDED_EXITS to
8011         loop_optimizer_init.
8012         * loop-init.c (loop_optimizer_init): Call record_loop_exits instead
8013         of mark_single_exit_loops.
8014         (loop_optimizer_finalize): Call release_recorded_exits.
8015         * tree-ssa-loop.c (tree_loop_optimizer_init): Pass
8016         LOOPS_HAVE_RECORDED_EXITS to loop_optimizer_init.
8017         * tree-vectorizer.c (slpeel_tree_duplicate_loop_to_edge_cfg): Do not
8018         update single exit information.
8019         * lambda-code.c (perfect_nestify): Ditto.
8020         * cfgloop.c (flow_loop_free): Destroy the list of exits of the loop.
8021         (mark_single_exit_loops): Removed.
8022         (alloc_loop, loop_exit_hash, loop_exit_eq, loop_exit_free,
8023         get_exit_descriptions, rescan_loop_exit, record_loop_exits,
8024         dump_recorded_exit, dump_recorded_exits, release_recorded_exits): New
8025         functions.
8026         (get_loop_exit_edges, single_exit): Use recorded exit lists.
8027         (add_bb_to_loop, remove_bb_from_loops): Update the lists of loop exits.
8028         (verify_loop_structure): Verify consistency of the exit lists.
8029         (flow_loops_find): Use alloc_loop.  Initialize exits hash.
8030         (set_single_exit): Removed.
8031         * cfgloop.h (struct loop_exit): New function.
8032         (struct loop): single_exit_ field replaced by exits field.
8033         (LOOPS_HAVE_MARKED_SINGLE_EXITS): Replaced by LOOPS_HAVE_RECORDED_EXITS.
8034         (struct loops): Added exits hash.
8035         (mark_single_exit_loops, set_single_exit): Declaration removed.
8036         (release_recorded_exits, record_loop_exits, rescan_loop_exit): Declare.
8037
8038 2007-01-12  Richard Sandiford  <richard@codesourcery.com>
8039
8040         * doc/invoke.texi: Avoid use of @headitem.
8041
8042 2007-01-12  Richard Sandiford  <richard@codesourcery.com>
8043
8044         * cse.c (cse_insn): Move HAVE_CC0 code after declarations.
8045
8046 2007-01-12  Richard Sandiford  <richard@codesourcery.com>
8047
8048         * doc/install.texi: Fix m68k-*-* anchor and add m68k-*-* to the
8049         list of targets.
8050
8051 2007-01-12  Nathan Sidwell  <nathan@codesourcery.com>
8052             Richard Sandiford  <richard@codesourcery.com>
8053
8054         * doc/invoke.texi: Document -mno-bitfield, -mno-rtd and -mno-short.
8055         * config/m68k/m68k.opt: Resort options.
8056         (mbitfield, mrtd, mshort): Remove RejectNegative properties.
8057
8058 2007-01-12  Nathan Sidwell  <nathan@codesourcery.com>
8059             Richard Sandiford  <richard@codesourcery.com>
8060
8061         * doc/invoke.texi: Document the macros that are defined by
8062         m68k's -mtune and -mhard-float options.
8063         * config/m68k/m68k-protos.h (m68k_cpp_cpu_ident) Declare.
8064         (m68k_cpp_cpu_family): Likewise.
8065         * config/m68k/m68k.h (TARGET_CPU_CPP_BUILTINS): Add a full set
8066         of __ucfv*__ macros.  Define __mcffpu__ if generating code for
8067         ColdFire FPUs.  Define __mcf_cpu_* and __mcf_family_* macros.
8068         * config/m68k/m68k.c (m68k_cpp_cpu_ident): New function.
8069         (m68k_cpp_cpu_family): Likewise.
8070
8071 2007-01-12  Richard Sandiford  <richard@codesourcery.com>
8072
8073         * config/m68k/m68k.h (TARGET_CPU_CPP_BUILTINS): Treat all mc68*
8074         macros besides mc68000 as tuning macros.  Use a switch statement
8075         to set them and mcpu32.
8076
8077 2007-01-12  Julian Brown  <julian@codesourcery.com>
8078
8079         * config/m68k/m68k.h: Use TARGET_68040 instead of TARGET_68040_ONLY.
8080         (TARGET_68040_ONLY): Rename to...
8081         (TARGET_68040): ...this.
8082         * config/m68k/m68k.c: Use TARGET_68040 instead of TARGET_68040_ONLY.
8083         * config/m68k/m68k.md: Likewise.
8084
8085 2007-01-12  Julian Brown  <julian@codesourcery.com>
8086             Nathan Sidwell  <nathan@codesourcery.com>
8087             Richard Sandiford  <richard@codesourcery.com>
8088
8089         * config.gcc (m680[012]0-*-*, m68k*-*-*): Set m68k_cpu_ident to
8090         the -mcpu= argument associated with the --with-cpu setting.
8091         Define M68K_DEFAULT_TUNE to the default -mtune= option,
8092         if different from the one implied by the -mcpu setting.
8093         Accept --with-cpu=FOO if FOO is listed in m68k-devices.def,
8094         using mcpu=FOO as the default CPU option.  Set target_cpu_default2.
8095         * doc/invoke.texi: Mention ColdFire in the introduction to the
8096         m68k options.  Document the new -march, -mcpu, -mtune, -mdiv,
8097         -mno-div and -mhard-float options.  Make -m68881 a synonym for
8098         -mhard-float.  Document the previously-undocumented -m5206e,
8099         -m528x, -m5307 and -m5407 options.  Tweak the existing option
8100         documentation for consistency.
8101         * doc/install.texi: Mention new --with-cpu arguments.
8102         * config/m68k/m68k.h (OPTION_DEFAULT_SPECS): Only use the
8103         default CPU if neither -mcpu nor -march are specified.
8104         (ASM_CPU_SPEC): Pass down -mcpu and -march options.
8105         (TARGET_CPU_CPP_BUILTINS): Set __mcfisa*__ macros from
8106         TARGET_ISA*.  Set the legacy __mcf*__ cpu macros in the same way,
8107         using m68k_tune to decide between families that implement the
8108         same ISA.  Use m68k_tune to set __mcfv4e__.
8109         (FL_BITFIELD, FL_68881, FL_COLDFIRE, FL_CF_HWDIV, FL_CF_MAC)
8110         (FL_CF_EMAC, FL_CF_EMAC_B, FL_CF_USP, FL_CF_FPU, FL_ISA_68000)
8111         (FL_ISA_68010, FL_ISA_68020, FL_ISA_68040, FL_ISA_A, FL_ISA_B)
8112         (FL_ISA_C, FL_ISA_MMU): New macros.
8113         (MASK_COLDFIRE): Delete.
8114         (TARGET_68010, TARGET_68020, TARGET_68040_ONLY, TARGET_COLDFIRE)
8115         (TARGET_ISAB): Redefine in terms of m68k_cpu_flags.
8116         (TARGET_68881, TARGET_COLDFIRE_FPU): Redefine in terms of m68k_fpu.
8117         (TARGET_HARD_FLOAT): Do not define here.
8118         (TARGET_ISAAPLUS, TARGET_ISAC): New macros.
8119         (TUNE_68000): New macro.
8120         (TUNE_68000_10): Redefine in terms of TUNE_68000 and TUNE_68010.
8121         (TUNE_68010, TUNE_68030, TUNE_68040, TUNE_68060, TUNE_CPU32)
8122         (TUNE_CFV2): Redefine in terms of m68k_tune.
8123         (uarch_type, target_device, fpu_type): New enums.
8124         (m68k_cpu, m68k_tune, m68k_fpu, m68k_cpu_flags): Declare.
8125         * config/m68k/m68k.c (TARGET_DEFAULT): Remove MASK_68881.
8126         (FL_FOR_isa_00, FL_FOR_isa_10, FL_FOR_isa_20, FL_FOR_isa_40)
8127         (FL_FOR_isa_cpu32, FL_FOR_isa_a, FL_FOR_isa_aplus, FL_FOR_isa_b)
8128         (FL_FOR_isa_c): New macros.
8129         (m68k_isa): New enum.
8130         (m68k_target_selection): New structure.
8131         (all_devices, all_isas, all_microarchs): New tables.
8132         (m68k_cpu_entry, m68k_arch_entry, m68k_tune_entry, m68k_cpu)
8133         (m68k_tune, m68k_fpu, m68k_cpu_flags): New variables.
8134         (MASK_ALL_CPU_BITS): Delete.
8135         (m68k_find_selection): New function.
8136         (m68k_handle_option): Handle -mcpu=, -march= and -mtune=.
8137         Map the legacy target options to a combination of the new ones.
8138         (override_options): Set m68k_cpu, m68k_tune, m68k_fpu and
8139         m68k_cpu_flags.  Handle M68K_DEFAULT_TUNE.  Use m68k_cpu_flags
8140         to derive default MASK_BITFIELD, MASK_CF_HWDIV and MASK_HARD_FLOAT
8141         settings.
8142         * config/m68k/m68k.opt (m5200, m5206e, m528x, m5307, m5407, mcfv4e)
8143         (m68010, m68020, m68020-40, m68020-60, m68030, m68040): Remove Mask
8144         properties.
8145         (m68881, msoft-float): Change mask from 68881 to HARD_FLOAT.
8146         (march=, mcpu=, mdiv, mhard-float, mtune=): New options.
8147         * config/m68k/m68k-devices.def: New file.
8148
8149 2007-01-12  Richard Sandiford  <richard@codesourcery.com>
8150             Nathan Sidwell  <nathan@codesourcery.com>
8151
8152         * config/m68k/m68k.h (ASM_CPU_SPEC, ASM_SPEC, EXTRA_SPECS)
8153         (SUBTARGET_EXTRA_SPECS): New macros.
8154         * config/m68k/linux.h (ASM_SPEC): Remove CPU flags;
8155         use %(asm_cpu_spec) instead.
8156         * config/m68k/m68k-none.h (ASM_SPEC): Likewise.
8157         * config/m68k/openbsd.h (ASM_SPEC): Likewise.
8158         * config/m68k/netbsd-elf.h (ASM_SPEC): Likewise.
8159         (EXTRA_SPECS): Rename to...
8160         (SUBTARGET_EXTRA_SPECS): ...this.
8161
8162 2007-01-12  Nathan Sidwell  <nathan@codesourcery.com>
8163             Richard Sandiford  <richard@codesourcery.com>
8164             Julian Brown  <julian@codesourcery.com>
8165
8166         * config.gcc (m68k-*-aout*, m68k-*-coff*, m68020-*-elf*, m68k-*-elf*)
8167         (m68k-*-uclinux*, m68k-*-linux*, m68k-*-rtems*): Set default_m68k_cpu
8168         to the configuration's default CPU.
8169         (m68010-*-netbsdelf*, m68k*-*-netbsdelf*, m68k*-*-openbsd*): Likewise.
8170         Remove default masks.
8171         (m680[012]0-*-*): Set the default with_cpu to the first part of
8172         the target name.
8173         (m68k*-*-*): Set the default with_cpu to m$default_m68k_cpu.
8174         (m68k*-*-linux): Extend the --with-cpu handling to...
8175         (m680[012]0-*-*, m68k*-*-*): ...these configurations.  Allow m68000
8176         and m68010.  Don't set target_cpu_default2.
8177         * doc/install.texi: Document --with-cpu for m68k.
8178         * config/m68k/m68k.h (OPTION_DEFAULT_SPECS): Define.
8179         * config/m68k/m68k-none.h (TARGET_CPU_DEFAULT, M68K_CPU_m68k)
8180         (M68K_CPU_m68000, M68K_CPU_m68010, M68K_CPU_m68020, M68K_CPU_m68030)
8181         (M68K_CPU_m68040, M68K_CPU_m68302, M68K_CPU_m68332, TARGET_DEFAULT)
8182         (ASM_CPU_DEFAULT_SPEC, CC1_CPU_DEFAULT_SPEC): Delete.
8183         (ASM_SPEC): Remove use of %(asm_cpu_default).
8184         (EXTRA_SPECS, SUBTARGET_EXTRA_SPECS, MULTILIB_DEFAULTS): Delete.
8185         * config/m68k/linux.h (TARGET_DEFAULT): Delete.
8186         (CPP_SPEC): Merge definitions.  Do not handle __HAVE_68881__ here.
8187         * config/m68k/netbsd-elf.h (TARGET_OS_CPP_BUILTINS): Define
8188         __HAVE_FPU__ if TARGET_HARD_FLOAT.
8189         (TARGET_DEFAULT): Delete.
8190         (EXTRA_SPECS): Delete cpp_cpu_default_spec, cpp_cpu_spec,
8191         cpp_fpu_spec, asm_default_spec and netbsd_cpp_spec.
8192         (CPP_CPU_SPEC): Delete.
8193         (TARGET_VERSION): Merge definitions, using TARGET_68010 to pick
8194         the appropriate string.
8195         (CPP_CPU_DEFAULT_SPEC, ASM_DEFAULT_SPEC, CPP_FPU_SPEC): Delete.
8196         (CPP_SPEC): Define to NETBSD_CPP_SPEC.
8197         (ASM_SPEC): Don't use %(asm_default_spec).
8198         * config/m68k/m68k.c (TARGET_DEFAULT_TARGET_FLAGS): Remove
8199         TARGET_DEFAULT and add MASK_68881.
8200         * config/m68k/m68k.md: Remove mention of TARGET_DEFAULT from comments.
8201
8202 2007-01-12  Richard Sandiford  <richard@codesourcery.com>
8203
8204         * config.gcc (m68010-*-netbsdelf*): Add MASK_68010.
8205         (m68k*-*-netbsdelf*, m68k*-*-openbsd*, m68k*-linux*): Add
8206         MASK_68010 alongside MASK_68020.
8207         * doc/invoke.texi: Document -m68010.
8208         * config/m68k/m68k.opt (m68010): New.
8209         * config/m68k/m68k.h (TARGET_CPU_CPP_BUILTINS): Define mc68010
8210         if TUNE_68010.
8211         (TUNE_68010): New macro.
8212         * config/m68k/m68k-none.h (M68K_CPU_m68k, M68K_CPU_m68010)
8213         (M68K_CPU_m68020, M68K_CPU_m68030, M68K_CPU_m68040)
8214         (M68K_CPU_m68332): Add MASK_68010.
8215         * config/m68k/linux.h (TARGET_DEFAULT): Add MASK_68010 to
8216         fallback definition.
8217         * config/m68k/netbsd-elf.h (CPP_CPU_SPEC): Remove now-redundant
8218         defines.
8219         * config/m68k/m68k.c (MASK_ALL_CPU_BITS): Add MASK_68010.
8220         (m68k_handle_option): Handle OPT_m68010.  Add MASK_68010
8221         to all entries that use MASK_68020.
8222         (output_move_simode_const, output_move_himode, output_move_qimode)
8223         (output_move_stricthi, output_move_strictqi): Use TARGET_68010
8224         instead of TARGET_68020 to select clr behavior.  Remove comment
8225         about there being no TARGET_68010.
8226         * config/m68k/m68k.md: Likewise throughout.
8227
8228 2007-01-12  Julian Brown  <julian@codesourcery.com>
8229
8230         * config/m68k/m68k.h (TARGET_ISAB): New macro.
8231         * config/m68k/m68k.c: Use TARGET_ISAB rather than TARGET_CFV4.
8232         * config/m68k/m68k.md: Likewise.
8233
8234 2007-01-12  Julian Brown  <julian@codesourcery.com>
8235
8236         * config/m68k/m68k.h (LEGITIMATE_INDEX_P, LEGITIMIZE_ADDRESS): Use
8237         TARGET_COLDFIRE_FPU instead of TARGET_CFV4E.
8238
8239 2007-01-12  Julian Brown  <julian@codesourcery.com>
8240
8241         * config/m68k/m68k.h (TUNE_68040_60): New macro.
8242         * config/m68k/m68k.c (standard_68881_constant_p): Use it.
8243         * config/m68k/m68k.md: Likewise.
8244
8245 2007-01-12  Julian Brown  <julian@codesourcery.com>
8246             Richard Sandiford  <richard@codesourcery.com>
8247
8248         * config/m68k/m68k.h (TARGET_CPU_CPP_BUILTINS): Use TUNE_68030
8249         instead of TARGET_68030, TUNE_68040 instead of TARGET_68040,
8250         TUNE_68060 instead of TARGET_68060 and TUNE_CPU32 instead of
8251         TARGET_CPU32.
8252         (TARGET_CPU32): Rename to...
8253         (TUNE_CPU32): ...this.
8254         (TUNE_68000_10, TUNE_68030, TUNE_68040, TUNE_68060)
8255         (TUNE_CFV2): New macros.
8256         * config/m68k/netbsd-elf.h (LONG_DOUBLE_TYPE_SIZE): Simplify;
8257         remove conditions that are implied by TARGET_68020.
8258         * config/m68k/m68k.c (m68k_output_function_prologue): Use TUNE_68040
8259         instead of TARGET_68040 and TUNE_CPU32 instead of TARGET_CPU32.
8260         (m68k_output_function_epilogue): Likewise.
8261         (m68k_rtx_costs): Likewise.  Use TUNE_68060 instead of TARGET_68060
8262         and TUNE_CFV2 instead of TARGET_5200.  Use TUNE_68000_10 instead of
8263         "!TARGET_68020 && !TARGET_COLDFIRE" to choose between 68000 and
8264         non-68000 timings.  Refactor multiplication and division costs.
8265         (output_addsi3): Use TUNE_68040 instead of TARGET_68040 and
8266         TUNE_CPU32 instead of TARGET_CPU32.
8267         (standard_68881_constant_p): Use TUNE_68040 instead of TARGET_68040
8268         and TUNE_68060 instead of TARGET_68060.
8269         * config/m68k/m68k.md: Use TUNE_68040 instead of TARGET_68040,
8270         TUNE_68060 instead of TARGET_68060, and TUNE_CPU32 instead of
8271         TARGET_CPU32.
8272         (movsi_const0): Use TUNE_68000_10 rather than "!TARGET_68020
8273         && !TARGET_COLDFIRE" to choose between moveq and clr.
8274         Likewise in the unnamed movsf pattern.
8275         (ashlsi_17_24, lshrsi_17_24): Guard with TUNE_68000_10 rather than
8276         "!TARGET_68020 && !TARGET_COLDFIRE".  Likewise the unnamed
8277         ashiftrt pattern.
8278
8279 2007-01-12  Richard Sandiford  <richard@codesourcery.com>
8280
8281         * config/m68k/m68k.h (TARGET_CPU_CPP_BUILTINS): Increase amount
8282         of tabbing before backslashes.
8283
8284 2007-01-11  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
8285
8286         * pa-linux.h (ASM_OUTPUT_INTERNAL_LABEL): Undefine.
8287         * pa.h (ASM_OUTPUT_LABEL): Output colon when using GAS.
8288         (ASM_OUTPUT_INTERNAL_LABEL): Define.
8289
8290 2007-01-11  Zdenek Dvorak <dvorakz@suse.cz>
8291
8292         * tree-ssa-loop-ivopts.c (extract_cond_operands): Split from
8293         find_interesting_uses_cond.
8294         (find_interesting_uses_cond): Use extract_cond_operands.
8295         (rewrite_use_compare): Use extract_cond_operands and
8296         force_gimple_operand_bsi.  Do not call update_stmt.
8297         (determine_use_iv_cost_condition): Use extract_cond_operands.
8298         Return cheaper of using original bound and changing the exit bound.
8299
8300 2007-01-11  Zdenek Dvorak <dvorakz@suse.cz>
8301
8302         PR tree-optimization/29516
8303         * tree-ssa-address.c (tree_mem_ref_addr, add_to_parts,
8304         most_expensive_mult_to_index, addr_to_parts,
8305         create_mem_ref, maybe_fold_tmr): Make the type of
8306         fields of TARGET_MEM_REF sizetype.
8307         (move_fixed_address_to_symbol, move_pointer_to_base):
8308         New functions.
8309         * tree.def (TARGET_MEM_REF): Add comment on types of
8310         the operands.
8311
8312 2007-01-11  Joseph Myers  <joseph@codesourcery.com>
8313
8314         * c-common.c (vector_types_convertible_p): Treat opaque types as
8315         always convertible if they have the same size, but not otherwise.
8316
8317 2007-01-11  Steven Bosscher  <steven@gcc.gnu.org>
8318
8319         * ifcvt.c (struct noce_if_info): Add comments to the fields.
8320         Remove the b_unconditional field.
8321         (noce_try_sign_mask): Do not look at b_unconditional.
8322         (noce_process_if_block): Do not use merge_if_blocks.  Update
8323         the CFG here.  Do not set b_unconditional.
8324         (cond_move_process_if_block): Likewise.
8325         (find_cond_trap): Likewise.
8326         (check_cond_move_block): Require simple jump insns at the end
8327         of the basic block.
8328
8329 2007-01-11  Jan Hubicka  <jh@suse.cz>
8330
8331         PR tree-optimization/1046
8332         * tree-tailcall.c (suitable_for_tail_call_opt_p): Use TREE_ADDRESSABLE
8333         when alias info is not ready.
8334         (pass_tail_recursion): Do not require aliasing.
8335         * tree-ssa-copyrename.c (pass_rename_ssa_cop): Likewise.
8336         * tree-ssa-ccp.c (pass_ccp, pass_fold_builtins): Likewise.
8337         * tree-ssa-copy.c (pass_copy_prop): Likewise.
8338         * tree-ssa-forwprop.c (pass_forwprop): Likewise.
8339         * tree-ssa-dce.c (pass_dce, pass_dce_loop, pass_cd_dce): Likewise.
8340         * passes.c (init_optimization_passes): Execute rename_ssa_copies,
8341         ccp, forwprop, copy_prop, merge_phi, copy_prop, dce and tail recursion
8342         before inlining.
8343         * tree-ssa-operands.c (add_virtual_operand, get_indirect_ref_operand):
8344         When aliasing is not build, mark statement as volatile.
8345
8346 2007-01-11  Tom Tromey  <tromey@redhat.com>
8347
8348         PR preprocessor/15185, PR preprocessor/20989:
8349         * doc/cppopts.texi <-MT>: Update description of algorithm for
8350         computing default target.
8351         <-M, -MD>: Reword "basename" text.
8352
8353 2007-01-11  Roger Sayle  <roger@eyesopen.com>
8354
8355         * builtins.c (expand_builtin_pow, expand_builtin_powi,
8356         fold_builtin_cabs, fold_builtin_sqrt, fold_builtin_trunc,
8357         fold_builtin_floor, fold_builtin_ceil, fold_builtin_round,
8358         fold_builtin_int_int_roundingfn, fold_builtin_bitop,
8359         fold_builtin_bswap, real_constp, fold_builtin_pow,
8360         fold_builtin_powi, fold_builtin_signbit, fold_builtin_copysign,
8361         do_mpfr_arg1, do_mpfr_arg2, do_mpfr_arg3, do_mpfr_sincos): Replace
8362         uses of the macro TREE_CONSTANT_OVERFLOW with TREE_OVERFLOW.
8363         * convert.c (convert_to_pointer): Likewise.
8364         * expr.c (highest_pow2_factor, expand_expr_real_1): Likewise.
8365         * fold-const.c (force_fit_type, fold_negate_expr, int_const_binop,
8366         const_binop, fold_convert_const_int_from_int,
8367         fold_convert_const_int_from_real,
8368         fold_convert_const_real_from_real, sign_bit_p,
8369         optimize_minmax_comparison, extract_muldiv_1, fold_div_compare,
8370         fold_sign_changed_comparison, fold_unary, fold_comparison,
8371         fold_binary, multiple_of_p, tree_Expr_non_zero_p,
8372         fold_negate_const, fold_abs_const, fold_not_const): Likewise.
8373         * print-tree.c (print_node_brief, print_node): Likewise.
8374         * stor-layout.c (place_field, layout_type): Likewise.
8375         * tree-chrec.c (keep_cast): Likewise.
8376         * tree.c (build_vector, build_real, build_real_from_int_cst,
8377         build_complex): Likewise.
8378
8379 2007-01-11  Roger Sayle  <roger@eyesopen.com>
8380
8381         * tree.h (TREE_CONSTANT_OVERFLOW): Obsolete.  For the time being,
8382         treat TREE_CONSTANT_OVERFLOW as a synonym of TREE_OVERFLOW.
8383
8384 2007-01-11  Paolo Bonzini  <bonzini@gnu.org>
8385
8386         * configure.ac (strict1_warn): Rename to strict_warn.
8387         (WERROR, --enable-werror, symlink hacks, stage1_cflags,
8388         cc_set_by_configure, quoted_cc_set_by_configure,
8389         stage_prefix_set_by_configure, quoted_stage_prefix_set_by_configure,
8390         all_boot_languages, all_stagestuff): Remove.
8391         (target_list): Remove bootstrap targets.
8392         * Makefile.in (quickstrap): Unconditionally make a synonym of all.
8393         (BOOT_LANGUAGES, STAGE1_CFLAGS, STAGE1_CHECKING,
8394         REMAKEFLAGS, FLAGS_TO_PASS, PREPEND_DOTDOT_TO_RELATIVE_PATHS,
8395         SUBDIR_FLAGS_TO_PASS, WERROR_FLAGS, STRICT2_WARN, LANG_STAGESTUFF,
8396         VOL_FILES, POSTSTAGE1_FLAGS_TO_PASS, STAGE2_FLAGS_TO_PASS,
8397         STAGEPROFILE_FLAGS_TO_PASS, STAGEFEEDBACK_FLAGS_TO_PASS, stage1_build,
8398         stage1_copy, stage2_build, stage2_copy, stageprofile_build,
8399         stageprofile_copy, stage3_build, stage3_copy, stagefeedback_build,
8400         stagefeedback_copy, stage4_build, clean_s1, clean_sw, bootstrap,
8401         bootstrap-lean, bootstrap2, bootstrap2-lean, bootstrap3,
8402         bootstrap3-lean, bootstrap4, bootstrap4-lean, unstage1, unstage2,
8403         unstage3, unstage4, unstageprofile, unstagefeedback, restage, restage2,
8404         restage3, restage4, restageprofile, restagefeedback, bubbleestrap,
8405         cleanstrap, unstrap, restrap, *compare, *compare3, *compare4,
8406         *compare-lean, *compare3-lean, *compare4-lean, stage1-start, stage1,
8407         stage2-start, stage2, stage3-start, stage3, stage4-start, stage4,
8408         stageprofile-start, stageprofile, stagefeedback-start, stagefeedback,
8409         risky-stage1, risky-stage2, risky-stage3, risky-stage4): Remove.
8410         (ORDINARY_FLAGS_TO_PASS): Rename to FLAGS_TO_PASS.
8411         (STAGECOPYSTUFF, STAGEMOVESTUFF): Consolidate into MOSTLYCLEANFILES.
8412         (mostlyclean): Adjust.
8413         (clean, distclean): Don't mention bootstrap stuff.
8414         * configure: Regenerate.
8415         * ada/config-lang.in, cp/config-lang.in, forttran/config-lang.in,
8416         java/config-lang.in, objc/config-lang.in, objcp/config-lang.in,
8417         treelang/config-lang.in (stagestuff): Remove.
8418         * doc/sourcebuild.texi (stage1, stage2, stage3, stage4,
8419         stageprofile, stagefeedback, stagestuff): Remove mention.
8420
8421 2007-01-11  Nick Clifton  <nickc@redhat.com>
8422
8423         * config/mcore/predicates.md (mcore_general_movesrc_operand):
8424         Accept CONSTs.
8425         (mcore_general_movdst_operand): Do not accept CONST_INTs.
8426         (mcore_arith_K_S_operand): Run the test for the S constraint not
8427         the test for the M constraint.
8428         (mcore_addsub_operand): Do not accept integer values that are
8429         larger than 32 bits.
8430         * config/mcore/mcore.md: Remove unused constraints from split.
8431         (andsi3): Use HOST_WIDE_INT instead of int to hold an INTVAL.
8432         (addsi3): Likewise.
8433         (allocate_stack): Likewise.
8434         * config/mcore/mcore.c (mcore_print_operand): Restrict output of P
8435         operands to 32 bits.
8436         (mcore_const_costs): Use HOST_WIDE_INT instead of int to hold an
8437         INTVAL.
8438         (mcore_and_cost, mcore_modify_comparison, const_ok_for_mcore,
8439         mcore_const_ok_for_inline, mcore_const_trick_uses_not,
8440         try_constant_tricks, mcore_num_ones, mcore_num_zeros,
8441         mcore_output_bclri, mcore_output_andn, output_inline_const,
8442         mcore_output_move, mcore_output_movedouble): Likewise.
8443         (mcore_output_cmov): Use CONST_OK_FOR_M and CONST_OK_FOR_N.
8444         (output_inline_const): Likewise.
8445         (output_inline_const): Fix format strings used in sprintf
8446         statements.
8447         * config/mcore/mcore-protos.h: Update prototypes for changed
8448         functions in mcore.c.
8449         * config/mcore/mcore.h (CONST_OK_FOR_I): Cast values to
8450         HOST_WIDE_INT and not int.
8451         (CONST_OK_FOR_J, CONST_OK_FOR_K, CONST_OK_FOR_L, CONST_OK_FOR_M,
8452         CONST_OK_FOR_N): Likewise.
8453         (LEGITIMATE_CONSTANT_P): Also check CONSTANT_P.
8454         (GO_IF_LEGITIMATE_INDEX): Use HOST_WIDE_INT instead of int to hold
8455         an INTVAL.
8456
8457 2007-01-10  Jan Hubicka  <jh@suse.cz>
8458
8459         * tree-vrp.c (remove_range_assertions): Release defs.
8460         * tree-ssa-loop-ivopts.c (rmeove_statement): Likewise.
8461         * tree-ssa-dom.c (remove_stmt_or_phi): Likewise.
8462
8463 2007-01-10  Paul Brook  <paul@codesourcery.com>
8464
8465         * config/arm/arm.c (arm_rtx_costs_1): Handle mutiply-subtract.
8466         * config/arm/arm.md (mulsi3subsi): New insn.
8467
8468 2007-01-10  Zdenek Dvorak <dvorakz@suse.cz>
8469
8470         * tree-ssa-loop-manip.c (tree_unroll_loop): Make it a wrapper over ...
8471         (tree_transform_and_unroll_loop): New.
8472         * tree-flow.h (transform_callback, tree_transform_and_unroll_loop):
8473         Declare.
8474
8475 2007-01-10  Robert Kennedy <jimbob@google.com>
8476
8477         * fold-const.c (fold_comparison): Fold comparisons like (x *
8478         1000 < 0) to (x < 0).
8479
8480 2007-01-10  Ian Lance Taylor  <iant@google.com>
8481
8482         * tree-pretty-print.c (dump_generic_node): Print parentheses when
8483         operands have the same priority.
8484
8485 2007-01-10  Tom Tromey  <tromey@redhat.com>
8486
8487         * fold-const.c (fold_truthop): Don't check can_use_bit_fields_p.
8488         (fold_binary): Likewise.
8489         * langhooks.c (lhd_can_use_bit_fields_p): Removed.
8490         * langhooks-def.h (lhd_can_use_bit_fields_p): Removed.
8491         (LANG_HOOKS_CAN_USE_BIT_FIELDS_P): Removed.
8492         (LANG_HOOKS_INITIALIZER): Remove LANG_HOOKS_CAN_USE_BIT_FIELDS_P.
8493         * langhooks.h (struct lang_hooks): Removed field
8494         'can_use_bit_fields_p'.
8495
8496 2007-01-10  Ralf Corsépius <ralf.corsepius@rtems.org>
8497
8498         * config/bfin/t-bfin, config/bfin/t-bfin-elf: Remove GCC_CFLAGS.
8499
8500 2007-01-10  Razya Ladelsky  <razya@il.ibm.com>
8501
8502         * function.c (get_last_funcdef_no): New function.
8503         * function.h (get_last_funcdef_no): Declare.
8504         * tree-inline.c (initialize_cfun): Add initialization.
8505         (tree_function_versioning): Cleanup.
8506
8507 2007-01-10  Jan Hubicka  <jh@suse.cz>
8508
8509         * tree-inline.c (setup_one_parameter): Do not propagate into abnormal
8510         PHIs.
8511
8512 2007-01-10  Sa Liu  <saliu@de.ibm.com>
8513             Ben Elliston  <bje@au.ibm.com>
8514
8515         * spu.h (STACK_SAVE_AREA): Use VOIDmode for SAVE_FUNCTION, SImode
8516         for SAVE_NONLOCAL and Pmode for any other save level.
8517         * spu-protos.h (spu_restore_stack_block): Declare.
8518         * spu.md (save_stack_block): Remove.
8519         (restore_stack_block): Call spu_restore_stack_block.
8520         * spu.c (spu_restore_stack_block): New function.
8521         (spu_expand_epilogue): Remove old comment.
8522
8523 2007-01-09  Zdenek Dvorak <dvorakz@suse.cz>
8524
8525         PR tree-optimization/30322
8526         * tree-ssa-loop-ivopts.c (fold_affine_expr, iv_value): Removed.
8527         (cand_value_at): Return the value as aff_tree.
8528         (may_eliminate_iv): Convert the bound from aff_tree to tree.
8529         * tree-affine.c (aff_combination_add_cst, aff_combination_add_product,
8530         aff_combination_mult): New functions.
8531         (aff_combination_add): Use aff_combination_add_cst.
8532         (aff_combination_convert): Allow conversions to a wider type.
8533         (tree_to_aff_combination): Handle BIT_NOT_EXPR.
8534         * tree-affine.h (aff_combination_mult): Declare.
8535
8536 2007-01-09  Carlos O'Donell  <carlos@codesourcery.com>
8537
8538         * doc/tm.texi: Update documentation to reflect reality of exec
8539         and start file search behaviours. Update copyright year.
8540         * doc/invoke.texi: Explain how GCC_EXEC_PREFIX is used to find
8541         header file directories.
8542
8543 2007-01-09  Uros Bizjak  <ubizjak@gmail.com>
8544
8545         * config/i386/i386.md (*sinxf2): Rename to *sinxf2_i387.
8546         (*cosxf2): Rename to cosxf2_i387.
8547         (*sindf2, *sinsf2): Extend operand 1 to XFmode.  Macroize patterns
8548         using X87MODEF12 mode macro. Rename patterns to
8549         *sin_extend<mode>xf2_i387.  Use SSE_FLOAT_MODE_P to disable patterns
8550         for SSE math.
8551         (*cosdf2, *cossf2): Ditto.
8552         (sincosdf3, sincossf3): Ditto.  Rewrite corresponding splitters
8553         to match extended input operands.
8554         (sincos<mode>3): New expander.
8555         (*sinextendsfdf2, *cosextendsfdf2, *sincosextendsfdf3): Remove
8556         insn patterns and corresponding splitters.
8557
8558 2007-01-09  Kaz Kojima  <kkojima@gcc.gnu.org>
8559
8560         * config/sh/t-linux (TARGET_LIBGCC2_CFLAGS): Delete.
8561         (SHLIB_MAPFILES, SHLIB_LINK, SHLIB_INSTALL): Likewise.
8562
8563 2007-01-09  Nicolas Pitre  <nico@cam.org>
8564
8565         PR target/30173
8566         * arm/ieee754-df.S (Lad_s): Also test the low word of X for zero.
8567
8568 2007-01-08  Geoffrey Keating  <geoffk@apple.com>
8569
8570         * target.h (struct gcc_target): New field library_rtti_comdat.
8571         * target-def.h (TARGET_CXX_LIBRARY_RTTI_COMDAT): New.
8572         (TARGET_CXX): Add TARGET_CXX_LIBRARY_RTTI_COMDAT.
8573         * doc/tm.texi (C++ ABI): Document TARGET_CXX_LIBRARY_RTTI_COMDAT.
8574         * config/darwin.h (TARGET_CXX_LIBRARY_RTTI_COMDAT): Define.
8575
8576 2007-01-08  Geoffrey Keating  <geoffk@apple.com>
8577
8578         * doc/invoke.texi (Optimize Options): Correct description of -O0.
8579
8580 2007-01-08  Richard Guenther  <rguenther@suse.de>
8581
8582         * tree.h (force_fit_type_double): Export.
8583         (force_fit_type): Remove.
8584         * fold-const.c (force_fit_type_double): New function.
8585         (force_fit_type): Remove.
8586         (int_const_binop): Use it.
8587         (fold_convert_const_int_from_int): Likewise.
8588         (fold_convert_const_int_from_real): Likewise.
8589         (fold_div_compare): Likewise.
8590         (fold_sign_changed_comparison): Likewise.
8591         (fold_unary): Likewise.
8592         (fold_negate_const): Likewise.
8593         (fold_abs_const): Likewise.
8594         (fold_not_const): Likewise.
8595         * c-common.c (shorten_compare): Use force_fit_type_double.
8596         * convert.c (convert_to_pointer): Likewise.
8597
8598 2007-01-08  Richard Guenther  <rguenther@suse.de>
8599
8600         * tree.h (build_int_cst_wide_type): Export.
8601         * tree.c (build_int_cst_wide_type): New function.
8602         (build_int_cst_wide): Fix comment.
8603         * builtins.c (fold_builtin_object_size): Use build_int_cst
8604         to build -1 or 0 of the correct type.  Use fit_double_type
8605         to check for overflow.
8606         * fold-const.c (optimize_bit_field_compare): Use build_int_cst_type
8607         to build the mask.
8608         (decode_field_reference): Likewise.
8609         (all_ones_mask_p): Likewise.
8610         (native_interpret_int): Use build_int_cst_wide_type.
8611         (fold_binary): Use build_int_cst_type to build an all-ones
8612         value.
8613         * stor-layout.c (set_sizetype): Use build_int_cst_wide_type.
8614
8615 2007-01-08  Daniel Jacobowitz  <dan@codesourcery.com>
8616
8617         * config/pa/t-pa64 (libgcc_stub.a): Use $(T).
8618
8619 2007-01-09  Ben Elliston  <bje@au.ibm.com>
8620
8621         * genautomata.c (STATS_OPTION): New option.
8622         (stats_flag): New flag.
8623         (gen_automata_option): Handle it.
8624         (initiate_automaton_gen): Ditto.
8625         (write_automata): Output statistics only if stats_flag is
8626         set. Likewise, output time statistics only if time_flag is set.
8627         * doc/md.texi (Processor pipeline description): Document new flag.
8628
8629 2007-01-08  Richard Guenther  <rguenther@suse.de>
8630
8631         * builtins.c (fold_builtin_int_roundingfn): Use fit_double_type.
8632         * tree.c (build_int_cst_type): Likewise.
8633         (size_in_bytes): Don't call force_fit_type on the result.
8634         (int_fits_type_p): Use fit_double_type.
8635         * fold-const.c (fit_double_type): New function.
8636         (force_fit_type): Use it.
8637         * tree.h (fit_double_type): Export.
8638
8639 2007-01-08  Jan Hubicka  <jh@suse.cz>
8640
8641         * tree-vectorizer.c (gate_increase_alignment): Fix return type.
8642         * ipa.c (function_and_variable_visibility): Fix return type.
8643
8644 2007-01-08  Richard Guenther  <rguenther@suse.de>
8645
8646         * tree-ssa-ccp.c (maybe_fold_offset_to_array_ref): Use type
8647         of offset to build the index.
8648         * tree-pretty-print.c (dump_generic_node): Don't build negated
8649         const just for printing.
8650         * c-pretty-print.c (pp_c_integer_constant): Likewise.
8651         * builtins.c (fold_builtin_int_roundingfn): Check if result
8652         fits the type by using force_fit_type and comparing the result.
8653         * predict.c (predict_loops): Use compare_tree_int for comparison.
8654         * tree.c (build_int_cst): Fall back to integer_type_node for
8655         NULL_TREE type.
8656         (build_int_cst_wide): Assert type is non-null.
8657
8658 2007-01-08  Roberto Costa  <roberto.costa@st.com>
8659
8660         * tree-vrp.c (extract_range_from_cond_expr): New.
8661         (extract_range_from_expr): Handle COND_EXPR nodes used as expressions.
8662         * tree-ssa-ccp.c (get_maxval_strlen): Handle COND_EXPR nodes used
8663         as expressions.
8664         (fold_stmt): Bug fix, avoid infinite recursion when folding COND_EXPRs.
8665         * tree-ssa-forwprop.c (simplify_cond, forward_propagate_into_cond,
8666         tree_ssa_forward_propagate_single_use_vars): Handle COND_EXPR nodes
8667         used as expressions.
8668         * tree-object-size.c (cond_expr_object_size): New.
8669         (collect_object_sizes_for): Handle COND_EXPR nodes used as expressions.
8670
8671 2007-01-08  Jan Hubicka  <jh@suse.cz>
8672
8673         * tree-ssa-forwprop.c (forward_propagate_into_cond,
8674         tree_ssa_forward_propagate_single_use_va): Release defs of propagated
8675         statement.
8676
8677 2007-01-08  Richard Guenther  <rguenther@suse.de>
8678
8679         PR tree-optimization/23603
8680         * tree-vrp.c (set_value_range_to_truthvalue): New function.
8681         (extract_range_from_binary): Fall back to truthvalue instead of
8682         varying for TRUTH_*_EXPR.
8683         (extract_range_from_comparison): Fall back to truthvalue instead of
8684         varying.
8685         (vrp_visit_phi_node): Don't adjust new range bounds to +INF/-INF
8686         if all visited PHI values were constant.
8687
8688 2007-01-08  Jan Hubicka  <jh@suse.cz>
8689
8690         * cgraphunit.c (cgraph_process_new_functions): Reset reachable flag.
8691         (cgraph_analyze_function): break out from ...
8692         (cgraph_finalize_compilation_unit): ... here.
8693         (cgraph_expand_function): Remove forgoten commented out line.
8694         (cgraph_optimize): Analyze functions.
8695
8696 2007-01-08  Jan Hubicka  <jh@suse.cz>
8697
8698         * tree-pas.h (TODO_remove_function): New flag.
8699         (TODO_update*): Renumber.
8700         (pass_ipa_increase_alignment,
8701         pass_ipa_function_and_variable_visibility): New passes.
8702         * cgraphunit.c (cgraph_increase_alignment): Move to tree-vectorizer.c
8703         (cgraph_function_and_variable_visibility): Move to ipa.c
8704         (cgraph_optimize): Don't call cgraph_function_and_variable_visibility,
8705         cgraph_increase_alignment.
8706         * ipa-inline.c (cgraph_decide_inlining): Don't push timevar.
8707         (cgraph_decide_inlining_incrementally): Push TV_INTEGRATION before
8708         calling tree-inline.
8709         (cgraph_early_inlining): Do not call cgraph_remove_unreachable_nodes.
8710         (pass_ipa_inline, pass_early_ipa_inlining): Set TODO_remove_functions
8711         * tree-vectorizer.c (increase_alignment): Move here from cgraphunit.c
8712         (gate_increase_alignment): New function.
8713         (pass_ipa_increase_alignment): New pass.
8714         * ipa.c: Inline tree-pass.h and timevar.h
8715         (function_and_variable_visibility): Move here from cgraphunit.c
8716         * tree-optimize.c (pass_early_local_passes): Add TODO_remove_functions.
8717         * passes.c (init_optimization_passes): Add the two new passes.
8718         (execute_todo): Handle cgraph_remove_functions.
8719
8720 2007-01-08  Nick Clifton  <nickc@redhat.com>
8721
8722         * config/frv/predicates.md (reg_or_0_operand): Accept
8723         CONST_DOUBLEs.
8724
8725 2007-01-08  Ralf Corsépius <ralf.corsepius@rtems.org>
8726
8727         * config/bfin/rtems.h, config/bfin/t-rtems: New.
8728         * config.gcc: Add bfin*-rtems*.
8729
8730 2007-01-08  Mark Shinwell  <shinwell@codesourcery.com>
8731
8732         * c.opt: Add -flax-vector-conversions.
8733         * c-typeck.c (convert_for_assignment): Pass flag to
8734         vector_types_convertible_p to allow emission of note.
8735         (digest_init): Likewise.
8736         * c-opts.c: Handle -flax-vector-conversions.
8737         * c-common.c (flag_lax_vector_conversions): New.
8738         (vector_types_convertible_p): Unless -flax-vector conversions
8739         has been passed, disallow conversions between vectors with
8740         differing numbers of subparts and/or element types.  If such
8741         a conversion is disallowed, possibly emit a note on the first
8742         occasion only to inform the user of -flax-vector-conversions.
8743         The new last argument specifies this.
8744         * c-common.h (flag_lax_vector_conversions): New.
8745         (vector_types_convertible_p): Add extra argument.
8746         * config/i386/i386.c (ix86_init_mmx_sse_builtins): Use
8747         char_type_node for V*QI type vectors.
8748         * config/rs6000/rs6000-c.c (altivec_overloaded_builtins):
8749         Update to satisfy new typechecking rules.
8750         * config/rs6000/altivec.h (vec_cmple): Use vec_cmpge, for both
8751         C and C++ variants.
8752         * doc/invoke.texi (C Dialect Options): Document
8753         -flax-vector-conversions.
8754
8755 2007-01-08  Mark Shinwell  <shinwell@codesourcery.com>
8756
8757         PR tree-optimization/29877
8758         * tree-ssa-ter.c (is_replaceable_p): Deem assignments with
8759         a register variable on the RHS to not be replaceable.
8760
8761 2007-01-08  Chen Liqin  <liqin@sunnorth.com.cn>
8762         * config/score/t-score-elf (MULTILIB_OPTIONS): Change.
8763         * config/score/predicates.md (const_uimm5, sr0_operand, const_simm12,
8764         const_simm15, const_pow2, const_npow2): Added.
8765         * config/score/misc.md (insv, extv, extzv, movmemsi,
8766         move_lbu_a/b, mov_lhu_a/b etc): Added and fix some bug.
8767         * config/score/score.c (score_address_cost, score_select_cc_mode):
8768         Added.
8769         Change CONST_OK_FOR_LETTER_P/EXTRA_CONSTRAINT define.
8770         Update score_rtx_costs for MACRO TARGET_RTX_COSTS.
8771         Update score_print_operand.
8772         * config/score/score.h (DATA_ALIGNMENT, SELECT_CC_MODE): Added.
8773         Adjust register allocate order and update some macro define.
8774         * config/score/score-mdaux.c (mdx_unaligned_load, mdx_unsigned_store,
8775         mdx_block_move_straight, mdx_block_move_loop_head,
8776         mdx_block_move_loop_body, mdx_block_move_loop_foot, mdx_block_move_loop,
8777         mdx_block_move): Added.
8778         (mdx_movsicc, mdp_select_add_imm, mdp_select, mds_zero_extract_andi,
8779         mdp_limm): Updated and fix some bug and typo.
8780         * config/score/score.md (movqi/hi/si, add/sub/zero/ext): Updated.
8781         (movsf, movdf, doloop_end): Added.
8782
8783 2007-01-08  Kazu Hirata  <kazu@codesourcery.com>
8784
8785         * config/arm/arm.c, config/arm/arm.h, config/arm/arm.md,
8786         config/arm/thumb2.md: Fix comment typos.
8787         * doc/extend.texi: Fix a typo.
8788
8789 2007-01-07  Eric Christopher  <echristo@apple.com>
8790
8791         * configure.ac: Check for __stack_chk_fail for darwin.
8792         * configure: Regenerate.
8793
8794 2007-01-07  Richard Guenther  <rguenther@suse.de>
8795
8796         * tree-vrp.c (extract_range_from_assert): CSE calls to
8797         compare_values where possible.
8798         (extract_range_from_unary_expr): Likewise.
8799
8800 2007-01-07  Anatoly Sokolov <aesok@post.ru>
8801
8802         * config/avr/avr-protos.h (call_insn_operand): Delete prototype.
8803         * config/avr/avr.c (call_insn_operand): Delete function.
8804         * config/avr/avr.md (*pushqi, *pushhi, *pushsi, *pushsf): Use REG_SP
8805         instead of register number. Use predicates.
8806         * config/avr/predicates.md (const0_operand, reg_or_0_operand,
8807         call_insn_operand): Add.
8808
8809 2007-01-06  Jan Hubicka  <jh@suse.cz>
8810
8811         * tree-pass.h (pass_build_cgraph_edges): Declare.
8812         * cgraphunit.c (record_refernece): Move to cgraphbuild.c
8813         (visited_nodes): Remove.
8814         (cgraph_create_edges): Move to cgraphbuild.c; rename to
8815         build_cgrpah_edges; make visited_nodes local.
8816         (cgraph_process_new_functions): DO not call initialize_inline_failed.
8817         (record_references_in_initializer): Move to cgraphbuild.c
8818         (initialize_inline_failed, rebuild_cgraph_edges,
8819         pass_rebuild_cgraph_edges): Move to cgraphbuild.c.
8820         (verify_cgraph_node): Make visited_nodes local.
8821         (cgraph_analyze_function): Do not call cgraph_create_edges and
8822         initialize_inline_failed.
8823         (cgraph_expand_function): Do not call cgraph_lower_function;
8824         assert that function is already lowered.
8825         * Makefile.in (cgraphbuild.o): New.
8826         * passes.c (init_optimization_passes): Add pass_build_cgraph_edges
8827         at the end of lowering passes.
8828
8829 2007-01-06  Steven Bosscher  <steven@gcc.gnu.org>
8830
8831         * ifcvt.c (cond_move_convert_if_block): New function, code
8832         factored out from...
8833         (cond_move_process_if_block): ...here.  Call the new function
8834         on the THEN and ELSE blocks.
8835         (merge_if_block): Do not copy global_live_at_end, merge_blocks
8836         already takes care of this.
8837
8838 2007-01-05  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
8839
8840         PR c/19978
8841         * tree.h (TREE_OVERFLOW_P): New.
8842         * c-typeck.c (parser_build_unary_op): Warn only if result
8843         overflowed and operands did not.
8844         (parser_build_binary_op): Likewise.
8845         (convert_for_assignment): Remove redundant overflow_warning.
8846         * c-common.c (overflow_warning): Don't check or set TREE_OVERFLOW.
8847
8848 2007-01-05  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
8849
8850         * c-typeck.c (store_init_value): Split over two lines to follow
8851         the GNU coding style.
8852
8853 2007-01-05  Benjamin Kosnik  <bkoz@redhat.com>
8854
8855         * c-cppbuiltin.c (c_cpp_builtins): __GXX_EXPERIMENTAL_CPP0X__ to
8856         __GXX_EXPERIMENTAL_CXX0X__.
8857         * doc/cpp.texi: Same.
8858
8859 2007-01-05  Richard Guenther  <rguenther@suse.de>
8860
8861         PR middle-end/27826
8862         * tree.c (get_narrower): Do not construct COMPONENT_REFs
8863         with mismatched types.  Instead explicitly build a
8864         conversion NOP_EXPR.
8865
8866 2007-01-05  Ian Lance Taylor  <iant@google.com>
8867
8868         * c-common.c (decl_with_nonnull_addr_p): New function.
8869         (c_common_truthvalue_conversion): Call it.
8870         * c-typeck.c (build_binary_op): Likewise.
8871         * c-common.h (decl_with_nonnull_addr_p): Declare.
8872
8873 2007-01-05  Jakub Jelinek  <jakub@redhat.com>
8874
8875         PR c/30360
8876         * libgcc2.c (__divdc3): Compare c and d against 0.0 instead of
8877         denom against 0.0.
8878
8879 2007-01-05  Joel Brobecker  <brobecker@adacore.com>
8880
8881         * doc/install.texi (Final install): Document the fact that
8882         the GNAT runtime should not be stripped.
8883
8884 2007-01-04  Jan Hubicka  <jh@suse.cz>
8885
8886         * tree-inline.c (fold_marked_statements): Update operand caches
8887         and EH after folding
8888
8889 2007-01-04  Ian Lance Taylor  <iant@google.com>
8890
8891         * c-common.c (check_function_nonnull): Whitespace fix.
8892
8893 2007-01-04  Jan Hubicka  <jh@suse.cz>
8894
8895         * tree-optimize.c (execute_fixup_cfg): Correct previously mistakely
8896         comitted older version of patch.
8897         (pass_fixup_cfg): Add TODOs to verify flow and statements, dump
8898         function, celanup cfg and collect garbage.
8899
8900 2007-01-04  Mike Stump  <mrs@apple.com>
8901
8902         * Makefile.in (mostlyclean): Don't remove libgcc anymore.
8903         (clean): Likewise.
8904
8905 2007-01-04  Eric Christopher  <echristo@apple.com>
8906
8907         * libgcc2.c (__bswapsi2): Use SItype.
8908         (__bswapdi2): Use DItype.
8909         * libgcc2.h: Update for above.
8910
8911 2007-01-04  Paul Brook  <paul@codesourcery.com>
8912
8913         * config/arm/arm.md (arm_mulsi3, thumb_mulsi3, mulsi3_compare0,
8914         mulsi_compare0_scratch, mulsi3addsi, mulsi3addsi_compare0,
8915         mulsi3addsi_compare0_scratch, mulsidi3adddi, mulsidi3,
8916         umulsidi3, umulsidi3adddi, smulsi3_highpart,
8917         umulsi3_highpart): Make conditional on !arm_arch6.
8918         (arm_mulsi3_v6, thumb_mulsi3_v6, mulsi3_compare0_v6,
8919         mulsi_compare0_scratch_v6, mulsi3addsi_v6, mulsi3addsi_compare0_v6,
8920         mulsi3addsi_compare0_scratch_v6, mulsidi3adddi_v6, mulsidi3_v6,
8921         umulsidi3_v6, umulsidi3adddi_v6, smulsi3_highpart_v6,
8922         umulsi3_highpart_v6): New insns.
8923
8924 2007-01-04  Roger Sayle  <roger@eyesopen.com>
8925
8926         * fold-const.c (fold_convert): When casting an expression to void,
8927         fold_ignored_result may discover a GIMPLE_MODIFY_STMT which doesn't
8928         have a type.  Instead of attempting to build a NOP_EXPR, return
8929         these "special" trees directly.
8930
8931 2007-01-04  Joseph Myers  <joseph@codesourcery.com>
8932
8933         * config/rs6000/rs6000.c (rs6000_rtx_costs): Make adjustment for
8934         MULT inside MINUS as either argument.  Use rs6000_cost->dmul -
8935         rs6000_cost->fp not 0 as adjustment for outer NEG.
8936
8937 2007-01-04  Jan Hubicka  <jh@suse.cz>
8938
8939         * cgraph.c (cgraph_release_function_body): New function.
8940         (cgraph_remove_node): Use it.
8941         * cgraph.h (cgraph_release_function_body): Declare.
8942         * cgraphunit.c (cgraph_expand_function): Use it.
8943         * ipa.c (cgraph_remove_unreahchable_nodes): Use it.
8944         * tree-ssa.c (delete_tree_ssa): Allow to be called before aliasing
8945         is initialized and while compilation of other function is running.
8946         * tree-optimize.c (execute_free_cfg_annotations): Move code to clear
8947         statement CFG annotations from here to ...
8948         * tree-cfg.c (delete_tree_cfg_annotations): ... here.
8949
8950 2007-01-04  Zdenek Dvorak <dvorakz@suse.cz>
8951
8952         * cfgloop.h (enum li_flags): Make the constants powers of two.
8953
8954 2007-01-04  Jan Hubicka  <jh@suse.cz>
8955
8956         * tree-inline.c (copy_bb): Insert new statements to statements_to_fold
8957         set.
8958         (fold_marked_statements): New function.
8959         (optimize_inline_calls, tree_function_versioning): Fold new statements.
8960         * tree-inline.h (copy_body_data): Add statements_to_fold.
8961
8962 2007-01-03  Daniel Jacobowitz  <dan@codesourcery.com>
8963
8964         * config.gcc: Mention libgcc/config.host.
8965         * Makefile.in: Update comments mentioning libgcc.
8966         (LIBGCC, INSTALL_LIBGCC, GCC_PARTS, mklibgcc): Delete.
8967         (all.cross, start.encap, rest.encap, rest.cross): Update
8968         dependencies for libgcc move.
8969         (libgcc.mk, LIBGCC_DEPS, libgcov.a, libgcc.a, stmp-multilib)
8970         (clean-target, clean-target-libgcc): Delete.
8971         (srcdirify, GCC_EXTRA_PARTS): New macros.
8972         (libgcc-support, libgcc.mvars): New rules.
8973         (distclean): Remove mention of mklibgcc.
8974         (install): Don't reference INSTALL_LIBGCC.
8975         (install-common): Don't reference EXTRA_PARTS.
8976         (install-libgcc, install-multilib): Delete rules.
8977         * mklibgcc.in: Delete file.
8978         * doc/configfiles.texi: Don't mention mklibgcc.
8979
8980         * config/i386/t-darwin (SHLIB_VERPFX): Delete (moved to libgcc).
8981         * config/i386/t-darwin64 (SHLIB_VERPFX): Likewise.
8982         * config/rs6000/t-darwin (SHLIB_VERPFX): Likewise.
8983         * config/rs6000/t-ppccomm (TARGET_LIBGCC2_CFLAGS, SHLIB_MAPFILES)
8984         (mklibgcc, ldblspecs): Likewise.
8985
8986         * config/i386/t-nwld (libgcc.def, libc.def, libpcre.def)
8987         (posixpre.def): Use $(T).
8988         (SHLIB_EXT, SHLIB_NAME, SHLIB_SLIBDIR_QUAL, SHLIB_DEF, SHLIB_MAP)
8989         (SHLIB_SRC, SHLIB_INSTALL): Delete.
8990         (SHLIB_LINK): Make dummy.
8991         * config/t-slibgcc-darwin: Delete contents except for dummy SHLIB_LINK.
8992
8993         * config/frv/t-linux (EXTRA_MULTILIB_PARTS): Clear.
8994
8995         * config/alpha/t-crtfm: Use $(T) in rules for EXTRA_PARTS.
8996         * config/alpha/t-vms, config/alpha/t-vms64, config/fr30/t-fr30,
8997         config/i386/t-rtems-i386, config/ia64/t-ia64, config/rs6000/t-beos,
8998         config/rs6000/t-newas, config/sparc/t-elf: Likewise.
8999
9000         * configure.ac (all_outputs): Remove mklibgcc.
9001         * configure: Regenerated.
9002
9003 2007-01-03  Josh Conner  <jconner@apple.com>
9004
9005         PR middle-end/29683
9006         * calls.c (compute_argument_addresses): Set stack and stack_slot
9007         for partial args, too.
9008         (store_one_arg): Use locate.size.constant for the size when
9009         generating a save_area.
9010
9011 2007-01-03  Robert Kennedy <jimbob@google.com>
9012
9013         * tree-cfg.c (tree_merge_blocks): Release SSA_NAME phi results
9014         whose definitions are deleted due to basic block merging.
9015
9016 2007-01-03  Paul Brook  <paul@codesourcery.com>
9017
9018         PR target/16634
9019         * config/arm/arm.c (output_return_instruction): Pop PC in interrupt
9020         functions.
9021         (use_return_insn): Return 0 for Thumb interrupt functions.
9022         (print_multi_reg): Add rfe argument for IRQ returns.
9023         (arm_output_epilogue): Pop interrupt return address directly into PC.
9024         (arm_expand_prologue): Only adjust IRQ return address in Arm mode.
9025
9026 2007-01-03  Paul Brook  <paul@codesourcery.com>
9027
9028         Merge from sourcerygxx-4_1.
9029         * config/arm/thumb2.md: New file.
9030         * config/arm/elf.h (JUMP_TABLES_IN_TEXT_SECTION): Return True for
9031         Thumb-2.
9032         * config/arm/coff.h (JUMP_TABLES_IN_TEXT_SECTION): Ditto.
9033         * config/arm/aout.h (ASM_OUTPUT_ADDR_VEC_ELT): Add !Thumb-2 assertion.
9034         (ASM_OUTPUT_ADDR_DIFF_ELT): Output Thumb-2 jump tables.
9035         * config/arm/aof.h (ASM_OUTPUT_ADDR_DIFF_ELT): Output Thumb-2 jump
9036         tables.
9037         (ASM_OUTPUT_ADDR_VEC_ELT): Add !Thumb-2 assertion.
9038         * config/arm/ieee754-df.S: Use macros for Thumb-2/Unified asm
9039         comptibility.
9040         * config/arm/ieee754-sf.S: Ditto.
9041         * config/arm/arm.c (thumb_base_register_rtx_p): Rename...
9042         (thumb1_base_register_rtx_p): ... to this.
9043         (thumb_index_register_rtx_p): Rename...
9044         (thumb1_index_register_rtx_p): ... to this.
9045         (thumb_output_function_prologue): Rename...
9046         (thumb1_output_function_prologue): ... to this.
9047         (thumb_legitimate_address_p): Rename...
9048         (thumb1_legitimate_address_p): ... to this.
9049         (thumb_rtx_costs): Rename...
9050         (thumb1_rtx_costs): ... to this.
9051         (thumb_compute_save_reg_mask): Rename...
9052         (thumb1_compute_save_reg_mask): ... to this.
9053         (thumb_final_prescan_insn): Rename...
9054         (thumb1_final_prescan_insn): ... to this.
9055         (thumb_expand_epilogue): Rename...
9056         (thumb1_expand_epilogue): ... to this.
9057         (arm_unwind_emit_stm): Rename...
9058         (arm_unwind_emit_sequence): ... to this.
9059         (thumb2_legitimate_index_p, thumb2_legitimate_address_p,
9060         thumb1_compute_save_reg_mask, arm_dwarf_handle_frame_unspec,
9061         thumb2_index_mul_operand, output_move_vfp, arm_shift_nmem,
9062         arm_save_coproc_regs, thumb_set_frame_pointer, arm_print_condition,
9063         thumb2_final_prescan_insn, thumb2_asm_output_opcode, arm_output_shift,
9064         thumb2_output_casesi): New functions.
9065         (TARGET_DWARF_HANDLE_FRAME_UNSPEC): Define.
9066         (FL_THUMB2, FL_NOTM, FL_DIV, FL_FOR_ARCH6T2, FL_FOR_ARCH7,
9067         FL_FOR_ARCH7A, FL_FOR_ARCH7R, FL_FOR_ARCH7M, ARM_LSL_NAME,
9068         THUMB2_WORK_REGS): Define.
9069         (arm_arch_notm, arm_arch_thumb2, arm_arch_hwdiv, arm_condexec_count,
9070         arm_condexec_mask, arm_condexec_masklen)): New variables.
9071         (all_architectures): Add armv6t2, armv7, armv7a, armv7r and armv7m.
9072         (arm_override_options): Check new CPU capabilities.
9073         Set new architecture flag variables.
9074         (arm_isr_value): Handle v7m interrupt functions.
9075         (user_return_insn): Return 0 for v7m interrupt functions.  Handle
9076         Thumb-2.
9077         (const_ok_for_arm): Handle Thumb-2 constants.
9078         (arm_gen_constant): Ditto.  Use movw when available.
9079         (arm_function_ok_for_sibcall): Return false for v7m interrupt
9080         functions.
9081         (legitimize_pic_address, arm_call_tls_get_addr): Handle Thumb-2.
9082         (thumb_find_work_register, arm_load_pic_register,
9083         legitimize_tls_address, arm_address_cost, load_multiple_sequence,
9084         emit_ldm_seq, emit_stm_seq, arm_select_cc_mode, get_jump_table_size,
9085         print_multi_reg, output_mov_long_double_fpa_from_arm,
9086         output_mov_long_double_arm_from_fpa, output_mov_double_fpa_from_arm,
9087         output_mov_double_fpa_from_arm, output_move_double,
9088         arm_compute_save_reg_mask, arm_compute_save_reg0_reg12_mask,
9089         output_return_instruction, arm_output_function_prologue,
9090         arm_output_epilogue, arm_get_frame_offsets, arm_regno_class,
9091         arm_output_mi_thunk, thumb_set_return_address): Ditto.
9092         (arm_expand_prologue): Handle Thumb-2.  Use arm_save_coproc_regs.
9093         (arm_coproc_mem_operand): Allow POST_INC/PRE_DEC.
9094         (arithmetic_instr, shift_op): Use arm_shift_nmem.
9095         (arm_print_operand): Use arm_print_condition.  Handle '(', ')', '.',
9096         '!' and 'L'.
9097         (arm_final_prescan_insn): Use extract_constrain_insn_cached.
9098         (thumb_expand_prologue): Use thumb_set_frame_pointer.
9099         (arm_file_start): Output directive for unified syntax.
9100         (arm_unwind_emit_set): Handle stack alignment instruction.
9101         * config/arm/lib1funcs.asm: Remove default for __ARM_ARCH__.
9102         Add v6t2, v7, v7a, v7r and v7m.
9103         (RETLDM): Add Thumb-2 code.
9104         (do_it, shift1, do_push, do_pop, COND, THUMB_SYNTAX): New macros.
9105         * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Define __thumb2__.
9106         (TARGET_THUMB1, TARGET_32BIT, TARGET_THUMB2, TARGET_DSP_MULTIPLY,
9107         TARGET_INT_SIMD, TARGET_UNIFIED_ASM, ARM_FT_STACKALIGN, IS_STACKALIGN,
9108         THUMB2_TRAMPOLINE_TEMPLATE, TRAMPOLINE_ADJUST_ADDRESS,
9109         ASM_OUTPUT_OPCODE, THUMB2_GO_IF_LEGITIMATE_ADDRESS,
9110         THUMB2_LEGITIMIZE_ADDRESS, CASE_VECTOR_PC_RELATIVE,
9111         CASE_VECTOR_SHORTEN_MODE, ADDR_VEC_ALIGN, ASM_OUTPUT_CASE_END,
9112         ADJUST_INSN_LENGTH): Define.
9113         (TARGET_REALLY_IWMMXT, TARGET_IWMMXT_ABI, CONDITIONAL_REGISTER_USAGE,
9114         STATIC_CHAIN_REGNUM, HARD_REGNO_NREGS, INDEX_REG_CLASS,
9115         BASE_REG_CLASS, MODE_BASE_REG_CLASS, SMALL_REGISTER_CLASSES,
9116         PREFERRED_RELOAD_CLASS, SECONDARY_OUTPUT_RELOAD_CLASS,
9117         SECONDARY_INPUT_RELOAD_CLASS, LIBCALL_VALUE, FUNCTION_VALUE_REGNO_P,
9118         TRAMPOLINE_SIZE, INITIALIZE_TRAMPOLINE, HAVE_PRE_INCREMENT,
9119         HAVE_POST_DECREMENT, HAVE_PRE_DECREMENT, HAVE_PRE_MODIFY_DISP,
9120         HAVE_POST_MODIFY_DISP, HAVE_PRE_MODIFY_REG, HAVE_POST_MODIFY_REG,
9121         REGNO_MODE_OK_FOR_BASE_P, LEGITIMATE_CONSTANT_P,
9122         REG_MODE_OK_FOR_BASE_P, REG_OK_FOR_INDEX_P, GO_IF_LEGITIMATE_ADDRESS,
9123         LEGITIMIZE_ADDRESS, THUMB2_LEGITIMIZE_ADDRESS,
9124         GO_IF_MODE_DEPENDENT_ADDRESS, MEMORY_MOVE_COST, BRANCH_COST,
9125         ASM_APP_OFF, ASM_OUTPUT_CASE_LABEL, ARM_DECLARE_FUNCTION_NAME,
9126         FINAL_PRESCAN_INSN, PRINT_OPERAND_PUNCT_VALID_P,
9127         PRINT_OPERAND_ADDRESS): Adjust for Thumb-2.
9128         (arm_arch_notm, arm_arch_thumb2, arm_arch_hwdiv): New declarations.
9129         * config/arm/arm-cores.def: Add arm1156t2-s, cortex-a8, cortex-r4 and
9130         cortex-m3.
9131         * config/arm/arm-tune.md: Regenerate.
9132         * config/arm/arm-protos.h: Update prototypes.
9133         * config/arm/vfp.md: Enable patterns for Thumb-2.
9134         (arm_movsi_vfp): Add movw alternative.  Use output_move_vfp.
9135         (arm_movdi_vfp, movsf_vfp, movdf_vfp): Use output_move_vfp.
9136         (thumb2_movsi_vfp, thumb2_movdi_vfp, thumb2_movsf_vfp,
9137         thumb2_movdf_vfp, thumb2_movsfcc_vfp, thumb2_movdfcc_vfp): New.
9138         * config/arm/libunwind.S: Add Thumb-2 code.
9139         * config/arm/constraints.md: Update include Thumb-2.
9140         * config/arm/ieee754-sf.S: Add Thumb-2/Unified asm support.
9141         * config/arm/ieee754-df.S: Ditto.
9142         * config/arm/bpabi.S: Ditto.
9143         * config/arm/t-arm (MD_INCLUDES): Add thumb2.md.
9144         * config/arm/predicates.md (low_register_operand,
9145         low_reg_or_int_operand, thumb_16bit_operator): New.
9146         (thumb_cmp_operand, thumb_cmpneg_operand): Rename...
9147         (thumb1_cmp_operand, thumb1_cmpneg_operand): ... to this.
9148         * config/arm/t-arm-elf: Add armv7 multilib.
9149         * config/arm/arm.md: Update patterns for Thumb-2 and Unified asm.
9150         Include thumb2.md.
9151         (UNSPEC_STACK_ALIGN, ce_count): New.
9152         (arm_incscc, arm_decscc, arm_umaxsi3, arm_uminsi3,
9153         arm_zero_extendsidi2, arm_zero_extendqidi2): New
9154         insns/expanders.
9155         * config/arm/fpa.md: Update patterns for Thumb-2 and Unified asm.
9156         (thumb2_movsf_fpa, thumb2_movdf_fpa, thumb2_movxf_fpa,
9157         thumb2_movsfcc_fpa, thumb2_movdfcc_fpa): New insns.
9158         * config/arm/cirrus.md: Update patterns for Thumb-2 and Unified asm.
9159         (cirrus_thumb2_movdi, cirrus_thumb2_movsi_insn,
9160         thumb2_cirrus_movsf_hard_insn, thumb2_cirrus_movdf_hard_insn): New
9161         insns.
9162         * doc/extend.texi: Document ARMv7-M interrupt functions.
9163         * doc/invoke.texi: Document Thumb-2 new cores+architectures.
9164
9165 2007-01-03  Jakub Jelinek  <jakub@redhat.com>
9166
9167         * unwind-dw2.c (SIGNAL_FRAME_BIT, EXTENDED_CONTEXT_BIT): Define.
9168         (struct _Unwind_Context): Rename args_size to flags, remove
9169         signal_frame field, add a new args_size field and version field.
9170         (_Unwind_IsSignalFrame, _Unwind_SetSignalFrame,
9171         _Unwind_IsExtendedContext): New inline functions.
9172         (_Unwind_GetGR, _Unwind_SetGR, _Unwind_GetGRPtr, _Unwind_SetGRPtr):
9173         Assume by_value array is only present if _Unwind_IsExtendedContext.
9174         (_Unwind_GetIPInfo, execute_cfa_program, uw_frame_state_for): Use
9175         _Unwind_IsSignalFrame.
9176         (__frame_state_for): Initialize context.flags to EXTENDED_CONTEXT_BIT.
9177         (uw_update_context_1): Use _Unwind_SetSignalFrame.
9178         (uw_init_context_1): Initialize context->flags to
9179         EXTENDED_CONTEXT_BIT.
9180         * config/rs6000/linux-unwind.h (frob_update_context): Use
9181         _Unwind_SetSignalFrame.
9182
9183 2007-01-03  Andrew Pinski  <andrew_pinski@playstation.sony.com>
9184
9185         PR middle-end/30353
9186         * gimplify.c (gimplify_modify_expr_complex_part): Move below
9187         tree_to_gimple_tuple.  Call tree_to_gimple_tuple when we need
9188         the value.
9189
9190 2007-01-03  Kazu Hirata  <kazu@codesourcery.com>
9191
9192         * config/i386/i386.h (NON_STACK_REG_P, REGNO_OK_FOR_SIREG_P,
9193         REGNO_OK_FOR_DIREG_P, REWRITE_ADDRESS, ASM_OPERAND_LETTER,
9194         RET, AT_SP): Remove.
9195         * config/i386/i386.md (*sse_prologue_save_insn): Use return
9196         instead of RET.
9197
9198         * alias.c (init_alias_analysis): Use VEC_safe_grow_cleared.
9199         * cfgbuild.c (find_basic_blocks): Likewise.
9200         * cfgrtl.c (rtl_create_basic_block): Likewise.
9201         * function.c (temp_slots_at_level): Likewise.
9202         * reg-stack.c (stack_regs_mentioned): Likewise.
9203         * regclass.c (allocate_reg_info): Likewise.
9204         * tree-cfg.c (init_empty_tree_cfg, build_tree_cfg, create_bb,
9205         set_bb_for_stmt, move_block_to_fn): Likewise.
9206         * tree-complex.c (tree_lower_complex): Likewise.
9207         * vec.h (VEC_safe_grow_cleared): New.
9208
9209         * cgraphunit.c, tree-ssa-alias.c: Fix comment typos.
9210
9211 2007-01-03  Zdenek Dvorak <dvorakz@suse.cz>
9212
9213         * loop-unswitch.c (unswitch_loop): Pass probabilities to loopify.
9214         * tree-ssa-loop-unswitch.c (tree_unswitch_loop): Pass probabilities
9215         to loop_version.
9216         * cfgloopmanip.c (scale_loop_frequencies): Export.
9217         (loopify): Scale the frequencies by prescribed coefficients.
9218         (set_zero_probability): New function.
9219         (duplicate_loop_to_header_edge): Improve updating of frequencies.
9220         (lv_adjust_loop_entry_edge, loop_version): Set probabilities
9221         and frequencies according to arguments.
9222         * tree-ssa-loop-manip.c (tree_unroll_loop): Set probabilities
9223         correctly.
9224         * cfg.c (scale_bbs_frequencies_int): Allow scaling the frequencies up.
9225         * modulo-sched.c (sms_schedule): Set probabilities for entering
9226         versioned loop correctly.
9227         * tree-vect-transform.c (vect_transform_loop): Ditto.
9228         * cfgloop.h (loopify, loop_version): Declaration changed.
9229         (scale_loop_frequencies): Declared.
9230
9231 2007-01-02  Jan Hubicka  <jh@suse.cz>
9232
9233         * cgraph.c: Include tree-flow.h
9234         (cgraph_add_new-function): Handle IPA_SSA mode; execute
9235         early_local_passes.
9236         * cgraph.h (enum cgraph_state): Add CGRAPH_STATE_IPA_SSA.
9237         * tree-pass.h (pass_all_early_optimizations): Declare.
9238         * cgraphunit.c (cgraph_process_new_functions): Add IPA_SSA; execute
9239         early_local_passes.
9240         (cgraph_analyze_function): Do early_local_passes.
9241         * tree-mudflap.c (mf_decl_cache_locals, mf_build_check_statement_for):
9242         Do not add referenced vars.
9243         * tree-optimize.c (gate_all_optimizations): Do not execute when not in
9244         SSA form.
9245         (gate_all_early_local_passes): New gate.
9246         (pass_early_local_passes): Use new gate.
9247         (execute_early_local_optimizations): New functions.
9248         (gate_all_early_optimizations): New gate.
9249         (pass_all_early_optimizations): New pass.
9250         (execute_free_datastructures): Free SSA only when initialized.
9251         (gate_init_datastructures): Init only when optimizing.
9252         (tree_lowering_passes): Do early local passes when called late.
9253         * tree-profile.c (do_tree_profiling): Don't profile functions added
9254         late.
9255         (do_early_tree_profiling, pass_early_tree_profile): Kill.
9256         * tree-cfg.c (update_modified_stmts): Do not update when operands are
9257         not active.
9258         * passes.c (init_optimizations_passes): Reorder so we go into SSA
9259         during early_local_passes.
9260         * Makefile.in (cgraph.o): Add dependency on tree-flow.h.
9261
9262
9263 2007-01-02  Carlos O'Donell  <carlos@codesourcery.com>
9264
9265         * Makefile.in: Update copyright year.
9266
9267 2007-01-02  Carlos O'Donell  <carlos@codesourcery.com>
9268
9269         * Makefile.in: Export GCC_EXEC_PREFIX before calling $(RUNTEST)
9270         in $(lang_checks) and check-consistency targets.
9271
9272 2007-01-02  Jan Hubicka  <jh@suse.cz>
9273
9274         * tree-mudflap.c (mf_decl_cache_locals, mf_build_check_statement_for):
9275         Do not add referenced vars.
9276         * tree-cfg.c (update_modified_stmts): Do not update when SSA operands
9277         are not active.
9278         * passes.c (init_optimization_passes): Put mudflap_2 after
9279         free_datastructures.
9280
9281 2007-01-02  Jan Hubicka  <jh@suse.cz>
9282
9283         * tree-optimize (execute_fixup_cfg): Set after_inlining flag.
9284         Set NOTHROW flag on call statements proved to be nothrow.
9285         Update statement of local calls so new pure/const functions are
9286         updated. Update_ssa when in ssa form. Mark PHI nodes of nonlocal
9287         goto receivers.
9288         (tree_rest_of_compilation): Register hooks and initialize bitmap
9289         early. Do not set after_inlining flag.
9290
9291 2007-01-02  Steve Ellcey  <sje@cup.hp.com>
9292
9293         * sbitmap.c (HOST_BITS_PER_LONG_LONG):  Change to
9294         HOST_BITS_PER_LONGLONG
9295
9296 2007-01-02  Manuel Lopez-Ibanez <manu@gcc.gnu.org>
9297
9298         PR c/19977
9299         * c-typeck.c (store_init_value): Don't emit pedantic overflow
9300         warning for non-static initializers.
9301
9302 2007-01-02  Steven Bosscher  <steven@gcc.gnu.org>
9303
9304         * config/alpha/alpha.md, arm/arm.c, darwin.c, frv/frv.md,
9305         m32r/m32r.c, m32r/m32r.c, mn10300/mn10300.md, pa/pa.c,
9306         rs6000/rs6000.c, s390/s390.md, sh/sh.md, sparc/sparc.c:
9307         Always use set_unique_reg_note to add REG_EQUAL notes.
9308
9309 2007-01-02  Kazu Hirata  <kazu@codesourcery.com>
9310
9311         Revert:
9312         2007-01-02  Kazu Hirata  <kazu@codesourcery.com>
9313
9314         * alias.c (init_alias_analysis): Use VEC_safe_grow_cleared.
9315         * cfgbuild.c (find_basic_blocks): Likewise.
9316         * cfgrtl.c (rtl_create_basic_block): Likewise.
9317         * function.c (temp_slots_at_level): Likewise.
9318         * reg-stack.c (stack_regs_mentioned): Likewise.
9319         * regclass.c (allocate_reg_info): Likewise.
9320         * tree-cfg.c (init_empty_tree_cfg, build_tree_cfg, create_bb,
9321         set_bb_for_stmt, move_block_to_fn): Likewise.
9322         * tree-complex.c (tree_lower_complex): Likewise.
9323         * vec.h (VEC_safe_grow_cleared): New.
9324
9325 2007-01-02  Ian Lance Taylor  <iant@google.com>
9326
9327         * c-common.c (c_common_truthvalue_conversion): When warning about
9328         using an assignment as a truth value, set TREE_NO_WARNING.
9329
9330 2007-01-02  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>
9331
9332         PR middle-end/7651
9333         * c.opt (Wold-style-declaration): New.
9334         * doc/invoke.texi (C-only Warning Options): New.
9335         (Wold-style-declaration): Document it.
9336         (Wextra): Enabled by -Wextra.
9337         * c-opts.c (c_common_post_options): Enabled by -Wextra.
9338         * c-decl.c (declspecs_add_scspec): Replace -Wextra with
9339         -Wold-style-declaration.
9340
9341 2007-01-02  Kazu Hirata  <kazu@codesourcery.com>
9342
9343         * alias.c (init_alias_analysis): Use VEC_safe_grow_cleared.
9344         * cfgbuild.c (find_basic_blocks): Likewise.
9345         * cfgrtl.c (rtl_create_basic_block): Likewise.
9346         * function.c (temp_slots_at_level): Likewise.
9347         * reg-stack.c (stack_regs_mentioned): Likewise.
9348         * regclass.c (allocate_reg_info): Likewise.
9349         * tree-cfg.c (init_empty_tree_cfg, build_tree_cfg, create_bb,
9350         set_bb_for_stmt, move_block_to_fn): Likewise.
9351         * tree-complex.c (tree_lower_complex): Likewise.
9352         * vec.h (VEC_safe_grow_cleared): New.
9353
9354 2007-01-02  Douglas Gregor  <doug.gregor@gmail.com>
9355
9356         * c-common.c (c_common_nodes_and_builtins): Since variants of
9357         void_type_node get built before it is given a name, we need to
9358         give those variants the name, too.
9359         (complete_array_type): We need to work with the canonical main
9360         type of the array, from which we will build the qualified version.
9361         * params.def (PARAM_VERIFY_CANONICAL_TYPES): New.
9362         * print-tree.c (print_node): Display canonical type information
9363         for each type.
9364         * stor-layout.c (layout_type): When we don't know the
9365         alignment of a type for which we're building an array, we end up
9366         guessing wrong, so make the type require structural equality.
9367         * tree.c (make_node_stat): When we build a new type, it is its
9368         own canonical type.
9369         (build_type_attribute_qual_variant): When building an attribute
9370         variant, its canonical type is the non-attribute variant. However,
9371         if the attributes are target-dependent and they differ, we need to
9372         use structural equality checks for this type.
9373         (build_qualified_type): A qualified type is not equivalent to its
9374         unqualified variant; set the canonical type appropriately.
9375         (build_distinct_type_copy): When building a distinct type from
9376         another type, the new type is its own canonical type.
9377         (build_variant_type_copy): When building a new type variant, we
9378         assume that it is equivalent to the original type.
9379         (build_pointer_type_for_mode): When building a pointer type, also
9380         build a canonical type pointer.
9381         (build_reference_type_for_mode): When building a reference type,
9382         also build a canonical type reference.
9383         (build_index_type): When we can't hash an index type (e.g.,
9384         because its maximum value is negative), the index type requires
9385         structural equality tests.
9386         (build_array_type): Build the canonical form of an array type.
9387         (build_function_type): Function types require structural equality,
9388         because they contain default arguments, attributes, etc.
9389         (build_method_type_directly): Ditto for method types.
9390         (build_offset_type): Build the canonical offset type.
9391         (build_complex_type): Build the canonical vector type.
9392         (make_vector_type): Build the canonical vector type.
9393         * tree.h (TYPE_CANONICAL): New.
9394         (TYPE_STRUCTURAL_EQUALITY_P): New.
9395         (SET_TYPE_STRUCTURAL_EQUALITY): New.
9396         (struct tree_type): Added "canonical" field.
9397         * params.h (VERIFY_CANONICAL_TYPES): New.
9398         * doc/c-tree.texi (TYPE_CANONICAL): Document.
9399         (TYPE_STRUCTURAL_EQUALITY_P): Document.
9400         (SET_TYPE_STRUCTURAL_EQUALITY): Document.
9401         * doc/invoke.texi (verify-canonical-types): Document --param
9402         parameter for verifying canonical types.
9403
9404 2007-01-02  Joseph Myers  <joseph@codesourcery.com>
9405
9406         * config.gcc (powerpc-*-eabispe*, powerpc-*-eabisimaltivec*,
9407         powerpc-*-eabisim*, powerpc-*-eabialtivec*, powerpc-*-eabi*,
9408         powerpc-*-rtems*, powerpc-wrs-vxworks, powerpc-wrs-vxworksae,
9409         powerpcle-*-eabisim*, powerpcle-*-eabi*): Add rs6000/e500.h to
9410         tm_file.
9411         * config/rs6000/e500.h: New.
9412         * config/rs6000/eabi.h (TARGET_SPE_ABI, TARGET_SPE, TARGET_E500,
9413         TARGET_ISEL, TARGET_FPRS, TARGET_E500_SINGLE, TARGET_E500_DOUBLE):
9414         Remove.
9415         * config/rs6000/linuxspe.h (TARGET_SPE_ABI, TARGET_SPE,
9416         TARGET_E500, TARGET_ISEL, TARGET_FPRS, TARGET_E500_SINGLE,
9417         TARGET_E500_DOUBLE): Remove.
9418         * config/rs6000/vxworks.h (TARGET_SPE_ABI, TARGET_SPE,
9419         TARGET_E500, TARGET_ISEL, TARGET_FPRS): Remove.
9420         * config/rs6000/rs6000.h (CHECK_E500_OPTIONS): Define.
9421         * config/rs6000/rs6000.c (rs6000_override_options): Use
9422         CHECK_E500_OPTIONS.
9423
9424 2007-01-02  Joseph Myers  <joseph@codesourcery.com>
9425
9426         * config/rs6000/rs6000.c (print_operand): Check (TARGET_SPE ||
9427         TARGET_E500_DOUBLE), not TARGET_E500, for %y.
9428         (rs6000_generate_compare, rs6000_emit_sCOND, output_cbranch,
9429         rs6000_emit_cmove): Don't check TARGET_E500.
9430         * config/rs6000/rs6000.md (bunordered, bordered, sunordered,
9431         sordered): Don't check TARGET_E500.
9432
9433 2007-01-01  Eric Christopher  <echristo@apple.com>
9434
9435         * config/mips/mips.c (mips_regno_mode_ok_for_base_p): Use
9436         HARD_REGISTER_NUM_P.
9437
9438 2007-01-01  Roger Sayle  <roger@eyesopen.com>
9439
9440         * fold-const.c (fold_binary) <EQ_EXPR>: Fold "(X^C1) eq/ne C2" into
9441         "X eq/ne (C1^C2)".  Fold "(X^Z) eq/ne (Y^Z)" as "X eq/ne Y" when Z
9442         has no side-effects.  Fold "(X^C1) eq/ne (Y^C2)" as "(X^(C1^C2))
9443         eq/ne Y".
9444
9445 2007-01-01  Mike Stump  <mrs@apple.com>
9446
9447         * configure.ac: Remove support for building with Apple's gcc-3.1.
9448
9449 2007-01-02  Joseph Myers  <joseph@codesourcery.com>
9450
9451         PR middle-end/30311
9452         * caller-save.c (add_stored_regs): Only handle SUBREGs if inner
9453         REG is a hard register.  Do not modify REG before calling
9454         subreg_nregs.
9455         * rtlanal.c (subreg_get_info): Don't assert size of XMODE is a
9456         multiple of the size of YMODE for certain lowpart cases.
9457
9458 2007-01-01  Andrew Pinski  <pinskia@gmail.com>
9459
9460         PR middle-end/30253
9461         * gimplify (voidify_wrapper_expr): Update for
9462         GIMPLE_MODIFY_STMT.
9463
9464 2007-01-01  Andreas Schwab  <schwab@suse.de>
9465
9466         PR target/29166
9467         * config/ia64/ia64.c (ia64_compute_frame_size): Account space for
9468         save of BR0 in extra_spill_size instead of spill_size.
9469         (ia64_expand_prologue): Save BR0 outside of the gr/br/fr spill
9470         area.
9471         (ia64_expand_epilogue): Restore BR0 from its new location.
9472
9473 2007-01-01  Andrew Pinski  <pinskia@gmail.com>
9474
9475         * gimplify.c (gimplify_init_constructor <case VECTOR_TYPE>):
9476         Use a temporary variable if the left hand side is not a gimple
9477         register.
9478
9479 2007-01-01  Andrew Pinski  <pinskia@gmail.com>
9480
9481         * gimplify.c (gimplify_return_expr): Make the temporary variable
9482         for the return expression, a gimple register variable.
9483
9484 2007-01-01  Jan Hubicka  <jh@suse.cz>
9485
9486         * emit-rtl.c (emit_copy_of_insn_after): Do not call copy_insn_1 for
9487         INSN_LIST.
9488
9489 2007-01-01  Mike Stump  <mrs@apple.com>
9490
9491         * configure.ac (HAVE_GAS_LITERAL16): Add autoconf check for
9492         .literal16.
9493         * config/darwin.c (machopic_select_rtx_section): Use
9494         HAVE_GAS_LITERAL16.
9495         (darwin_mergeable_constant_section): Likewise.
9496         * configure: Regenerate.
9497         * config.in: Regenerate.
9498
9499 2007-01-01  Jan Hubicka  <jh@suse.cz>
9500             Andrew Pinski  <pinskia@gmail.com>
9501
9502         * cgraphunit.c (cgraph_optimize): Call cgraph_add_new_functions
9503         before starting IPA passes.